From bfb59df09c09eb0a2403d1892f5f8cfb9f9b9639 Mon Sep 17 00:00:00 2001 From: Tykayn Date: Sat, 29 Jul 2023 22:16:36 +0200 Subject: [PATCH] start bbox filtering --- .../convert_to_osm_tags.mjs | 329 +- .../output/my_converted_data_set.json | 1518678 ++++++++++++++ 2 files changed, 1518839 insertions(+), 168 deletions(-) diff --git a/mapping_geojson_to_osm_tags/convert_to_osm_tags.mjs b/mapping_geojson_to_osm_tags/convert_to_osm_tags.mjs index b9e97aba..78c27d81 100644 --- a/mapping_geojson_to_osm_tags/convert_to_osm_tags.mjs +++ b/mapping_geojson_to_osm_tags/convert_to_osm_tags.mjs @@ -1,44 +1,42 @@ /** * convertisseur de données de bornes de recharge électrique à partir de données Chargemap et open data Etalab */ -import fs from 'node-fs'; - - -let show_debug = 0; +import fs from 'node-fs' +let show_debug = 0 // wip filter let filterOnBoundingBox = true +filterOnBoundingBox = false -let boundingBoxCoordinates ={ - xMin: 1.91, - yMin: 48.7, - xMax: 2.38, - yMax: 48.4, +let boundingBoxCoordinates = { + xMin: 1.91, + xMax: 2.38, + yMin: 48.7, + yMax: 48.4, } -let filterCoordinates = true; -let enableFilterOnDepartment = false; -let filterDepartment = 91; -let filterZipCode = new RegExp(`^${filterDepartment}`); -let filterZipCodeAdresse = new RegExp(` ${filterDepartment}`); -let filteredName ='' +let filterCoordinates = true +let enableFilterOnDepartment = false +let filterDepartment = 91 +let filterZipCode = new RegExp(`^${filterDepartment}`) +let filterZipCodeAdresse = new RegExp(` ${filterDepartment}`) +let filteredName = '' -if(enableFilterOnDepartment){ - filteredName = '_filtered_zipcode_'+filterDepartment +if (enableFilterOnDepartment) { + filteredName = '_filtered_zipcode_' + filterDepartment } -if(filterOnBoundingBox){ - filteredName = '_filtered_bbox_'+boundingBoxCoordinates.xMin+'-'+boundingBoxCoordinates.xMax+'_'+boundingBoxCoordinates.yMin+'-'+boundingBoxCoordinates.yMax +if (filterOnBoundingBox) { + filteredName = '_filtered_bbox_' + boundingBoxCoordinates.xMin + '-' + boundingBoxCoordinates.xMax + '_' + boundingBoxCoordinates.yMin + '-' + boundingBoxCoordinates.yMax } -let pointCounterMax = 1000000; +let pointCounterMax = 1000000 -let limitConversionToFirstPoint = false; +let limitConversionToFirstPoint = false // limitConversionToFirstPoint = true; if (limitConversionToFirstPoint) { - pointCounterMax = 1 + pointCounterMax = 1 } - // let sourceFileChargemapJson = './chargemap_data/hurepoix.json' let sourceFileIRVEGeoJson = './etalab_data/latest.json' /** @@ -47,194 +45,189 @@ let sourceFileIRVEGeoJson = './etalab_data/latest.json' * https://wiki.openstreetmap.org/wiki/France/data.gouv.fr/Bornes_de_Recharge_pour_V%C3%A9hicules_%C3%89lectriques */ let mappingConfigIRVE = { - amenity: "amenity", // conserver le tag de base - capacity: "capacity", // conserver le tag de base - nom_amenageur: "operator", - siren_amenageur: "owner:ref:FR:SIREN", - nom_operateur: "operator", - telephone_operateur: "phone", - contact_operateur: "email", // ici, on souhaite convertir la clé contact_operateur=bidule en email=bidule - nbre_pdc: "capacity", - id_station_itinerance: "ref:EU:EVSE", - id_station_local: "ref", - 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", - reservation: "reservation", - accessibilite_pmr: "wheelchair", - date_mise_en_service: "start_date", - observations: "note", - date_maj: "source:date", - nom_station: "name", - nom_enseigne: "network", - cable_t2_attache: "socket:type2_cable", + amenity: 'amenity', // conserver le tag de base + capacity: 'capacity', // conserver le tag de base + nom_amenageur: 'operator', + siren_amenageur: 'owner:ref:FR:SIREN', + nom_operateur: 'operator', + telephone_operateur: 'phone', + contact_operateur: 'email', // ici, on souhaite convertir la clé contact_operateur=bidule en email=bidule + nbre_pdc: 'capacity', + id_station_itinerance: 'ref:EU:EVSE', + id_station_local: 'ref', + 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', + reservation: 'reservation', + accessibilite_pmr: 'wheelchair', + date_mise_en_service: 'start_date', + observations: 'note', + date_maj: 'source:date', + nom_station: 'name', + nom_enseigne: 'network', + cable_t2_attache: 'socket:type2_cable', - // TODO gestion des types dont on doit convertir la valeur - // station_deux_roues => - // ajout de trois tags: - // bicycle=yes - // scooter=yes - // motorcar=no + // TODO gestion des types dont on doit convertir la valeur + // station_deux_roues => + // ajout de trois tags: + // bicycle=yes + // scooter=yes + // motorcar=no - // consolidated_code_postal: "zipcode", + // consolidated_code_postal: "zipcode", } - -function debugLog(message) { - if (!show_debug) { - return - } - console.log('debug: ', ...message) +function debugLog (message) { + if (!show_debug) { + return + } + console.log('debug: ', ...message) } -function convertDataForIRVE(sourceFilePath, mapping, pointCounterMax) { - debugLog('convertDataFromChargemap from ', sourceFilePath); +function convertDataForIRVE (sourceFilePath, mapping, pointCounterMax, boundingBoxCoordinates) { + debugLog('convertDataFromChargemap from ', sourceFilePath) - let convertedGeoJson = { - type: 'FeatureCollection', - features: [] - } + let convertedGeoJson = { + type: 'FeatureCollection', + features: [] + } - fs.readFile(sourceFilePath, 'utf8', function (err, data) { - let pointcounter = 0; - if (err) { - return debugLog(err); - } - let dataTransformed = JSON.parse(data); - // debug('data keys ', Object.keys(dataTransformed)) + fs.readFile(sourceFilePath, 'utf8', function (err, data) { + let pointcounter = 0 + if (err) { + return debugLog(err) + } + let dataTransformed = JSON.parse(data) + // debug('data keys ', Object.keys(dataTransformed)) - debugLog('debug: properties of point 0', dataTransformed.features[0]) - if (dataTransformed.features) { + debugLog('debug: properties of point 0', dataTransformed.features[0]) + if (dataTransformed.features) { - debugLog('data found, features:', dataTransformed.features.length) + debugLog('data found, features:', dataTransformed.features.length) - // find interesting list of points to use - let listOfPoints = dataTransformed.features - // for each point from the data source, convert with the mapping + // find interesting list of points to use + let listOfPoints = dataTransformed.features + // for each point from the data source, convert with the mapping - console.log('listOfPoints.length', listOfPoints.length) - listOfPoints.forEach(featurePoint => { + console.log('listOfPoints.length', listOfPoints.length) + listOfPoints.forEach(featurePoint => { - let regextestresult = true; + let regextestresult = true - if(enableFilterOnDepartment){ - console.log('filtre sur les départements activé') - regextestresult = ( - filterZipCode.test(featurePoint.properties.consolidated_code_postal) - || - filterZipCodeAdresse.test(featurePoint.properties.adresse_station) - ) - }else if(filterOnBoundingBox){ - console.log('filtre sur les coordonnées activé') + if (enableFilterOnDepartment) { + console.log('filtre sur les départements activé') + regextestresult = ( + filterZipCode.test(featurePoint.properties.consolidated_code_postal) + || + filterZipCodeAdresse.test(featurePoint.properties.adresse_station) + ) + } else if (filterOnBoundingBox) { + console.log('filtre sur les coordonnées activé') - let x = coordonneesXY[0] - let xMin = boundingBoxCoordinates.xMin - let xMax = boundingBoxCoordinates.xMax - let yMin = boundingBoyCoordinates.yMin - let yMax = boundingBoyCoordinates.yMay + let x = featurePoint.properties.coordonneesXY[0] + let xMin = boundingBoxCoordinates.xMin + let xMax = boundingBoxCoordinates.xMax + let yMin = boundingBoxCoordinates.yMin + let yMax = boundingBoxCoordinates.yMax - let y = coordonneesXY[1] - regextestresult = ( - filterZipCode.test(x >= xMin && x <= xMax) - && - filterZipCode.test(y >= yMin && y <= yMax) - ) + let y = featurePoint.properties.coordonneesXY[1] + regextestresult = ( + (x >= xMin && x <= xMax) + && + (y >= yMin && y <= yMax) + ) - } + } + // filter points depending on zipcode + if (filterCoordinates && regextestresult) { + debugLog('featurePoint.properties.consolidated_code_postal', featurePoint.properties.consolidated_code_postal) - // filter points depending on zipcode - if (filterCoordinates && regextestresult) { + // limit results number of points + // if (pointcounter < pointCounterMax) { - debugLog('featurePoint.properties.consolidated_code_postal', featurePoint.properties.consolidated_code_postal) + debugLog('add point') - // limit results number of points - // if (pointcounter < pointCounterMax) { + debugLog('featurePoint', featurePoint) - debugLog('add point') + let mappedPoint = mapElementFromConf(featurePoint, mapping) + debugLog('map one point', featurePoint, mappedPoint) + if (mappedPoint) { + convertedGeoJson.features.push(mappedPoint) + } + } + // } + pointcounter++ - debugLog('featurePoint', featurePoint) + }) + // output new geojson + console.log('convertedGeoJson.features.length', convertedGeoJson.features.length) + // write file on disk + let fileNameToWrite = 'my_converted_data_set' + filteredName + '.json' + console.log('write file ', fileNameToWrite) + writeJsonFile(fileNameToWrite, JSON.stringify(convertedGeoJson, null, 2)) - let mappedPoint = mapElementFromConf(featurePoint, mapping) - debugLog('map one point', featurePoint, mappedPoint) - if (mappedPoint) { - convertedGeoJson.features.push(mappedPoint) - } - } - // } - pointcounter++; + debugLog('mapped output:', convertedGeoJson.features) - }) - // output new geojson - console.log('convertedGeoJson.features.length', convertedGeoJson.features.length) - // write file on disk - let fileNameToWrite = 'my_converted_data_set'+filteredName+'.json'; - console.log('write file ',fileNameToWrite ) - writeJsonFile( fileNameToWrite, JSON.stringify(convertedGeoJson, null, 2)) - - debugLog('mapped output:', convertedGeoJson.features) - - return convertedGeoJson; - } - }) + return convertedGeoJson + } + }) } /** * retuns the converted element from mapping config if present, null otherwise */ -function mapElementFromConf(featurePoint, mappingConfig) { - let mappingKeys = Object.keys(mappingConfig) - let featurePointPropertiesKeys = Object.keys(featurePoint.properties) +function mapElementFromConf (featurePoint, mappingConfig) { + let mappingKeys = Object.keys(mappingConfig) + let featurePointPropertiesKeys = Object.keys(featurePoint.properties) - debugLog('keys', mappingKeys, featurePointPropertiesKeys) + debugLog('keys', mappingKeys, featurePointPropertiesKeys) - let newProperties = {} + let newProperties = {} - // reinit properties of current point - let basePoint = Object.create(featurePoint) - basePoint.type = featurePoint.type - basePoint.geometry = featurePoint.geometry - basePoint.properties = newProperties + // reinit properties of current point + let basePoint = Object.create(featurePoint) + basePoint.type = featurePoint.type + basePoint.geometry = featurePoint.geometry + basePoint.properties = newProperties - // apply new properties if found in mapping config - featurePointPropertiesKeys.forEach(pointKeyName => { + // apply new properties if found in mapping config + featurePointPropertiesKeys.forEach(pointKeyName => { - if (mappingKeys.indexOf(pointKeyName) !== -1) { - debugLog('found element', pointKeyName, '=>', mappingConfig[pointKeyName], 'value : ', featurePoint.properties[pointKeyName]) - newProperties[mappingConfig[pointKeyName]] = featurePoint.properties[pointKeyName] - } - }) + if (mappingKeys.indexOf(pointKeyName) !== -1) { + debugLog('found element', pointKeyName, '=>', mappingConfig[pointKeyName], 'value : ', featurePoint.properties[pointKeyName]) + newProperties[mappingConfig[pointKeyName]] = featurePoint.properties[pointKeyName] + } + }) - debugLog('basePoint', basePoint) - return basePoint + debugLog('basePoint', basePoint) + return basePoint } +function writeJsonFile (fileName, fileContent) { + debugLog('write file ', fileName) -function writeJsonFile(fileName, fileContent) { - debugLog('write file ', fileName); - - return fs.writeFile( - `./output/${fileName}`, - fileContent, - "utf8", - (err) => { - if (err) { - debugLog(`Error writing file: ${err}`); - } else { - debugLog(`File ${fileName} is written successfully!`); - } - } - ); + return fs.writeFile( + `./output/${fileName}`, + fileContent, + 'utf8', + (err) => { + if (err) { + debugLog(`Error writing file: ${err}`) + } else { + debugLog(`File ${fileName} is written successfully!`) + } + } + ) } - console.log('pointCounterMax', pointCounterMax) -convertDataForIRVE(sourceFileIRVEGeoJson, mappingConfigIRVE, pointCounterMax) +convertDataForIRVE(sourceFileIRVEGeoJson, mappingConfigIRVE, pointCounterMax, boundingBoxCoordinates) // convertDataFromChargemap(sourceFileChargemapJson, mappingConfigIRVE) diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set.json index c74fca78..110d6c4d 100644 --- a/mapping_geojson_to_osm_tags/output/my_converted_data_set.json +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set.json @@ -1,6 +1,5548 @@ { "type": "FeatureCollection", "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822159, + 45.635079 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSDRPG", + "ref": "", + "name": "Sérézin-du-Rhône - Peugeot", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.463384, + 48.968672 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGONHI", + "ref": "", + "name": "Gonesse - Hôtel Ibis", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822159, + 45.635079 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSDRPG", + "ref": "", + "name": "Sérézin-du-Rhône - Peugeot", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822159, + 45.635079 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSDRPG", + "ref": "", + "name": "Sérézin-du-Rhône - Peugeot", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.063407, + 44.854019 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSMCLE", + "ref": "", + "name": "Saint-Magne-de-Castillon - E.Leclerc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.063407, + 44.854019 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSMCLE", + "ref": "", + "name": "Saint-Magne-de-Castillon - E.Leclerc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.063407, + 44.854019 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSMCLE", + "ref": "", + "name": "Saint-Magne-de-Castillon - E.Leclerc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.063407, + 44.854019 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSMCLE", + "ref": "", + "name": "Saint-Magne-de-Castillon - E.Leclerc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8863, + 43.984501 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSORDD", + "ref": "", + "name": "Sorgues - Décor Discount", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8863, + 43.984501 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSORDD", + "ref": "", + "name": "Sorgues - Décor Discount", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8863, + 43.984501 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSORDD", + "ref": "", + "name": "Sorgues - Décor Discount", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8863, + 43.984501 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSORDD", + "ref": "", + "name": "Sorgues - Décor Discount", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8863, + 43.984501 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSORDD", + "ref": "", + "name": "Sorgues - Décor Discount", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8863, + 43.984501 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSORDD", + "ref": "", + "name": "Sorgues - Décor Discount", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.463384, + 48.968672 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGONHI", + "ref": "", + "name": "Gonesse - Hôtel Ibis", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.463384, + 48.968672 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGONHI", + "ref": "", + "name": "Gonesse - Hôtel Ibis", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.57864, + 50.515961 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLTOHI", + "ref": "", + "name": "Le Touquet-Paris-Plage - Hôtel Ibis", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.463384, + 48.968672 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGONHI", + "ref": "", + "name": "Gonesse - Hôtel Ibis", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.463384, + 48.968672 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGONHI", + "ref": "", + "name": "Gonesse - Hôtel Ibis", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.463384, + 48.968672 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGONHI", + "ref": "", + "name": "Gonesse - Hôtel Ibis", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.463384, + 48.968672 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGONHI", + "ref": "", + "name": "Gonesse - Hôtel Ibis", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.463384, + 48.968672 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGONHI", + "ref": "", + "name": "Gonesse - Hôtel Ibis", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.502904, + 47.608214 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLOHM", + "ref": "", + "name": "Blotzheim - Hôtel Mercure Bâle Mulhouse Aéroport", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.502904, + 47.608214 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLOHM", + "ref": "", + "name": "Blotzheim - Hôtel Mercure Bâle Mulhouse Aéroport", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.502904, + 47.608214 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLOHM", + "ref": "", + "name": "Blotzheim - Hôtel Mercure Bâle Mulhouse Aéroport", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.502904, + 47.608214 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLOHM", + "ref": "", + "name": "Blotzheim - Hôtel Mercure Bâle Mulhouse Aéroport", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.502904, + 47.608214 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLOHM", + "ref": "", + "name": "Blotzheim - Hôtel Mercure Bâle Mulhouse Aéroport", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.502904, + 47.608214 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLOHM", + "ref": "", + "name": "Blotzheim - Hôtel Mercure Bâle Mulhouse Aéroport", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.502904, + 47.608214 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLOHM", + "ref": "", + "name": "Blotzheim - Hôtel Mercure Bâle Mulhouse Aéroport", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.502904, + 47.608214 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLOHM", + "ref": "", + "name": "Blotzheim - Hôtel Mercure Bâle Mulhouse Aéroport", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822159, + 45.635079 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSDRPG", + "ref": "", + "name": "Sérézin-du-Rhône - Peugeot", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822159, + 45.635079 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSDRPG", + "ref": "", + "name": "Sérézin-du-Rhône - Peugeot", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822159, + 45.635079 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSDRPG", + "ref": "", + "name": "Sérézin-du-Rhône - Peugeot", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822159, + 45.635079 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSDRPG", + "ref": "", + "name": "Sérézin-du-Rhône - Peugeot", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.57864, + 50.515961 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLTOHI", + "ref": "", + "name": "Le Touquet-Paris-Plage - Hôtel Ibis", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.57864, + 50.515961 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLTOHI", + "ref": "", + "name": "Le Touquet-Paris-Plage - Hôtel Ibis", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.368521, + 48.938346 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSDEHF", + "ref": "", + "name": "Saint-Denis - Hôtel F1 Centre Basilique", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.368521, + 48.938346 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSDEHF", + "ref": "", + "name": "Saint-Denis - Hôtel F1 Centre Basilique", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.368521, + 48.938346 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSDEHF", + "ref": "", + "name": "Saint-Denis - Hôtel F1 Centre Basilique", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.368521, + 48.938346 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSDEHF", + "ref": "", + "name": "Saint-Denis - Hôtel F1 Centre Basilique", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356319, + 43.379383 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPMARHC", + "ref": "", + "name": "Marseille - Hôtel Campanile Saint-Antoine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-15", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356319, + 43.379383 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPMARHC", + "ref": "", + "name": "Marseille - Hôtel Campanile Saint-Antoine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-15", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356319, + 43.379383 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPMARHC", + "ref": "", + "name": "Marseille - Hôtel Campanile Saint-Antoine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-15", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356319, + 43.379383 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPMARHC", + "ref": "", + "name": "Marseille - Hôtel Campanile Saint-Antoine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-15", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.83571, + 43.567505 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSJVHC", + "ref": "", + "name": "Saint-Jean-de-Védas - Kyriad Direct", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-29", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.83571, + 43.567505 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSJVHC", + "ref": "", + "name": "Saint-Jean-de-Védas - Kyriad Direct", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-29", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.83571, + 43.567505 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSJVHC", + "ref": "", + "name": "Saint-Jean-de-Védas - Kyriad Direct", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-29", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.83571, + 43.567505 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSJVHC", + "ref": "", + "name": "Saint-Jean-de-Védas - Kyriad Direct", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-29", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.55363, + 48.9613 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVILHC", + "ref": "", + "name": "Villepinte - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.55363, + 48.9613 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVILHC", + "ref": "", + "name": "Villepinte - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.55363, + 48.9613 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVILHC", + "ref": "", + "name": "Villepinte - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.55363, + 48.9613 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVILHC", + "ref": "", + "name": "Villepinte - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.682108, + 45.216314 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSEGBU", + "ref": "", + "name": "Saint-Égrève - BUT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.682108, + 45.216314 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSEGBU", + "ref": "", + "name": "Saint-Égrève - BUT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.682108, + 45.216314 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSEGBU", + "ref": "", + "name": "Saint-Égrève - BUT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.682108, + 45.216314 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSEGBU", + "ref": "", + "name": "Saint-Égrève - BUT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.790077, + 45.585027 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCSRKY", + "ref": "", + "name": "Chasse-sur-Rhône - Kyriad Direct", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.790077, + 45.585027 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCSRKY", + "ref": "", + "name": "Chasse-sur-Rhône - Kyriad Direct", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.790077, + 45.585027 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCSRKY", + "ref": "", + "name": "Chasse-sur-Rhône - Kyriad Direct", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.790077, + 45.585027 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCSRKY", + "ref": "", + "name": "Chasse-sur-Rhône - Kyriad Direct", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822159, + 45.635079 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSDRPG", + "ref": "", + "name": "Sérézin-du-Rhône - Peugeot", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.628969, + 44.880766 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPEYSPC", + "ref": "", + "name": "Eysines - Hôtel Première Classe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.628969, + 44.880766 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPEYSPC", + "ref": "", + "name": "Eysines - Hôtel Première Classe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.628969, + 44.880766 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPEYSPC", + "ref": "", + "name": "Eysines - Hôtel Première Classe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859355, + 48.96404 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAUBFV", + "ref": "", + "name": "Aubergenville - CC Family Village", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.914724, + 48.761402 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPMAUCC", + "ref": "", + "name": "Maurepas - CC - Village des loisirs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.914724, + 48.761402 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPMAUCC", + "ref": "", + "name": "Maurepas - CC - Village des loisirs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.914724, + 48.761402 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPMAUCC", + "ref": "", + "name": "Maurepas - CC - Village des loisirs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.238392, + 48.77325 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPLRBO", + "ref": "", + "name": "Le Plessis-Robinson - La Boursidière", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.238392, + 48.77325 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPLRBO", + "ref": "", + "name": "Le Plessis-Robinson - La Boursidière", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.238392, + 48.77325 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPLRBO", + "ref": "", + "name": "Le Plessis-Robinson - La Boursidière", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.238392, + 48.77325 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPLRBO", + "ref": "", + "name": "Le Plessis-Robinson - La Boursidière", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.063726, + 45.688196 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSLMPC", + "ref": "", + "name": "Saint-Laurent-de-Mure - Hôtel Première Classe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-29", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.063726, + 45.688196 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSLMPC", + "ref": "", + "name": "Saint-Laurent-de-Mure - Hôtel Première Classe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-29", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.063726, + 45.688196 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSLMPC", + "ref": "", + "name": "Saint-Laurent-de-Mure - Hôtel Première Classe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-29", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.063726, + 45.688196 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSLMPC", + "ref": "", + "name": "Saint-Laurent-de-Mure - Hôtel Première Classe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-29", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.904154, + 45.748005 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBROHI", + "ref": "", + "name": "Bron - Hôtel Ibis Lyon Est", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.904154, + 45.748005 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBROHI", + "ref": "", + "name": "Bron - Hôtel Ibis Lyon Est", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.904154, + 45.748005 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBROHI", + "ref": "", + "name": "Bron - Hôtel Ibis Lyon Est", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.904154, + 45.748005 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBROHI", + "ref": "", + "name": "Bron - Hôtel Ibis Lyon Est", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336357, + 48.75416 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPFREEH", + "ref": "", + "name": "Fresnes - Euro Hôtel Orly Rungis", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336357, + 48.75416 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPFREEH", + "ref": "", + "name": "Fresnes - Euro Hôtel Orly Rungis", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336357, + 48.75416 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPFREEH", + "ref": "", + "name": "Fresnes - Euro Hôtel Orly Rungis", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336357, + 48.75416 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPFREEH", + "ref": "", + "name": "Fresnes - Euro Hôtel Orly Rungis", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838681, + 44.11893 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPORAPG", + "ref": "", + "name": "Orange - Peugeot Orange", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838681, + 44.11893 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPORAPG", + "ref": "", + "name": "Orange - Peugeot Orange", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838681, + 44.11893 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPORAPG", + "ref": "", + "name": "Orange - Peugeot Orange", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838681, + 44.11893 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPORAPG", + "ref": "", + "name": "Orange - Peugeot Orange", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213822, + 48.891968 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPNANHC", + "ref": "", + "name": "Nanterre - Hôtel Campanile", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213822, + 48.891968 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPNANHC", + "ref": "", + "name": "Nanterre - Hôtel Campanile", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAVITE", + "ref": "", + "name": "A7 - Aire de Vitrolles Est (direction Orange)", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAVITE", + "ref": "", + "name": "A7 - Aire de Vitrolles Est (direction Orange)", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.914724, + 48.761402 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPMAUCC", + "ref": "", + "name": "Maurepas - CC - Village des loisirs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859355, + 48.96404 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAUBFV", + "ref": "", + "name": "Aubergenville - CC Family Village", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.628969, + 44.880766 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPEYSPC", + "ref": "", + "name": "Eysines - Hôtel Première Classe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859355, + 48.96404 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAUBFV", + "ref": "", + "name": "Aubergenville - CC Family Village", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.682919, + 48.082244 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRENNO", + "ref": "", + "name": "Rennes - Novotel Rennes Alma", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.682919, + 48.082244 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRENNO", + "ref": "", + "name": "Rennes - Novotel Rennes Alma", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.682919, + 48.082244 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRENNO", + "ref": "", + "name": "Rennes - Novotel Rennes Alma", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.682919, + 48.082244 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRENNO", + "ref": "", + "name": "Rennes - Novotel Rennes Alma", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.682919, + 48.082244 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRENNO", + "ref": "", + "name": "Rennes - Novotel Rennes Alma", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.682919, + 48.082244 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRENNO", + "ref": "", + "name": "Rennes - Novotel Rennes Alma", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.593419, + 47.468511 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPANGHM", + "ref": "", + "name": "Angers - Hôtel Mercure Lac de Maine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.593419, + 47.468511 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPANGHM", + "ref": "", + "name": "Angers - Hôtel Mercure Lac de Maine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.593419, + 47.468511 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPANGHM", + "ref": "", + "name": "Angers - Hôtel Mercure Lac de Maine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.593419, + 47.468511 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPANGHM", + "ref": "", + "name": "Angers - Hôtel Mercure Lac de Maine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07595, + 43.544156 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCAUIM", + "ref": "", + "name": "Cauneille - Intermarché", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-12", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07595, + 43.544156 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCAUIM", + "ref": "", + "name": "Cauneille - Intermarché", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-12", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07595, + 43.544156 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCAUIM", + "ref": "", + "name": "Cauneille - Intermarché", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-12", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07595, + 43.544156 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCAUIM", + "ref": "", + "name": "Cauneille - Intermarché", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-12", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854558, + 45.71459 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSFOMB", + "ref": "", + "name": "Saint-Fons - Mercedes-Benz Lyon Saint-Fons", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854558, + 45.71459 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSFOMB", + "ref": "", + "name": "Saint-Fons - Mercedes-Benz Lyon Saint-Fons", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854558, + 45.71459 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSFOMB", + "ref": "", + "name": "Saint-Fons - Mercedes-Benz Lyon Saint-Fons", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854558, + 45.71459 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSFOMB", + "ref": "", + "name": "Saint-Fons - Mercedes-Benz Lyon Saint-Fons", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502617, + 47.481716 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSBARS", + "ref": "", + "name": "Saint-Barthélemy-d'Anjou - RS Parc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502617, + 47.481716 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSBARS", + "ref": "", + "name": "Saint-Barthélemy-d'Anjou - RS Parc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502617, + 47.481716 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSBARS", + "ref": "", + "name": "Saint-Barthélemy-d'Anjou - RS Parc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502617, + 47.481716 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSBARS", + "ref": "", + "name": "Saint-Barthélemy-d'Anjou - RS Parc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859355, + 48.96404 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAUBFV", + "ref": "", + "name": "Aubergenville - CC Family Village", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859355, + 48.96404 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAUBFV", + "ref": "", + "name": "Aubergenville - CC Family Village", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859355, + 48.96404 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAUBFV", + "ref": "", + "name": "Aubergenville - CC Family Village", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859355, + 48.96404 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAUBFV", + "ref": "", + "name": "Aubergenville - CC Family Village", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859355, + 48.96404 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAUBFV", + "ref": "", + "name": "Aubergenville - CC Family Village", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.57864, + 50.515961 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLTOHI", + "ref": "", + "name": "Le Touquet-Paris-Plage - Hôtel Ibis", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.57864, + 50.515961 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLTOHI", + "ref": "", + "name": "Le Touquet-Paris-Plage - Hôtel Ibis", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAVITE", + "ref": "", + "name": "A7 - Aire de Vitrolles Est (direction Orange)", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.587263, + 44.783785 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVDOBH", + "ref": "", + "name": "Villenave-d'Ornon - Best Hotel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.375103, + 43.637548 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLAPC", + "ref": "", + "name": "Blagnac - Hôtel Première Classe Toulouse Aéroport", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.375103, + 43.637548 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLAPC", + "ref": "", + "name": "Blagnac - Hôtel Première Classe Toulouse Aéroport", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.644915, + 44.788386 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPESPC", + "ref": "", + "name": "Pessac - Hôtel Première Classe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.644915, + 44.788386 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPESPC", + "ref": "", + "name": "Pessac - Hôtel Première Classe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.644915, + 44.788386 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPESPC", + "ref": "", + "name": "Pessac - Hôtel Première Classe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.644915, + 44.788386 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPESPC", + "ref": "", + "name": "Pessac - Hôtel Première Classe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.106779, + 50.342703 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPDECPL", + "ref": "", + "name": "Dechy - CC Le Parc du Luc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.106779, + 50.342703 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPDECPL", + "ref": "", + "name": "Dechy - CC Le Parc du Luc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.106779, + 50.342703 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPDECPL", + "ref": "", + "name": "Dechy - CC Le Parc du Luc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.106779, + 50.342703 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPDECPL", + "ref": "", + "name": "Dechy - CC Le Parc du Luc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.587263, + 44.783785 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVDOBH", + "ref": "", + "name": "Villenave-d'Ornon - Best Hotel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.587263, + 44.783785 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVDOBH", + "ref": "", + "name": "Villenave-d'Ornon - Best Hotel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.587263, + 44.783785 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVDOBH", + "ref": "", + "name": "Villenave-d'Ornon - Best Hotel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241461, + 48.935171 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPARGHC", + "ref": "", + "name": "Argenteuil - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.57864, + 50.515961 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLTOHI", + "ref": "", + "name": "Le Touquet-Paris-Plage - Hôtel Ibis", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241461, + 48.935171 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPARGHC", + "ref": "", + "name": "Argenteuil - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241461, + 48.935171 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPARGHC", + "ref": "", + "name": "Argenteuil - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241461, + 48.935171 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPARGHC", + "ref": "", + "name": "Argenteuil - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004787, + 44.040629 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGART", + "ref": "", + "name": "A62 - Aire de Garonne (direction Toulouse)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004787, + 44.040629 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGART", + "ref": "", + "name": "A62 - Aire de Garonne (direction Toulouse)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004787, + 44.040629 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGART", + "ref": "", + "name": "A62 - Aire de Garonne (direction Toulouse)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004787, + 44.040629 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGART", + "ref": "", + "name": "A62 - Aire de Garonne (direction Toulouse)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004787, + 44.040629 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGART", + "ref": "", + "name": "A62 - Aire de Garonne (direction Toulouse)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004787, + 44.040629 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGART", + "ref": "", + "name": "A62 - Aire de Garonne (direction Toulouse)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004787, + 44.040629 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGART", + "ref": "", + "name": "A62 - Aire de Garonne (direction Toulouse)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004787, + 44.040629 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGART", + "ref": "", + "name": "A62 - Aire de Garonne (direction Toulouse)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004787, + 44.040629 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGART", + "ref": "", + "name": "A62 - Aire de Garonne (direction Toulouse)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004787, + 44.040629 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGART", + "ref": "", + "name": "A62 - Aire de Garonne (direction Toulouse)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.375103, + 43.637548 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLAPC", + "ref": "", + "name": "Blagnac - Hôtel Première Classe Toulouse Aéroport", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.375103, + 43.637548 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLAPC", + "ref": "", + "name": "Blagnac - Hôtel Première Classe Toulouse Aéroport", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851826, + 47.009538 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBEAGH", + "ref": "", + "name": "Beaune - Greet Hotel", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851826, + 47.009538 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBEAGH", + "ref": "", + "name": "Beaune - Greet Hotel", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43628, + 43.512207 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAXPHC", + "ref": "", + "name": "Aix-en-Provence - Hôtel Campanile Pont de l'Arc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43628, + 43.512207 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAXPHC", + "ref": "", + "name": "Aix-en-Provence - Hôtel Campanile Pont de l'Arc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43628, + 43.512207 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAXPHC", + "ref": "", + "name": "Aix-en-Provence - Hôtel Campanile Pont de l'Arc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43628, + 43.512207 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAXPHC", + "ref": "", + "name": "Aix-en-Provence - Hôtel Campanile Pont de l'Arc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -137,6 +5679,192854 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.251933, + 43.425474 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVITHK", + "ref": "", + "name": "Vitrolles - Hôtel Kyriad Aéroport", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-15", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.251933, + 43.425474 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVITHK", + "ref": "", + "name": "Vitrolles - Hôtel Kyriad Aéroport", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-15", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.251933, + 43.425474 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVITHK", + "ref": "", + "name": "Vitrolles - Hôtel Kyriad Aéroport", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-15", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475527, + 48.878167 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRONIH", + "ref": "", + "name": "Rosny-sous-Bois - B&B Hotels", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475527, + 48.878167 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRONIH", + "ref": "", + "name": "Rosny-sous-Bois - B&B Hotels", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475527, + 48.878167 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRONIH", + "ref": "", + "name": "Rosny-sous-Bois - B&B Hotels", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475527, + 48.878167 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRONIH", + "ref": "", + "name": "Rosny-sous-Bois - B&B Hotels", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475527, + 48.878167 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRONIH", + "ref": "", + "name": "Rosny-sous-Bois - B&B Hotels", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475527, + 48.878167 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRONIH", + "ref": "", + "name": "Rosny-sous-Bois - B&B Hotels", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14046, + 50.67862 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCRXCC", + "ref": "", + "name": "Croix - CC Gare de Croix - Wasquehal", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14046, + 50.67862 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCRXCC", + "ref": "", + "name": "Croix - CC Gare de Croix - Wasquehal", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14046, + 50.67862 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCRXCC", + "ref": "", + "name": "Croix - CC Gare de Croix - Wasquehal", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14046, + 50.67862 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCRXCC", + "ref": "", + "name": "Croix - CC Gare de Croix - Wasquehal", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851826, + 47.009538 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBEAGH", + "ref": "", + "name": "Beaune - Greet Hotel", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851826, + 47.009538 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBEAGH", + "ref": "", + "name": "Beaune - Greet Hotel", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851826, + 47.009538 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBEAGH", + "ref": "", + "name": "Beaune - Greet Hotel", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851826, + 47.009538 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBEAGH", + "ref": "", + "name": "Beaune - Greet Hotel", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851826, + 47.009538 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBEAGH", + "ref": "", + "name": "Beaune - Greet Hotel", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851826, + 47.009538 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBEAGH", + "ref": "", + "name": "Beaune - Greet Hotel", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004787, + 44.040629 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGART", + "ref": "", + "name": "A62 - Aire de Garonne (direction Toulouse)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004787, + 44.040629 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGART", + "ref": "", + "name": "A62 - Aire de Garonne (direction Toulouse)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.486965, + 48.951196 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAULCE", + "ref": "", + "name": "Aulnay-sous-Bois - Carrefour de l'Europe", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZS", + "ref": "", + "name": "A61 - Aire d'Arzens Sud (direction Narbonne)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZS", + "ref": "", + "name": "A61 - Aire d'Arzens Sud (direction Narbonne)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZS", + "ref": "", + "name": "A61 - Aire d'Arzens Sud (direction Narbonne)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZS", + "ref": "", + "name": "A61 - Aire d'Arzens Sud (direction Narbonne)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.430813, + 48.93979 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLBOHK", + "ref": "", + "name": "Le Bourget - Hôtel Kyriad", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.430813, + 48.93979 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLBOHK", + "ref": "", + "name": "Le Bourget - Hôtel Kyriad", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.430813, + 48.93979 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLBOHK", + "ref": "", + "name": "Le Bourget - Hôtel Kyriad", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.430813, + 48.93979 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLBOHK", + "ref": "", + "name": "Le Bourget - Hôtel Kyriad", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602809, + 44.790293 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGRAHC", + "ref": "", + "name": "Gradignan - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-03", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602809, + 44.790293 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGRAHC", + "ref": "", + "name": "Gradignan - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-03", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602809, + 44.790293 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGRAHC", + "ref": "", + "name": "Gradignan - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-03", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602809, + 44.790293 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGRAHC", + "ref": "", + "name": "Gradignan - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-03", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60135, + 48.87747 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCHEHC", + "ref": "", + "name": "Chelles - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60135, + 48.87747 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCHEHC", + "ref": "", + "name": "Chelles - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60135, + 48.87747 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCHEHC", + "ref": "", + "name": "Chelles - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60135, + 48.87747 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCHEHC", + "ref": "", + "name": "Chelles - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35992, + 48.816784 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPARIIT", + "ref": "", + "name": "Paris 13 - Indigo Parking Porte d'Italie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35992, + 48.816784 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPARIIT", + "ref": "", + "name": "Paris 13 - Indigo Parking Porte d'Italie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35992, + 48.816784 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPARIIT", + "ref": "", + "name": "Paris 13 - Indigo Parking Porte d'Italie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35992, + 48.816784 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPARIIT", + "ref": "", + "name": "Paris 13 - Indigo Parking Porte d'Italie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.457028, + 48.905736 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBOBHC", + "ref": "", + "name": "Bobigny - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.457028, + 48.905736 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBOBHC", + "ref": "", + "name": "Bobigny - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.457028, + 48.905736 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBOBHC", + "ref": "", + "name": "Bobigny - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.457028, + 48.905736 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBOBHC", + "ref": "", + "name": "Bobigny - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.57864, + 50.515961 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLTOHI", + "ref": "", + "name": "Le Touquet-Paris-Plage - Hôtel Ibis", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.57864, + 50.515961 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLTOHI", + "ref": "", + "name": "Le Touquet-Paris-Plage - Hôtel Ibis", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.57864, + 50.515961 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLTOHI", + "ref": "", + "name": "Le Touquet-Paris-Plage - Hôtel Ibis", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.57864, + 50.515961 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLTOHI", + "ref": "", + "name": "Le Touquet-Paris-Plage - Hôtel Ibis", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZS", + "ref": "", + "name": "A61 - Aire d'Arzens Sud (direction Narbonne)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZS", + "ref": "", + "name": "A61 - Aire d'Arzens Sud (direction Narbonne)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.486965, + 48.951196 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAULCE", + "ref": "", + "name": "Aulnay-sous-Bois - Carrefour de l'Europe", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZS", + "ref": "", + "name": "A61 - Aire d'Arzens Sud (direction Narbonne)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.486965, + 48.951196 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAULCE", + "ref": "", + "name": "Aulnay-sous-Bois - Carrefour de l'Europe", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.486965, + 48.951196 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAULCE", + "ref": "", + "name": "Aulnay-sous-Bois - Carrefour de l'Europe", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.486965, + 48.951196 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAULCE", + "ref": "", + "name": "Aulnay-sous-Bois - Carrefour de l'Europe", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.486965, + 48.951196 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAULCE", + "ref": "", + "name": "Aulnay-sous-Bois - Carrefour de l'Europe", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.486965, + 48.951196 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAULCE", + "ref": "", + "name": "Aulnay-sous-Bois - Carrefour de l'Europe", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.486965, + 48.951196 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAULCE", + "ref": "", + "name": "Aulnay-sous-Bois - Carrefour de l'Europe", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432381, + 43.627319 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPTOUCM", + "ref": "", + "name": "Toulouse - Carrefour Market Minimes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432381, + 43.627319 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPTOUCM", + "ref": "", + "name": "Toulouse - Carrefour Market Minimes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432381, + 43.627319 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPTOUCM", + "ref": "", + "name": "Toulouse - Carrefour Market Minimes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432381, + 43.627319 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPTOUCM", + "ref": "", + "name": "Toulouse - Carrefour Market Minimes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.70466, + 48.83257 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBSGPC", + "ref": "", + "name": "Bussy Saint Georges - Hôtel Première Classe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.70466, + 48.83257 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBSGPC", + "ref": "", + "name": "Bussy Saint Georges - Hôtel Première Classe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.70466, + 48.83257 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBSGPC", + "ref": "", + "name": "Bussy Saint Georges - Hôtel Première Classe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.70466, + 48.83257 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBSGPC", + "ref": "", + "name": "Bussy Saint Georges - Hôtel Première Classe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.891127, + 43.586799 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPMONHC", + "ref": "", + "name": "Montpellier - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.891127, + 43.586799 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPMONHC", + "ref": "", + "name": "Montpellier - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.891127, + 43.586799 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPMONHC", + "ref": "", + "name": "Montpellier - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.891127, + 43.586799 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPMONHC", + "ref": "", + "name": "Montpellier - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZS", + "ref": "", + "name": "A61 - Aire d'Arzens Sud (direction Narbonne)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZS", + "ref": "", + "name": "A61 - Aire d'Arzens Sud (direction Narbonne)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZS", + "ref": "", + "name": "A61 - Aire d'Arzens Sud (direction Narbonne)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZS", + "ref": "", + "name": "A61 - Aire d'Arzens Sud (direction Narbonne)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZS", + "ref": "", + "name": "A61 - Aire d'Arzens Sud (direction Narbonne)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZS", + "ref": "", + "name": "A61 - Aire d'Arzens Sud (direction Narbonne)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZS", + "ref": "", + "name": "A61 - Aire d'Arzens Sud (direction Narbonne)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZS", + "ref": "", + "name": "A61 - Aire d'Arzens Sud (direction Narbonne)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZS", + "ref": "", + "name": "A61 - Aire d'Arzens Sud (direction Narbonne)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAVITE", + "ref": "", + "name": "A7 - Aire de Vitrolles Est (direction Orange)", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.251933, + 43.425474 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVITHK", + "ref": "", + "name": "Vitrolles - Hôtel Kyriad Aéroport", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-15", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAVITE", + "ref": "", + "name": "A7 - Aire de Vitrolles Est (direction Orange)", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.896053, + 43.586723 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLATHF", + "ref": "", + "name": "Lattes - Hôtel F1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.896053, + 43.586723 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLATHF", + "ref": "", + "name": "Lattes - Hôtel F1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343442, + 43.814854 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPNIMHF", + "ref": "", + "name": "Nîmes - Hôtel F1 Ouest", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510056, + 47.436268 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPDCHK", + "ref": "", + "name": "Les Ponts-de-Cé - Hôtel Kyriad", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510056, + 47.436268 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPDCHK", + "ref": "", + "name": "Les Ponts-de-Cé - Hôtel Kyriad", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510056, + 47.436268 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPDCHK", + "ref": "", + "name": "Les Ponts-de-Cé - Hôtel Kyriad", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510056, + 47.436268 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPDCHK", + "ref": "", + "name": "Les Ponts-de-Cé - Hôtel Kyriad", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567111, + 44.890889 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBORBL", + "ref": "", + "name": "Bordeaux - Novotel Bordeaux Lac", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567111, + 44.890889 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBORBL", + "ref": "", + "name": "Bordeaux - Novotel Bordeaux Lac", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567111, + 44.890889 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBORBL", + "ref": "", + "name": "Bordeaux - Novotel Bordeaux Lac", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567111, + 44.890889 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBORBL", + "ref": "", + "name": "Bordeaux - Novotel Bordeaux Lac", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567111, + 44.890889 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBORBL", + "ref": "", + "name": "Bordeaux - Novotel Bordeaux Lac", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567111, + 44.890889 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBORBL", + "ref": "", + "name": "Bordeaux - Novotel Bordeaux Lac", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567111, + 44.890889 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBORBL", + "ref": "", + "name": "Bordeaux - Novotel Bordeaux Lac", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567111, + 44.890889 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBORBL", + "ref": "", + "name": "Bordeaux - Novotel Bordeaux Lac", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.783111, + 45.785651 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPECUSM", + "ref": "", + "name": "Écully - Smart Lyon Écully", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-10", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.783111, + 45.785651 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPECUSM", + "ref": "", + "name": "Écully - Smart Lyon Écully", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-10", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.783111, + 45.785651 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPECUSM", + "ref": "", + "name": "Écully - Smart Lyon Écully", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-10", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.783111, + 45.785651 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPECUSM", + "ref": "", + "name": "Écully - Smart Lyon Écully", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-10", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAL45", + "ref": "", + "name": "A7 - Aire Latitude 45 (direction Lyon)", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.896053, + 43.586723 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLATHF", + "ref": "", + "name": "Lattes - Hôtel F1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.896053, + 43.586723 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLATHF", + "ref": "", + "name": "Lattes - Hôtel F1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.223741, + 49.506783 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGOOOC", + "ref": "", + "name": "Gonfreville-l'Orcher - Centre commercial Océane", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.223741, + 49.506783 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGOOOC", + "ref": "", + "name": "Gonfreville-l'Orcher - Centre commercial Océane", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.691718, + 45.916657 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPASDC", + "ref": "", + "name": "Passy - Decathlon Mountain Store", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.691718, + 45.916657 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPASDC", + "ref": "", + "name": "Passy - Decathlon Mountain Store", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.691718, + 45.916657 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPASDC", + "ref": "", + "name": "Passy - Decathlon Mountain Store", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004127, + 44.040485 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGARB", + "ref": "", + "name": "A62 - Aire de Garonne (direction Bordeaux)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004127, + 44.040485 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGARB", + "ref": "", + "name": "A62 - Aire de Garonne (direction Bordeaux)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004127, + 44.040485 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGARB", + "ref": "", + "name": "A62 - Aire de Garonne (direction Bordeaux)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004127, + 44.040485 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGARB", + "ref": "", + "name": "A62 - Aire de Garonne (direction Bordeaux)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004127, + 44.040485 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGARB", + "ref": "", + "name": "A62 - Aire de Garonne (direction Bordeaux)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004127, + 44.040485 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGARB", + "ref": "", + "name": "A62 - Aire de Garonne (direction Bordeaux)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004127, + 44.040485 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGARB", + "ref": "", + "name": "A62 - Aire de Garonne (direction Bordeaux)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004127, + 44.040485 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGARB", + "ref": "", + "name": "A62 - Aire de Garonne (direction Bordeaux)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004127, + 44.040485 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGARB", + "ref": "", + "name": "A62 - Aire de Garonne (direction Bordeaux)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004127, + 44.040485 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGARB", + "ref": "", + "name": "A62 - Aire de Garonne (direction Bordeaux)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004127, + 44.040485 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGARB", + "ref": "", + "name": "A62 - Aire de Garonne (direction Bordeaux)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.004127, + 44.040485 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGARB", + "ref": "", + "name": "A62 - Aire de Garonne (direction Bordeaux)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.913071, + 45.655726 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPDRULE", + "ref": "", + "name": "Drumettaz-Clarafond - E.Leclerc", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.913071, + 45.655726 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPDRULE", + "ref": "", + "name": "Drumettaz-Clarafond - E.Leclerc", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.913071, + 45.655726 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPDRULE", + "ref": "", + "name": "Drumettaz-Clarafond - E.Leclerc", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.913071, + 45.655726 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPDRULE", + "ref": "", + "name": "Drumettaz-Clarafond - E.Leclerc", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.913071, + 45.655726 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPDRULE", + "ref": "", + "name": "Drumettaz-Clarafond - E.Leclerc", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAVITE", + "ref": "", + "name": "A7 - Aire de Vitrolles Est (direction Orange)", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.691718, + 45.916657 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPASDC", + "ref": "", + "name": "Passy - Decathlon Mountain Store", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.691718, + 45.916657 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPASDC", + "ref": "", + "name": "Passy - Decathlon Mountain Store", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.691718, + 45.916657 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPPASDC", + "ref": "", + "name": "Passy - Decathlon Mountain Store", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.989333, + 45.957027 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAMZT", + "ref": "", + "name": "A89 - Aire de Manzat (double sens)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.223741, + 49.506783 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGOOOC", + "ref": "", + "name": "Gonfreville-l'Orcher - Centre commercial Océane", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.223741, + 49.506783 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGOOOC", + "ref": "", + "name": "Gonfreville-l'Orcher - Centre commercial Océane", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.223741, + 49.506783 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGOOOC", + "ref": "", + "name": "Gonfreville-l'Orcher - Centre commercial Océane", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.223741, + 49.506783 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGOOOC", + "ref": "", + "name": "Gonfreville-l'Orcher - Centre commercial Océane", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.223741, + 49.506783 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGOOOC", + "ref": "", + "name": "Gonfreville-l'Orcher - Centre commercial Océane", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.223741, + 49.506783 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPGOOOC", + "ref": "", + "name": "Gonfreville-l'Orcher - Centre commercial Océane", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.989333, + 45.957027 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAMZT", + "ref": "", + "name": "A89 - Aire de Manzat (double sens)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.989333, + 45.957027 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAMZT", + "ref": "", + "name": "A89 - Aire de Manzat (double sens)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.989333, + 45.957027 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAMZT", + "ref": "", + "name": "A89 - Aire de Manzat (double sens)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.989333, + 45.957027 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAMZT", + "ref": "", + "name": "A89 - Aire de Manzat (double sens)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.239637, + 47.943807 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRUAFV", + "ref": "", + "name": "Ruaudin - CC Family Village les Hunaudières", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.989333, + 45.957027 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAMZT", + "ref": "", + "name": "A89 - Aire de Manzat (double sens)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.989333, + 45.957027 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAMZT", + "ref": "", + "name": "A89 - Aire de Manzat (double sens)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.989333, + 45.957027 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAMZT", + "ref": "", + "name": "A89 - Aire de Manzat (double sens)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.989333, + 45.957027 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAMZT", + "ref": "", + "name": "A89 - Aire de Manzat (double sens)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.989333, + 45.957027 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAMZT", + "ref": "", + "name": "A89 - Aire de Manzat (double sens)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.989333, + 45.957027 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAMZT", + "ref": "", + "name": "A89 - Aire de Manzat (double sens)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.239637, + 47.943807 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRUAFV", + "ref": "", + "name": "Ruaudin - CC Family Village les Hunaudières", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.239637, + 47.943807 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRUAFV", + "ref": "", + "name": "Ruaudin - CC Family Village les Hunaudières", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.239637, + 47.943807 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRUAFV", + "ref": "", + "name": "Ruaudin - CC Family Village les Hunaudières", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343442, + 43.814854 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPNIMHF", + "ref": "", + "name": "Nîmes - Hôtel F1 Ouest", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.989333, + 45.957027 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAMZT", + "ref": "", + "name": "A89 - Aire de Manzat (double sens)", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343442, + 43.814854 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPNIMHF", + "ref": "", + "name": "Nîmes - Hôtel F1 Ouest", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZN", + "ref": "", + "name": "A61 - Aire d'Arzens Nord (direction Toulouse)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZN", + "ref": "", + "name": "A61 - Aire d'Arzens Nord (direction Toulouse)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZN", + "ref": "", + "name": "A61 - Aire d'Arzens Nord (direction Toulouse)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZN", + "ref": "", + "name": "A61 - Aire d'Arzens Nord (direction Toulouse)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.356176, + 48.979566 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSMPHK", + "ref": "", + "name": "Saint-Martin-sur-le-Pré - Hôtel Kyriad", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.356176, + 48.979566 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSMPHK", + "ref": "", + "name": "Saint-Martin-sur-le-Pré - Hôtel Kyriad", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.356176, + 48.979566 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSMPHK", + "ref": "", + "name": "Saint-Martin-sur-le-Pré - Hôtel Kyriad", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.356176, + 48.979566 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSMPHK", + "ref": "", + "name": "Saint-Martin-sur-le-Pré - Hôtel Kyriad", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774386, + 45.184057 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBIMHU", + "ref": "", + "name": "Boulazac-Isle-Manoire - Hyper U", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774386, + 45.184057 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBIMHU", + "ref": "", + "name": "Boulazac-Isle-Manoire - Hyper U", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774386, + 45.184057 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBIMHU", + "ref": "", + "name": "Boulazac-Isle-Manoire - Hyper U", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774386, + 45.184057 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBIMHU", + "ref": "", + "name": "Boulazac-Isle-Manoire - Hyper U", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-06", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.226182, + 48.867245 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSURHC", + "ref": "", + "name": "Suresnes - Hôtel Campanile", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.226182, + 48.867245 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSURHC", + "ref": "", + "name": "Suresnes - Hôtel Campanile", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.226182, + 48.867245 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSURHC", + "ref": "", + "name": "Suresnes - Hôtel Campanile", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.226182, + 48.867245 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSURHC", + "ref": "", + "name": "Suresnes - Hôtel Campanile", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.226182, + 48.867245 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSURHC", + "ref": "", + "name": "Suresnes - Hôtel Campanile", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37351, + 48.919733 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAUBVM", + "ref": "", + "name": "Aubervilliers - Lab Village mobilité", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37351, + 48.919733 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAUBVM", + "ref": "", + "name": "Aubervilliers - Lab Village mobilité", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37351, + 48.919733 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAUBVM", + "ref": "", + "name": "Aubervilliers - Lab Village mobilité", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37351, + 48.919733 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAUBVM", + "ref": "", + "name": "Aubervilliers - Lab Village mobilité", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.256257, + 43.392152 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGIR", + "ref": "", + "name": "A55 - Aire de Gignac Rebuty (direction Martigues)", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZN", + "ref": "", + "name": "A61 - Aire d'Arzens Nord (direction Toulouse)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZN", + "ref": "", + "name": "A61 - Aire d'Arzens Nord (direction Toulouse)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.256257, + 43.392152 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGIR", + "ref": "", + "name": "A55 - Aire de Gignac Rebuty (direction Martigues)", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZN", + "ref": "", + "name": "A61 - Aire d'Arzens Nord (direction Toulouse)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAVITE", + "ref": "", + "name": "A7 - Aire de Vitrolles Est (direction Orange)", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343442, + 43.814854 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPNIMHF", + "ref": "", + "name": "Nîmes - Hôtel F1 Ouest", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAVITE", + "ref": "", + "name": "A7 - Aire de Vitrolles Est (direction Orange)", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAVITE", + "ref": "", + "name": "A7 - Aire de Vitrolles Est (direction Orange)", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAVITE", + "ref": "", + "name": "A7 - Aire de Vitrolles Est (direction Orange)", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.474908, + 45.146041 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLGHC", + "ref": "", + "name": "Brive-la-Gaillarde - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.474908, + 45.146041 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLGHC", + "ref": "", + "name": "Brive-la-Gaillarde - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.474908, + 45.146041 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLGHC", + "ref": "", + "name": "Brive-la-Gaillarde - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.474908, + 45.146041 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPBLGHC", + "ref": "", + "name": "Brive-la-Gaillarde - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.945414, + 48.757309 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVERHC", + "ref": "", + "name": "La Verrière - Hôtel The Originals City", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.945414, + 48.757309 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVERHC", + "ref": "", + "name": "La Verrière - Hôtel The Originals City", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.945414, + 48.757309 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVERHC", + "ref": "", + "name": "La Verrière - Hôtel The Originals City", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.945414, + 48.757309 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPVERHC", + "ref": "", + "name": "La Verrière - Hôtel The Originals City", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZN", + "ref": "", + "name": "A61 - Aire d'Arzens Nord (direction Toulouse)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZN", + "ref": "", + "name": "A61 - Aire d'Arzens Nord (direction Toulouse)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZN", + "ref": "", + "name": "A61 - Aire d'Arzens Nord (direction Toulouse)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZN", + "ref": "", + "name": "A61 - Aire d'Arzens Nord (direction Toulouse)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZN", + "ref": "", + "name": "A61 - Aire d'Arzens Nord (direction Toulouse)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZN", + "ref": "", + "name": "A61 - Aire d'Arzens Nord (direction Toulouse)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZN", + "ref": "", + "name": "A61 - Aire d'Arzens Nord (direction Toulouse)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZN", + "ref": "", + "name": "A61 - Aire d'Arzens Nord (direction Toulouse)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.256257, + 43.392152 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGIR", + "ref": "", + "name": "A55 - Aire de Gignac Rebuty (direction Martigues)", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAARZN", + "ref": "", + "name": "A61 - Aire d'Arzens Nord (direction Toulouse)", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.256257, + 43.392152 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGIR", + "ref": "", + "name": "A55 - Aire de Gignac Rebuty (direction Martigues)", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.807382, + 50.927269 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCOQCH", + "ref": "", + "name": "Coquelles - Channel Outlet", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44596, + 43.48195 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSPIAM", + "ref": "", + "name": "Saint-Pierre-d'Irube - CC Ametzondo Shopping", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44596, + 43.48195 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSPIAM", + "ref": "", + "name": "Saint-Pierre-d'Irube - CC Ametzondo Shopping", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44596, + 43.48195 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSPIAM", + "ref": "", + "name": "Saint-Pierre-d'Irube - CC Ametzondo Shopping", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44596, + 43.48195 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSPIAM", + "ref": "", + "name": "Saint-Pierre-d'Irube - CC Ametzondo Shopping", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44596, + 43.48195 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPSPIAM", + "ref": "", + "name": "Saint-Pierre-d'Irube - CC Ametzondo Shopping", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.147748, + 43.057557 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPHYEHI", + "ref": "", + "name": "Hyères - Hôtel Ibis Plage", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.147748, + 43.057557 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPHYEHI", + "ref": "", + "name": "Hyères - Hôtel Ibis Plage", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.147748, + 43.057557 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPHYEHI", + "ref": "", + "name": "Hyères - Hôtel Ibis Plage", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.147748, + 43.057557 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPHYEHI", + "ref": "", + "name": "Hyères - Hôtel Ibis Plage", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.498058, + 44.867476 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAPBHC", + "ref": "", + "name": "Artigues-près-Bordeaux - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.498058, + 44.867476 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAPBHC", + "ref": "", + "name": "Artigues-près-Bordeaux - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.498058, + 44.867476 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAPBHC", + "ref": "", + "name": "Artigues-près-Bordeaux - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.181986, + 48.031126 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLMAPM", + "ref": "", + "name": "Le Mans - Parc Manceau", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.181986, + 48.031126 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLMAPM", + "ref": "", + "name": "Le Mans - Parc Manceau", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.181986, + 48.031126 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLMAPM", + "ref": "", + "name": "Le Mans - Parc Manceau", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.181986, + 48.031126 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLMAPM", + "ref": "", + "name": "Le Mans - Parc Manceau", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.181986, + 48.031126 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLMAPM", + "ref": "", + "name": "Le Mans - Parc Manceau", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.181986, + 48.031126 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLMAPM", + "ref": "", + "name": "Le Mans - Parc Manceau", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.256257, + 43.392152 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGIR", + "ref": "", + "name": "A55 - Aire de Gignac Rebuty (direction Martigues)", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.181986, + 48.031126 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLMAPM", + "ref": "", + "name": "Le Mans - Parc Manceau", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.181986, + 48.031126 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPLMAPM", + "ref": "", + "name": "Le Mans - Parc Manceau", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.807382, + 50.927269 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCOQCH", + "ref": "", + "name": "Coquelles - Channel Outlet", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.498058, + 44.867476 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAPBHC", + "ref": "", + "name": "Artigues-près-Bordeaux - Hôtel Campanile", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.807382, + 50.927269 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCOQCH", + "ref": "", + "name": "Coquelles - Channel Outlet", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865497, + 45.068712 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPTLHIM", + "ref": "", + "name": "Tain-l'Hermitage - Intermarché", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.256257, + 43.392152 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGIR", + "ref": "", + "name": "A55 - Aire de Gignac Rebuty (direction Martigues)", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.256257, + 43.392152 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGIR", + "ref": "", + "name": "A55 - Aire de Gignac Rebuty (direction Martigues)", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.807382, + 50.927269 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCOQCH", + "ref": "", + "name": "Coquelles - Channel Outlet", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.469154, + 46.330655 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPNIOLE", + "ref": "", + "name": "Niort - E.Leclerc Centre", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.469154, + 46.330655 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPNIOLE", + "ref": "", + "name": "Niort - E.Leclerc Centre", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.469154, + 46.330655 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPNIOLE", + "ref": "", + "name": "Niort - E.Leclerc Centre", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.469154, + 46.330655 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPNIOLE", + "ref": "", + "name": "Niort - E.Leclerc Centre", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865497, + 45.068712 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPTLHIM", + "ref": "", + "name": "Tain-l'Hermitage - Intermarché", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865497, + 45.068712 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPTLHIM", + "ref": "", + "name": "Tain-l'Hermitage - Intermarché", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865497, + 45.068712 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPTLHIM", + "ref": "", + "name": "Tain-l'Hermitage - Intermarché", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-27", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.469154, + 46.330655 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPNIOLE", + "ref": "", + "name": "Niort - E.Leclerc Centre", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.351056, + 48.752931 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRUNBW", + "ref": "", + "name": "Rungis - Best Western Paris Orly Airport", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.351056, + 48.752931 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRUNBW", + "ref": "", + "name": "Rungis - Best Western Paris Orly Airport", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.351056, + 48.752931 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRUNBW", + "ref": "", + "name": "Rungis - Best Western Paris Orly Airport", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.807382, + 50.927269 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCOQCH", + "ref": "", + "name": "Coquelles - Channel Outlet", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.351056, + 48.752931 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPRUNBW", + "ref": "", + "name": "Rungis - Best Western Paris Orly Airport", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.256257, + 43.392152 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPAAGIR", + "ref": "", + "name": "A55 - Aire de Gignac Rebuty (direction Martigues)", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.807382, + 50.927269 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCOQCH", + "ref": "", + "name": "Coquelles - Channel Outlet", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.807382, + 50.927269 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCOQCH", + "ref": "", + "name": "Coquelles - Channel Outlet", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.807382, + 50.927269 + ] + }, + "properties": { + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "phone": "", + "network": "ELECTRA", + "ref:EU:EVSE": "FRELCPCOQCH", + "ref": "", + "name": "Coquelles - Channel Outlet", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-14", + "note": "Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641617, + 43.074883 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pamiers", + "ref:EU:EVSE": "FRIONE4466", + "ref": "FRIONE4466", + "name": "Pamiers", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64957872, + 47.6595272 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEMILLE SUR DEME 1224", + "ref:EU:EVSE": "FRS37E122", + "ref": "FRS37E122", + "name": "CHEMILLE SUR DEME 1224", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64957872, + 47.6595272 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEMILLE SUR DEME 1224", + "ref:EU:EVSE": "FRS37E122", + "ref": "FRS37E122", + "name": "CHEMILLE SUR DEME 1224", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.46238452, + 47.25496397 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEILLE 1222", + "ref:EU:EVSE": "FRS37E122", + "ref": "FRS37E122", + "name": "CHEILLE 1222", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.46238452, + 47.25496397 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEILLE 1222", + "ref:EU:EVSE": "FRS37E122", + "ref": "FRS37E122", + "name": "CHEILLE 1222", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641617, + 43.074883 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pamiers", + "ref:EU:EVSE": "FRIONE44660", + "ref": "FRIONE44660", + "name": "Pamiers", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641617, + 43.074883 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pamiers", + "ref:EU:EVSE": "FRIONE44660", + "ref": "FRIONE44660", + "name": "Pamiers", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641617, + 43.074883 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pamiers", + "ref:EU:EVSE": "FRIONE44660", + "ref": "FRIONE44660", + "name": "Pamiers", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641617, + 43.074883 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pamiers", + "ref:EU:EVSE": "FRIONE44660", + "ref": "FRIONE44660", + "name": "Pamiers", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641617, + 43.074883 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pamiers", + "ref:EU:EVSE": "FRIONE44660", + "ref": "FRIONE44660", + "name": "Pamiers", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641617, + 43.074883 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pamiers", + "ref:EU:EVSE": "FRIONE44660", + "ref": "FRIONE44660", + "name": "Pamiers", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24037957, + 47.16745011 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHINON 1226 - Parking de la Brêche", + "ref:EU:EVSE": "FRS37E122", + "ref": "FRS37E122", + "name": "CHINON 1226 - Parking de la Brêche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6971043, + 47.34927895 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAMBRAY LES TOURS 1218", + "ref:EU:EVSE": "FRS37E121", + "ref": "FRS37E121", + "name": "CHAMBRAY LES TOURS 1218", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24037957, + 47.16745011 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHINON 1226 - Parking de la Brêche", + "ref:EU:EVSE": "FRS37E122", + "ref": "FRS37E122", + "name": "CHINON 1226 - Parking de la Brêche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.93017391, + 47.2602472 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CIGOGNE 1228", + "ref:EU:EVSE": "FRS37E122", + "ref": "FRS37E122", + "name": "CIGOGNE 1228", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.402639, + 48.23192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Haut Koenigsbourg", + "ref:EU:EVSE": "FRIONE41380", + "ref": "FRIONE41380", + "name": "Haut Koenigsbourg", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.402639, + 48.23192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Haut Koenigsbourg", + "ref:EU:EVSE": "FRIONE41380", + "ref": "FRIONE41380", + "name": "Haut Koenigsbourg", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.402639, + 48.23192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Haut Koenigsbourg", + "ref:EU:EVSE": "FRIONE41380", + "ref": "FRIONE41380", + "name": "Haut Koenigsbourg", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.402639, + 48.23192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Haut Koenigsbourg", + "ref:EU:EVSE": "FRIONE41380", + "ref": "FRIONE41380", + "name": "Haut Koenigsbourg", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.402639, + 48.23192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Haut Koenigsbourg", + "ref:EU:EVSE": "FRIONE41380", + "ref": "FRIONE41380", + "name": "Haut Koenigsbourg", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.402639, + 48.23192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Haut Koenigsbourg", + "ref:EU:EVSE": "FRIONE41380", + "ref": "FRIONE41380", + "name": "Haut Koenigsbourg", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.402639, + 48.23192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Haut Koenigsbourg", + "ref:EU:EVSE": "FRIONE4138", + "ref": "FRIONE4138", + "name": "Haut Koenigsbourg", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.93017391, + 47.2602472 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CIGOGNE 1228", + "ref:EU:EVSE": "FRS37E122", + "ref": "FRS37E122", + "name": "CIGOGNE 1228", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.834738, + 48.302818 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATENOIS - Allée Pré le Duc - 163450 - CCS", + "ref:EU:EVSE": "FRS88E16345", + "ref": "FRS88E16345", + "name": "CHATENOIS - Allée Pré le Duc - 163450 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.834738, + 48.302818 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATENOIS - Allée Pré le Duc - 163450 - CCS", + "ref:EU:EVSE": "FRS88E16345", + "ref": "FRS88E16345", + "name": "CHATENOIS - Allée Pré le Duc - 163450 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45853597, + 47.34623877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CINQ MARS LA PILE 1230", + "ref:EU:EVSE": "FRS37E123", + "ref": "FRS37E123", + "name": "CINQ MARS LA PILE 1230", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45853597, + 47.34623877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CINQ MARS LA PILE 1230", + "ref:EU:EVSE": "FRS37E123", + "ref": "FRS37E123", + "name": "CINQ MARS LA PILE 1230", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.96435995, + 47.18394345 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAMBOURG SUR INDRE 1216", + "ref:EU:EVSE": "FRS37E121", + "ref": "FRS37E121", + "name": "CHAMBOURG SUR INDRE 1216", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.067522, + 46.189118 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "TROISGROS IGUERANDE", + "ref:EU:EVSE": "FRCPIE6631675", + "ref": "FRCPIE6631675", + "name": "TROISGROS IGUERANDE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.067522, + 46.189118 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "TROISGROS IGUERANDE", + "ref:EU:EVSE": "FRCPIE6631675", + "ref": "FRCPIE6631675", + "name": "TROISGROS IGUERANDE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6971043, + 47.34927895 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAMBRAY LES TOURS 1218", + "ref:EU:EVSE": "FRS37E121", + "ref": "FRS37E121", + "name": "CHAMBRAY LES TOURS 1218", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.79825, + 50.927053 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Coquelles", + "ref:EU:EVSE": "FRIONE43970", + "ref": "FRIONE43970", + "name": "Coquelles", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.96435995, + 47.18394345 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAMBOURG SUR INDRE 1216", + "ref:EU:EVSE": "FRS37E121", + "ref": "FRS37E121", + "name": "CHAMBOURG SUR INDRE 1216", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.79825, + 50.927053 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Coquelles", + "ref:EU:EVSE": "FRIONE43970", + "ref": "FRIONE43970", + "name": "Coquelles", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.917294, + 48.743286 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "EBC RECHARGE BORNE 1", + "ref:EU:EVSE": "FRCPIE6655025", + "ref": "FRCPIE6655025", + "name": "EBC RECHARGE BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.398609, + 47.063632 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Val d'Auron - 98422", + "ref:EU:EVSE": "FRS18E9842", + "ref": "FRS18E9842", + "name": "BOURGES - Val d'Auron - 98422", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-28", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.154907, + 45.682211 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire de la Plaine du Forez Ouest", + "ref:EU:EVSE": "FRSPSESHEL111", + "ref": "FRSPSESHEL111", + "name": "Aire de la Plaine du Forez Ouest", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706887, + 47.615333 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U GREZ N STATION 2", + "ref:EU:EVSE": "FRCPIE6571345", + "ref": "FRCPIE6571345", + "name": "SUPER U GREZ N STATION 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706887, + 47.615333 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U GREZ N STATION 2", + "ref:EU:EVSE": "FRCPIE6571345", + "ref": "FRCPIE6571345", + "name": "SUPER U GREZ N STATION 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.988131, + 47.411565 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AMBOISE 1184 - Château", + "ref:EU:EVSE": "FRS37E118", + "ref": "FRS37E118", + "name": "AMBOISE 1184 - Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.988131, + 47.411565 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AMBOISE 1184 - Château", + "ref:EU:EVSE": "FRS37E118", + "ref": "FRS37E118", + "name": "AMBOISE 1184 - Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.273755, + 45.337849 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire de Lafayette Lorlanges", + "ref:EU:EVSE": "FRSPSESHEL41", + "ref": "FRSPSESHEL41", + "name": "Aire de Lafayette Lorlanges", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9873037, + 47.53765557 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUTRECHE 1198", + "ref:EU:EVSE": "FRS37E119", + "ref": "FRS37E119", + "name": "AUTRECHE 1198", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9873037, + 47.53765557 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUTRECHE 1198", + "ref:EU:EVSE": "FRS37E119", + "ref": "FRS37E119", + "name": "AUTRECHE 1198", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.79825, + 50.927053 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Coquelles", + "ref:EU:EVSE": "FRIONE43970", + "ref": "FRIONE43970", + "name": "Coquelles", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.79825, + 50.927053 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Coquelles", + "ref:EU:EVSE": "FRIONE43970", + "ref": "FRIONE43970", + "name": "Coquelles", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.79825, + 50.927053 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Coquelles", + "ref:EU:EVSE": "FRIONE43970", + "ref": "FRIONE43970", + "name": "Coquelles", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.79825, + 50.927053 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Coquelles", + "ref:EU:EVSE": "FRIONE43970", + "ref": "FRIONE43970", + "name": "Coquelles", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.79825, + 50.927053 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Coquelles", + "ref:EU:EVSE": "FRIONE4397", + "ref": "FRIONE4397", + "name": "Coquelles", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60313761, + 47.02086795 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CELLE SAINT AVANT 1214", + "ref:EU:EVSE": "FRS37E121", + "ref": "FRS37E121", + "name": "LA CELLE SAINT AVANT 1214", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18304333, + 47.20550704 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVOINE 1200", + "ref:EU:EVSE": "FRS37E120", + "ref": "FRS37E120", + "name": "AVOINE 1200", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18304333, + 47.20550704 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVOINE 1200", + "ref:EU:EVSE": "FRS37E120", + "ref": "FRS37E120", + "name": "AVOINE 1200", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.920065, + 46.991234 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BETZ LE CHÂTEAU 1206", + "ref:EU:EVSE": "FRS37E120", + "ref": "FRS37E120", + "name": "BETZ LE CHÂTEAU 1206", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.920065, + 46.991234 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BETZ LE CHÂTEAU 1206", + "ref:EU:EVSE": "FRS37E120", + "ref": "FRS37E120", + "name": "BETZ LE CHÂTEAU 1206", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.585734, + 50.826737 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Laurent", + "ref:EU:EVSE": "FRIONE44020", + "ref": "FRIONE44020", + "name": "Saint Laurent", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.585734, + 50.826737 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Laurent", + "ref:EU:EVSE": "FRIONE44020", + "ref": "FRIONE44020", + "name": "Saint Laurent", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.585734, + 50.826737 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Laurent", + "ref:EU:EVSE": "FRIONE44020", + "ref": "FRIONE44020", + "name": "Saint Laurent", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.585734, + 50.826737 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Laurent", + "ref:EU:EVSE": "FRIONE44020", + "ref": "FRIONE44020", + "name": "Saint Laurent", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.585734, + 50.826737 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Laurent", + "ref:EU:EVSE": "FRIONE44020", + "ref": "FRIONE44020", + "name": "Saint Laurent", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.585734, + 50.826737 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Laurent", + "ref:EU:EVSE": "FRIONE44020", + "ref": "FRIONE44020", + "name": "Saint Laurent", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.585734, + 50.826737 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Laurent", + "ref:EU:EVSE": "FRIONE4402", + "ref": "FRIONE4402", + "name": "Saint Laurent", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16848028, + 47.27856391 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGUEIL 1208 - Rue Jean Causseret", + "ref:EU:EVSE": "FRS37E120", + "ref": "FRS37E120", + "name": "BOURGUEIL 1208 - Rue Jean Causseret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16848028, + 47.27856391 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGUEIL 1208 - Rue Jean Causseret", + "ref:EU:EVSE": "FRS37E120", + "ref": "FRS37E120", + "name": "BOURGUEIL 1208 - Rue Jean Causseret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60313761, + 47.02086795 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CELLE SAINT AVANT 1214", + "ref:EU:EVSE": "FRS37E121", + "ref": "FRS37E121", + "name": "LA CELLE SAINT AVANT 1214", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.398609, + 47.063632 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Val d'Auron - 98422", + "ref:EU:EVSE": "FRS18E9842", + "ref": "FRS18E9842", + "name": "BOURGES - Val d'Auron - 98422", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-28", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.625555, + 47.707641 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR GIEN", + "ref:EU:EVSE": "FRCPIE6517135", + "ref": "FRCPIE6517135", + "name": "SONEPAR GIEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.494947, + 47.276351 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATILLON SUR CHER - Rue de la mairie - 204266", + "ref:EU:EVSE": "FRS41E20426", + "ref": "FRS41E20426", + "name": "CHATILLON SUR CHER - Rue de la mairie - 204266", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.112239, + 47.599944 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PLOUHARNEL BORNE 2", + "ref:EU:EVSE": "FRCPIE6579895", + "ref": "FRCPIE6579895", + "name": "PLOUHARNEL BORNE 2", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref:EU:EVSE": "FRFASE330991", + "ref": "FRFASE330991", + "name": "Aire de Vémars Est", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref:EU:EVSE": "FRFASE330991", + "ref": "FRFASE330991", + "name": "Aire de Vémars Est", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref:EU:EVSE": "FRFASE330991", + "ref": "FRFASE330991", + "name": "Aire de Vémars Est", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref:EU:EVSE": "FRFASE330991", + "ref": "FRFASE330991", + "name": "Aire de Vémars Est", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref:EU:EVSE": "FRFASE330991", + "ref": "FRFASE330991", + "name": "Aire de Vémars Est", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref:EU:EVSE": "FRFASE330991", + "ref": "FRFASE330991", + "name": "Aire de Vémars Est", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref:EU:EVSE": "FRFASE330991", + "ref": "FRFASE330991", + "name": "Aire de Vémars Est", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.347042, + 43.35903 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire de Béziers Montblanc Sud", + "ref:EU:EVSE": "FRSPSESHEL21", + "ref": "FRSPSESHEL21", + "name": "Aire de Béziers Montblanc Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.657566, + 46.272776 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT OYONNAX", + "ref:EU:EVSE": "FRCPIE6577935", + "ref": "FRCPIE6577935", + "name": "SONEPAR CONNECT OYONNAX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.657566, + 46.272776 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT OYONNAX", + "ref:EU:EVSE": "FRCPIE6577935", + "ref": "FRCPIE6577935", + "name": "SONEPAR CONNECT OYONNAX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.435117, + 48.255846 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED SELESTAT 1", + "ref:EU:EVSE": "FRCPIE6579405", + "ref": "FRCPIE6579405", + "name": "CGED SELESTAT 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.435117, + 48.255846 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED SELESTAT 1", + "ref:EU:EVSE": "FRCPIE6579405", + "ref": "FRCPIE6579405", + "name": "CGED SELESTAT 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.625555, + 47.707641 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR GIEN", + "ref:EU:EVSE": "FRCPIE6517135", + "ref": "FRCPIE6517135", + "name": "SONEPAR GIEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.112239, + 47.599944 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PLOUHARNEL BORNE 2", + "ref:EU:EVSE": "FRCPIE6579885", + "ref": "FRCPIE6579885", + "name": "PLOUHARNEL BORNE 2", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.112239, + 47.599944 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PLOUHARNEL BORNE 2", + "ref:EU:EVSE": "FRCPIE6579895", + "ref": "FRCPIE6579895", + "name": "PLOUHARNEL BORNE 2", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.494947, + 47.276351 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATILLON SUR CHER - Rue de la mairie - 204266", + "ref:EU:EVSE": "FRS41E20426", + "ref": "FRS41E20426", + "name": "CHATILLON SUR CHER - Rue de la mairie - 204266", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.112239, + 47.599944 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PLOUHARNEL BORNE 2", + "ref:EU:EVSE": "FRCPIE6579905", + "ref": "FRCPIE6579905", + "name": "PLOUHARNEL BORNE 2", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.112239, + 47.599944 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PLOUHARNEL BORNE 2", + "ref:EU:EVSE": "FRCPIE6579905", + "ref": "FRCPIE6579905", + "name": "PLOUHARNEL BORNE 2", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.049856, + 49.050755 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Hambach", + "ref:EU:EVSE": "FRIENE003201", + "ref": "FRIENE003201", + "name": "Hambach", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.049856, + 49.050755 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Hambach", + "ref:EU:EVSE": "FRIENE003201", + "ref": "FRIENE003201", + "name": "Hambach", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.049856, + 49.050755 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Hambach", + "ref:EU:EVSE": "FRIENE003202", + "ref": "FRIENE003202", + "name": "Hambach", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.049856, + 49.050755 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Hambach", + "ref:EU:EVSE": "FRIENE003202", + "ref": "FRIENE003202", + "name": "Hambach", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref:EU:EVSE": "FRSHEE81", + "ref": "FRSHEE81", + "name": "Shell Aire de Bordeaux-Cestas Est A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref:EU:EVSE": "FRSHEE81", + "ref": "FRSHEE81", + "name": "Shell Aire de Bordeaux-Cestas Est A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref:EU:EVSE": "FRSHEE81", + "ref": "FRSHEE81", + "name": "Shell Aire de Bordeaux-Cestas Est A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref:EU:EVSE": "FRSHEE81", + "ref": "FRSHEE81", + "name": "Shell Aire de Bordeaux-Cestas Est A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref:EU:EVSE": "FRSHEE82", + "ref": "FRSHEE82", + "name": "Shell Aire de Bordeaux-Cestas Est A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref:EU:EVSE": "FRSHEE82", + "ref": "FRSHEE82", + "name": "Shell Aire de Bordeaux-Cestas Est A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref:EU:EVSE": "FRSHEE83", + "ref": "FRSHEE83", + "name": "Shell Aire de Bordeaux-Cestas Est A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.705724, + 47.613509 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U GREZ N STATION 4", + "ref:EU:EVSE": "FRCPIE6571365", + "ref": "FRCPIE6571365", + "name": "SUPER U GREZ N STATION 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref:EU:EVSE": "FRFASE330990", + "ref": "FRFASE330990", + "name": "Aire de Vémars Est", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref:EU:EVSE": "FRFASE330990", + "ref": "FRFASE330990", + "name": "Aire de Vémars Est", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref:EU:EVSE": "FRFASE330990", + "ref": "FRFASE330990", + "name": "Aire de Vémars Est", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref:EU:EVSE": "FRFASE330990", + "ref": "FRFASE330990", + "name": "Aire de Vémars Est", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.804213, + 50.289375 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ARRAS", + "ref:EU:EVSE": "FRCPIE6573245", + "ref": "FRCPIE6573245", + "name": "SONEPAR CONNECT ARRAS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.804213, + 50.289375 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ARRAS", + "ref:EU:EVSE": "FRCPIE6573245", + "ref": "FRCPIE6573245", + "name": "SONEPAR CONNECT ARRAS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2211991, + 47.38725302 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTINVOIR 1233", + "ref:EU:EVSE": "FRS37E123", + "ref": "FRS37E123", + "name": "CONTINVOIR 1233", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2211991, + 47.38725302 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTINVOIR 1233", + "ref:EU:EVSE": "FRS37E123", + "ref": "FRS37E123", + "name": "CONTINVOIR 1233", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.171081, + 47.211405 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT EN VERON 7746 - Rue Paul Langevin", + "ref:EU:EVSE": "FRS37E774", + "ref": "FRS37E774", + "name": "BEAUMONT EN VERON 7746 - Rue Paul Langevin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.171081, + 47.211405 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT EN VERON 7746 - Rue Paul Langevin", + "ref:EU:EVSE": "FRS37E774", + "ref": "FRS37E774", + "name": "BEAUMONT EN VERON 7746 - Rue Paul Langevin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.633191, + 48.992067 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire de Rosny sur Seine Sud", + "ref:EU:EVSE": "FRSPSESHEL61", + "ref": "FRSPSESHEL61", + "name": "Aire de Rosny sur Seine Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.632987, + 48.657458 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U PLESTIN SUPER U PLESTIN", + "ref:EU:EVSE": "FRCPIE6575785", + "ref": "FRCPIE6575785", + "name": "SUPER U PLESTIN SUPER U PLESTIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.632987, + 48.657458 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U PLESTIN SUPER U PLESTIN", + "ref:EU:EVSE": "FRCPIE6575785", + "ref": "FRCPIE6575785", + "name": "SUPER U PLESTIN SUPER U PLESTIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.346, + 47.1584 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CRAVANT LES COTEAUX 21830 - Place Pierre Alliet", + "ref:EU:EVSE": "FRS37E2183", + "ref": "FRS37E2183", + "name": "CRAVANT LES COTEAUX 21830 - Place Pierre Alliet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-16", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.336053, + 47.610357 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS - Rue du Vall Maillard - 139063", + "ref:EU:EVSE": "FRS41E13906", + "ref": "FRS41E13906", + "name": "BLOIS - Rue du Vall Maillard - 139063", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.336053, + 47.610357 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS - Rue du Vall Maillard - 139063", + "ref:EU:EVSE": "FRS41E13906", + "ref": "FRS41E13906", + "name": "BLOIS - Rue du Vall Maillard - 139063", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.114081, + 49.39632 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED ROUEN", + "ref:EU:EVSE": "FRCPIE6576835", + "ref": "FRCPIE6576835", + "name": "CGED ROUEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.114081, + 49.39632 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED ROUEN", + "ref:EU:EVSE": "FRCPIE6576835", + "ref": "FRCPIE6576835", + "name": "CGED ROUEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.335507, + 47.610383 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS - Rue de la Vall Maillard - 139033", + "ref:EU:EVSE": "FRS41E13903", + "ref": "FRS41E13903", + "name": "BLOIS - Rue de la Vall Maillard - 139033", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.335507, + 47.610383 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS - Rue de la Vall Maillard - 139033", + "ref:EU:EVSE": "FRS41E13903", + "ref": "FRS41E13903", + "name": "BLOIS - Rue de la Vall Maillard - 139033", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.335507, + 47.610383 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS - Rue de la Vall Maillard - 139033", + "ref:EU:EVSE": "FRS41E13903", + "ref": "FRS41E13903", + "name": "BLOIS - Rue de la Vall Maillard - 139033", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.335507, + 47.610383 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS - Rue de la Vall Maillard - 139033", + "ref:EU:EVSE": "FRS41E13903", + "ref": "FRS41E13903", + "name": "BLOIS - Rue de la Vall Maillard - 139033", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.26093, + 44.679571 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SALVIADIS U EXPRESS", + "ref:EU:EVSE": "FRCPIE6576965", + "ref": "FRCPIE6576965", + "name": "SALVIADIS U EXPRESS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.26093, + 44.679571 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SALVIADIS U EXPRESS", + "ref:EU:EVSE": "FRCPIE6576965", + "ref": "FRCPIE6576965", + "name": "SALVIADIS U EXPRESS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.456806, + 50.332881 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED PROUVY", + "ref:EU:EVSE": "FRCPIE6576985", + "ref": "FRCPIE6576985", + "name": "CGED PROUVY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.456806, + 50.332881 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED PROUVY", + "ref:EU:EVSE": "FRCPIE6576985", + "ref": "FRCPIE6576985", + "name": "CGED PROUVY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.625275, + 47.054038 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DRACHE 1244", + "ref:EU:EVSE": "FRS37E124", + "ref": "FRS37E124", + "name": "DRACHE 1244", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.625275, + 47.054038 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DRACHE 1244", + "ref:EU:EVSE": "FRS37E124", + "ref": "FRS37E124", + "name": "DRACHE 1244", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref:EU:EVSE": "FRFASE330990", + "ref": "FRFASE330990", + "name": "Aire de Vémars Est", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref:EU:EVSE": "FRFASE330990", + "ref": "FRFASE330990", + "name": "Aire de Vémars Est", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref:EU:EVSE": "FRFASE330990", + "ref": "FRFASE330990", + "name": "Aire de Vémars Est", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref:EU:EVSE": "FRFASE330990", + "ref": "FRFASE330990", + "name": "Aire de Vémars Est", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref:EU:EVSE": "FRFASE330990", + "ref": "FRFASE330990", + "name": "Aire de Vémars Est", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.917294, + 48.743286 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "EBC RECHARGE BORNE 1", + "ref:EU:EVSE": "FRCPIE6655025", + "ref": "FRCPIE6655025", + "name": "EBC RECHARGE BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.028962, + 49.252337 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Cathédrale 2 - 7676 place 1151", + "ref:EU:EVSE": "FRE10E767", + "ref": "FRE10E767", + "name": "Cathédrale 2 - 7676 place 1151", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.705724, + 47.613509 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U GREZ N STATION 4", + "ref:EU:EVSE": "FRCPIE6571365", + "ref": "FRCPIE6571365", + "name": "SUPER U GREZ N STATION 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.036172, + 49.249946 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Gambetta 3 - 7686", + "ref:EU:EVSE": "FRE10E768", + "ref": "FRE10E768", + "name": "Gambetta 3 - 7686", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.028962, + 49.252337 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Cathédrale 2 - 7676 place 1151", + "ref:EU:EVSE": "FRE10E767", + "ref": "FRE10E767", + "name": "Cathédrale 2 - 7676 place 1151", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.028962, + 49.252337 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Cathédrale 2 - 7676 place 1151", + "ref:EU:EVSE": "FRE10E767", + "ref": "FRE10E767", + "name": "Cathédrale 2 - 7676 place 1151", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref:EU:EVSE": "FRSHEE84", + "ref": "FRSHEE84", + "name": "Shell Aire de Bordeaux-Cestas Est A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.028962, + 49.252337 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Cathédrale 2 - 7676 place 1151", + "ref:EU:EVSE": "FRE10E767", + "ref": "FRE10E767", + "name": "Cathédrale 2 - 7676 place 1151", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.146781, + 43.867189 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U COUST BORNE CLIENT", + "ref:EU:EVSE": "FRCPIE6558885", + "ref": "FRCPIE6558885", + "name": "SUPER U COUST BORNE CLIENT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.146781, + 43.867189 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U COUST BORNE CLIENT", + "ref:EU:EVSE": "FRCPIE6558885", + "ref": "FRCPIE6558885", + "name": "SUPER U COUST BORNE CLIENT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.025925, + 49.25696 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Erlon 1 - 7680", + "ref:EU:EVSE": "FRE10E768", + "ref": "FRE10E768", + "name": "Erlon 1 - 7680", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.025925, + 49.25696 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Erlon 1 - 7680", + "ref:EU:EVSE": "FRE10E768", + "ref": "FRE10E768", + "name": "Erlon 1 - 7680", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.025925, + 49.25696 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Erlon 1 - 7680", + "ref:EU:EVSE": "FRE10E768", + "ref": "FRE10E768", + "name": "Erlon 1 - 7680", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.025925, + 49.25696 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Erlon 1 - 7680", + "ref:EU:EVSE": "FRE10E768", + "ref": "FRE10E768", + "name": "Erlon 1 - 7680", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15479, + 48.536616 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DIGNY - Rue de Marechal Leclerc - 171587", + "ref:EU:EVSE": "FRS28E17158", + "ref": "FRS28E17158", + "name": "DIGNY - Rue de Marechal Leclerc - 171587", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15479, + 48.536616 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DIGNY - Rue de Marechal Leclerc - 171587", + "ref:EU:EVSE": "FRS28E17158", + "ref": "FRS28E17158", + "name": "DIGNY - Rue de Marechal Leclerc - 171587", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.036172, + 49.249946 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Gambetta 3 - 7686", + "ref:EU:EVSE": "FRE10E768", + "ref": "FRE10E768", + "name": "Gambetta 3 - 7686", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.036172, + 49.249946 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Gambetta 3 - 7686", + "ref:EU:EVSE": "FRE10E768", + "ref": "FRE10E768", + "name": "Gambetta 3 - 7686", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.036172, + 49.249946 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Gambetta 3 - 7686", + "ref:EU:EVSE": "FRE10E768", + "ref": "FRE10E768", + "name": "Gambetta 3 - 7686", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.81278, + 45.856003 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire du Haut Forez Nord", + "ref:EU:EVSE": "FRSPSESHEL101", + "ref": "FRSPSESHEL101", + "name": "Aire du Haut Forez Nord", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.156668, + 45.547654 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val Gelon", + "ref:EU:EVSE": "FRIONE41000", + "ref": "FRIONE41000", + "name": "Val Gelon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.156668, + 45.547654 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val Gelon", + "ref:EU:EVSE": "FRIONE41000", + "ref": "FRIONE41000", + "name": "Val Gelon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.156668, + 45.547654 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val Gelon", + "ref:EU:EVSE": "FRIONE41000", + "ref": "FRIONE41000", + "name": "Val Gelon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.156668, + 45.547654 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val Gelon", + "ref:EU:EVSE": "FRIONE41000", + "ref": "FRIONE41000", + "name": "Val Gelon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.156668, + 45.547654 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val Gelon", + "ref:EU:EVSE": "FRIONE4100", + "ref": "FRIONE4100", + "name": "Val Gelon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.03122394, + 49.25696581 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Hôtel de ville 2 - 7689", + "ref:EU:EVSE": "FRE10E768", + "ref": "FRE10E768", + "name": "Hôtel de ville 2 - 7689", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.03122394, + 49.25696581 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Hôtel de ville 2 - 7689", + "ref:EU:EVSE": "FRE10E768", + "ref": "FRE10E768", + "name": "Hôtel de ville 2 - 7689", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315192, + 43.209029 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CARCASSONNE", + "ref:EU:EVSE": "FRCPIE6561965", + "ref": "FRCPIE6561965", + "name": "SONEPAR CONNECT CARCASSONNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315192, + 43.209029 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CARCASSONNE", + "ref:EU:EVSE": "FRCPIE6561965", + "ref": "FRCPIE6561965", + "name": "SONEPAR CONNECT CARCASSONNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09677, + 47.43294 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Pontchateau", + "ref:EU:EVSE": "FRIENE004501", + "ref": "FRIENE004501", + "name": "Pontchateau", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09677, + 47.43294 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Pontchateau", + "ref:EU:EVSE": "FRIENE004501", + "ref": "FRIENE004501", + "name": "Pontchateau", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09677, + 47.43294 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Pontchateau", + "ref:EU:EVSE": "FRIENE004502", + "ref": "FRIENE004502", + "name": "Pontchateau", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09677, + 47.43294 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Pontchateau", + "ref:EU:EVSE": "FRIENE004502", + "ref": "FRIENE004502", + "name": "Pontchateau", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.693481, + 50.443324 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SAS PETIT BORNE 1", + "ref:EU:EVSE": "FRCPIE6562155", + "ref": "FRCPIE6562155", + "name": "SAS PETIT BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.335403, + 45.169464 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac | N10, Aire de Bedenac Est", + "ref:EU:EVSE": "FRIONE43235", + "ref": "FRIONE43235", + "name": "Bedenac | N10, Aire de Bedenac Est", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.335403, + 45.169464 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac | N10, Aire de Bedenac Est", + "ref:EU:EVSE": "FRIONE43235", + "ref": "FRIONE43235", + "name": "Bedenac | N10, Aire de Bedenac Est", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.335403, + 45.169464 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac | N10, Aire de Bedenac Est", + "ref:EU:EVSE": "FRIONE43235", + "ref": "FRIONE43235", + "name": "Bedenac | N10, Aire de Bedenac Est", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.335422, + 47.780896 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LORIENT", + "ref:EU:EVSE": "FRCPIE6646405", + "ref": "FRCPIE6646405", + "name": "SONEPAR LORIENT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Roussilllon HW", + "ref:EU:EVSE": "FRSHEE178", + "ref": "FRSHEE178", + "name": "Shell Roussilllon HW", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Roussilllon HW", + "ref:EU:EVSE": "FRSHEE179", + "ref": "FRSHEE179", + "name": "Shell Roussilllon HW", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Roussilllon HW", + "ref:EU:EVSE": "FRSHEE179", + "ref": "FRSHEE179", + "name": "Shell Roussilllon HW", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Roussilllon HW", + "ref:EU:EVSE": "FRSHEE179", + "ref": "FRSHEE179", + "name": "Shell Roussilllon HW", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Roussilllon HW", + "ref:EU:EVSE": "FRSHEE180", + "ref": "FRSHEE180", + "name": "Shell Roussilllon HW", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Roussilllon HW", + "ref:EU:EVSE": "FRSHEE180", + "ref": "FRSHEE180", + "name": "Shell Roussilllon HW", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Roussilllon HW", + "ref:EU:EVSE": "FRSHEE180", + "ref": "FRSHEE180", + "name": "Shell Roussilllon HW", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Roussilllon HW", + "ref:EU:EVSE": "FRSHEE181", + "ref": "FRSHEE181", + "name": "Shell Roussilllon HW", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Roussilllon HW", + "ref:EU:EVSE": "FRSHEE181", + "ref": "FRSHEE181", + "name": "Shell Roussilllon HW", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Roussilllon HW", + "ref:EU:EVSE": "FRSHEE181", + "ref": "FRSHEE181", + "name": "Shell Roussilllon HW", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.99298, + 49.651375 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REMILLY AILLICOURT - 57519 - Rue de Raucourt", + "ref:EU:EVSE": "FRS08E5751", + "ref": "FRS08E5751", + "name": "REMILLY AILLICOURT - 57519 - Rue de Raucourt", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.99298, + 49.651375 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REMILLY AILLICOURT - 57519 - Rue de Raucourt", + "ref:EU:EVSE": "FRS08E5752", + "ref": "FRS08E5752", + "name": "REMILLY AILLICOURT - 57519 - Rue de Raucourt", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.264165, + 49.584589 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARGUT - 57702 - Rue de la Poste", + "ref:EU:EVSE": "FRS08E5770", + "ref": "FRS08E5770", + "name": "MARGUT - 57702 - Rue de la Poste", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.264165, + 49.584589 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARGUT - 57702 - Rue de la Poste", + "ref:EU:EVSE": "FRS08E5770", + "ref": "FRS08E5770", + "name": "MARGUT - 57702 - Rue de la Poste", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.117, + 49.468399 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ASFELD - 57563 - Place Grand Cour", + "ref:EU:EVSE": "FRS08E5756", + "ref": "FRS08E5756", + "name": "ASFELD - 57563 - Place Grand Cour", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.117, + 49.468399 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ASFELD - 57563 - Place Grand Cour", + "ref:EU:EVSE": "FRS08E5756", + "ref": "FRS08E5756", + "name": "ASFELD - 57563 - Place Grand Cour", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.992031, + 46.010641 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "TROISGROS OUCHES", + "ref:EU:EVSE": "FRCPIE6629385", + "ref": "FRCPIE6629385", + "name": "TROISGROS OUCHES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.992031, + 46.010641 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "TROISGROS OUCHES", + "ref:EU:EVSE": "FRCPIE6629385", + "ref": "FRCPIE6629385", + "name": "TROISGROS OUCHES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.060857, + 47.260997 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUZILLE 1451", + "ref:EU:EVSE": "FRS37E145", + "ref": "FRS37E145", + "name": "LUZILLE 1451", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.060857, + 47.260997 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUZILLE 1451", + "ref:EU:EVSE": "FRS37E145", + "ref": "FRS37E145", + "name": "LUZILLE 1451", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.358258, + 49.901528 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED AMIENS", + "ref:EU:EVSE": "FRCPIE6652755", + "ref": "FRCPIE6652755", + "name": "CGED CGED AMIENS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.358258, + 49.901528 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED AMIENS", + "ref:EU:EVSE": "FRCPIE6652755", + "ref": "FRCPIE6652755", + "name": "CGED CGED AMIENS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.490806, + 43.451614 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE HU BORNE 2", + "ref:EU:EVSE": "FRCPIE6557355", + "ref": "FRCPIE6557355", + "name": "BORNE HU BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.490806, + 43.451614 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE HU BORNE 2", + "ref:EU:EVSE": "FRCPIE6557355", + "ref": "FRCPIE6557355", + "name": "BORNE HU BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.490806, + 43.451614 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE HU BORNE 2", + "ref:EU:EVSE": "FRCPIE6609555", + "ref": "FRCPIE6609555", + "name": "BORNE HU BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.490806, + 43.451614 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE HU BORNE 2", + "ref:EU:EVSE": "FRCPIE6609555", + "ref": "FRCPIE6609555", + "name": "BORNE HU BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.693495, + 47.256705 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SORIGNY 2480 - Place Antoine de St Exupéry", + "ref:EU:EVSE": "FRS37E248", + "ref": "FRS37E248", + "name": "SORIGNY 2480 - Place Antoine de St Exupéry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.693495, + 47.256705 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SORIGNY 2480 - Place Antoine de St Exupéry", + "ref:EU:EVSE": "FRS37E248", + "ref": "FRS37E248", + "name": "SORIGNY 2480 - Place Antoine de St Exupéry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.335422, + 47.780896 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LORIENT", + "ref:EU:EVSE": "FRCPIE6646405", + "ref": "FRCPIE6646405", + "name": "SONEPAR LORIENT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.693481, + 50.443324 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SAS PETIT BORNE 1", + "ref:EU:EVSE": "FRCPIE6562155", + "ref": "FRCPIE6562155", + "name": "SAS PETIT BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6776078, + 47.36370564 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Tours 10693 - Avenue Marcel Dassault", + "ref:EU:EVSE": "FRS37E1069", + "ref": "FRS37E1069", + "name": "Tours 10693 - Avenue Marcel Dassault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.705724, + 47.613509 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U GREZ N STATION 4", + "ref:EU:EVSE": "FRCPIE6571335", + "ref": "FRCPIE6571335", + "name": "SUPER U GREZ N STATION 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204112, + 43.373619 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERU FLASSANS SUPER U 2", + "ref:EU:EVSE": "FRCPIE6570445", + "ref": "FRCPIE6570445", + "name": "SUPERU FLASSANS SUPER U 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.812358, + 45.855017 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire du Haut Forez Sud", + "ref:EU:EVSE": "FRSPSESHEL91", + "ref": "FRSPSESHEL91", + "name": "Aire du Haut Forez Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432419, + 49.061372 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 59", + "ref:EU:EVSE": "FRCPIE6737215", + "ref": "FRCPIE6737215", + "name": "RAW PARISGIVERNY 59", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432419, + 49.061372 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 59", + "ref:EU:EVSE": "FRCPIE6737215", + "ref": "FRCPIE6737215", + "name": "RAW PARISGIVERNY 59", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432419, + 49.061372 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 59", + "ref:EU:EVSE": "FRCPIE6737275", + "ref": "FRCPIE6737275", + "name": "RAW PARISGIVERNY 59", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432419, + 49.061372 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 59", + "ref:EU:EVSE": "FRCPIE6737275", + "ref": "FRCPIE6737275", + "name": "RAW PARISGIVERNY 59", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432419, + 49.061372 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 59", + "ref:EU:EVSE": "FRCPIE6737295", + "ref": "FRCPIE6737295", + "name": "RAW PARISGIVERNY 59", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432419, + 49.061372 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 59", + "ref:EU:EVSE": "FRCPIE6737295", + "ref": "FRCPIE6737295", + "name": "RAW PARISGIVERNY 59", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432419, + 49.061372 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 59", + "ref:EU:EVSE": "FRCPIE6737305", + "ref": "FRCPIE6737305", + "name": "RAW PARISGIVERNY 59", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432419, + 49.061372 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 59", + "ref:EU:EVSE": "FRCPIE6737305", + "ref": "FRCPIE6737305", + "name": "RAW PARISGIVERNY 59", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.393657, + 47.000005 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Braslou 11017 - Rue Principale", + "ref:EU:EVSE": "FRS37E1101", + "ref": "FRS37E1101", + "name": "Braslou 11017 - Rue Principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.393657, + 47.000005 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Braslou 11017 - Rue Principale", + "ref:EU:EVSE": "FRS37E1101", + "ref": "FRS37E1101", + "name": "Braslou 11017 - Rue Principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.877382, + 46.186811 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED GUERET", + "ref:EU:EVSE": "FRCPIE6570275", + "ref": "FRCPIE6570275", + "name": "CGED GUERET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.877382, + 46.186811 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED GUERET", + "ref:EU:EVSE": "FRCPIE6570275", + "ref": "FRCPIE6570275", + "name": "CGED GUERET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5528702, + 49.07246803 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire de Vémars Est", + "ref:EU:EVSE": "FRSPSESHEL152", + "ref": "FRSPSESHEL152", + "name": "Aire de Vémars Est", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204112, + 43.373619 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERU FLASSANS SUPER U 2", + "ref:EU:EVSE": "FRCPIE6570445", + "ref": "FRCPIE6570445", + "name": "SUPERU FLASSANS SUPER U 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6776078, + 47.36370564 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Tours 10693 - Avenue Marcel Dassault", + "ref:EU:EVSE": "FRS37E1069", + "ref": "FRS37E1069", + "name": "Tours 10693 - Avenue Marcel Dassault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204112, + 43.373619 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERU FLASSANS SUPER U 2", + "ref:EU:EVSE": "FRCPIE6570455", + "ref": "FRCPIE6570455", + "name": "SUPERU FLASSANS SUPER U 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204112, + 43.373619 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERU FLASSANS SUPER U 2", + "ref:EU:EVSE": "FRCPIE6570455", + "ref": "FRCPIE6570455", + "name": "SUPERU FLASSANS SUPER U 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.436381, + 48.217011 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED EPINAL (VOSGES)", + "ref:EU:EVSE": "FRCPIE6571155", + "ref": "FRCPIE6571155", + "name": "CGED EPINAL (VOSGES)", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.436381, + 48.217011 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED EPINAL (VOSGES)", + "ref:EU:EVSE": "FRCPIE6571155", + "ref": "FRCPIE6571155", + "name": "CGED EPINAL (VOSGES)", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.34403912, + 43.36099509 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire de Béziers Montblanc Nord", + "ref:EU:EVSE": "FRSPSESHEL11", + "ref": "FRSPSESHEL11", + "name": "Aire de Béziers Montblanc Nord", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.425486, + 48.78011 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED ALFORTVILLE", + "ref:EU:EVSE": "FRCPIE6571185", + "ref": "FRCPIE6571185", + "name": "CGED ALFORTVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.425486, + 48.78011 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED ALFORTVILLE", + "ref:EU:EVSE": "FRCPIE6571185", + "ref": "FRCPIE6571185", + "name": "CGED ALFORTVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.488107, + 49.091958 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VERNON", + "ref:EU:EVSE": "FRCPIE6605525", + "ref": "FRCPIE6605525", + "name": "SONEPAR VERNON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.488107, + 49.091958 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VERNON", + "ref:EU:EVSE": "FRCPIE6605525", + "ref": "FRCPIE6605525", + "name": "SONEPAR VERNON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.453566, + 42.742843 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MAIRIE SMDL GROUPE SCOLAIRE", + "ref:EU:EVSE": "FRCPIE6737755", + "ref": "FRCPIE6737755", + "name": "MAIRIE SMDL GROUPE SCOLAIRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.453566, + 42.742843 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MAIRIE SMDL GROUPE SCOLAIRE", + "ref:EU:EVSE": "FRCPIE6737755", + "ref": "FRCPIE6737755", + "name": "MAIRIE SMDL GROUPE SCOLAIRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.705724, + 47.613509 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U GREZ N STATION 4", + "ref:EU:EVSE": "FRCPIE6571325", + "ref": "FRCPIE6571325", + "name": "SUPER U GREZ N STATION 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.705724, + 47.613509 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U GREZ N STATION 4", + "ref:EU:EVSE": "FRCPIE6571325", + "ref": "FRCPIE6571325", + "name": "SUPER U GREZ N STATION 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.705724, + 47.613509 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U GREZ N STATION 4", + "ref:EU:EVSE": "FRCPIE6571335", + "ref": "FRCPIE6571335", + "name": "SUPER U GREZ N STATION 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.024265, + 48.309339 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT TROYES", + "ref:EU:EVSE": "FRCPIE6567525", + "ref": "FRCPIE6567525", + "name": "SONEPAR CONNECT TROYES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.024265, + 48.309339 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT TROYES", + "ref:EU:EVSE": "FRCPIE6567525", + "ref": "FRCPIE6567525", + "name": "SONEPAR CONNECT TROYES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.132804, + 50.718786 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED TOURCOING", + "ref:EU:EVSE": "FRCPIE6567455", + "ref": "FRCPIE6567455", + "name": "CGED TOURCOING", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.132804, + 50.718786 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED TOURCOING", + "ref:EU:EVSE": "FRCPIE6567455", + "ref": "FRCPIE6567455", + "name": "CGED TOURCOING", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67732483, + 47.3794927 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Tours 24226 - Rue Giraudeau", + "ref:EU:EVSE": "FRS37E2422", + "ref": "FRS37E2422", + "name": "Tours 24226 - Rue Giraudeau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67732483, + 47.3794927 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Tours 24226 - Rue Giraudeau", + "ref:EU:EVSE": "FRS37E2488", + "ref": "FRS37E2488", + "name": "Tours 24226 - Rue Giraudeau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67656243, + 47.38439695 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Tours 10698 - Place Rabelais", + "ref:EU:EVSE": "FRS37E1069", + "ref": "FRS37E1069", + "name": "Tours 10698 - Place Rabelais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67656243, + 47.38439695 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Tours 10698 - Place Rabelais", + "ref:EU:EVSE": "FRS37E1069", + "ref": "FRS37E1069", + "name": "Tours 10698 - Place Rabelais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.939949, + 44.86543 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "POUSSY BORNE SUPERU BEAUMONT", + "ref:EU:EVSE": "FRCPIE6565565", + "ref": "FRCPIE6565565", + "name": "POUSSY BORNE SUPERU BEAUMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.939949, + 44.86543 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "POUSSY BORNE SUPERU BEAUMONT", + "ref:EU:EVSE": "FRCPIE6565565", + "ref": "FRCPIE6565565", + "name": "POUSSY BORNE SUPERU BEAUMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.683976, + 47.421294 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Tours 10700 - Rue de Tourcoing", + "ref:EU:EVSE": "FRS37E1069", + "ref": "FRS37E1069", + "name": "Tours 10700 - Rue de Tourcoing", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.683976, + 47.421294 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Tours 10700 - Rue de Tourcoing", + "ref:EU:EVSE": "FRS37E1070", + "ref": "FRS37E1070", + "name": "Tours 10700 - Rue de Tourcoing", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88317, + 46.782642 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "YZEURES-SUR-CREUSE 18318 - ZA Les Chalussons", + "ref:EU:EVSE": "FRS37E1831", + "ref": "FRS37E1831", + "name": "YZEURES-SUR-CREUSE 18318 - ZA Les Chalussons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-16", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88317, + 46.782642 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "YZEURES-SUR-CREUSE 18318 - ZA Les Chalussons", + "ref:EU:EVSE": "FRS37E1831", + "ref": "FRS37E1831", + "name": "YZEURES-SUR-CREUSE 18318 - ZA Les Chalussons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-16", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.978652, + 43.639705 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SUPER U 1", + "ref:EU:EVSE": "FRCPIE6566095", + "ref": "FRCPIE6566095", + "name": "SUPER U SUPER U 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.978652, + 43.639705 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SUPER U 1", + "ref:EU:EVSE": "FRCPIE6566095", + "ref": "FRCPIE6566095", + "name": "SUPER U SUPER U 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.978652, + 43.639705 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SUPER U 1", + "ref:EU:EVSE": "FRCPIE6566105", + "ref": "FRCPIE6566105", + "name": "SUPER U SUPER U 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.978652, + 43.639705 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SUPER U 1", + "ref:EU:EVSE": "FRCPIE6566105", + "ref": "FRCPIE6566105", + "name": "SUPER U SUPER U 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187245, + 44.405234 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Le Mas-d'Agenais | A62, Aire de Mas d'Agenais", + "ref:EU:EVSE": "FRIONE44070", + "ref": "FRIONE44070", + "name": "Le Mas-d'Agenais | A62, Aire de Mas d'Agenais", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187245, + 44.405234 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Le Mas-d'Agenais | A62, Aire de Mas d'Agenais", + "ref:EU:EVSE": "FRIONE44070", + "ref": "FRIONE44070", + "name": "Le Mas-d'Agenais | A62, Aire de Mas d'Agenais", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.460777, + 42.740571 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MAIRIE SMDL PARKING RDC", + "ref:EU:EVSE": "FRCPIE6699575", + "ref": "FRCPIE6699575", + "name": "MAIRIE SMDL PARKING RDC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.460777, + 42.740571 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MAIRIE SMDL PARKING RDC", + "ref:EU:EVSE": "FRCPIE6699575", + "ref": "FRCPIE6699575", + "name": "MAIRIE SMDL PARKING RDC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.460777, + 42.740571 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MAIRIE SMDL PARKING RDC", + "ref:EU:EVSE": "FRCPIE6699585", + "ref": "FRCPIE6699585", + "name": "MAIRIE SMDL PARKING RDC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.460777, + 42.740571 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MAIRIE SMDL PARKING RDC", + "ref:EU:EVSE": "FRCPIE6699585", + "ref": "FRCPIE6699585", + "name": "MAIRIE SMDL PARKING RDC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.065324, + 48.069102 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERU BORNE CLIENT", + "ref:EU:EVSE": "FRCPIE6566565", + "ref": "FRCPIE6566565", + "name": "SUPERU BORNE CLIENT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.065324, + 48.069102 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERU BORNE CLIENT", + "ref:EU:EVSE": "FRCPIE6566565", + "ref": "FRCPIE6566565", + "name": "SUPERU BORNE CLIENT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.029245, + 48.629593 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA SAUCELLE - Place de l'Eglise - 128795", + "ref:EU:EVSE": "FRS28E12879", + "ref": "FRS28E12879", + "name": "LA SAUCELLE - Place de l'Eglise - 128795", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.115542, + 50.653805 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT MARCQ-EN-BAREUL", + "ref:EU:EVSE": "FRCPIE6567135", + "ref": "FRCPIE6567135", + "name": "SONEPAR CONNECT MARCQ-EN-BAREUL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.115542, + 50.653805 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT MARCQ-EN-BAREUL", + "ref:EU:EVSE": "FRCPIE6567135", + "ref": "FRCPIE6567135", + "name": "SONEPAR CONNECT MARCQ-EN-BAREUL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.332159, + 43.70836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SU BEAULIEU SUPER U", + "ref:EU:EVSE": "FRCPIE6567205", + "ref": "FRCPIE6567205", + "name": "SU BEAULIEU SUPER U", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.332159, + 43.70836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SU BEAULIEU SUPER U", + "ref:EU:EVSE": "FRCPIE6567205", + "ref": "FRCPIE6567205", + "name": "SU BEAULIEU SUPER U", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.332159, + 43.70836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SU BEAULIEU SUPER U", + "ref:EU:EVSE": "FRCPIE6642475", + "ref": "FRCPIE6642475", + "name": "SU BEAULIEU SUPER U", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.332159, + 43.70836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SU BEAULIEU SUPER U", + "ref:EU:EVSE": "FRCPIE6642475", + "ref": "FRCPIE6642475", + "name": "SU BEAULIEU SUPER U", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref:EU:EVSE": "FRSHEE83", + "ref": "FRSHEE83", + "name": "Shell Aire de Bordeaux-Cestas Est A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.664064, + 48.845473 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT BUSSY-ST-MARTIN", + "ref:EU:EVSE": "FRCPIE6585765", + "ref": "FRCPIE6585765", + "name": "SONEPAR CONNECT BUSSY-ST-MARTIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref:EU:EVSE": "FRSHEE84", + "ref": "FRSHEE84", + "name": "Shell Aire de Bordeaux-Cestas Est A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.436023, + 48.632526 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "IRVE CAGPS MAGELLAN 3", + "ref:EU:EVSE": "FRCPIE6591135", + "ref": "FRCPIE6591135", + "name": "IRVE CAGPS MAGELLAN 3", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99534765, + 47.1288586 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LOCHES - Place de Verdun - 166912", + "ref:EU:EVSE": "FRS37E16691", + "ref": "FRS37E16691", + "name": "LOCHES - Place de Verdun - 166912", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99534765, + 47.1288586 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LOCHES - Place de Verdun - 166912", + "ref:EU:EVSE": "FRS37E16691", + "ref": "FRS37E16691", + "name": "LOCHES - Place de Verdun - 166912", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65008968, + 47.61777534 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LOUESTAULT 1275", + "ref:EU:EVSE": "FRS37E127", + "ref": "FRS37E127", + "name": "LOUESTAULT 1275", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65008968, + 47.61777534 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LOUESTAULT 1275", + "ref:EU:EVSE": "FRS37E127", + "ref": "FRS37E127", + "name": "LOUESTAULT 1275", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.737815, + 45.994754 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT VILLFRANCHE SS", + "ref:EU:EVSE": "FRCPIE6590195", + "ref": "FRCPIE6590195", + "name": "SONEPAR CONNECT VILLFRANCHE SS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.737815, + 45.994754 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT VILLFRANCHE SS", + "ref:EU:EVSE": "FRCPIE6590195", + "ref": "FRCPIE6590195", + "name": "SONEPAR CONNECT VILLFRANCHE SS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5827783, + 47.05354232 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAILLE 1277", + "ref:EU:EVSE": "FRS37E127", + "ref": "FRS37E127", + "name": "MAILLE 1277", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5827783, + 47.05354232 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAILLE 1277", + "ref:EU:EVSE": "FRS37E127", + "ref": "FRS37E127", + "name": "MAILLE 1277", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.907528, + 50.950711 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CALAIS", + "ref:EU:EVSE": "FRCPIE6595255", + "ref": "FRCPIE6595255", + "name": "SONEPAR CONNECT CALAIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.907528, + 50.950711 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CALAIS", + "ref:EU:EVSE": "FRCPIE6595255", + "ref": "FRCPIE6595255", + "name": "SONEPAR CONNECT CALAIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.436023, + 48.632526 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "IRVE CAGPS MAGELLAN 3", + "ref:EU:EVSE": "FRCPIE6591095", + "ref": "FRCPIE6591095", + "name": "IRVE CAGPS MAGELLAN 3", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.436023, + 48.632526 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "IRVE CAGPS MAGELLAN 3", + "ref:EU:EVSE": "FRCPIE6591105", + "ref": "FRCPIE6591105", + "name": "IRVE CAGPS MAGELLAN 3", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.436023, + 48.632526 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "IRVE CAGPS MAGELLAN 3", + "ref:EU:EVSE": "FRCPIE6591115", + "ref": "FRCPIE6591115", + "name": "IRVE CAGPS MAGELLAN 3", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.436023, + 48.632526 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "IRVE CAGPS MAGELLAN 3", + "ref:EU:EVSE": "FRCPIE6591125", + "ref": "FRCPIE6591125", + "name": "IRVE CAGPS MAGELLAN 3", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.436023, + 48.632526 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "IRVE CAGPS MAGELLAN 3", + "ref:EU:EVSE": "FRCPIE6591145", + "ref": "FRCPIE6591145", + "name": "IRVE CAGPS MAGELLAN 3", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623, + 45.277 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Ile Rose", + "ref:EU:EVSE": "FRIONE43150", + "ref": "FRIONE43150", + "name": "Ile Rose", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.436023, + 48.632526 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "IRVE CAGPS MAGELLAN 3", + "ref:EU:EVSE": "FRCPIE6591165", + "ref": "FRCPIE6591165", + "name": "IRVE CAGPS MAGELLAN 3", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.175863, + 43.929691 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED ALBI", + "ref:EU:EVSE": "FRCPIE6644195", + "ref": "FRCPIE6644195", + "name": "CGED CGED ALBI", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.175863, + 43.929691 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED ALBI", + "ref:EU:EVSE": "FRCPIE6644195", + "ref": "FRCPIE6644195", + "name": "CGED CGED ALBI", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8670518, + 48.1660532 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire d'Armor et d'Argoat - St Gilles", + "ref:EU:EVSE": "FRSHEE92", + "ref": "FRSHEE92", + "name": "Shell Aire d'Armor et d'Argoat - St Gilles", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8670518, + 48.1660532 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire d'Armor et d'Argoat - St Gilles", + "ref:EU:EVSE": "FRSHEE92", + "ref": "FRSHEE92", + "name": "Shell Aire d'Armor et d'Argoat - St Gilles", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8670518, + 48.1660532 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire d'Armor et d'Argoat - St Gilles", + "ref:EU:EVSE": "FRSHEE92", + "ref": "FRSHEE92", + "name": "Shell Aire d'Armor et d'Argoat - St Gilles", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8670518, + 48.1660532 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire d'Armor et d'Argoat - St Gilles", + "ref:EU:EVSE": "FRSHEE92", + "ref": "FRSHEE92", + "name": "Shell Aire d'Armor et d'Argoat - St Gilles", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8670518, + 48.1660532 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire d'Armor et d'Argoat - St Gilles", + "ref:EU:EVSE": "FRSHEE93", + "ref": "FRSHEE93", + "name": "Shell Aire d'Armor et d'Argoat - St Gilles", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8670518, + 48.1660532 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire d'Armor et d'Argoat - St Gilles", + "ref:EU:EVSE": "FRSHEE93", + "ref": "FRSHEE93", + "name": "Shell Aire d'Armor et d'Argoat - St Gilles", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.791498, + 47.087225 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE BLANCHE SAINT MARTIN 1254", + "ref:EU:EVSE": "FRS37E125", + "ref": "FRS37E125", + "name": "LA CHAPELLE BLANCHE SAINT MARTIN 1254", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.791498, + 47.087225 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE BLANCHE SAINT MARTIN 1254", + "ref:EU:EVSE": "FRS37E125", + "ref": "FRS37E125", + "name": "LA CHAPELLE BLANCHE SAINT MARTIN 1254", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.488611, + 46.98139 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARIGNY MARMANDE 1281", + "ref:EU:EVSE": "FRS37E128", + "ref": "FRS37E128", + "name": "MARIGNY MARMANDE 1281", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.488611, + 46.98139 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARIGNY MARMANDE 1281", + "ref:EU:EVSE": "FRS37E128", + "ref": "FRS37E128", + "name": "MARIGNY MARMANDE 1281", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623, + 45.277 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Ile Rose", + "ref:EU:EVSE": "FRIONE43150", + "ref": "FRIONE43150", + "name": "Ile Rose", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.144033, + 45.790619 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CLERMONT", + "ref:EU:EVSE": "FRCPIE6590025", + "ref": "FRCPIE6590025", + "name": "CGED CLERMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.144033, + 45.790619 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CLERMONT", + "ref:EU:EVSE": "FRCPIE6590025", + "ref": "FRCPIE6590025", + "name": "CGED CLERMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.845612, + 43.116997 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED SIX-FOURS", + "ref:EU:EVSE": "FRCPIE6590015", + "ref": "FRCPIE6590015", + "name": "CGED CGED SIX-FOURS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.845612, + 43.116997 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED SIX-FOURS", + "ref:EU:EVSE": "FRCPIE6590015", + "ref": "FRCPIE6590015", + "name": "CGED CGED SIX-FOURS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.072355, + 49.049365 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT OSNY", + "ref:EU:EVSE": "FRCPIE6589265", + "ref": "FRCPIE6589265", + "name": "SONEPAR CONNECT OSNY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.072355, + 49.049365 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT OSNY", + "ref:EU:EVSE": "FRCPIE6589265", + "ref": "FRCPIE6589265", + "name": "SONEPAR CONNECT OSNY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.719126, + 44.361721 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED PIERRELATT", + "ref:EU:EVSE": "FRCPIE6589465", + "ref": "FRCPIE6589465", + "name": "CGED CGED PIERRELATT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.719126, + 44.361721 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED PIERRELATT", + "ref:EU:EVSE": "FRCPIE6589465", + "ref": "FRCPIE6589465", + "name": "CGED CGED PIERRELATT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.181994, + 47.938954 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U ARNAGE DIRECTION", + "ref:EU:EVSE": "FRCPIE6631485", + "ref": "FRCPIE6631485", + "name": "SUPER U ARNAGE DIRECTION", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.23585, + 48.6512 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LANEUVEVILLE - Parking du cimetière - 187519", + "ref:EU:EVSE": "FRN54E18751", + "ref": "FRN54E18751", + "name": "LANEUVEVILLE - Parking du cimetière - 187519", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.23585, + 48.6512 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LANEUVEVILLE - Parking du cimetière - 187519", + "ref:EU:EVSE": "FRN54E18752", + "ref": "FRN54E18752", + "name": "LANEUVEVILLE - Parking du cimetière - 187519", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.030362, + 43.137959 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT LA GARDE", + "ref:EU:EVSE": "FRCPIE6589545", + "ref": "FRCPIE6589545", + "name": "SONEPAR CONNECT LA GARDE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.030362, + 43.137959 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT LA GARDE", + "ref:EU:EVSE": "FRCPIE6589545", + "ref": "FRCPIE6589545", + "name": "SONEPAR CONNECT LA GARDE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.186692, + 48.669613 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VANDOEUVRE - RUELLE MATHIEU DE DOMBASLE - 187032", + "ref:EU:EVSE": "FRN54E18703", + "ref": "FRN54E18703", + "name": "VANDOEUVRE - RUELLE MATHIEU DE DOMBASLE - 187032", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.186692, + 48.669613 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VANDOEUVRE - RUELLE MATHIEU DE DOMBASLE - 187032", + "ref:EU:EVSE": "FRN54E18703", + "ref": "FRN54E18703", + "name": "VANDOEUVRE - RUELLE MATHIEU DE DOMBASLE - 187032", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025806, + 44.120483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UEXPRESS BORNE 1", + "ref:EU:EVSE": "FRCPIE6589695", + "ref": "FRCPIE6589695", + "name": "UEXPRESS BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025806, + 44.120483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UEXPRESS BORNE 1", + "ref:EU:EVSE": "FRCPIE6589695", + "ref": "FRCPIE6589695", + "name": "UEXPRESS BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.882544, + 44.232656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UEXPRESS STE Cé BORNE 1", + "ref:EU:EVSE": "FRCPIE6589735", + "ref": "FRCPIE6589735", + "name": "UEXPRESS STE Cé BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.882544, + 44.232656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UEXPRESS STE Cé BORNE 1", + "ref:EU:EVSE": "FRCPIE6589735", + "ref": "FRCPIE6589735", + "name": "UEXPRESS STE Cé BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.882544, + 44.232656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UEXPRESS STE Cé BORNE 1", + "ref:EU:EVSE": "FRCPIE6589745", + "ref": "FRCPIE6589745", + "name": "UEXPRESS STE Cé BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.882544, + 44.232656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UEXPRESS STE Cé BORNE 1", + "ref:EU:EVSE": "FRCPIE6589745", + "ref": "FRCPIE6589745", + "name": "UEXPRESS STE Cé BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.182008, + 47.939134 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U ARNAGE SALARIES 1", + "ref:EU:EVSE": "FRCPIE6631495", + "ref": "FRCPIE6631495", + "name": "SUPER U ARNAGE SALARIES 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.182008, + 47.939134 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U ARNAGE SALARIES 1", + "ref:EU:EVSE": "FRCPIE6631495", + "ref": "FRCPIE6631495", + "name": "SUPER U ARNAGE SALARIES 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.417, + 47.297864 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LIGNIERES DE TOURAINE 1272", + "ref:EU:EVSE": "FRS37E127", + "ref": "FRS37E127", + "name": "LIGNIERES DE TOURAINE 1272", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.417, + 47.297864 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LIGNIERES DE TOURAINE 1272", + "ref:EU:EVSE": "FRS37E127", + "ref": "FRS37E127", + "name": "LIGNIERES DE TOURAINE 1272", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.627502, + 44.88341 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT BRIANCON", + "ref:EU:EVSE": "FRCPIE6589755", + "ref": "FRCPIE6589755", + "name": "SONEPAR CONNECT BRIANCON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.627502, + 44.88341 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT BRIANCON", + "ref:EU:EVSE": "FRCPIE6589755", + "ref": "FRCPIE6589755", + "name": "SONEPAR CONNECT BRIANCON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.834183, + 43.576667 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "U EXPRESS STJEAN-DE-VEDAS", + "ref:EU:EVSE": "FRCPIE6589775", + "ref": "FRCPIE6589775", + "name": "U EXPRESS STJEAN-DE-VEDAS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.834183, + 43.576667 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "U EXPRESS STJEAN-DE-VEDAS", + "ref:EU:EVSE": "FRCPIE6589775", + "ref": "FRCPIE6589775", + "name": "U EXPRESS STJEAN-DE-VEDAS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.284485, + 48.221164 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED SENS", + "ref:EU:EVSE": "FRCPIE6589845", + "ref": "FRCPIE6589845", + "name": "CGED SENS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.284485, + 48.221164 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED SENS", + "ref:EU:EVSE": "FRCPIE6589845", + "ref": "FRCPIE6589845", + "name": "CGED SENS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.119345, + 49.410973 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED BEAUVAIS", + "ref:EU:EVSE": "FRCPIE6589935", + "ref": "FRCPIE6589935", + "name": "CGED BEAUVAIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.119345, + 49.410973 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED BEAUVAIS", + "ref:EU:EVSE": "FRCPIE6589935", + "ref": "FRCPIE6589935", + "name": "CGED BEAUVAIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623, + 45.277 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Ile Rose", + "ref:EU:EVSE": "FRIONE43150", + "ref": "FRIONE43150", + "name": "Ile Rose", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623, + 45.277 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Ile Rose", + "ref:EU:EVSE": "FRIONE43150", + "ref": "FRIONE43150", + "name": "Ile Rose", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772478, + 46.54389 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U OLONNE OLONNE SUR MER", + "ref:EU:EVSE": "FRCPIE6579955", + "ref": "FRCPIE6579955", + "name": "SUPER U OLONNE OLONNE SUR MER", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.274872, + 47.981613 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U CHANGE BORNE 1", + "ref:EU:EVSE": "FRCPIE6593945", + "ref": "FRCPIE6593945", + "name": "SUPER U CHANGE BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.091241, + 50.677842 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE MARCQ MARCQ", + "ref:EU:EVSE": "FRCPIE6595775", + "ref": "FRCPIE6595775", + "name": "BORNE MARCQ MARCQ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.091241, + 50.677842 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE MARCQ MARCQ", + "ref:EU:EVSE": "FRCPIE6595775", + "ref": "FRCPIE6595775", + "name": "BORNE MARCQ MARCQ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.730784, + 48.108593 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SODIS-RENNES BORNE 1", + "ref:EU:EVSE": "FRCPIE6595205", + "ref": "FRCPIE6595205", + "name": "SODIS-RENNES BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.730784, + 48.108593 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SODIS-RENNES BORNE 1", + "ref:EU:EVSE": "FRCPIE6595205", + "ref": "FRCPIE6595205", + "name": "SODIS-RENNES BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433205, + 48.873257 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT BAGNOLET", + "ref:EU:EVSE": "FRCPIE6595195", + "ref": "FRCPIE6595195", + "name": "SONEPAR CONNECT BAGNOLET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433205, + 48.873257 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT BAGNOLET", + "ref:EU:EVSE": "FRCPIE6595195", + "ref": "FRCPIE6595195", + "name": "SONEPAR CONNECT BAGNOLET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59375299, + 47.60272923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUVY LE ROI 1291", + "ref:EU:EVSE": "FRS37E129", + "ref": "FRS37E129", + "name": "NEUVY LE ROI 1291", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59375299, + 47.60272923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUVY LE ROI 1291", + "ref:EU:EVSE": "FRS37E129", + "ref": "FRS37E129", + "name": "NEUVY LE ROI 1291", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.105916, + 50.391205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED DOUAI", + "ref:EU:EVSE": "FRCPIE6594765", + "ref": "FRCPIE6594765", + "name": "CGED DOUAI", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.105916, + 50.391205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED DOUAI", + "ref:EU:EVSE": "FRCPIE6594765", + "ref": "FRCPIE6594765", + "name": "CGED DOUAI", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.104915, + 49.027416 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ERAGNY", + "ref:EU:EVSE": "FRCPIE6594145", + "ref": "FRCPIE6594145", + "name": "SONEPAR CONNECT ERAGNY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.104915, + 49.027416 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ERAGNY", + "ref:EU:EVSE": "FRCPIE6594145", + "ref": "FRCPIE6594145", + "name": "SONEPAR CONNECT ERAGNY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.789972, + 46.973452 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUILLY LE BRIGNON 1289", + "ref:EU:EVSE": "FRS37E129", + "ref": "FRS37E129", + "name": "NEUILLY LE BRIGNON 1289", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.789972, + 46.973452 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUILLY LE BRIGNON 1289", + "ref:EU:EVSE": "FRS37E128", + "ref": "FRS37E128", + "name": "NEUILLY LE BRIGNON 1289", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.274872, + 47.981613 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U CHANGE BORNE 1", + "ref:EU:EVSE": "FRCPIE6593945", + "ref": "FRCPIE6593945", + "name": "SUPER U CHANGE BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623, + 45.277 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Ile Rose", + "ref:EU:EVSE": "FRIONE4315", + "ref": "FRIONE4315", + "name": "Ile Rose", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.274872, + 47.981613 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U CHANGE BORNE 1", + "ref:EU:EVSE": "FRCPIE6593935", + "ref": "FRCPIE6593935", + "name": "SUPER U CHANGE BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.274872, + 47.981613 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U CHANGE BORNE 1", + "ref:EU:EVSE": "FRCPIE6593935", + "ref": "FRCPIE6593935", + "name": "SUPER U CHANGE BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.633864, + 43.707552 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ARLES", + "ref:EU:EVSE": "FRCPIE6649455", + "ref": "FRCPIE6649455", + "name": "SONEPAR ARLES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.633864, + 43.707552 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ARLES", + "ref:EU:EVSE": "FRCPIE6649455", + "ref": "FRCPIE6649455", + "name": "SONEPAR ARLES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.344886, + 45.275403 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT MAURIENNE", + "ref:EU:EVSE": "FRCPIE6593545", + "ref": "FRCPIE6593545", + "name": "SONEPAR CONNECT MAURIENNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.344886, + 45.275403 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT MAURIENNE", + "ref:EU:EVSE": "FRCPIE6593545", + "ref": "FRCPIE6593545", + "name": "SONEPAR CONNECT MAURIENNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.33434, + 47.779533 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED LORIENT", + "ref:EU:EVSE": "FRCPIE6593495", + "ref": "FRCPIE6593495", + "name": "CGED CGED LORIENT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.33434, + 47.779533 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED LORIENT", + "ref:EU:EVSE": "FRCPIE6593495", + "ref": "FRCPIE6593495", + "name": "CGED CGED LORIENT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.358792, + 44.036716 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CABLOTEC MTB CABLOTEC PARK", + "ref:EU:EVSE": "FRCPIE6593425", + "ref": "FRCPIE6593425", + "name": "CABLOTEC MTB CABLOTEC PARK", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.358792, + 44.036716 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CABLOTEC MTB CABLOTEC PARK", + "ref:EU:EVSE": "FRCPIE6593425", + "ref": "FRCPIE6593425", + "name": "CABLOTEC MTB CABLOTEC PARK", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045629, + 47.271963 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Dijon Sud", + "ref:EU:EVSE": "FRIONE4538", + "ref": "FRIONE4538", + "name": "Dijon Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045629, + 47.271963 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Dijon Sud", + "ref:EU:EVSE": "FRIONE45380", + "ref": "FRIONE45380", + "name": "Dijon Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045629, + 47.271963 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Dijon Sud", + "ref:EU:EVSE": "FRIONE45380", + "ref": "FRIONE45380", + "name": "Dijon Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045629, + 47.271963 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Dijon Sud", + "ref:EU:EVSE": "FRIONE45380", + "ref": "FRIONE45380", + "name": "Dijon Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.580008, + 48.468782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Gasville", + "ref:EU:EVSE": "FRIONE12640", + "ref": "FRIONE12640", + "name": "Chartres Gasville", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.580008, + 48.468782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Gasville", + "ref:EU:EVSE": "FRIONE12640", + "ref": "FRIONE12640", + "name": "Chartres Gasville", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.580008, + 48.468782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Gasville", + "ref:EU:EVSE": "FRIONE12640", + "ref": "FRIONE12640", + "name": "Chartres Gasville", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.580008, + 48.468782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Gasville", + "ref:EU:EVSE": "FRIONE12640", + "ref": "FRIONE12640", + "name": "Chartres Gasville", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598607, + 47.475704 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "U EXPRESS BEAUS STATION 1", + "ref:EU:EVSE": "FRCPIE6591675", + "ref": "FRCPIE6591675", + "name": "U EXPRESS BEAUS STATION 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598607, + 47.475704 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "U EXPRESS BEAUS STATION 1", + "ref:EU:EVSE": "FRCPIE6591675", + "ref": "FRCPIE6591675", + "name": "U EXPRESS BEAUS STATION 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598607, + 47.475704 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "U EXPRESS BEAUS STATION 1", + "ref:EU:EVSE": "FRCPIE6591685", + "ref": "FRCPIE6591685", + "name": "U EXPRESS BEAUS STATION 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598607, + 47.475704 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "U EXPRESS BEAUS STATION 1", + "ref:EU:EVSE": "FRCPIE6591685", + "ref": "FRCPIE6591685", + "name": "U EXPRESS BEAUS STATION 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.934966, + 47.254709 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THENIOUX - Route de Tours - 170419", + "ref:EU:EVSE": "FRS18E17041", + "ref": "FRS18E17041", + "name": "THENIOUX - Route de Tours - 170419", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.934966, + 47.254709 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THENIOUX - Route de Tours - 170419", + "ref:EU:EVSE": "FRS18E17041", + "ref": "FRS18E17041", + "name": "THENIOUX - Route de Tours - 170419", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6506905, + 47.44858502 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "METTRAY 1283 - Espace Coselia", + "ref:EU:EVSE": "FRS37E128", + "ref": "FRS37E128", + "name": "METTRAY 1283 - Espace Coselia", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6506905, + 47.44858502 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "METTRAY 1283 - Espace Coselia", + "ref:EU:EVSE": "FRS37E128", + "ref": "FRS37E128", + "name": "METTRAY 1283 - Espace Coselia", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045629, + 47.271963 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Dijon Sud", + "ref:EU:EVSE": "FRIONE45380", + "ref": "FRIONE45380", + "name": "Dijon Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045629, + 47.271963 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Dijon Sud", + "ref:EU:EVSE": "FRIONE45380", + "ref": "FRIONE45380", + "name": "Dijon Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045629, + 47.271963 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Dijon Sud", + "ref:EU:EVSE": "FRIONE45380", + "ref": "FRIONE45380", + "name": "Dijon Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0139662, + 47.10072025 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PERRUSSON 1296", + "ref:EU:EVSE": "FRS37E129", + "ref": "FRS37E129", + "name": "PERRUSSON 1296", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48718, + 47.210396 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PROTHEOS STATION 1", + "ref:EU:EVSE": "FRCPIE6596525", + "ref": "FRCPIE6596525", + "name": "PROTHEOS STATION 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48718, + 47.210396 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PROTHEOS STATION 1", + "ref:EU:EVSE": "FRCPIE6596525", + "ref": "FRCPIE6596525", + "name": "PROTHEOS STATION 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.477806, + 47.103448 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PARCAY SUR VIENNE 1295", + "ref:EU:EVSE": "FRS37E138", + "ref": "FRS37E138", + "name": "PARCAY SUR VIENNE 1295", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.477806, + 47.103448 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PARCAY SUR VIENNE 1295", + "ref:EU:EVSE": "FRS37E129", + "ref": "FRS37E129", + "name": "PARCAY SUR VIENNE 1295", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.587558, + 48.113313 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ALIZES BORNE 1", + "ref:EU:EVSE": "FRCPIE6596035", + "ref": "FRCPIE6596035", + "name": "ALIZES BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.587558, + 48.113313 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ALIZES BORNE 1", + "ref:EU:EVSE": "FRCPIE6596035", + "ref": "FRCPIE6596035", + "name": "ALIZES BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229205, + 48.690167 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT VILLEBON", + "ref:EU:EVSE": "FRCPIE6595995", + "ref": "FRCPIE6595995", + "name": "SONEPAR CONNECT VILLEBON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Roussilllon HW", + "ref:EU:EVSE": "FRSHEE178", + "ref": "FRSHEE178", + "name": "Shell Roussilllon HW", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229205, + 48.690167 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT VILLEBON", + "ref:EU:EVSE": "FRCPIE6595995", + "ref": "FRCPIE6595995", + "name": "SONEPAR CONNECT VILLEBON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.108717, + 43.109537 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT HYERES", + "ref:EU:EVSE": "FRCPIE6595975", + "ref": "FRCPIE6595975", + "name": "SONEPAR CONNECT HYERES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.108717, + 43.109537 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT HYERES", + "ref:EU:EVSE": "FRCPIE6595975", + "ref": "FRCPIE6595975", + "name": "SONEPAR CONNECT HYERES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.229096, + 44.286754 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Cœur d'Aquitaine", + "ref:EU:EVSE": "FRIONE4140", + "ref": "FRIONE4140", + "name": "Cœur d'Aquitaine", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.229096, + 44.286754 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Cœur d'Aquitaine", + "ref:EU:EVSE": "FRIONE41400", + "ref": "FRIONE41400", + "name": "Cœur d'Aquitaine", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.229096, + 44.286754 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Cœur d'Aquitaine", + "ref:EU:EVSE": "FRIONE41400", + "ref": "FRIONE41400", + "name": "Cœur d'Aquitaine", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.229096, + 44.286754 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Cœur d'Aquitaine", + "ref:EU:EVSE": "FRIONE41400", + "ref": "FRIONE41400", + "name": "Cœur d'Aquitaine", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.229096, + 44.286754 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Cœur d'Aquitaine", + "ref:EU:EVSE": "FRIONE41400", + "ref": "FRIONE41400", + "name": "Cœur d'Aquitaine", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.580008, + 48.468782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Gasville", + "ref:EU:EVSE": "FRIONE1264", + "ref": "FRIONE1264", + "name": "Chartres Gasville", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.80018, + 47.621586 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PENBOCH BORNE 1", + "ref:EU:EVSE": "FRCPIE6589125", + "ref": "FRCPIE6589125", + "name": "PENBOCH BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.80018, + 47.621586 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PENBOCH BORNE 1", + "ref:EU:EVSE": "FRCPIE6589125", + "ref": "FRCPIE6589125", + "name": "PENBOCH BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.288579, + 45.888311 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT LIMOGES", + "ref:EU:EVSE": "FRCPIE6588995", + "ref": "FRCPIE6588995", + "name": "SONEPAR CONNECT LIMOGES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME08912881", + "ref": "FRTNME08912881", + "name": "18B93139", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48209, + 46.72506 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ORVAL - Route de Lignières - 142815", + "ref:EU:EVSE": "FRS18E14281", + "ref": "FRS18E14281", + "name": "ORVAL - Route de Lignières - 142815", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48209, + 46.72506 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ORVAL - Route de Lignières - 142815", + "ref:EU:EVSE": "FRS18E14281", + "ref": "FRS18E14281", + "name": "ORVAL - Route de Lignières - 142815", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME08911388", + "ref": "FRTNME08911388", + "name": "18B93139", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME08911696", + "ref": "FRTNME08911696", + "name": "18B93139", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME08911696", + "ref": "FRTNME08911696", + "name": "18B93139", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME08912512", + "ref": "FRTNME08912512", + "name": "18B93139", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME08912512", + "ref": "FRTNME08912512", + "name": "18B93139", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME08912519", + "ref": "FRTNME08912519", + "name": "18B93139", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME08912519", + "ref": "FRTNME08912519", + "name": "18B93139", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME08912520", + "ref": "FRTNME08912520", + "name": "18B93139", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME08912520", + "ref": "FRTNME08912520", + "name": "18B93139", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME08912880", + "ref": "FRTNME08912880", + "name": "18B93139", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME08912880", + "ref": "FRTNME08912880", + "name": "18B93139", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME08912881", + "ref": "FRTNME08912881", + "name": "18B93139", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME09910716", + "ref": "FRTNME09910716", + "name": "18B93139", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.288579, + 45.888311 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT LIMOGES", + "ref:EU:EVSE": "FRCPIE6588995", + "ref": "FRCPIE6588995", + "name": "SONEPAR CONNECT LIMOGES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME09911216", + "ref": "FRTNME09911216", + "name": "18B93139", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME09911216", + "ref": "FRTNME09911216", + "name": "18B93139", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME09990180", + "ref": "FRTNME09990180", + "name": "18B93139", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME09990180", + "ref": "FRTNME09990180", + "name": "18B93139", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME18B93139", + "ref": "FRTNME18B93139", + "name": "18B93139", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353733, + 48.856471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B93139", + "ref:EU:EVSE": "FRTNME18B93139", + "ref": "FRTNME18B93139", + "name": "18B93139", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61283782, + 47.66849239 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPEIGNE SUR DEME 1246", + "ref:EU:EVSE": "FRS37E124", + "ref": "FRS37E124", + "name": "EPEIGNE SUR DEME 1246", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61283782, + 47.66849239 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPEIGNE SUR DEME 1246", + "ref:EU:EVSE": "FRS37E124", + "ref": "FRS37E124", + "name": "EPEIGNE SUR DEME 1246", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401046, + 44.611744 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED AUBENAS", + "ref:EU:EVSE": "FRCPIE6581995", + "ref": "FRCPIE6581995", + "name": "CGED AUBENAS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401046, + 44.611744 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED AUBENAS", + "ref:EU:EVSE": "FRCPIE6581995", + "ref": "FRCPIE6581995", + "name": "CGED AUBENAS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286503, + 49.928469 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT AMIENS", + "ref:EU:EVSE": "FRCPIE6582005", + "ref": "FRCPIE6582005", + "name": "SONEPAR CONNECT AMIENS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286503, + 49.928469 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT AMIENS", + "ref:EU:EVSE": "FRCPIE6582005", + "ref": "FRCPIE6582005", + "name": "SONEPAR CONNECT AMIENS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.049431, + 43.400154 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT BRIGNOLES", + "ref:EU:EVSE": "FRCPIE6582065", + "ref": "FRCPIE6582065", + "name": "SONEPAR CONNECT BRIGNOLES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.049431, + 43.400154 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT BRIGNOLES", + "ref:EU:EVSE": "FRCPIE6582065", + "ref": "FRCPIE6582065", + "name": "SONEPAR CONNECT BRIGNOLES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.477834, + 50.342911 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT VALENCIENNES", + "ref:EU:EVSE": "FRCPIE6580765", + "ref": "FRCPIE6580765", + "name": "SONEPAR CONNECT VALENCIENNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.477834, + 50.342911 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT VALENCIENNES", + "ref:EU:EVSE": "FRCPIE6580765", + "ref": "FRCPIE6580765", + "name": "SONEPAR CONNECT VALENCIENNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.378539, + 46.296224 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Poitou-Charentes", + "ref:EU:EVSE": "FRIONE1248", + "ref": "FRIONE1248", + "name": "Poitou-Charentes", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.378539, + 46.296224 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Poitou-Charentes", + "ref:EU:EVSE": "FRIONE12480", + "ref": "FRIONE12480", + "name": "Poitou-Charentes", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772478, + 46.54389 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U OLONNE OLONNE SUR MER", + "ref:EU:EVSE": "FRCPIE6579955", + "ref": "FRCPIE6579955", + "name": "SUPER U OLONNE OLONNE SUR MER", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772478, + 46.54389 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U OLONNE OLONNE SUR MER", + "ref:EU:EVSE": "FRCPIE6579965", + "ref": "FRCPIE6579965", + "name": "SUPER U OLONNE OLONNE SUR MER", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772478, + 46.54389 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U OLONNE OLONNE SUR MER", + "ref:EU:EVSE": "FRCPIE6579965", + "ref": "FRCPIE6579965", + "name": "SUPER U OLONNE OLONNE SUR MER", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.315531, + 46.16964 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MENODIS BORNE 1", + "ref:EU:EVSE": "FRCPIE6560525", + "ref": "FRCPIE6560525", + "name": "MENODIS BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.315531, + 46.16964 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MENODIS BORNE 1", + "ref:EU:EVSE": "FRCPIE6560525", + "ref": "FRCPIE6560525", + "name": "MENODIS BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.315531, + 46.16964 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MENODIS BORNE 1", + "ref:EU:EVSE": "FRCPIE6580355", + "ref": "FRCPIE6580355", + "name": "MENODIS BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.315531, + 46.16964 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MENODIS BORNE 1", + "ref:EU:EVSE": "FRCPIE6580355", + "ref": "FRCPIE6580355", + "name": "MENODIS BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.70021078, + 46.97447173 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DESCARTES 1241", + "ref:EU:EVSE": "FRS37E124", + "ref": "FRS37E124", + "name": "DESCARTES 1241", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.70021078, + 46.97447173 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DESCARTES 1241", + "ref:EU:EVSE": "FRS37E125", + "ref": "FRS37E125", + "name": "DESCARTES 1241", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.038965, + 44.033749 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CARPENTRAS", + "ref:EU:EVSE": "FRCPIE6608375", + "ref": "FRCPIE6608375", + "name": "SONEPAR CARPENTRAS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.038965, + 44.033749 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CARPENTRAS", + "ref:EU:EVSE": "FRCPIE6608375", + "ref": "FRCPIE6608375", + "name": "SONEPAR CARPENTRAS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9507519, + 47.34592915 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DIERRE 1242", + "ref:EU:EVSE": "FRS37E124", + "ref": "FRS37E124", + "name": "DIERRE 1242", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9507519, + 47.34592915 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DIERRE 1242", + "ref:EU:EVSE": "FRS37E124", + "ref": "FRS37E124", + "name": "DIERRE 1242", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.064025, + 43.924904 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUUPER U BORNE 1", + "ref:EU:EVSE": "FRCPIE6580425", + "ref": "FRCPIE6580425", + "name": "SUUPER U BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.064025, + 43.924904 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUUPER U BORNE 1", + "ref:EU:EVSE": "FRCPIE6580425", + "ref": "FRCPIE6580425", + "name": "SUUPER U BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.064025, + 43.924904 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUUPER U BORNE 1", + "ref:EU:EVSE": "FRCPIE6580435", + "ref": "FRCPIE6580435", + "name": "SUUPER U BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.064025, + 43.924904 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUUPER U BORNE 1", + "ref:EU:EVSE": "FRCPIE6580435", + "ref": "FRCPIE6580435", + "name": "SUUPER U BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431708, + 49.060851 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 65", + "ref:EU:EVSE": "FRCPIE6737455", + "ref": "FRCPIE6737455", + "name": "RAW PARISGIVERNY 65", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431708, + 49.060851 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 65", + "ref:EU:EVSE": "FRCPIE6737455", + "ref": "FRCPIE6737455", + "name": "RAW PARISGIVERNY 65", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431708, + 49.060851 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 65", + "ref:EU:EVSE": "FRCPIE6737475", + "ref": "FRCPIE6737475", + "name": "RAW PARISGIVERNY 65", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431708, + 49.060851 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 65", + "ref:EU:EVSE": "FRCPIE6737475", + "ref": "FRCPIE6737475", + "name": "RAW PARISGIVERNY 65", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.531531, + 48.5411 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MERCK SITES EUR BORNE P2-01", + "ref:EU:EVSE": "FRCPIE6721065", + "ref": "FRCPIE6721065", + "name": "MERCK SITES EUR BORNE P2-01", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.531531, + 48.5411 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MERCK SITES EUR BORNE P2-01", + "ref:EU:EVSE": "FRCPIE6721065", + "ref": "FRCPIE6721065", + "name": "MERCK SITES EUR BORNE P2-01", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.85591286, + 48.27086799 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire de Val Neuvy", + "ref:EU:EVSE": "FRSPSESHEL71", + "ref": "FRSPSESHEL71", + "name": "Aire de Val Neuvy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41071, + 43.632423 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT TOULOUSE NORD", + "ref:EU:EVSE": "FRCPIE6580595", + "ref": "FRCPIE6580595", + "name": "SONEPAR CONNECT TOULOUSE NORD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41071, + 43.632423 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT TOULOUSE NORD", + "ref:EU:EVSE": "FRCPIE6580595", + "ref": "FRCPIE6580595", + "name": "SONEPAR CONNECT TOULOUSE NORD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.378539, + 46.296224 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Poitou-Charentes", + "ref:EU:EVSE": "FRIONE12480", + "ref": "FRIONE12480", + "name": "Poitou-Charentes", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.378539, + 46.296224 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Poitou-Charentes", + "ref:EU:EVSE": "FRIONE12480", + "ref": "FRIONE12480", + "name": "Poitou-Charentes", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.378539, + 46.296224 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Poitou-Charentes", + "ref:EU:EVSE": "FRIONE12480", + "ref": "FRIONE12480", + "name": "Poitou-Charentes", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.958707, + 45.708229 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT SAINT-PRIEST 1", + "ref:EU:EVSE": "FRCPIE6582075", + "ref": "FRCPIE6582075", + "name": "SONEPAR CONNECT SAINT-PRIEST 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.958707, + 45.708229 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT SAINT-PRIEST 1", + "ref:EU:EVSE": "FRCPIE6582075", + "ref": "FRCPIE6582075", + "name": "SONEPAR CONNECT SAINT-PRIEST 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.09635437, + 47.1818339 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GENILLE 1249", + "ref:EU:EVSE": "FRS37E124", + "ref": "FRS37E124", + "name": "GENILLE 1249", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.415382, + 46.34256 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT THONON", + "ref:EU:EVSE": "FRCPIE6586685", + "ref": "FRCPIE6586685", + "name": "SONEPAR CONNECT THONON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359933, + 49.317803 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LA CAPRICIEUSE BORNE OMAHA", + "ref:EU:EVSE": "FRCPIE6733705", + "ref": "FRCPIE6733705", + "name": "LA CAPRICIEUSE BORNE OMAHA", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359933, + 49.317803 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LA CAPRICIEUSE BORNE OMAHA", + "ref:EU:EVSE": "FRCPIE6733705", + "ref": "FRCPIE6733705", + "name": "LA CAPRICIEUSE BORNE OMAHA", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.768273, + 47.395589 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX DAMES 1258 - Anciens combattants", + "ref:EU:EVSE": "FRS37E125", + "ref": "FRS37E125", + "name": "LA VILLE AUX DAMES 1258 - Anciens combattants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.768273, + 47.395589 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX DAMES 1258 - Anciens combattants", + "ref:EU:EVSE": "FRS37E125", + "ref": "FRS37E125", + "name": "LA VILLE AUX DAMES 1258 - Anciens combattants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.963056, + 46.096296 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Valleiry Sud", + "ref:EU:EVSE": "FRIONE40980", + "ref": "FRIONE40980", + "name": "Valleiry Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.963056, + 46.096296 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Valleiry Sud", + "ref:EU:EVSE": "FRIONE40980", + "ref": "FRIONE40980", + "name": "Valleiry Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.963056, + 46.096296 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Valleiry Sud", + "ref:EU:EVSE": "FRIONE40980", + "ref": "FRIONE40980", + "name": "Valleiry Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.963056, + 46.096296 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Valleiry Sud", + "ref:EU:EVSE": "FRIONE40980", + "ref": "FRIONE40980", + "name": "Valleiry Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.963056, + 46.096296 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Valleiry Sud", + "ref:EU:EVSE": "FRIONE4098", + "ref": "FRIONE4098", + "name": "Valleiry Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26067, + 47.8371 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPERU BORNE 2 DC", + "ref:EU:EVSE": "FRCPIE6638035", + "ref": "FRCPIE6638035", + "name": "HYPERU BORNE 2 DC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26067, + 47.8371 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPERU BORNE 2 DC", + "ref:EU:EVSE": "FRCPIE6638045", + "ref": "FRCPIE6638045", + "name": "HYPERU BORNE 2 DC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62615408, + 47.43926466 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA MEMBROLLE SUR CHOISILLE 1262 - Mazagran", + "ref:EU:EVSE": "FRS37E126", + "ref": "FRS37E126", + "name": "LA MEMBROLLE SUR CHOISILLE 1262 - Mazagran", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62615408, + 47.43926466 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA MEMBROLLE SUR CHOISILLE 1262 - Mazagran", + "ref:EU:EVSE": "FRS37E126", + "ref": "FRS37E126", + "name": "LA MEMBROLLE SUR CHOISILLE 1262 - Mazagran", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.77859839, + 47.36839944 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LARCAY 1264", + "ref:EU:EVSE": "FRS37E126", + "ref": "FRS37E126", + "name": "LARCAY 1264", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.77859839, + 47.36839944 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LARCAY 1264", + "ref:EU:EVSE": "FRS37E126", + "ref": "FRS37E126", + "name": "LARCAY 1264", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523729, + 49.854847 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Villers-Bretonneux", + "ref:EU:EVSE": "FRFASE330150", + "ref": "FRFASE330150", + "name": "Aire de Villers-Bretonneux", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523729, + 49.854847 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Villers-Bretonneux", + "ref:EU:EVSE": "FRFASE331050", + "ref": "FRFASE331050", + "name": "Aire de Villers-Bretonneux", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523729, + 49.854847 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Villers-Bretonneux", + "ref:EU:EVSE": "FRFASE331050", + "ref": "FRFASE331050", + "name": "Aire de Villers-Bretonneux", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523729, + 49.854847 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Villers-Bretonneux", + "ref:EU:EVSE": "FRFASE331050", + "ref": "FRFASE331050", + "name": "Aire de Villers-Bretonneux", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523729, + 49.854847 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Villers-Bretonneux", + "ref:EU:EVSE": "FRFASE331050", + "ref": "FRFASE331050", + "name": "Aire de Villers-Bretonneux", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523729, + 49.854847 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Villers-Bretonneux", + "ref:EU:EVSE": "FRFASE331050", + "ref": "FRFASE331050", + "name": "Aire de Villers-Bretonneux", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523729, + 49.854847 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Villers-Bretonneux", + "ref:EU:EVSE": "FRFASE331050", + "ref": "FRFASE331050", + "name": "Aire de Villers-Bretonneux", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523729, + 49.854847 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Villers-Bretonneux", + "ref:EU:EVSE": "FRFASE331050", + "ref": "FRFASE331050", + "name": "Aire de Villers-Bretonneux", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.906228, + 45.048606 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT LE PUY", + "ref:EU:EVSE": "FRCPIE6588555", + "ref": "FRCPIE6588555", + "name": "SONEPAR CONNECT LE PUY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.906228, + 45.048606 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT LE PUY", + "ref:EU:EVSE": "FRCPIE6588555", + "ref": "FRCPIE6588555", + "name": "SONEPAR CONNECT LE PUY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.80337011, + 46.9202394 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE GRAND PRESSIGNY 1266", + "ref:EU:EVSE": "FRS37E126", + "ref": "FRS37E126", + "name": "LE GRAND PRESSIGNY 1266", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.80337011, + 46.9202394 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE GRAND PRESSIGNY 1266", + "ref:EU:EVSE": "FRS37E126", + "ref": "FRS37E126", + "name": "LE GRAND PRESSIGNY 1266", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.355484, + 43.594881 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "FORMATION TLSE BORNE 2", + "ref:EU:EVSE": "FRCPIE6721155", + "ref": "FRCPIE6721155", + "name": "FORMATION TLSE BORNE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.355484, + 43.594881 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "FORMATION TLSE BORNE 2", + "ref:EU:EVSE": "FRCPIE6721155", + "ref": "FRCPIE6721155", + "name": "FORMATION TLSE BORNE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.415382, + 46.34256 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT THONON", + "ref:EU:EVSE": "FRCPIE6586685", + "ref": "FRCPIE6586685", + "name": "SONEPAR CONNECT THONON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.808017, + 50.30778 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED ARRAS _", + "ref:EU:EVSE": "FRCPIE6586635", + "ref": "FRCPIE6586635", + "name": "CGED ARRAS _", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.09635437, + 47.1818339 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GENILLE 1249", + "ref:EU:EVSE": "FRS37E134", + "ref": "FRS37E134", + "name": "GENILLE 1249", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.808017, + 50.30778 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED ARRAS _", + "ref:EU:EVSE": "FRCPIE6586635", + "ref": "FRCPIE6586635", + "name": "CGED ARRAS _", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.261484, + 44.557674 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED DECAZEVILLE", + "ref:EU:EVSE": "FRCPIE6582395", + "ref": "FRCPIE6582395", + "name": "CGED DECAZEVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.261484, + 44.557674 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED DECAZEVILLE", + "ref:EU:EVSE": "FRCPIE6582395", + "ref": "FRCPIE6582395", + "name": "CGED DECAZEVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.266909, + 47.282613 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COTEAUX SUR LOIRE 1250 - Ingrandes", + "ref:EU:EVSE": "FRS37E125", + "ref": "FRS37E125", + "name": "COTEAUX SUR LOIRE 1250 - Ingrandes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.266909, + 47.282613 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COTEAUX SUR LOIRE 1250 - Ingrandes", + "ref:EU:EVSE": "FRS37E137", + "ref": "FRS37E137", + "name": "COTEAUX SUR LOIRE 1250 - Ingrandes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66514559, + 47.35048561 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JOUE LES TOURS 1251", + "ref:EU:EVSE": "FRS37E125", + "ref": "FRS37E125", + "name": "JOUE LES TOURS 1251", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66514559, + 47.35048561 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JOUE LES TOURS 1251", + "ref:EU:EVSE": "FRS37E125", + "ref": "FRS37E125", + "name": "JOUE LES TOURS 1251", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref:EU:EVSE": "FRSHEE85", + "ref": "FRSHEE85", + "name": "Shell Aire de Bordeaux-Cestas Ouest A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref:EU:EVSE": "FRSHEE85", + "ref": "FRSHEE85", + "name": "Shell Aire de Bordeaux-Cestas Ouest A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref:EU:EVSE": "FRSHEE85", + "ref": "FRSHEE85", + "name": "Shell Aire de Bordeaux-Cestas Ouest A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref:EU:EVSE": "FRSHEE85", + "ref": "FRSHEE85", + "name": "Shell Aire de Bordeaux-Cestas Ouest A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref:EU:EVSE": "FRSHEE86", + "ref": "FRSHEE86", + "name": "Shell Aire de Bordeaux-Cestas Ouest A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref:EU:EVSE": "FRSHEE86", + "ref": "FRSHEE86", + "name": "Shell Aire de Bordeaux-Cestas Ouest A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref:EU:EVSE": "FRSHEE87", + "ref": "FRSHEE87", + "name": "Shell Aire de Bordeaux-Cestas Ouest A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref:EU:EVSE": "FRSHEE87", + "ref": "FRSHEE87", + "name": "Shell Aire de Bordeaux-Cestas Ouest A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref:EU:EVSE": "FRSHEE88", + "ref": "FRSHEE88", + "name": "Shell Aire de Bordeaux-Cestas Ouest A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref:EU:EVSE": "FRSHEE88", + "ref": "FRSHEE88", + "name": "Shell Aire de Bordeaux-Cestas Ouest A63", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.381368, + 46.072613 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MONTBLANC HOTEL BORNE 01", + "ref:EU:EVSE": "FRCPIE6583625", + "ref": "FRCPIE6583625", + "name": "MONTBLANC HOTEL BORNE 01", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.381368, + 46.072613 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MONTBLANC HOTEL BORNE 01", + "ref:EU:EVSE": "FRCPIE6583625", + "ref": "FRCPIE6583625", + "name": "MONTBLANC HOTEL BORNE 01", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.38108, + 46.073036 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MONTBLANC HOTEL BORNE 02", + "ref:EU:EVSE": "FRCPIE6584255", + "ref": "FRCPIE6584255", + "name": "MONTBLANC HOTEL BORNE 02", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.38108, + 46.073036 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MONTBLANC HOTEL BORNE 02", + "ref:EU:EVSE": "FRCPIE6584255", + "ref": "FRCPIE6584255", + "name": "MONTBLANC HOTEL BORNE 02", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.598175, + 43.668793 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT AUCH 1", + "ref:EU:EVSE": "FRCPIE6584335", + "ref": "FRCPIE6584335", + "name": "SONEPAR CONNECT AUCH 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.598175, + 43.668793 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT AUCH 1", + "ref:EU:EVSE": "FRCPIE6584335", + "ref": "FRCPIE6584335", + "name": "SONEPAR CONNECT AUCH 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264781, + 48.936485 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT GENNEVILLIERS", + "ref:EU:EVSE": "FRCPIE6585715", + "ref": "FRCPIE6585715", + "name": "SONEPAR CONNECT GENNEVILLIERS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264781, + 48.936485 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT GENNEVILLIERS", + "ref:EU:EVSE": "FRCPIE6585715", + "ref": "FRCPIE6585715", + "name": "SONEPAR CONNECT GENNEVILLIERS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3074641, + 45.5515497 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Cierzac", + "ref:EU:EVSE": "FRIENE008001", + "ref": "FRIENE008001", + "name": "Cierzac", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3074641, + 45.5515497 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Cierzac", + "ref:EU:EVSE": "FRIENE008001", + "ref": "FRIENE008001", + "name": "Cierzac", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3074641, + 45.5515497 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Cierzac", + "ref:EU:EVSE": "FRIENE008002", + "ref": "FRIENE008002", + "name": "Cierzac", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3074641, + 45.5515497 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Cierzac", + "ref:EU:EVSE": "FRIENE008002", + "ref": "FRIENE008002", + "name": "Cierzac", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.664064, + 48.845473 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT BUSSY-ST-MARTIN", + "ref:EU:EVSE": "FRCPIE6585765", + "ref": "FRCPIE6585765", + "name": "SONEPAR CONNECT BUSSY-ST-MARTIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Roussilllon HW", + "ref:EU:EVSE": "FRSHEE178", + "ref": "FRSHEE178", + "name": "Shell Roussilllon HW", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6557975", + "ref": "FRCPIE6557975", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70136, + 49.400247 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VOUZIERS - 57619 - Rue du Champ de Foire", + "ref:EU:EVSE": "FRS08E5762", + "ref": "FRS08E5762", + "name": "VOUZIERS - 57619 - Rue du Champ de Foire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 55", + "ref:EU:EVSE": "FRCPIE6737115", + "ref": "FRCPIE6737115", + "name": "RAW PARISGIVERNY 55", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346915, + 43.658268 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "DAHERTLS CORLOG 6", + "ref:EU:EVSE": "FRCPIE6684575", + "ref": "FRCPIE6684575", + "name": "DAHERTLS CORLOG 6", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346915, + 43.658268 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "DAHERTLS CORLOG 6", + "ref:EU:EVSE": "FRCPIE6684575", + "ref": "FRCPIE6684575", + "name": "DAHERTLS CORLOG 6", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346915, + 43.658268 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "DAHERTLS CORLOG 6", + "ref:EU:EVSE": "FRCPIE6684585", + "ref": "FRCPIE6684585", + "name": "DAHERTLS CORLOG 6", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.328964, + 48.070716 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUDUN - Place du 18 Octobre - 127476", + "ref:EU:EVSE": "FRS28E12747", + "ref": "FRS28E12747", + "name": "CHATEAUDUN - Place du 18 Octobre - 127476", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.328964, + 48.070716 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUDUN - Place du 18 Octobre - 127476", + "ref:EU:EVSE": "FRS28E12747", + "ref": "FRS28E12747", + "name": "CHATEAUDUN - Place du 18 Octobre - 127476", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 55", + "ref:EU:EVSE": "FRCPIE6726845", + "ref": "FRCPIE6726845", + "name": "RAW PARISGIVERNY 55", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 55", + "ref:EU:EVSE": "FRCPIE6726845", + "ref": "FRCPIE6726845", + "name": "RAW PARISGIVERNY 55", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 55", + "ref:EU:EVSE": "FRCPIE6736185", + "ref": "FRCPIE6736185", + "name": "RAW PARISGIVERNY 55", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 55", + "ref:EU:EVSE": "FRCPIE6736185", + "ref": "FRCPIE6736185", + "name": "RAW PARISGIVERNY 55", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 55", + "ref:EU:EVSE": "FRCPIE6736555", + "ref": "FRCPIE6736555", + "name": "RAW PARISGIVERNY 55", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 55", + "ref:EU:EVSE": "FRCPIE6736555", + "ref": "FRCPIE6736555", + "name": "RAW PARISGIVERNY 55", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 55", + "ref:EU:EVSE": "FRCPIE6736905", + "ref": "FRCPIE6736905", + "name": "RAW PARISGIVERNY 55", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 55", + "ref:EU:EVSE": "FRCPIE6736905", + "ref": "FRCPIE6736905", + "name": "RAW PARISGIVERNY 55", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 55", + "ref:EU:EVSE": "FRCPIE6737115", + "ref": "FRCPIE6737115", + "name": "RAW PARISGIVERNY 55", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.122851, + 50.984165 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BIOPATH HDF GRAVELINES", + "ref:EU:EVSE": "FRCPIE6696955", + "ref": "FRCPIE6696955", + "name": "BIOPATH HDF GRAVELINES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.85359, + 46.90976 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LA BENETIERE BORNE 1", + "ref:EU:EVSE": "FRCPIE6528205", + "ref": "FRCPIE6528205", + "name": "LA BENETIERE BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.122851, + 50.984165 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BIOPATH HDF GRAVELINES", + "ref:EU:EVSE": "FRCPIE6696955", + "ref": "FRCPIE6696955", + "name": "BIOPATH HDF GRAVELINES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.632298, + 48.2765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VOVES - Piscine - 126260", + "ref:EU:EVSE": "FRS28E12625", + "ref": "FRS28E12625", + "name": "VOVES - Piscine - 126260", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.632298, + 48.2765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VOVES - Piscine - 126260", + "ref:EU:EVSE": "FRS28E12626", + "ref": "FRS28E12626", + "name": "VOVES - Piscine - 126260", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.581239, + 48.317543 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LIFFOL - Rue de l'Orme - 163471 - CCS", + "ref:EU:EVSE": "FRS88E16347", + "ref": "FRS88E16347", + "name": "LIFFOL - Rue de l'Orme - 163471 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.581239, + 48.317543 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LIFFOL - Rue de l'Orme - 163471 - CCS", + "ref:EU:EVSE": "FRS88E16347", + "ref": "FRS88E16347", + "name": "LIFFOL - Rue de l'Orme - 163471 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.064557, + 48.974923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Keskastel-Ouest", + "ref:EU:EVSE": "FRFASE331150", + "ref": "FRFASE331150", + "name": "Aire de Keskastel-Ouest", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.064557, + 48.974923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Keskastel-Ouest", + "ref:EU:EVSE": "FRFASE331150", + "ref": "FRFASE331150", + "name": "Aire de Keskastel-Ouest", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.064557, + 48.974923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Keskastel-Ouest", + "ref:EU:EVSE": "FRFASE331150", + "ref": "FRFASE331150", + "name": "Aire de Keskastel-Ouest", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.064557, + 48.974923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Keskastel-Ouest", + "ref:EU:EVSE": "FRFASE331150", + "ref": "FRFASE331150", + "name": "Aire de Keskastel-Ouest", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.182904, + 43.549941 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LFO BORNE 2", + "ref:EU:EVSE": "FRCPIE6527915", + "ref": "FRCPIE6527915", + "name": "LFO BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.182904, + 43.549941 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LFO BORNE 2", + "ref:EU:EVSE": "FRCPIE6527915", + "ref": "FRCPIE6527915", + "name": "LFO BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.182904, + 43.549941 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LFO BORNE 2", + "ref:EU:EVSE": "FRCPIE6528605", + "ref": "FRCPIE6528605", + "name": "LFO BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.182904, + 43.549941 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LFO BORNE 2", + "ref:EU:EVSE": "FRCPIE6528605", + "ref": "FRCPIE6528605", + "name": "LFO BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.182904, + 43.549941 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LFO BORNE 2", + "ref:EU:EVSE": "FRCPIE6546025", + "ref": "FRCPIE6546025", + "name": "LFO BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346915, + 43.658268 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "DAHERTLS CORLOG 6", + "ref:EU:EVSE": "FRCPIE6684545", + "ref": "FRCPIE6684545", + "name": "DAHERTLS CORLOG 6", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346915, + 43.658268 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "DAHERTLS CORLOG 6", + "ref:EU:EVSE": "FRCPIE6684545", + "ref": "FRCPIE6684545", + "name": "DAHERTLS CORLOG 6", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387757, + 47.665885 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Villerbon", + "ref:EU:EVSE": "FRIONE4080", + "ref": "FRIONE4080", + "name": "Blois Villerbon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387757, + 47.665885 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Villerbon", + "ref:EU:EVSE": "FRIONE40800", + "ref": "FRIONE40800", + "name": "Blois Villerbon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60405, + 45.8923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Fenioux Est", + "ref:EU:EVSE": "FRSHEE94", + "ref": "FRSHEE94", + "name": "Shell Fenioux Est", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60405, + 45.8923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Fenioux Est", + "ref:EU:EVSE": "FRSHEE94", + "ref": "FRSHEE94", + "name": "Shell Fenioux Est", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60405, + 45.8923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Fenioux Est", + "ref:EU:EVSE": "FRSHEE95", + "ref": "FRSHEE95", + "name": "Shell Fenioux Est", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60405, + 45.8923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Fenioux Est", + "ref:EU:EVSE": "FRSHEE95", + "ref": "FRSHEE95", + "name": "Shell Fenioux Est", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60405, + 45.8923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Fenioux Est", + "ref:EU:EVSE": "FRSHEE95", + "ref": "FRSHEE95", + "name": "Shell Fenioux Est", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60405, + 45.8923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Fenioux Est", + "ref:EU:EVSE": "FRSHEE95", + "ref": "FRSHEE95", + "name": "Shell Fenioux Est", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.520988, + 49.924518 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROCROI - Rue Noël Champagne - DC 57693", + "ref:EU:EVSE": "FRS08E5769", + "ref": "FRS08E5769", + "name": "ROCROI - Rue Noël Champagne - DC 57693", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.520988, + 49.924518 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROCROI - Rue Noël Champagne - DC 57693", + "ref:EU:EVSE": "FRS08E5769", + "ref": "FRS08E5769", + "name": "ROCROI - Rue Noël Champagne - DC 57693", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.782989, + 49.526756 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BAIRON - 57547 - Lac Bairon", + "ref:EU:EVSE": "FRS08E20042", + "ref": "FRS08E20042", + "name": "BAIRON - 57547 - Lac Bairon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.782989, + 49.526756 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BAIRON - 57547 - Lac Bairon", + "ref:EU:EVSE": "FRS08E20042", + "ref": "FRS08E20042", + "name": "BAIRON - 57547 - Lac Bairon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.300302, + 45.140801 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CHATTE", + "ref:EU:EVSE": "FRCPIE6665965", + "ref": "FRCPIE6665965", + "name": "SONEPAR CHATTE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.300302, + 45.140801 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CHATTE", + "ref:EU:EVSE": "FRCPIE6665965", + "ref": "FRCPIE6665965", + "name": "SONEPAR CHATTE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.708943, + 49.312189 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 MONTHOIS - Place de la mairie - DC 57716", + "ref:EU:EVSE": "FRS08E5771", + "ref": "FRS08E5771", + "name": "08 MONTHOIS - Place de la mairie - DC 57716", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.708943, + 49.312189 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 MONTHOIS - Place de la mairie - DC 57716", + "ref:EU:EVSE": "FRS08E5771", + "ref": "FRS08E5771", + "name": "08 MONTHOIS - Place de la mairie - DC 57716", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.744732, + 49.858676 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 BOGNY SUR MEUSE - Air camping car - DC 57722", + "ref:EU:EVSE": "FRS08E5772", + "ref": "FRS08E5772", + "name": "08 BOGNY SUR MEUSE - Air camping car - DC 57722", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.744732, + 49.858676 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 BOGNY SUR MEUSE - Air camping car - DC 57722", + "ref:EU:EVSE": "FRS08E5772", + "ref": "FRS08E5772", + "name": "08 BOGNY SUR MEUSE - Air camping car - DC 57722", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.599876, + 49.873325 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 LES MAZURES Congrés DC 57726", + "ref:EU:EVSE": "FRS08E5772", + "ref": "FRS08E5772", + "name": "08 LES MAZURES Congrés DC 57726", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.599876, + 49.873325 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 LES MAZURES Congrés DC 57726", + "ref:EU:EVSE": "FRS08E5772", + "ref": "FRS08E5772", + "name": "08 LES MAZURES Congrés DC 57726", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.7179736, + 48.5387872 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Ostwald HW", + "ref:EU:EVSE": "FRSHEE78", + "ref": "FRSHEE78", + "name": "Shell Aire de Ostwald HW", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3467, + 43.658878 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ULIET ULIET 3", + "ref:EU:EVSE": "FRCPIE6685935", + "ref": "FRCPIE6685935", + "name": "ULIET ULIET 3", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3467, + 43.658878 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ULIET ULIET 3", + "ref:EU:EVSE": "FRCPIE6685935", + "ref": "FRCPIE6685935", + "name": "ULIET ULIET 3", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417075, + 46.751937 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France", + "ref:EU:EVSE": "FRIONE41010", + "ref": "FRIONE41010", + "name": "Centre de la France", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417075, + 46.751937 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France", + "ref:EU:EVSE": "FRIONE41010", + "ref": "FRIONE41010", + "name": "Centre de la France", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417075, + 46.751937 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France", + "ref:EU:EVSE": "FRIONE41010", + "ref": "FRIONE41010", + "name": "Centre de la France", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417075, + 46.751937 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France", + "ref:EU:EVSE": "FRIONE41010", + "ref": "FRIONE41010", + "name": "Centre de la France", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417075, + 46.751937 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France", + "ref:EU:EVSE": "FRIONE4101", + "ref": "FRIONE4101", + "name": "Centre de la France", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387757, + 47.665885 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Villerbon", + "ref:EU:EVSE": "FRIONE40800", + "ref": "FRIONE40800", + "name": "Blois Villerbon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387757, + 47.665885 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Villerbon", + "ref:EU:EVSE": "FRIONE40800", + "ref": "FRIONE40800", + "name": "Blois Villerbon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387757, + 47.665885 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Villerbon", + "ref:EU:EVSE": "FRIONE40800", + "ref": "FRIONE40800", + "name": "Blois Villerbon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.182904, + 43.549941 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LFO BORNE 2", + "ref:EU:EVSE": "FRCPIE6546025", + "ref": "FRCPIE6546025", + "name": "LFO BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.85359, + 46.90976 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LA BENETIERE BORNE 1", + "ref:EU:EVSE": "FRCPIE6528205", + "ref": "FRCPIE6528205", + "name": "LA BENETIERE BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.357699, + 47.834549 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Sablé-sur-Sarthe", + "ref:EU:EVSE": "FRIENE002401", + "ref": "FRIENE002401", + "name": "Sablé-sur-Sarthe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.676055, + 48.591983 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U HANCHES RETAIL 5", + "ref:EU:EVSE": "FRCPIE6530575", + "ref": "FRCPIE6530575", + "name": "HYPER U HANCHES RETAIL 5", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.72181146, + 48.26436754 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Darvault", + "ref:EU:EVSE": "FRIONE40810", + "ref": "FRIONE40810", + "name": "Darvault", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.72181146, + 48.26436754 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Darvault", + "ref:EU:EVSE": "FRIONE40810", + "ref": "FRIONE40810", + "name": "Darvault", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.72181146, + 48.26436754 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Darvault", + "ref:EU:EVSE": "FRIONE40810", + "ref": "FRIONE40810", + "name": "Darvault", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.72181146, + 48.26436754 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Darvault", + "ref:EU:EVSE": "FRIONE4081", + "ref": "FRIONE4081", + "name": "Darvault", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.774085, + 47.270106 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 2", + "ref:EU:EVSE": "FRCPIE6530295", + "ref": "FRCPIE6530295", + "name": "SUPER U SEM BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.774085, + 47.270106 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 2", + "ref:EU:EVSE": "FRCPIE6530295", + "ref": "FRCPIE6530295", + "name": "SUPER U SEM BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.774085, + 47.270106 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 2", + "ref:EU:EVSE": "FRCPIE6542705", + "ref": "FRCPIE6542705", + "name": "SUPER U SEM BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.774085, + 47.270106 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 2", + "ref:EU:EVSE": "FRCPIE6542705", + "ref": "FRCPIE6542705", + "name": "SUPER U SEM BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.375201, + 47.069203 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Lautier - 107000", + "ref:EU:EVSE": "FRS18E10700", + "ref": "FRS18E10700", + "name": "BOURGES - Lautier - 107000", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.375201, + 47.069203 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Lautier - 107000", + "ref:EU:EVSE": "FRS18E10700", + "ref": "FRS18E10700", + "name": "BOURGES - Lautier - 107000", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.676055, + 48.591983 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U HANCHES RETAIL 5", + "ref:EU:EVSE": "FRCPIE6530465", + "ref": "FRCPIE6530465", + "name": "HYPER U HANCHES RETAIL 5", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.676055, + 48.591983 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U HANCHES RETAIL 5", + "ref:EU:EVSE": "FRCPIE6530465", + "ref": "FRCPIE6530465", + "name": "HYPER U HANCHES RETAIL 5", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.676055, + 48.591983 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U HANCHES RETAIL 5", + "ref:EU:EVSE": "FRCPIE6530555", + "ref": "FRCPIE6530555", + "name": "HYPER U HANCHES RETAIL 5", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.676055, + 48.591983 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U HANCHES RETAIL 5", + "ref:EU:EVSE": "FRCPIE6530555", + "ref": "FRCPIE6530555", + "name": "HYPER U HANCHES RETAIL 5", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.676055, + 48.591983 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U HANCHES RETAIL 5", + "ref:EU:EVSE": "FRCPIE6530575", + "ref": "FRCPIE6530575", + "name": "HYPER U HANCHES RETAIL 5", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.836453, + 47.565669 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CHAMPADIS BORNE 1", + "ref:EU:EVSE": "FRCPIE6528265", + "ref": "FRCPIE6528265", + "name": "CHAMPADIS BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.346737, + 46.547078 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CULAN - Champ de foire - 148765", + "ref:EU:EVSE": "FRS18E14876", + "ref": "FRS18E14876", + "name": "CULAN - Champ de foire - 148765", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.346737, + 46.547078 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CULAN - Champ de foire - 148765", + "ref:EU:EVSE": "FRS18E14876", + "ref": "FRS18E14876", + "name": "CULAN - Champ de foire - 148765", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598651, + 45.610095 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Léger Est", + "ref:EU:EVSE": "FRIONE43170", + "ref": "FRIONE43170", + "name": "Saint Léger Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598651, + 45.610095 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Léger Est", + "ref:EU:EVSE": "FRIONE43170", + "ref": "FRIONE43170", + "name": "Saint Léger Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598651, + 45.610095 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Léger Est", + "ref:EU:EVSE": "FRIONE43170", + "ref": "FRIONE43170", + "name": "Saint Léger Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598651, + 45.610095 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Léger Est", + "ref:EU:EVSE": "FRIONE43170", + "ref": "FRIONE43170", + "name": "Saint Léger Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598651, + 45.610095 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Léger Est", + "ref:EU:EVSE": "FRIONE4317", + "ref": "FRIONE4317", + "name": "Saint Léger Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.68091, + 47.819899 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE U BORNE PUBLIQUE4", + "ref:EU:EVSE": "FRCPIE6531025", + "ref": "FRCPIE6531025", + "name": "BORNE U BORNE PUBLIQUE4", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.68091, + 47.819899 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE U BORNE PUBLIQUE4", + "ref:EU:EVSE": "FRCPIE6531025", + "ref": "FRCPIE6531025", + "name": "BORNE U BORNE PUBLIQUE4", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.03652099, + 43.59198274 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bréguières Nord", + "ref:EU:EVSE": "FRIONE40320", + "ref": "FRIONE40320", + "name": "Bréguières Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.03652099, + 43.59198274 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bréguières Nord", + "ref:EU:EVSE": "FRIONE40320", + "ref": "FRIONE40320", + "name": "Bréguières Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.03652099, + 43.59198274 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bréguières Nord", + "ref:EU:EVSE": "FRIONE40320", + "ref": "FRIONE40320", + "name": "Bréguières Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.03652099, + 43.59198274 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bréguières Nord", + "ref:EU:EVSE": "FRIONE40320", + "ref": "FRIONE40320", + "name": "Bréguières Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.03652099, + 43.59198274 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bréguières Nord", + "ref:EU:EVSE": "FRIONE4032", + "ref": "FRIONE4032", + "name": "Bréguières Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.72181146, + 48.26436754 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Darvault", + "ref:EU:EVSE": "FRIONE40810", + "ref": "FRIONE40810", + "name": "Darvault", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346573, + 43.658837 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ULIET ULIET 1", + "ref:EU:EVSE": "FRCPIE6683635", + "ref": "FRCPIE6683635", + "name": "ULIET ULIET 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346573, + 43.658837 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ULIET ULIET 1", + "ref:EU:EVSE": "FRCPIE6683635", + "ref": "FRCPIE6683635", + "name": "ULIET ULIET 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346573, + 43.658837 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ULIET ULIET 1", + "ref:EU:EVSE": "FRCPIE6683625", + "ref": "FRCPIE6683625", + "name": "ULIET ULIET 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.836453, + 47.565669 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CHAMPADIS BORNE 1", + "ref:EU:EVSE": "FRCPIE6528265", + "ref": "FRCPIE6528265", + "name": "CHAMPADIS BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.162406, + 43.421307 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNES U TECHNO BORNE 2", + "ref:EU:EVSE": "FRCPIE6528455", + "ref": "FRCPIE6528455", + "name": "BORNES U TECHNO BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.162406, + 43.421307 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNES U TECHNO BORNE 2", + "ref:EU:EVSE": "FRCPIE6528455", + "ref": "FRCPIE6528455", + "name": "BORNES U TECHNO BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.162406, + 43.421307 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNES U TECHNO BORNE 2", + "ref:EU:EVSE": "FRCPIE6544925", + "ref": "FRCPIE6544925", + "name": "BORNES U TECHNO BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.162406, + 43.421307 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNES U TECHNO BORNE 2", + "ref:EU:EVSE": "FRCPIE6544925", + "ref": "FRCPIE6544925", + "name": "BORNES U TECHNO BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.887593, + 47.544659 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEDOMER 4348 - Parking rue du Lavoir", + "ref:EU:EVSE": "FRS37E434", + "ref": "FRS37E434", + "name": "VILLEDOMER 4348 - Parking rue du Lavoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.887593, + 47.544659 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEDOMER 4348 - Parking rue du Lavoir", + "ref:EU:EVSE": "FRS37E434", + "ref": "FRS37E434", + "name": "VILLEDOMER 4348 - Parking rue du Lavoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.457725, + 47.562823 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONT PRES CHAMBORD 4434 - Rue de l'hotel de ville", + "ref:EU:EVSE": "FRS41E443", + "ref": "FRS41E443", + "name": "MONT PRES CHAMBORD 4434 - Rue de l'hotel de ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.457725, + 47.562823 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONT PRES CHAMBORD 4434 - Rue de l'hotel de ville", + "ref:EU:EVSE": "FRS41E443", + "ref": "FRS41E443", + "name": "MONT PRES CHAMBORD 4434 - Rue de l'hotel de ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50502, + 46.72097 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St AMAND-MONTROND - Cours Manuel - 112836", + "ref:EU:EVSE": "FRS18E11283", + "ref": "FRS18E11283", + "name": "St AMAND-MONTROND - Cours Manuel - 112836", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50502, + 46.72097 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St AMAND-MONTROND - Cours Manuel - 112836", + "ref:EU:EVSE": "FRS18E11283", + "ref": "FRS18E11283", + "name": "St AMAND-MONTROND - Cours Manuel - 112836", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.549262, + 47.600149 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR SAINT-LOUIS", + "ref:EU:EVSE": "FRCPIE6663275", + "ref": "FRCPIE6663275", + "name": "SONEPAR SAINT-LOUIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.549262, + 47.600149 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR SAINT-LOUIS", + "ref:EU:EVSE": "FRCPIE6663275", + "ref": "FRCPIE6663275", + "name": "SONEPAR SAINT-LOUIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.315979, + 46.16987 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MENODIS BORNE 8", + "ref:EU:EVSE": "FRCPIE6529785", + "ref": "FRCPIE6529785", + "name": "MENODIS BORNE 8", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.315979, + 46.16987 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MENODIS BORNE 8", + "ref:EU:EVSE": "FRCPIE6529785", + "ref": "FRCPIE6529785", + "name": "MENODIS BORNE 8", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.315979, + 46.16987 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MENODIS BORNE 8", + "ref:EU:EVSE": "FRCPIE6580375", + "ref": "FRCPIE6580375", + "name": "MENODIS BORNE 8", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.315979, + 46.16987 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MENODIS BORNE 8", + "ref:EU:EVSE": "FRCPIE6580375", + "ref": "FRCPIE6580375", + "name": "MENODIS BORNE 8", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.315979, + 46.16987 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MENODIS BORNE 8", + "ref:EU:EVSE": "FRCPIE6580405", + "ref": "FRCPIE6580405", + "name": "MENODIS BORNE 8", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.315442, + 46.169875 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MENODIS BORNE 5", + "ref:EU:EVSE": "FRCPIE6529795", + "ref": "FRCPIE6529795", + "name": "MENODIS BORNE 5", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.315442, + 46.169875 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MENODIS BORNE 5", + "ref:EU:EVSE": "FRCPIE6529795", + "ref": "FRCPIE6529795", + "name": "MENODIS BORNE 5", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.315442, + 46.169875 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MENODIS BORNE 5", + "ref:EU:EVSE": "FRCPIE6560535", + "ref": "FRCPIE6560535", + "name": "MENODIS BORNE 5", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.315442, + 46.169875 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MENODIS BORNE 5", + "ref:EU:EVSE": "FRCPIE6560535", + "ref": "FRCPIE6560535", + "name": "MENODIS BORNE 5", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.315442, + 46.169875 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MENODIS BORNE 5", + "ref:EU:EVSE": "FRCPIE6560545", + "ref": "FRCPIE6560545", + "name": "MENODIS BORNE 5", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.315442, + 46.169875 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MENODIS BORNE 5", + "ref:EU:EVSE": "FRCPIE6560545", + "ref": "FRCPIE6560545", + "name": "MENODIS BORNE 5", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.832382, + 49.281413 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Trie-la-Ville", + "ref:EU:EVSE": "FRIENE006601", + "ref": "FRIENE006601", + "name": "Trie-la-Ville", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.832382, + 49.281413 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Trie-la-Ville", + "ref:EU:EVSE": "FRIENE006601", + "ref": "FRIENE006601", + "name": "Trie-la-Ville", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.832382, + 49.281413 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Trie-la-Ville", + "ref:EU:EVSE": "FRIENE006602", + "ref": "FRIENE006602", + "name": "Trie-la-Ville", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.832382, + 49.281413 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Trie-la-Ville", + "ref:EU:EVSE": "FRIENE006602", + "ref": "FRIENE006602", + "name": "Trie-la-Ville", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346573, + 43.658837 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ULIET ULIET 1", + "ref:EU:EVSE": "FRCPIE6683625", + "ref": "FRCPIE6683625", + "name": "ULIET ULIET 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60405, + 45.8923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Fenioux Est", + "ref:EU:EVSE": "FRSHEE94", + "ref": "FRSHEE94", + "name": "Shell Fenioux Est", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60405, + 45.8923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Fenioux Est", + "ref:EU:EVSE": "FRSHEE94", + "ref": "FRSHEE94", + "name": "Shell Fenioux Est", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.625257, + 49.828116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTCORNET DC", + "ref:EU:EVSE": "FRS08E5769", + "ref": "FRS08E5769", + "name": "MONTCORNET DC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.017597, + 46.451625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rouille Sud", + "ref:EU:EVSE": "FRIONE4542", + "ref": "FRIONE4542", + "name": "Rouille Sud", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862591, + 45.74851 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ALPTIS 25CAT PARC 37 38", + "ref:EU:EVSE": "FRCPIE6507285", + "ref": "FRCPIE6507285", + "name": "ALPTIS 25CAT PARC 37 38", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862591, + 45.74851 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ALPTIS 25CAT PARC 37 38", + "ref:EU:EVSE": "FRCPIE6507285", + "ref": "FRCPIE6507285", + "name": "ALPTIS 25CAT PARC 37 38", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.017597, + 46.451625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rouille Sud", + "ref:EU:EVSE": "FRIONE45420", + "ref": "FRIONE45420", + "name": "Rouille Sud", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.017597, + 46.451625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rouille Sud", + "ref:EU:EVSE": "FRIONE45420", + "ref": "FRIONE45420", + "name": "Rouille Sud", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.017597, + 46.451625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rouille Sud", + "ref:EU:EVSE": "FRIONE45420", + "ref": "FRIONE45420", + "name": "Rouille Sud", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.017597, + 46.451625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rouille Sud", + "ref:EU:EVSE": "FRIONE45420", + "ref": "FRIONE45420", + "name": "Rouille Sud", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.017597, + 46.451625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rouille Sud", + "ref:EU:EVSE": "FRIONE45420", + "ref": "FRIONE45420", + "name": "Rouille Sud", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.017597, + 46.451625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rouille Sud", + "ref:EU:EVSE": "FRIONE45420", + "ref": "FRIONE45420", + "name": "Rouille Sud", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.017597, + 46.451625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rouille Sud", + "ref:EU:EVSE": "FRIONE45420", + "ref": "FRIONE45420", + "name": "Rouille Sud", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.017597, + 46.451625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rouille Sud", + "ref:EU:EVSE": "FRIONE45420", + "ref": "FRIONE45420", + "name": "Rouille Sud", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.017597, + 46.451625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rouille Sud", + "ref:EU:EVSE": "FRIONE45420", + "ref": "FRIONE45420", + "name": "Rouille Sud", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.017597, + 46.451625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rouille Sud", + "ref:EU:EVSE": "FRIONE45421", + "ref": "FRIONE45421", + "name": "Rouille Sud", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.017597, + 46.451625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rouille Sud", + "ref:EU:EVSE": "FRIONE45421", + "ref": "FRIONE45421", + "name": "Rouille Sud", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.017597, + 46.451625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rouille Sud", + "ref:EU:EVSE": "FRIONE45421", + "ref": "FRIONE45421", + "name": "Rouille Sud", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23960961, + 48.1272092 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vitré", + "ref:EU:EVSE": "FRIENE001001", + "ref": "FRIENE001001", + "name": "Vitré", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.625257, + 49.828116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTCORNET DC", + "ref:EU:EVSE": "FRS08E5769", + "ref": "FRS08E5769", + "name": "MONTCORNET DC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23960961, + 48.1272092 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vitré", + "ref:EU:EVSE": "FRIENE001001", + "ref": "FRIENE001001", + "name": "Vitré", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23960961, + 48.1272092 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vitré", + "ref:EU:EVSE": "FRIENE001002", + "ref": "FRIENE001002", + "name": "Vitré", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23960961, + 48.1272092 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vitré", + "ref:EU:EVSE": "FRIENE001002", + "ref": "FRIENE001002", + "name": "Vitré", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.81642, + 45.238924 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U BIVIERS BORNE 1", + "ref:EU:EVSE": "FRCPIE6552195", + "ref": "FRCPIE6552195", + "name": "SUPER U BIVIERS BORNE 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.81642, + 45.238924 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U BIVIERS BORNE 1", + "ref:EU:EVSE": "FRCPIE6552195", + "ref": "FRCPIE6552195", + "name": "SUPER U BIVIERS BORNE 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.81642, + 45.238924 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U BIVIERS BORNE 1", + "ref:EU:EVSE": "FRCPIE6593355", + "ref": "FRCPIE6593355", + "name": "SUPER U BIVIERS BORNE 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.81642, + 45.238924 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U BIVIERS BORNE 1", + "ref:EU:EVSE": "FRCPIE6593355", + "ref": "FRCPIE6593355", + "name": "SUPER U BIVIERS BORNE 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.81642, + 45.238924 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U BIVIERS BORNE 1", + "ref:EU:EVSE": "FRCPIE6594565", + "ref": "FRCPIE6594565", + "name": "SUPER U BIVIERS BORNE 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.81642, + 45.238924 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U BIVIERS BORNE 1", + "ref:EU:EVSE": "FRCPIE6594565", + "ref": "FRCPIE6594565", + "name": "SUPER U BIVIERS BORNE 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.559775, + 47.955226 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U MESLAY BORNE 2", + "ref:EU:EVSE": "FRCPIE6510835", + "ref": "FRCPIE6510835", + "name": "SUPER U MESLAY BORNE 2", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.559775, + 47.955226 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U MESLAY BORNE 2", + "ref:EU:EVSE": "FRCPIE6560565", + "ref": "FRCPIE6560565", + "name": "SUPER U MESLAY BORNE 2", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.559775, + 47.955226 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U MESLAY BORNE 2", + "ref:EU:EVSE": "FRCPIE6560565", + "ref": "FRCPIE6560565", + "name": "SUPER U MESLAY BORNE 2", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.559775, + 47.955226 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U MESLAY BORNE 2", + "ref:EU:EVSE": "FRCPIE6593605", + "ref": "FRCPIE6593605", + "name": "SUPER U MESLAY BORNE 2", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.559775, + 47.955226 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U MESLAY BORNE 2", + "ref:EU:EVSE": "FRCPIE6593605", + "ref": "FRCPIE6593605", + "name": "SUPER U MESLAY BORNE 2", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE4324", + "ref": "FRIONE4324", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43241", + "ref": "FRIONE43241", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43241", + "ref": "FRIONE43241", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43241", + "ref": "FRIONE43241", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05837, + 48.326772 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Plouasne", + "ref:EU:EVSE": "FRIENE008802", + "ref": "FRIENE008802", + "name": "Plouasne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05837, + 48.326772 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Plouasne", + "ref:EU:EVSE": "FRIENE008802", + "ref": "FRIENE008802", + "name": "Plouasne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.211785, + 43.361722 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PECHBLEU BORNE 3", + "ref:EU:EVSE": "FRCPIE6711655", + "ref": "FRCPIE6711655", + "name": "PECHBLEU BORNE 3", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.211785, + 43.361722 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PECHBLEU BORNE 3", + "ref:EU:EVSE": "FRCPIE6713075", + "ref": "FRCPIE6713075", + "name": "PECHBLEU BORNE 3", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.211785, + 43.361722 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PECHBLEU BORNE 3", + "ref:EU:EVSE": "FRCPIE6713095", + "ref": "FRCPIE6713095", + "name": "PECHBLEU BORNE 3", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.581681, + 48.728361 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VITRY LE FRANCOIS-Av. du quai des fontaines-127010", + "ref:EU:EVSE": "FRS51E12701", + "ref": "FRS51E12701", + "name": "VITRY LE FRANCOIS-Av. du quai des fontaines-127010", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.581681, + 48.728361 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VITRY LE FRANCOIS-Av. du quai des fontaines-127010", + "ref:EU:EVSE": "FRS51E12701", + "ref": "FRS51E12701", + "name": "VITRY LE FRANCOIS-Av. du quai des fontaines-127010", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427018, + 46.725151 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "638a101cbb23fb6dc695b185", + "ref:EU:EVSE": "FRTNME18B92392", + "ref": "FRTNME18B92392", + "name": "638a101cbb23fb6dc695b185", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427018, + 46.725151 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "638a101cbb23fb6dc695b185", + "ref:EU:EVSE": "FRTNME18B92447", + "ref": "FRTNME18B92447", + "name": "638a101cbb23fb6dc695b185", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427018, + 46.725151 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "638a101cbb23fb6dc695b185", + "ref:EU:EVSE": "FRTNME18B92448", + "ref": "FRTNME18B92448", + "name": "638a101cbb23fb6dc695b185", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427018, + 46.725151 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "638a101cbb23fb6dc695b185", + "ref:EU:EVSE": "FRTNME18B92449", + "ref": "FRTNME18B92449", + "name": "638a101cbb23fb6dc695b185", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427018, + 46.725151 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "638a101cbb23fb6dc695b185", + "ref:EU:EVSE": "FRTNME18B92450", + "ref": "FRTNME18B92450", + "name": "638a101cbb23fb6dc695b185", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427018, + 46.725151 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "638a101cbb23fb6dc695b185", + "ref:EU:EVSE": "FRTNME18B92932", + "ref": "FRTNME18B92932", + "name": "638a101cbb23fb6dc695b185", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427018, + 46.725151 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "638a101cbb23fb6dc695b185", + "ref:EU:EVSE": "FRTNME19B91197", + "ref": "FRTNME19B91197", + "name": "638a101cbb23fb6dc695b185", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43240", + "ref": "FRIONE43240", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43240", + "ref": "FRIONE43240", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43240", + "ref": "FRIONE43240", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43240", + "ref": "FRIONE43240", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43240", + "ref": "FRIONE43240", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43240", + "ref": "FRIONE43240", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43240", + "ref": "FRIONE43240", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43240", + "ref": "FRIONE43240", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43240", + "ref": "FRIONE43240", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43241", + "ref": "FRIONE43241", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43241", + "ref": "FRIONE43241", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43241", + "ref": "FRIONE43241", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43241", + "ref": "FRIONE43241", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43241", + "ref": "FRIONE43241", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hauconcourt", + "ref:EU:EVSE": "FRIONE43241", + "ref": "FRIONE43241", + "name": "Hauconcourt", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.998884, + 49.217693 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEZANNES -1 - Pkg Louis Victor de Broglie - 49675", + "ref:EU:EVSE": "FRS51E4967", + "ref": "FRS51E4967", + "name": "BEZANNES -1 - Pkg Louis Victor de Broglie - 49675", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.998884, + 49.217693 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEZANNES -1 - Pkg Louis Victor de Broglie - 49675", + "ref:EU:EVSE": "FRS51E4967", + "ref": "FRS51E4967", + "name": "BEZANNES -1 - Pkg Louis Victor de Broglie - 49675", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.767761, + 45.165133 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR AED ST-M.HERES", + "ref:EU:EVSE": "FRCPIE6735845", + "ref": "FRCPIE6735845", + "name": "SONEPAR AED ST-M.HERES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.578276, + 49.474329 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ATTIGNY DC", + "ref:EU:EVSE": "FRS08E5760", + "ref": "FRS08E5760", + "name": "ATTIGNY DC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842865, + 49.883542 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 LES HAUTES RIVIERES-pl de la mairie DC 57604", + "ref:EU:EVSE": "FRS08E5760", + "ref": "FRS08E5760", + "name": "08 LES HAUTES RIVIERES-pl de la mairie DC 57604", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.499447, + 49.354924 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 MACHAULT - Place de la mairie - DC 57608", + "ref:EU:EVSE": "FRS08E5760", + "ref": "FRS08E5760", + "name": "08 MACHAULT - Place de la mairie - DC 57608", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.499447, + 49.354924 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 MACHAULT - Place de la mairie - DC 57608", + "ref:EU:EVSE": "FRS08E5760", + "ref": "FRS08E5760", + "name": "08 MACHAULT - Place de la mairie - DC 57608", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.806857, + 49.870549 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 THILAY - Couture d'en bas - DC 57612", + "ref:EU:EVSE": "FRS08E5761", + "ref": "FRS08E5761", + "name": "08 THILAY - Couture d'en bas - DC 57612", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.806857, + 49.870549 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 THILAY - Couture d'en bas - DC 57612", + "ref:EU:EVSE": "FRS08E5761", + "ref": "FRS08E5761", + "name": "08 THILAY - Couture d'en bas - DC 57612", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.626666, + 49.890051 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LES MAZURES - Rue des Hayettes - DC 57615", + "ref:EU:EVSE": "FRS08E5761", + "ref": "FRS08E5761", + "name": "LES MAZURES - Rue des Hayettes - DC 57615", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.626666, + 49.890051 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LES MAZURES - Rue des Hayettes - DC 57615", + "ref:EU:EVSE": "FRS08E5761", + "ref": "FRS08E5761", + "name": "LES MAZURES - Rue des Hayettes - DC 57615", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.539584, + 49.841842 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RIMOGNE- Rue de la Gare - 57623", + "ref:EU:EVSE": "FRS08E5762", + "ref": "FRS08E5762", + "name": "RIMOGNE- Rue de la Gare - 57623", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.539584, + 49.841842 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RIMOGNE- Rue de la Gare - 57623", + "ref:EU:EVSE": "FRS08E5762", + "ref": "FRS08E5762", + "name": "RIMOGNE- Rue de la Gare - 57623", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4738, + 49.523656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUCQUY - 57625 - Gare", + "ref:EU:EVSE": "FRS08E5762", + "ref": "FRS08E5762", + "name": "LUCQUY - 57625 - Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4738, + 49.523656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUCQUY - 57625 - Gare", + "ref:EU:EVSE": "FRS08E5762", + "ref": "FRS08E5762", + "name": "LUCQUY - 57625 - Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.279186, + 49.903185 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SIGNY LE PETIT - 57627 - Place de l'église", + "ref:EU:EVSE": "FRS08E5762", + "ref": "FRS08E5762", + "name": "SIGNY LE PETIT - 57627 - Place de l'église", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.279186, + 49.903185 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SIGNY LE PETIT - 57627 - Place de l'église", + "ref:EU:EVSE": "FRS08E5762", + "ref": "FRS08E5762", + "name": "SIGNY LE PETIT - 57627 - Place de l'église", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.699761, + 49.395875 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 VOUZIERS - rue Gambetta - DC 57629", + "ref:EU:EVSE": "FRS08E5762", + "ref": "FRS08E5762", + "name": "08 VOUZIERS - rue Gambetta - DC 57629", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.699761, + 49.395875 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 VOUZIERS - rue Gambetta - DC 57629", + "ref:EU:EVSE": "FRS08E5763", + "ref": "FRS08E5763", + "name": "08 VOUZIERS - rue Gambetta - DC 57629", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.603013, + 49.838277 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RENWEZ -Place de l'Eglise - 57633", + "ref:EU:EVSE": "FRS08E5763", + "ref": "FRS08E5763", + "name": "RENWEZ -Place de l'Eglise - 57633", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.603013, + 49.838277 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RENWEZ -Place de l'Eglise - 57633", + "ref:EU:EVSE": "FRS08E5763", + "ref": "FRS08E5763", + "name": "RENWEZ -Place de l'Eglise - 57633", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765891, + 49.851378 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 BOGNY SUR MEUSE - Place Danton - DC- 57637", + "ref:EU:EVSE": "FRS08E5763", + "ref": "FRS08E5763", + "name": "08 BOGNY SUR MEUSE - Place Danton - DC- 57637", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765891, + 49.851378 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 BOGNY SUR MEUSE - Place Danton - DC- 57637", + "ref:EU:EVSE": "FRS08E5763", + "ref": "FRS08E5763", + "name": "08 BOGNY SUR MEUSE - Place Danton - DC- 57637", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.599154, + 43.285628 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT AUBAGNE", + "ref:EU:EVSE": "FRCPIE6517155", + "ref": "FRCPIE6517155", + "name": "SONEPAR CONNECT AUBAGNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.599154, + 43.285628 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT AUBAGNE", + "ref:EU:EVSE": "FRCPIE6517155", + "ref": "FRCPIE6517155", + "name": "SONEPAR CONNECT AUBAGNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49431, + 49.788094 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROUVROY SUR AUDRY - 57687 - Grande Rue", + "ref:EU:EVSE": "FRS08E5768", + "ref": "FRS08E5768", + "name": "ROUVROY SUR AUDRY - 57687 - Grande Rue", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49431, + 49.788094 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROUVROY SUR AUDRY - 57687 - Grande Rue", + "ref:EU:EVSE": "FRS08E5768", + "ref": "FRS08E5768", + "name": "ROUVROY SUR AUDRY - 57687 - Grande Rue", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.955605, + 46.319259 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HôTEL DE FRANCE BORNE 1", + "ref:EU:EVSE": "FRCPIE6518615", + "ref": "FRCPIE6518615", + "name": "HôTEL DE FRANCE BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.955605, + 46.319259 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HôTEL DE FRANCE BORNE 1", + "ref:EU:EVSE": "FRCPIE6518615", + "ref": "FRCPIE6518615", + "name": "HôTEL DE FRANCE BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60966, + 44.171306 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agen", + "ref:EU:EVSE": "FRIONE43270", + "ref": "FRIONE43270", + "name": "Agen", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60966, + 44.171306 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agen", + "ref:EU:EVSE": "FRIONE43270", + "ref": "FRIONE43270", + "name": "Agen", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60966, + 44.171306 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agen", + "ref:EU:EVSE": "FRIONE43270", + "ref": "FRIONE43270", + "name": "Agen", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60966, + 44.171306 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agen", + "ref:EU:EVSE": "FRIONE43270", + "ref": "FRIONE43270", + "name": "Agen", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842865, + 49.883542 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 LES HAUTES RIVIERES-pl de la mairie DC 57604", + "ref:EU:EVSE": "FRS08E5760", + "ref": "FRS08E5760", + "name": "08 LES HAUTES RIVIERES-pl de la mairie DC 57604", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.578276, + 49.474329 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ATTIGNY DC", + "ref:EU:EVSE": "FRS08E5759", + "ref": "FRS08E5759", + "name": "ATTIGNY DC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.767761, + 45.165133 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR AED ST-M.HERES", + "ref:EU:EVSE": "FRCPIE6735845", + "ref": "FRCPIE6735845", + "name": "SONEPAR AED ST-M.HERES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.103798, + 49.074974 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MDF MOBILIER FRANCE", + "ref:EU:EVSE": "FRCPIE6513335", + "ref": "FRCPIE6513335", + "name": "MDF MOBILIER FRANCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35969, + 49.209799 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE ICEP STATION 01", + "ref:EU:EVSE": "FRCPIE6601985", + "ref": "FRCPIE6601985", + "name": "BORNE ICEP STATION 01", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35969, + 49.209799 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE ICEP STATION 01", + "ref:EU:EVSE": "FRCPIE6601985", + "ref": "FRCPIE6601985", + "name": "BORNE ICEP STATION 01", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.996112, + 49.218544 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEZANNES -2 - 49689 - Pkg Louis Victor de Broglie", + "ref:EU:EVSE": "FRS51E4968", + "ref": "FRS51E4968", + "name": "BEZANNES -2 - 49689 - Pkg Louis Victor de Broglie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.996112, + 49.218544 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEZANNES -2 - 49689 - Pkg Louis Victor de Broglie", + "ref:EU:EVSE": "FRS51E4968", + "ref": "FRS51E4968", + "name": "BEZANNES -2 - 49689 - Pkg Louis Victor de Broglie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36394976, + 48.95182009 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHALONS EN CHAMPAGNE - Pkg Vaubecourt - 125306", + "ref:EU:EVSE": "FRS51E1067", + "ref": "FRS51E1067", + "name": "CHALONS EN CHAMPAGNE - Pkg Vaubecourt - 125306", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36394976, + 48.95182009 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHALONS EN CHAMPAGNE - Pkg Vaubecourt - 125306", + "ref:EU:EVSE": "FRS51E1067", + "ref": "FRS51E1067", + "name": "CHALONS EN CHAMPAGNE - Pkg Vaubecourt - 125306", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36394976, + 48.95182009 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHALONS EN CHAMPAGNE - Pkg Vaubecourt - 125306", + "ref:EU:EVSE": "FRS51E12530", + "ref": "FRS51E12530", + "name": "CHALONS EN CHAMPAGNE - Pkg Vaubecourt - 125306", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36394976, + 48.95182009 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHALONS EN CHAMPAGNE - Pkg Vaubecourt - 125306", + "ref:EU:EVSE": "FRS51E12530", + "ref": "FRS51E12530", + "name": "CHALONS EN CHAMPAGNE - Pkg Vaubecourt - 125306", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.624104, + 48.361737 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Rambervilliers", + "ref:EU:EVSE": "FRIENE006501", + "ref": "FRIENE006501", + "name": "Rambervilliers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.624104, + 48.361737 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Rambervilliers", + "ref:EU:EVSE": "FRIENE006501", + "ref": "FRIENE006501", + "name": "Rambervilliers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.624104, + 48.361737 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Rambervilliers", + "ref:EU:EVSE": "FRIENE006502", + "ref": "FRIENE006502", + "name": "Rambervilliers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.624104, + 48.361737 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Rambervilliers", + "ref:EU:EVSE": "FRIENE006502", + "ref": "FRIENE006502", + "name": "Rambervilliers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.427569, + 49.869541 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 MAUBERT FONTAINE - 50 route d'hirson - DC 57529", + "ref:EU:EVSE": "FRS08E5752", + "ref": "FRS08E5752", + "name": "08 MAUBERT FONTAINE - 50 route d'hirson - DC 57529", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.427569, + 49.869541 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 MAUBERT FONTAINE - 50 route d'hirson - DC 57529", + "ref:EU:EVSE": "FRS08E5753", + "ref": "FRS08E5753", + "name": "08 MAUBERT FONTAINE - 50 route d'hirson - DC 57529", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.814135, + 49.288572 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JONCHERY-SUR-VESLE", + "ref:EU:EVSE": "FRS51E6149", + "ref": "FRS51E6149", + "name": "JONCHERY-SUR-VESLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.814135, + 49.288572 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JONCHERY-SUR-VESLE", + "ref:EU:EVSE": "FRS51E6149", + "ref": "FRS51E6149", + "name": "JONCHERY-SUR-VESLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.738553, + 49.885189 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 MONTHERMÉ - Pl Jean Batiste Clément - DC 57541", + "ref:EU:EVSE": "FRS08E5754", + "ref": "FRS08E5754", + "name": "08 MONTHERMÉ - Pl Jean Batiste Clément - DC 57541", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.738553, + 49.885189 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "08 MONTHERMÉ - Pl Jean Batiste Clément - DC 57541", + "ref:EU:EVSE": "FRS08E5754", + "ref": "FRS08E5754", + "name": "08 MONTHERMÉ - Pl Jean Batiste Clément - DC 57541", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.014127, + 49.482685 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VAUPALIERE 1", + "ref:EU:EVSE": "FRCPIE6585645", + "ref": "FRCPIE6585645", + "name": "SONEPAR VAUPALIERE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.014127, + 49.482685 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VAUPALIERE 1", + "ref:EU:EVSE": "FRCPIE6585645", + "ref": "FRCPIE6585645", + "name": "SONEPAR VAUPALIERE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.763445, + 49.513165 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BAIRON ET SES ENVIRONS - Lac Bairon - DC 57547", + "ref:EU:EVSE": "FRS08E5769", + "ref": "FRS08E5769", + "name": "BAIRON ET SES ENVIRONS - Lac Bairon - DC 57547", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.763445, + 49.513165 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BAIRON ET SES ENVIRONS - Lac Bairon - DC 57547", + "ref:EU:EVSE": "FRS08E5769", + "ref": "FRS08E5769", + "name": "BAIRON ET SES ENVIRONS - Lac Bairon - DC 57547", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.167409, + 48.768588 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BAR LE DUC - 81267 - Cinéma", + "ref:EU:EVSE": "FRS55E8126", + "ref": "FRS55E8126", + "name": "BAR LE DUC - 81267 - Cinéma", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.167409, + 48.768588 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BAR LE DUC - 81267 - Cinéma", + "ref:EU:EVSE": "FRS55E8126", + "ref": "FRS55E8126", + "name": "BAR LE DUC - 81267 - Cinéma", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.167409, + 48.768588 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BAR LE DUC - 81267 - Cinéma", + "ref:EU:EVSE": "FRS55E8127", + "ref": "FRS55E8127", + "name": "BAR LE DUC - 81267 - Cinéma", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.167409, + 48.768588 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BAR LE DUC - 81267 - Cinéma", + "ref:EU:EVSE": "FRS55E8127", + "ref": "FRS55E8127", + "name": "BAR LE DUC - 81267 - Cinéma", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.419153, + 49.698213 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SIGNY L ABBAYE - Plave Aristide Briand - 57592", + "ref:EU:EVSE": "FRS08E5759", + "ref": "FRS08E5759", + "name": "SIGNY L ABBAYE - Plave Aristide Briand - 57592", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.419153, + 49.698213 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SIGNY L ABBAYE - Plave Aristide Briand - 57592", + "ref:EU:EVSE": "FRS08E5759", + "ref": "FRS08E5759", + "name": "SIGNY L ABBAYE - Plave Aristide Briand - 57592", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.103798, + 49.074974 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MDF MOBILIER FRANCE", + "ref:EU:EVSE": "FRCPIE6513335", + "ref": "FRCPIE6513335", + "name": "MDF MOBILIER FRANCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.357699, + 47.834549 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Sablé-sur-Sarthe", + "ref:EU:EVSE": "FRIENE002401", + "ref": "FRIENE002401", + "name": "Sablé-sur-Sarthe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.357699, + 47.834549 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Sablé-sur-Sarthe", + "ref:EU:EVSE": "FRIENE002402", + "ref": "FRIENE002402", + "name": "Sablé-sur-Sarthe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70136, + 49.400247 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VOUZIERS - 57619 - Rue du Champ de Foire", + "ref:EU:EVSE": "FRS08E5761", + "ref": "FRS08E5761", + "name": "VOUZIERS - 57619 - Rue du Champ de Foire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589812, + 48.777379 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 14", + "ref:EU:EVSE": "FRCPIE6541085", + "ref": "FRCPIE6541085", + "name": "WAAT 4 CHENES 14", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.340441, + 49.769178 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LIART - Place de la Mairie - 57724", + "ref:EU:EVSE": "FRS08E5772", + "ref": "FRS08E5772", + "name": "LIART - Place de la Mairie - 57724", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.340441, + 49.769178 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LIART - Place de la Mairie - 57724", + "ref:EU:EVSE": "FRS08E5772", + "ref": "FRS08E5772", + "name": "LIART - Place de la Mairie - 57724", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.492422, + 45.188934 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saugon Ouest", + "ref:EU:EVSE": "FRIONE43140", + "ref": "FRIONE43140", + "name": "Saugon Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.492422, + 45.188934 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saugon Ouest", + "ref:EU:EVSE": "FRIONE43140", + "ref": "FRIONE43140", + "name": "Saugon Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.492422, + 45.188934 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saugon Ouest", + "ref:EU:EVSE": "FRIONE43140", + "ref": "FRIONE43140", + "name": "Saugon Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.492422, + 45.188934 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saugon Ouest", + "ref:EU:EVSE": "FRIONE43140", + "ref": "FRIONE43140", + "name": "Saugon Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.492422, + 45.188934 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saugon Ouest", + "ref:EU:EVSE": "FRIONE4314", + "ref": "FRIONE4314", + "name": "Saugon Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.485549, + 45.161604 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR BRIVE", + "ref:EU:EVSE": "FRCPIE6725925", + "ref": "FRCPIE6725925", + "name": "SONEPAR BRIVE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.485549, + 45.161604 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR BRIVE", + "ref:EU:EVSE": "FRCPIE6725925", + "ref": "FRCPIE6725925", + "name": "SONEPAR BRIVE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.389744, + 49.036656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CHÂTEAU-THIERRY", + "ref:EU:EVSE": "FRCPIE6540995", + "ref": "FRCPIE6540995", + "name": "SONEPAR CONNECT CHÂTEAU-THIERRY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.389744, + 49.036656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CHÂTEAU-THIERRY", + "ref:EU:EVSE": "FRCPIE6540995", + "ref": "FRCPIE6540995", + "name": "SONEPAR CONNECT CHÂTEAU-THIERRY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589812, + 48.777379 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 14", + "ref:EU:EVSE": "FRCPIE6541055", + "ref": "FRCPIE6541055", + "name": "WAAT 4 CHENES 14", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589812, + 48.777379 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 14", + "ref:EU:EVSE": "FRCPIE6541055", + "ref": "FRCPIE6541055", + "name": "WAAT 4 CHENES 14", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589812, + 48.777379 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 14", + "ref:EU:EVSE": "FRCPIE6541085", + "ref": "FRCPIE6541085", + "name": "WAAT 4 CHENES 14", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589812, + 48.777379 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 14", + "ref:EU:EVSE": "FRCPIE6627505", + "ref": "FRCPIE6627505", + "name": "WAAT 4 CHENES 14", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.053197, + 50.548681 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Seclin", + "ref:EU:EVSE": "FRIONE44010", + "ref": "FRIONE44010", + "name": "Seclin", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589812, + 48.777379 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 14", + "ref:EU:EVSE": "FRCPIE6627505", + "ref": "FRCPIE6627505", + "name": "WAAT 4 CHENES 14", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589812, + 48.777379 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 14", + "ref:EU:EVSE": "FRCPIE6627515", + "ref": "FRCPIE6627515", + "name": "WAAT 4 CHENES 14", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589812, + 48.777379 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 14", + "ref:EU:EVSE": "FRCPIE6627515", + "ref": "FRCPIE6627515", + "name": "WAAT 4 CHENES 14", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589698, + 48.776964 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 11", + "ref:EU:EVSE": "FRCPIE6541555", + "ref": "FRCPIE6541555", + "name": "WAAT 4 CHENES 11", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589698, + 48.776964 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 11", + "ref:EU:EVSE": "FRCPIE6541555", + "ref": "FRCPIE6541555", + "name": "WAAT 4 CHENES 11", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589698, + 48.776964 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 11", + "ref:EU:EVSE": "FRCPIE6627535", + "ref": "FRCPIE6627535", + "name": "WAAT 4 CHENES 11", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589698, + 48.776964 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 11", + "ref:EU:EVSE": "FRCPIE6627535", + "ref": "FRCPIE6627535", + "name": "WAAT 4 CHENES 11", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.954685, + 49.428651 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BUZANCY - 57517 - Parking Proxi", + "ref:EU:EVSE": "FRS08E5751", + "ref": "FRS08E5751", + "name": "BUZANCY - 57517 - Parking Proxi", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.954685, + 49.428651 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BUZANCY - 57517 - Parking Proxi", + "ref:EU:EVSE": "FRS08E5751", + "ref": "FRS08E5751", + "name": "BUZANCY - 57517 - Parking Proxi", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.402838, + 43.551582 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED TOULOUSE 1 _", + "ref:EU:EVSE": "FRCPIE6542295", + "ref": "FRCPIE6542295", + "name": "CGED TOULOUSE 1 _", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.402838, + 43.551582 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED TOULOUSE 1 _", + "ref:EU:EVSE": "FRCPIE6542295", + "ref": "FRCPIE6542295", + "name": "CGED TOULOUSE 1 _", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.16581, + 48.838141 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING EXTERIE BORNE 2", + "ref:EU:EVSE": "FRCPIE6543455", + "ref": "FRCPIE6543455", + "name": "PARKING EXTERIE BORNE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.16581, + 48.838141 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING EXTERIE BORNE 2", + "ref:EU:EVSE": "FRCPIE6543455", + "ref": "FRCPIE6543455", + "name": "PARKING EXTERIE BORNE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.053197, + 50.548681 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Seclin", + "ref:EU:EVSE": "FRIONE44010", + "ref": "FRIONE44010", + "name": "Seclin", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.680823, + 47.820159 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE U BORNE PUBLIQUE3", + "ref:EU:EVSE": "FRCPIE6540215", + "ref": "FRCPIE6540215", + "name": "BORNE U BORNE PUBLIQUE3", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.680823, + 47.820159 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE U BORNE PUBLIQUE3", + "ref:EU:EVSE": "FRCPIE6540215", + "ref": "FRCPIE6540215", + "name": "BORNE U BORNE PUBLIQUE3", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24461, + 46.99259 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St FLORENT SUR CHER - République - 113095", + "ref:EU:EVSE": "FRS18E11309", + "ref": "FRS18E11309", + "name": "St FLORENT SUR CHER - République - 113095", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24461, + 46.99259 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St FLORENT SUR CHER - République - 113095", + "ref:EU:EVSE": "FRS18E11309", + "ref": "FRS18E11309", + "name": "St FLORENT SUR CHER - République - 113095", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.044, + 49.6695 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Douzy 35886 - Place Verte", + "ref:EU:EVSE": "FRS08E3588", + "ref": "FRS08E3588", + "name": "Douzy 35886 - Place Verte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.044, + 49.6695 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Douzy 35886 - Place Verte", + "ref:EU:EVSE": "FRS08E3588", + "ref": "FRS08E3588", + "name": "Douzy 35886 - Place Verte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16687293, + 49.63044664 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Carignan 35990 - Rue du Parc", + "ref:EU:EVSE": "FRS08E3599", + "ref": "FRS08E3599", + "name": "Carignan 35990 - Rue du Parc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16687293, + 49.63044664 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Carignan 35990 - Rue du Parc", + "ref:EU:EVSE": "FRS08E5741", + "ref": "FRS08E5741", + "name": "Carignan 35990 - Rue du Parc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.118014, + 46.573538 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vendée", + "ref:EU:EVSE": "FRIONE40970", + "ref": "FRIONE40970", + "name": "Vendée", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.118014, + 46.573538 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vendée", + "ref:EU:EVSE": "FRIONE40970", + "ref": "FRIONE40970", + "name": "Vendée", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.118014, + 46.573538 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vendée", + "ref:EU:EVSE": "FRIONE40970", + "ref": "FRIONE40970", + "name": "Vendée", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.118014, + 46.573538 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vendée", + "ref:EU:EVSE": "FRIONE40970", + "ref": "FRIONE40970", + "name": "Vendée", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.118014, + 46.573538 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vendée", + "ref:EU:EVSE": "FRIONE4097", + "ref": "FRIONE4097", + "name": "Vendée", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.222737, + 47.815173 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Langres Perrogney", + "ref:EU:EVSE": "FRIONE40920", + "ref": "FRIONE40920", + "name": "Langres Perrogney", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.222737, + 47.815173 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Langres Perrogney", + "ref:EU:EVSE": "FRIONE40920", + "ref": "FRIONE40920", + "name": "Langres Perrogney", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.222737, + 47.815173 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Langres Perrogney", + "ref:EU:EVSE": "FRIONE40920", + "ref": "FRIONE40920", + "name": "Langres Perrogney", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.222737, + 47.815173 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Langres Perrogney", + "ref:EU:EVSE": "FRIONE40920", + "ref": "FRIONE40920", + "name": "Langres Perrogney", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.222737, + 47.815173 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Langres Perrogney", + "ref:EU:EVSE": "FRIONE40920", + "ref": "FRIONE40920", + "name": "Langres Perrogney", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.222737, + 47.815173 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Langres Perrogney", + "ref:EU:EVSE": "FRIONE40920", + "ref": "FRIONE40920", + "name": "Langres Perrogney", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.222737, + 47.815173 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Langres Perrogney", + "ref:EU:EVSE": "FRIONE4092", + "ref": "FRIONE4092", + "name": "Langres Perrogney", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.323697, + 43.72454 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "STATION U BORNE 1", + "ref:EU:EVSE": "FRCPIE6538095", + "ref": "FRCPIE6538095", + "name": "STATION U BORNE 1", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.197267, + 47.974493 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Réserve", + "ref:EU:EVSE": "FRIONE41260", + "ref": "FRIONE41260", + "name": "La Réserve", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.197267, + 47.974493 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Réserve", + "ref:EU:EVSE": "FRIONE41260", + "ref": "FRIONE41260", + "name": "La Réserve", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.197267, + 47.974493 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Réserve", + "ref:EU:EVSE": "FRIONE41260", + "ref": "FRIONE41260", + "name": "La Réserve", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.197267, + 47.974493 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Réserve", + "ref:EU:EVSE": "FRIONE41260", + "ref": "FRIONE41260", + "name": "La Réserve", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.197267, + 47.974493 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Réserve", + "ref:EU:EVSE": "FRIONE4126", + "ref": "FRIONE4126", + "name": "La Réserve", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.643851, + 48.556927 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "07910270", + "ref:EU:EVSE": "FRTNME07910270", + "ref": "FRTNME07910270", + "name": "07910270", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.752628, + 50.451251 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED MONTREUIL", + "ref:EU:EVSE": "FRCPIE6577835", + "ref": "FRCPIE6577835", + "name": "CGED MONTREUIL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.752628, + 50.451251 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED MONTREUIL", + "ref:EU:EVSE": "FRCPIE6577835", + "ref": "FRCPIE6577835", + "name": "CGED MONTREUIL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04325, + 47.41236 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Loireauxence", + "ref:EU:EVSE": "FRIENE007301", + "ref": "FRIENE007301", + "name": "Loireauxence", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04325, + 47.41236 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Loireauxence", + "ref:EU:EVSE": "FRIENE007301", + "ref": "FRIENE007301", + "name": "Loireauxence", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04325, + 47.41236 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Loireauxence", + "ref:EU:EVSE": "FRIENE007302", + "ref": "FRIENE007302", + "name": "Loireauxence", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04325, + 47.41236 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Loireauxence", + "ref:EU:EVSE": "FRIENE007302", + "ref": "FRIENE007302", + "name": "Loireauxence", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.053197, + 50.548681 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Seclin", + "ref:EU:EVSE": "FRIONE44010", + "ref": "FRIONE44010", + "name": "Seclin", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.053197, + 50.548681 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Seclin", + "ref:EU:EVSE": "FRIONE44010", + "ref": "FRIONE44010", + "name": "Seclin", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.357699, + 47.834549 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Sablé-sur-Sarthe", + "ref:EU:EVSE": "FRIENE002402", + "ref": "FRIENE002402", + "name": "Sablé-sur-Sarthe", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82163, + 45.488418 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VIENNE", + "ref:EU:EVSE": "FRCPIE6632165", + "ref": "FRCPIE6632165", + "name": "SONEPAR VIENNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.577555, + 47.109985 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOYANT DE TOURAINE 1293", + "ref:EU:EVSE": "FRS37E129", + "ref": "FRS37E129", + "name": "NOYANT DE TOURAINE 1293", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378795, + 50.571808 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rely", + "ref:EU:EVSE": "FRIONE40890", + "ref": "FRIONE40890", + "name": "Rely", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378795, + 50.571808 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rely", + "ref:EU:EVSE": "FRIONE40890", + "ref": "FRIONE40890", + "name": "Rely", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378795, + 50.571808 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rely", + "ref:EU:EVSE": "FRIONE40890", + "ref": "FRIONE40890", + "name": "Rely", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378795, + 50.571808 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rely", + "ref:EU:EVSE": "FRIONE40890", + "ref": "FRIONE40890", + "name": "Rely", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378795, + 50.571808 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rely", + "ref:EU:EVSE": "FRIONE4089", + "ref": "FRIONE4089", + "name": "Rely", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630208, + 45.577663 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Romagnieu", + "ref:EU:EVSE": "FRFASE330960", + "ref": "FRFASE330960", + "name": "Aire de Romagnieu", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630208, + 45.577663 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Romagnieu", + "ref:EU:EVSE": "FRFASE330960", + "ref": "FRFASE330960", + "name": "Aire de Romagnieu", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630208, + 45.577663 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Romagnieu", + "ref:EU:EVSE": "FRFASE330960", + "ref": "FRFASE330960", + "name": "Aire de Romagnieu", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630208, + 45.577663 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Romagnieu", + "ref:EU:EVSE": "FRFASE330960", + "ref": "FRFASE330960", + "name": "Aire de Romagnieu", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630208, + 45.577663 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Romagnieu", + "ref:EU:EVSE": "FRFASE330960", + "ref": "FRFASE330960", + "name": "Aire de Romagnieu", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630208, + 45.577663 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Romagnieu", + "ref:EU:EVSE": "FRFASE330960", + "ref": "FRFASE330960", + "name": "Aire de Romagnieu", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630208, + 45.577663 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Romagnieu", + "ref:EU:EVSE": "FRFASE330960", + "ref": "FRFASE330960", + "name": "Aire de Romagnieu", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630208, + 45.577663 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Romagnieu", + "ref:EU:EVSE": "FRFASE330960", + "ref": "FRFASE330960", + "name": "Aire de Romagnieu", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82163, + 45.488418 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VIENNE", + "ref:EU:EVSE": "FRCPIE6632165", + "ref": "FRCPIE6632165", + "name": "SONEPAR VIENNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.053197, + 50.548681 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Seclin", + "ref:EU:EVSE": "FRIONE44011", + "ref": "FRIONE44011", + "name": "Seclin", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.852069, + 43.456556 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U BORNE 4", + "ref:EU:EVSE": "FRCPIE6550965", + "ref": "FRCPIE6550965", + "name": "HYPER U BORNE 4", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.852069, + 43.456556 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U BORNE 4", + "ref:EU:EVSE": "FRCPIE6550965", + "ref": "FRCPIE6550965", + "name": "HYPER U BORNE 4", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.852069, + 43.456556 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U BORNE 4", + "ref:EU:EVSE": "FRCPIE6610765", + "ref": "FRCPIE6610765", + "name": "HYPER U BORNE 4", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.852069, + 43.456556 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U BORNE 4", + "ref:EU:EVSE": "FRCPIE6610765", + "ref": "FRCPIE6610765", + "name": "HYPER U BORNE 4", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.642625, + 47.999847 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DOMMARTIN - Rue de Pont - 163280 - CCS", + "ref:EU:EVSE": "FRS88E16328", + "ref": "FRS88E16328", + "name": "DOMMARTIN - Rue de Pont - 163280 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-28", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.642625, + 47.999847 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DOMMARTIN - Rue de Pont - 163280 - CCS", + "ref:EU:EVSE": "FRS88E16328", + "ref": "FRS88E16328", + "name": "DOMMARTIN - Rue de Pont - 163280 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-28", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.957174, + 49.601797 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RAUCOURT ET FLABA - 57539 - Place de la Halle", + "ref:EU:EVSE": "FRS08E5753", + "ref": "FRS08E5753", + "name": "RAUCOURT ET FLABA - 57539 - Place de la Halle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.957174, + 49.601797 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RAUCOURT ET FLABA - 57539 - Place de la Halle", + "ref:EU:EVSE": "FRS08E5754", + "ref": "FRS08E5754", + "name": "RAUCOURT ET FLABA - 57539 - Place de la Halle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390318, + 47.084091 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Place de la Nation - 140281", + "ref:EU:EVSE": "FRS18E14028", + "ref": "FRS18E14028", + "name": "BOURGES - Place de la Nation - 140281", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390318, + 47.084091 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Place de la Nation - 140281", + "ref:EU:EVSE": "FRS18E14028", + "ref": "FRS18E14028", + "name": "BOURGES - Place de la Nation - 140281", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39614, + 48.962298 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE GAZZOLA DEPOT GMT", + "ref:EU:EVSE": "FRCPIE6551715", + "ref": "FRCPIE6551715", + "name": "BORNE GAZZOLA DEPOT GMT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39614, + 48.962298 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE GAZZOLA DEPOT GMT", + "ref:EU:EVSE": "FRCPIE6551715", + "ref": "FRCPIE6551715", + "name": "BORNE GAZZOLA DEPOT GMT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383278, + 49.395725 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JUNIVILLE - 57595 - Avenue de Quimper", + "ref:EU:EVSE": "FRS08E5759", + "ref": "FRS08E5759", + "name": "JUNIVILLE - 57595 - Avenue de Quimper", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383278, + 49.395725 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JUNIVILLE - 57595 - Avenue de Quimper", + "ref:EU:EVSE": "FRS08E5759", + "ref": "FRS08E5759", + "name": "JUNIVILLE - 57595 - Avenue de Quimper", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.577555, + 47.109985 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOYANT DE TOURAINE 1293", + "ref:EU:EVSE": "FRS37E129", + "ref": "FRS37E129", + "name": "NOYANT DE TOURAINE 1293", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.64276092, + 47.6033841 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Mailly-le-Chateau", + "ref:EU:EVSE": "FRIENE008702", + "ref": "FRIENE008702", + "name": "Mailly-le-Chateau", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.64276092, + 47.6033841 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Mailly-le-Chateau", + "ref:EU:EVSE": "FRIENE008702", + "ref": "FRIENE008702", + "name": "Mailly-le-Chateau", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.64276092, + 47.6033841 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Mailly-le-Chateau", + "ref:EU:EVSE": "FRIENE008701", + "ref": "FRIENE008701", + "name": "Mailly-le-Chateau", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.053197, + 50.548681 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Seclin", + "ref:EU:EVSE": "FRIONE44011", + "ref": "FRIONE44011", + "name": "Seclin", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.053197, + 50.548681 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Seclin", + "ref:EU:EVSE": "FRIONE44011", + "ref": "FRIONE44011", + "name": "Seclin", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.053197, + 50.548681 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Seclin", + "ref:EU:EVSE": "FRIONE44011", + "ref": "FRIONE44011", + "name": "Seclin", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.053197, + 50.548681 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Seclin", + "ref:EU:EVSE": "FRIONE44012", + "ref": "FRIONE44012", + "name": "Seclin", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.053197, + 50.548681 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Seclin", + "ref:EU:EVSE": "FRIONE44012", + "ref": "FRIONE44012", + "name": "Seclin", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.053197, + 50.548681 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Seclin", + "ref:EU:EVSE": "FRIONE44012", + "ref": "FRIONE44012", + "name": "Seclin", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.053197, + 50.548681 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Seclin", + "ref:EU:EVSE": "FRIONE44012", + "ref": "FRIONE44012", + "name": "Seclin", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.053197, + 50.548681 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Seclin", + "ref:EU:EVSE": "FRIONE4401", + "ref": "FRIONE4401", + "name": "Seclin", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.836951, + 47.565651 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CHAMPADIS BORNE 2", + "ref:EU:EVSE": "FRCPIE6543575", + "ref": "FRCPIE6543575", + "name": "CHAMPADIS BORNE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.836951, + 47.565651 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CHAMPADIS BORNE 2", + "ref:EU:EVSE": "FRCPIE6543575", + "ref": "FRCPIE6543575", + "name": "CHAMPADIS BORNE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.517406, + 48.990975 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BSMD BORNE 2", + "ref:EU:EVSE": "FRCPIE6543785", + "ref": "FRCPIE6543785", + "name": "BSMD BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.517406, + 48.990975 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BSMD BORNE 2", + "ref:EU:EVSE": "FRCPIE6543785", + "ref": "FRCPIE6543785", + "name": "BSMD BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.517406, + 48.990975 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BSMD BORNE 2", + "ref:EU:EVSE": "FRCPIE6543795", + "ref": "FRCPIE6543795", + "name": "BSMD BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.517406, + 48.990975 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BSMD BORNE 2", + "ref:EU:EVSE": "FRCPIE6543795", + "ref": "FRCPIE6543795", + "name": "BSMD BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371119, + 46.701836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Poitiers Chincé", + "ref:EU:EVSE": "FRIONE40430", + "ref": "FRIONE40430", + "name": "Poitiers Chincé", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371119, + 46.701836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Poitiers Chincé", + "ref:EU:EVSE": "FRIONE40430", + "ref": "FRIONE40430", + "name": "Poitiers Chincé", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371119, + 46.701836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Poitiers Chincé", + "ref:EU:EVSE": "FRIONE40430", + "ref": "FRIONE40430", + "name": "Poitiers Chincé", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371119, + 46.701836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Poitiers Chincé", + "ref:EU:EVSE": "FRIONE40430", + "ref": "FRIONE40430", + "name": "Poitiers Chincé", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371119, + 46.701836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Poitiers Chincé", + "ref:EU:EVSE": "FRIONE4043", + "ref": "FRIONE4043", + "name": "Poitiers Chincé", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.201718, + 47.081187 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Ste THORETTE - Route de Bourges - 148714", + "ref:EU:EVSE": "FRS18E14871", + "ref": "FRS18E14871", + "name": "Ste THORETTE - Route de Bourges - 148714", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.201718, + 47.081187 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Ste THORETTE - Route de Bourges - 148714", + "ref:EU:EVSE": "FRS18E14871", + "ref": "FRS18E14871", + "name": "Ste THORETTE - Route de Bourges - 148714", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702388, + 44.004164 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel | A9/E15, La Languedocienne", + "ref:EU:EVSE": "FRIONE40250", + "ref": "FRIONE40250", + "name": "Tavel | A9/E15, La Languedocienne", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702388, + 44.004164 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel | A9/E15, La Languedocienne", + "ref:EU:EVSE": "FRIONE40250", + "ref": "FRIONE40250", + "name": "Tavel | A9/E15, La Languedocienne", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702388, + 44.004164 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel | A9/E15, La Languedocienne", + "ref:EU:EVSE": "FRIONE40250", + "ref": "FRIONE40250", + "name": "Tavel | A9/E15, La Languedocienne", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702388, + 44.004164 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel | A9/E15, La Languedocienne", + "ref:EU:EVSE": "FRIONE40250", + "ref": "FRIONE40250", + "name": "Tavel | A9/E15, La Languedocienne", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702388, + 44.004164 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel | A9/E15, La Languedocienne", + "ref:EU:EVSE": "FRIONE40255", + "ref": "FRIONE40255", + "name": "Tavel | A9/E15, La Languedocienne", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702388, + 44.004164 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel | A9/E15, La Languedocienne", + "ref:EU:EVSE": "FRIONE40255", + "ref": "FRIONE40255", + "name": "Tavel | A9/E15, La Languedocienne", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702388, + 44.004164 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel | A9/E15, La Languedocienne", + "ref:EU:EVSE": "FRIONE40255", + "ref": "FRIONE40255", + "name": "Tavel | A9/E15, La Languedocienne", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.64276092, + 47.6033841 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Mailly-le-Chateau", + "ref:EU:EVSE": "FRIENE008701", + "ref": "FRIENE008701", + "name": "Mailly-le-Chateau", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41992, + 46.7149 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ORCENAIS - Route de Marçais - 112821", + "ref:EU:EVSE": "FRS18E11282", + "ref": "FRS18E11282", + "name": "ORCENAIS - Route de Marçais - 112821", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41992, + 46.7149 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ORCENAIS - Route de Marçais - 112821", + "ref:EU:EVSE": "FRS18E11282", + "ref": "FRS18E11282", + "name": "ORCENAIS - Route de Marçais - 112821", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.165492, + 48.83775 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING EXTERIE BORNE 1", + "ref:EU:EVSE": "FRCPIE6536955", + "ref": "FRCPIE6536955", + "name": "PARKING EXTERIE BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17560786, + 45.9148288 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Neulise", + "ref:EU:EVSE": "FRIENE004701", + "ref": "FRIENE004701", + "name": "Neulise", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6557805", + "ref": "FRCPIE6557805", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6557805", + "ref": "FRCPIE6557805", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6557815", + "ref": "FRCPIE6557815", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6557825", + "ref": "FRCPIE6557825", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6557845", + "ref": "FRCPIE6557845", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6557865", + "ref": "FRCPIE6557865", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6557865", + "ref": "FRCPIE6557865", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6557875", + "ref": "FRCPIE6557875", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6557875", + "ref": "FRCPIE6557875", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401525, + 45.459204 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED ST-ETIENNE 1", + "ref:EU:EVSE": "FRCPIE6596825", + "ref": "FRCPIE6596825", + "name": "CGED ST-ETIENNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6557975", + "ref": "FRCPIE6557975", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0775, + 49.606 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Mouzon 35483 - Rue du collége", + "ref:EU:EVSE": "FRS08E3548", + "ref": "FRS08E3548", + "name": "Mouzon 35483 - Rue du collége", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0775, + 49.606 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Mouzon 35483 - Rue du collége", + "ref:EU:EVSE": "FRS08E3548", + "ref": "FRS08E3548", + "name": "Mouzon 35483 - Rue du collége", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17560786, + 45.9148288 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Neulise", + "ref:EU:EVSE": "FRIENE004701", + "ref": "FRIENE004701", + "name": "Neulise", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17560786, + 45.9148288 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Neulise", + "ref:EU:EVSE": "FRIENE004702", + "ref": "FRIENE004702", + "name": "Neulise", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.165492, + 48.83775 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING EXTERIE BORNE 1", + "ref:EU:EVSE": "FRCPIE6536955", + "ref": "FRCPIE6536955", + "name": "PARKING EXTERIE BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17560786, + 45.9148288 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Neulise", + "ref:EU:EVSE": "FRIENE004702", + "ref": "FRIENE004702", + "name": "Neulise", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427526, + 48.093861 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CHÂTEAUBOURG 6", + "ref:EU:EVSE": "FRCPIE6534535", + "ref": "FRCPIE6534535", + "name": "SONELOG CHÂTEAUBOURG 6", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427526, + 48.093861 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CHÂTEAUBOURG 6", + "ref:EU:EVSE": "FRCPIE6534535", + "ref": "FRCPIE6534535", + "name": "SONELOG CHÂTEAUBOURG 6", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427526, + 48.093861 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CHÂTEAUBOURG 6", + "ref:EU:EVSE": "FRCPIE6623885", + "ref": "FRCPIE6623885", + "name": "SONELOG CHÂTEAUBOURG 6", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427526, + 48.093861 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CHÂTEAUBOURG 6", + "ref:EU:EVSE": "FRCPIE6623885", + "ref": "FRCPIE6623885", + "name": "SONELOG CHÂTEAUBOURG 6", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427526, + 48.093861 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CHÂTEAUBOURG 6", + "ref:EU:EVSE": "FRCPIE6623895", + "ref": "FRCPIE6623895", + "name": "SONELOG CHÂTEAUBOURG 6", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427526, + 48.093861 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CHÂTEAUBOURG 6", + "ref:EU:EVSE": "FRCPIE6623895", + "ref": "FRCPIE6623895", + "name": "SONELOG CHÂTEAUBOURG 6", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427526, + 48.093861 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CHÂTEAUBOURG 6", + "ref:EU:EVSE": "FRCPIE6623905", + "ref": "FRCPIE6623905", + "name": "SONELOG CHÂTEAUBOURG 6", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427526, + 48.093861 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CHÂTEAUBOURG 6", + "ref:EU:EVSE": "FRCPIE6623905", + "ref": "FRCPIE6623905", + "name": "SONELOG CHÂTEAUBOURG 6", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.474615, + 43.298803 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agde", + "ref:EU:EVSE": "FRIONE46940", + "ref": "FRIONE46940", + "name": "Agde", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.474615, + 43.298803 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agde", + "ref:EU:EVSE": "FRIONE46940", + "ref": "FRIONE46940", + "name": "Agde", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.474615, + 43.298803 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agde", + "ref:EU:EVSE": "FRIONE46940", + "ref": "FRIONE46940", + "name": "Agde", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.474615, + 43.298803 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agde", + "ref:EU:EVSE": "FRIONE46941", + "ref": "FRIONE46941", + "name": "Agde", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.474615, + 43.298803 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agde", + "ref:EU:EVSE": "FRIONE46941", + "ref": "FRIONE46941", + "name": "Agde", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6557795", + "ref": "FRCPIE6557795", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6557795", + "ref": "FRCPIE6557795", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6557785", + "ref": "FRCPIE6557785", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6557785", + "ref": "FRCPIE6557785", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.371323, + 45.634283 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Chazelles sur Lyon", + "ref:EU:EVSE": "FRIENE004201", + "ref": "FRIENE004201", + "name": "Chazelles sur Lyon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.371323, + 45.634283 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Chazelles sur Lyon", + "ref:EU:EVSE": "FRIENE004201", + "ref": "FRIENE004201", + "name": "Chazelles sur Lyon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.371323, + 45.634283 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Chazelles sur Lyon", + "ref:EU:EVSE": "FRIENE004202", + "ref": "FRIENE004202", + "name": "Chazelles sur Lyon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.371323, + 45.634283 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Chazelles sur Lyon", + "ref:EU:EVSE": "FRIENE004202", + "ref": "FRIENE004202", + "name": "Chazelles sur Lyon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96886, + 48.0297 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTHUREUX SUR SAONE - 161826 - CCS", + "ref:EU:EVSE": "FRS88E16182", + "ref": "FRS88E16182", + "name": "MONTHUREUX SUR SAONE - 161826 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-23", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96886, + 48.0297 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTHUREUX SUR SAONE - 161826 - CCS", + "ref:EU:EVSE": "FRS88E16182", + "ref": "FRS88E16182", + "name": "MONTHUREUX SUR SAONE - 161826 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-23", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.383636, + 48.307361 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOMEXY-rue sœur Sidonie-150251-CCS", + "ref:EU:EVSE": "FRS88E15025", + "ref": "FRS88E15025", + "name": "NOMEXY-rue sœur Sidonie-150251-CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.383636, + 48.307361 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOMEXY-rue sœur Sidonie-150251-CCS", + "ref:EU:EVSE": "FRS88E15025", + "ref": "FRS88E15025", + "name": "NOMEXY-rue sœur Sidonie-150251-CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5813, + 48.04599 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST NABORD-rue de la croix st Jacques-150258-CCS", + "ref:EU:EVSE": "FRS88E15025", + "ref": "FRS88E15025", + "name": "ST NABORD-rue de la croix st Jacques-150258-CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5813, + 48.04599 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST NABORD-rue de la croix st Jacques-150258-CCS", + "ref:EU:EVSE": "FRS88E15026", + "ref": "FRS88E15026", + "name": "ST NABORD-rue de la croix st Jacques-150258-CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref:EU:EVSE": "FRIONE41480", + "ref": "FRIONE41480", + "name": "Corbières Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref:EU:EVSE": "FRIONE41480", + "ref": "FRIONE41480", + "name": "Corbières Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref:EU:EVSE": "FRIONE41480", + "ref": "FRIONE41480", + "name": "Corbières Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref:EU:EVSE": "FRIONE41480", + "ref": "FRIONE41480", + "name": "Corbières Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref:EU:EVSE": "FRIONE41480", + "ref": "FRIONE41480", + "name": "Corbières Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref:EU:EVSE": "FRIONE41480", + "ref": "FRIONE41480", + "name": "Corbières Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref:EU:EVSE": "FRIONE41481", + "ref": "FRIONE41481", + "name": "Corbières Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref:EU:EVSE": "FRIONE41481", + "ref": "FRIONE41481", + "name": "Corbières Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref:EU:EVSE": "FRIONE4148", + "ref": "FRIONE4148", + "name": "Corbières Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966165, + 45.562744 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 2", + "ref:EU:EVSE": "FRCPIE6534365", + "ref": "FRCPIE6534365", + "name": "SUPER GRANIER BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966165, + 45.562744 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 2", + "ref:EU:EVSE": "FRCPIE6534365", + "ref": "FRCPIE6534365", + "name": "SUPER GRANIER BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966165, + 45.562744 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 2", + "ref:EU:EVSE": "FRCPIE6557935", + "ref": "FRCPIE6557935", + "name": "SUPER GRANIER BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966165, + 45.562744 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 2", + "ref:EU:EVSE": "FRCPIE6557935", + "ref": "FRCPIE6557935", + "name": "SUPER GRANIER BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966165, + 45.562744 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 2", + "ref:EU:EVSE": "FRCPIE6557945", + "ref": "FRCPIE6557945", + "name": "SUPER GRANIER BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966165, + 45.562744 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 2", + "ref:EU:EVSE": "FRCPIE6557945", + "ref": "FRCPIE6557945", + "name": "SUPER GRANIER BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6534445", + "ref": "FRCPIE6534445", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6534445", + "ref": "FRCPIE6534445", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6557775", + "ref": "FRCPIE6557775", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.966089, + 45.56295 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER GRANIER BORNE 5", + "ref:EU:EVSE": "FRCPIE6557775", + "ref": "FRCPIE6557775", + "name": "SUPER GRANIER BORNE 5", + "capacity": "19", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.474615, + 43.298803 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agde", + "ref:EU:EVSE": "FRIONE46941", + "ref": "FRIONE46941", + "name": "Agde", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.474615, + 43.298803 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agde", + "ref:EU:EVSE": "FRIONE4694", + "ref": "FRIONE4694", + "name": "Agde", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.044664, + 48.087704 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DARNEY - Rue Stanislas - 150303 - CCS", + "ref:EU:EVSE": "FRS88E15030", + "ref": "FRS88E15030", + "name": "DARNEY - Rue Stanislas - 150303 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862462, + 43.987408 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 9", + "ref:EU:EVSE": "FRCPIE6729355", + "ref": "FRCPIE6729355", + "name": "SONEPAR LE PONTET 9", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.252347, + 48.70712 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PULNOY - PARKING ATELIER ARTISANAL - 186925", + "ref:EU:EVSE": "FRN54E18692", + "ref": "FRN54E18692", + "name": "PULNOY - PARKING ATELIER ARTISANAL - 186925", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.866943, + 47.024413 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR BEAUNE", + "ref:EU:EVSE": "FRCPIE6622335", + "ref": "FRCPIE6622335", + "name": "SONEPAR BEAUNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.866943, + 47.024413 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR BEAUNE", + "ref:EU:EVSE": "FRCPIE6622335", + "ref": "FRCPIE6622335", + "name": "SONEPAR BEAUNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.033437, + 43.14877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chaberte", + "ref:EU:EVSE": "FRIONE45180", + "ref": "FRIONE45180", + "name": "Chaberte", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.033437, + 43.14877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chaberte", + "ref:EU:EVSE": "FRIONE45180", + "ref": "FRIONE45180", + "name": "Chaberte", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.033437, + 43.14877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chaberte", + "ref:EU:EVSE": "FRIONE45180", + "ref": "FRIONE45180", + "name": "Chaberte", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.033437, + 43.14877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chaberte", + "ref:EU:EVSE": "FRIONE45180", + "ref": "FRIONE45180", + "name": "Chaberte", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.033437, + 43.14877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chaberte", + "ref:EU:EVSE": "FRIONE45180", + "ref": "FRIONE45180", + "name": "Chaberte", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.033437, + 43.14877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chaberte", + "ref:EU:EVSE": "FRIONE45180", + "ref": "FRIONE45180", + "name": "Chaberte", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.033437, + 43.14877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chaberte", + "ref:EU:EVSE": "FRIONE45180", + "ref": "FRIONE45180", + "name": "Chaberte", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.033437, + 43.14877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chaberte", + "ref:EU:EVSE": "FRIONE45180", + "ref": "FRIONE45180", + "name": "Chaberte", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.033437, + 43.14877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chaberte", + "ref:EU:EVSE": "FRIONE45180", + "ref": "FRIONE45180", + "name": "Chaberte", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.033437, + 43.14877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chaberte", + "ref:EU:EVSE": "FRIONE45181", + "ref": "FRIONE45181", + "name": "Chaberte", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.033437, + 43.14877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chaberte", + "ref:EU:EVSE": "FRIONE45181", + "ref": "FRIONE45181", + "name": "Chaberte", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.033437, + 43.14877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chaberte", + "ref:EU:EVSE": "FRIONE45181", + "ref": "FRIONE45181", + "name": "Chaberte", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.033437, + 43.14877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chaberte", + "ref:EU:EVSE": "FRIONE45181", + "ref": "FRIONE45181", + "name": "Chaberte", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.033437, + 43.14877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chaberte", + "ref:EU:EVSE": "FRIONE45181", + "ref": "FRIONE45181", + "name": "Chaberte", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.033437, + 43.14877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chaberte", + "ref:EU:EVSE": "FRIONE45181", + "ref": "FRIONE45181", + "name": "Chaberte", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.033437, + 43.14877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chaberte", + "ref:EU:EVSE": "FRIONE45181", + "ref": "FRIONE45181", + "name": "Chaberte", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.033437, + 43.14877 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chaberte", + "ref:EU:EVSE": "FRIONE4518", + "ref": "FRIONE4518", + "name": "Chaberte", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.986062, + 48.565925 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longvilliers", + "ref:EU:EVSE": "FRIONE43780", + "ref": "FRIONE43780", + "name": "Longvilliers", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.986062, + 48.565925 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longvilliers", + "ref:EU:EVSE": "FRIONE43780", + "ref": "FRIONE43780", + "name": "Longvilliers", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.986062, + 48.565925 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longvilliers", + "ref:EU:EVSE": "FRIONE43780", + "ref": "FRIONE43780", + "name": "Longvilliers", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.986062, + 48.565925 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longvilliers", + "ref:EU:EVSE": "FRIONE43780", + "ref": "FRIONE43780", + "name": "Longvilliers", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.986062, + 48.565925 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longvilliers", + "ref:EU:EVSE": "FRIONE43780", + "ref": "FRIONE43780", + "name": "Longvilliers", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.986062, + 48.565925 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longvilliers", + "ref:EU:EVSE": "FRIONE43780", + "ref": "FRIONE43780", + "name": "Longvilliers", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.986062, + 48.565925 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longvilliers", + "ref:EU:EVSE": "FRIONE43780", + "ref": "FRIONE43780", + "name": "Longvilliers", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.986062, + 48.565925 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longvilliers", + "ref:EU:EVSE": "FRIONE43780", + "ref": "FRIONE43780", + "name": "Longvilliers", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.986062, + 48.565925 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longvilliers", + "ref:EU:EVSE": "FRIONE4378", + "ref": "FRIONE4378", + "name": "Longvilliers", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.252347, + 48.70712 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PULNOY - PARKING ATELIER ARTISANAL - 186925", + "ref:EU:EVSE": "FRN54E18692", + "ref": "FRN54E18692", + "name": "PULNOY - PARKING ATELIER ARTISANAL - 186925", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862462, + 43.987408 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 9", + "ref:EU:EVSE": "FRCPIE6729355", + "ref": "FRCPIE6729355", + "name": "SONEPAR LE PONTET 9", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.044664, + 48.087704 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DARNEY - Rue Stanislas - 150303 - CCS", + "ref:EU:EVSE": "FRS88E15030", + "ref": "FRS88E15030", + "name": "DARNEY - Rue Stanislas - 150303 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862462, + 43.987408 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 9", + "ref:EU:EVSE": "FRCPIE6729345", + "ref": "FRCPIE6729345", + "name": "SONEPAR LE PONTET 9", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8991, + 48.2494 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TAINTRUX - Rue de l'épine - 162386", + "ref:EU:EVSE": "FRS88E16238", + "ref": "FRS88E16238", + "name": "TAINTRUX - Rue de l'épine - 162386", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-23", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8991, + 48.2494 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TAINTRUX - Rue de l'épine - 162386", + "ref:EU:EVSE": "FRS88E16238", + "ref": "FRS88E16238", + "name": "TAINTRUX - Rue de l'épine - 162386", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-23", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39821, + 43.440935 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U BBA BORNE 2", + "ref:EU:EVSE": "FRCPIE6535375", + "ref": "FRCPIE6535375", + "name": "SUPER U BBA BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39821, + 43.440935 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U BBA BORNE 2", + "ref:EU:EVSE": "FRCPIE6535375", + "ref": "FRCPIE6535375", + "name": "SUPER U BBA BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39821, + 43.440935 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U BBA BORNE 2", + "ref:EU:EVSE": "FRCPIE6535705", + "ref": "FRCPIE6535705", + "name": "SUPER U BBA BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39821, + 43.440935 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U BBA BORNE 2", + "ref:EU:EVSE": "FRCPIE6535705", + "ref": "FRCPIE6535705", + "name": "SUPER U BBA BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39821, + 43.440935 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U BBA BORNE 2", + "ref:EU:EVSE": "FRCPIE6564835", + "ref": "FRCPIE6564835", + "name": "SUPER U BBA BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39821, + 43.440935 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U BBA BORNE 2", + "ref:EU:EVSE": "FRCPIE6564835", + "ref": "FRCPIE6564835", + "name": "SUPER U BBA BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862979, + 43.987237 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 13", + "ref:EU:EVSE": "FRCPIE6729285", + "ref": "FRCPIE6729285", + "name": "SONEPAR LE PONTET 13", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862979, + 43.987237 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 13", + "ref:EU:EVSE": "FRCPIE6729285", + "ref": "FRCPIE6729285", + "name": "SONEPAR LE PONTET 13", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862979, + 43.987237 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 13", + "ref:EU:EVSE": "FRCPIE6729295", + "ref": "FRCPIE6729295", + "name": "SONEPAR LE PONTET 13", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862979, + 43.987237 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 13", + "ref:EU:EVSE": "FRCPIE6729295", + "ref": "FRCPIE6729295", + "name": "SONEPAR LE PONTET 13", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862979, + 43.987237 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 13", + "ref:EU:EVSE": "FRCPIE6729325", + "ref": "FRCPIE6729325", + "name": "SONEPAR LE PONTET 13", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862979, + 43.987237 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 13", + "ref:EU:EVSE": "FRCPIE6729325", + "ref": "FRCPIE6729325", + "name": "SONEPAR LE PONTET 13", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862979, + 43.987237 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 13", + "ref:EU:EVSE": "FRCPIE6729335", + "ref": "FRCPIE6729335", + "name": "SONEPAR LE PONTET 13", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862979, + 43.987237 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 13", + "ref:EU:EVSE": "FRCPIE6729335", + "ref": "FRCPIE6729335", + "name": "SONEPAR LE PONTET 13", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862979, + 43.987237 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 13", + "ref:EU:EVSE": "FRCPIE6730005", + "ref": "FRCPIE6730005", + "name": "SONEPAR LE PONTET 13", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862979, + 43.987237 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 13", + "ref:EU:EVSE": "FRCPIE6730005", + "ref": "FRCPIE6730005", + "name": "SONEPAR LE PONTET 13", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862979, + 43.987237 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 13", + "ref:EU:EVSE": "FRCPIE6730725", + "ref": "FRCPIE6730725", + "name": "SONEPAR LE PONTET 13", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862979, + 43.987237 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 13", + "ref:EU:EVSE": "FRCPIE6730725", + "ref": "FRCPIE6730725", + "name": "SONEPAR LE PONTET 13", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78046, + 48.0684 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMARCHE - 162018 - CCS", + "ref:EU:EVSE": "FRS88E16201", + "ref": "FRS88E16201", + "name": "LAMARCHE - 162018 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-23", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78046, + 48.0684 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMARCHE - 162018 - CCS", + "ref:EU:EVSE": "FRS88E16202", + "ref": "FRS88E16202", + "name": "LAMARCHE - 162018 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-23", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.82574, + 48.10823 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARTIGNY - 3 avenue de la gare - 150325 - CCS", + "ref:EU:EVSE": "FRS88E15032", + "ref": "FRS88E15032", + "name": "MARTIGNY - 3 avenue de la gare - 150325 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.82574, + 48.10823 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARTIGNY - 3 avenue de la gare - 150325 - CCS", + "ref:EU:EVSE": "FRS88E15032", + "ref": "FRS88E15032", + "name": "MARTIGNY - 3 avenue de la gare - 150325 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862462, + 43.987408 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 9", + "ref:EU:EVSE": "FRCPIE6531395", + "ref": "FRCPIE6531395", + "name": "SONEPAR LE PONTET 9", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862462, + 43.987408 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 9", + "ref:EU:EVSE": "FRCPIE6531395", + "ref": "FRCPIE6531395", + "name": "SONEPAR LE PONTET 9", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862462, + 43.987408 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 9", + "ref:EU:EVSE": "FRCPIE6729315", + "ref": "FRCPIE6729315", + "name": "SONEPAR LE PONTET 9", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862462, + 43.987408 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 9", + "ref:EU:EVSE": "FRCPIE6729315", + "ref": "FRCPIE6729315", + "name": "SONEPAR LE PONTET 9", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862462, + 43.987408 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE PONTET 9", + "ref:EU:EVSE": "FRCPIE6729345", + "ref": "FRCPIE6729345", + "name": "SONEPAR LE PONTET 9", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0139662, + 47.10072025 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PERRUSSON 1296", + "ref:EU:EVSE": "FRS37E129", + "ref": "FRS37E129", + "name": "PERRUSSON 1296", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401525, + 45.459204 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED ST-ETIENNE 1", + "ref:EU:EVSE": "FRCPIE6596825", + "ref": "FRCPIE6596825", + "name": "CGED ST-ETIENNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05837, + 48.326772 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Plouasne", + "ref:EU:EVSE": "FRIENE008801", + "ref": "FRIENE008801", + "name": "Plouasne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.791078, + 47.775214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TROO 4684", + "ref:EU:EVSE": "FRS41E468", + "ref": "FRS41E468", + "name": "TROO 4684", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.896907, + 47.982211 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONDOUBLEAU 4700-4701", + "ref:EU:EVSE": "FRS41E470", + "ref": "FRS41E470", + "name": "MONDOUBLEAU 4700-4701", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.864668, + 45.717133 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GVA VÉNISSIEUX AC2", + "ref:EU:EVSE": "FRCPIE6497765", + "ref": "FRCPIE6497765", + "name": "GVA VÉNISSIEUX AC2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.864668, + 45.717133 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GVA VÉNISSIEUX AC2", + "ref:EU:EVSE": "FRCPIE6497755", + "ref": "FRCPIE6497755", + "name": "GVA VÉNISSIEUX AC2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.864668, + 45.717133 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GVA VÉNISSIEUX AC2", + "ref:EU:EVSE": "FRCPIE6497755", + "ref": "FRCPIE6497755", + "name": "GVA VÉNISSIEUX AC2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.864668, + 45.717133 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GVA VÉNISSIEUX AC2", + "ref:EU:EVSE": "FRCPIE6495345", + "ref": "FRCPIE6495345", + "name": "GVA VÉNISSIEUX AC2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.425003, + 47.418349 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTRES 4692 - Rue de la Gare", + "ref:EU:EVSE": "FRS41E469", + "ref": "FRS41E469", + "name": "CONTRES 4692 - Rue de la Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.425003, + 47.418349 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTRES 4692 - Rue de la Gare", + "ref:EU:EVSE": "FRS41E469", + "ref": "FRS41E469", + "name": "CONTRES 4692 - Rue de la Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525134, + 47.413841 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SOING EN SOLOGNE 4690 - Rue de la Salle des Fêtes", + "ref:EU:EVSE": "FRS41E469", + "ref": "FRS41E469", + "name": "SOING EN SOLOGNE 4690 - Rue de la Salle des Fêtes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525134, + 47.413841 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SOING EN SOLOGNE 4690 - Rue de la Salle des Fêtes", + "ref:EU:EVSE": "FRS41E469", + "ref": "FRS41E469", + "name": "SOING EN SOLOGNE 4690 - Rue de la Salle des Fêtes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.791078, + 47.775214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TROO 4684", + "ref:EU:EVSE": "FRS41E468", + "ref": "FRS41E468", + "name": "TROO 4684", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.341651, + 47.448915 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FOUGERES SUR BIEVRE 17065 - Rue Aimable Quenioux", + "ref:EU:EVSE": "FRS41E1706", + "ref": "FRS41E1706", + "name": "FOUGERES SUR BIEVRE 17065 - Rue Aimable Quenioux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.885469, + 48.201157 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JANVILLE-EN-BEAUCE - Parking Bretonnerie - 130534", + "ref:EU:EVSE": "FRS28E13053", + "ref": "FRS28E13053", + "name": "JANVILLE-EN-BEAUCE - Parking Bretonnerie - 130534", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.070017, + 47.793571 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4682 - Route du Dr Faton", + "ref:EU:EVSE": "FRS41E468", + "ref": "FRS41E468", + "name": "VENDOME 4682 - Route du Dr Faton", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.070017, + 47.793571 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4682 - Route du Dr Faton", + "ref:EU:EVSE": "FRS41E468", + "ref": "FRS41E468", + "name": "VENDOME 4682 - Route du Dr Faton", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929588, + 47.901046 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPUISAY 4680 - Rue des Bleuets", + "ref:EU:EVSE": "FRS41E468", + "ref": "FRS41E468", + "name": "EPUISAY 4680 - Rue des Bleuets", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929588, + 47.901046 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPUISAY 4680 - Rue des Bleuets", + "ref:EU:EVSE": "FRS41E468", + "ref": "FRS41E468", + "name": "EPUISAY 4680 - Rue des Bleuets", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.070766, + 47.803382 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4678 - Square des Anciens d'Indochine", + "ref:EU:EVSE": "FRS41E467", + "ref": "FRS41E467", + "name": "VENDOME 4678 - Square des Anciens d'Indochine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.070766, + 47.803382 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4678 - Square des Anciens d'Indochine", + "ref:EU:EVSE": "FRS41E467", + "ref": "FRS41E467", + "name": "VENDOME 4678 - Square des Anciens d'Indochine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.085881, + 47.918855 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX CLERCS 4676 - Rue de l'Abreuvoir", + "ref:EU:EVSE": "FRS41E467", + "ref": "FRS41E467", + "name": "LA VILLE AUX CLERCS 4676 - Rue de l'Abreuvoir", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.085881, + 47.918855 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX CLERCS 4676 - Rue de l'Abreuvoir", + "ref:EU:EVSE": "FRS41E467", + "ref": "FRS41E467", + "name": "LA VILLE AUX CLERCS 4676 - Rue de l'Abreuvoir", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.896907, + 47.982211 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONDOUBLEAU 4700-4701", + "ref:EU:EVSE": "FRS41E470", + "ref": "FRS41E470", + "name": "MONDOUBLEAU 4700-4701", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.341651, + 47.448915 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FOUGERES SUR BIEVRE 17065 - Rue Aimable Quenioux", + "ref:EU:EVSE": "FRS41E1706", + "ref": "FRS41E1706", + "name": "FOUGERES SUR BIEVRE 17065 - Rue Aimable Quenioux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.038915, + 48.560028 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SENONCHES - Rue du four banal - 134263", + "ref:EU:EVSE": "FRS28E13426", + "ref": "FRS28E13426", + "name": "SENONCHES - Rue du four banal - 134263", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.378134, + 47.581612 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VINEUIL 4711 - Place Gaspard Imbert", + "ref:EU:EVSE": "FRS41E471", + "ref": "FRS41E471", + "name": "VINEUIL 4711 - Place Gaspard Imbert", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.150983, + 47.514688 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PIERREFITTE SUR SAULDRE 4719 - Rue des Fossés", + "ref:EU:EVSE": "FRS41E471", + "ref": "FRS41E471", + "name": "PIERREFITTE SUR SAULDRE 4719 - Rue des Fossés", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05053, + 47.42555 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SALBRIS 4717 - Place du 11 Novembre", + "ref:EU:EVSE": "FRS41E471", + "ref": "FRS41E471", + "name": "SALBRIS 4717 - Place du 11 Novembre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05053, + 47.42555 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SALBRIS 4717 - Place du 11 Novembre", + "ref:EU:EVSE": "FRS41E471", + "ref": "FRS41E471", + "name": "SALBRIS 4717 - Place du 11 Novembre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.124944, + 47.325755 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GEORGES SUR CHER 4715 - Place Bretonneau", + "ref:EU:EVSE": "FRS41E471", + "ref": "FRS41E471", + "name": "SAINT GEORGES SUR CHER 4715 - Place Bretonneau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.124944, + 47.325755 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GEORGES SUR CHER 4715 - Place Bretonneau", + "ref:EU:EVSE": "FRS41E471", + "ref": "FRS41E471", + "name": "SAINT GEORGES SUR CHER 4715 - Place Bretonneau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18419, + 47.343958 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTRICHARD VAL DE CHER (B1) 4713", + "ref:EU:EVSE": "FRS41E472", + "ref": "FRS41E472", + "name": "MONTRICHARD VAL DE CHER (B1) 4713", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18419, + 47.343958 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTRICHARD VAL DE CHER (B1) 4713", + "ref:EU:EVSE": "FRS41E472", + "ref": "FRS41E472", + "name": "MONTRICHARD VAL DE CHER (B1) 4713", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18419, + 47.343958 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTRICHARD VAL DE CHER (B1) 4713", + "ref:EU:EVSE": "FRS41E471", + "ref": "FRS41E471", + "name": "MONTRICHARD VAL DE CHER (B1) 4713", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18419, + 47.343958 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTRICHARD VAL DE CHER (B1) 4713", + "ref:EU:EVSE": "FRS41E471", + "ref": "FRS41E471", + "name": "MONTRICHARD VAL DE CHER (B1) 4713", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.378134, + 47.581612 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VINEUIL 4711 - Place Gaspard Imbert", + "ref:EU:EVSE": "FRS41E471", + "ref": "FRS41E471", + "name": "VINEUIL 4711 - Place Gaspard Imbert", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.862056, + 47.752657 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTOIRE SUR LE LOIR 4704 - Place Clémenceau", + "ref:EU:EVSE": "FRS41E470", + "ref": "FRS41E470", + "name": "MONTOIRE SUR LE LOIR 4704 - Place Clémenceau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.608919, + 47.411859 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MUR DE SOLOGNE 4709 - Place de la Poste", + "ref:EU:EVSE": "FRS41E471", + "ref": "FRS41E471", + "name": "MUR DE SOLOGNE 4709 - Place de la Poste", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.608919, + 47.411859 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MUR DE SOLOGNE 4709 - Place de la Poste", + "ref:EU:EVSE": "FRS41E470", + "ref": "FRS41E470", + "name": "MUR DE SOLOGNE 4709 - Place de la Poste", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.362749, + 47.744154 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAVES 4706 - Rue du Cèdre", + "ref:EU:EVSE": "FRS41E470", + "ref": "FRS41E470", + "name": "MAVES 4706 - Rue du Cèdre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.362749, + 47.744154 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAVES 4706 - Rue du Cèdre", + "ref:EU:EVSE": "FRS41E470", + "ref": "FRS41E470", + "name": "MAVES 4706 - Rue du Cèdre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.679052, + 49.904515 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Nesle-Normandeuse", + "ref:EU:EVSE": "FRIENE007202", + "ref": "FRIENE007202", + "name": "Nesle-Normandeuse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.679052, + 49.904515 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Nesle-Normandeuse", + "ref:EU:EVSE": "FRIENE007202", + "ref": "FRIENE007202", + "name": "Nesle-Normandeuse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.679052, + 49.904515 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Nesle-Normandeuse", + "ref:EU:EVSE": "FRIENE007201", + "ref": "FRIENE007201", + "name": "Nesle-Normandeuse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.679052, + 49.904515 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Nesle-Normandeuse", + "ref:EU:EVSE": "FRIENE007201", + "ref": "FRIENE007201", + "name": "Nesle-Normandeuse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.862056, + 47.752657 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTOIRE SUR LE LOIR 4704 - Place Clémenceau", + "ref:EU:EVSE": "FRS41E470", + "ref": "FRS41E470", + "name": "MONTOIRE SUR LE LOIR 4704 - Place Clémenceau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0739, + 47.7913 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4674 - Geoffrey Martel", + "ref:EU:EVSE": "FRS41E467", + "ref": "FRS41E467", + "name": "VENDOME 4674 - Geoffrey Martel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0739, + 47.7913 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4674 - Geoffrey Martel", + "ref:EU:EVSE": "FRS41E467", + "ref": "FRS41E467", + "name": "VENDOME 4674 - Geoffrey Martel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.809068, + 47.880445 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAVIGNY SUR BRAYE - Avenue de la Braye - 153650", + "ref:EU:EVSE": "FRS41E15365", + "ref": "FRS41E15365", + "name": "SAVIGNY SUR BRAYE - Avenue de la Braye - 153650", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.686392, + 48.748002 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Brumath Bernolsheim", + "ref:EU:EVSE": "FRIONE46310", + "ref": "FRIONE46310", + "name": "Brumath Bernolsheim", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.740861, + 47.358186 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROMORANTIN LANTHENAY 4547", + "ref:EU:EVSE": "FRS41E454", + "ref": "FRS41E454", + "name": "ROMORANTIN LANTHENAY 4547", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.740861, + 47.358186 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROMORANTIN LANTHENAY 4547", + "ref:EU:EVSE": "FRS41E454", + "ref": "FRS41E454", + "name": "ROMORANTIN LANTHENAY 4547", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.369809, + 47.567044 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GERVAIS LA FORET 4543 - Rue du clouseaux", + "ref:EU:EVSE": "FRS41E454", + "ref": "FRS41E454", + "name": "SAINT GERVAIS LA FORET 4543 - Rue du clouseaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.369809, + 47.567044 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GERVAIS LA FORET 4543 - Rue du clouseaux", + "ref:EU:EVSE": "FRS41E454", + "ref": "FRS41E454", + "name": "SAINT GERVAIS LA FORET 4543 - Rue du clouseaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.338914, + 47.587974 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4539 - Quai Saint Jean", + "ref:EU:EVSE": "FRS41E454", + "ref": "FRS41E454", + "name": "BLOIS 4539 - Quai Saint Jean", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.338914, + 47.587974 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4539 - Quai Saint Jean", + "ref:EU:EVSE": "FRS41E453", + "ref": "FRS41E453", + "name": "BLOIS 4539 - Quai Saint Jean", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34025, + 47.588846 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4531 - Mail Pierre Sudreau", + "ref:EU:EVSE": "FRS41E8823", + "ref": "FRS41E8823", + "name": "BLOIS 4531 - Mail Pierre Sudreau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34025, + 47.588846 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4531 - Mail Pierre Sudreau", + "ref:EU:EVSE": "FRS41E8822", + "ref": "FRS41E8822", + "name": "BLOIS 4531 - Mail Pierre Sudreau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.686392, + 48.748002 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Brumath Bernolsheim", + "ref:EU:EVSE": "FRIONE4631", + "ref": "FRIONE4631", + "name": "Brumath Bernolsheim", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.686392, + 48.748002 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Brumath Bernolsheim", + "ref:EU:EVSE": "FRIONE46310", + "ref": "FRIONE46310", + "name": "Brumath Bernolsheim", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.809068, + 47.880445 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAVIGNY SUR BRAYE - Avenue de la Braye - 153650", + "ref:EU:EVSE": "FRS41E15365", + "ref": "FRS41E15365", + "name": "SAVIGNY SUR BRAYE - Avenue de la Braye - 153650", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.686392, + 48.748002 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Brumath Bernolsheim", + "ref:EU:EVSE": "FRIONE46310", + "ref": "FRIONE46310", + "name": "Brumath Bernolsheim", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.686392, + 48.748002 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Brumath Bernolsheim", + "ref:EU:EVSE": "FRIONE46310", + "ref": "FRIONE46310", + "name": "Brumath Bernolsheim", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.686392, + 48.748002 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Brumath Bernolsheim", + "ref:EU:EVSE": "FRIONE46310", + "ref": "FRIONE46310", + "name": "Brumath Bernolsheim", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.686392, + 48.748002 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Brumath Bernolsheim", + "ref:EU:EVSE": "FRIONE46310", + "ref": "FRIONE46310", + "name": "Brumath Bernolsheim", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.490553, + 47.23129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MENETOU-SALON - Place de la Mairie - 205372", + "ref:EU:EVSE": "FRS18E20537", + "ref": "FRS18E20537", + "name": "MENETOU-SALON - Place de la Mairie - 205372", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.359058, + 47.608669 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAUSSEE ST VICTOR 4510 - Rue de Montprofond", + "ref:EU:EVSE": "FRS41E451", + "ref": "FRS41E451", + "name": "LA CHAUSSEE ST VICTOR 4510 - Rue de Montprofond", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.359058, + 47.608669 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAUSSEE ST VICTOR 4510 - Rue de Montprofond", + "ref:EU:EVSE": "FRS41E451", + "ref": "FRS41E451", + "name": "LA CHAUSSEE ST VICTOR 4510 - Rue de Montprofond", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.553296, + 47.016191 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PORTS 4506 - Place Romain Rideau", + "ref:EU:EVSE": "FRS37E450", + "ref": "FRS37E450", + "name": "PORTS 4506 - Place Romain Rideau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.553296, + 47.016191 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PORTS 4506 - Place Romain Rideau", + "ref:EU:EVSE": "FRS37E450", + "ref": "FRS37E450", + "name": "PORTS 4506 - Place Romain Rideau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.743234, + 47.359277 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROMORANTIN LANTHENAY 4549 - Place de la paix", + "ref:EU:EVSE": "FRS41E454", + "ref": "FRS41E454", + "name": "ROMORANTIN LANTHENAY 4549 - Place de la paix", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.743234, + 47.359277 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROMORANTIN LANTHENAY 4549 - Place de la paix", + "ref:EU:EVSE": "FRS41E455", + "ref": "FRS41E455", + "name": "ROMORANTIN LANTHENAY 4549 - Place de la paix", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033293, + 47.533779 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOUAN LE FUZELIER 4571 - Avenue de Toulouse", + "ref:EU:EVSE": "FRS41E457", + "ref": "FRS41E457", + "name": "NOUAN LE FUZELIER 4571 - Avenue de Toulouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033293, + 47.533779 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOUAN LE FUZELIER 4571 - Avenue de Toulouse", + "ref:EU:EVSE": "FRS41E457", + "ref": "FRS41E457", + "name": "NOUAN LE FUZELIER 4571 - Avenue de Toulouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.995529, + 47.805809 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLIERS SUR LOIR 4664 - Avenue du Petit Thouars", + "ref:EU:EVSE": "FRS41E466", + "ref": "FRS41E466", + "name": "VILLIERS SUR LOIR 4664 - Avenue du Petit Thouars", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.995529, + 47.805809 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLIERS SUR LOIR 4664 - Avenue du Petit Thouars", + "ref:EU:EVSE": "FRS41E466", + "ref": "FRS41E466", + "name": "VILLIERS SUR LOIR 4664 - Avenue du Petit Thouars", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.831243, + 48.313407 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOGENT-LE-ROTOU - Rue du Commandant Charcot-138014", + "ref:EU:EVSE": "FRS28E13801", + "ref": "FRS28E13801", + "name": "NOGENT-LE-ROTOU - Rue du Commandant Charcot-138014", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.605512, + 47.715684 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT NOUAN 4615 - Rue des écoles", + "ref:EU:EVSE": "FRS41E461", + "ref": "FRS41E461", + "name": "SAINT LAURENT NOUAN 4615 - Rue des écoles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.605512, + 47.715684 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT NOUAN 4615 - Rue des écoles", + "ref:EU:EVSE": "FRS41E461", + "ref": "FRS41E461", + "name": "SAINT LAURENT NOUAN 4615 - Rue des écoles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.560186, + 47.685381 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT NOUAN 4613 - Place Saint-Aignan", + "ref:EU:EVSE": "FRS41E461", + "ref": "FRS41E461", + "name": "SAINT LAURENT NOUAN 4613 - Place Saint-Aignan", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.560186, + 47.685381 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT NOUAN 4613 - Place Saint-Aignan", + "ref:EU:EVSE": "FRS41E461", + "ref": "FRS41E461", + "name": "SAINT LAURENT NOUAN 4613 - Place Saint-Aignan", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.612878, + 47.71724 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT NOUAN 4605 - Place du Soleil d'Or", + "ref:EU:EVSE": "FRS41E460", + "ref": "FRS41E460", + "name": "SAINT LAURENT NOUAN 4605 - Place du Soleil d'Or", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.612878, + 47.71724 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT NOUAN 4605 - Place du Soleil d'Or", + "ref:EU:EVSE": "FRS41E460", + "ref": "FRS41E460", + "name": "SAINT LAURENT NOUAN 4605 - Place du Soleil d'Or", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.74353, + 47.363383 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Romorantin 24592 - Rue de Sabard", + "ref:EU:EVSE": "FRS41E2489", + "ref": "FRS41E2489", + "name": "Romorantin 24592 - Rue de Sabard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.74353, + 47.363383 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Romorantin 24592 - Rue de Sabard", + "ref:EU:EVSE": "FRS41E2459", + "ref": "FRS41E2459", + "name": "Romorantin 24592 - Rue de Sabard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.744565, + 47.356158 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROMORANTIN LANTHENAY 4586", + "ref:EU:EVSE": "FRS41E458", + "ref": "FRS41E458", + "name": "ROMORANTIN LANTHENAY 4586", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.744565, + 47.356158 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROMORANTIN LANTHENAY 4586", + "ref:EU:EVSE": "FRS41E458", + "ref": "FRS41E458", + "name": "ROMORANTIN LANTHENAY 4586", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.03553, + 47.31321 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THEILLAY 4582 - Rue de la Pierre", + "ref:EU:EVSE": "FRS41E458", + "ref": "FRS41E458", + "name": "THEILLAY 4582 - Rue de la Pierre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.03553, + 47.31321 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THEILLAY 4582 - Rue de la Pierre", + "ref:EU:EVSE": "FRS41E458", + "ref": "FRS41E458", + "name": "THEILLAY 4582 - Rue de la Pierre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.127244, + 49.215278 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Méru Amblainville", + "ref:EU:EVSE": "FRIENE003502", + "ref": "FRIENE003502", + "name": "Méru Amblainville", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.127244, + 49.215278 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Méru Amblainville", + "ref:EU:EVSE": "FRIENE003502", + "ref": "FRIENE003502", + "name": "Méru Amblainville", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.127244, + 49.215278 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Méru Amblainville", + "ref:EU:EVSE": "FRIENE003501", + "ref": "FRIENE003501", + "name": "Méru Amblainville", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.127244, + 49.215278 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Méru Amblainville", + "ref:EU:EVSE": "FRIENE003501", + "ref": "FRIENE003501", + "name": "Méru Amblainville", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.150983, + 47.514688 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PIERREFITTE SUR SAULDRE 4719 - Rue des Fossés", + "ref:EU:EVSE": "FRS41E472", + "ref": "FRS41E472", + "name": "PIERREFITTE SUR SAULDRE 4719 - Rue des Fossés", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.284024, + 47.634797 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FOSSE 4816 - Rue de Vendome", + "ref:EU:EVSE": "FRS41E481", + "ref": "FRS41E481", + "name": "FOSSE 4816 - Rue de Vendome", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.418747, + 43.304831 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED LONS", + "ref:EU:EVSE": "FRCPIE6632045", + "ref": "FRCPIE6632045", + "name": "CGED CGED LONS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.669796, + 47.321429 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PRUNIERS EN SOLOGNE 5013 - Salle des Fêtes", + "ref:EU:EVSE": "FRS41E501", + "ref": "FRS41E501", + "name": "PRUNIERS EN SOLOGNE 5013 - Salle des Fêtes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.703626, + 44.004071 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Nord", + "ref:EU:EVSE": "FRIONE40250", + "ref": "FRIONE40250", + "name": "Tavel Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.796718, + 45.775344 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GVA LYON 9 ABB", + "ref:EU:EVSE": "FRCPIE6501945", + "ref": "FRCPIE6501945", + "name": "GVA LYON 9 ABB", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.796718, + 45.775344 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GVA LYON 9 ABB", + "ref:EU:EVSE": "FRCPIE6497835", + "ref": "FRCPIE6497835", + "name": "GVA LYON 9 ABB", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.796718, + 45.775344 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GVA LYON 9 ABB", + "ref:EU:EVSE": "FRCPIE6497835", + "ref": "FRCPIE6497835", + "name": "GVA LYON 9 ABB", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.929976, + 45.673865 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mouxy", + "ref:EU:EVSE": "FRIONE4093", + "ref": "FRIONE4093", + "name": "Mouxy", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.929976, + 45.673865 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mouxy", + "ref:EU:EVSE": "FRIONE40930", + "ref": "FRIONE40930", + "name": "Mouxy", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.929976, + 45.673865 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mouxy", + "ref:EU:EVSE": "FRIONE40930", + "ref": "FRIONE40930", + "name": "Mouxy", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.929976, + 45.673865 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mouxy", + "ref:EU:EVSE": "FRIONE40930", + "ref": "FRIONE40930", + "name": "Mouxy", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.929976, + 45.673865 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mouxy", + "ref:EU:EVSE": "FRIONE40930", + "ref": "FRIONE40930", + "name": "Mouxy", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.669796, + 47.321429 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PRUNIERS EN SOLOGNE 5013 - Salle des Fêtes", + "ref:EU:EVSE": "FRS41E501", + "ref": "FRS41E501", + "name": "PRUNIERS EN SOLOGNE 5013 - Salle des Fêtes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.703626, + 44.004071 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Nord", + "ref:EU:EVSE": "FRIONE40250", + "ref": "FRIONE40250", + "name": "Tavel Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.740681, + 45.70124 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MEHARI COR BORNE SE", + "ref:EU:EVSE": "FRCPIE6495255", + "ref": "FRCPIE6495255", + "name": "MEHARI COR BORNE SE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.400757, + 47.276675 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOYERS SUR CHER 4999 - Place des Guerriers", + "ref:EU:EVSE": "FRS41E500", + "ref": "FRS41E500", + "name": "NOYERS SUR CHER 4999 - Place des Guerriers", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.400757, + 47.276675 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOYERS SUR CHER 4999 - Place des Guerriers", + "ref:EU:EVSE": "FRS41E499", + "ref": "FRS41E499", + "name": "NOYERS SUR CHER 4999 - Place des Guerriers", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861458, + 47.751579 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTOIRE SUR LE LOIR 4931 - Rue Marecot", + "ref:EU:EVSE": "FRS41E493", + "ref": "FRS41E493", + "name": "MONTOIRE SUR LE LOIR 4931 - Rue Marecot", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861458, + 47.751579 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTOIRE SUR LE LOIR 4931 - Rue Marecot", + "ref:EU:EVSE": "FRS41E493", + "ref": "FRS41E493", + "name": "MONTOIRE SUR LE LOIR 4931 - Rue Marecot", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68782, + 47.75244 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COUTURE SUR LOIR 4929-4930", + "ref:EU:EVSE": "FRS41E493", + "ref": "FRS41E493", + "name": "COUTURE SUR LOIR 4929-4930", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68782, + 47.75244 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COUTURE SUR LOIR 4929-4930", + "ref:EU:EVSE": "FRS41E492", + "ref": "FRS41E492", + "name": "COUTURE SUR LOIR 4929-4930", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.416839, + 47.613725 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CLAUDE DE DIRAY 4922", + "ref:EU:EVSE": "FRS41E492", + "ref": "FRS41E492", + "name": "SAINT CLAUDE DE DIRAY 4922", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.416839, + 47.613725 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CLAUDE DE DIRAY 4922", + "ref:EU:EVSE": "FRS41E492", + "ref": "FRS41E492", + "name": "SAINT CLAUDE DE DIRAY 4922", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.703626, + 44.004071 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Nord", + "ref:EU:EVSE": "FRIONE40250", + "ref": "FRIONE40250", + "name": "Tavel Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.703626, + 44.004071 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Nord", + "ref:EU:EVSE": "FRIONE40250", + "ref": "FRIONE40250", + "name": "Tavel Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.284024, + 47.634797 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FOSSE 4816 - Rue de Vendome", + "ref:EU:EVSE": "FRS41E481", + "ref": "FRS41E481", + "name": "FOSSE 4816 - Rue de Vendome", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.395618, + 47.033837 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURCOUE 5206 - Rue de Richelieu", + "ref:EU:EVSE": "FRS37E520", + "ref": "FRS37E520", + "name": "COURCOUE 5206 - Rue de Richelieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.001365, + 46.118881 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CHATILLON CHARLES RIVER 2", + "ref:EU:EVSE": "FRCPIE6675745", + "ref": "FRCPIE6675745", + "name": "CHATILLON CHARLES RIVER 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26932, + 43.618714 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WELDOM CASTRES BORNE 2", + "ref:EU:EVSE": "FRCPIE6609805", + "ref": "FRCPIE6609805", + "name": "WELDOM CASTRES BORNE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26932, + 43.618714 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WELDOM CASTRES BORNE 2", + "ref:EU:EVSE": "FRCPIE6609805", + "ref": "FRCPIE6609805", + "name": "WELDOM CASTRES BORNE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.685096, + 45.214781 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE VINOUX", + "ref:EU:EVSE": "FRCPIE6635955", + "ref": "FRCPIE6635955", + "name": "SONEPAR LE VINOUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.685096, + 45.214781 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LE VINOUX", + "ref:EU:EVSE": "FRCPIE6635955", + "ref": "FRCPIE6635955", + "name": "SONEPAR LE VINOUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298291, + 48.793804 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SCI FONTENAY BORNE 1", + "ref:EU:EVSE": "FRCPIE6720865", + "ref": "FRCPIE6720865", + "name": "SCI FONTENAY BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298291, + 48.793804 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SCI FONTENAY BORNE 1", + "ref:EU:EVSE": "FRCPIE6720865", + "ref": "FRCPIE6720865", + "name": "SCI FONTENAY BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.788014, + 47.024564 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CUSSAY 5207 - Place du 8 Mai", + "ref:EU:EVSE": "FRS37E520", + "ref": "FRS37E520", + "name": "CUSSAY 5207 - Place du 8 Mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.788014, + 47.024564 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CUSSAY 5207 - Place du 8 Mai", + "ref:EU:EVSE": "FRS37E520", + "ref": "FRS37E520", + "name": "CUSSAY 5207 - Place du 8 Mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.395618, + 47.033837 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURCOUE 5206 - Rue de Richelieu", + "ref:EU:EVSE": "FRS37E520", + "ref": "FRS37E520", + "name": "COURCOUE 5206 - Rue de Richelieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.703626, + 44.004071 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Nord", + "ref:EU:EVSE": "FRIONE4025", + "ref": "FRIONE4025", + "name": "Tavel Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.330665, + 48.112966 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARBOUE - Avenue Aristide Briand - 134835", + "ref:EU:EVSE": "FRS28E13483", + "ref": "FRS28E13483", + "name": "MARBOUE - Avenue Aristide Briand - 134835", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.578366, + 48.589346 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAINTENON - Parking rue D'Harleville - 128960", + "ref:EU:EVSE": "FRS28E12896", + "ref": "FRS28E12896", + "name": "MAINTENON - Parking rue D'Harleville - 128960", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.793041, + 45.774399 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GVA ÉCULLY ABB", + "ref:EU:EVSE": "FRCPIE6505435", + "ref": "FRCPIE6505435", + "name": "GVA ÉCULLY ABB", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.828502, + 47.282663 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LANGON 5162 - Route de Mennetou-Sur-Cher", + "ref:EU:EVSE": "FRS41E516", + "ref": "FRS41E516", + "name": "LANGON 5162 - Route de Mennetou-Sur-Cher", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.828502, + 47.282663 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LANGON 5162 - Route de Mennetou-Sur-Cher", + "ref:EU:EVSE": "FRS41E516", + "ref": "FRS41E516", + "name": "LANGON 5162 - Route de Mennetou-Sur-Cher", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.762513, + 47.327701 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROMORANTIN LANTHENAY 5150", + "ref:EU:EVSE": "FRS41E515", + "ref": "FRS41E515", + "name": "ROMORANTIN LANTHENAY 5150", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.762513, + 47.327701 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROMORANTIN LANTHENAY 5150", + "ref:EU:EVSE": "FRS41E515", + "ref": "FRS41E515", + "name": "ROMORANTIN LANTHENAY 5150", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.510935, + 47.341249 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLANDRY 5060 - Parking du potager", + "ref:EU:EVSE": "FRS37E520", + "ref": "FRS37E520", + "name": "VILLANDRY 5060 - Parking du potager", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.510935, + 47.341249 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLANDRY 5060 - Parking du potager", + "ref:EU:EVSE": "FRS37E506", + "ref": "FRS37E506", + "name": "VILLANDRY 5060 - Parking du potager", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.060181, + 47.794548 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4919 - Rue des Etats-unis", + "ref:EU:EVSE": "FRS41E492", + "ref": "FRS41E492", + "name": "VENDOME 4919 - Rue des Etats-unis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.060181, + 47.794548 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4919 - Rue des Etats-unis", + "ref:EU:EVSE": "FRS41E491", + "ref": "FRS41E491", + "name": "VENDOME 4919 - Rue des Etats-unis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01733, + 47.68865 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AMAND LONGPRE 4911 - Place du 11 Out 1944", + "ref:EU:EVSE": "FRS41E491", + "ref": "FRS41E491", + "name": "SAINT AMAND LONGPRE 4911 - Place du 11 Out 1944", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.901331, + 48.611702 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA FERTE-VIDAME - Place de la Mairie - 128756", + "ref:EU:EVSE": "FRS28E12875", + "ref": "FRS28E12875", + "name": "LA FERTE-VIDAME - Place de la Mairie - 128756", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.503833, + 49.005955 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CHS1 BORNE 3", + "ref:EU:EVSE": "FRCPIE6740985", + "ref": "FRCPIE6740985", + "name": "CHS1 BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.848995, + 47.5426 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA FERTE BEAUHARNAIS 4727", + "ref:EU:EVSE": "FRS41E472", + "ref": "FRS41E472", + "name": "LA FERTE BEAUHARNAIS 4727", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.848995, + 47.5426 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA FERTE BEAUHARNAIS 4727", + "ref:EU:EVSE": "FRS41E472", + "ref": "FRS41E472", + "name": "LA FERTE BEAUHARNAIS 4727", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.456518, + 42.742776 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MAIRIE SMDL HOTEL DE VILLE", + "ref:EU:EVSE": "FRCPIE6664415", + "ref": "FRCPIE6664415", + "name": "MAIRIE SMDL HOTEL DE VILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.456518, + 42.742776 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MAIRIE SMDL HOTEL DE VILLE", + "ref:EU:EVSE": "FRCPIE6664415", + "ref": "FRCPIE6664415", + "name": "MAIRIE SMDL HOTEL DE VILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.415112, + 47.89923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CLOSEAU1 BORNE 2", + "ref:EU:EVSE": "FRCPIE6752305", + "ref": "FRCPIE6752305", + "name": "CLOSEAU1 BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.415112, + 47.89923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CLOSEAU1 BORNE 2", + "ref:EU:EVSE": "FRCPIE6752305", + "ref": "FRCPIE6752305", + "name": "CLOSEAU1 BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.415112, + 47.89923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CLOSEAU1 BORNE 2", + "ref:EU:EVSE": "FRCPIE6752265", + "ref": "FRCPIE6752265", + "name": "CLOSEAU1 BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.415112, + 47.89923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CLOSEAU1 BORNE 2", + "ref:EU:EVSE": "FRCPIE6752265", + "ref": "FRCPIE6752265", + "name": "CLOSEAU1 BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.286574, + 47.395095 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVRILLE LES PONCEAUX 4747 - Rue basse", + "ref:EU:EVSE": "FRS37E474", + "ref": "FRS37E474", + "name": "AVRILLE LES PONCEAUX 4747 - Rue basse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01733, + 47.68865 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AMAND LONGPRE 4911 - Place du 11 Out 1944", + "ref:EU:EVSE": "FRS41E491", + "ref": "FRS41E491", + "name": "SAINT AMAND LONGPRE 4911 - Place du 11 Out 1944", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.286574, + 47.395095 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVRILLE LES PONCEAUX 4747 - Rue basse", + "ref:EU:EVSE": "FRS37E474", + "ref": "FRS37E474", + "name": "AVRILLE LES PONCEAUX 4747 - Rue basse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.057401, + 47.806584 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4745 - AVENUE JEAN MOULIN", + "ref:EU:EVSE": "FRS41E474", + "ref": "FRS41E474", + "name": "VENDOME 4745 - AVENUE JEAN MOULIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.057401, + 47.806584 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4745 - AVENUE JEAN MOULIN", + "ref:EU:EVSE": "FRS41E474", + "ref": "FRS41E474", + "name": "VENDOME 4745 - AVENUE JEAN MOULIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.299326, + 47.252928 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RIGNY USSE 4741 - Chemin du pont Félicie", + "ref:EU:EVSE": "FRS37E474", + "ref": "FRS37E474", + "name": "RIGNY USSE 4741 - Chemin du pont Félicie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.299326, + 47.252928 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RIGNY USSE 4741 - Chemin du pont Félicie", + "ref:EU:EVSE": "FRS37E474", + "ref": "FRS37E474", + "name": "RIGNY USSE 4741 - Chemin du pont Félicie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.457308, + 47.59298 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HUISSEAU SUR COSSON 4739 - Champs de Ligny", + "ref:EU:EVSE": "FRS41E474", + "ref": "FRS41E474", + "name": "HUISSEAU SUR COSSON 4739 - Champs de Ligny", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.457308, + 47.59298 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HUISSEAU SUR COSSON 4739 - Champs de Ligny", + "ref:EU:EVSE": "FRS41E473", + "ref": "FRS41E473", + "name": "HUISSEAU SUR COSSON 4739 - Champs de Ligny", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.658134, + 47.590104 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DHUIZON - Rue de la ferte st cyr - 167439", + "ref:EU:EVSE": "FRS41E16744", + "ref": "FRS41E16744", + "name": "DHUIZON - Rue de la ferte st cyr - 167439", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.658134, + 47.590104 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DHUIZON - Rue de la ferte st cyr - 167439", + "ref:EU:EVSE": "FRS41E16743", + "ref": "FRS41E16743", + "name": "DHUIZON - Rue de la ferte st cyr - 167439", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.503833, + 49.005955 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CHS1 BORNE 3", + "ref:EU:EVSE": "FRCPIE6740985", + "ref": "FRCPIE6740985", + "name": "CHS1 BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.503833, + 49.005955 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CHS1 BORNE 3", + "ref:EU:EVSE": "FRCPIE6741025", + "ref": "FRCPIE6741025", + "name": "CHS1 BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.503833, + 49.005955 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CHS1 BORNE 3", + "ref:EU:EVSE": "FRCPIE6741025", + "ref": "FRCPIE6741025", + "name": "CHS1 BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.503833, + 49.005955 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CHS1 BORNE 3", + "ref:EU:EVSE": "FRCPIE6741095", + "ref": "FRCPIE6741095", + "name": "CHS1 BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2858, + 48.7998 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VENISSIEUX", + "ref:EU:EVSE": "FRCPIE6745105", + "ref": "FRCPIE6745105", + "name": "SONEPAR VENISSIEUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2858, + 48.7998 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VENISSIEUX", + "ref:EU:EVSE": "FRCPIE6745105", + "ref": "FRCPIE6745105", + "name": "SONEPAR VENISSIEUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.95397, + 47.431032 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAZELLES NEGRON 4899 - Place des patis", + "ref:EU:EVSE": "FRS37E490", + "ref": "FRS37E490", + "name": "NAZELLES NEGRON 4899 - Place des patis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.95397, + 47.431032 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAZELLES NEGRON 4899 - Place des patis", + "ref:EU:EVSE": "FRS37E489", + "ref": "FRS37E489", + "name": "NAZELLES NEGRON 4899 - Place des patis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.25007, + 47.52429 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VALLOIRE SUR CISSE 4884 - Route de la Champagne", + "ref:EU:EVSE": "FRS41E488", + "ref": "FRS41E488", + "name": "VALLOIRE SUR CISSE 4884 - Route de la Champagne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.25007, + 47.52429 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VALLOIRE SUR CISSE 4884 - Route de la Champagne", + "ref:EU:EVSE": "FRS41E488", + "ref": "FRS41E488", + "name": "VALLOIRE SUR CISSE 4884 - Route de la Champagne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.173305, + 47.49941 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEUZAIN 4880 - Ruelle des Planches", + "ref:EU:EVSE": "FRS41E488", + "ref": "FRS41E488", + "name": "VEUZAIN 4880 - Ruelle des Planches", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.173305, + 47.49941 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEUZAIN 4880 - Ruelle des Planches", + "ref:EU:EVSE": "FRS41E488", + "ref": "FRS41E488", + "name": "VEUZAIN 4880 - Ruelle des Planches", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.503619, + 49.006164 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CHS1 BORNE 4", + "ref:EU:EVSE": "FRCPIE6741035", + "ref": "FRCPIE6741035", + "name": "CHS1 BORNE 4", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.503619, + 49.006164 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CHS1 BORNE 4", + "ref:EU:EVSE": "FRCPIE6741035", + "ref": "FRCPIE6741035", + "name": "CHS1 BORNE 4", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.171846, + 47.501399 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEUZAIN 4866 - Rue de l'Ecrevissière", + "ref:EU:EVSE": "FRS41E486", + "ref": "FRS41E486", + "name": "VEUZAIN 4866 - Rue de l'Ecrevissière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.171846, + 47.501399 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEUZAIN 4866 - Rue de l'Ecrevissière", + "ref:EU:EVSE": "FRS41E486", + "ref": "FRS41E486", + "name": "VEUZAIN 4866 - Rue de l'Ecrevissière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.222464, + 47.248199 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE SUR LOIRE 4864 - Place Albert Ruell", + "ref:EU:EVSE": "FRS37E486", + "ref": "FRS37E486", + "name": "LA CHAPELLE SUR LOIRE 4864 - Place Albert Ruell", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.222464, + 47.248199 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE SUR LOIRE 4864 - Place Albert Ruell", + "ref:EU:EVSE": "FRS37E486", + "ref": "FRS37E486", + "name": "LA CHAPELLE SUR LOIRE 4864 - Place Albert Ruell", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.390391, + 47.276707 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOYERS SUR CHER 4843 - Rue Saint Lazare", + "ref:EU:EVSE": "FRS41E484", + "ref": "FRS41E484", + "name": "NOYERS SUR CHER 4843 - Rue Saint Lazare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.390391, + 47.276707 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOYERS SUR CHER 4843 - Rue Saint Lazare", + "ref:EU:EVSE": "FRS41E484", + "ref": "FRS41E484", + "name": "NOYERS SUR CHER 4843 - Rue Saint Lazare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.474702, + 43.640079 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CCF TOULOUSE", + "ref:EU:EVSE": "FRCPIE6744725", + "ref": "FRCPIE6744725", + "name": "SONEPAR CCF TOULOUSE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.474702, + 43.640079 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CCF TOULOUSE", + "ref:EU:EVSE": "FRCPIE6744725", + "ref": "FRCPIE6744725", + "name": "SONEPAR CCF TOULOUSE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.503833, + 49.005955 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CHS1 BORNE 3", + "ref:EU:EVSE": "FRCPIE6741095", + "ref": "FRCPIE6741095", + "name": "CHS1 BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.244902, + 47.1648 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHINON 5656 - Place Jeanne d'arc", + "ref:EU:EVSE": "FRS37E565", + "ref": "FRS37E565", + "name": "CHINON 5656 - Place Jeanne d'arc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.244902, + 47.1648 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHINON 5656 - Place Jeanne d'arc", + "ref:EU:EVSE": "FRS37E450", + "ref": "FRS37E450", + "name": "CHINON 5656 - Place Jeanne d'arc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.908075, + 47.509629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUILLE LE LIERRE 4503 - Place de la gare", + "ref:EU:EVSE": "FRS37E450", + "ref": "FRS37E450", + "name": "NEUILLE LE LIERRE 4503 - Place de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.379939, + 49.175325 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BELLEVILLE SUR MEUSE - 66276 - Pl Maginot", + "ref:EU:EVSE": "FRS55E6627", + "ref": "FRS55E6627", + "name": "BELLEVILLE SUR MEUSE - 66276 - Pl Maginot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.046276, + 48.716915 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "L'ISLE EN RIGAULT - 66259 - Rue Henri Chevalier", + "ref:EU:EVSE": "FRS55E6625", + "ref": "FRS55E6625", + "name": "L'ISLE EN RIGAULT - 66259 - Rue Henri Chevalier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.400957, + 49.342913 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 DAMVILLERS - Pl des Martyrs - 66369", + "ref:EU:EVSE": "FRS55E6637", + "ref": "FRS55E6637", + "name": "55 DAMVILLERS - Pl des Martyrs - 66369", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.400957, + 49.342913 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 DAMVILLERS - Pl des Martyrs - 66369", + "ref:EU:EVSE": "FRS55E6636", + "ref": "FRS55E6636", + "name": "55 DAMVILLERS - Pl des Martyrs - 66369", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.023062, + 47.593796 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMOTTE BEUVRON 4228 - La Gare", + "ref:EU:EVSE": "FRS41E449", + "ref": "FRS41E449", + "name": "LAMOTTE BEUVRON 4228 - La Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.023062, + 47.593796 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMOTTE BEUVRON 4228 - La Gare", + "ref:EU:EVSE": "FRS41E422", + "ref": "FRS41E422", + "name": "LAMOTTE BEUVRON 4228 - La Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.511154, + 48.973301 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CROIX SUR MEUSE - 66450 - Place 40ème RA", + "ref:EU:EVSE": "FRS55E6645", + "ref": "FRS55E6645", + "name": "LA CROIX SUR MEUSE - 66450 - Place 40ème RA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.511154, + 48.973301 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CROIX SUR MEUSE - 66450 - Place 40ème RA", + "ref:EU:EVSE": "FRS55E6645", + "ref": "FRS55E6645", + "name": "LA CROIX SUR MEUSE - 66450 - Place 40ème RA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.427367, + 49.071221 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 DIEUX SUR MEUSE-rue des dames-66466", + "ref:EU:EVSE": "FRS55E6646", + "ref": "FRS55E6646", + "name": "55 DIEUX SUR MEUSE-rue des dames-66466", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.427367, + 49.071221 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 DIEUX SUR MEUSE-rue des dames-66466", + "ref:EU:EVSE": "FRS55E6646", + "ref": "FRS55E6646", + "name": "55 DIEUX SUR MEUSE-rue des dames-66466", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.379939, + 49.175325 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BELLEVILLE SUR MEUSE - 66276 - Pl Maginot", + "ref:EU:EVSE": "FRS55E6627", + "ref": "FRS55E6627", + "name": "BELLEVILLE SUR MEUSE - 66276 - Pl Maginot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.90451, + 47.61043 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAUMONT SUR THARONNE 4231 - Place Robert Mottu", + "ref:EU:EVSE": "FRS41E423", + "ref": "FRS41E423", + "name": "CHAUMONT SUR THARONNE 4231 - Place Robert Mottu", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.773067, + 47.268872 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 8", + "ref:EU:EVSE": "FRCPIE6747105", + "ref": "FRCPIE6747105", + "name": "SUPER U SEM BORNE 8", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.773067, + 47.268872 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 8", + "ref:EU:EVSE": "FRCPIE6747105", + "ref": "FRCPIE6747105", + "name": "SUPER U SEM BORNE 8", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.773067, + 47.268872 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 8", + "ref:EU:EVSE": "FRCPIE6747085", + "ref": "FRCPIE6747085", + "name": "SUPER U SEM BORNE 8", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.773067, + 47.268872 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 8", + "ref:EU:EVSE": "FRCPIE6747085", + "ref": "FRCPIE6747085", + "name": "SUPER U SEM BORNE 8", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.773067, + 47.268872 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 8", + "ref:EU:EVSE": "FRCPIE6530285", + "ref": "FRCPIE6530285", + "name": "SUPER U SEM BORNE 8", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.773067, + 47.268872 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 8", + "ref:EU:EVSE": "FRCPIE6530285", + "ref": "FRCPIE6530285", + "name": "SUPER U SEM BORNE 8", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.185284, + 49.381609 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 DUN SUR MEUSE-rue faubourg st Martin-66576", + "ref:EU:EVSE": "FRS55E6657", + "ref": "FRS55E6657", + "name": "55 DUN SUR MEUSE-rue faubourg st Martin-66576", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.185284, + 49.381609 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 DUN SUR MEUSE-rue faubourg st Martin-66576", + "ref:EU:EVSE": "FRS55E6657", + "ref": "FRS55E6657", + "name": "55 DUN SUR MEUSE-rue faubourg st Martin-66576", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.507144, + 48.513392 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 GONDRECOURT-rue de la grande fontaine-66326", + "ref:EU:EVSE": "FRS55E6632", + "ref": "FRS55E6632", + "name": "55 GONDRECOURT-rue de la grande fontaine-66326", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.046276, + 48.716915 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "L'ISLE EN RIGAULT - 66259 - Rue Henri Chevalier", + "ref:EU:EVSE": "FRS55E6626", + "ref": "FRS55E6626", + "name": "L'ISLE EN RIGAULT - 66259 - Rue Henri Chevalier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.90451, + 47.61043 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAUMONT SUR THARONNE 4231 - Place Robert Mottu", + "ref:EU:EVSE": "FRS41E423", + "ref": "FRS41E423", + "name": "CHAUMONT SUR THARONNE 4231 - Place Robert Mottu", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.908075, + 47.509629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUILLE LE LIERRE 4503 - Place de la gare", + "ref:EU:EVSE": "FRS37E450", + "ref": "FRS37E450", + "name": "NEUILLE LE LIERRE 4503 - Place de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.611639, + 44.721801 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR PRIVAS", + "ref:EU:EVSE": "FRCPIE6635705", + "ref": "FRCPIE6635705", + "name": "SONEPAR PRIVAS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381737, + 49.155459 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERDUN - 66586 - Cité d'Anthouard", + "ref:EU:EVSE": "FRS55E6658", + "ref": "FRS55E6658", + "name": "VERDUN - 66586 - Cité d'Anthouard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.288487, + 49.031403 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SOUILLY - 93386 - Voie Sacrée", + "ref:EU:EVSE": "FRS55E9338", + "ref": "FRS55E9338", + "name": "SOUILLY - 93386 - Voie Sacrée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.288487, + 49.031403 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SOUILLY - 93386 - Voie Sacrée", + "ref:EU:EVSE": "FRS55E9338", + "ref": "FRS55E9338", + "name": "SOUILLY - 93386 - Voie Sacrée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623041, + 48.690563 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VOID VACON - 66350 - Rue du Stade", + "ref:EU:EVSE": "FRS55E6635", + "ref": "FRS55E6635", + "name": "VOID VACON - 66350 - Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623041, + 48.690563 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VOID VACON - 66350 - Rue du Stade", + "ref:EU:EVSE": "FRS55E6635", + "ref": "FRS55E6635", + "name": "VOID VACON - 66350 - Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.269623, + 48.977679 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LES TROIS DOMAINES (droite) Centre d'affaires", + "ref:EU:EVSE": "FRS55E6536", + "ref": "FRS55E6536", + "name": "LES TROIS DOMAINES (droite) Centre d'affaires", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.269623, + 48.977679 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LES TROIS DOMAINES (droite) Centre d'affaires", + "ref:EU:EVSE": "FRS55E6536", + "ref": "FRS55E6536", + "name": "LES TROIS DOMAINES (droite) Centre d'affaires", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.269623, + 48.977679 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LES TROIS DOMAINES (droite) Centre d'affaires", + "ref:EU:EVSE": "FRS55E6533", + "ref": "FRS55E6533", + "name": "LES TROIS DOMAINES (droite) Centre d'affaires", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.269623, + 48.977679 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LES TROIS DOMAINES (droite) Centre d'affaires", + "ref:EU:EVSE": "FRS55E6533", + "ref": "FRS55E6533", + "name": "LES TROIS DOMAINES (droite) Centre d'affaires", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.611639, + 44.721801 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR PRIVAS", + "ref:EU:EVSE": "FRCPIE6635705", + "ref": "FRCPIE6635705", + "name": "SONEPAR PRIVAS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.934461, + 45.758512 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED VAULX", + "ref:EU:EVSE": "FRCPIE6634845", + "ref": "FRCPIE6634845", + "name": "CGED CGED VAULX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.636671, + 49.213447 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 ETAIN-place Rouillon-66462", + "ref:EU:EVSE": "FRS55E6646", + "ref": "FRS55E6646", + "name": "55 ETAIN-place Rouillon-66462", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.636671, + 49.213447 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 ETAIN-place Rouillon-66462", + "ref:EU:EVSE": "FRS55E6646", + "ref": "FRS55E6646", + "name": "55 ETAIN-place Rouillon-66462", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242708, + 48.593992 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 DAMMARIE SUR SAULX-2 chemin des gendarmes-66300", + "ref:EU:EVSE": "FRS55E6630", + "ref": "FRS55E6630", + "name": "55 DAMMARIE SUR SAULX-2 chemin des gendarmes-66300", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242708, + 48.593992 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 DAMMARIE SUR SAULX-2 chemin des gendarmes-66300", + "ref:EU:EVSE": "FRS55E6630", + "ref": "FRS55E6630", + "name": "55 DAMMARIE SUR SAULX-2 chemin des gendarmes-66300", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.974959, + 45.720724 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CCF GENAS", + "ref:EU:EVSE": "FRCPIE6634875", + "ref": "FRCPIE6634875", + "name": "SONEPAR CCF GENAS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.974959, + 45.720724 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CCF GENAS", + "ref:EU:EVSE": "FRCPIE6634875", + "ref": "FRCPIE6634875", + "name": "SONEPAR CCF GENAS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.627281, + 49.096559 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 FRESNES EN WORVRE-place Clemenceau-66387", + "ref:EU:EVSE": "FRS55E6638", + "ref": "FRS55E6638", + "name": "55 FRESNES EN WORVRE-place Clemenceau-66387", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.627281, + 49.096559 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 FRESNES EN WORVRE-place Clemenceau-66387", + "ref:EU:EVSE": "FRS55E6638", + "ref": "FRS55E6638", + "name": "55 FRESNES EN WORVRE-place Clemenceau-66387", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.934461, + 45.758512 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED VAULX", + "ref:EU:EVSE": "FRCPIE6634845", + "ref": "FRCPIE6634845", + "name": "CGED CGED VAULX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.507144, + 48.513392 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 GONDRECOURT-rue de la grande fontaine-66326", + "ref:EU:EVSE": "FRS55E6632", + "ref": "FRS55E6632", + "name": "55 GONDRECOURT-rue de la grande fontaine-66326", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.376687, + 49.210123 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BRAS SUR MEUSE - Av du douaumont - 66306", + "ref:EU:EVSE": "FRS55E6630", + "ref": "FRS55E6630", + "name": "55 BRAS SUR MEUSE - Av du douaumont - 66306", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.376687, + 49.210123 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BRAS SUR MEUSE - Av du douaumont - 66306", + "ref:EU:EVSE": "FRS55E6630", + "ref": "FRS55E6630", + "name": "55 BRAS SUR MEUSE - Av du douaumont - 66306", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.210292, + 47.887587 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FRETEVAL 4091 - Rue De Pont", + "ref:EU:EVSE": "FRS41E409", + "ref": "FRS41E409", + "name": "FRETEVAL 4091 - Rue De Pont", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586958, + 46.378498 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vérités", + "ref:EU:EVSE": "FRIONE43860", + "ref": "FRIONE43860", + "name": "Vérités", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.591824, + 48.758457 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 COMMERCY-rue du cardinal de Retz", + "ref:EU:EVSE": "FRS55E6619", + "ref": "FRS55E6619", + "name": "55 COMMERCY-rue du cardinal de Retz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.591824, + 48.758457 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 COMMERCY-rue du cardinal de Retz", + "ref:EU:EVSE": "FRS55E6619", + "ref": "FRS55E6619", + "name": "55 COMMERCY-rue du cardinal de Retz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.167513, + 48.780168 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BAR LE DUC-boulevard des flandres-66198", + "ref:EU:EVSE": "FRS55E6619", + "ref": "FRS55E6619", + "name": "55 BAR LE DUC-boulevard des flandres-66198", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.167513, + 48.780168 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BAR LE DUC-boulevard des flandres-66198", + "ref:EU:EVSE": "FRS55E6619", + "ref": "FRS55E6619", + "name": "55 BAR LE DUC-boulevard des flandres-66198", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.017258, + 48.637806 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 ANCERVILLE-87 rue de st Dizier-66213", + "ref:EU:EVSE": "FRS55E6621", + "ref": "FRS55E6621", + "name": "55 ANCERVILLE-87 rue de st Dizier-66213", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.017258, + 48.637806 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 ANCERVILLE-87 rue de st Dizier-66213", + "ref:EU:EVSE": "FRS55E6621", + "ref": "FRS55E6621", + "name": "55 ANCERVILLE-87 rue de st Dizier-66213", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.582503, + 48.596041 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNES SAVIGNY LE MILLENAIRE 2", + "ref:EU:EVSE": "FRCPIE6633755", + "ref": "FRCPIE6633755", + "name": "BORNES SAVIGNY LE MILLENAIRE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.582503, + 48.596041 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNES SAVIGNY LE MILLENAIRE 2", + "ref:EU:EVSE": "FRCPIE6633745", + "ref": "FRCPIE6633745", + "name": "BORNES SAVIGNY LE MILLENAIRE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.210292, + 47.887587 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FRETEVAL 4091 - Rue De Pont", + "ref:EU:EVSE": "FRS41E409", + "ref": "FRS41E409", + "name": "FRETEVAL 4091 - Rue De Pont", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.354515, + 48.488338 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BURE-rond point andra-66333", + "ref:EU:EVSE": "FRS55E6633", + "ref": "FRS55E6633", + "name": "55 BURE-rond point andra-66333", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.775121, + 48.463146 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUNEAU - Rue Pasteur - 186530", + "ref:EU:EVSE": "FRS28E18653", + "ref": "FRS28E18653", + "name": "AUNEAU - Rue Pasteur - 186530", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29412, + 47.822077 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "OUCQUES 4071 - Place du Château", + "ref:EU:EVSE": "FRS41E407", + "ref": "FRS41E407", + "name": "OUCQUES 4071 - Place du Château", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29412, + 47.822077 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "OUCQUES 4071 - Place du Château", + "ref:EU:EVSE": "FRS41E407", + "ref": "FRS41E407", + "name": "OUCQUES 4071 - Place du Château", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.506585, + 47.70652 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MER 4053 - Rue de Mardeau", + "ref:EU:EVSE": "FRS41E405", + "ref": "FRS41E405", + "name": "MER 4053 - Rue de Mardeau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.506585, + 47.70652 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MER 4053 - Rue de Mardeau", + "ref:EU:EVSE": "FRS41E405", + "ref": "FRS41E405", + "name": "MER 4053 - Rue de Mardeau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.508335, + 47.703524 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MER 4043 - Avenue Maréchal Maunoury", + "ref:EU:EVSE": "FRS41E404", + "ref": "FRS41E404", + "name": "MER 4043 - Avenue Maréchal Maunoury", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.508335, + 47.703524 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MER 4043 - Avenue Maréchal Maunoury", + "ref:EU:EVSE": "FRS41E404", + "ref": "FRS41E404", + "name": "MER 4043 - Avenue Maréchal Maunoury", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828268, + 45.491712 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED VIENNE", + "ref:EU:EVSE": "FRCPIE6632365", + "ref": "FRCPIE6632365", + "name": "CGED CGED VIENNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828268, + 45.491712 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED VIENNE", + "ref:EU:EVSE": "FRCPIE6632365", + "ref": "FRCPIE6632365", + "name": "CGED CGED VIENNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586958, + 46.378498 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vérités", + "ref:EU:EVSE": "FRIONE43860", + "ref": "FRIONE43860", + "name": "Vérités", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586958, + 46.378498 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vérités", + "ref:EU:EVSE": "FRIONE43860", + "ref": "FRIONE43860", + "name": "Vérités", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586958, + 46.378498 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vérités", + "ref:EU:EVSE": "FRIONE43860", + "ref": "FRIONE43860", + "name": "Vérités", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586958, + 46.378498 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vérités", + "ref:EU:EVSE": "FRIONE4386", + "ref": "FRIONE4386", + "name": "Vérités", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.354515, + 48.488338 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BURE-rond point andra-66333", + "ref:EU:EVSE": "FRS55E6633", + "ref": "FRS55E6633", + "name": "55 BURE-rond point andra-66333", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284357, + 49.285869 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 CONSENVOYE - Rue du port - 66323", + "ref:EU:EVSE": "FRS55E6632", + "ref": "FRS55E6632", + "name": "55 CONSENVOYE - Rue du port - 66323", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284357, + 49.285869 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 CONSENVOYE - Rue du port - 66323", + "ref:EU:EVSE": "FRS55E6632", + "ref": "FRS55E6632", + "name": "55 CONSENVOYE - Rue du port - 66323", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.111015, + 48.932711 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GD BORNE 3", + "ref:EU:EVSE": "FRCPIE6678685", + "ref": "FRCPIE6678685", + "name": "GD BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.111015, + 48.932711 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GD BORNE 3", + "ref:EU:EVSE": "FRCPIE6678685", + "ref": "FRCPIE6678685", + "name": "GD BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.111015, + 48.932711 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GD BORNE 3", + "ref:EU:EVSE": "FRCPIE6678675", + "ref": "FRCPIE6678675", + "name": "GD BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.111015, + 48.932711 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GD BORNE 3", + "ref:EU:EVSE": "FRCPIE6678675", + "ref": "FRCPIE6678675", + "name": "GD BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.111015, + 48.932711 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GD BORNE 3", + "ref:EU:EVSE": "FRCPIE6678665", + "ref": "FRCPIE6678665", + "name": "GD BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.111015, + 48.932711 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GD BORNE 3", + "ref:EU:EVSE": "FRCPIE6678665", + "ref": "FRCPIE6678665", + "name": "GD BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.38719, + 49.167779 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BELLE VILLE SUR MEUSE - Av Miribel - 66287", + "ref:EU:EVSE": "FRS55E6628", + "ref": "FRS55E6628", + "name": "55 BELLE VILLE SUR MEUSE - Av Miribel - 66287", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.38719, + 49.167779 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BELLE VILLE SUR MEUSE - Av Miribel - 66287", + "ref:EU:EVSE": "FRS55E6628", + "ref": "FRS55E6628", + "name": "55 BELLE VILLE SUR MEUSE - Av Miribel - 66287", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.324949, + 48.68465 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 LIGNY EN BAROIS-rue du général de Gaulle-66282", + "ref:EU:EVSE": "FRS55E6628", + "ref": "FRS55E6628", + "name": "55 LIGNY EN BAROIS-rue du général de Gaulle-66282", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.324949, + 48.68465 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 LIGNY EN BAROIS-rue du général de Gaulle-66282", + "ref:EU:EVSE": "FRS55E6628", + "ref": "FRS55E6628", + "name": "55 LIGNY EN BAROIS-rue du général de Gaulle-66282", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58761, + 47.108011 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "L'aquitaine Sainte-Maure-de-Touraine CCS4166", + "ref:EU:EVSE": "FRS37E416", + "ref": "FRS37E416", + "name": "L'aquitaine Sainte-Maure-de-Touraine CCS4166", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58761, + 47.108011 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "L'aquitaine Sainte-Maure-de-Touraine CCS4166", + "ref:EU:EVSE": "FRS37E416", + "ref": "FRS37E416", + "name": "L'aquitaine Sainte-Maure-de-Touraine CCS4166", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58761, + 47.108011 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "L'aquitaine Sainte-Maure-de-Touraine CCS4166", + "ref:EU:EVSE": "FRS37E416", + "ref": "FRS37E416", + "name": "L'aquitaine Sainte-Maure-de-Touraine CCS4166", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58761, + 47.108011 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "L'aquitaine Sainte-Maure-de-Touraine CCS4166", + "ref:EU:EVSE": "FRS37E416", + "ref": "FRS37E416", + "name": "L'aquitaine Sainte-Maure-de-Touraine CCS4166", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071757, + 49.105212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 CLERMONT EN ARGONNE - Pl de la Malsenez - 66240", + "ref:EU:EVSE": "FRS55E6624", + "ref": "FRS55E6624", + "name": "55 CLERMONT EN ARGONNE - Pl de la Malsenez - 66240", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071757, + 49.105212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 CLERMONT EN ARGONNE - Pl de la Malsenez - 66240", + "ref:EU:EVSE": "FRS55E6624", + "ref": "FRS55E6624", + "name": "55 CLERMONT EN ARGONNE - Pl de la Malsenez - 66240", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381737, + 49.155459 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERDUN - 66586 - Cité d'Anthouard", + "ref:EU:EVSE": "FRS55E6658", + "ref": "FRS55E6658", + "name": "VERDUN - 66586 - Cité d'Anthouard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.388646, + 49.161975 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 VERDUN - Av général mangin - 66596", + "ref:EU:EVSE": "FRS55E6659", + "ref": "FRS55E6659", + "name": "55 VERDUN - Av général mangin - 66596", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.388646, + 49.161975 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 VERDUN - Av général mangin - 66596", + "ref:EU:EVSE": "FRS55E6659", + "ref": "FRS55E6659", + "name": "55 VERDUN - Av général mangin - 66596", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.339852, + 47.583802 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4387 - Rue des Alliés", + "ref:EU:EVSE": "FRS41E438", + "ref": "FRS41E438", + "name": "BLOIS 4387 - Rue des Alliés", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.334115, + 47.589412 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4430 - Square du 11 Novembre 1918", + "ref:EU:EVSE": "FRS41E443", + "ref": "FRS41E443", + "name": "BLOIS 4430 - Square du 11 Novembre 1918", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.334115, + 47.589412 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4430 - Square du 11 Novembre 1918", + "ref:EU:EVSE": "FRS41E443", + "ref": "FRS41E443", + "name": "BLOIS 4430 - Square du 11 Novembre 1918", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.448257, + 48.169441 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPINAL - Pkg Petit Champ de Mars - 144258 - CCS", + "ref:EU:EVSE": "FRS88E14426", + "ref": "FRS88E14426", + "name": "EPINAL - Pkg Petit Champ de Mars - 144258 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.448257, + 48.169441 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPINAL - Pkg Petit Champ de Mars - 144258 - CCS", + "ref:EU:EVSE": "FRS88E14425", + "ref": "FRS88E14425", + "name": "EPINAL - Pkg Petit Champ de Mars - 144258 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.159173, + 48.76661 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BAR LE DUC-rue d'Alnois-66244", + "ref:EU:EVSE": "FRS55E6624", + "ref": "FRS55E6624", + "name": "55 BAR LE DUC-rue d'Alnois-66244", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.159173, + 48.76661 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BAR LE DUC-rue d'Alnois-66244", + "ref:EU:EVSE": "FRS55E6624", + "ref": "FRS55E6624", + "name": "55 BAR LE DUC-rue d'Alnois-66244", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.144079, + 48.220488 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LES BAGENELLES BORNE 1", + "ref:EU:EVSE": "FRCPIE6639555", + "ref": "FRCPIE6639555", + "name": "LES BAGENELLES BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.144079, + 48.220488 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LES BAGENELLES BORNE 1", + "ref:EU:EVSE": "FRCPIE6639555", + "ref": "FRCPIE6639555", + "name": "LES BAGENELLES BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.339852, + 47.583802 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4387 - Rue des Alliés", + "ref:EU:EVSE": "FRS41E438", + "ref": "FRS41E438", + "name": "BLOIS 4387 - Rue des Alliés", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.452407, + 48.173165 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPINAL - Parking La Louvière - 144239 - CCS", + "ref:EU:EVSE": "FRS88E14424", + "ref": "FRS88E14424", + "name": "EPINAL - Parking La Louvière - 144239 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.553632, + 47.273794 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SELLES SUR CHER 4353 - Rue du Moulinet", + "ref:EU:EVSE": "FRS41E435", + "ref": "FRS41E435", + "name": "SELLES SUR CHER 4353 - Rue du Moulinet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.452407, + 48.173165 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPINAL - Parking La Louvière - 144239 - CCS", + "ref:EU:EVSE": "FRS88E14423", + "ref": "FRS88E14423", + "name": "EPINAL - Parking La Louvière - 144239 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.333499, + 47.584457 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4383 - Place Jacques Lob", + "ref:EU:EVSE": "FRS41E438", + "ref": "FRS41E438", + "name": "BLOIS 4383 - Place Jacques Lob", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.333499, + 47.584457 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4383 - Place Jacques Lob", + "ref:EU:EVSE": "FRS41E438", + "ref": "FRS41E438", + "name": "BLOIS 4383 - Place Jacques Lob", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.778858, + 45.183035 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR BOULAZAC", + "ref:EU:EVSE": "FRCPIE6638005", + "ref": "FRCPIE6638005", + "name": "SONEPAR BOULAZAC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.778858, + 45.183035 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR BOULAZAC", + "ref:EU:EVSE": "FRCPIE6638005", + "ref": "FRCPIE6638005", + "name": "SONEPAR BOULAZAC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.338252, + 47.593425 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4373 - Avenue du Maréchal Maunoury", + "ref:EU:EVSE": "FRS41E437", + "ref": "FRS41E437", + "name": "BLOIS 4373 - Avenue du Maréchal Maunoury", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.338252, + 47.593425 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4373 - Avenue du Maréchal Maunoury", + "ref:EU:EVSE": "FRS41E437", + "ref": "FRS41E437", + "name": "BLOIS 4373 - Avenue du Maréchal Maunoury", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.332601, + 47.587793 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS - Place Saint Honoré -139113", + "ref:EU:EVSE": "FRS41E13911", + "ref": "FRS41E13911", + "name": "BLOIS - Place Saint Honoré -139113", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.332601, + 47.587793 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS - Place Saint Honoré -139113", + "ref:EU:EVSE": "FRS41E13911", + "ref": "FRS41E13911", + "name": "BLOIS - Place Saint Honoré -139113", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39177715, + 48.18831452 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BONNEVAL - Rue de Chartres - 129245", + "ref:EU:EVSE": "FRS28E12924", + "ref": "FRS28E12924", + "name": "BONNEVAL - Rue de Chartres - 129245", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.459363, + 47.507757 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COUR CHEVERNY 4432 - Rue Gilette", + "ref:EU:EVSE": "FRS41E443", + "ref": "FRS41E443", + "name": "COUR CHEVERNY 4432 - Rue Gilette", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.459363, + 47.507757 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COUR CHEVERNY 4432 - Rue Gilette", + "ref:EU:EVSE": "FRS41E443", + "ref": "FRS41E443", + "name": "COUR CHEVERNY 4432 - Rue Gilette", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545043, + 47.549129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRACIEUX 4436 - Rue de Candy", + "ref:EU:EVSE": "FRS41E443", + "ref": "FRS41E443", + "name": "BRACIEUX 4436 - Rue de Candy", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.447639, + 47.639409 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTLIVAULT 4501 - Rue du Château d'eau", + "ref:EU:EVSE": "FRS41E450", + "ref": "FRS41E450", + "name": "MONTLIVAULT 4501 - Rue du Château d'eau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.447639, + 47.639409 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTLIVAULT 4501 - Rue du Château d'eau", + "ref:EU:EVSE": "FRS41E450", + "ref": "FRS41E450", + "name": "MONTLIVAULT 4501 - Rue du Château d'eau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.303007, + 48.283904 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "FRANKENBOURG BORNE GARAGE", + "ref:EU:EVSE": "FRCPIE6640555", + "ref": "FRCPIE6640555", + "name": "FRANKENBOURG BORNE GARAGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856182, + 48.271147 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val Neuvy", + "ref:EU:EVSE": "FRIONE45920", + "ref": "FRIONE45920", + "name": "Val Neuvy", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856182, + 48.271147 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val Neuvy", + "ref:EU:EVSE": "FRIONE45920", + "ref": "FRIONE45920", + "name": "Val Neuvy", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856182, + 48.271147 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val Neuvy", + "ref:EU:EVSE": "FRIONE45920", + "ref": "FRIONE45920", + "name": "Val Neuvy", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856182, + 48.271147 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val Neuvy", + "ref:EU:EVSE": "FRIONE45920", + "ref": "FRIONE45920", + "name": "Val Neuvy", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856182, + 48.271147 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val Neuvy", + "ref:EU:EVSE": "FRIONE45920", + "ref": "FRIONE45920", + "name": "Val Neuvy", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856182, + 48.271147 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val Neuvy", + "ref:EU:EVSE": "FRIONE45920", + "ref": "FRIONE45920", + "name": "Val Neuvy", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.022989, + 47.601445 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMOTTE BEUVRON 4493 - Place du 11 Novembre", + "ref:EU:EVSE": "FRS41E449", + "ref": "FRS41E449", + "name": "LAMOTTE BEUVRON 4493 - Place du 11 Novembre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.022989, + 47.601445 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMOTTE BEUVRON 4493 - Place du 11 Novembre", + "ref:EU:EVSE": "FRS41E449", + "ref": "FRS41E449", + "name": "LAMOTTE BEUVRON 4493 - Place du 11 Novembre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05821, + 47.42841 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SALBRIS 4489 - Avenue de la Resistance", + "ref:EU:EVSE": "FRS41E449", + "ref": "FRS41E449", + "name": "SALBRIS 4489 - Avenue de la Resistance", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05821, + 47.42841 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SALBRIS 4489 - Avenue de la Resistance", + "ref:EU:EVSE": "FRS41E448", + "ref": "FRS41E448", + "name": "SALBRIS 4489 - Avenue de la Resistance", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.044051, + 47.416387 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SALBRIS 4485 - Rue de la Convention", + "ref:EU:EVSE": "FRS41E448", + "ref": "FRS41E448", + "name": "SALBRIS 4485 - Rue de la Convention", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.044051, + 47.416387 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SALBRIS 4485 - Rue de la Convention", + "ref:EU:EVSE": "FRS41E448", + "ref": "FRS41E448", + "name": "SALBRIS 4485 - Rue de la Convention", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.394261, + 48.718342 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LURAY - Rue Emile Zola - 130756", + "ref:EU:EVSE": "FRS28E13075", + "ref": "FRS28E13075", + "name": "LURAY - Rue Emile Zola - 130756", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42975, + 47.421438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTRES 4440 - Rue dela libération", + "ref:EU:EVSE": "FRS41E444", + "ref": "FRS41E444", + "name": "CONTRES 4440 - Rue dela libération", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42975, + 47.421438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTRES 4440 - Rue dela libération", + "ref:EU:EVSE": "FRS41E444", + "ref": "FRS41E444", + "name": "CONTRES 4440 - Rue dela libération", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545043, + 47.549129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRACIEUX 4436 - Rue de Candy", + "ref:EU:EVSE": "FRS41E443", + "ref": "FRS41E443", + "name": "BRACIEUX 4436 - Rue de Candy", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.553632, + 47.273794 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SELLES SUR CHER 4353 - Rue du Moulinet", + "ref:EU:EVSE": "FRS41E435", + "ref": "FRS41E435", + "name": "SELLES SUR CHER 4353 - Rue du Moulinet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.557391, + 47.273629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SELLES SUR CHER 4350 - Allée de la Gravouille", + "ref:EU:EVSE": "FRS41E435", + "ref": "FRS41E435", + "name": "SELLES SUR CHER 4350 - Allée de la Gravouille", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.668772, + 48.602209 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VAUCOULEURS - 66342 - Rue de la République", + "ref:EU:EVSE": "FRS55E6634", + "ref": "FRS55E6634", + "name": "VAUCOULEURS - 66342 - Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39074, + 49.160318 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 VERDUN - Rue du 8 mai 1945 - 66603", + "ref:EU:EVSE": "FRS55E6660", + "ref": "FRS55E6660", + "name": "55 VERDUN - Rue du 8 mai 1945 - 66603", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.366673, + 49.519625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 MONTMEDY-place Raymond Poincare-66592", + "ref:EU:EVSE": "FRS55E6659", + "ref": "FRS55E6659", + "name": "55 MONTMEDY-place Raymond Poincare-66592", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.114099, + 48.937863 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 VAUBECOURT - 13 rue Ernest Chaudron - 66185", + "ref:EU:EVSE": "FRS55E6618", + "ref": "FRS55E6618", + "name": "55 VAUBECOURT - 13 rue Ernest Chaudron - 66185", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.114099, + 48.937863 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 VAUBECOURT - 13 rue Ernest Chaudron - 66185", + "ref:EU:EVSE": "FRS55E6618", + "ref": "FRS55E6618", + "name": "55 VAUBECOURT - 13 rue Ernest Chaudron - 66185", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.059802, + 48.978479 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEUIL D'ARGONNE - 66173 - Place Poincaré", + "ref:EU:EVSE": "FRS55E6617", + "ref": "FRS55E6617", + "name": "SEUIL D'ARGONNE - 66173 - Place Poincaré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.059802, + 48.978479 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEUIL D'ARGONNE - 66173 - Place Poincaré", + "ref:EU:EVSE": "FRS55E6617", + "ref": "FRS55E6617", + "name": "SEUIL D'ARGONNE - 66173 - Place Poincaré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.672126, + 47.254312 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Sorigny A10 CCS", + "ref:EU:EVSE": "FRS37E431", + "ref": "FRS37E431", + "name": "Super Chargeur Sorigny A10 CCS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.672126, + 47.254312 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Sorigny A10 CCS", + "ref:EU:EVSE": "FRS37E431", + "ref": "FRS37E431", + "name": "Super Chargeur Sorigny A10 CCS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.672126, + 47.254312 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Sorigny A10 CCS", + "ref:EU:EVSE": "FRS37E431", + "ref": "FRS37E431", + "name": "Super Chargeur Sorigny A10 CCS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.672126, + 47.254312 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Sorigny A10 CCS", + "ref:EU:EVSE": "FRS37E431", + "ref": "FRS37E431", + "name": "Super Chargeur Sorigny A10 CCS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39074, + 49.160318 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 VERDUN - Rue du 8 mai 1945 - 66603", + "ref:EU:EVSE": "FRS55E6660", + "ref": "FRS55E6660", + "name": "55 VERDUN - Rue du 8 mai 1945 - 66603", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.557391, + 47.273629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SELLES SUR CHER 4350 - Allée de la Gravouille", + "ref:EU:EVSE": "FRS41E435", + "ref": "FRS41E435", + "name": "SELLES SUR CHER 4350 - Allée de la Gravouille", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.355194, + 48.720645 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNOUILLET - Rue du Moulin Rouge - 139334", + "ref:EU:EVSE": "FRS28E13933", + "ref": "FRS28E13933", + "name": "VERNOUILLET - Rue du Moulin Rouge - 139334", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.355194, + 48.720645 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNOUILLET - Rue du Moulin Rouge - 139334", + "ref:EU:EVSE": "FRS28E13933", + "ref": "FRS28E13933", + "name": "VERNOUILLET - Rue du Moulin Rouge - 139334", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.460828, + 47.499325 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEVERNY 4301 - Place de l'Eglise", + "ref:EU:EVSE": "FRS41E430", + "ref": "FRS41E430", + "name": "CHEVERNY 4301 - Place de l'Eglise", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.460828, + 47.499325 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEVERNY 4301 - Place de l'Eglise", + "ref:EU:EVSE": "FRS41E430", + "ref": "FRS41E430", + "name": "CHEVERNY 4301 - Place de l'Eglise", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.383243, + 49.163453 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 VERDUN - Rue de Jeanne d'arc - 66578", + "ref:EU:EVSE": "FRS55E6657", + "ref": "FRS55E6657", + "name": "55 VERDUN - Rue de Jeanne d'arc - 66578", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.383243, + 49.163453 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 VERDUN - Rue de Jeanne d'arc - 66578", + "ref:EU:EVSE": "FRS55E6657", + "ref": "FRS55E6657", + "name": "55 VERDUN - Rue de Jeanne d'arc - 66578", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.011539, + 48.474088 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA LOUPE - Place de la gare - 134202", + "ref:EU:EVSE": "FRS28E13420", + "ref": "FRS28E13420", + "name": "LA LOUPE - Place de la gare - 134202", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.011539, + 48.474088 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA LOUPE - Place de la gare - 134202", + "ref:EU:EVSE": "FRS28E13420", + "ref": "FRS28E13420", + "name": "LA LOUPE - Place de la gare - 134202", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.668772, + 48.602209 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VAUCOULEURS - 66342 - Rue de la République", + "ref:EU:EVSE": "FRS55E6634", + "ref": "FRS55E6634", + "name": "VAUCOULEURS - 66342 - Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.366673, + 49.519625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 MONTMEDY-place Raymond Poincare-66592", + "ref:EU:EVSE": "FRS55E6659", + "ref": "FRS55E6659", + "name": "55 MONTMEDY-place Raymond Poincare-66592", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.708556, + 45.750501 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR BELLEY", + "ref:EU:EVSE": "FRCPIE6637385", + "ref": "FRCPIE6637385", + "name": "SONEPAR BELLEY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.708556, + 45.750501 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR BELLEY", + "ref:EU:EVSE": "FRCPIE6637385", + "ref": "FRCPIE6637385", + "name": "SONEPAR BELLEY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.511859, + 48.821478 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAMPIGNY - 66354 - Rue Raymond Poincare", + "ref:EU:EVSE": "FRS55E6635", + "ref": "FRS55E6635", + "name": "SAMPIGNY - 66354 - Rue Raymond Poincare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.664424, + 45.198312 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED MARSAC", + "ref:EU:EVSE": "FRCPIE6637615", + "ref": "FRCPIE6637615", + "name": "CGED CGED MARSAC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.664424, + 45.198312 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED MARSAC", + "ref:EU:EVSE": "FRCPIE6637615", + "ref": "FRCPIE6637615", + "name": "CGED CGED MARSAC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.390409, + 47.636004 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AUBIN LE DEPEINT 4345 - Place de la Mairie", + "ref:EU:EVSE": "FRS37E434", + "ref": "FRS37E434", + "name": "SAINT AUBIN LE DEPEINT 4345 - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.390409, + 47.636004 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AUBIN LE DEPEINT 4345 - Place de la Mairie", + "ref:EU:EVSE": "FRS37E434", + "ref": "FRS37E434", + "name": "SAINT AUBIN LE DEPEINT 4345 - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.718157, + 47.39166 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST PIERRE DES CORPS 4343 - Parking Despouy", + "ref:EU:EVSE": "FRS37E434", + "ref": "FRS37E434", + "name": "ST PIERRE DES CORPS 4343 - Parking Despouy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.718157, + 47.39166 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST PIERRE DES CORPS 4343 - Parking Despouy", + "ref:EU:EVSE": "FRS37E434", + "ref": "FRS37E434", + "name": "ST PIERRE DES CORPS 4343 - Parking Despouy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.037276, + 47.585286 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST NICOLAS DES MOTETS 4340 - Rue de la poste", + "ref:EU:EVSE": "FRS37E434", + "ref": "FRS37E434", + "name": "ST NICOLAS DES MOTETS 4340 - Rue de la poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.037276, + 47.585286 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST NICOLAS DES MOTETS 4340 - Rue de la poste", + "ref:EU:EVSE": "FRS37E434", + "ref": "FRS37E434", + "name": "ST NICOLAS DES MOTETS 4340 - Rue de la poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387714, + 49.15923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 VERDUN - Rue des Tanneries - 66477", + "ref:EU:EVSE": "FRS55E6647", + "ref": "FRS55E6647", + "name": "55 VERDUN - Rue des Tanneries - 66477", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387714, + 49.15923 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 VERDUN - Rue des Tanneries - 66477", + "ref:EU:EVSE": "FRS55E6647", + "ref": "FRS55E6647", + "name": "55 VERDUN - Rue des Tanneries - 66477", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929119, + 46.854559 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PREUILLY SUR CLAISE 4338", + "ref:EU:EVSE": "FRS37E433", + "ref": "FRS37E433", + "name": "PREUILLY SUR CLAISE 4338", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929119, + 46.854559 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PREUILLY SUR CLAISE 4338", + "ref:EU:EVSE": "FRS37E433", + "ref": "FRS37E433", + "name": "PREUILLY SUR CLAISE 4338", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.540494, + 48.892528 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Saint MIHIEL - 66364 - Place Jaques Bailleux", + "ref:EU:EVSE": "FRS55E6636", + "ref": "FRS55E6636", + "name": "Saint MIHIEL - 66364 - Place Jaques Bailleux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.540494, + 48.892528 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Saint MIHIEL - 66364 - Place Jaques Bailleux", + "ref:EU:EVSE": "FRS55E6636", + "ref": "FRS55E6636", + "name": "Saint MIHIEL - 66364 - Place Jaques Bailleux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.428741, + 47.958865 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERDES 4328 - Place de l'église", + "ref:EU:EVSE": "FRS41E432", + "ref": "FRS41E432", + "name": "VERDES 4328 - Place de l'église", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.428741, + 47.958865 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERDES 4328 - Place de l'église", + "ref:EU:EVSE": "FRS41E432", + "ref": "FRS41E432", + "name": "VERDES 4328 - Place de l'église", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525589, + 47.668808 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MUIDES SUR LOIRE 4326 - Rue du Tramway", + "ref:EU:EVSE": "FRS41E432", + "ref": "FRS41E432", + "name": "MUIDES SUR LOIRE 4326 - Rue du Tramway", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525589, + 47.668808 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MUIDES SUR LOIRE 4326 - Rue du Tramway", + "ref:EU:EVSE": "FRS41E432", + "ref": "FRS41E432", + "name": "MUIDES SUR LOIRE 4326 - Rue du Tramway", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.511859, + 48.821478 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAMPIGNY - 66354 - Rue Raymond Poincare", + "ref:EU:EVSE": "FRS55E6635", + "ref": "FRS55E6635", + "name": "SAMPIGNY - 66354 - Rue Raymond Poincare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.001365, + 46.118881 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CHATILLON CHARLES RIVER 2", + "ref:EU:EVSE": "FRCPIE6675745", + "ref": "FRCPIE6675745", + "name": "CHATILLON CHARLES RIVER 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.001365, + 46.118881 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CHATILLON CHARLES RIVER 2", + "ref:EU:EVSE": "FRCPIE6675765", + "ref": "FRCPIE6675765", + "name": "CHATILLON CHARLES RIVER 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.001365, + 46.118881 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CHATILLON CHARLES RIVER 2", + "ref:EU:EVSE": "FRCPIE6675765", + "ref": "FRCPIE6675765", + "name": "CHATILLON CHARLES RIVER 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.494161, + 48.343955 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DAMMARIE - Place de l'église - 137348", + "ref:EU:EVSE": "FRS28E13734", + "ref": "FRS28E13734", + "name": "DAMMARIE - Place de l'église - 137348", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref:EU:EVSE": "FRIONE45160", + "ref": "FRIONE45160", + "name": "Meyrargues", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref:EU:EVSE": "FRIONE45160", + "ref": "FRIONE45160", + "name": "Meyrargues", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref:EU:EVSE": "FRIONE45160", + "ref": "FRIONE45160", + "name": "Meyrargues", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref:EU:EVSE": "FRIONE45160", + "ref": "FRIONE45160", + "name": "Meyrargues", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref:EU:EVSE": "FRIONE45160", + "ref": "FRIONE45160", + "name": "Meyrargues", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37289291, + 49.3797657 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Charleval", + "ref:EU:EVSE": "FRIENE005602", + "ref": "FRIENE005602", + "name": "Charleval", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37289291, + 49.3797657 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Charleval", + "ref:EU:EVSE": "FRIENE005602", + "ref": "FRIENE005602", + "name": "Charleval", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37289291, + 49.3797657 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Charleval", + "ref:EU:EVSE": "FRIENE005601", + "ref": "FRIENE005601", + "name": "Charleval", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37289291, + 49.3797657 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Charleval", + "ref:EU:EVSE": "FRIENE005601", + "ref": "FRIENE005601", + "name": "Charleval", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.239974, + 47.671469 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "La Chapelle-Vendômoise | Chemin des Coulisses", + "ref:EU:EVSE": "FRS41E380", + "ref": "FRS41E380", + "name": "La Chapelle-Vendômoise | Chemin des Coulisses", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref:EU:EVSE": "FRIONE45160", + "ref": "FRIONE45160", + "name": "Meyrargues", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.239974, + 47.671469 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "La Chapelle-Vendômoise | Chemin des Coulisses", + "ref:EU:EVSE": "FRS41E380", + "ref": "FRS41E380", + "name": "La Chapelle-Vendômoise | Chemin des Coulisses", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.68742, + 48.52747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GALLARDON - Résidence de la tour - 129289", + "ref:EU:EVSE": "FRS28E12928", + "ref": "FRS28E12928", + "name": "GALLARDON - Résidence de la tour - 129289", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.806087, + 47.533105 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUNG SUR BEUVRON - Henry de Geoffre - 167613", + "ref:EU:EVSE": "FRS41E16761", + "ref": "FRS41E16761", + "name": "NEUNG SUR BEUVRON - Henry de Geoffre - 167613", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.806087, + 47.533105 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUNG SUR BEUVRON - Henry de Geoffre - 167613", + "ref:EU:EVSE": "FRS41E16761", + "ref": "FRS41E16761", + "name": "NEUNG SUR BEUVRON - Henry de Geoffre - 167613", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.184395, + 48.115521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATILLON EN DUNOIS - rue de Courtalain - 134208", + "ref:EU:EVSE": "FRS28E13420", + "ref": "FRS28E13420", + "name": "CHATILLON EN DUNOIS - rue de Courtalain - 134208", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.373159, + 47.268943 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AIGNAN 2954 - Place du Président Wilson", + "ref:EU:EVSE": "FRS41E295", + "ref": "FRS41E295", + "name": "SAINT AIGNAN 2954 - Place du Président Wilson", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.373159, + 47.268943 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AIGNAN 2954 - Place du Président Wilson", + "ref:EU:EVSE": "FRS41E295", + "ref": "FRS41E295", + "name": "SAINT AIGNAN 2954 - Place du Président Wilson", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.250812, + 50.755426 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BIOPATH HDF SAINT-OMER", + "ref:EU:EVSE": "FRCPIE6742055", + "ref": "FRCPIE6742055", + "name": "BIOPATH HDF SAINT-OMER", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.250812, + 50.755426 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BIOPATH HDF SAINT-OMER", + "ref:EU:EVSE": "FRCPIE6742055", + "ref": "FRCPIE6742055", + "name": "BIOPATH HDF SAINT-OMER", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref:EU:EVSE": "FRIONE45160", + "ref": "FRIONE45160", + "name": "Meyrargues", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref:EU:EVSE": "FRIONE45160", + "ref": "FRIONE45160", + "name": "Meyrargues", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70014885, + 43.99972129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Sud", + "ref:EU:EVSE": "FRIONE40530", + "ref": "FRIONE40530", + "name": "Tavel Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.131711, + 47.618868 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VESOUL", + "ref:EU:EVSE": "FRCPIE6665275", + "ref": "FRCPIE6665275", + "name": "SONEPAR VESOUL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22626, + 45.850533 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Loire", + "ref:EU:EVSE": "FRIONE42160", + "ref": "FRIONE42160", + "name": "Loire", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22626, + 45.850533 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Loire", + "ref:EU:EVSE": "FRIONE42160", + "ref": "FRIONE42160", + "name": "Loire", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.851806, + 43.456489 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U BORNE 1 DC", + "ref:EU:EVSE": "FRCPIE6642765", + "ref": "FRCPIE6642765", + "name": "HYPER U BORNE 1 DC", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.851806, + 43.456489 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U BORNE 1 DC", + "ref:EU:EVSE": "FRCPIE6616535", + "ref": "FRCPIE6616535", + "name": "HYPER U BORNE 1 DC", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.851806, + 43.456489 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U BORNE 1 DC", + "ref:EU:EVSE": "FRCPIE6610485", + "ref": "FRCPIE6610485", + "name": "HYPER U BORNE 1 DC", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.851806, + 43.456489 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U BORNE 1 DC", + "ref:EU:EVSE": "FRCPIE6610485", + "ref": "FRCPIE6610485", + "name": "HYPER U BORNE 1 DC", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.851806, + 43.456489 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U BORNE 1 DC", + "ref:EU:EVSE": "FRCPIE6610465", + "ref": "FRCPIE6610465", + "name": "HYPER U BORNE 1 DC", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.851806, + 43.456489 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U BORNE 1 DC", + "ref:EU:EVSE": "FRCPIE6610465", + "ref": "FRCPIE6610465", + "name": "HYPER U BORNE 1 DC", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.131711, + 47.618868 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VESOUL", + "ref:EU:EVSE": "FRCPIE6665275", + "ref": "FRCPIE6665275", + "name": "SONEPAR VESOUL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.491615, + 48.450232 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARTRES - Bd Foch - 129905", + "ref:EU:EVSE": "FRS28E12990", + "ref": "FRS28E12990", + "name": "CHARTRES - Bd Foch - 129905", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref:EU:EVSE": "FRIONE45160", + "ref": "FRIONE45160", + "name": "Meyrargues", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.973989, + 50.638442 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LILLE", + "ref:EU:EVSE": "FRCPIE6664735", + "ref": "FRCPIE6664735", + "name": "SONEPAR LILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.973989, + 50.638442 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LILLE", + "ref:EU:EVSE": "FRCPIE6664735", + "ref": "FRCPIE6664735", + "name": "SONEPAR LILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48426, + 48.24397 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE GAULT SAINT DENIS - Place de l'église - 134509", + "ref:EU:EVSE": "FRS28E13450", + "ref": "FRS28E13450", + "name": "LE GAULT SAINT DENIS - Place de l'église - 134509", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.598126, + 47.273001 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ARTANNES SUR INDRE 9051 - Place de la Liberté", + "ref:EU:EVSE": "FRS37E905", + "ref": "FRS37E905", + "name": "ARTANNES SUR INDRE 9051 - Place de la Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.598126, + 47.273001 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ARTANNES SUR INDRE 9051 - Place de la Liberté", + "ref:EU:EVSE": "FRS37E905", + "ref": "FRS37E905", + "name": "ARTANNES SUR INDRE 9051 - Place de la Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref:EU:EVSE": "FRIONE4516", + "ref": "FRIONE4516", + "name": "Meyrargues", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref:EU:EVSE": "FRIONE45161", + "ref": "FRIONE45161", + "name": "Meyrargues", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref:EU:EVSE": "FRIONE45161", + "ref": "FRIONE45161", + "name": "Meyrargues", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref:EU:EVSE": "FRIONE45161", + "ref": "FRIONE45161", + "name": "Meyrargues", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.239974, + 47.671469 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE VENDOMOISE 3803", + "ref:EU:EVSE": "FRS41E380", + "ref": "FRS41E380", + "name": "LA CHAPELLE VENDOMOISE 3803", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.239974, + 47.671469 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE VENDOMOISE 3803", + "ref:EU:EVSE": "FRS41E380", + "ref": "FRS41E380", + "name": "LA CHAPELLE VENDOMOISE 3803", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.63058, + 50.540027 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BIOPATH HDF BETHUNE", + "ref:EU:EVSE": "FRCPIE6742035", + "ref": "FRCPIE6742035", + "name": "BIOPATH HDF BETHUNE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7737244, + 49.2429735 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire du Domaine d'Harcourt HW", + "ref:EU:EVSE": "FRSHEE79", + "ref": "FRSHEE79", + "name": "Shell Aire du Domaine d'Harcourt HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.332896, + 47.179275 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Pont Chêne d'Argent", + "ref:EU:EVSE": "FRFASE330280", + "ref": "FRFASE330280", + "name": "Aire de Pont Chêne d'Argent", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.332896, + 47.179275 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Pont Chêne d'Argent", + "ref:EU:EVSE": "FRFASE330280", + "ref": "FRFASE330280", + "name": "Aire de Pont Chêne d'Argent", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.332896, + 47.179275 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Pont Chêne d'Argent", + "ref:EU:EVSE": "FRFASE330280", + "ref": "FRFASE330280", + "name": "Aire de Pont Chêne d'Argent", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.332896, + 47.179275 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Pont Chêne d'Argent", + "ref:EU:EVSE": "FRFASE330280", + "ref": "FRFASE330280", + "name": "Aire de Pont Chêne d'Argent", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7737244, + 49.2429735 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire du Domaine d'Harcourt HW", + "ref:EU:EVSE": "FRSHEE80", + "ref": "FRSHEE80", + "name": "Shell Aire du Domaine d'Harcourt HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7737244, + 49.2429735 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire du Domaine d'Harcourt HW", + "ref:EU:EVSE": "FRSHEE80", + "ref": "FRSHEE80", + "name": "Shell Aire du Domaine d'Harcourt HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7737244, + 49.2429735 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire du Domaine d'Harcourt HW", + "ref:EU:EVSE": "FRSHEE80", + "ref": "FRSHEE80", + "name": "Shell Aire du Domaine d'Harcourt HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7737244, + 49.2429735 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire du Domaine d'Harcourt HW", + "ref:EU:EVSE": "FRSHEE80", + "ref": "FRSHEE80", + "name": "Shell Aire du Domaine d'Harcourt HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7737244, + 49.2429735 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire du Domaine d'Harcourt HW", + "ref:EU:EVSE": "FRSHEE79", + "ref": "FRSHEE79", + "name": "Shell Aire du Domaine d'Harcourt HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.299441, + 48.993908 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT SOISY", + "ref:EU:EVSE": "FRCPIE6654305", + "ref": "FRCPIE6654305", + "name": "SONEPAR CONNECT SOISY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13248609, + 48.40772761 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE THIEULIN - Rue de la mairie - 134175", + "ref:EU:EVSE": "FRS28E13417", + "ref": "FRS28E13417", + "name": "LE THIEULIN - Rue de la mairie - 134175", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.299441, + 48.993908 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT SOISY", + "ref:EU:EVSE": "FRCPIE6654305", + "ref": "FRCPIE6654305", + "name": "SONEPAR CONNECT SOISY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.930531, + 45.903285 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT SAINT-JUNIEN", + "ref:EU:EVSE": "FRCPIE6712645", + "ref": "FRCPIE6712645", + "name": "SONEPAR CONNECT SAINT-JUNIEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.930531, + 45.903285 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT SAINT-JUNIEN", + "ref:EU:EVSE": "FRCPIE6712645", + "ref": "FRCPIE6712645", + "name": "SONEPAR CONNECT SAINT-JUNIEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.72891209, + 47.44048231 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Écot Sud", + "ref:EU:EVSE": "FRFASE330270", + "ref": "FRFASE330270", + "name": "Aire d’Écot Sud", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-30", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.72891209, + 47.44048231 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Écot Sud", + "ref:EU:EVSE": "FRFASE330270", + "ref": "FRFASE330270", + "name": "Aire d’Écot Sud", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-30", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.72891209, + 47.44048231 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Écot Sud", + "ref:EU:EVSE": "FRFASE330270", + "ref": "FRFASE330270", + "name": "Aire d’Écot Sud", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-30", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.72891209, + 47.44048231 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Écot Sud", + "ref:EU:EVSE": "FRFASE330270", + "ref": "FRFASE330270", + "name": "Aire d’Écot Sud", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-30", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70014885, + 43.99972129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Sud", + "ref:EU:EVSE": "FRIONE4053", + "ref": "FRIONE4053", + "name": "Tavel Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70014885, + 43.99972129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Sud", + "ref:EU:EVSE": "FRIONE40530", + "ref": "FRIONE40530", + "name": "Tavel Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.593695, + 47.404129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Fondettes 7613 - Rue de l'Aubrière", + "ref:EU:EVSE": "FRS37E761", + "ref": "FRS37E761", + "name": "Fondettes 7613 - Rue de l'Aubrière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.593695, + 47.404129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Fondettes 7613 - Rue de l'Aubrière", + "ref:EU:EVSE": "FRS37E761", + "ref": "FRS37E761", + "name": "Fondettes 7613 - Rue de l'Aubrière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.54027, + 49.654708 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Launois sur Vence - 1 rue Louis Joly - 129231", + "ref:EU:EVSE": "FRS08E12923", + "ref": "FRS08E12923", + "name": "Launois sur Vence - 1 rue Louis Joly - 129231", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-23", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.54027, + 49.654708 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Launois sur Vence - 1 rue Louis Joly - 129231", + "ref:EU:EVSE": "FRS08E12923", + "ref": "FRS08E12923", + "name": "Launois sur Vence - 1 rue Louis Joly - 129231", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-23", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01794363, + 48.543534 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Dourdan", + "ref:EU:EVSE": "FRIENE007902", + "ref": "FRIENE007902", + "name": "Dourdan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01794363, + 48.543534 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Dourdan", + "ref:EU:EVSE": "FRIENE007902", + "ref": "FRIENE007902", + "name": "Dourdan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01794363, + 48.543534 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Dourdan", + "ref:EU:EVSE": "FRIENE007901", + "ref": "FRIENE007901", + "name": "Dourdan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01794363, + 48.543534 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Dourdan", + "ref:EU:EVSE": "FRIENE007901", + "ref": "FRIENE007901", + "name": "Dourdan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598593, + 43.42185 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lacq Audéjos Sud", + "ref:EU:EVSE": "FRIONE4028", + "ref": "FRIONE4028", + "name": "Lacq Audéjos Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598593, + 43.42185 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lacq Audéjos Sud", + "ref:EU:EVSE": "FRIONE40280", + "ref": "FRIONE40280", + "name": "Lacq Audéjos Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598593, + 43.42185 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lacq Audéjos Sud", + "ref:EU:EVSE": "FRIONE40280", + "ref": "FRIONE40280", + "name": "Lacq Audéjos Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598593, + 43.42185 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lacq Audéjos Sud", + "ref:EU:EVSE": "FRIONE40280", + "ref": "FRIONE40280", + "name": "Lacq Audéjos Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598593, + 43.42185 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lacq Audéjos Sud", + "ref:EU:EVSE": "FRIONE40280", + "ref": "FRIONE40280", + "name": "Lacq Audéjos Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.133247, + 48.225489 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Troyes Sud", + "ref:EU:EVSE": "FRIONE4380", + "ref": "FRIONE4380", + "name": "Troyes Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.133247, + 48.225489 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Troyes Sud", + "ref:EU:EVSE": "FRIONE43800", + "ref": "FRIONE43800", + "name": "Troyes Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.133247, + 48.225489 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Troyes Sud", + "ref:EU:EVSE": "FRIONE43800", + "ref": "FRIONE43800", + "name": "Troyes Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.133247, + 48.225489 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Troyes Sud", + "ref:EU:EVSE": "FRIONE43800", + "ref": "FRIONE43800", + "name": "Troyes Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.133247, + 48.225489 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Troyes Sud", + "ref:EU:EVSE": "FRIONE43800", + "ref": "FRIONE43800", + "name": "Troyes Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.133247, + 48.225489 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Troyes Sud", + "ref:EU:EVSE": "FRIONE43800", + "ref": "FRIONE43800", + "name": "Troyes Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.133247, + 48.225489 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Troyes Sud", + "ref:EU:EVSE": "FRIONE43800", + "ref": "FRIONE43800", + "name": "Troyes Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.382251, + 48.600134 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TREMBLAY LES VILLAGES - Rue Taugourdeau - 130903", + "ref:EU:EVSE": "FRS28E13090", + "ref": "FRS28E13090", + "name": "TREMBLAY LES VILLAGES - Rue Taugourdeau - 130903", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608736, + 47.410482 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Fondettes 7736 - Rue Alfred de Musset", + "ref:EU:EVSE": "FRS37E773", + "ref": "FRS37E773", + "name": "Fondettes 7736 - Rue Alfred de Musset", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608736, + 47.410482 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Fondettes 7736 - Rue Alfred de Musset", + "ref:EU:EVSE": "FRS37E773", + "ref": "FRS37E773", + "name": "Fondettes 7736 - Rue Alfred de Musset", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22626, + 45.850533 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Loire", + "ref:EU:EVSE": "FRIONE42160", + "ref": "FRIONE42160", + "name": "Loire", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22626, + 45.850533 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Loire", + "ref:EU:EVSE": "FRIONE42160", + "ref": "FRIONE42160", + "name": "Loire", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22626, + 45.850533 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Loire", + "ref:EU:EVSE": "FRIONE4216", + "ref": "FRIONE4216", + "name": "Loire", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.622504, + 48.102864 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CESSON-SEVIGNE", + "ref:EU:EVSE": "FRCPIE6682045", + "ref": "FRCPIE6682045", + "name": "SONEPAR CESSON-SEVIGNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390459, + 47.077214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Plateau d'Auron - 98368", + "ref:EU:EVSE": "FRS18E9836", + "ref": "FRS18E9836", + "name": "BOURGES - Plateau d'Auron - 98368", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390459, + 47.077214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Plateau d'Auron - 98368", + "ref:EU:EVSE": "FRS18E9836", + "ref": "FRS18E9836", + "name": "BOURGES - Plateau d'Auron - 98368", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430694, + 49.061634 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 22", + "ref:EU:EVSE": "FRCPIE6736215", + "ref": "FRCPIE6736215", + "name": "RAW PARISGIVERNY 22", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430694, + 49.061634 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 22", + "ref:EU:EVSE": "FRCPIE6736215", + "ref": "FRCPIE6736215", + "name": "RAW PARISGIVERNY 22", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430694, + 49.061634 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 22", + "ref:EU:EVSE": "FRCPIE6736125", + "ref": "FRCPIE6736125", + "name": "RAW PARISGIVERNY 22", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430694, + 49.061634 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 22", + "ref:EU:EVSE": "FRCPIE6736125", + "ref": "FRCPIE6736125", + "name": "RAW PARISGIVERNY 22", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430694, + 49.061634 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 22", + "ref:EU:EVSE": "FRCPIE6726605", + "ref": "FRCPIE6726605", + "name": "RAW PARISGIVERNY 22", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430694, + 49.061634 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 22", + "ref:EU:EVSE": "FRCPIE6726605", + "ref": "FRCPIE6726605", + "name": "RAW PARISGIVERNY 22", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.622504, + 48.102864 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CESSON-SEVIGNE", + "ref:EU:EVSE": "FRCPIE6682045", + "ref": "FRCPIE6682045", + "name": "SONEPAR CESSON-SEVIGNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589824, + 43.061587 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gourdan Polignan", + "ref:EU:EVSE": "FRIONE4606", + "ref": "FRIONE4606", + "name": "Gourdan Polignan", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432073, + 49.061104 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 63", + "ref:EU:EVSE": "FRCPIE6737325", + "ref": "FRCPIE6737325", + "name": "RAW PARISGIVERNY 63", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589824, + 43.061587 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gourdan Polignan", + "ref:EU:EVSE": "FRIONE46060", + "ref": "FRIONE46060", + "name": "Gourdan Polignan", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589824, + 43.061587 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gourdan Polignan", + "ref:EU:EVSE": "FRIONE46060", + "ref": "FRIONE46060", + "name": "Gourdan Polignan", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589824, + 43.061587 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gourdan Polignan", + "ref:EU:EVSE": "FRIONE46060", + "ref": "FRIONE46060", + "name": "Gourdan Polignan", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589824, + 43.061587 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gourdan Polignan", + "ref:EU:EVSE": "FRIONE46060", + "ref": "FRIONE46060", + "name": "Gourdan Polignan", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432073, + 49.061104 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 63", + "ref:EU:EVSE": "FRCPIE6737415", + "ref": "FRCPIE6737415", + "name": "RAW PARISGIVERNY 63", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432073, + 49.061104 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 63", + "ref:EU:EVSE": "FRCPIE6737415", + "ref": "FRCPIE6737415", + "name": "RAW PARISGIVERNY 63", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432073, + 49.061104 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 63", + "ref:EU:EVSE": "FRCPIE6737375", + "ref": "FRCPIE6737375", + "name": "RAW PARISGIVERNY 63", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432073, + 49.061104 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 63", + "ref:EU:EVSE": "FRCPIE6737375", + "ref": "FRCPIE6737375", + "name": "RAW PARISGIVERNY 63", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432073, + 49.061104 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 63", + "ref:EU:EVSE": "FRCPIE6737345", + "ref": "FRCPIE6737345", + "name": "RAW PARISGIVERNY 63", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.262372, + 45.790203 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERUPDC BORNE 1", + "ref:EU:EVSE": "FRCPIE6750405", + "ref": "FRCPIE6750405", + "name": "SUPERUPDC BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.262372, + 45.790203 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERUPDC BORNE 1", + "ref:EU:EVSE": "FRCPIE6750405", + "ref": "FRCPIE6750405", + "name": "SUPERUPDC BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39293, + 47.09662 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Parc Comitec - 93955", + "ref:EU:EVSE": "FRS18E9395", + "ref": "FRS18E9395", + "name": "BOURGES - Parc Comitec - 93955", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39293, + 47.09662 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Parc Comitec - 93955", + "ref:EU:EVSE": "FRS18E9395", + "ref": "FRS18E9395", + "name": "BOURGES - Parc Comitec - 93955", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32158, + 47.06273 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE ST URSIN - Mairie - 108359", + "ref:EU:EVSE": "FRS18E10836", + "ref": "FRS18E10836", + "name": "LA CHAPELLE ST URSIN - Mairie - 108359", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32158, + 47.06273 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE ST URSIN - Mairie - 108359", + "ref:EU:EVSE": "FRS18E10835", + "ref": "FRS18E10835", + "name": "LA CHAPELLE ST URSIN - Mairie - 108359", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.385027, + 48.182481 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BONNEVAL - Promenade du Mail - 129287", + "ref:EU:EVSE": "FRS28E12928", + "ref": "FRS28E12928", + "name": "BONNEVAL - Promenade du Mail - 129287", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431281, + 49.06124 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 10", + "ref:EU:EVSE": "FRCPIE6726655", + "ref": "FRCPIE6726655", + "name": "RAW PARISGIVERNY 10", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431281, + 49.06124 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 10", + "ref:EU:EVSE": "FRCPIE6726655", + "ref": "FRCPIE6726655", + "name": "RAW PARISGIVERNY 10", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18557399, + 46.79318772 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CELLE-CONDE - Mairie - 148843", + "ref:EU:EVSE": "FRS18E14884", + "ref": "FRS18E14884", + "name": "LA CELLE-CONDE - Mairie - 148843", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18557399, + 46.79318772 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CELLE-CONDE - Mairie - 148843", + "ref:EU:EVSE": "FRS18E14884", + "ref": "FRS18E14884", + "name": "LA CELLE-CONDE - Mairie - 148843", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.262097, + 45.790201 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERUPDC BORNE 4", + "ref:EU:EVSE": "FRCPIE6752825", + "ref": "FRCPIE6752825", + "name": "SUPERUPDC BORNE 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.262097, + 45.790201 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERUPDC BORNE 4", + "ref:EU:EVSE": "FRCPIE6752825", + "ref": "FRCPIE6752825", + "name": "SUPERUPDC BORNE 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.262097, + 45.790201 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERUPDC BORNE 4", + "ref:EU:EVSE": "FRCPIE6752805", + "ref": "FRCPIE6752805", + "name": "SUPERUPDC BORNE 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.262097, + 45.790201 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERUPDC BORNE 4", + "ref:EU:EVSE": "FRCPIE6752805", + "ref": "FRCPIE6752805", + "name": "SUPERUPDC BORNE 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.262097, + 45.790201 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERUPDC BORNE 4", + "ref:EU:EVSE": "FRCPIE6751445", + "ref": "FRCPIE6751445", + "name": "SUPERUPDC BORNE 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.262097, + 45.790201 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERUPDC BORNE 4", + "ref:EU:EVSE": "FRCPIE6751445", + "ref": "FRCPIE6751445", + "name": "SUPERUPDC BORNE 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.415632, + 47.08144 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - LAHITOLLE - 96889", + "ref:EU:EVSE": "FRS18E9689", + "ref": "FRS18E9689", + "name": "BOURGES - LAHITOLLE - 96889", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.415632, + 47.08144 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - LAHITOLLE - 96889", + "ref:EU:EVSE": "FRS18E9688", + "ref": "FRS18E9688", + "name": "BOURGES - LAHITOLLE - 96889", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.392645, + 47.821051 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARCHENOIR 2930 - Route de Blois", + "ref:EU:EVSE": "FRS41E13515", + "ref": "FRS41E13515", + "name": "MARCHENOIR 2930 - Route de Blois", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.392645, + 47.821051 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARCHENOIR 2930 - Route de Blois", + "ref:EU:EVSE": "FRS41E13515", + "ref": "FRS41E13515", + "name": "MARCHENOIR 2930 - Route de Blois", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86274734, + 45.74865449 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ALPTIS 25CAT PLACE 35 36", + "ref:EU:EVSE": "FRCPIE6507275", + "ref": "FRCPIE6507275", + "name": "ALPTIS 25CAT PLACE 35 36", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86274734, + 45.74865449 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ALPTIS 25CAT PLACE 35 36", + "ref:EU:EVSE": "FRCPIE6507275", + "ref": "FRCPIE6507275", + "name": "ALPTIS 25CAT PLACE 35 36", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432073, + 49.061104 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 63", + "ref:EU:EVSE": "FRCPIE6737345", + "ref": "FRCPIE6737345", + "name": "RAW PARISGIVERNY 63", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432073, + 49.061104 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 63", + "ref:EU:EVSE": "FRCPIE6737325", + "ref": "FRCPIE6737325", + "name": "RAW PARISGIVERNY 63", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586006, + 44.369325 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rodez", + "ref:EU:EVSE": "FRIONE45940", + "ref": "FRIONE45940", + "name": "Rodez", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.437891, + 47.491274 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUBIGNY-SUR-NERE - Gymnase - 147205", + "ref:EU:EVSE": "FRS18E14720", + "ref": "FRS18E14720", + "name": "AUBIGNY-SUR-NERE - Gymnase - 147205", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212795, + 45.611787 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "l'Isle-d'Abeau", + "ref:EU:EVSE": "FRIONE41250", + "ref": "FRIONE41250", + "name": "l'Isle-d'Abeau", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212795, + 45.611787 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "l'Isle-d'Abeau", + "ref:EU:EVSE": "FRIONE41250", + "ref": "FRIONE41250", + "name": "l'Isle-d'Abeau", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09289, + 49.34888 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED DEAUVILLE", + "ref:EU:EVSE": "FRCPIE6695555", + "ref": "FRCPIE6695555", + "name": "CGED DEAUVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09289, + 49.34888 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED DEAUVILLE", + "ref:EU:EVSE": "FRCPIE6695555", + "ref": "FRCPIE6695555", + "name": "CGED DEAUVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.651837, + 47.032703 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVORD - Alouettes - 206381", + "ref:EU:EVSE": "FRS18E20638", + "ref": "FRS18E20638", + "name": "AVORD - Alouettes - 206381", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.651837, + 47.032703 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVORD - Alouettes - 206381", + "ref:EU:EVSE": "FRS18E20638", + "ref": "FRS18E20638", + "name": "AVORD - Alouettes - 206381", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.810449, + 45.317662 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CHANAS", + "ref:EU:EVSE": "FRCPIE6632585", + "ref": "FRCPIE6632585", + "name": "SONEPAR CHANAS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.810449, + 45.317662 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CHANAS", + "ref:EU:EVSE": "FRCPIE6632585", + "ref": "FRCPIE6632585", + "name": "SONEPAR CHANAS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.437891, + 47.491274 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUBIGNY-SUR-NERE - Gymnase - 147205", + "ref:EU:EVSE": "FRS18E14720", + "ref": "FRS18E14720", + "name": "AUBIGNY-SUR-NERE - Gymnase - 147205", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046277, + 46.907568 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "APREMONT - Parking de l'église - 201975", + "ref:EU:EVSE": "FRS18E20197", + "ref": "FRS18E20197", + "name": "APREMONT - Parking de l'église - 201975", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.481157, + 48.013685 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEMAURY - Place Saint Martin - 134823", + "ref:EU:EVSE": "FRS28E13482", + "ref": "FRS28E13482", + "name": "VILLEMAURY - Place Saint Martin - 134823", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046277, + 46.907568 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "APREMONT - Parking de l'église - 201975", + "ref:EU:EVSE": "FRS18E20197", + "ref": "FRS18E20197", + "name": "APREMONT - Parking de l'église - 201975", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3184578, + 47.22576477 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ALLOGNY - Rue de l'abreuvoir - 186205", + "ref:EU:EVSE": "FRS18E18620", + "ref": "FRS18E18620", + "name": "ALLOGNY - Rue de l'abreuvoir - 186205", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3184578, + 47.22576477 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ALLOGNY - Rue de l'abreuvoir - 186205", + "ref:EU:EVSE": "FRS18E18620", + "ref": "FRS18E18620", + "name": "ALLOGNY - Rue de l'abreuvoir - 186205", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56562948, + 47.19505287 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Les Aix d'Angillon - Rte de Bourges - 205346", + "ref:EU:EVSE": "FRS18E20534", + "ref": "FRS18E20534", + "name": "Les Aix d'Angillon - Rte de Bourges - 205346", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56562948, + 47.19505287 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Les Aix d'Angillon - Rte de Bourges - 205346", + "ref:EU:EVSE": "FRS18E20534", + "ref": "FRS18E20534", + "name": "Les Aix d'Angillon - Rte de Bourges - 205346", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586006, + 44.369325 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rodez", + "ref:EU:EVSE": "FRIONE4594", + "ref": "FRIONE4594", + "name": "Rodez", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586006, + 44.369325 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rodez", + "ref:EU:EVSE": "FRIONE45940", + "ref": "FRIONE45940", + "name": "Rodez", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586006, + 44.369325 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rodez", + "ref:EU:EVSE": "FRIONE45940", + "ref": "FRIONE45940", + "name": "Rodez", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586006, + 44.369325 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rodez", + "ref:EU:EVSE": "FRIONE45940", + "ref": "FRIONE45940", + "name": "Rodez", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212795, + 45.611787 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "l'Isle-d'Abeau", + "ref:EU:EVSE": "FRIONE41250", + "ref": "FRIONE41250", + "name": "l'Isle-d'Abeau", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212795, + 45.611787 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "l'Isle-d'Abeau", + "ref:EU:EVSE": "FRIONE41250", + "ref": "FRIONE41250", + "name": "l'Isle-d'Abeau", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212795, + 45.611787 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "l'Isle-d'Abeau", + "ref:EU:EVSE": "FRIONE4125", + "ref": "FRIONE4125", + "name": "l'Isle-d'Abeau", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.729526, + 47.082201 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BAUGY - Rue de la Halle - 206419", + "ref:EU:EVSE": "FRS18E20641", + "ref": "FRS18E20641", + "name": "BAUGY - Rue de la Halle - 206419", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.005494, + 43.56734 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ITM PUYLAURENS BRVE ITM 81", + "ref:EU:EVSE": "FRCPIE6761165", + "ref": "FRCPIE6761165", + "name": "ITM PUYLAURENS BRVE ITM 81", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.005494, + 43.56734 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ITM PUYLAURENS BRVE ITM 81", + "ref:EU:EVSE": "FRCPIE6761165", + "ref": "FRCPIE6761165", + "name": "ITM PUYLAURENS BRVE ITM 81", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431669, + 49.061392 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 21", + "ref:EU:EVSE": "FRCPIE6726665", + "ref": "FRCPIE6726665", + "name": "RAW PARISGIVERNY 21", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431669, + 49.061392 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 21", + "ref:EU:EVSE": "FRCPIE6726665", + "ref": "FRCPIE6726665", + "name": "RAW PARISGIVERNY 21", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430869, + 49.060816 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 15", + "ref:EU:EVSE": "FRCPIE6738105", + "ref": "FRCPIE6738105", + "name": "RAW PARISGIVERNY 15", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430869, + 49.060816 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 15", + "ref:EU:EVSE": "FRCPIE6738105", + "ref": "FRCPIE6738105", + "name": "RAW PARISGIVERNY 15", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430869, + 49.060816 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 15", + "ref:EU:EVSE": "FRCPIE6736765", + "ref": "FRCPIE6736765", + "name": "RAW PARISGIVERNY 15", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430869, + 49.060816 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 15", + "ref:EU:EVSE": "FRCPIE6736765", + "ref": "FRCPIE6736765", + "name": "RAW PARISGIVERNY 15", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430869, + 49.060816 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 15", + "ref:EU:EVSE": "FRCPIE6736465", + "ref": "FRCPIE6736465", + "name": "RAW PARISGIVERNY 15", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430869, + 49.060816 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 15", + "ref:EU:EVSE": "FRCPIE6736465", + "ref": "FRCPIE6736465", + "name": "RAW PARISGIVERNY 15", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430869, + 49.060816 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 15", + "ref:EU:EVSE": "FRCPIE6736415", + "ref": "FRCPIE6736415", + "name": "RAW PARISGIVERNY 15", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430869, + 49.060816 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 15", + "ref:EU:EVSE": "FRCPIE6736415", + "ref": "FRCPIE6736415", + "name": "RAW PARISGIVERNY 15", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.730751, + 46.895598 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLET - Château - 186579", + "ref:EU:EVSE": "FRS18E18658", + "ref": "FRS18E18658", + "name": "BLET - Château - 186579", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.730751, + 46.895598 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLET - Château - 186579", + "ref:EU:EVSE": "FRS18E18657", + "ref": "FRS18E18657", + "name": "BLET - Château - 186579", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.533494, + 48.647444 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOGENT-LE-ROI -Pkg du Marché aux Chevaux - 139383", + "ref:EU:EVSE": "FRS28E13969", + "ref": "FRS28E13969", + "name": "NOGENT-LE-ROI -Pkg du Marché aux Chevaux - 139383", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.533494, + 48.647444 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOGENT-LE-ROI -Pkg du Marché aux Chevaux - 139383", + "ref:EU:EVSE": "FRS28E13938", + "ref": "FRS28E13938", + "name": "NOGENT-LE-ROI -Pkg du Marché aux Chevaux - 139383", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528385, + 47.532264 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLANCAFORT-Place de la Mairie-150331", + "ref:EU:EVSE": "FRS18E15033", + "ref": "FRS18E15033", + "name": "BLANCAFORT-Place de la Mairie-150331", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528385, + 47.532264 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLANCAFORT-Place de la Mairie-150331", + "ref:EU:EVSE": "FRS18E15033", + "ref": "FRS18E15033", + "name": "BLANCAFORT-Place de la Mairie-150331", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.729526, + 47.082201 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BAUGY - Rue de la Halle - 206419", + "ref:EU:EVSE": "FRS18E20641", + "ref": "FRS18E20641", + "name": "BAUGY - Rue de la Halle - 206419", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70014885, + 43.99972129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Sud", + "ref:EU:EVSE": "FRIONE40530", + "ref": "FRIONE40530", + "name": "Tavel Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70014885, + 43.99972129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Sud", + "ref:EU:EVSE": "FRIONE40530", + "ref": "FRIONE40530", + "name": "Tavel Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8280004, + 45.27639194 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Est", + "ref:EU:EVSE": "FRIONE41290", + "ref": "FRIONE41290", + "name": "Saint-Rambert Est", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.166865, + 47.807101 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sarthe Nord", + "ref:EU:EVSE": "FRIONE40330", + "ref": "FRIONE40330", + "name": "Sarthe Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.990385, + 43.423878 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Cambarette Nord", + "ref:EU:EVSE": "FRIONE40450", + "ref": "FRIONE40450", + "name": "Cambarette Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.990385, + 43.423878 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Cambarette Nord", + "ref:EU:EVSE": "FRIONE40450", + "ref": "FRIONE40450", + "name": "Cambarette Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.916704, + 47.32298 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Athée sur Cher 10838 - Place de la Mairie 2", + "ref:EU:EVSE": "FRS37E1083", + "ref": "FRS37E1083", + "name": "Athée sur Cher 10838 - Place de la Mairie 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.916704, + 47.32298 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Athée sur Cher 10838 - Place de la Mairie 2", + "ref:EU:EVSE": "FRS37E1083", + "ref": "FRS37E1083", + "name": "Athée sur Cher 10838 - Place de la Mairie 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.126858, + 47.237775 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHOUZE SUR LOIRE 5520 - PLACE DE L'EGLISE", + "ref:EU:EVSE": "FRS37E552", + "ref": "FRS37E552", + "name": "CHOUZE SUR LOIRE 5520 - PLACE DE L'EGLISE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.126858, + 47.237775 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHOUZE SUR LOIRE 5520 - PLACE DE L'EGLISE", + "ref:EU:EVSE": "FRS37E552", + "ref": "FRS37E552", + "name": "CHOUZE SUR LOIRE 5520 - PLACE DE L'EGLISE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.166865, + 47.807101 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sarthe Nord", + "ref:EU:EVSE": "FRIONE4033", + "ref": "FRIONE4033", + "name": "Sarthe Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.166865, + 47.807101 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sarthe Nord", + "ref:EU:EVSE": "FRIONE40330", + "ref": "FRIONE40330", + "name": "Sarthe Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.166865, + 47.807101 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sarthe Nord", + "ref:EU:EVSE": "FRIONE40330", + "ref": "FRIONE40330", + "name": "Sarthe Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.166865, + 47.807101 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sarthe Nord", + "ref:EU:EVSE": "FRIONE40330", + "ref": "FRIONE40330", + "name": "Sarthe Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.990385, + 43.423878 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Cambarette Nord", + "ref:EU:EVSE": "FRIONE40450", + "ref": "FRIONE40450", + "name": "Cambarette Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49908, + 47.444663 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PERNAY 5514 - RUE DE LA MAIRIE", + "ref:EU:EVSE": "FRS37E551", + "ref": "FRS37E551", + "name": "PERNAY 5514 - RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49908, + 47.444663 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PERNAY 5514 - RUE DE LA MAIRIE", + "ref:EU:EVSE": "FRS37E551", + "ref": "FRS37E551", + "name": "PERNAY 5514 - RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.744771, + 47.545012 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOUZILLY 5512 - RUE DU PRIEURE", + "ref:EU:EVSE": "FRS37E551", + "ref": "FRS37E551", + "name": "NOUZILLY 5512 - RUE DU PRIEURE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.744771, + 47.545012 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOUZILLY 5512 - RUE DU PRIEURE", + "ref:EU:EVSE": "FRS37E551", + "ref": "FRS37E551", + "name": "NOUZILLY 5512 - RUE DU PRIEURE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6741075", + "ref": "FRCPIE6741075", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6741075", + "ref": "FRCPIE6741075", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6740885", + "ref": "FRCPIE6740885", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6740885", + "ref": "FRCPIE6740885", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6740875", + "ref": "FRCPIE6740875", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.990385, + 43.423878 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Cambarette Nord", + "ref:EU:EVSE": "FRIONE40450", + "ref": "FRIONE40450", + "name": "Cambarette Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.990385, + 43.423878 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Cambarette Nord", + "ref:EU:EVSE": "FRIONE4045", + "ref": "FRIONE4045", + "name": "Cambarette Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.122062, + 47.509629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ENVSN NORD", + "ref:EU:EVSE": "FRCPIE6588565", + "ref": "FRCPIE6588565", + "name": "ENVSN NORD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379636, + 50.572433 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint Hilaire Cottes", + "ref:EU:EVSE": "FRFASE331040", + "ref": "FRFASE331040", + "name": "Aire de Saint Hilaire Cottes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.070357, + 50.225478 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Baralle", + "ref:EU:EVSE": "FRIONE44000", + "ref": "FRIONE44000", + "name": "Baralle", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.070357, + 50.225478 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Baralle", + "ref:EU:EVSE": "FRIONE44000", + "ref": "FRIONE44000", + "name": "Baralle", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.642716, + 43.075236 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Verniolle | Super U, Parc Commercial Delta-Sud", + "ref:EU:EVSE": "FRIONE44660", + "ref": "FRIONE44660", + "name": "Verniolle | Super U, Parc Commercial Delta-Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.242347, + 48.58155 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUNEUF EN THYMERAIS - Halles - 134333", + "ref:EU:EVSE": "FRS28E13433", + "ref": "FRS28E13433", + "name": "CHATEAUNEUF EN THYMERAIS - Halles - 134333", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.097127, + 49.110221 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR SARREGUEMINES", + "ref:EU:EVSE": "FRCPIE6608715", + "ref": "FRCPIE6608715", + "name": "SONEPAR SARREGUEMINES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.097127, + 49.110221 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR SARREGUEMINES", + "ref:EU:EVSE": "FRCPIE6608715", + "ref": "FRCPIE6608715", + "name": "SONEPAR SARREGUEMINES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379636, + 50.572433 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint Hilaire Cottes", + "ref:EU:EVSE": "FRFASE331040", + "ref": "FRFASE331040", + "name": "Aire de Saint Hilaire Cottes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379636, + 50.572433 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint Hilaire Cottes", + "ref:EU:EVSE": "FRFASE331040", + "ref": "FRFASE331040", + "name": "Aire de Saint Hilaire Cottes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379636, + 50.572433 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint Hilaire Cottes", + "ref:EU:EVSE": "FRFASE331040", + "ref": "FRFASE331040", + "name": "Aire de Saint Hilaire Cottes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.208185, + 47.177919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT VILLAGE 5655 - Rue du Bourg neuf", + "ref:EU:EVSE": "FRS37E565", + "ref": "FRS37E565", + "name": "BEAUMONT VILLAGE 5655 - Rue du Bourg neuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40054, + 49.194108 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Périers", + "ref:EU:EVSE": "FRIENE003901", + "ref": "FRIENE003901", + "name": "Périers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.208185, + 47.177919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT VILLAGE 5655 - Rue du Bourg neuf", + "ref:EU:EVSE": "FRS37E565", + "ref": "FRS37E565", + "name": "BEAUMONT VILLAGE 5655 - Rue du Bourg neuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65359, + 47.03591 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVORD - Bibliothèque -112685", + "ref:EU:EVSE": "FRS18E20636", + "ref": "FRS18E20636", + "name": "AVORD - Bibliothèque -112685", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65359, + 47.03591 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVORD - Bibliothèque -112685", + "ref:EU:EVSE": "FRS18E20635", + "ref": "FRS18E20635", + "name": "AVORD - Bibliothèque -112685", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608911, + 47.469991 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARENTILLY 5579 - PLACE DE LA MAIRIE", + "ref:EU:EVSE": "FRS37E558", + "ref": "FRS37E558", + "name": "CHARENTILLY 5579 - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608911, + 47.469991 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARENTILLY 5579 - PLACE DE LA MAIRIE", + "ref:EU:EVSE": "FRS37E557", + "ref": "FRS37E557", + "name": "CHARENTILLY 5579 - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.69377, + 48.32822 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOISVILLE LA SAINT PERE - Pl République - 129052", + "ref:EU:EVSE": "FRS28E12905", + "ref": "FRS28E12905", + "name": "BOISVILLE LA SAINT PERE - Pl République - 129052", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40054, + 49.194108 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Périers", + "ref:EU:EVSE": "FRIENE003902", + "ref": "FRIENE003902", + "name": "Périers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40054, + 49.194108 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Périers", + "ref:EU:EVSE": "FRIENE003902", + "ref": "FRIENE003902", + "name": "Périers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40054, + 49.194108 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Périers", + "ref:EU:EVSE": "FRIENE003901", + "ref": "FRIENE003901", + "name": "Périers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6740875", + "ref": "FRCPIE6740875", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6740865", + "ref": "FRCPIE6740865", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6740865", + "ref": "FRCPIE6740865", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.644529, + 48.599459 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HANCHES - Rue de la barre - 134752", + "ref:EU:EVSE": "FRS28E13475", + "ref": "FRS28E13475", + "name": "HANCHES - Rue de la barre - 134752", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.872837, + 46.835669 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HU CHALLANS BORNE 1", + "ref:EU:EVSE": "FRCPIE6614515", + "ref": "FRCPIE6614515", + "name": "HU CHALLANS BORNE 1", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.872837, + 46.835669 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HU CHALLANS BORNE 1", + "ref:EU:EVSE": "FRCPIE6614515", + "ref": "FRCPIE6614515", + "name": "HU CHALLANS BORNE 1", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.872837, + 46.835669 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HU CHALLANS BORNE 1", + "ref:EU:EVSE": "FRCPIE6614505", + "ref": "FRCPIE6614505", + "name": "HU CHALLANS BORNE 1", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.872837, + 46.835669 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HU CHALLANS BORNE 1", + "ref:EU:EVSE": "FRCPIE6614465", + "ref": "FRCPIE6614465", + "name": "HU CHALLANS BORNE 1", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.872837, + 46.835669 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HU CHALLANS BORNE 1", + "ref:EU:EVSE": "FRCPIE6614465", + "ref": "FRCPIE6614465", + "name": "HU CHALLANS BORNE 1", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423609, + 43.29269 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR MARSEILLE", + "ref:EU:EVSE": "FRCPIE6676265", + "ref": "FRCPIE6676265", + "name": "SONEPAR MARSEILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423609, + 43.29269 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR MARSEILLE", + "ref:EU:EVSE": "FRCPIE6676265", + "ref": "FRCPIE6676265", + "name": "SONEPAR MARSEILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.988249, + 43.668879 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GERANIUMS OPIO BORNE 1", + "ref:EU:EVSE": "FRCPIE6755595", + "ref": "FRCPIE6755595", + "name": "GERANIUMS OPIO BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.988249, + 43.668879 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GERANIUMS OPIO BORNE 1", + "ref:EU:EVSE": "FRCPIE6755595", + "ref": "FRCPIE6755595", + "name": "GERANIUMS OPIO BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1344, + 45.78501 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CLERMONT-FER 1", + "ref:EU:EVSE": "FRCPIE6697565", + "ref": "FRCPIE6697565", + "name": "SONEPAR CONNECT CLERMONT-FER 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6740855", + "ref": "FRCPIE6740855", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1344, + 45.78501 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CLERMONT-FER 1", + "ref:EU:EVSE": "FRCPIE6697565", + "ref": "FRCPIE6697565", + "name": "SONEPAR CONNECT CLERMONT-FER 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225126, + 43.826979 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MSP CLARENSAC BORNE 1", + "ref:EU:EVSE": "FRCPIE6684665", + "ref": "FRCPIE6684665", + "name": "MSP CLARENSAC BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225126, + 43.826979 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MSP CLARENSAC BORNE 1", + "ref:EU:EVSE": "FRCPIE6684665", + "ref": "FRCPIE6684665", + "name": "MSP CLARENSAC BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8280004, + 45.27639194 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Est", + "ref:EU:EVSE": "FRIONE4129", + "ref": "FRIONE4129", + "name": "Saint-Rambert Est", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8280004, + 45.27639194 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Est", + "ref:EU:EVSE": "FRIONE41290", + "ref": "FRIONE41290", + "name": "Saint-Rambert Est", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8280004, + 45.27639194 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Est", + "ref:EU:EVSE": "FRIONE41290", + "ref": "FRIONE41290", + "name": "Saint-Rambert Est", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8280004, + 45.27639194 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Est", + "ref:EU:EVSE": "FRIONE41290", + "ref": "FRIONE41290", + "name": "Saint-Rambert Est", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8280004, + 45.27639194 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Est", + "ref:EU:EVSE": "FRIONE41290", + "ref": "FRIONE41290", + "name": "Saint-Rambert Est", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8280004, + 45.27639194 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Est", + "ref:EU:EVSE": "FRIONE41290", + "ref": "FRIONE41290", + "name": "Saint-Rambert Est", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.536712, + 43.247576 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 3 DC", + "ref:EU:EVSE": "FRCPIE6740725", + "ref": "FRCPIE6740725", + "name": "E.LECLERC BORNE 3 DC", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.536712, + 43.247576 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 3 DC", + "ref:EU:EVSE": "FRCPIE6740725", + "ref": "FRCPIE6740725", + "name": "E.LECLERC BORNE 3 DC", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.536712, + 43.247576 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 3 DC", + "ref:EU:EVSE": "FRCPIE6740745", + "ref": "FRCPIE6740745", + "name": "E.LECLERC BORNE 3 DC", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.536712, + 43.247576 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 3 DC", + "ref:EU:EVSE": "FRCPIE6740745", + "ref": "FRCPIE6740745", + "name": "E.LECLERC BORNE 3 DC", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6740855", + "ref": "FRCPIE6740855", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6740845", + "ref": "FRCPIE6740845", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6740845", + "ref": "FRCPIE6740845", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6740835", + "ref": "FRCPIE6740835", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6740835", + "ref": "FRCPIE6740835", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6740825", + "ref": "FRCPIE6740825", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6740825", + "ref": "FRCPIE6740825", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6740815", + "ref": "FRCPIE6740815", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537008, + 43.247782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 5 DC", + "ref:EU:EVSE": "FRCPIE6740815", + "ref": "FRCPIE6740815", + "name": "E.LECLERC BORNE 5 DC", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.536712, + 43.247576 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 3 DC", + "ref:EU:EVSE": "FRCPIE6741535", + "ref": "FRCPIE6741535", + "name": "E.LECLERC BORNE 3 DC", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.536712, + 43.247576 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 3 DC", + "ref:EU:EVSE": "FRCPIE6741535", + "ref": "FRCPIE6741535", + "name": "E.LECLERC BORNE 3 DC", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.536712, + 43.247576 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 3 DC", + "ref:EU:EVSE": "FRCPIE6741515", + "ref": "FRCPIE6741515", + "name": "E.LECLERC BORNE 3 DC", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.536712, + 43.247576 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 3 DC", + "ref:EU:EVSE": "FRCPIE6741515", + "ref": "FRCPIE6741515", + "name": "E.LECLERC BORNE 3 DC", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.536712, + 43.247576 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 3 DC", + "ref:EU:EVSE": "FRCPIE6740795", + "ref": "FRCPIE6740795", + "name": "E.LECLERC BORNE 3 DC", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.536712, + 43.247576 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 3 DC", + "ref:EU:EVSE": "FRCPIE6740795", + "ref": "FRCPIE6740795", + "name": "E.LECLERC BORNE 3 DC", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.536712, + 43.247576 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 3 DC", + "ref:EU:EVSE": "FRCPIE6740785", + "ref": "FRCPIE6740785", + "name": "E.LECLERC BORNE 3 DC", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.536712, + 43.247576 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 3 DC", + "ref:EU:EVSE": "FRCPIE6740785", + "ref": "FRCPIE6740785", + "name": "E.LECLERC BORNE 3 DC", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.536712, + 43.247576 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 3 DC", + "ref:EU:EVSE": "FRCPIE6740755", + "ref": "FRCPIE6740755", + "name": "E.LECLERC BORNE 3 DC", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.536712, + 43.247576 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 3 DC", + "ref:EU:EVSE": "FRCPIE6740755", + "ref": "FRCPIE6740755", + "name": "E.LECLERC BORNE 3 DC", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.070357, + 50.225478 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Baralle", + "ref:EU:EVSE": "FRIONE4400", + "ref": "FRIONE4400", + "name": "Baralle", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.167004, + 45.999881 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Groisy", + "ref:EU:EVSE": "FRFASE330940", + "ref": "FRFASE330940", + "name": "Aire de Groisy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-14", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.167004, + 45.999881 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Groisy", + "ref:EU:EVSE": "FRFASE330940", + "ref": "FRFASE330940", + "name": "Aire de Groisy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-14", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48274, + 47.10015 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St GERMAIN-DU-PUY - Eglise - 112986", + "ref:EU:EVSE": "FRS18E11298", + "ref": "FRS18E11298", + "name": "St GERMAIN-DU-PUY - Eglise - 112986", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.633507, + 48.992969 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rosny Nord", + "ref:EU:EVSE": "FRIONE43790", + "ref": "FRIONE43790", + "name": "Rosny Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.633507, + 48.992969 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rosny Nord", + "ref:EU:EVSE": "FRIONE43790", + "ref": "FRIONE43790", + "name": "Rosny Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.633507, + 48.992969 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rosny Nord", + "ref:EU:EVSE": "FRIONE43790", + "ref": "FRIONE43790", + "name": "Rosny Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.633507, + 48.992969 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rosny Nord", + "ref:EU:EVSE": "FRIONE43790", + "ref": "FRIONE43790", + "name": "Rosny Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.269339, + 46.203218 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "JALIX VLG BORNE 1", + "ref:EU:EVSE": "FRCPIE6733605", + "ref": "FRCPIE6733605", + "name": "JALIX VLG BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.269339, + 46.203218 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "JALIX VLG BORNE 1", + "ref:EU:EVSE": "FRCPIE6733605", + "ref": "FRCPIE6733605", + "name": "JALIX VLG BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8678, + 42.684685 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR PERPIGNAN", + "ref:EU:EVSE": "FRCPIE6634095", + "ref": "FRCPIE6634095", + "name": "SONEPAR PERPIGNAN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8678, + 42.684685 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR PERPIGNAN", + "ref:EU:EVSE": "FRCPIE6634095", + "ref": "FRCPIE6634095", + "name": "SONEPAR PERPIGNAN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48274, + 47.10015 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St GERMAIN-DU-PUY - Eglise - 112986", + "ref:EU:EVSE": "FRS18E11298", + "ref": "FRS18E11298", + "name": "St GERMAIN-DU-PUY - Eglise - 112986", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.089531, + 43.216129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Narbonne-Vinassan Nord", + "ref:EU:EVSE": "FRIONE4389", + "ref": "FRIONE4389", + "name": "Narbonne-Vinassan Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.399705, + 45.462082 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ST-ETIENNE3", + "ref:EU:EVSE": "FRCPIE6530215", + "ref": "FRCPIE6530215", + "name": "SONEPAR CONNECT ST-ETIENNE3", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.089531, + 43.216129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Narbonne-Vinassan Nord", + "ref:EU:EVSE": "FRIONE43890", + "ref": "FRIONE43890", + "name": "Narbonne-Vinassan Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.089531, + 43.216129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Narbonne-Vinassan Nord", + "ref:EU:EVSE": "FRIONE43890", + "ref": "FRIONE43890", + "name": "Narbonne-Vinassan Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.089531, + 43.216129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Narbonne-Vinassan Nord", + "ref:EU:EVSE": "FRIONE43890", + "ref": "FRIONE43890", + "name": "Narbonne-Vinassan Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.089531, + 43.216129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Narbonne-Vinassan Nord", + "ref:EU:EVSE": "FRIONE43890", + "ref": "FRIONE43890", + "name": "Narbonne-Vinassan Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.089531, + 43.216129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Narbonne-Vinassan Nord", + "ref:EU:EVSE": "FRIONE43890", + "ref": "FRIONE43890", + "name": "Narbonne-Vinassan Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.089531, + 43.216129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Narbonne-Vinassan Nord", + "ref:EU:EVSE": "FRIONE43890", + "ref": "FRIONE43890", + "name": "Narbonne-Vinassan Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.205198, + 46.152422 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SAG CHARGEPOINT BORNE 1", + "ref:EU:EVSE": "FRCPIE6741835", + "ref": "FRCPIE6741835", + "name": "SAG CHARGEPOINT BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.205198, + 46.152422 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SAG CHARGEPOINT BORNE 1", + "ref:EU:EVSE": "FRCPIE6741835", + "ref": "FRCPIE6741835", + "name": "SAG CHARGEPOINT BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.205198, + 46.152422 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SAG CHARGEPOINT BORNE 1", + "ref:EU:EVSE": "FRCPIE6741805", + "ref": "FRCPIE6741805", + "name": "SAG CHARGEPOINT BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.633507, + 48.992969 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rosny Nord", + "ref:EU:EVSE": "FRIONE4379", + "ref": "FRIONE4379", + "name": "Rosny Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856042, + 48.274978 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plaines de Beauce", + "ref:EU:EVSE": "FRIONE45930", + "ref": "FRIONE45930", + "name": "Plaines de Beauce", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856042, + 48.274978 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plaines de Beauce", + "ref:EU:EVSE": "FRIONE45930", + "ref": "FRIONE45930", + "name": "Plaines de Beauce", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856042, + 48.274978 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plaines de Beauce", + "ref:EU:EVSE": "FRIONE45930", + "ref": "FRIONE45930", + "name": "Plaines de Beauce", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.122062, + 47.509629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ENVSN NORD", + "ref:EU:EVSE": "FRCPIE6588565", + "ref": "FRCPIE6588565", + "name": "ENVSN NORD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3338292, + 47.1862674 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Pont Val de Saône", + "ref:EU:EVSE": "FRFASE330290", + "ref": "FRFASE330290", + "name": "Aire de Pont Val de Saône", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3338292, + 47.1862674 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Pont Val de Saône", + "ref:EU:EVSE": "FRFASE330290", + "ref": "FRFASE330290", + "name": "Aire de Pont Val de Saône", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3338292, + 47.1862674 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Pont Val de Saône", + "ref:EU:EVSE": "FRFASE330290", + "ref": "FRFASE330290", + "name": "Aire de Pont Val de Saône", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3338292, + 47.1862674 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Pont Val de Saône", + "ref:EU:EVSE": "FRFASE330290", + "ref": "FRFASE330290", + "name": "Aire de Pont Val de Saône", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.322448, + 47.44248 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAVIGNE-SUR-LATHAN 6558 - Rue de la gare", + "ref:EU:EVSE": "FRS37E655", + "ref": "FRS37E655", + "name": "SAVIGNE-SUR-LATHAN 6558 - Rue de la gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.322448, + 47.44248 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAVIGNE-SUR-LATHAN 6558 - Rue de la gare", + "ref:EU:EVSE": "FRS37E655", + "ref": "FRS37E655", + "name": "SAVIGNE-SUR-LATHAN 6558 - Rue de la gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.790964, + 47.502321 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONNAIE 6556 - Place Jean Baptiste Moreau", + "ref:EU:EVSE": "FRS37E655", + "ref": "FRS37E655", + "name": "MONNAIE 6556 - Place Jean Baptiste Moreau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.790964, + 47.502321 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONNAIE 6556 - Place Jean Baptiste Moreau", + "ref:EU:EVSE": "FRS37E655", + "ref": "FRS37E655", + "name": "MONNAIE 6556 - Place Jean Baptiste Moreau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.121673, + 47.508607 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ENVSN OUEST", + "ref:EU:EVSE": "FRCPIE6588525", + "ref": "FRCPIE6588525", + "name": "ENVSN OUEST", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.121673, + 47.508607 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ENVSN OUEST", + "ref:EU:EVSE": "FRCPIE6588525", + "ref": "FRCPIE6588525", + "name": "ENVSN OUEST", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.121673, + 47.508607 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ENVSN OUEST", + "ref:EU:EVSE": "FRCPIE6588515", + "ref": "FRCPIE6588515", + "name": "ENVSN OUEST", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.121673, + 47.508607 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ENVSN OUEST", + "ref:EU:EVSE": "FRCPIE6588515", + "ref": "FRCPIE6588515", + "name": "ENVSN OUEST", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46055656, + 48.67393864 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEMEUX SUR EURE - Rue de la libération - 134403", + "ref:EU:EVSE": "FRS28E13440", + "ref": "FRS28E13440", + "name": "VILLEMEUX SUR EURE - Rue de la libération - 134403", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.95679523, + 48.25514781 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT-LES-AUTELS - Rue du Gal. de Gaulle-139133", + "ref:EU:EVSE": "FRS28E13933", + "ref": "FRS28E13933", + "name": "BEAUMONT-LES-AUTELS - Rue du Gal. de Gaulle-139133", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87900427, + 48.4162747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINVILLE - Place Farcot - 130159", + "ref:EU:EVSE": "FRS28E13015", + "ref": "FRS28E13015", + "name": "SAINVILLE - Place Farcot - 130159", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856042, + 48.274978 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plaines de Beauce", + "ref:EU:EVSE": "FRIONE45930", + "ref": "FRIONE45930", + "name": "Plaines de Beauce", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856042, + 48.274978 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plaines de Beauce", + "ref:EU:EVSE": "FRIONE45930", + "ref": "FRIONE45930", + "name": "Plaines de Beauce", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856042, + 48.274978 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plaines de Beauce", + "ref:EU:EVSE": "FRIONE45930", + "ref": "FRIONE45930", + "name": "Plaines de Beauce", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.205198, + 46.152422 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SAG CHARGEPOINT BORNE 1", + "ref:EU:EVSE": "FRCPIE6741805", + "ref": "FRCPIE6741805", + "name": "SAG CHARGEPOINT BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.399705, + 45.462082 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ST-ETIENNE3", + "ref:EU:EVSE": "FRCPIE6530215", + "ref": "FRCPIE6530215", + "name": "SONEPAR CONNECT ST-ETIENNE3", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.167004, + 45.999881 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Groisy", + "ref:EU:EVSE": "FRFASE330940", + "ref": "FRFASE330940", + "name": "Aire de Groisy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-14", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772852, + 47.269214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 6", + "ref:EU:EVSE": "FRCPIE6746675", + "ref": "FRCPIE6746675", + "name": "SUPER U SEM BORNE 6", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76685137, + 46.13428529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Taponas", + "ref:EU:EVSE": "FRIONE40390", + "ref": "FRIONE40390", + "name": "Taponas", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76685137, + 46.13428529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Taponas", + "ref:EU:EVSE": "FRIONE40390", + "ref": "FRIONE40390", + "name": "Taponas", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772852, + 47.269214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 6", + "ref:EU:EVSE": "FRCPIE6746825", + "ref": "FRCPIE6746825", + "name": "SUPER U SEM BORNE 6", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772852, + 47.269214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 6", + "ref:EU:EVSE": "FRCPIE6746825", + "ref": "FRCPIE6746825", + "name": "SUPER U SEM BORNE 6", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772852, + 47.269214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 6", + "ref:EU:EVSE": "FRCPIE6746745", + "ref": "FRCPIE6746745", + "name": "SUPER U SEM BORNE 6", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772852, + 47.269214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 6", + "ref:EU:EVSE": "FRCPIE6746745", + "ref": "FRCPIE6746745", + "name": "SUPER U SEM BORNE 6", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772852, + 47.269214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 6", + "ref:EU:EVSE": "FRCPIE6746725", + "ref": "FRCPIE6746725", + "name": "SUPER U SEM BORNE 6", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772852, + 47.269214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 6", + "ref:EU:EVSE": "FRCPIE6746725", + "ref": "FRCPIE6746725", + "name": "SUPER U SEM BORNE 6", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772852, + 47.269214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SEM BORNE 6", + "ref:EU:EVSE": "FRCPIE6746675", + "ref": "FRCPIE6746675", + "name": "SUPER U SEM BORNE 6", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6564, + 47.3376 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JOUE LES TOURS 5907 - RUE DE LA GITONNIERE", + "ref:EU:EVSE": "FRS37E590", + "ref": "FRS37E590", + "name": "JOUE LES TOURS 5907 - RUE DE LA GITONNIERE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22454, + 47.813445 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Langres Noidant", + "ref:EU:EVSE": "FRIONE4091", + "ref": "FRIONE4091", + "name": "Langres Noidant", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6564, + 47.3376 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JOUE LES TOURS 5907 - RUE DE LA GITONNIERE", + "ref:EU:EVSE": "FRS37E590", + "ref": "FRS37E590", + "name": "JOUE LES TOURS 5907 - RUE DE LA GITONNIERE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86500418, + 46.42090355 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mâcon Saint-Albain", + "ref:EU:EVSE": "FRIONE4038", + "ref": "FRIONE4038", + "name": "Mâcon Saint-Albain", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86500418, + 46.42090355 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mâcon Saint-Albain", + "ref:EU:EVSE": "FRIONE40380", + "ref": "FRIONE40380", + "name": "Mâcon Saint-Albain", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86500418, + 46.42090355 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mâcon Saint-Albain", + "ref:EU:EVSE": "FRIONE40380", + "ref": "FRIONE40380", + "name": "Mâcon Saint-Albain", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86500418, + 46.42090355 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mâcon Saint-Albain", + "ref:EU:EVSE": "FRIONE40380", + "ref": "FRIONE40380", + "name": "Mâcon Saint-Albain", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86500418, + 46.42090355 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mâcon Saint-Albain", + "ref:EU:EVSE": "FRIONE40380", + "ref": "FRIONE40380", + "name": "Mâcon Saint-Albain", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86500418, + 46.42090355 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mâcon Saint-Albain", + "ref:EU:EVSE": "FRIONE40380", + "ref": "FRIONE40380", + "name": "Mâcon Saint-Albain", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86500418, + 46.42090355 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mâcon Saint-Albain", + "ref:EU:EVSE": "FRIONE40380", + "ref": "FRIONE40380", + "name": "Mâcon Saint-Albain", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.167004, + 45.999881 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Groisy", + "ref:EU:EVSE": "FRFASE330940", + "ref": "FRFASE330940", + "name": "Aire de Groisy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-14", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76685137, + 46.13428529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Taponas", + "ref:EU:EVSE": "FRIONE40390", + "ref": "FRIONE40390", + "name": "Taponas", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76685137, + 46.13428529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Taponas", + "ref:EU:EVSE": "FRIONE40390", + "ref": "FRIONE40390", + "name": "Taponas", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76685137, + 46.13428529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Taponas", + "ref:EU:EVSE": "FRIONE40390", + "ref": "FRIONE40390", + "name": "Taponas", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76685137, + 46.13428529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Taponas", + "ref:EU:EVSE": "FRIONE40390", + "ref": "FRIONE40390", + "name": "Taponas", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22454, + 47.813445 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Langres Noidant", + "ref:EU:EVSE": "FRIONE40910", + "ref": "FRIONE40910", + "name": "Langres Noidant", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22454, + 47.813445 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Langres Noidant", + "ref:EU:EVSE": "FRIONE40910", + "ref": "FRIONE40910", + "name": "Langres Noidant", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22454, + 47.813445 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Langres Noidant", + "ref:EU:EVSE": "FRIONE40910", + "ref": "FRIONE40910", + "name": "Langres Noidant", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22454, + 47.813445 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Langres Noidant", + "ref:EU:EVSE": "FRIONE40910", + "ref": "FRIONE40910", + "name": "Langres Noidant", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.543986, + 47.486261 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ANGERS", + "ref:EU:EVSE": "FRCPIE6741345", + "ref": "FRCPIE6741345", + "name": "SONEPAR ANGERS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.543986, + 47.486261 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ANGERS", + "ref:EU:EVSE": "FRCPIE6741345", + "ref": "FRCPIE6741345", + "name": "SONEPAR ANGERS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42548, + 48.817955 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SAINT-MAURICE BORNE 2", + "ref:EU:EVSE": "FRCPIE6658765", + "ref": "FRCPIE6658765", + "name": "SAINT-MAURICE BORNE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42548, + 48.817955 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SAINT-MAURICE BORNE 2", + "ref:EU:EVSE": "FRCPIE6575095", + "ref": "FRCPIE6575095", + "name": "SAINT-MAURICE BORNE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.781369, + 47.28464 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ESVRES SUR INDRE 6023 - RUE NATIONALE", + "ref:EU:EVSE": "FRS37E602", + "ref": "FRS37E602", + "name": "ESVRES SUR INDRE 6023 - RUE NATIONALE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.781369, + 47.28464 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ESVRES SUR INDRE 6023 - RUE NATIONALE", + "ref:EU:EVSE": "FRS37E602", + "ref": "FRS37E602", + "name": "ESVRES SUR INDRE 6023 - RUE NATIONALE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48407805, + 48.44726082 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARTRES - Place Chatelet - 134784", + "ref:EU:EVSE": "FRS28E13478", + "ref": "FRS28E13478", + "name": "CHARTRES - Place Chatelet - 134784", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54317, + 50.83325 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Winnezeele", + "ref:EU:EVSE": "FRIENE004302", + "ref": "FRIENE004302", + "name": "Winnezeele", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54317, + 50.83325 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Winnezeele", + "ref:EU:EVSE": "FRIENE004302", + "ref": "FRIENE004302", + "name": "Winnezeele", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54317, + 50.83325 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Winnezeele", + "ref:EU:EVSE": "FRIENE004301", + "ref": "FRIENE004301", + "name": "Winnezeele", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54317, + 50.83325 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Winnezeele", + "ref:EU:EVSE": "FRIENE004301", + "ref": "FRIENE004301", + "name": "Winnezeele", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.456267, + 48.814144 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SAINT-MAURICE ESPACES VERTS", + "ref:EU:EVSE": "FRCPIE6573995", + "ref": "FRCPIE6573995", + "name": "SAINT-MAURICE ESPACES VERTS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.268863, + 43.618817 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WELDOM CASTRES BORNE 1", + "ref:EU:EVSE": "FRCPIE6609815", + "ref": "FRCPIE6609815", + "name": "WELDOM CASTRES BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.268863, + 43.618817 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WELDOM CASTRES BORNE 1", + "ref:EU:EVSE": "FRCPIE6609815", + "ref": "FRCPIE6609815", + "name": "WELDOM CASTRES BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76685137, + 46.13428529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Taponas", + "ref:EU:EVSE": "FRIONE4039", + "ref": "FRIONE4039", + "name": "Taponas", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.418747, + 43.304831 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED LONS", + "ref:EU:EVSE": "FRCPIE6632045", + "ref": "FRCPIE6632045", + "name": "CGED CGED LONS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.183371, + 47.938264 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U ARNAGE ARNAGE 5 DC", + "ref:EU:EVSE": "FRCPIE6631745", + "ref": "FRCPIE6631745", + "name": "SUPER U ARNAGE ARNAGE 5 DC", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401718, + 45.459377 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED ST-ETIENNE 2", + "ref:EU:EVSE": "FRCPIE6596835", + "ref": "FRCPIE6596835", + "name": "CGED ST-ETIENNE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref:EU:EVSE": "FRIONE40950", + "ref": "FRIONE40950", + "name": "Rousset", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref:EU:EVSE": "FRIONE40951", + "ref": "FRIONE40951", + "name": "Rousset", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref:EU:EVSE": "FRIONE40951", + "ref": "FRIONE40951", + "name": "Rousset", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref:EU:EVSE": "FRIONE40951", + "ref": "FRIONE40951", + "name": "Rousset", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref:EU:EVSE": "FRIONE40950", + "ref": "FRIONE40950", + "name": "Rousset", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref:EU:EVSE": "FRIONE40950", + "ref": "FRIONE40950", + "name": "Rousset", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref:EU:EVSE": "FRIONE40950", + "ref": "FRIONE40950", + "name": "Rousset", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref:EU:EVSE": "FRIONE40950", + "ref": "FRIONE40950", + "name": "Rousset", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref:EU:EVSE": "FRIONE40950", + "ref": "FRIONE40950", + "name": "Rousset", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref:EU:EVSE": "FRIONE40950", + "ref": "FRIONE40950", + "name": "Rousset", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref:EU:EVSE": "FRIONE40950", + "ref": "FRIONE40950", + "name": "Rousset", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref:EU:EVSE": "FRIONE40952", + "ref": "FRIONE40952", + "name": "Rousset", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref:EU:EVSE": "FRIONE40950", + "ref": "FRIONE40950", + "name": "Rousset", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145681, + 48.083941 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CHAUMONT", + "ref:EU:EVSE": "FRCPIE6606645", + "ref": "FRCPIE6606645", + "name": "SONEPAR CONNECT CHAUMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145681, + 48.083941 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CHAUMONT", + "ref:EU:EVSE": "FRCPIE6606645", + "ref": "FRCPIE6606645", + "name": "SONEPAR CONNECT CHAUMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.110755, + 44.119222 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED ALES", + "ref:EU:EVSE": "FRCPIE6606395", + "ref": "FRCPIE6606395", + "name": "CGED ALES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.110755, + 44.119222 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED ALES", + "ref:EU:EVSE": "FRCPIE6606395", + "ref": "FRCPIE6606395", + "name": "CGED ALES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.157741, + 49.154069 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED METZ", + "ref:EU:EVSE": "FRCPIE6605945", + "ref": "FRCPIE6605945", + "name": "CGED METZ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.157741, + 49.154069 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED METZ", + "ref:EU:EVSE": "FRCPIE6605945", + "ref": "FRCPIE6605945", + "name": "CGED METZ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.337966, + 44.431026 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "JANUS RUOMS BORNE 1", + "ref:EU:EVSE": "FRCPIE6605205", + "ref": "FRCPIE6605205", + "name": "JANUS RUOMS BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.337966, + 44.431026 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "JANUS RUOMS BORNE 1", + "ref:EU:EVSE": "FRCPIE6605205", + "ref": "FRCPIE6605205", + "name": "JANUS RUOMS BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref:EU:EVSE": "FRIONE40951", + "ref": "FRIONE40951", + "name": "Rousset", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref:EU:EVSE": "FRIONE40952", + "ref": "FRIONE40952", + "name": "Rousset", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.681095, + 47.820037 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE U RAPIDE", + "ref:EU:EVSE": "FRCPIE6540225", + "ref": "FRCPIE6540225", + "name": "BORNE U RAPIDE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82953, + 46.305505 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PANORAMA 360 HOTEL & SPA 2", + "ref:EU:EVSE": "FRCPIE6606875", + "ref": "FRCPIE6606875", + "name": "PANORAMA 360 HOTEL & SPA 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.681095, + 47.820037 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE U RAPIDE", + "ref:EU:EVSE": "FRCPIE6540205", + "ref": "FRCPIE6540205", + "name": "BORNE U RAPIDE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.681095, + 47.820037 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE U RAPIDE", + "ref:EU:EVSE": "FRCPIE6540205", + "ref": "FRCPIE6540205", + "name": "BORNE U RAPIDE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.916358, + 48.627291 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMBLORE - Le Plessis -176251", + "ref:EU:EVSE": "FRS28E17625", + "ref": "FRS28E17625", + "name": "LAMBLORE - Le Plessis -176251", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.916358, + 48.627291 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMBLORE - Le Plessis -176251", + "ref:EU:EVSE": "FRS28E17625", + "ref": "FRS28E17625", + "name": "LAMBLORE - Le Plessis -176251", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.444554, + 48.980736 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT GONESSE", + "ref:EU:EVSE": "FRCPIE6606905", + "ref": "FRCPIE6606905", + "name": "SONEPAR CONNECT GONESSE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.444554, + 48.980736 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT GONESSE", + "ref:EU:EVSE": "FRCPIE6606905", + "ref": "FRCPIE6606905", + "name": "SONEPAR CONNECT GONESSE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82953, + 46.305505 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PANORAMA 360 HOTEL & SPA 2", + "ref:EU:EVSE": "FRCPIE6619845", + "ref": "FRCPIE6619845", + "name": "PANORAMA 360 HOTEL & SPA 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82953, + 46.305505 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PANORAMA 360 HOTEL & SPA 2", + "ref:EU:EVSE": "FRCPIE6619845", + "ref": "FRCPIE6619845", + "name": "PANORAMA 360 HOTEL & SPA 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82953, + 46.305505 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PANORAMA 360 HOTEL & SPA 2", + "ref:EU:EVSE": "FRCPIE6606875", + "ref": "FRCPIE6606875", + "name": "PANORAMA 360 HOTEL & SPA 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.105773, + 46.159016 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT LA ROCHELLE 2", + "ref:EU:EVSE": "FRCPIE6606835", + "ref": "FRCPIE6606835", + "name": "SONEPAR CONNECT LA ROCHELLE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref:EU:EVSE": "FRIONE40952", + "ref": "FRIONE40952", + "name": "Rousset", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.105773, + 46.159016 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT LA ROCHELLE 2", + "ref:EU:EVSE": "FRCPIE6606835", + "ref": "FRCPIE6606835", + "name": "SONEPAR CONNECT LA ROCHELLE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.105773, + 46.159016 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT LA ROCHELLE 2", + "ref:EU:EVSE": "FRCPIE6606795", + "ref": "FRCPIE6606795", + "name": "SONEPAR CONNECT LA ROCHELLE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.105773, + 46.159016 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT LA ROCHELLE 2", + "ref:EU:EVSE": "FRCPIE6606795", + "ref": "FRCPIE6606795", + "name": "SONEPAR CONNECT LA ROCHELLE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326459, + 48.888132 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED PARIS 18", + "ref:EU:EVSE": "FRCPIE6606745", + "ref": "FRCPIE6606745", + "name": "CGED PARIS 18", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.922786, + 42.691616 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CABESTANY", + "ref:EU:EVSE": "FRCPIE6606675", + "ref": "FRCPIE6606675", + "name": "SONEPAR CONNECT CABESTANY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.922786, + 42.691616 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CABESTANY", + "ref:EU:EVSE": "FRCPIE6606675", + "ref": "FRCPIE6606675", + "name": "SONEPAR CONNECT CABESTANY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.616726, + 47.415343 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LE FRESNE BORNE 1", + "ref:EU:EVSE": "FRCPIE6606665", + "ref": "FRCPIE6606665", + "name": "LE FRESNE BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.616726, + 47.415343 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LE FRESNE BORNE 1", + "ref:EU:EVSE": "FRCPIE6606665", + "ref": "FRCPIE6606665", + "name": "LE FRESNE BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref:EU:EVSE": "FRIONE4095", + "ref": "FRIONE4095", + "name": "Rousset", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.142548, + 43.658197 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CAGNES", + "ref:EU:EVSE": "FRCPIE6605175", + "ref": "FRCPIE6605175", + "name": "CGED CAGNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.142548, + 43.658197 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CAGNES", + "ref:EU:EVSE": "FRCPIE6605175", + "ref": "FRCPIE6605175", + "name": "CGED CAGNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.112229, + 49.397739 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ROUEN SUD", + "ref:EU:EVSE": "FRCPIE6605035", + "ref": "FRCPIE6605035", + "name": "SONEPAR CONNECT ROUEN SUD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7501, + 47.6644 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LES HERMITES 19683 - Rue de la fontaine", + "ref:EU:EVSE": "FRS37E1968", + "ref": "FRS37E1968", + "name": "LES HERMITES 19683 - Rue de la fontaine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.623389, + 48.595821 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Domfront", + "ref:EU:EVSE": "FRIENE004902", + "ref": "FRIENE004902", + "name": "Domfront", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.623389, + 48.595821 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Domfront", + "ref:EU:EVSE": "FRIENE004902", + "ref": "FRIENE004902", + "name": "Domfront", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.623389, + 48.595821 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Domfront", + "ref:EU:EVSE": "FRIENE004901", + "ref": "FRIENE004901", + "name": "Domfront", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.623389, + 48.595821 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Domfront", + "ref:EU:EVSE": "FRIENE004901", + "ref": "FRIENE004901", + "name": "Domfront", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.760154, + 48.515332 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUNEAU BLEURY ST SYMPHORIEN-Guy Vasselais-175635", + "ref:EU:EVSE": "FRS28E17563", + "ref": "FRS28E17563", + "name": "AUNEAU BLEURY ST SYMPHORIEN-Guy Vasselais-175635", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.760154, + 48.515332 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUNEAU BLEURY ST SYMPHORIEN-Guy Vasselais-175635", + "ref:EU:EVSE": "FRS28E17563", + "ref": "FRS28E17563", + "name": "AUNEAU BLEURY ST SYMPHORIEN-Guy Vasselais-175635", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.234158, + 46.193253 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED ANNEMASSE", + "ref:EU:EVSE": "FRCPIE6604025", + "ref": "FRCPIE6604025", + "name": "CGED ANNEMASSE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.234158, + 46.193253 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED ANNEMASSE", + "ref:EU:EVSE": "FRCPIE6604025", + "ref": "FRCPIE6604025", + "name": "CGED ANNEMASSE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7501, + 47.6644 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LES HERMITES 19683 - Rue de la fontaine", + "ref:EU:EVSE": "FRS37E1968", + "ref": "FRS37E1968", + "name": "LES HERMITES 19683 - Rue de la fontaine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.829824, + 48.622734 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR RAMBOUILLET", + "ref:EU:EVSE": "FRCPIE6651895", + "ref": "FRCPIE6651895", + "name": "SONEPAR RAMBOUILLET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.112229, + 49.397739 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ROUEN SUD", + "ref:EU:EVSE": "FRCPIE6605035", + "ref": "FRCPIE6605035", + "name": "SONEPAR CONNECT ROUEN SUD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.829824, + 48.622734 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR RAMBOUILLET", + "ref:EU:EVSE": "FRCPIE6651895", + "ref": "FRCPIE6651895", + "name": "SONEPAR RAMBOUILLET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.729763, + 48.106302 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT LA RETARDAIS 2", + "ref:EU:EVSE": "FRCPIE6603765", + "ref": "FRCPIE6603765", + "name": "SONEPAR CONNECT LA RETARDAIS 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.729763, + 48.106302 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT LA RETARDAIS 2", + "ref:EU:EVSE": "FRCPIE6603765", + "ref": "FRCPIE6603765", + "name": "SONEPAR CONNECT LA RETARDAIS 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.729763, + 48.106302 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT LA RETARDAIS 2", + "ref:EU:EVSE": "FRCPIE6603715", + "ref": "FRCPIE6603715", + "name": "SONEPAR CONNECT LA RETARDAIS 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.729763, + 48.106302 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT LA RETARDAIS 2", + "ref:EU:EVSE": "FRCPIE6603715", + "ref": "FRCPIE6603715", + "name": "SONEPAR CONNECT LA RETARDAIS 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.438596, + 48.422931 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CHARTRES", + "ref:EU:EVSE": "FRCPIE6603595", + "ref": "FRCPIE6603595", + "name": "SONEPAR CONNECT CHARTRES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.438596, + 48.422931 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CHARTRES", + "ref:EU:EVSE": "FRCPIE6603595", + "ref": "FRCPIE6603595", + "name": "SONEPAR CONNECT CHARTRES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7769873, + 47.47546806 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tours La Longue Vue", + "ref:EU:EVSE": "FRIONE10120", + "ref": "FRIONE10120", + "name": "Tours La Longue Vue", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7769873, + 47.47546806 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tours La Longue Vue", + "ref:EU:EVSE": "FRIONE10120", + "ref": "FRIONE10120", + "name": "Tours La Longue Vue", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42481307, + 47.11995595 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "L'ILE BOUCHARD 1338", + "ref:EU:EVSE": "FRS37E133", + "ref": "FRS37E133", + "name": "L'ILE BOUCHARD 1338", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42481307, + 47.11995595 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "L'ILE BOUCHARD 1338", + "ref:EU:EVSE": "FRS37E138", + "ref": "FRS37E138", + "name": "L'ILE BOUCHARD 1338", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.407851, + 45.806785 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Montalieu-Vercieu", + "ref:EU:EVSE": "FRIENE002601", + "ref": "FRIENE002601", + "name": "Montalieu-Vercieu", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.407851, + 45.806785 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Montalieu-Vercieu", + "ref:EU:EVSE": "FRIENE002601", + "ref": "FRIENE002601", + "name": "Montalieu-Vercieu", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.821276, + 48.321282 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Nogent-le-Rotrou - Place St Pol -128531", + "ref:EU:EVSE": "FRS28E17649", + "ref": "FRS28E17649", + "name": "Nogent-le-Rotrou - Place St Pol -128531", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.615962, + 43.00587 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT FOIX", + "ref:EU:EVSE": "FRCPIE6604875", + "ref": "FRCPIE6604875", + "name": "SONEPAR CONNECT FOIX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.615962, + 43.00587 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT FOIX", + "ref:EU:EVSE": "FRCPIE6604875", + "ref": "FRCPIE6604875", + "name": "SONEPAR CONNECT FOIX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.10312551, + 47.22885084 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE LIEGE 1268", + "ref:EU:EVSE": "FRS37E126", + "ref": "FRS37E126", + "name": "LE LIEGE 1268", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.10312551, + 47.22885084 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE LIEGE 1268", + "ref:EU:EVSE": "FRS37E126", + "ref": "FRS37E126", + "name": "LE LIEGE 1268", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.624051, + 44.176503 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED AGEN", + "ref:EU:EVSE": "FRCPIE6604805", + "ref": "FRCPIE6604805", + "name": "CGED AGEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.624051, + 44.176503 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED AGEN", + "ref:EU:EVSE": "FRCPIE6604805", + "ref": "FRCPIE6604805", + "name": "CGED AGEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.405298, + 43.275477 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED PHOCEA", + "ref:EU:EVSE": "FRCPIE6604555", + "ref": "FRCPIE6604555", + "name": "CGED PHOCEA", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.405298, + 43.275477 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED PHOCEA", + "ref:EU:EVSE": "FRCPIE6604555", + "ref": "FRCPIE6604555", + "name": "CGED PHOCEA", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.610285, + 43.466186 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ROUSSET", + "ref:EU:EVSE": "FRCPIE6604545", + "ref": "FRCPIE6604545", + "name": "SONEPAR CONNECT ROUSSET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.610285, + 43.466186 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ROUSSET", + "ref:EU:EVSE": "FRCPIE6604545", + "ref": "FRCPIE6604545", + "name": "SONEPAR CONNECT ROUSSET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.666684, + 47.399974 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 1343 - Esplanade", + "ref:EU:EVSE": "FRS37E134", + "ref": "FRS37E134", + "name": "SAINT CYR SUR LOIRE 1343 - Esplanade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.666684, + 47.399974 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 1343 - Esplanade", + "ref:EU:EVSE": "FRS37E134", + "ref": "FRS37E134", + "name": "SAINT CYR SUR LOIRE 1343 - Esplanade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.785548, + 48.09154 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MOF BORNE 1", + "ref:EU:EVSE": "FRCPIE6604335", + "ref": "FRCPIE6604335", + "name": "MOF BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.785548, + 48.09154 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MOF BORNE 1", + "ref:EU:EVSE": "FRCPIE6604335", + "ref": "FRCPIE6604335", + "name": "MOF BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.452333, + 47.071648 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR DOLE", + "ref:EU:EVSE": "FRCPIE6704845", + "ref": "FRCPIE6704845", + "name": "SONEPAR DOLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.452333, + 47.071648 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR DOLE", + "ref:EU:EVSE": "FRCPIE6704845", + "ref": "FRCPIE6704845", + "name": "SONEPAR DOLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.407851, + 45.806785 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Montalieu-Vercieu", + "ref:EU:EVSE": "FRIENE002602", + "ref": "FRIENE002602", + "name": "Montalieu-Vercieu", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.407851, + 45.806785 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Montalieu-Vercieu", + "ref:EU:EVSE": "FRIENE002602", + "ref": "FRIENE002602", + "name": "Montalieu-Vercieu", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.681095, + 47.820037 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE U RAPIDE", + "ref:EU:EVSE": "FRCPIE6540225", + "ref": "FRCPIE6540225", + "name": "BORNE U RAPIDE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.681095, + 47.820037 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE U RAPIDE", + "ref:EU:EVSE": "FRCPIE6541535", + "ref": "FRCPIE6541535", + "name": "BORNE U RAPIDE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.183371, + 47.938264 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U ARNAGE ARNAGE 5 DC", + "ref:EU:EVSE": "FRCPIE6631545", + "ref": "FRCPIE6631545", + "name": "SUPER U ARNAGE ARNAGE 5 DC", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.308488, + 43.914901 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montbartier", + "ref:EU:EVSE": "FRIONE42150", + "ref": "FRIONE42150", + "name": "Montbartier", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31917483, + 47.5476166 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHÂTEAU LA VALLIERE 1446", + "ref:EU:EVSE": "FRS37E144", + "ref": "FRS37E144", + "name": "CHÂTEAU LA VALLIERE 1446", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31917483, + 47.5476166 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHÂTEAU LA VALLIERE 1446", + "ref:EU:EVSE": "FRS37E144", + "ref": "FRS37E144", + "name": "CHÂTEAU LA VALLIERE 1446", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.937801, + 47.372326 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING N-1 SAVENAY 1", + "ref:EU:EVSE": "FRCPIE6609135", + "ref": "FRCPIE6609135", + "name": "PARKING N-1 SAVENAY 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.937801, + 47.372326 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING N-1 SAVENAY 1", + "ref:EU:EVSE": "FRCPIE6609135", + "ref": "FRCPIE6609135", + "name": "PARKING N-1 SAVENAY 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.445236, + 47.451294 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AMBILLOU 1444", + "ref:EU:EVSE": "FRS37E144", + "ref": "FRS37E144", + "name": "AMBILLOU 1444", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.445236, + 47.451294 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AMBILLOU 1444", + "ref:EU:EVSE": "FRS37E144", + "ref": "FRS37E144", + "name": "AMBILLOU 1444", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.308488, + 43.914901 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montbartier", + "ref:EU:EVSE": "FRIONE4215", + "ref": "FRIONE4215", + "name": "Montbartier", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.308488, + 43.914901 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montbartier", + "ref:EU:EVSE": "FRIONE42150", + "ref": "FRIONE42150", + "name": "Montbartier", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.308488, + 43.914901 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montbartier", + "ref:EU:EVSE": "FRIONE42150", + "ref": "FRIONE42150", + "name": "Montbartier", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.308488, + 43.914901 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montbartier", + "ref:EU:EVSE": "FRIONE42150", + "ref": "FRIONE42150", + "name": "Montbartier", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.894899, + 46.944576 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CELLE GUENAND 1449", + "ref:EU:EVSE": "FRS37E147", + "ref": "FRS37E147", + "name": "LA CELLE GUENAND 1449", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.727834, + 47.368329 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AVERTIN 1442", + "ref:EU:EVSE": "FRS37E156", + "ref": "FRS37E156", + "name": "SAINT AVERTIN 1442", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.727834, + 47.368329 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AVERTIN 1442", + "ref:EU:EVSE": "FRS37E144", + "ref": "FRS37E144", + "name": "SAINT AVERTIN 1442", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.429779, + 44.901007 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT AURILLAC", + "ref:EU:EVSE": "FRCPIE6609045", + "ref": "FRCPIE6609045", + "name": "SONEPAR CONNECT AURILLAC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.429779, + 44.901007 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT AURILLAC", + "ref:EU:EVSE": "FRCPIE6609045", + "ref": "FRCPIE6609045", + "name": "SONEPAR CONNECT AURILLAC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.170199, + 48.457568 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ETAMPES", + "ref:EU:EVSE": "FRCPIE6609035", + "ref": "FRCPIE6609035", + "name": "SONEPAR CONNECT ETAMPES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.170199, + 48.457568 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ETAMPES", + "ref:EU:EVSE": "FRCPIE6609035", + "ref": "FRCPIE6609035", + "name": "SONEPAR CONNECT ETAMPES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9840703, + 47.54256978 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SUPER CHARGEUR 1414 - CHÂTEAU RENAULT A10", + "ref:EU:EVSE": "FRS37E141", + "ref": "FRS37E141", + "name": "SUPER CHARGEUR 1414 - CHÂTEAU RENAULT A10", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.975747, + 43.650761 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ST-AUNES", + "ref:EU:EVSE": "FRCPIE6608885", + "ref": "FRCPIE6608885", + "name": "SONEPAR CONNECT ST-AUNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.975747, + 43.650761 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ST-AUNES", + "ref:EU:EVSE": "FRCPIE6608885", + "ref": "FRCPIE6608885", + "name": "SONEPAR CONNECT ST-AUNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.894899, + 46.944576 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CELLE GUENAND 1449", + "ref:EU:EVSE": "FRS37E144", + "ref": "FRS37E144", + "name": "LA CELLE GUENAND 1449", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93756, + 47.372504 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING N-1 SAVENAY 3", + "ref:EU:EVSE": "FRCPIE6609145", + "ref": "FRCPIE6609145", + "name": "PARKING N-1 SAVENAY 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.844593, + 47.350406 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AZAY SUR CHER 1362", + "ref:EU:EVSE": "FRS37E136", + "ref": "FRS37E136", + "name": "AZAY SUR CHER 1362", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.348189, + 47.308279 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COTEAUX-SUR-LOIRE 1458", + "ref:EU:EVSE": "FRS37E145", + "ref": "FRS37E145", + "name": "COTEAUX-SUR-LOIRE 1458", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.580119, + 47.223487 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THILOUZE 1464", + "ref:EU:EVSE": "FRS37E146", + "ref": "FRS37E146", + "name": "THILOUZE 1464", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.580119, + 47.223487 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THILOUZE 1464", + "ref:EU:EVSE": "FRS37E146", + "ref": "FRS37E146", + "name": "THILOUZE 1464", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0926193, + 47.40984692 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SOUVIGNY DE TOURAINE 1462", + "ref:EU:EVSE": "FRS37E146", + "ref": "FRS37E146", + "name": "SOUVIGNY DE TOURAINE 1462", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0926193, + 47.40984692 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SOUVIGNY DE TOURAINE 1462", + "ref:EU:EVSE": "FRS37E146", + "ref": "FRS37E146", + "name": "SOUVIGNY DE TOURAINE 1462", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.936433, + 47.372148 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING N-1 SAVENAY 4", + "ref:EU:EVSE": "FRCPIE6609195", + "ref": "FRCPIE6609195", + "name": "PARKING N-1 SAVENAY 4", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.549604, + 47.348606 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAVONNIERES 1460 - Place du Faisan", + "ref:EU:EVSE": "FRS37E146", + "ref": "FRS37E146", + "name": "SAVONNIERES 1460 - Place du Faisan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.549604, + 47.348606 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAVONNIERES 1460 - Place du Faisan", + "ref:EU:EVSE": "FRS37E146", + "ref": "FRS37E146", + "name": "SAVONNIERES 1460 - Place du Faisan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.938086, + 47.372793 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING N-1 SAVENAY 5", + "ref:EU:EVSE": "FRCPIE6609185", + "ref": "FRCPIE6609185", + "name": "PARKING N-1 SAVENAY 5", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.348189, + 47.308279 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COTEAUX-SUR-LOIRE 1458", + "ref:EU:EVSE": "FRS37E145", + "ref": "FRS37E145", + "name": "COTEAUX-SUR-LOIRE 1458", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.909736, + 47.355949 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT MARTIN LE BEAU 1456", + "ref:EU:EVSE": "FRS37E145", + "ref": "FRS37E145", + "name": "SAINT MARTIN LE BEAU 1456", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93756, + 47.372504 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING N-1 SAVENAY 3", + "ref:EU:EVSE": "FRCPIE6609145", + "ref": "FRCPIE6609145", + "name": "PARKING N-1 SAVENAY 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.909736, + 47.355949 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT MARTIN LE BEAU 1456", + "ref:EU:EVSE": "FRS37E145", + "ref": "FRS37E145", + "name": "SAINT MARTIN LE BEAU 1456", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.377102, + 46.975509 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RAZINES 1441", + "ref:EU:EVSE": "FRS37E145", + "ref": "FRS37E145", + "name": "RAZINES 1441", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.377102, + 46.975509 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RAZINES 1441", + "ref:EU:EVSE": "FRS37E144", + "ref": "FRS37E144", + "name": "RAZINES 1441", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.937388, + 47.372671 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING N-1 SAVENAY 6", + "ref:EU:EVSE": "FRCPIE6609175", + "ref": "FRCPIE6609175", + "name": "PARKING N-1 SAVENAY 6", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.937388, + 47.372671 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING N-1 SAVENAY 6", + "ref:EU:EVSE": "FRCPIE6609175", + "ref": "FRCPIE6609175", + "name": "PARKING N-1 SAVENAY 6", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.04215052, + 47.05603596 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNEUIL SUR INDRE 1453", + "ref:EU:EVSE": "FRS37E145", + "ref": "FRS37E145", + "name": "VERNEUIL SUR INDRE 1453", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.04215052, + 47.05603596 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNEUIL SUR INDRE 1453", + "ref:EU:EVSE": "FRS37E145", + "ref": "FRS37E145", + "name": "VERNEUIL SUR INDRE 1453", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93756, + 47.372504 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING N-1 SAVENAY 3", + "ref:EU:EVSE": "FRCPIE6609155", + "ref": "FRCPIE6609155", + "name": "PARKING N-1 SAVENAY 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93756, + 47.372504 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING N-1 SAVENAY 3", + "ref:EU:EVSE": "FRCPIE6609155", + "ref": "FRCPIE6609155", + "name": "PARKING N-1 SAVENAY 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.545929, + 48.793333 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CHENNEVIÈRES", + "ref:EU:EVSE": "FRCPIE6608845", + "ref": "FRCPIE6608845", + "name": "CGED CHENNEVIÈRES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.545929, + 48.793333 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CHENNEVIÈRES", + "ref:EU:EVSE": "FRCPIE6608845", + "ref": "FRCPIE6608845", + "name": "CGED CHENNEVIÈRES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.717106, + 48.432041 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERU PLOUARZE BORNE 2", + "ref:EU:EVSE": "FRCPIE6608805", + "ref": "FRCPIE6608805", + "name": "SUPERU PLOUARZE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.589069, + 49.632953 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CHERBOURG", + "ref:EU:EVSE": "FRCPIE6607385", + "ref": "FRCPIE6607385", + "name": "SONEPAR CONNECT CHERBOURG", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.190003, + 47.261202 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CERE LA RONDE 1367 - Alfred de Vigny", + "ref:EU:EVSE": "FRS37E136", + "ref": "FRS37E136", + "name": "CERE LA RONDE 1367 - Alfred de Vigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.85791, + 48.970373 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT AUBERGENVILLE", + "ref:EU:EVSE": "FRCPIE6607645", + "ref": "FRCPIE6607645", + "name": "SONEPAR CONNECT AUBERGENVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.85791, + 48.970373 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT AUBERGENVILLE", + "ref:EU:EVSE": "FRCPIE6607645", + "ref": "FRCPIE6607645", + "name": "SONEPAR CONNECT AUBERGENVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.040193, + 43.14541 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED TOULON", + "ref:EU:EVSE": "FRCPIE6607575", + "ref": "FRCPIE6607575", + "name": "CGED TOULON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.040193, + 43.14541 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED TOULON", + "ref:EU:EVSE": "FRCPIE6607575", + "ref": "FRCPIE6607575", + "name": "CGED TOULON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.836032, + 50.943529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CALAIS _", + "ref:EU:EVSE": "FRCPIE6542695", + "ref": "FRCPIE6542695", + "name": "CGED CALAIS _", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.836032, + 50.943529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CALAIS _", + "ref:EU:EVSE": "FRCPIE6542695", + "ref": "FRCPIE6542695", + "name": "CGED CALAIS _", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.96157027, + 46.83186155 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOSSAY SUR CLAISE 1365", + "ref:EU:EVSE": "FRS37E136", + "ref": "FRS37E136", + "name": "BOSSAY SUR CLAISE 1365", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.96157027, + 46.83186155 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOSSAY SUR CLAISE 1365", + "ref:EU:EVSE": "FRS37E136", + "ref": "FRS37E136", + "name": "BOSSAY SUR CLAISE 1365", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.589069, + 49.632953 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CHERBOURG", + "ref:EU:EVSE": "FRCPIE6607385", + "ref": "FRCPIE6607385", + "name": "SONEPAR CONNECT CHERBOURG", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.717106, + 48.432041 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERU PLOUARZE BORNE 2", + "ref:EU:EVSE": "FRCPIE6608805", + "ref": "FRCPIE6608805", + "name": "SUPERU PLOUARZE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.586529, + 48.764309 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Comercy rue de la gare 134164", + "ref:EU:EVSE": "FRS55E13416", + "ref": "FRS55E13416", + "name": "Comercy rue de la gare 134164", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.586529, + 48.764309 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Comercy rue de la gare 134164", + "ref:EU:EVSE": "FRS55E13416", + "ref": "FRS55E13416", + "name": "Comercy rue de la gare 134164", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.586529, + 48.764309 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Comercy rue de la gare 134164", + "ref:EU:EVSE": "FRS55E13415", + "ref": "FRS55E13415", + "name": "Comercy rue de la gare 134164", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.586529, + 48.764309 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Comercy rue de la gare 134164", + "ref:EU:EVSE": "FRS55E13415", + "ref": "FRS55E13415", + "name": "Comercy rue de la gare 134164", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.366567, + 49.372476 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT SOISSONS", + "ref:EU:EVSE": "FRCPIE6607265", + "ref": "FRCPIE6607265", + "name": "SONEPAR CONNECT SOISSONS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.366567, + 49.372476 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT SOISSONS", + "ref:EU:EVSE": "FRCPIE6607265", + "ref": "FRCPIE6607265", + "name": "SONEPAR CONNECT SOISSONS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.995564, + 47.319767 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLERE 1363 - Chardonnerets", + "ref:EU:EVSE": "FRS37E136", + "ref": "FRS37E136", + "name": "BLERE 1363 - Chardonnerets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.995564, + 47.319767 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLERE 1363 - Chardonnerets", + "ref:EU:EVSE": "FRS37E136", + "ref": "FRS37E136", + "name": "BLERE 1363 - Chardonnerets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.844593, + 47.350406 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AZAY SUR CHER 1362", + "ref:EU:EVSE": "FRS37E138", + "ref": "FRS37E138", + "name": "AZAY SUR CHER 1362", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.190003, + 47.261202 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CERE LA RONDE 1367 - Alfred de Vigny", + "ref:EU:EVSE": "FRS37E136", + "ref": "FRS37E136", + "name": "CERE LA RONDE 1367 - Alfred de Vigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.190249, + 47.257237 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CERE LA RONDE1369 - Salle Socioculturel", + "ref:EU:EVSE": "FRS37E136", + "ref": "FRS37E136", + "name": "CERE LA RONDE1369 - Salle Socioculturel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.190249, + 47.257237 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CERE LA RONDE1369 - Salle Socioculturel", + "ref:EU:EVSE": "FRS37E137", + "ref": "FRS37E137", + "name": "CERE LA RONDE1369 - Salle Socioculturel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.379129, + 43.488465 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED AIX", + "ref:EU:EVSE": "FRCPIE6608085", + "ref": "FRCPIE6608085", + "name": "CGED AIX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.717106, + 48.432041 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERU PLOUARZE BORNE 2", + "ref:EU:EVSE": "FRCPIE6608795", + "ref": "FRCPIE6608795", + "name": "SUPERU PLOUARZE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.717106, + 48.432041 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPERU PLOUARZE BORNE 2", + "ref:EU:EVSE": "FRCPIE6608795", + "ref": "FRCPIE6608795", + "name": "SUPERU PLOUARZE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.136289, + 49.354737 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT THIONVILLE", + "ref:EU:EVSE": "FRCPIE6608655", + "ref": "FRCPIE6608655", + "name": "SONEPAR CONNECT THIONVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.136289, + 49.354737 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT THIONVILLE", + "ref:EU:EVSE": "FRCPIE6608655", + "ref": "FRCPIE6608655", + "name": "SONEPAR CONNECT THIONVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.995569, + 47.328019 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLERE 1387 - Camping", + "ref:EU:EVSE": "FRS37E138", + "ref": "FRS37E138", + "name": "BLERE 1387 - Camping", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.995569, + 47.328019 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLERE 1387 - Camping", + "ref:EU:EVSE": "FRS37E138", + "ref": "FRS37E138", + "name": "BLERE 1387 - Camping", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.573516, + 48.639513 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "IRVE CAGPS ECO PEPINIERE 3", + "ref:EU:EVSE": "FRCPIE6608345", + "ref": "FRCPIE6608345", + "name": "IRVE CAGPS ECO PEPINIERE 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.573516, + 48.639513 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "IRVE CAGPS ECO PEPINIERE 3", + "ref:EU:EVSE": "FRCPIE6608335", + "ref": "FRCPIE6608335", + "name": "IRVE CAGPS ECO PEPINIERE 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.573516, + 48.639513 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "IRVE CAGPS ECO PEPINIERE 3", + "ref:EU:EVSE": "FRCPIE6608325", + "ref": "FRCPIE6608325", + "name": "IRVE CAGPS ECO PEPINIERE 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.573516, + 48.639513 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "IRVE CAGPS ECO PEPINIERE 3", + "ref:EU:EVSE": "FRCPIE6608315", + "ref": "FRCPIE6608315", + "name": "IRVE CAGPS ECO PEPINIERE 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47534965, + 47.6156073 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CHRISTOPHE SUR LE NAIS 1383", + "ref:EU:EVSE": "FRS37E138", + "ref": "FRS37E138", + "name": "SAINT CHRISTOPHE SUR LE NAIS 1383", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47534965, + 47.6156073 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CHRISTOPHE SUR LE NAIS 1383", + "ref:EU:EVSE": "FRS37E138", + "ref": "FRS37E138", + "name": "SAINT CHRISTOPHE SUR LE NAIS 1383", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.729746, + 44.395027 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT VILLENEUVE-LOT", + "ref:EU:EVSE": "FRCPIE6608185", + "ref": "FRCPIE6608185", + "name": "SONEPAR CONNECT VILLENEUVE-LOT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.729746, + 44.395027 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT VILLENEUVE-LOT", + "ref:EU:EVSE": "FRCPIE6608185", + "ref": "FRCPIE6608185", + "name": "SONEPAR CONNECT VILLENEUVE-LOT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.70095375, + 47.47147261 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHANCEAUX SUR CHOISILLE 1373", + "ref:EU:EVSE": "FRS37E137", + "ref": "FRS37E137", + "name": "CHANCEAUX SUR CHOISILLE 1373", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.70095375, + 47.47147261 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHANCEAUX SUR CHOISILLE 1373", + "ref:EU:EVSE": "FRS37E137", + "ref": "FRS37E137", + "name": "CHANCEAUX SUR CHOISILLE 1373", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.143419, + 47.253068 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CERE LA RONDE 1371 - Château", + "ref:EU:EVSE": "FRS37E137", + "ref": "FRS37E137", + "name": "CERE LA RONDE 1371 - Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.143419, + 47.253068 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CERE LA RONDE 1371 - Château", + "ref:EU:EVSE": "FRS37E137", + "ref": "FRS37E137", + "name": "CERE LA RONDE 1371 - Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.379129, + 43.488465 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED AIX", + "ref:EU:EVSE": "FRCPIE6608085", + "ref": "FRCPIE6608085", + "name": "CGED AIX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7769873, + 47.47546806 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tours La Longue Vue", + "ref:EU:EVSE": "FRIONE10120", + "ref": "FRIONE10120", + "name": "Tours La Longue Vue", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7769873, + 47.47546806 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tours La Longue Vue", + "ref:EU:EVSE": "FRIONE10120", + "ref": "FRIONE10120", + "name": "Tours La Longue Vue", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7769873, + 47.47546806 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tours La Longue Vue", + "ref:EU:EVSE": "FRIONE10120", + "ref": "FRIONE10120", + "name": "Tours La Longue Vue", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas Village", + "ref:EU:EVSE": "FRIONE44030", + "ref": "FRIONE44030", + "name": "Mornas Village", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.431382, + 48.425499 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ASNF BORNE 1", + "ref:EU:EVSE": "FRCPIE6660165", + "ref": "FRCPIE6660165", + "name": "ASNF BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas Village", + "ref:EU:EVSE": "FRIONE4403", + "ref": "FRIONE4403", + "name": "Mornas Village", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas Village", + "ref:EU:EVSE": "FRIONE44031", + "ref": "FRIONE44031", + "name": "Mornas Village", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas Village", + "ref:EU:EVSE": "FRIONE44031", + "ref": "FRIONE44031", + "name": "Mornas Village", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas Village", + "ref:EU:EVSE": "FRIONE44031", + "ref": "FRIONE44031", + "name": "Mornas Village", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas Village", + "ref:EU:EVSE": "FRIONE44031", + "ref": "FRIONE44031", + "name": "Mornas Village", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas Village", + "ref:EU:EVSE": "FRIONE44031", + "ref": "FRIONE44031", + "name": "Mornas Village", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas Village", + "ref:EU:EVSE": "FRIONE44031", + "ref": "FRIONE44031", + "name": "Mornas Village", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas Village", + "ref:EU:EVSE": "FRIONE44031", + "ref": "FRIONE44031", + "name": "Mornas Village", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas Village", + "ref:EU:EVSE": "FRIONE44030", + "ref": "FRIONE44030", + "name": "Mornas Village", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.431382, + 48.425499 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ASNF BORNE 1", + "ref:EU:EVSE": "FRCPIE6660255", + "ref": "FRCPIE6660255", + "name": "ASNF BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas Village", + "ref:EU:EVSE": "FRIONE44030", + "ref": "FRIONE44030", + "name": "Mornas Village", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas Village", + "ref:EU:EVSE": "FRIONE44030", + "ref": "FRIONE44030", + "name": "Mornas Village", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas Village", + "ref:EU:EVSE": "FRIONE44030", + "ref": "FRIONE44030", + "name": "Mornas Village", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas Village", + "ref:EU:EVSE": "FRIONE44030", + "ref": "FRIONE44030", + "name": "Mornas Village", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas Village", + "ref:EU:EVSE": "FRIONE44030", + "ref": "FRIONE44030", + "name": "Mornas Village", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas Village", + "ref:EU:EVSE": "FRIONE44030", + "ref": "FRIONE44030", + "name": "Mornas Village", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas Village", + "ref:EU:EVSE": "FRIONE44030", + "ref": "FRIONE44030", + "name": "Mornas Village", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.57393, + 48.360859 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Achères - La Forêt", + "ref:EU:EVSE": "FRFASE330230", + "ref": "FRFASE330230", + "name": "Aire d’Achères - La Forêt", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-06", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.57393, + 48.360859 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Achères - La Forêt", + "ref:EU:EVSE": "FRFASE330230", + "ref": "FRFASE330230", + "name": "Aire d’Achères - La Forêt", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-06", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.431382, + 48.425499 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ASNF BORNE 1", + "ref:EU:EVSE": "FRCPIE6660165", + "ref": "FRCPIE6660165", + "name": "ASNF BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.431382, + 48.425499 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ASNF BORNE 1", + "ref:EU:EVSE": "FRCPIE6660255", + "ref": "FRCPIE6660255", + "name": "ASNF BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7769873, + 47.47546806 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tours La Longue Vue", + "ref:EU:EVSE": "FRIONE10120", + "ref": "FRIONE10120", + "name": "Tours La Longue Vue", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.578674, + 48.467261 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Bois Paris", + "ref:EU:EVSE": "FRIONE12650", + "ref": "FRIONE12650", + "name": "Chartres Bois Paris", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref:EU:EVSE": "FRSHEE75", + "ref": "FRSHEE75", + "name": "Shell Aire de l'Arc Sud HW", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref:EU:EVSE": "FRSHEE74", + "ref": "FRSHEE74", + "name": "Shell Aire de l'Arc Sud HW", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref:EU:EVSE": "FRSHEE74", + "ref": "FRSHEE74", + "name": "Shell Aire de l'Arc Sud HW", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref:EU:EVSE": "FRSHEE74", + "ref": "FRSHEE74", + "name": "Shell Aire de l'Arc Sud HW", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref:EU:EVSE": "FRSHEE73", + "ref": "FRSHEE73", + "name": "Shell Aire de l'Arc Sud HW", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref:EU:EVSE": "FRSHEE73", + "ref": "FRSHEE73", + "name": "Shell Aire de l'Arc Sud HW", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.578674, + 48.467261 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Bois Paris", + "ref:EU:EVSE": "FRIONE1265", + "ref": "FRIONE1265", + "name": "Chartres Bois Paris", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.578674, + 48.467261 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Bois Paris", + "ref:EU:EVSE": "FRIONE12650", + "ref": "FRIONE12650", + "name": "Chartres Bois Paris", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.578674, + 48.467261 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Bois Paris", + "ref:EU:EVSE": "FRIONE12650", + "ref": "FRIONE12650", + "name": "Chartres Bois Paris", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.578674, + 48.467261 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Bois Paris", + "ref:EU:EVSE": "FRIONE12650", + "ref": "FRIONE12650", + "name": "Chartres Bois Paris", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.769341, + 47.22798 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT BRANCHS 1304", + "ref:EU:EVSE": "FRS37E130", + "ref": "FRS37E130", + "name": "SAINT BRANCHS 1304", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12586534, + 47.28450308 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT NICOLAS DE BOURGUEIL 1306", + "ref:EU:EVSE": "FRS37E130", + "ref": "FRS37E130", + "name": "SAINT NICOLAS DE BOURGUEIL 1306", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12586534, + 47.28450308 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT NICOLAS DE BOURGUEIL 1306", + "ref:EU:EVSE": "FRS37E130", + "ref": "FRS37E130", + "name": "SAINT NICOLAS DE BOURGUEIL 1306", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.166973, + 48.773186 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BAR LE DUC-parking de la gare-66183", + "ref:EU:EVSE": "FRS55E6619", + "ref": "FRS55E6619", + "name": "55 BAR LE DUC-parking de la gare-66183", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.166973, + 48.773186 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BAR LE DUC-parking de la gare-66183", + "ref:EU:EVSE": "FRS55E6619", + "ref": "FRS55E6619", + "name": "55 BAR LE DUC-parking de la gare-66183", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.166973, + 48.773186 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BAR LE DUC-parking de la gare-66183", + "ref:EU:EVSE": "FRS55E6618", + "ref": "FRS55E6618", + "name": "55 BAR LE DUC-parking de la gare-66183", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.166973, + 48.773186 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BAR LE DUC-parking de la gare-66183", + "ref:EU:EVSE": "FRS55E6618", + "ref": "FRS55E6618", + "name": "55 BAR LE DUC-parking de la gare-66183", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02625743, + 46.96858706 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT FLOVIER 1305", + "ref:EU:EVSE": "FRS37E133", + "ref": "FRS37E133", + "name": "SAINT FLOVIER 1305", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02625743, + 46.96858706 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT FLOVIER 1305", + "ref:EU:EVSE": "FRS37E130", + "ref": "FRS37E130", + "name": "SAINT FLOVIER 1305", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.769341, + 47.22798 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT BRANCHS 1304", + "ref:EU:EVSE": "FRS37E138", + "ref": "FRS37E138", + "name": "SAINT BRANCHS 1304", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.57393, + 48.360859 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Achères - La Forêt", + "ref:EU:EVSE": "FRFASE330230", + "ref": "FRFASE330230", + "name": "Aire d’Achères - La Forêt", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-06", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.57393, + 48.360859 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Achères - La Forêt", + "ref:EU:EVSE": "FRFASE330230", + "ref": "FRFASE330230", + "name": "Aire d’Achères - La Forêt", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-06", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.542878, + 47.246675 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SACHE 1302", + "ref:EU:EVSE": "FRS37E130", + "ref": "FRS37E130", + "name": "SACHE 1302", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 10", + "ref:EU:EVSE": "FRCPIE6599455", + "ref": "FRCPIE6599455", + "name": "SONELOG CESTAS 10", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91468289, + 47.22805033 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIGNAC SUR INDRE 1299", + "ref:EU:EVSE": "FRS37E129", + "ref": "FRS37E129", + "name": "REIGNAC SUR INDRE 1299", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 10", + "ref:EU:EVSE": "FRCPIE6599565", + "ref": "FRCPIE6599565", + "name": "SONELOG CESTAS 10", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 10", + "ref:EU:EVSE": "FRCPIE6599565", + "ref": "FRCPIE6599565", + "name": "SONELOG CESTAS 10", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 10", + "ref:EU:EVSE": "FRCPIE6599535", + "ref": "FRCPIE6599535", + "name": "SONELOG CESTAS 10", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 10", + "ref:EU:EVSE": "FRCPIE6599535", + "ref": "FRCPIE6599535", + "name": "SONELOG CESTAS 10", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 10", + "ref:EU:EVSE": "FRCPIE6599515", + "ref": "FRCPIE6599515", + "name": "SONELOG CESTAS 10", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 10", + "ref:EU:EVSE": "FRCPIE6599515", + "ref": "FRCPIE6599515", + "name": "SONELOG CESTAS 10", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 10", + "ref:EU:EVSE": "FRCPIE6599475", + "ref": "FRCPIE6599475", + "name": "SONELOG CESTAS 10", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 10", + "ref:EU:EVSE": "FRCPIE6599475", + "ref": "FRCPIE6599475", + "name": "SONELOG CESTAS 10", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 10", + "ref:EU:EVSE": "FRCPIE6599455", + "ref": "FRCPIE6599455", + "name": "SONELOG CESTAS 10", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.542878, + 47.246675 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SACHE 1302", + "ref:EU:EVSE": "FRS37E130", + "ref": "FRS37E130", + "name": "SACHE 1302", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 10", + "ref:EU:EVSE": "FRCPIE6599275", + "ref": "FRCPIE6599275", + "name": "SONELOG CESTAS 10", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 10", + "ref:EU:EVSE": "FRCPIE6599275", + "ref": "FRCPIE6599275", + "name": "SONELOG CESTAS 10", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.936446, + 43.58831 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CCF MAUGUIO", + "ref:EU:EVSE": "FRCPIE6599095", + "ref": "FRCPIE6599095", + "name": "SONEPAR CCF MAUGUIO", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.936446, + 43.58831 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CCF MAUGUIO", + "ref:EU:EVSE": "FRCPIE6599095", + "ref": "FRCPIE6599095", + "name": "SONEPAR CCF MAUGUIO", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.990664, + 47.443928 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "POCE SUR CISSE 1298 - Clos du Potager", + "ref:EU:EVSE": "FRS37E138", + "ref": "FRS37E138", + "name": "POCE SUR CISSE 1298 - Clos du Potager", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.990664, + 47.443928 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "POCE SUR CISSE 1298 - Clos du Potager", + "ref:EU:EVSE": "FRS37E129", + "ref": "FRS37E129", + "name": "POCE SUR CISSE 1298 - Clos du Potager", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.115305, + 49.897972 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR DIEPPE", + "ref:EU:EVSE": "FRCPIE6596925", + "ref": "FRCPIE6596925", + "name": "SONEPAR DIEPPE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.115305, + 49.897972 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR DIEPPE", + "ref:EU:EVSE": "FRCPIE6596925", + "ref": "FRCPIE6596925", + "name": "SONEPAR DIEPPE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401718, + 45.459377 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED ST-ETIENNE 2", + "ref:EU:EVSE": "FRCPIE6596835", + "ref": "FRCPIE6596835", + "name": "CGED ST-ETIENNE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91468289, + 47.22805033 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIGNAC SUR INDRE 1299", + "ref:EU:EVSE": "FRS37E135", + "ref": "FRS37E135", + "name": "REIGNAC SUR INDRE 1299", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753907, + 44.714785 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 04", + "ref:EU:EVSE": "FRCPIE6599315", + "ref": "FRCPIE6599315", + "name": "SONELOG CESTAS 04", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753907, + 44.714785 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 04", + "ref:EU:EVSE": "FRCPIE6599315", + "ref": "FRCPIE6599315", + "name": "SONELOG CESTAS 04", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753907, + 44.714785 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 04", + "ref:EU:EVSE": "FRCPIE6599365", + "ref": "FRCPIE6599365", + "name": "SONELOG CESTAS 04", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.63142611, + 47.1661501 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Fontaine Colette", + "ref:EU:EVSE": "FRIONE1013", + "ref": "FRIONE1013", + "name": "Fontaine Colette", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.63142611, + 47.1661501 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Fontaine Colette", + "ref:EU:EVSE": "FRIONE10130", + "ref": "FRIONE10130", + "name": "Fontaine Colette", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.63142611, + 47.1661501 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Fontaine Colette", + "ref:EU:EVSE": "FRIONE10130", + "ref": "FRIONE10130", + "name": "Fontaine Colette", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.63142611, + 47.1661501 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Fontaine Colette", + "ref:EU:EVSE": "FRIONE10130", + "ref": "FRIONE10130", + "name": "Fontaine Colette", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.63142611, + 47.1661501 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Fontaine Colette", + "ref:EU:EVSE": "FRIONE10130", + "ref": "FRIONE10130", + "name": "Fontaine Colette", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.109707, + 47.032073 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Glanon", + "ref:EU:EVSE": "FRIONE4124", + "ref": "FRIONE4124", + "name": "Glanon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.109707, + 47.032073 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Glanon", + "ref:EU:EVSE": "FRIONE41240", + "ref": "FRIONE41240", + "name": "Glanon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.109707, + 47.032073 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Glanon", + "ref:EU:EVSE": "FRIONE41240", + "ref": "FRIONE41240", + "name": "Glanon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.109707, + 47.032073 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Glanon", + "ref:EU:EVSE": "FRIONE41240", + "ref": "FRIONE41240", + "name": "Glanon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.109707, + 47.032073 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Glanon", + "ref:EU:EVSE": "FRIONE41240", + "ref": "FRIONE41240", + "name": "Glanon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.607115, + 50.694554 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT BOULOGNE", + "ref:EU:EVSE": "FRCPIE6586915", + "ref": "FRCPIE6586915", + "name": "SONEPAR CONNECT BOULOGNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.607115, + 50.694554 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT BOULOGNE", + "ref:EU:EVSE": "FRCPIE6586915", + "ref": "FRCPIE6586915", + "name": "SONEPAR CONNECT BOULOGNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64893365, + 47.51457851 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROUZIERS DE TOURAINE 1300", + "ref:EU:EVSE": "FRS37E130", + "ref": "FRS37E130", + "name": "ROUZIERS DE TOURAINE 1300", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64893365, + 47.51457851 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROUZIERS DE TOURAINE 1300", + "ref:EU:EVSE": "FRS37E130", + "ref": "FRS37E130", + "name": "ROUZIERS DE TOURAINE 1300", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753907, + 44.714785 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 04", + "ref:EU:EVSE": "FRCPIE6599405", + "ref": "FRCPIE6599405", + "name": "SONELOG CESTAS 04", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753907, + 44.714785 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 04", + "ref:EU:EVSE": "FRCPIE6599405", + "ref": "FRCPIE6599405", + "name": "SONELOG CESTAS 04", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753907, + 44.714785 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 04", + "ref:EU:EVSE": "FRCPIE6599395", + "ref": "FRCPIE6599395", + "name": "SONELOG CESTAS 04", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753907, + 44.714785 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 04", + "ref:EU:EVSE": "FRCPIE6599395", + "ref": "FRCPIE6599395", + "name": "SONELOG CESTAS 04", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753907, + 44.714785 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CESTAS 04", + "ref:EU:EVSE": "FRCPIE6599365", + "ref": "FRCPIE6599365", + "name": "SONELOG CESTAS 04", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref:EU:EVSE": "FRSHEE75", + "ref": "FRSHEE75", + "name": "Shell Aire de l'Arc Sud HW", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref:EU:EVSE": "FRSHEE75", + "ref": "FRSHEE75", + "name": "Shell Aire de l'Arc Sud HW", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref:EU:EVSE": "FRSHEE76", + "ref": "FRSHEE76", + "name": "Shell Aire de l'Arc Sud HW", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03475606, + 47.08256988 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT JEAN SAINT GERMAIN 1321", + "ref:EU:EVSE": "FRS37E132", + "ref": "FRS37E132", + "name": "SAINT JEAN SAINT GERMAIN 1321", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.10745, + 47.030768 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bois Guillerot", + "ref:EU:EVSE": "FRIONE41230", + "ref": "FRIONE41230", + "name": "Bois Guillerot", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.10745, + 47.030768 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bois Guillerot", + "ref:EU:EVSE": "FRIONE41230", + "ref": "FRIONE41230", + "name": "Bois Guillerot", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.10745, + 47.030768 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bois Guillerot", + "ref:EU:EVSE": "FRIONE41230", + "ref": "FRIONE41230", + "name": "Bois Guillerot", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.728485, + 47.665035 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED VANNES", + "ref:EU:EVSE": "FRCPIE6602145", + "ref": "FRCPIE6602145", + "name": "CGED VANNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.728485, + 47.665035 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED VANNES", + "ref:EU:EVSE": "FRCPIE6602145", + "ref": "FRCPIE6602145", + "name": "CGED VANNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30915141, + 47.28568302 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COTEAUX-SUR-LOIRE 1323", + "ref:EU:EVSE": "FRS37E132", + "ref": "FRS37E132", + "name": "COTEAUX-SUR-LOIRE 1323", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30915141, + 47.28568302 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COTEAUX-SUR-LOIRE 1323", + "ref:EU:EVSE": "FRS37E132", + "ref": "FRS37E132", + "name": "COTEAUX-SUR-LOIRE 1323", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35618, + 43.109285 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ASL GAOU BENAT BORNE 1", + "ref:EU:EVSE": "FRCPIE6601775", + "ref": "FRCPIE6601775", + "name": "ASL GAOU BENAT BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35618, + 43.109285 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ASL GAOU BENAT BORNE 1", + "ref:EU:EVSE": "FRCPIE6601775", + "ref": "FRCPIE6601775", + "name": "ASL GAOU BENAT BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03475606, + 47.08256988 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT JEAN SAINT GERMAIN 1321", + "ref:EU:EVSE": "FRS37E132", + "ref": "FRS37E132", + "name": "SAINT JEAN SAINT GERMAIN 1321", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57855158, + 47.4981857 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEMBLANCAY 1315", + "ref:EU:EVSE": "FRS37E131", + "ref": "FRS37E131", + "name": "SEMBLANCAY 1315", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69715172, + 47.24320891 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SORIGNY 1319 - 11 Novembre", + "ref:EU:EVSE": "FRS37E132", + "ref": "FRS37E132", + "name": "SORIGNY 1319 - 11 Novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69715172, + 47.24320891 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SORIGNY 1319 - 11 Novembre", + "ref:EU:EVSE": "FRS37E131", + "ref": "FRS37E131", + "name": "SORIGNY 1319 - 11 Novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.270227, + 48.558649 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 MONTIERS SUR SAULX-rue de l'abbaye-66319", + "ref:EU:EVSE": "FRS55E6632", + "ref": "FRS55E6632", + "name": "55 MONTIERS SUR SAULX-rue de l'abbaye-66319", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.270227, + 48.558649 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 MONTIERS SUR SAULX-rue de l'abbaye-66319", + "ref:EU:EVSE": "FRS55E6631", + "ref": "FRS55E6631", + "name": "55 MONTIERS SUR SAULX-rue de l'abbaye-66319", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.996808, + 43.5859 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED MOUGINS", + "ref:EU:EVSE": "FRCPIE6601395", + "ref": "FRCPIE6601395", + "name": "CGED MOUGINS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.996808, + 43.5859 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED MOUGINS", + "ref:EU:EVSE": "FRCPIE6601395", + "ref": "FRCPIE6601395", + "name": "CGED MOUGINS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.667944, + 47.073438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEPMES 1317", + "ref:EU:EVSE": "FRS37E131", + "ref": "FRS37E131", + "name": "SEPMES 1317", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.667944, + 47.073438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEPMES 1317", + "ref:EU:EVSE": "FRS37E131", + "ref": "FRS37E131", + "name": "SEPMES 1317", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.038942, + 47.262565 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "NETTO BORNE 1", + "ref:EU:EVSE": "FRCPIE6600975", + "ref": "FRCPIE6600975", + "name": "NETTO BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.10745, + 47.030768 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bois Guillerot", + "ref:EU:EVSE": "FRIONE41230", + "ref": "FRIONE41230", + "name": "Bois Guillerot", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.10745, + 47.030768 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bois Guillerot", + "ref:EU:EVSE": "FRIONE4123", + "ref": "FRIONE4123", + "name": "Bois Guillerot", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75572998, + 50.16728841 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Baie de Somme", + "ref:EU:EVSE": "FRIONE40790", + "ref": "FRIONE40790", + "name": "Baie de Somme", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75572998, + 50.16728841 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Baie de Somme", + "ref:EU:EVSE": "FRIONE40790", + "ref": "FRIONE40790", + "name": "Baie de Somme", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61630268, + 47.34229894 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BALLAN MIRE 1332", + "ref:EU:EVSE": "FRS37E133", + "ref": "FRS37E133", + "name": "BALLAN MIRE 1332", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61630268, + 47.34229894 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BALLAN MIRE 1332", + "ref:EU:EVSE": "FRS37E133", + "ref": "FRS37E133", + "name": "BALLAN MIRE 1332", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7991226, + 47.41115111 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VOUVRAY 1331", + "ref:EU:EVSE": "FRS37E133", + "ref": "FRS37E133", + "name": "VOUVRAY 1331", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7991226, + 47.41115111 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VOUVRAY 1331", + "ref:EU:EVSE": "FRS37E133", + "ref": "FRS37E133", + "name": "VOUVRAY 1331", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.138686, + 50.746462 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT RONCQ", + "ref:EU:EVSE": "FRCPIE6602945", + "ref": "FRCPIE6602945", + "name": "SONEPAR CONNECT RONCQ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.138686, + 50.746462 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT RONCQ", + "ref:EU:EVSE": "FRCPIE6602945", + "ref": "FRCPIE6602945", + "name": "SONEPAR CONNECT RONCQ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.662529, + 49.331998 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 SPINCOURT-chemin court-66456", + "ref:EU:EVSE": "FRS55E6645", + "ref": "FRS55E6645", + "name": "55 SPINCOURT-chemin court-66456", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.662529, + 49.331998 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 SPINCOURT-chemin court-66456", + "ref:EU:EVSE": "FRS55E6645", + "ref": "FRS55E6645", + "name": "55 SPINCOURT-chemin court-66456", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42726, + 47.318301 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE AUX NAUX 1699", + "ref:EU:EVSE": "FRS37E170", + "ref": "FRS37E170", + "name": "LA CHAPELLE AUX NAUX 1699", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42726, + 47.318301 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE AUX NAUX 1699", + "ref:EU:EVSE": "FRS37E169", + "ref": "FRS37E169", + "name": "LA CHAPELLE AUX NAUX 1699", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371032, + 48.829294 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT PARIS 13", + "ref:EU:EVSE": "FRCPIE6602545", + "ref": "FRCPIE6602545", + "name": "SONEPAR CONNECT PARIS 13", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371032, + 48.829294 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT PARIS 13", + "ref:EU:EVSE": "FRCPIE6602545", + "ref": "FRCPIE6602545", + "name": "SONEPAR CONNECT PARIS 13", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57813368, + 47.44355115 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT ROCH 1325", + "ref:EU:EVSE": "FRS37E132", + "ref": "FRS37E132", + "name": "SAINT ROCH 1325", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57813368, + 47.44355115 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT ROCH 1325", + "ref:EU:EVSE": "FRS37E132", + "ref": "FRS37E132", + "name": "SAINT ROCH 1325", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75572998, + 50.16728841 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Baie de Somme", + "ref:EU:EVSE": "FRIONE4079", + "ref": "FRIONE4079", + "name": "Baie de Somme", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75572998, + 50.16728841 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Baie de Somme", + "ref:EU:EVSE": "FRIONE40790", + "ref": "FRIONE40790", + "name": "Baie de Somme", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75572998, + 50.16728841 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Baie de Somme", + "ref:EU:EVSE": "FRIONE40790", + "ref": "FRIONE40790", + "name": "Baie de Somme", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75572998, + 50.16728841 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Baie de Somme", + "ref:EU:EVSE": "FRIONE40790", + "ref": "FRIONE40790", + "name": "Baie de Somme", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75572998, + 50.16728841 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Baie de Somme", + "ref:EU:EVSE": "FRIONE40790", + "ref": "FRIONE40790", + "name": "Baie de Somme", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.038942, + 47.262565 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "NETTO BORNE 1", + "ref:EU:EVSE": "FRCPIE6600975", + "ref": "FRCPIE6600975", + "name": "NETTO BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57855158, + 47.4981857 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEMBLANCAY 1315", + "ref:EU:EVSE": "FRS37E131", + "ref": "FRS37E131", + "name": "SEMBLANCAY 1315", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref:EU:EVSE": "FRSHEE76", + "ref": "FRSHEE76", + "name": "Shell Aire de l'Arc Sud HW", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.398564, + 43.545336 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT TOULOUSE 1", + "ref:EU:EVSE": "FRCPIE6599965", + "ref": "FRCPIE6599965", + "name": "SONEPAR CONNECT TOULOUSE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.790509, + 47.660766 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "IT TRATTORIA BORNE 2", + "ref:EU:EVSE": "FRCPIE6659155", + "ref": "FRCPIE6659155", + "name": "IT TRATTORIA BORNE 2", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.790509, + 47.660766 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "IT TRATTORIA BORNE 2", + "ref:EU:EVSE": "FRCPIE6659145", + "ref": "FRCPIE6659145", + "name": "IT TRATTORIA BORNE 2", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.790509, + 47.660766 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "IT TRATTORIA BORNE 2", + "ref:EU:EVSE": "FRCPIE6659145", + "ref": "FRCPIE6659145", + "name": "IT TRATTORIA BORNE 2", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.455994, + 43.64403 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED TOULOUSE N", + "ref:EU:EVSE": "FRCPIE6600265", + "ref": "FRCPIE6600265", + "name": "CGED TOULOUSE N", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.455994, + 43.64403 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED TOULOUSE N", + "ref:EU:EVSE": "FRCPIE6600265", + "ref": "FRCPIE6600265", + "name": "CGED TOULOUSE N", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.157357, + 46.137482 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING WEIDNER STATION 1", + "ref:EU:EVSE": "FRCPIE6600025", + "ref": "FRCPIE6600025", + "name": "PARKING WEIDNER STATION 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.157357, + 46.137482 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING WEIDNER STATION 1", + "ref:EU:EVSE": "FRCPIE6600025", + "ref": "FRCPIE6600025", + "name": "PARKING WEIDNER STATION 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.398564, + 43.545336 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT TOULOUSE 1", + "ref:EU:EVSE": "FRCPIE6599985", + "ref": "FRCPIE6599985", + "name": "SONEPAR CONNECT TOULOUSE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.398564, + 43.545336 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT TOULOUSE 1", + "ref:EU:EVSE": "FRCPIE6599985", + "ref": "FRCPIE6599985", + "name": "SONEPAR CONNECT TOULOUSE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.398564, + 43.545336 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT TOULOUSE 1", + "ref:EU:EVSE": "FRCPIE6599965", + "ref": "FRCPIE6599965", + "name": "SONEPAR CONNECT TOULOUSE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431325, + 49.061436 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 09", + "ref:EU:EVSE": "FRCPIE6726645", + "ref": "FRCPIE6726645", + "name": "RAW PARISGIVERNY 09", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65528244, + 47.41894606 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 1308 - René Coulon", + "ref:EU:EVSE": "FRS37E130", + "ref": "FRS37E130", + "name": "SAINT CYR SUR LOIRE 1308 - René Coulon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65528244, + 47.41894606 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 1308 - René Coulon", + "ref:EU:EVSE": "FRS37E130", + "ref": "FRS37E130", + "name": "SAINT CYR SUR LOIRE 1308 - René Coulon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.050931, + 50.628119 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BIOPATH HDF WAZEMMES 1", + "ref:EU:EVSE": "FRCPIE6599885", + "ref": "FRCPIE6599885", + "name": "BIOPATH HDF WAZEMMES 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.050931, + 50.628119 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BIOPATH HDF WAZEMMES 1", + "ref:EU:EVSE": "FRCPIE6599885", + "ref": "FRCPIE6599885", + "name": "BIOPATH HDF WAZEMMES 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.735517, + 47.288104 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEIGNE 1330 - Centre Abbé Fiot", + "ref:EU:EVSE": "FRS37E138", + "ref": "FRS37E138", + "name": "VEIGNE 1330 - Centre Abbé Fiot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.735517, + 47.288104 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEIGNE 1330 - Centre Abbé Fiot", + "ref:EU:EVSE": "FRS37E133", + "ref": "FRS37E133", + "name": "VEIGNE 1330 - Centre Abbé Fiot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref:EU:EVSE": "FRSHEE77", + "ref": "FRSHEE77", + "name": "Shell Aire de l'Arc Sud HW", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref:EU:EVSE": "FRSHEE77", + "ref": "FRSHEE77", + "name": "Shell Aire de l'Arc Sud HW", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref:EU:EVSE": "FRSHEE77", + "ref": "FRSHEE77", + "name": "Shell Aire de l'Arc Sud HW", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.764199, + 48.146023 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SODALEC-PACE STATION 1", + "ref:EU:EVSE": "FRCPIE6600295", + "ref": "FRCPIE6600295", + "name": "SODALEC-PACE STATION 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.764199, + 48.146023 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SODALEC-PACE STATION 1", + "ref:EU:EVSE": "FRCPIE6600295", + "ref": "FRCPIE6600295", + "name": "SODALEC-PACE STATION 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.159707, + 48.776394 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BAR LE DUC-rue de Couchot-66236", + "ref:EU:EVSE": "FRS55E6623", + "ref": "FRS55E6623", + "name": "55 BAR LE DUC-rue de Couchot-66236", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.159707, + 48.776394 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BAR LE DUC-rue de Couchot-66236", + "ref:EU:EVSE": "FRS55E6623", + "ref": "FRS55E6623", + "name": "55 BAR LE DUC-rue de Couchot-66236", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431325, + 49.061436 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 09", + "ref:EU:EVSE": "FRCPIE6726645", + "ref": "FRCPIE6726645", + "name": "RAW PARISGIVERNY 09", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431325, + 49.061436 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 09", + "ref:EU:EVSE": "FRCPIE6726635", + "ref": "FRCPIE6726635", + "name": "RAW PARISGIVERNY 09", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431325, + 49.061436 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 09", + "ref:EU:EVSE": "FRCPIE6726635", + "ref": "FRCPIE6726635", + "name": "RAW PARISGIVERNY 09", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431325, + 49.061436 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 09", + "ref:EU:EVSE": "FRCPIE6726625", + "ref": "FRCPIE6726625", + "name": "RAW PARISGIVERNY 09", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431325, + 49.061436 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 09", + "ref:EU:EVSE": "FRCPIE6726625", + "ref": "FRCPIE6726625", + "name": "RAW PARISGIVERNY 09", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17219177, + 47.28483695 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGUEIL 1210 - Place Marcelin", + "ref:EU:EVSE": "FRS37E121", + "ref": "FRS37E121", + "name": "BOURGUEIL 1210 - Place Marcelin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17219177, + 47.28483695 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGUEIL 1210 - Place Marcelin", + "ref:EU:EVSE": "FRS37E121", + "ref": "FRS37E121", + "name": "BOURGUEIL 1210 - Place Marcelin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.14284648, + 47.20235927 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAVIGNY EN VERON 1312 - Rue du Stade", + "ref:EU:EVSE": "FRS37E131", + "ref": "FRS37E131", + "name": "SAVIGNY EN VERON 1312 - Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.14284648, + 47.20235927 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAVIGNY EN VERON 1312 - Rue du Stade", + "ref:EU:EVSE": "FRS37E131", + "ref": "FRS37E131", + "name": "SAVIGNY EN VERON 1312 - Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.153017, + 44.4147 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Biscarrosse", + "ref:EU:EVSE": "FRIENE008902", + "ref": "FRIENE008902", + "name": "Biscarrosse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.153017, + 44.4147 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Biscarrosse", + "ref:EU:EVSE": "FRIENE008902", + "ref": "FRIENE008902", + "name": "Biscarrosse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.153017, + 44.4147 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Biscarrosse", + "ref:EU:EVSE": "FRIENE008901", + "ref": "FRIENE008901", + "name": "Biscarrosse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.153017, + 44.4147 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Biscarrosse", + "ref:EU:EVSE": "FRIENE008901", + "ref": "FRIENE008901", + "name": "Biscarrosse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.392652, + 49.20378 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CCI CAEN STATION 2", + "ref:EU:EVSE": "FRCPIE6600385", + "ref": "FRCPIE6600385", + "name": "CCI CAEN STATION 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.392652, + 49.20378 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CCI CAEN STATION 2", + "ref:EU:EVSE": "FRCPIE6600385", + "ref": "FRCPIE6600385", + "name": "CCI CAEN STATION 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61646419, + 47.11129467 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINTE MAURE DE TOURAINE 1310", + "ref:EU:EVSE": "FRS37E131", + "ref": "FRS37E131", + "name": "SAINTE MAURE DE TOURAINE 1310", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61646419, + 47.11129467 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINTE MAURE DE TOURAINE 1310", + "ref:EU:EVSE": "FRS37E131", + "ref": "FRS37E131", + "name": "SAINTE MAURE DE TOURAINE 1310", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.494957, + 46.725501 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St AMAND-MONTROND - Hôpital - 179113", + "ref:EU:EVSE": "FRS18E17911", + "ref": "FRS18E17911", + "name": "St AMAND-MONTROND - Hôpital - 179113", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.494957, + 46.725501 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St AMAND-MONTROND - Hôpital - 179113", + "ref:EU:EVSE": "FRS18E17911", + "ref": "FRS18E17911", + "name": "St AMAND-MONTROND - Hôpital - 179113", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.495216, + 43.309523 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT AGDE", + "ref:EU:EVSE": "FRCPIE6609465", + "ref": "FRCPIE6609465", + "name": "SONEPAR CONNECT AGDE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.495216, + 43.309523 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT AGDE", + "ref:EU:EVSE": "FRCPIE6609465", + "ref": "FRCPIE6609465", + "name": "SONEPAR CONNECT AGDE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.081558, + 47.027467 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRIDORE 1467", + "ref:EU:EVSE": "FRS37E146", + "ref": "FRS37E146", + "name": "BRIDORE 1467", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.987015, + 47.426765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "POCE SUR CISSE 3105 - Route des Industries", + "ref:EU:EVSE": "FRS37E310", + "ref": "FRS37E310", + "name": "POCE SUR CISSE 3105 - Route des Industries", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273798, + 49.167909 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Nord", + "ref:EU:EVSE": "FRIONE41490", + "ref": "FRIONE41490", + "name": "Giberville Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273798, + 49.167909 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Nord", + "ref:EU:EVSE": "FRIONE41490", + "ref": "FRIONE41490", + "name": "Giberville Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.024159, + 48.569637 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SENONCHES - Rue de la ferté Vidame - 134317", + "ref:EU:EVSE": "FRS28E13431", + "ref": "FRS28E13431", + "name": "SENONCHES - Rue de la ferté Vidame - 134317", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.445571, + 47.432981 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs", + "ref:EU:EVSE": "FRS41E20648", + "ref": "FRS41E20648", + "name": "CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.445571, + 47.432981 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs", + "ref:EU:EVSE": "FRS41E20648", + "ref": "FRS41E20648", + "name": "CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.445571, + 47.432981 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs", + "ref:EU:EVSE": "FRS41E20646", + "ref": "FRS41E20646", + "name": "CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.445571, + 47.432981 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs", + "ref:EU:EVSE": "FRS41E20646", + "ref": "FRS41E20646", + "name": "CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.718402, + 47.388512 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST PIERRE DES CORPS 3107 - Place Maurice Thorez", + "ref:EU:EVSE": "FRS37E310", + "ref": "FRS37E310", + "name": "ST PIERRE DES CORPS 3107 - Place Maurice Thorez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.718402, + 47.388512 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST PIERRE DES CORPS 3107 - Place Maurice Thorez", + "ref:EU:EVSE": "FRS37E310", + "ref": "FRS37E310", + "name": "ST PIERRE DES CORPS 3107 - Place Maurice Thorez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.987015, + 47.426765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "POCE SUR CISSE 3105 - Route des Industries", + "ref:EU:EVSE": "FRS37E310", + "ref": "FRS37E310", + "name": "POCE SUR CISSE 3105 - Route des Industries", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273798, + 49.167909 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Nord", + "ref:EU:EVSE": "FRIONE41490", + "ref": "FRIONE41490", + "name": "Giberville Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.465216, + 48.417688 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUISANT - Avenue de la république - 137351", + "ref:EU:EVSE": "FRS28E13735", + "ref": "FRS28E13735", + "name": "LUISANT - Avenue de la république - 137351", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03217, + 48.560768 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SENONCHES - Rue de Verdun - 134278", + "ref:EU:EVSE": "FRS28E13427", + "ref": "FRS28E13427", + "name": "SENONCHES - Rue de Verdun - 134278", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.557893, + 44.311724 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "AJM ENERGIE BUROCLUB", + "ref:EU:EVSE": "FRCPIE6660505", + "ref": "FRCPIE6660505", + "name": "AJM ENERGIE BUROCLUB", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.557893, + 44.311724 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "AJM ENERGIE BUROCLUB", + "ref:EU:EVSE": "FRCPIE6660505", + "ref": "FRCPIE6660505", + "name": "AJM ENERGIE BUROCLUB", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.583614, + 48.547241 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST PIAT - Place Vauvillers - 130523", + "ref:EU:EVSE": "FRS28E13052", + "ref": "FRS28E13052", + "name": "ST PIAT - Place Vauvillers - 130523", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.027419, + 47.322482 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CIVRAY DE TOURAINE 1836 - Z.A. Bois Pataud", + "ref:EU:EVSE": "FRS37E183", + "ref": "FRS37E183", + "name": "CIVRAY DE TOURAINE 1836 - Z.A. Bois Pataud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.027419, + 47.322482 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CIVRAY DE TOURAINE 1836 - Z.A. Bois Pataud", + "ref:EU:EVSE": "FRS37E183", + "ref": "FRS37E183", + "name": "CIVRAY DE TOURAINE 1836 - Z.A. Bois Pataud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.766898, + 44.394767 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "JULSOL BORNE 1", + "ref:EU:EVSE": "FRCPIE6626215", + "ref": "FRCPIE6626215", + "name": "JULSOL BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.766898, + 44.394767 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "JULSOL BORNE 1", + "ref:EU:EVSE": "FRCPIE6626215", + "ref": "FRCPIE6626215", + "name": "JULSOL BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273798, + 49.167909 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Nord", + "ref:EU:EVSE": "FRIONE41490", + "ref": "FRIONE41490", + "name": "Giberville Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273798, + 49.167909 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Nord", + "ref:EU:EVSE": "FRIONE4149", + "ref": "FRIONE4149", + "name": "Giberville Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67069575, + 47.56963676 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT LA RONCE 2577 - Rue des Prés", + "ref:EU:EVSE": "FRS37E257", + "ref": "FRS37E257", + "name": "BEAUMONT LA RONCE 2577 - Rue des Prés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6627475", + "ref": "FRCPIE6627475", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73106, + 47.063082 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURNAN 3559 - Rue Principale", + "ref:EU:EVSE": "FRS37E355", + "ref": "FRS37E355", + "name": "BOURNAN 3559 - Rue Principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57681, + 46.963507 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SELIGNY 3557 - Place Drapeau Caillault", + "ref:EU:EVSE": "FRS37E355", + "ref": "FRS37E355", + "name": "SELIGNY 3557 - Place Drapeau Caillault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57681, + 46.963507 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SELIGNY 3557 - Place Drapeau Caillault", + "ref:EU:EVSE": "FRS37E355", + "ref": "FRS37E355", + "name": "SELIGNY 3557 - Place Drapeau Caillault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6627595", + "ref": "FRCPIE6627595", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6627595", + "ref": "FRCPIE6627595", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6627525", + "ref": "FRCPIE6627525", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6627525", + "ref": "FRCPIE6627525", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6627495", + "ref": "FRCPIE6627495", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6627495", + "ref": "FRCPIE6627495", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6627475", + "ref": "FRCPIE6627475", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6541595", + "ref": "FRCPIE6541595", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6627465", + "ref": "FRCPIE6627465", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6627465", + "ref": "FRCPIE6627465", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6627445", + "ref": "FRCPIE6627445", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6627445", + "ref": "FRCPIE6627445", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6627425", + "ref": "FRCPIE6627425", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6627425", + "ref": "FRCPIE6627425", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6620655", + "ref": "FRCPIE6620655", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6620655", + "ref": "FRCPIE6620655", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.589469, + 48.777083 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 6", + "ref:EU:EVSE": "FRCPIE6541595", + "ref": "FRCPIE6541595", + "name": "WAAT 4 CHENES 6", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.766898, + 44.394767 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "JULSOL BORNE 1", + "ref:EU:EVSE": "FRCPIE6626205", + "ref": "FRCPIE6626205", + "name": "JULSOL BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.766898, + 44.394767 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "JULSOL BORNE 1", + "ref:EU:EVSE": "FRCPIE6626205", + "ref": "FRCPIE6626205", + "name": "JULSOL BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.388022, + 47.52473 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CELLETTES 2958 - Rue de l'Angevinière", + "ref:EU:EVSE": "FRS41E295", + "ref": "FRS41E295", + "name": "CELLETTES 2958 - Rue de l'Angevinière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.438924, + 47.363137 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CINQ MARS LA PILE 2685 - Z.A. Actiloire", + "ref:EU:EVSE": "FRS37E268", + "ref": "FRS37E268", + "name": "CINQ MARS LA PILE 2685 - Z.A. Actiloire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.084551, + 47.314136 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FRANCUEIL 2770 - Parking rue Charles de Gaulles", + "ref:EU:EVSE": "FRS37E277", + "ref": "FRS37E277", + "name": "FRANCUEIL 2770 - Parking rue Charles de Gaulles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.730994, + 48.553416 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR DOL-DE-BRETAGNE", + "ref:EU:EVSE": "FRCPIE6623635", + "ref": "FRCPIE6623635", + "name": "SONEPAR DOL-DE-BRETAGNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.730994, + 48.553416 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR DOL-DE-BRETAGNE", + "ref:EU:EVSE": "FRCPIE6623635", + "ref": "FRCPIE6623635", + "name": "SONEPAR DOL-DE-BRETAGNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.77246, + 47.38737 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX DAMES 2698 - Place du 8 mai 1945", + "ref:EU:EVSE": "FRS37E269", + "ref": "FRS37E269", + "name": "LA VILLE AUX DAMES 2698 - Place du 8 mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.77246, + 47.38737 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX DAMES 2698 - Place du 8 mai 1945", + "ref:EU:EVSE": "FRS37E269", + "ref": "FRS37E269", + "name": "LA VILLE AUX DAMES 2698 - Place du 8 mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.183346, + 47.195244 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT EN VERON 2690 - Rue du Parc", + "ref:EU:EVSE": "FRS37E269", + "ref": "FRS37E269", + "name": "BEAUMONT EN VERON 2690 - Rue du Parc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.183346, + 47.195244 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT EN VERON 2690 - Rue du Parc", + "ref:EU:EVSE": "FRS37E269", + "ref": "FRS37E269", + "name": "BEAUMONT EN VERON 2690 - Rue du Parc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.631847, + 47.495732 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT ANTOINE DU ROCHER 2686 - R. Seriniere", + "ref:EU:EVSE": "FRS37E268", + "ref": "FRS37E268", + "name": "SAINT ANTOINE DU ROCHER 2686 - R. Seriniere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.631847, + 47.495732 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT ANTOINE DU ROCHER 2686 - R. Seriniere", + "ref:EU:EVSE": "FRS37E268", + "ref": "FRS37E268", + "name": "SAINT ANTOINE DU ROCHER 2686 - R. Seriniere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.438924, + 47.363137 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CINQ MARS LA PILE 2685 - Z.A. Actiloire", + "ref:EU:EVSE": "FRS37E268", + "ref": "FRS37E268", + "name": "CINQ MARS LA PILE 2685 - Z.A. Actiloire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.388022, + 47.52473 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CELLETTES 2958 - Rue de l'Angevinière", + "ref:EU:EVSE": "FRS41E295", + "ref": "FRS41E295", + "name": "CELLETTES 2958 - Rue de l'Angevinière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45328, + 47.022995 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUZE 2682 - Parking derrière la mairie", + "ref:EU:EVSE": "FRS37E268", + "ref": "FRS37E268", + "name": "LUZE 2682 - Parking derrière la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45328, + 47.022995 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUZE 2682 - Parking derrière la mairie", + "ref:EU:EVSE": "FRS37E268", + "ref": "FRS37E268", + "name": "LUZE 2682 - Parking derrière la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.976555, + 47.424187 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAZELLES NEGRON 1287 - Avenue du Centre", + "ref:EU:EVSE": "FRS37E128", + "ref": "FRS37E128", + "name": "NAZELLES NEGRON 1287 - Avenue du Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.976555, + 47.424187 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAZELLES NEGRON 1287 - Avenue du Centre", + "ref:EU:EVSE": "FRS37E128", + "ref": "FRS37E128", + "name": "NAZELLES NEGRON 1287 - Avenue du Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88746, + 46.841416 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOUSSAY 2681 - Rue Notre Dame des Champs", + "ref:EU:EVSE": "FRS37E269", + "ref": "FRS37E269", + "name": "BOUSSAY 2681 - Rue Notre Dame des Champs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88746, + 46.841416 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOUSSAY 2681 - Rue Notre Dame des Champs", + "ref:EU:EVSE": "FRS37E268", + "ref": "FRS37E268", + "name": "BOUSSAY 2681 - Rue Notre Dame des Champs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.337525, + 48.677313 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR AVRANCHES", + "ref:EU:EVSE": "FRCPIE6623475", + "ref": "FRCPIE6623475", + "name": "SONEPAR AVRANCHES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.337525, + 48.677313 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR AVRANCHES", + "ref:EU:EVSE": "FRCPIE6623475", + "ref": "FRCPIE6623475", + "name": "SONEPAR AVRANCHES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.820331, + 47.042476 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LIGUEIL 2579 - Allée des Cyclamens", + "ref:EU:EVSE": "FRS37E258", + "ref": "FRS37E258", + "name": "LIGUEIL 2579 - Allée des Cyclamens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.084551, + 47.314136 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FRANCUEIL 2770 - Parking rue Charles de Gaulles", + "ref:EU:EVSE": "FRS37E277", + "ref": "FRS37E277", + "name": "FRANCUEIL 2770 - Parking rue Charles de Gaulles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91895, + 47.330502 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ATHEE SUR CHER 2772 - ZA de la Ferriere", + "ref:EU:EVSE": "FRS37E277", + "ref": "FRS37E277", + "name": "ATHEE SUR CHER 2772 - ZA de la Ferriere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91895, + 47.330502 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ATHEE SUR CHER 2772 - ZA de la Ferriere", + "ref:EU:EVSE": "FRS37E277", + "ref": "FRS37E277", + "name": "ATHEE SUR CHER 2772 - ZA de la Ferriere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.840599, + 47.257093 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TAUXIGNY 2782 - ZA Node Park", + "ref:EU:EVSE": "FRS37E278", + "ref": "FRS37E278", + "name": "TAUXIGNY 2782 - ZA Node Park", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.547499, + 47.547449 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUILLE PONT PIERRE 2947 - Place de la mairie", + "ref:EU:EVSE": "FRS37E294", + "ref": "FRS37E294", + "name": "NEUILLE PONT PIERRE 2947 - Place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.547499, + 47.547449 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUILLE PONT PIERRE 2947 - Place de la mairie", + "ref:EU:EVSE": "FRS37E294", + "ref": "FRS37E294", + "name": "NEUILLE PONT PIERRE 2947 - Place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.355931, + 47.573036 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GERVAIS LA FORET 2945 - Route de Chambord", + "ref:EU:EVSE": "FRS41E294", + "ref": "FRS41E294", + "name": "SAINT GERVAIS LA FORET 2945 - Route de Chambord", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.355931, + 47.573036 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GERVAIS LA FORET 2945 - Route de Chambord", + "ref:EU:EVSE": "FRS41E294", + "ref": "FRS41E294", + "name": "SAINT GERVAIS LA FORET 2945 - Route de Chambord", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.455906, + 47.512561 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COUR CHEVERNY 2937 - Avenue Anciens combattants", + "ref:EU:EVSE": "FRS41E293", + "ref": "FRS41E293", + "name": "COUR CHEVERNY 2937 - Avenue Anciens combattants", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.455906, + 47.512561 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COUR CHEVERNY 2937 - Avenue Anciens combattants", + "ref:EU:EVSE": "FRS41E293", + "ref": "FRS41E293", + "name": "COUR CHEVERNY 2937 - Avenue Anciens combattants", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.233368, + 47.902339 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MOREE 2935 - Place du 8 Mai", + "ref:EU:EVSE": "FRS41E293", + "ref": "FRS41E293", + "name": "MOREE 2935 - Place du 8 Mai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.233368, + 47.902339 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MOREE 2935 - Place du 8 Mai", + "ref:EU:EVSE": "FRS41E293", + "ref": "FRS41E293", + "name": "MOREE 2935 - Place du 8 Mai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.526321, + 47.911214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "OUZOUER LE MARCHE 2932 - Place du 8 Mai", + "ref:EU:EVSE": "FRS41E293", + "ref": "FRS41E293", + "name": "OUZOUER LE MARCHE 2932 - Place du 8 Mai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.526321, + 47.911214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "OUZOUER LE MARCHE 2932 - Place du 8 Mai", + "ref:EU:EVSE": "FRS41E293", + "ref": "FRS41E293", + "name": "OUZOUER LE MARCHE 2932 - Place du 8 Mai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959916, + 48.648549 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED ST DIZIER", + "ref:EU:EVSE": "FRCPIE6624885", + "ref": "FRCPIE6624885", + "name": "CGED CGED ST DIZIER", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959916, + 48.648549 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED ST DIZIER", + "ref:EU:EVSE": "FRCPIE6624885", + "ref": "FRCPIE6624885", + "name": "CGED CGED ST DIZIER", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.681046, + 47.500549 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNOU EN SOLOGNE 2928 - Place de l'Eglise", + "ref:EU:EVSE": "FRS41E292", + "ref": "FRS41E292", + "name": "VERNOU EN SOLOGNE 2928 - Place de l'Eglise", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.681046, + 47.500549 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNOU EN SOLOGNE 2928 - Place de l'Eglise", + "ref:EU:EVSE": "FRS41E292", + "ref": "FRS41E292", + "name": "VERNOU EN SOLOGNE 2928 - Place de l'Eglise", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.797433, + 47.365592 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEHERVIERS 2926 - Rue de la Gare", + "ref:EU:EVSE": "FRS41E292", + "ref": "FRS41E292", + "name": "VILLEHERVIERS 2926 - Rue de la Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.797433, + 47.365592 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEHERVIERS 2926 - Rue de la Gare", + "ref:EU:EVSE": "FRS41E292", + "ref": "FRS41E292", + "name": "VILLEHERVIERS 2926 - Rue de la Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.865448, + 47.268447 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MENNETOU SUR CHER 2924 - Place du 11 Novembre", + "ref:EU:EVSE": "FRS41E292", + "ref": "FRS41E292", + "name": "MENNETOU SUR CHER 2924 - Place du 11 Novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.865448, + 47.268447 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MENNETOU SUR CHER 2924 - Place du 11 Novembre", + "ref:EU:EVSE": "FRS41E292", + "ref": "FRS41E292", + "name": "MENNETOU SUR CHER 2924 - Place du 11 Novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.840599, + 47.257093 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TAUXIGNY 2782 - ZA Node Park", + "ref:EU:EVSE": "FRS37E278", + "ref": "FRS37E278", + "name": "TAUXIGNY 2782 - ZA Node Park", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73106, + 47.063082 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURNAN 3559 - Rue Principale", + "ref:EU:EVSE": "FRS37E356", + "ref": "FRS37E356", + "name": "BOURNAN 3559 - Rue Principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.114696, + 47.280285 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPEIGNE LES BOIS 3561 - Parking du plan d'eau", + "ref:EU:EVSE": "FRS37E356", + "ref": "FRS37E356", + "name": "EPEIGNE LES BOIS 3561 - Parking du plan d'eau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.114696, + 47.280285 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPEIGNE LES BOIS 3561 - Parking du plan d'eau", + "ref:EU:EVSE": "FRS37E356", + "ref": "FRS37E356", + "name": "EPEIGNE LES BOIS 3561 - Parking du plan d'eau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38237017, + 48.7101955 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vernouillet", + "ref:EU:EVSE": "FRIENE008501", + "ref": "FRIENE008501", + "name": "Vernouillet", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.918671, + 49.242974 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vrigny", + "ref:EU:EVSE": "FRIONE4017", + "ref": "FRIONE4017", + "name": "Vrigny", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.918671, + 49.242974 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vrigny", + "ref:EU:EVSE": "FRIONE40170", + "ref": "FRIONE40170", + "name": "Vrigny", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.918671, + 49.242974 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vrigny", + "ref:EU:EVSE": "FRIONE40170", + "ref": "FRIONE40170", + "name": "Vrigny", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.918671, + 49.242974 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vrigny", + "ref:EU:EVSE": "FRIONE40170", + "ref": "FRIONE40170", + "name": "Vrigny", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.918671, + 49.242974 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vrigny", + "ref:EU:EVSE": "FRIONE40170", + "ref": "FRIONE40170", + "name": "Vrigny", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.330067, + 43.317932 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR PAU", + "ref:EU:EVSE": "FRCPIE6630425", + "ref": "FRCPIE6630425", + "name": "SONEPAR PAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.330067, + 43.317932 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR PAU", + "ref:EU:EVSE": "FRCPIE6630425", + "ref": "FRCPIE6630425", + "name": "SONEPAR PAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38237017, + 48.7101955 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vernouillet", + "ref:EU:EVSE": "FRIENE008502", + "ref": "FRIENE008502", + "name": "Vernouillet", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38237017, + 48.7101955 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vernouillet", + "ref:EU:EVSE": "FRIENE008502", + "ref": "FRIENE008502", + "name": "Vernouillet", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38237017, + 48.7101955 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vernouillet", + "ref:EU:EVSE": "FRIENE008501", + "ref": "FRIENE008501", + "name": "Vernouillet", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 19", + "ref:EU:EVSE": "FRCPIE6601075", + "ref": "FRCPIE6601075", + "name": "MANUTAN 19", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.340464, + 48.703578 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GARNAY - Parking mairie - 137368", + "ref:EU:EVSE": "FRS28E13736", + "ref": "FRS28E13736", + "name": "GARNAY - Parking mairie - 137368", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.340464, + 48.703578 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GARNAY - Parking mairie - 137368", + "ref:EU:EVSE": "FRS28E13736", + "ref": "FRS28E13736", + "name": "GARNAY - Parking mairie - 137368", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.358596, + 47.566555 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GERVAIS LA FORET 3780", + "ref:EU:EVSE": "FRS41E378", + "ref": "FRS41E378", + "name": "SAINT GERVAIS LA FORET 3780", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.358596, + 47.566555 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GERVAIS LA FORET 3780", + "ref:EU:EVSE": "FRS41E378", + "ref": "FRS41E378", + "name": "SAINT GERVAIS LA FORET 3780", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.563245, + 43.1786 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED OLORON-STE-MARI", + "ref:EU:EVSE": "FRCPIE6629455", + "ref": "FRCPIE6629455", + "name": "CGED OLORON-STE-MARI", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.563245, + 43.1786 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED OLORON-STE-MARI", + "ref:EU:EVSE": "FRCPIE6629455", + "ref": "FRCPIE6629455", + "name": "CGED OLORON-STE-MARI", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.244193, + 48.579345 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUNEUF EN THYMERAIS - Jean Moulin - 134302", + "ref:EU:EVSE": "FRS28E13430", + "ref": "FRS28E13430", + "name": "CHATEAUNEUF EN THYMERAIS - Jean Moulin - 134302", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 19", + "ref:EU:EVSE": "FRCPIE6605975", + "ref": "FRCPIE6605975", + "name": "MANUTAN 19", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 19", + "ref:EU:EVSE": "FRCPIE6605975", + "ref": "FRCPIE6605975", + "name": "MANUTAN 19", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.796171, + 43.818161 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE SAFER BORNE 2", + "ref:EU:EVSE": "FRCPIE6630485", + "ref": "FRCPIE6630485", + "name": "BORNE SAFER BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.796171, + 43.818161 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE SAFER BORNE 2", + "ref:EU:EVSE": "FRCPIE6630485", + "ref": "FRCPIE6630485", + "name": "BORNE SAFER BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.796171, + 43.818161 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE SAFER BORNE 2", + "ref:EU:EVSE": "FRCPIE6630495", + "ref": "FRCPIE6630495", + "name": "BORNE SAFER BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.796171, + 43.818161 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE SAFER BORNE 2", + "ref:EU:EVSE": "FRCPIE6630495", + "ref": "FRCPIE6630495", + "name": "BORNE SAFER BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.183371, + 47.938264 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U ARNAGE ARNAGE 5 DC", + "ref:EU:EVSE": "FRCPIE6631545", + "ref": "FRCPIE6631545", + "name": "SUPER U ARNAGE ARNAGE 5 DC", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.226371, + 44.910821 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LIBOURNE", + "ref:EU:EVSE": "FRCPIE6631655", + "ref": "FRCPIE6631655", + "name": "SONEPAR LIBOURNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.226371, + 44.910821 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LIBOURNE", + "ref:EU:EVSE": "FRCPIE6631655", + "ref": "FRCPIE6631655", + "name": "SONEPAR LIBOURNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3438376, + 43.3603506 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc NORD", + "ref:EU:EVSE": "FRSHEE164", + "ref": "FRSHEE164", + "name": "Shell Aire de Béziers-Montblanc NORD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3438376, + 43.3603506 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc NORD", + "ref:EU:EVSE": "FRSHEE164", + "ref": "FRSHEE164", + "name": "Shell Aire de Béziers-Montblanc NORD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3438376, + 43.3603506 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc NORD", + "ref:EU:EVSE": "FRSHEE164", + "ref": "FRSHEE164", + "name": "Shell Aire de Béziers-Montblanc NORD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3438376, + 43.3603506 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc NORD", + "ref:EU:EVSE": "FRSHEE163", + "ref": "FRSHEE163", + "name": "Shell Aire de Béziers-Montblanc NORD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3438376, + 43.3603506 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc NORD", + "ref:EU:EVSE": "FRSHEE163", + "ref": "FRSHEE163", + "name": "Shell Aire de Béziers-Montblanc NORD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3438376, + 43.3603506 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc NORD", + "ref:EU:EVSE": "FRSHEE163", + "ref": "FRSHEE163", + "name": "Shell Aire de Béziers-Montblanc NORD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46166, + 46.135004 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ITM ST JEOIRE BORNE 1", + "ref:EU:EVSE": "FRCPIE6715655", + "ref": "FRCPIE6715655", + "name": "ITM ST JEOIRE BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46166, + 46.135004 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ITM ST JEOIRE BORNE 1", + "ref:EU:EVSE": "FRCPIE6715655", + "ref": "FRCPIE6715655", + "name": "ITM ST JEOIRE BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77145, + 49.346833 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING CAMPING BORNE 3", + "ref:EU:EVSE": "FRCPIE6719695", + "ref": "FRCPIE6719695", + "name": "PARKING CAMPING BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77145, + 49.346833 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING CAMPING BORNE 3", + "ref:EU:EVSE": "FRCPIE6719695", + "ref": "FRCPIE6719695", + "name": "PARKING CAMPING BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77145, + 49.346833 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING CAMPING BORNE 3", + "ref:EU:EVSE": "FRCPIE6719675", + "ref": "FRCPIE6719675", + "name": "PARKING CAMPING BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77145, + 49.346833 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING CAMPING BORNE 3", + "ref:EU:EVSE": "FRCPIE6719675", + "ref": "FRCPIE6719675", + "name": "PARKING CAMPING BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77145, + 49.346833 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING CAMPING BORNE 3", + "ref:EU:EVSE": "FRCPIE6717765", + "ref": "FRCPIE6717765", + "name": "PARKING CAMPING BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77145, + 49.346833 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PARKING CAMPING BORNE 3", + "ref:EU:EVSE": "FRCPIE6717765", + "ref": "FRCPIE6717765", + "name": "PARKING CAMPING BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.058091, + 48.503769 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BELHOMERT-GUEHOUVILLE - De Gaulle - 137374", + "ref:EU:EVSE": "FRS28E13737", + "ref": "FRS28E13737", + "name": "BELHOMERT-GUEHOUVILLE - De Gaulle - 137374", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.058091, + 48.503769 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BELHOMERT-GUEHOUVILLE - De Gaulle - 137374", + "ref:EU:EVSE": "FRS28E13737", + "ref": "FRS28E13737", + "name": "BELHOMERT-GUEHOUVILLE - De Gaulle - 137374", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 19", + "ref:EU:EVSE": "FRCPIE6601075", + "ref": "FRCPIE6601075", + "name": "MANUTAN 19", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 19", + "ref:EU:EVSE": "FRCPIE6601065", + "ref": "FRCPIE6601065", + "name": "MANUTAN 19", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.27542, + 47.112003 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LIGRE 3563 - Rue Saint Martin", + "ref:EU:EVSE": "FRS37E356", + "ref": "FRS37E356", + "name": "LIGRE 3563 - Rue Saint Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 9", + "ref:EU:EVSE": "FRCPIE6606025", + "ref": "FRCPIE6606025", + "name": "MANUTAN 9", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.626942, + 47.277408 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTS 3569 - Place de la Fontaine", + "ref:EU:EVSE": "FRS37E356", + "ref": "FRS37E356", + "name": "MONTS 3569 - Place de la Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.51155, + 47.169884 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUIL 3567 - Parking Impasse des Lizas", + "ref:EU:EVSE": "FRS37E356", + "ref": "FRS37E356", + "name": "NEUIL 3567 - Parking Impasse des Lizas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.51155, + 47.169884 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUIL 3567 - Parking Impasse des Lizas", + "ref:EU:EVSE": "FRS37E356", + "ref": "FRS37E356", + "name": "NEUIL 3567 - Parking Impasse des Lizas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.446263, + 47.676153 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Suèvres", + "ref:EU:EVSE": "FRIENE008202", + "ref": "FRIENE008202", + "name": "Suèvres", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.446263, + 47.676153 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Suèvres", + "ref:EU:EVSE": "FRIENE008202", + "ref": "FRIENE008202", + "name": "Suèvres", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.446263, + 47.676153 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Suèvres", + "ref:EU:EVSE": "FRIENE008201", + "ref": "FRIENE008201", + "name": "Suèvres", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.446263, + 47.676153 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Suèvres", + "ref:EU:EVSE": "FRIENE008201", + "ref": "FRIENE008201", + "name": "Suèvres", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.94856, + 47.487114 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTREUIL EN TOURAINE 3565 - Rue du Bourg", + "ref:EU:EVSE": "FRS37E356", + "ref": "FRS37E356", + "name": "MONTREUIL EN TOURAINE 3565 - Rue du Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.94856, + 47.487114 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTREUIL EN TOURAINE 3565 - Rue du Bourg", + "ref:EU:EVSE": "FRS37E356", + "ref": "FRS37E356", + "name": "MONTREUIL EN TOURAINE 3565 - Rue du Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 9", + "ref:EU:EVSE": "FRCPIE6606025", + "ref": "FRCPIE6606025", + "name": "MANUTAN 9", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 19", + "ref:EU:EVSE": "FRCPIE6601065", + "ref": "FRCPIE6601065", + "name": "MANUTAN 19", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 9", + "ref:EU:EVSE": "FRCPIE6605985", + "ref": "FRCPIE6605985", + "name": "MANUTAN 9", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 9", + "ref:EU:EVSE": "FRCPIE6605985", + "ref": "FRCPIE6605985", + "name": "MANUTAN 9", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 9", + "ref:EU:EVSE": "FRCPIE6601045", + "ref": "FRCPIE6601045", + "name": "MANUTAN 9", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 9", + "ref:EU:EVSE": "FRCPIE6601045", + "ref": "FRCPIE6601045", + "name": "MANUTAN 9", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 9", + "ref:EU:EVSE": "FRCPIE6601035", + "ref": "FRCPIE6601035", + "name": "MANUTAN 9", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 9", + "ref:EU:EVSE": "FRCPIE6601035", + "ref": "FRCPIE6601035", + "name": "MANUTAN 9", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 9", + "ref:EU:EVSE": "FRCPIE6601025", + "ref": "FRCPIE6601025", + "name": "MANUTAN 9", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 9", + "ref:EU:EVSE": "FRCPIE6601025", + "ref": "FRCPIE6601025", + "name": "MANUTAN 9", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.27542, + 47.112003 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LIGRE 3563 - Rue Saint Martin", + "ref:EU:EVSE": "FRS37E356", + "ref": "FRS37E356", + "name": "LIGRE 3563 - Rue Saint Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.626942, + 47.277408 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTS 3569 - Place de la Fontaine", + "ref:EU:EVSE": "FRS37E357", + "ref": "FRS37E357", + "name": "MONTS 3569 - Place de la Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9696, + 47.045402 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT SENOCH 3571 - Rue Charles de Gaulle", + "ref:EU:EVSE": "FRS37E357", + "ref": "FRS37E357", + "name": "SAINT SENOCH 3571 - Rue Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9696, + 47.045402 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT SENOCH 3571 - Rue Charles de Gaulle", + "ref:EU:EVSE": "FRS37E357", + "ref": "FRS37E357", + "name": "SAINT SENOCH 3571 - Rue Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4014, + 47.592044 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BRANFERE BORNE 2", + "ref:EU:EVSE": "FRCPIE6712375", + "ref": "FRCPIE6712375", + "name": "BRANFERE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 19", + "ref:EU:EVSE": "FRCPIE6601055", + "ref": "FRCPIE6601055", + "name": "MANUTAN 19", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 19", + "ref:EU:EVSE": "FRCPIE6601055", + "ref": "FRCPIE6601055", + "name": "MANUTAN 19", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.445425, + 43.914529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED MONT-DE-MARSAN", + "ref:EU:EVSE": "FRCPIE6629175", + "ref": "FRCPIE6629175", + "name": "CGED MONT-DE-MARSAN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.445425, + 43.914529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED MONT-DE-MARSAN", + "ref:EU:EVSE": "FRCPIE6629175", + "ref": "FRCPIE6629175", + "name": "CGED MONT-DE-MARSAN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.075448, + 47.81808 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT OUEN 3717 - Allée du Parc de Bel Air", + "ref:EU:EVSE": "FRS41E371", + "ref": "FRS41E371", + "name": "SAINT OUEN 3717 - Allée du Parc de Bel Air", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.075448, + 47.81808 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT OUEN 3717 - Allée du Parc de Bel Air", + "ref:EU:EVSE": "FRS41E371", + "ref": "FRS41E371", + "name": "SAINT OUEN 3717 - Allée du Parc de Bel Air", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.389685, + 48.675894 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VIRY-CHATILLON", + "ref:EU:EVSE": "FRCPIE6628885", + "ref": "FRCPIE6628885", + "name": "SONEPAR VIRY-CHATILLON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.389685, + 48.675894 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VIRY-CHATILLON", + "ref:EU:EVSE": "FRCPIE6628885", + "ref": "FRCPIE6628885", + "name": "SONEPAR VIRY-CHATILLON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.845654, + 43.11634 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR SIX-FOURS", + "ref:EU:EVSE": "FRCPIE6666475", + "ref": "FRCPIE6666475", + "name": "SONEPAR SIX-FOURS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.845654, + 43.11634 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR SIX-FOURS", + "ref:EU:EVSE": "FRCPIE6666475", + "ref": "FRCPIE6666475", + "name": "SONEPAR SIX-FOURS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.859204, + 46.849213 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CHALLANS", + "ref:EU:EVSE": "FRCPIE6627985", + "ref": "FRCPIE6627985", + "name": "SONEPAR CHALLANS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.859204, + 46.849213 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CHALLANS", + "ref:EU:EVSE": "FRCPIE6627985", + "ref": "FRCPIE6627985", + "name": "SONEPAR CHALLANS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5283, + 47.649058 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEBOURG 3578 - Place de la mairie", + "ref:EU:EVSE": "FRS37E357", + "ref": "FRS37E357", + "name": "VILLEBOURG 3578 - Place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5283, + 47.649058 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEBOURG 3578 - Place de la mairie", + "ref:EU:EVSE": "FRS37E357", + "ref": "FRS37E357", + "name": "VILLEBOURG 3578 - Place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21797, + 47.092181 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LOCHE SUR INDROIS 3573 - Place du Mail", + "ref:EU:EVSE": "FRS37E357", + "ref": "FRS37E357", + "name": "LOCHE SUR INDROIS 3573 - Place du Mail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21797, + 47.092181 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LOCHE SUR INDROIS 3573 - Place du Mail", + "ref:EU:EVSE": "FRS37E357", + "ref": "FRS37E357", + "name": "LOCHE SUR INDROIS 3573 - Place du Mail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4014, + 47.592044 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BRANFERE BORNE 2", + "ref:EU:EVSE": "FRCPIE6712385", + "ref": "FRCPIE6712385", + "name": "BRANFERE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4014, + 47.592044 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BRANFERE BORNE 2", + "ref:EU:EVSE": "FRCPIE6712385", + "ref": "FRCPIE6712385", + "name": "BRANFERE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4014, + 47.592044 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BRANFERE BORNE 2", + "ref:EU:EVSE": "FRCPIE6712375", + "ref": "FRCPIE6712375", + "name": "BRANFERE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.820331, + 47.042476 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LIGUEIL 2579 - Allée des Cyclamens", + "ref:EU:EVSE": "FRS37E257", + "ref": "FRS37E257", + "name": "LIGUEIL 2579 - Allée des Cyclamens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67069575, + 47.56963676 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT LA RONCE 2577 - Rue des Prés", + "ref:EU:EVSE": "FRS37E257", + "ref": "FRS37E257", + "name": "BEAUMONT LA RONCE 2577 - Rue des Prés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.081558, + 47.027467 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRIDORE 1467", + "ref:EU:EVSE": "FRS37E146", + "ref": "FRS37E146", + "name": "BRIDORE 1467", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.7043, + 43.381839 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PACAZAC BORNE 2", + "ref:EU:EVSE": "FRCPIE6612695", + "ref": "FRCPIE6612695", + "name": "PACAZAC BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.770931, + 48.330962 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HPSM BORNE 1 ET 2", + "ref:EU:EVSE": "FRCPIE6613045", + "ref": "FRCPIE6613045", + "name": "HPSM BORNE 1 ET 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.030155, + 47.433521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARGE 1558", + "ref:EU:EVSE": "FRS37E157", + "ref": "FRS37E157", + "name": "CHARGE 1558", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.030155, + 47.433521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARGE 1558", + "ref:EU:EVSE": "FRS37E155", + "ref": "FRS37E155", + "name": "CHARGE 1558", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47377385, + 47.31067554 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VALLERES 1567", + "ref:EU:EVSE": "FRS37E156", + "ref": "FRS37E156", + "name": "VALLERES 1567", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47377385, + 47.31067554 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VALLERES 1567", + "ref:EU:EVSE": "FRS37E156", + "ref": "FRS37E156", + "name": "VALLERES 1567", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.538582, + 47.14435 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT EPAIN 1565", + "ref:EU:EVSE": "FRS37E156", + "ref": "FRS37E156", + "name": "SAINT EPAIN 1565", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.538582, + 47.14435 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT EPAIN 1565", + "ref:EU:EVSE": "FRS37E156", + "ref": "FRS37E156", + "name": "SAINT EPAIN 1565", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.7043, + 43.381839 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PACAZAC BORNE 2", + "ref:EU:EVSE": "FRCPIE6612705", + "ref": "FRCPIE6612705", + "name": "PACAZAC BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.7043, + 43.381839 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PACAZAC BORNE 2", + "ref:EU:EVSE": "FRCPIE6612705", + "ref": "FRCPIE6612705", + "name": "PACAZAC BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.7043, + 43.381839 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PACAZAC BORNE 2", + "ref:EU:EVSE": "FRCPIE6612695", + "ref": "FRCPIE6612695", + "name": "PACAZAC BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.770931, + 48.330962 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HPSM BORNE 1 ET 2", + "ref:EU:EVSE": "FRCPIE6665345", + "ref": "FRCPIE6665345", + "name": "HPSM BORNE 1 ET 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.39297, + 47.425562 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CLERE LES PINS 1563", + "ref:EU:EVSE": "FRS37E156", + "ref": "FRS37E156", + "name": "CLERE LES PINS 1563", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.39297, + 47.425562 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CLERE LES PINS 1563", + "ref:EU:EVSE": "FRS37E156", + "ref": "FRS37E156", + "name": "CLERE LES PINS 1563", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186173, + 48.044019 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMUNE NOUVELLE - Eglise Langey - 137316", + "ref:EU:EVSE": "FRS28E13731", + "ref": "FRS28E13731", + "name": "COMMUNE NOUVELLE - Eglise Langey - 137316", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186173, + 48.044019 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMUNE NOUVELLE - Eglise Langey - 137316", + "ref:EU:EVSE": "FRS28E13731", + "ref": "FRS28E13731", + "name": "COMMUNE NOUVELLE - Eglise Langey - 137316", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35329, + 45.8641 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Culhat", + "ref:EU:EVSE": "FRIENE007702", + "ref": "FRIENE007702", + "name": "Culhat", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35329, + 45.8641 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Culhat", + "ref:EU:EVSE": "FRIENE007702", + "ref": "FRIENE007702", + "name": "Culhat", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35329, + 45.8641 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Culhat", + "ref:EU:EVSE": "FRIENE007701", + "ref": "FRIENE007701", + "name": "Culhat", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35329, + 45.8641 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Culhat", + "ref:EU:EVSE": "FRIENE007701", + "ref": "FRIENE007701", + "name": "Culhat", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.526151, + 44.587586 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LES ARCHES BORNE 1", + "ref:EU:EVSE": "FRCPIE6612645", + "ref": "FRCPIE6612645", + "name": "LES ARCHES BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.770931, + 48.330962 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HPSM BORNE 1 ET 2", + "ref:EU:EVSE": "FRCPIE6613045", + "ref": "FRCPIE6613045", + "name": "HPSM BORNE 1 ET 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.770931, + 48.330962 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HPSM BORNE 1 ET 2", + "ref:EU:EVSE": "FRCPIE6665345", + "ref": "FRCPIE6665345", + "name": "HPSM BORNE 1 ET 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40336, + 47.049277 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA TOUR SAINT GELIN 2576 - Rue de l'Eglise", + "ref:EU:EVSE": "FRS37E259", + "ref": "FRS37E259", + "name": "LA TOUR SAINT GELIN 2576 - Rue de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.736871, + 50.738909 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "Logis Belle Hôtel - 59270 - 2", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Logis Belle Hôtel - 59270 - 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.150316, + 48.304113 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Mirecourt", + "ref:EU:EVSE": "FRIENE007101", + "ref": "FRIENE007101", + "name": "Mirecourt", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24028784, + 48.44961266 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURVILLE SUR EURE - 1 Rue Des Planches - 137731", + "ref:EU:EVSE": "FRS28E20057", + "ref": "FRS28E20057", + "name": "COURVILLE SUR EURE - 1 Rue Des Planches - 137731", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.128424, + 48.229805 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U 72170 BORNE 2", + "ref:EU:EVSE": "FRCPIE6651965", + "ref": "FRCPIE6651965", + "name": "SUPER U 72170 BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.128424, + 48.229805 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U 72170 BORNE 2", + "ref:EU:EVSE": "FRCPIE6651965", + "ref": "FRCPIE6651965", + "name": "SUPER U 72170 BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.128424, + 48.229805 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U 72170 BORNE 2", + "ref:EU:EVSE": "FRCPIE6651955", + "ref": "FRCPIE6651955", + "name": "SUPER U 72170 BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.128424, + 48.229805 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U 72170 BORNE 2", + "ref:EU:EVSE": "FRCPIE6651955", + "ref": "FRCPIE6651955", + "name": "SUPER U 72170 BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.777857, + 47.585916 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT EN GATINES 1581", + "ref:EU:EVSE": "FRS37E158", + "ref": "FRS37E158", + "name": "SAINT LAURENT EN GATINES 1581", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.777857, + 47.585916 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT EN GATINES 1581", + "ref:EU:EVSE": "FRS37E158", + "ref": "FRS37E158", + "name": "SAINT LAURENT EN GATINES 1581", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.023238, + 46.881979 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CADETEL BORNE PARKING", + "ref:EU:EVSE": "FRCPIE6615325", + "ref": "FRCPIE6615325", + "name": "CADETEL BORNE PARKING", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.421643, + 47.382828 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAZIERES DE TOURAINE 15734 - Rue du Stade", + "ref:EU:EVSE": "FRS37E1573", + "ref": "FRS37E1573", + "name": "MAZIERES DE TOURAINE 15734 - Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17863, + 48.666908 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VANDOEUVRE - PISCINE MICHEL BERTRAND - 187014", + "ref:EU:EVSE": "FRN54E18701", + "ref": "FRN54E18701", + "name": "VANDOEUVRE - PISCINE MICHEL BERTRAND - 187014", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17863, + 48.666908 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VANDOEUVRE - PISCINE MICHEL BERTRAND - 187014", + "ref:EU:EVSE": "FRN54E18701", + "ref": "FRN54E18701", + "name": "VANDOEUVRE - PISCINE MICHEL BERTRAND - 187014", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19641119, + 47.39251545 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GIZEUX 15744 - Place de la Mairie", + "ref:EU:EVSE": "FRS37E1574", + "ref": "FRS37E1574", + "name": "GIZEUX 15744 - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19641119, + 47.39251545 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GIZEUX 15744 - Place de la Mairie", + "ref:EU:EVSE": "FRS37E1574", + "ref": "FRS37E1574", + "name": "GIZEUX 15744 - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.874505, + 46.834555 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HU CHALLANS U LOCATION", + "ref:EU:EVSE": "FRCPIE6614125", + "ref": "FRCPIE6614125", + "name": "HU CHALLANS U LOCATION", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.874505, + 46.834555 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HU CHALLANS U LOCATION", + "ref:EU:EVSE": "FRCPIE6614125", + "ref": "FRCPIE6614125", + "name": "HU CHALLANS U LOCATION", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.825341, + 50.450746 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED LENS", + "ref:EU:EVSE": "FRCPIE6613825", + "ref": "FRCPIE6613825", + "name": "CGED LENS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.825341, + 50.450746 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED LENS", + "ref:EU:EVSE": "FRCPIE6613825", + "ref": "FRCPIE6613825", + "name": "CGED LENS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.421643, + 47.382828 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAZIERES DE TOURAINE 15734 - Rue du Stade", + "ref:EU:EVSE": "FRS37E1573", + "ref": "FRS37E1573", + "name": "MAZIERES DE TOURAINE 15734 - Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.526151, + 44.587586 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LES ARCHES BORNE 1", + "ref:EU:EVSE": "FRCPIE6612645", + "ref": "FRCPIE6612645", + "name": "LES ARCHES BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.143177, + 49.050615 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "3C CLIM ST OUEN", + "ref:EU:EVSE": "FRCPIE6612625", + "ref": "FRCPIE6612625", + "name": "3C CLIM ST OUEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.143177, + 49.050615 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "3C CLIM ST OUEN", + "ref:EU:EVSE": "FRCPIE6612625", + "ref": "FRCPIE6612625", + "name": "3C CLIM ST OUEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.64144, + 49.078606 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DORMANS -70244 - Gare", + "ref:EU:EVSE": "FRS51E7024", + "ref": "FRS51E7024", + "name": "DORMANS -70244 - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.429227, + 46.776249 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "STATION SUPER U BELLEVIGNY 4", + "ref:EU:EVSE": "FRCPIE6610375", + "ref": "FRCPIE6610375", + "name": "STATION SUPER U BELLEVIGNY 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.429227, + 46.776249 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "STATION SUPER U BELLEVIGNY 4", + "ref:EU:EVSE": "FRCPIE6610375", + "ref": "FRCPIE6610375", + "name": "STATION SUPER U BELLEVIGNY 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.429227, + 46.776249 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "STATION SUPER U BELLEVIGNY 4", + "ref:EU:EVSE": "FRCPIE6610355", + "ref": "FRCPIE6610355", + "name": "STATION SUPER U BELLEVIGNY 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.429227, + 46.776249 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "STATION SUPER U BELLEVIGNY 4", + "ref:EU:EVSE": "FRCPIE6610355", + "ref": "FRCPIE6610355", + "name": "STATION SUPER U BELLEVIGNY 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.429383, + 46.776081 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "STATION SUPER U BELLEVIGNY DC", + "ref:EU:EVSE": "FRCPIE6610415", + "ref": "FRCPIE6610415", + "name": "STATION SUPER U BELLEVIGNY DC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.429383, + 46.776081 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "STATION SUPER U BELLEVIGNY DC", + "ref:EU:EVSE": "FRCPIE6610415", + "ref": "FRCPIE6610415", + "name": "STATION SUPER U BELLEVIGNY DC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.429383, + 46.776081 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "STATION SUPER U BELLEVIGNY DC", + "ref:EU:EVSE": "FRCPIE6610335", + "ref": "FRCPIE6610335", + "name": "STATION SUPER U BELLEVIGNY DC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.429383, + 46.776081 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "STATION SUPER U BELLEVIGNY DC", + "ref:EU:EVSE": "FRCPIE6610335", + "ref": "FRCPIE6610335", + "name": "STATION SUPER U BELLEVIGNY DC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.64144, + 49.078606 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DORMANS -70244 - Gare", + "ref:EU:EVSE": "FRS51E7024", + "ref": "FRS51E7024", + "name": "DORMANS -70244 - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.958078, + 49.043274 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UNILABS BIO CT EPERNAY", + "ref:EU:EVSE": "FRCPIE6609845", + "ref": "FRCPIE6609845", + "name": "UNILABS BIO CT EPERNAY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78140646, + 44.51378472 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Est", + "ref:EU:EVSE": "FRIONE4035", + "ref": "FRIONE4035", + "name": "Montélimar Est", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.958078, + 49.043274 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UNILABS BIO CT EPERNAY", + "ref:EU:EVSE": "FRCPIE6609845", + "ref": "FRCPIE6609845", + "name": "UNILABS BIO CT EPERNAY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.256099, + 43.331777 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT BEZIERS_", + "ref:EU:EVSE": "FRCPIE6609535", + "ref": "FRCPIE6609535", + "name": "SONEPAR CONNECT BEZIERS_", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.256099, + 43.331777 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT BEZIERS_", + "ref:EU:EVSE": "FRCPIE6609535", + "ref": "FRCPIE6609535", + "name": "SONEPAR CONNECT BEZIERS_", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.222769, + 43.368789 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED BEZIERS", + "ref:EU:EVSE": "FRCPIE6609505", + "ref": "FRCPIE6609505", + "name": "CGED BEZIERS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.222769, + 43.368789 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED BEZIERS", + "ref:EU:EVSE": "FRCPIE6609505", + "ref": "FRCPIE6609505", + "name": "CGED BEZIERS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.087499, + 49.100667 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT SAINT-LÔ", + "ref:EU:EVSE": "FRCPIE6609475", + "ref": "FRCPIE6609475", + "name": "SONEPAR CONNECT SAINT-LÔ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.087499, + 49.100667 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT SAINT-LÔ", + "ref:EU:EVSE": "FRCPIE6609475", + "ref": "FRCPIE6609475", + "name": "SONEPAR CONNECT SAINT-LÔ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.745838, + 47.441886 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PARCAY MESLAY 1469", + "ref:EU:EVSE": "FRS37E147", + "ref": "FRS37E147", + "name": "PARCAY MESLAY 1469", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.745838, + 47.441886 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PARCAY MESLAY 1469", + "ref:EU:EVSE": "FRS37E146", + "ref": "FRS37E146", + "name": "PARCAY MESLAY 1469", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.429227, + 46.776249 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "STATION SUPER U BELLEVIGNY 4", + "ref:EU:EVSE": "FRCPIE6610385", + "ref": "FRCPIE6610385", + "name": "STATION SUPER U BELLEVIGNY 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.429227, + 46.776249 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "STATION SUPER U BELLEVIGNY 4", + "ref:EU:EVSE": "FRCPIE6610385", + "ref": "FRCPIE6610385", + "name": "STATION SUPER U BELLEVIGNY 4", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331183, + 43.477012 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT MURET", + "ref:EU:EVSE": "FRCPIE6610395", + "ref": "FRCPIE6610395", + "name": "SONEPAR CONNECT MURET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331183, + 43.477012 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT MURET", + "ref:EU:EVSE": "FRCPIE6610395", + "ref": "FRCPIE6610395", + "name": "SONEPAR CONNECT MURET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78140646, + 44.51378472 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Est", + "ref:EU:EVSE": "FRIONE40350", + "ref": "FRIONE40350", + "name": "Montélimar Est", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78140646, + 44.51378472 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Est", + "ref:EU:EVSE": "FRIONE40350", + "ref": "FRIONE40350", + "name": "Montélimar Est", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78140646, + 44.51378472 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Est", + "ref:EU:EVSE": "FRIONE40350", + "ref": "FRIONE40350", + "name": "Montélimar Est", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78140646, + 44.51378472 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Est", + "ref:EU:EVSE": "FRIONE40350", + "ref": "FRIONE40350", + "name": "Montélimar Est", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78140646, + 44.51378472 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Est", + "ref:EU:EVSE": "FRIONE40350", + "ref": "FRIONE40350", + "name": "Montélimar Est", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78140646, + 44.51378472 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Est", + "ref:EU:EVSE": "FRIONE40350", + "ref": "FRIONE40350", + "name": "Montélimar Est", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.319486, + 46.857443 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUNEUF-sur-Cher - Parking La Poste - 202094", + "ref:EU:EVSE": "FRS18E20209", + "ref": "FRS18E20209", + "name": "CHATEAUNEUF-sur-Cher - Parking La Poste - 202094", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.319486, + 46.857443 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUNEUF-sur-Cher - Parking La Poste - 202094", + "ref:EU:EVSE": "FRS18E20209", + "ref": "FRS18E20209", + "name": "CHATEAUNEUF-sur-Cher - Parking La Poste - 202094", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.031039, + 49.289838 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CAUDEBEC", + "ref:EU:EVSE": "FRCPIE6612515", + "ref": "FRCPIE6612515", + "name": "SONEPAR CONNECT CAUDEBEC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.031039, + 49.289838 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CAUDEBEC", + "ref:EU:EVSE": "FRCPIE6612515", + "ref": "FRCPIE6612515", + "name": "SONEPAR CONNECT CAUDEBEC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91908306, + 47.54254534 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Auzouer de Touraine - 53927 - Pl Général Leclerc", + "ref:EU:EVSE": "FRS37E5392", + "ref": "FRS37E5392", + "name": "Auzouer de Touraine - 53927 - Pl Général Leclerc", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6263851, + 47.40395902 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FONDETTES 1376 - Gustave Eiffel", + "ref:EU:EVSE": "FRS37E137", + "ref": "FRS37E137", + "name": "FONDETTES 1376 - Gustave Eiffel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6263851, + 47.40395902 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FONDETTES 1376 - Gustave Eiffel", + "ref:EU:EVSE": "FRS37E137", + "ref": "FRS37E137", + "name": "FONDETTES 1376 - Gustave Eiffel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.90823621, + 47.58978807 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHÂTEAU RENAULT 1551 - Avenue du Maine", + "ref:EU:EVSE": "FRS37E155", + "ref": "FRS37E155", + "name": "CHÂTEAU RENAULT 1551 - Avenue du Maine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.90823621, + 47.58978807 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHÂTEAU RENAULT 1551 - Avenue du Maine", + "ref:EU:EVSE": "FRS37E155", + "ref": "FRS37E155", + "name": "CHÂTEAU RENAULT 1551 - Avenue du Maine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.356001, + 48.752678 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT DREUX", + "ref:EU:EVSE": "FRCPIE6612085", + "ref": "FRCPIE6612085", + "name": "SONEPAR CONNECT DREUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.356001, + 48.752678 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT DREUX", + "ref:EU:EVSE": "FRCPIE6612085", + "ref": "FRCPIE6612085", + "name": "SONEPAR CONNECT DREUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.135338, + 48.079532 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMUNE NOUVELLE D'ARROU - Place Rillé - 137295", + "ref:EU:EVSE": "FRS28E13729", + "ref": "FRS28E13729", + "name": "COMMUNE NOUVELLE D'ARROU - Place Rillé - 137295", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.135338, + 48.079532 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMUNE NOUVELLE D'ARROU - Place Rillé - 137295", + "ref:EU:EVSE": "FRS28E13729", + "ref": "FRS28E13729", + "name": "COMMUNE NOUVELLE D'ARROU - Place Rillé - 137295", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.150316, + 48.304113 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Mirecourt", + "ref:EU:EVSE": "FRIENE007101", + "ref": "FRIENE007101", + "name": "Mirecourt", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.150316, + 48.304113 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Mirecourt", + "ref:EU:EVSE": "FRIENE007102", + "ref": "FRIENE007102", + "name": "Mirecourt", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.150316, + 48.304113 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Mirecourt", + "ref:EU:EVSE": "FRIENE007102", + "ref": "FRIENE007102", + "name": "Mirecourt", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.054163, + 48.9646 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Changis sur Marne", + "ref:EU:EVSE": "FRFASE331110", + "ref": "FRFASE331110", + "name": "Aire de Changis sur Marne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33295, + 43.980521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "DRB BORNE 1", + "ref:EU:EVSE": "FRCPIE6620815", + "ref": "FRCPIE6620815", + "name": "DRB BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33295, + 43.980521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "DRB BORNE 1", + "ref:EU:EVSE": "FRCPIE6620815", + "ref": "FRCPIE6620815", + "name": "DRB BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.054163, + 48.9646 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Changis sur Marne", + "ref:EU:EVSE": "FRFASE331110", + "ref": "FRFASE331110", + "name": "Aire de Changis sur Marne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.054163, + 48.9646 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Changis sur Marne", + "ref:EU:EVSE": "FRFASE331110", + "ref": "FRFASE331110", + "name": "Aire de Changis sur Marne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.054163, + 48.9646 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Changis sur Marne", + "ref:EU:EVSE": "FRFASE331110", + "ref": "FRFASE331110", + "name": "Aire de Changis sur Marne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.054163, + 48.9646 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Changis sur Marne", + "ref:EU:EVSE": "FRFASE331110", + "ref": "FRFASE331110", + "name": "Aire de Changis sur Marne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.054163, + 48.9646 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Changis sur Marne", + "ref:EU:EVSE": "FRFASE331110", + "ref": "FRFASE331110", + "name": "Aire de Changis sur Marne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.054163, + 48.9646 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Changis sur Marne", + "ref:EU:EVSE": "FRFASE331110", + "ref": "FRFASE331110", + "name": "Aire de Changis sur Marne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.054163, + 48.9646 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Changis sur Marne", + "ref:EU:EVSE": "FRFASE331110", + "ref": "FRFASE331110", + "name": "Aire de Changis sur Marne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.111411, + 47.281329 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPEIGNE LES BOIS 1737", + "ref:EU:EVSE": "FRS37E173", + "ref": "FRS37E173", + "name": "EPEIGNE LES BOIS 1737", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91261509, + 47.59588842 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHÂTEAU RENAULT 1700 - Parking rue Gambetta", + "ref:EU:EVSE": "FRS37E170", + "ref": "FRS37E170", + "name": "CHÂTEAU RENAULT 1700 - Parking rue Gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.111411, + 47.281329 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPEIGNE LES BOIS 1737", + "ref:EU:EVSE": "FRS37E173", + "ref": "FRS37E173", + "name": "EPEIGNE LES BOIS 1737", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.773284, + 48.425225 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VULAINES", + "ref:EU:EVSE": "FRCPIE6620685", + "ref": "FRCPIE6620685", + "name": "SONEPAR VULAINES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.773284, + 48.425225 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VULAINES", + "ref:EU:EVSE": "FRCPIE6620685", + "ref": "FRCPIE6620685", + "name": "SONEPAR VULAINES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76171, + 47.383392 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX DAMES 1724 - Jacqueline Auriol", + "ref:EU:EVSE": "FRS37E172", + "ref": "FRS37E172", + "name": "LA VILLE AUX DAMES 1724 - Jacqueline Auriol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76171, + 47.383392 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX DAMES 1724 - Jacqueline Auriol", + "ref:EU:EVSE": "FRS37E172", + "ref": "FRS37E172", + "name": "LA VILLE AUX DAMES 1724 - Jacqueline Auriol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.814847, + 47.357802 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERETZ 1698", + "ref:EU:EVSE": "FRS37E170", + "ref": "FRS37E170", + "name": "VERETZ 1698", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.814847, + 47.357802 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERETZ 1698", + "ref:EU:EVSE": "FRS37E169", + "ref": "FRS37E169", + "name": "VERETZ 1698", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.226074, + 47.280291 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RESTIGNE 1701", + "ref:EU:EVSE": "FRS37E170", + "ref": "FRS37E170", + "name": "RESTIGNE 1701", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.226074, + 47.280291 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RESTIGNE 1701", + "ref:EU:EVSE": "FRS37E170", + "ref": "FRS37E170", + "name": "RESTIGNE 1701", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33295, + 43.980521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "DRB BORNE 1", + "ref:EU:EVSE": "FRCPIE6620845", + "ref": "FRCPIE6620845", + "name": "DRB BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33295, + 43.980521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "DRB BORNE 1", + "ref:EU:EVSE": "FRCPIE6620845", + "ref": "FRCPIE6620845", + "name": "DRB BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35220841, + 47.26778016 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RIVARENNES 1830", + "ref:EU:EVSE": "FRS37E183", + "ref": "FRS37E183", + "name": "RIVARENNES 1830", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35220841, + 47.26778016 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RIVARENNES 1830", + "ref:EU:EVSE": "FRS37E183", + "ref": "FRS37E183", + "name": "RIVARENNES 1830", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40336, + 47.049277 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA TOUR SAINT GELIN 2576 - Rue de l'Eglise", + "ref:EU:EVSE": "FRS37E257", + "ref": "FRS37E257", + "name": "LA TOUR SAINT GELIN 2576 - Rue de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91056, + 47.51268 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUILLE LE LIERRE 2575 - Place de la mairie", + "ref:EU:EVSE": "FRS37E277", + "ref": "FRS37E277", + "name": "NEUILLE LE LIERRE 2575 - Place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91056, + 47.51268 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUILLE LE LIERRE 2575 - Place de la mairie", + "ref:EU:EVSE": "FRS37E257", + "ref": "FRS37E257", + "name": "NEUILLE LE LIERRE 2575 - Place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.252231, + 47.163506 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHINON 2572 - Parking de la gare", + "ref:EU:EVSE": "FRS37E257", + "ref": "FRS37E257", + "name": "CHINON 2572 - Parking de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.252231, + 47.163506 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHINON 2572 - Parking de la gare", + "ref:EU:EVSE": "FRS37E257", + "ref": "FRS37E257", + "name": "CHINON 2572 - Parking de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.337841, + 46.916074 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR PONTARLIER", + "ref:EU:EVSE": "FRCPIE6621925", + "ref": "FRCPIE6621925", + "name": "SONEPAR PONTARLIER", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.337841, + 46.916074 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR PONTARLIER", + "ref:EU:EVSE": "FRCPIE6621925", + "ref": "FRCPIE6621925", + "name": "SONEPAR PONTARLIER", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.902142, + 47.587438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHÂTEAU RENAULT 1842 - Gare Boulevard National", + "ref:EU:EVSE": "FRS37E184", + "ref": "FRS37E184", + "name": "CHÂTEAU RENAULT 1842 - Gare Boulevard National", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.902142, + 47.587438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHÂTEAU RENAULT 1842 - Gare Boulevard National", + "ref:EU:EVSE": "FRS37E184", + "ref": "FRS37E184", + "name": "CHÂTEAU RENAULT 1842 - Gare Boulevard National", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.669537, + 47.409894 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 1838 -Parking Guy Raynaud", + "ref:EU:EVSE": "FRS37E183", + "ref": "FRS37E183", + "name": "SAINT CYR SUR LOIRE 1838 -Parking Guy Raynaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.669537, + 47.409894 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 1838 -Parking Guy Raynaud", + "ref:EU:EVSE": "FRS37E183", + "ref": "FRS37E183", + "name": "SAINT CYR SUR LOIRE 1838 -Parking Guy Raynaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.756788, + 44.512308 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANOIR LE ROURE BORNE 2", + "ref:EU:EVSE": "FRCPIE6621065", + "ref": "FRCPIE6621065", + "name": "MANOIR LE ROURE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.756788, + 44.512308 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANOIR LE ROURE BORNE 2", + "ref:EU:EVSE": "FRCPIE6621065", + "ref": "FRCPIE6621065", + "name": "MANOIR LE ROURE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.756788, + 44.512308 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANOIR LE ROURE BORNE 2", + "ref:EU:EVSE": "FRCPIE6621055", + "ref": "FRCPIE6621055", + "name": "MANOIR LE ROURE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.756788, + 44.512308 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANOIR LE ROURE BORNE 2", + "ref:EU:EVSE": "FRCPIE6621055", + "ref": "FRCPIE6621055", + "name": "MANOIR LE ROURE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.257426, + 47.507438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT DE LIN 1834", + "ref:EU:EVSE": "FRS37E184", + "ref": "FRS37E184", + "name": "SAINT LAURENT DE LIN 1834", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.257426, + 47.507438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT DE LIN 1834", + "ref:EU:EVSE": "FRS37E183", + "ref": "FRS37E183", + "name": "SAINT LAURENT DE LIN 1834", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.97706083, + 47.4194015 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAZELLES NEGRON 1832 - Rue d'Amboise", + "ref:EU:EVSE": "FRS37E184", + "ref": "FRS37E184", + "name": "NAZELLES NEGRON 1832 - Rue d'Amboise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.97706083, + 47.4194015 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAZELLES NEGRON 1832 - Rue d'Amboise", + "ref:EU:EVSE": "FRS37E183", + "ref": "FRS37E183", + "name": "NAZELLES NEGRON 1832 - Rue d'Amboise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91261509, + 47.59588842 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHÂTEAU RENAULT 1700 - Parking rue Gambetta", + "ref:EU:EVSE": "FRS37E170", + "ref": "FRS37E170", + "name": "CHÂTEAU RENAULT 1700 - Parking rue Gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.357446, + 46.198169 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-MARTIN-DE-RE", + "ref:EU:EVSE": "FRCPIE6620005", + "ref": "FRCPIE6620005", + "name": "SONEPAR ST-MARTIN-DE-RE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.514194, + 48.095883 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VARIZE - Rue du Châteaux - 130758", + "ref:EU:EVSE": "FRS28E13075", + "ref": "FRS28E13075", + "name": "VARIZE - Rue du Châteaux - 130758", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.890957, + 47.421157 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOIZAY 1646", + "ref:EU:EVSE": "FRS37E164", + "ref": "FRS37E164", + "name": "NOIZAY 1646", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.323531, + 47.017299 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RICHELIEU 16553 - Route de Chinon", + "ref:EU:EVSE": "FRS37E1655", + "ref": "FRS37E1655", + "name": "RICHELIEU 16553 - Route de Chinon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4275, + 48.093584 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CHÂTEAUBOURG 4", + "ref:EU:EVSE": "FRCPIE6623865", + "ref": "FRCPIE6623865", + "name": "SONELOG CHÂTEAUBOURG 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4275, + 48.093584 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CHÂTEAUBOURG 4", + "ref:EU:EVSE": "FRCPIE6623865", + "ref": "FRCPIE6623865", + "name": "SONELOG CHÂTEAUBOURG 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4275, + 48.093584 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CHÂTEAUBOURG 4", + "ref:EU:EVSE": "FRCPIE6623855", + "ref": "FRCPIE6623855", + "name": "SONELOG CHÂTEAUBOURG 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4275, + 48.093584 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CHÂTEAUBOURG 4", + "ref:EU:EVSE": "FRCPIE6623855", + "ref": "FRCPIE6623855", + "name": "SONELOG CHÂTEAUBOURG 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4275, + 48.093584 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CHÂTEAUBOURG 4", + "ref:EU:EVSE": "FRCPIE6623845", + "ref": "FRCPIE6623845", + "name": "SONELOG CHÂTEAUBOURG 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4275, + 48.093584 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CHÂTEAUBOURG 4", + "ref:EU:EVSE": "FRCPIE6623845", + "ref": "FRCPIE6623845", + "name": "SONELOG CHÂTEAUBOURG 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4275, + 48.093584 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CHÂTEAUBOURG 4", + "ref:EU:EVSE": "FRCPIE6618695", + "ref": "FRCPIE6618695", + "name": "SONELOG CHÂTEAUBOURG 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4275, + 48.093584 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG CHÂTEAUBOURG 4", + "ref:EU:EVSE": "FRCPIE6618695", + "ref": "FRCPIE6618695", + "name": "SONELOG CHÂTEAUBOURG 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.890957, + 47.421157 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOIZAY 1646", + "ref:EU:EVSE": "FRS37E164", + "ref": "FRS37E164", + "name": "NOIZAY 1646", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.357446, + 46.198169 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-MARTIN-DE-RE", + "ref:EU:EVSE": "FRCPIE6620005", + "ref": "FRCPIE6620005", + "name": "SONEPAR ST-MARTIN-DE-RE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.23937643, + 47.16950518 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHINON 1644 - Parking de la forteresse", + "ref:EU:EVSE": "FRS37E164", + "ref": "FRS37E164", + "name": "CHINON 1644 - Parking de la forteresse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.23937643, + 47.16950518 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHINON 1644 - Parking de la forteresse", + "ref:EU:EVSE": "FRS37E164", + "ref": "FRS37E164", + "name": "CHINON 1644 - Parking de la forteresse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.059549, + 47.46819359 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CANGEY 1643", + "ref:EU:EVSE": "FRS37E164", + "ref": "FRS37E164", + "name": "CANGEY 1643", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.059549, + 47.46819359 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CANGEY 1643", + "ref:EU:EVSE": "FRS37E164", + "ref": "FRS37E164", + "name": "CANGEY 1643", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47347, + 48.447741 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAINVILLIERS - Rue de la république - 137395", + "ref:EU:EVSE": "FRS28E13739", + "ref": "FRS28E13739", + "name": "MAINVILLIERS - Rue de la république - 137395", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.527064, + 48.5392 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MERCK SITES EUR P4-02", + "ref:EU:EVSE": "FRCPIE6727755", + "ref": "FRCPIE6727755", + "name": "MERCK SITES EUR P4-02", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.527064, + 48.5392 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MERCK SITES EUR P4-02", + "ref:EU:EVSE": "FRCPIE6727755", + "ref": "FRCPIE6727755", + "name": "MERCK SITES EUR P4-02", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.527064, + 48.5392 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MERCK SITES EUR P4-02", + "ref:EU:EVSE": "FRCPIE6727745", + "ref": "FRCPIE6727745", + "name": "MERCK SITES EUR P4-02", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.527064, + 48.5392 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MERCK SITES EUR P4-02", + "ref:EU:EVSE": "FRCPIE6727745", + "ref": "FRCPIE6727745", + "name": "MERCK SITES EUR P4-02", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.323531, + 47.017299 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RICHELIEU 16553 - Route de Chinon", + "ref:EU:EVSE": "FRS37E1655", + "ref": "FRS37E1655", + "name": "RICHELIEU 16553 - Route de Chinon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.89409, + 50.656424 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED ARMENTIERES", + "ref:EU:EVSE": "FRCPIE6619225", + "ref": "FRCPIE6619225", + "name": "CGED ARMENTIERES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.89409, + 50.656424 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED ARMENTIERES", + "ref:EU:EVSE": "FRCPIE6619225", + "ref": "FRCPIE6619225", + "name": "CGED ARMENTIERES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396948, + 49.20068 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUSAINTCONTEST BORNE 2", + "ref:EU:EVSE": "FRCPIE6681485", + "ref": "FRCPIE6681485", + "name": "SUSAINTCONTEST BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.968669, + 47.422511 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAZELLES NEGRON 1696 - Boulevard de l'Avenir", + "ref:EU:EVSE": "FRS37E169", + "ref": "FRS37E169", + "name": "NAZELLES NEGRON 1696 - Boulevard de l'Avenir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.968669, + 47.422511 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAZELLES NEGRON 1696 - Boulevard de l'Avenir", + "ref:EU:EVSE": "FRS37E169", + "ref": "FRS37E169", + "name": "NAZELLES NEGRON 1696 - Boulevard de l'Avenir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.81891078, + 47.3788355 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTLOUIS SUR LOIRE 1694 - Maison communautaire", + "ref:EU:EVSE": "FRS37E170", + "ref": "FRS37E170", + "name": "MONTLOUIS SUR LOIRE 1694 - Maison communautaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.81891078, + 47.3788355 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTLOUIS SUR LOIRE 1694 - Maison communautaire", + "ref:EU:EVSE": "FRS37E169", + "ref": "FRS37E169", + "name": "MONTLOUIS SUR LOIRE 1694 - Maison communautaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.80232797, + 47.39714715 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTLOUIS SUR LOIRE 1693 - Rue Leonard de Vinci", + "ref:EU:EVSE": "FRS37E169", + "ref": "FRS37E169", + "name": "MONTLOUIS SUR LOIRE 1693 - Rue Leonard de Vinci", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.80232797, + 47.39714715 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTLOUIS SUR LOIRE 1693 - Rue Leonard de Vinci", + "ref:EU:EVSE": "FRS37E169", + "ref": "FRS37E169", + "name": "MONTLOUIS SUR LOIRE 1693 - Rue Leonard de Vinci", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.046251, + 47.332938 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CIVRAY DE TOURAINE 1691 - Salle des fêtes", + "ref:EU:EVSE": "FRS37E169", + "ref": "FRS37E169", + "name": "CIVRAY DE TOURAINE 1691 - Salle des fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.046251, + 47.332938 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CIVRAY DE TOURAINE 1691 - Salle des fêtes", + "ref:EU:EVSE": "FRS37E1561", + "ref": "FRS37E1561", + "name": "CIVRAY DE TOURAINE 1691 - Salle des fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.985279, + 46.913225 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARNIZAY 1690", + "ref:EU:EVSE": "FRS37E170", + "ref": "FRS37E170", + "name": "CHARNIZAY 1690", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.985279, + 46.913225 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARNIZAY 1690", + "ref:EU:EVSE": "FRS37E169", + "ref": "FRS37E169", + "name": "CHARNIZAY 1690", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02235481, + 47.41472228 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AMBOISE 1688 - Rue André Huard", + "ref:EU:EVSE": "FRS37E168", + "ref": "FRS37E168", + "name": "AMBOISE 1688 - Rue André Huard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02235481, + 47.41472228 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AMBOISE 1688 - Rue André Huard", + "ref:EU:EVSE": "FRS37E168", + "ref": "FRS37E168", + "name": "AMBOISE 1688 - Rue André Huard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1842, + 48.645181 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR NANCY", + "ref:EU:EVSE": "FRCPIE6619675", + "ref": "FRCPIE6619675", + "name": "SONEPAR NANCY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1842, + 48.645181 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR NANCY", + "ref:EU:EVSE": "FRCPIE6619675", + "ref": "FRCPIE6619675", + "name": "SONEPAR NANCY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66912, + 47.42307 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 16781 - rue Maurice Genevoix", + "ref:EU:EVSE": "FRS37E1678", + "ref": "FRS37E1678", + "name": "SAINT CYR SUR LOIRE 16781 - rue Maurice Genevoix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66912, + 47.42307 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 16781 - rue Maurice Genevoix", + "ref:EU:EVSE": "FRS37E1678", + "ref": "FRS37E1678", + "name": "SAINT CYR SUR LOIRE 16781 - rue Maurice Genevoix", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396948, + 49.20068 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUSAINTCONTEST BORNE 2", + "ref:EU:EVSE": "FRCPIE6681505", + "ref": "FRCPIE6681505", + "name": "SUSAINTCONTEST BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396948, + 49.20068 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUSAINTCONTEST BORNE 2", + "ref:EU:EVSE": "FRCPIE6681505", + "ref": "FRCPIE6681505", + "name": "SUSAINTCONTEST BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396948, + 49.20068 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUSAINTCONTEST BORNE 2", + "ref:EU:EVSE": "FRCPIE6681485", + "ref": "FRCPIE6681485", + "name": "SUSAINTCONTEST BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05837, + 48.326772 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Plouasne", + "ref:EU:EVSE": "FRIENE008801", + "ref": "FRIENE008801", + "name": "Plouasne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13341, + 43.715255 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Ambrussum Nord", + "ref:EU:EVSE": "FRFASE330070", + "ref": "FRFASE330070", + "name": "Aire d’Ambrussum Nord", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.981914, + 49.26254 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St Brice Courcelles - 93668 - 4 août 1789", + "ref:EU:EVSE": "FRS51E9366", + "ref": "FRS51E9366", + "name": "St Brice Courcelles - 93668 - 4 août 1789", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.720691, + 48.721745 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEZANNE - 42863 - Place du Champ Benoist", + "ref:EU:EVSE": "FRS51E4286", + "ref": "FRS51E4286", + "name": "SEZANNE - 42863 - Place du Champ Benoist", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.557073, + 48.73262 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ESTERNAY - 42869 - PLACE DES TILLEULS", + "ref:EU:EVSE": "FRS51E4286", + "ref": "FRS51E4286", + "name": "ESTERNAY - 42869 - PLACE DES TILLEULS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.557073, + 48.73262 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ESTERNAY - 42869 - PLACE DES TILLEULS", + "ref:EU:EVSE": "FRS51E4286", + "ref": "FRS51E4286", + "name": "ESTERNAY - 42869 - PLACE DES TILLEULS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0577, + 48.4911 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Taden", + "ref:EU:EVSE": "FRIENE000902", + "ref": "FRIENE000902", + "name": "Taden", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0577, + 48.4911 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Taden", + "ref:EU:EVSE": "FRIENE000902", + "ref": "FRIENE000902", + "name": "Taden", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0577, + 48.4911 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Taden", + "ref:EU:EVSE": "FRIENE000901", + "ref": "FRIENE000901", + "name": "Taden", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0577, + 48.4911 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Taden", + "ref:EU:EVSE": "FRIENE000901", + "ref": "FRIENE000901", + "name": "Taden", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.720691, + 48.721745 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEZANNE - 42863 - Place du Champ Benoist", + "ref:EU:EVSE": "FRS51E4286", + "ref": "FRS51E4286", + "name": "SEZANNE - 42863 - Place du Champ Benoist", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.110091, + 46.797692 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Pierre-le-Moûtier", + "ref:EU:EVSE": "FRIENE006302", + "ref": "FRIENE006302", + "name": "Saint-Pierre-le-Moûtier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586908, + 48.77765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 30", + "ref:EU:EVSE": "FRCPIE6715745", + "ref": "FRCPIE6715745", + "name": "WAAT 4 CHENES 30", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.110091, + 46.797692 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Pierre-le-Moûtier", + "ref:EU:EVSE": "FRIENE006302", + "ref": "FRIENE006302", + "name": "Saint-Pierre-le-Moûtier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.110091, + 46.797692 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Pierre-le-Moûtier", + "ref:EU:EVSE": "FRIENE006301", + "ref": "FRIENE006301", + "name": "Saint-Pierre-le-Moûtier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.110091, + 46.797692 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Pierre-le-Moûtier", + "ref:EU:EVSE": "FRIENE006301", + "ref": "FRIENE006301", + "name": "Saint-Pierre-le-Moûtier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.463518, + 48.450539 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAINVILLIERS - Place du marché - 137401", + "ref:EU:EVSE": "FRS28E13740", + "ref": "FRS28E13740", + "name": "MAINVILLIERS - Place du marché - 137401", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919507, + 46.92181 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE PETIT PRESSIGNY 1270", + "ref:EU:EVSE": "FRS37E127", + "ref": "FRS37E127", + "name": "LE PETIT PRESSIGNY 1270", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919507, + 46.92181 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE PETIT PRESSIGNY 1270", + "ref:EU:EVSE": "FRS37E127", + "ref": "FRS37E127", + "name": "LE PETIT PRESSIGNY 1270", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.011295, + 47.13251 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAULIEU LES LOCHES 1561", + "ref:EU:EVSE": "FRS37E156", + "ref": "FRS37E156", + "name": "BEAULIEU LES LOCHES 1561", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.642571, + 48.4357 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Rénan", + "ref:EU:EVSE": "FRIENE000301", + "ref": "FRIENE000301", + "name": "Saint-Rénan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.642571, + 48.4357 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Rénan", + "ref:EU:EVSE": "FRIENE000301", + "ref": "FRIENE000301", + "name": "Saint-Rénan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.642571, + 48.4357 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Rénan", + "ref:EU:EVSE": "FRIENE000302", + "ref": "FRIENE000302", + "name": "Saint-Rénan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.642571, + 48.4357 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Rénan", + "ref:EU:EVSE": "FRIENE000302", + "ref": "FRIENE000302", + "name": "Saint-Rénan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.387367, + 48.418057 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Maen Roch", + "ref:EU:EVSE": "FRIENE001202", + "ref": "FRIENE001202", + "name": "Maen Roch", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.387367, + 48.418057 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Maen Roch", + "ref:EU:EVSE": "FRIENE001202", + "ref": "FRIENE001202", + "name": "Maen Roch", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.387367, + 48.418057 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Maen Roch", + "ref:EU:EVSE": "FRIENE001201", + "ref": "FRIENE001201", + "name": "Maen Roch", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.387367, + 48.418057 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Maen Roch", + "ref:EU:EVSE": "FRIENE001201", + "ref": "FRIENE001201", + "name": "Maen Roch", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.715108, + 47.305223 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEIGNE 1328 - Les Gués", + "ref:EU:EVSE": "FRS37E132", + "ref": "FRS37E132", + "name": "VEIGNE 1328 - Les Gués", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.715108, + 47.305223 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEIGNE 1328 - Les Gués", + "ref:EU:EVSE": "FRS37E132", + "ref": "FRS37E132", + "name": "VEIGNE 1328 - Les Gués", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.144648, + 45.250465 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Molompize", + "ref:EU:EVSE": "FRIENE001502", + "ref": "FRIENE001502", + "name": "Molompize", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.144648, + 45.250465 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Molompize", + "ref:EU:EVSE": "FRIENE001502", + "ref": "FRIENE001502", + "name": "Molompize", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.144648, + 45.250465 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Molompize", + "ref:EU:EVSE": "FRIENE001501", + "ref": "FRIENE001501", + "name": "Molompize", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.144648, + 45.250465 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Molompize", + "ref:EU:EVSE": "FRIENE001501", + "ref": "FRIENE001501", + "name": "Molompize", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18727, + 45.69493 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Champniers", + "ref:EU:EVSE": "FRIENE001802", + "ref": "FRIENE001802", + "name": "Champniers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18727, + 45.69493 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Champniers", + "ref:EU:EVSE": "FRIENE001802", + "ref": "FRIENE001802", + "name": "Champniers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18727, + 45.69493 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Champniers", + "ref:EU:EVSE": "FRIENE001801", + "ref": "FRIENE001801", + "name": "Champniers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18727, + 45.69493 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Champniers", + "ref:EU:EVSE": "FRIENE001801", + "ref": "FRIENE001801", + "name": "Champniers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.717265, + 48.538636 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire de Ostwald Ouest", + "ref:EU:EVSE": "FRSPSESHEL121", + "ref": "FRSPSESHEL121", + "name": "Aire de Ostwald Ouest", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.011295, + 47.13251 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAULIEU LES LOCHES 1561", + "ref:EU:EVSE": "FRS37E156", + "ref": "FRS37E156", + "name": "BEAULIEU LES LOCHES 1561", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.442818, + 48.89486 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED NOISY LE SEC", + "ref:EU:EVSE": "FRCPIE6708365", + "ref": "FRCPIE6708365", + "name": "CGED NOISY LE SEC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.442818, + 48.89486 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED NOISY LE SEC", + "ref:EU:EVSE": "FRCPIE6708365", + "ref": "FRCPIE6708365", + "name": "CGED NOISY LE SEC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas les Adrets", + "ref:EU:EVSE": "FRIONE44041", + "ref": "FRIONE44041", + "name": "Mornas les Adrets", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas les Adrets", + "ref:EU:EVSE": "FRIONE44041", + "ref": "FRIONE44041", + "name": "Mornas les Adrets", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas les Adrets", + "ref:EU:EVSE": "FRIONE44041", + "ref": "FRIONE44041", + "name": "Mornas les Adrets", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas les Adrets", + "ref:EU:EVSE": "FRIONE44041", + "ref": "FRIONE44041", + "name": "Mornas les Adrets", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas les Adrets", + "ref:EU:EVSE": "FRIONE44040", + "ref": "FRIONE44040", + "name": "Mornas les Adrets", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas les Adrets", + "ref:EU:EVSE": "FRIONE44040", + "ref": "FRIONE44040", + "name": "Mornas les Adrets", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas les Adrets", + "ref:EU:EVSE": "FRIONE44040", + "ref": "FRIONE44040", + "name": "Mornas les Adrets", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas les Adrets", + "ref:EU:EVSE": "FRIONE44040", + "ref": "FRIONE44040", + "name": "Mornas les Adrets", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas les Adrets", + "ref:EU:EVSE": "FRIONE44040", + "ref": "FRIONE44040", + "name": "Mornas les Adrets", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas les Adrets", + "ref:EU:EVSE": "FRIONE44040", + "ref": "FRIONE44040", + "name": "Mornas les Adrets", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas les Adrets", + "ref:EU:EVSE": "FRIONE44040", + "ref": "FRIONE44040", + "name": "Mornas les Adrets", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas les Adrets", + "ref:EU:EVSE": "FRIONE44040", + "ref": "FRIONE44040", + "name": "Mornas les Adrets", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas les Adrets", + "ref:EU:EVSE": "FRIONE44040", + "ref": "FRIONE44040", + "name": "Mornas les Adrets", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.493938, + 48.442585 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARTRES - Rue Pierre Mendes France - 130752", + "ref:EU:EVSE": "FRS28E13075", + "ref": "FRS28E13075", + "name": "CHARTRES - Rue Pierre Mendes France - 130752", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.414958, + 48.737629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINTE GEMME MORONVAL - Rte de Moronval - 130561", + "ref:EU:EVSE": "FRS28E13056", + "ref": "FRS28E13056", + "name": "SAINTE GEMME MORONVAL - Rte de Moronval - 130561", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.977128, + 49.082242 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAMPILLON - 42589 - Rue Jean Jaurés", + "ref:EU:EVSE": "FRS51E4258", + "ref": "FRS51E4258", + "name": "CHAMPILLON - 42589 - Rue Jean Jaurés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas les Adrets", + "ref:EU:EVSE": "FRIONE44041", + "ref": "FRIONE44041", + "name": "Mornas les Adrets", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas les Adrets", + "ref:EU:EVSE": "FRIONE44041", + "ref": "FRIONE44041", + "name": "Mornas les Adrets", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.730889, + 48.691364 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THIEBLEMONT-FAREMONT - 42689 - Rue Laurent Gerard", + "ref:EU:EVSE": "FRS51E4268", + "ref": "FRS51E4268", + "name": "THIEBLEMONT-FAREMONT - 42689 - Rue Laurent Gerard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas les Adrets", + "ref:EU:EVSE": "FRIONE44041", + "ref": "FRIONE44041", + "name": "Mornas les Adrets", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.730889, + 48.691364 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THIEBLEMONT-FAREMONT - 42689 - Rue Laurent Gerard", + "ref:EU:EVSE": "FRS51E4268", + "ref": "FRS51E4268", + "name": "THIEBLEMONT-FAREMONT - 42689 - Rue Laurent Gerard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.622302, + 48.125475 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Villaines la Gonais", + "ref:EU:EVSE": "FRIONE4041", + "ref": "FRIONE4041", + "name": "Villaines la Gonais", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.622302, + 48.125475 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Villaines la Gonais", + "ref:EU:EVSE": "FRIONE40410", + "ref": "FRIONE40410", + "name": "Villaines la Gonais", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.622302, + 48.125475 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Villaines la Gonais", + "ref:EU:EVSE": "FRIONE40410", + "ref": "FRIONE40410", + "name": "Villaines la Gonais", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.622302, + 48.125475 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Villaines la Gonais", + "ref:EU:EVSE": "FRIONE40410", + "ref": "FRIONE40410", + "name": "Villaines la Gonais", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.622302, + 48.125475 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Villaines la Gonais", + "ref:EU:EVSE": "FRIONE40410", + "ref": "FRIONE40410", + "name": "Villaines la Gonais", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.774333, + 48.606594 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Ste MARIE DU LAC - 42657 - Rue de Nuisement", + "ref:EU:EVSE": "FRS51E4265", + "ref": "FRS51E4265", + "name": "Ste MARIE DU LAC - 42657 - Rue de Nuisement", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.774333, + 48.606594 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Ste MARIE DU LAC - 42657 - Rue de Nuisement", + "ref:EU:EVSE": "FRS51E4265", + "ref": "FRS51E4265", + "name": "Ste MARIE DU LAC - 42657 - Rue de Nuisement", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.767633, + 48.552621 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GIFFAUMONT CHAMPAUBERT - 42644 - LA CACHOTTE", + "ref:EU:EVSE": "FRS51E4264", + "ref": "FRS51E4264", + "name": "GIFFAUMONT CHAMPAUBERT - 42644 - LA CACHOTTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.767633, + 48.552621 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GIFFAUMONT CHAMPAUBERT - 42644 - LA CACHOTTE", + "ref:EU:EVSE": "FRS51E4264", + "ref": "FRS51E4264", + "name": "GIFFAUMONT CHAMPAUBERT - 42644 - LA CACHOTTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.862188, + 46.870463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAUMUSSAY 1220", + "ref:EU:EVSE": "FRS37E122", + "ref": "FRS37E122", + "name": "CHAUMUSSAY 1220", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.862188, + 46.870463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAUMUSSAY 1220", + "ref:EU:EVSE": "FRS37E122", + "ref": "FRS37E122", + "name": "CHAUMUSSAY 1220", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.882995, + 44.898702 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED VALENCE", + "ref:EU:EVSE": "FRCPIE6679575", + "ref": "FRCPIE6679575", + "name": "CGED VALENCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.882995, + 44.898702 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED VALENCE", + "ref:EU:EVSE": "FRCPIE6679575", + "ref": "FRCPIE6679575", + "name": "CGED VALENCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mornas les Adrets", + "ref:EU:EVSE": "FRIONE4404", + "ref": "FRIONE4404", + "name": "Mornas les Adrets", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.988258, + 47.289471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SUBLAINES 1577", + "ref:EU:EVSE": "FRS37E157", + "ref": "FRS37E157", + "name": "SUBLAINES 1577", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.988258, + 47.289471 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SUBLAINES 1577", + "ref:EU:EVSE": "FRS37E157", + "ref": "FRS37E157", + "name": "SUBLAINES 1577", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417606, + 46.751623 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France Sud", + "ref:EU:EVSE": "FRIONE43180", + "ref": "FRIONE43180", + "name": "Centre de la France Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.703989, + 48.464876 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Glonville", + "ref:EU:EVSE": "FRIENE002202", + "ref": "FRIENE002202", + "name": "Glonville", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.703989, + 48.464876 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Glonville", + "ref:EU:EVSE": "FRIENE002201", + "ref": "FRIENE002201", + "name": "Glonville", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58691, + 48.777465 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 16", + "ref:EU:EVSE": "FRCPIE6715665", + "ref": "FRCPIE6715665", + "name": "WAAT 4 CHENES 16", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58691, + 48.777465 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 16", + "ref:EU:EVSE": "FRCPIE6715665", + "ref": "FRCPIE6715665", + "name": "WAAT 4 CHENES 16", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4701, + 47.205931 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Aubigné-sur-Layon", + "ref:EU:EVSE": "FRIENE012022000202", + "ref": "FRIENE012022000202", + "name": "Aubigné-sur-Layon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4701, + 47.205931 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Aubigné-sur-Layon", + "ref:EU:EVSE": "FRIENE012022000202", + "ref": "FRIENE012022000202", + "name": "Aubigné-sur-Layon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4701, + 47.205931 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Aubigné-sur-Layon", + "ref:EU:EVSE": "FRIENE012022000201", + "ref": "FRIENE012022000201", + "name": "Aubigné-sur-Layon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4701, + 47.205931 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Aubigné-sur-Layon", + "ref:EU:EVSE": "FRIENE012022000201", + "ref": "FRIENE012022000201", + "name": "Aubigné-sur-Layon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.69244004, + 50.2638029 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Rue", + "ref:EU:EVSE": "FRIENE001302", + "ref": "FRIENE001302", + "name": "Rue", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.69244004, + 50.2638029 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Rue", + "ref:EU:EVSE": "FRIENE001302", + "ref": "FRIENE001302", + "name": "Rue", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.69244004, + 50.2638029 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Rue", + "ref:EU:EVSE": "FRIENE001301", + "ref": "FRIENE001301", + "name": "Rue", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.69244004, + 50.2638029 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Rue", + "ref:EU:EVSE": "FRIENE001301", + "ref": "FRIENE001301", + "name": "Rue", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.025792, + 49.26998 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Reims - 43118 - Place Luton", + "ref:EU:EVSE": "FRS51E4311", + "ref": "FRS51E4311", + "name": "Reims - 43118 - Place Luton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.025792, + 49.26998 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Reims - 43118 - Place Luton", + "ref:EU:EVSE": "FRS51E4311", + "ref": "FRS51E4311", + "name": "Reims - 43118 - Place Luton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.591473, + 48.535052 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Guerlesquin", + "ref:EU:EVSE": "FRIENE000402", + "ref": "FRIENE000402", + "name": "Guerlesquin", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.591473, + 48.535052 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Guerlesquin", + "ref:EU:EVSE": "FRIENE000402", + "ref": "FRIENE000402", + "name": "Guerlesquin", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.703989, + 48.464876 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Glonville", + "ref:EU:EVSE": "FRIENE002201", + "ref": "FRIENE002201", + "name": "Glonville", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.703989, + 48.464876 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Glonville", + "ref:EU:EVSE": "FRIENE002202", + "ref": "FRIENE002202", + "name": "Glonville", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.591473, + 48.535052 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Guerlesquin", + "ref:EU:EVSE": "FRIENE000401", + "ref": "FRIENE000401", + "name": "Guerlesquin", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.623299, + 48.126677 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Ferté-Bernard", + "ref:EU:EVSE": "FRIONE4024", + "ref": "FRIONE4024", + "name": "La Ferté-Bernard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586908, + 48.77765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 30", + "ref:EU:EVSE": "FRCPIE6715695", + "ref": "FRCPIE6715695", + "name": "WAAT 4 CHENES 30", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586908, + 48.77765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 30", + "ref:EU:EVSE": "FRCPIE6715685", + "ref": "FRCPIE6715685", + "name": "WAAT 4 CHENES 30", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586908, + 48.77765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 30", + "ref:EU:EVSE": "FRCPIE6715685", + "ref": "FRCPIE6715685", + "name": "WAAT 4 CHENES 30", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.855305, + 48.068504 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Noyal-Pontivy", + "ref:EU:EVSE": "FRIENE000802", + "ref": "FRIENE000802", + "name": "Noyal-Pontivy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.855305, + 48.068504 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Noyal-Pontivy", + "ref:EU:EVSE": "FRIENE000802", + "ref": "FRIENE000802", + "name": "Noyal-Pontivy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.855305, + 48.068504 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Noyal-Pontivy", + "ref:EU:EVSE": "FRIENE000801", + "ref": "FRIENE000801", + "name": "Noyal-Pontivy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.855305, + 48.068504 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Noyal-Pontivy", + "ref:EU:EVSE": "FRIENE000801", + "ref": "FRIENE000801", + "name": "Noyal-Pontivy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.613088, + 49.061558 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Dormans", + "ref:EU:EVSE": "FRIENE001902", + "ref": "FRIENE001902", + "name": "Dormans", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.613088, + 49.061558 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Dormans", + "ref:EU:EVSE": "FRIENE001902", + "ref": "FRIENE001902", + "name": "Dormans", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.613088, + 49.061558 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Dormans", + "ref:EU:EVSE": "FRIENE001901", + "ref": "FRIENE001901", + "name": "Dormans", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.613088, + 49.061558 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Dormans", + "ref:EU:EVSE": "FRIENE001901", + "ref": "FRIENE001901", + "name": "Dormans", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.623299, + 48.126677 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Ferté-Bernard", + "ref:EU:EVSE": "FRIONE40420", + "ref": "FRIONE40420", + "name": "La Ferté-Bernard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.623299, + 48.126677 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Ferté-Bernard", + "ref:EU:EVSE": "FRIONE40420", + "ref": "FRIONE40420", + "name": "La Ferté-Bernard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.623299, + 48.126677 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Ferté-Bernard", + "ref:EU:EVSE": "FRIONE40420", + "ref": "FRIONE40420", + "name": "La Ferté-Bernard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.623299, + 48.126677 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Ferté-Bernard", + "ref:EU:EVSE": "FRIONE40420", + "ref": "FRIONE40420", + "name": "La Ferté-Bernard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.591473, + 48.535052 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Guerlesquin", + "ref:EU:EVSE": "FRIENE000401", + "ref": "FRIENE000401", + "name": "Guerlesquin", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276864, + 49.166746 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Sud", + "ref:EU:EVSE": "FRIONE4171", + "ref": "FRIONE4171", + "name": "Giberville Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417606, + 46.751623 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France Sud", + "ref:EU:EVSE": "FRIONE43180", + "ref": "FRIONE43180", + "name": "Centre de la France Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.451011, + 43.413836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vidauban Sud", + "ref:EU:EVSE": "FRIONE40960", + "ref": "FRIONE40960", + "name": "Vidauban Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.451011, + 43.413836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vidauban Sud", + "ref:EU:EVSE": "FRIONE40960", + "ref": "FRIONE40960", + "name": "Vidauban Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.451011, + 43.413836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vidauban Sud", + "ref:EU:EVSE": "FRIONE40960", + "ref": "FRIONE40960", + "name": "Vidauban Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0729855, + 43.656838 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Riscle", + "ref:EU:EVSE": "FRIENE004402", + "ref": "FRIENE004402", + "name": "Riscle", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0729855, + 43.656838 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Riscle", + "ref:EU:EVSE": "FRIENE004402", + "ref": "FRIENE004402", + "name": "Riscle", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0729855, + 43.656838 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Riscle", + "ref:EU:EVSE": "FRIENE004401", + "ref": "FRIENE004401", + "name": "Riscle", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0729855, + 43.656838 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Riscle", + "ref:EU:EVSE": "FRIENE004401", + "ref": "FRIENE004401", + "name": "Riscle", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.94627322, + 47.20955182 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AZAY SUR INDRE 1204", + "ref:EU:EVSE": "FRS37E120", + "ref": "FRS37E120", + "name": "AZAY SUR INDRE 1204", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.94627322, + 47.20955182 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AZAY SUR INDRE 1204", + "ref:EU:EVSE": "FRS37E120", + "ref": "FRS37E120", + "name": "AZAY SUR INDRE 1204", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.965193, + 47.310522 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bléré", + "ref:EU:EVSE": "FRIENE002302", + "ref": "FRIENE002302", + "name": "Bléré", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.965193, + 47.310522 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bléré", + "ref:EU:EVSE": "FRIENE002302", + "ref": "FRIENE002302", + "name": "Bléré", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.965193, + 47.310522 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bléré", + "ref:EU:EVSE": "FRIENE002301", + "ref": "FRIENE002301", + "name": "Bléré", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.965193, + 47.310522 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bléré", + "ref:EU:EVSE": "FRIENE002301", + "ref": "FRIENE002301", + "name": "Bléré", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417606, + 46.751623 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France Sud", + "ref:EU:EVSE": "FRIONE4318", + "ref": "FRIONE4318", + "name": "Centre de la France Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417606, + 46.751623 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France Sud", + "ref:EU:EVSE": "FRIONE43180", + "ref": "FRIONE43180", + "name": "Centre de la France Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417606, + 46.751623 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France Sud", + "ref:EU:EVSE": "FRIONE43180", + "ref": "FRIONE43180", + "name": "Centre de la France Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.451011, + 43.413836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vidauban Sud", + "ref:EU:EVSE": "FRIONE40960", + "ref": "FRIONE40960", + "name": "Vidauban Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.451011, + 43.413836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vidauban Sud", + "ref:EU:EVSE": "FRIONE4096", + "ref": "FRIONE4096", + "name": "Vidauban Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276864, + 49.166746 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Sud", + "ref:EU:EVSE": "FRIONE41710", + "ref": "FRIONE41710", + "name": "Giberville Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47429851, + 47.28622 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Carquefou", + "ref:EU:EVSE": "FRIENE001401", + "ref": "FRIENE001401", + "name": "Carquefou", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276864, + 49.166746 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Sud", + "ref:EU:EVSE": "FRIONE41710", + "ref": "FRIONE41710", + "name": "Giberville Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276864, + 49.166746 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Sud", + "ref:EU:EVSE": "FRIONE41710", + "ref": "FRIONE41710", + "name": "Giberville Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276864, + 49.166746 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Sud", + "ref:EU:EVSE": "FRIONE41710", + "ref": "FRIONE41710", + "name": "Giberville Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.368237, + 46.043417 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Jean-le-Vieux", + "ref:EU:EVSE": "FRIENE002102", + "ref": "FRIENE002102", + "name": "Saint-Jean-le-Vieux", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.368237, + 46.043417 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Jean-le-Vieux", + "ref:EU:EVSE": "FRIENE002102", + "ref": "FRIENE002102", + "name": "Saint-Jean-le-Vieux", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.368237, + 46.043417 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Jean-le-Vieux", + "ref:EU:EVSE": "FRIENE002101", + "ref": "FRIENE002101", + "name": "Saint-Jean-le-Vieux", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.368237, + 46.043417 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Jean-le-Vieux", + "ref:EU:EVSE": "FRIENE002101", + "ref": "FRIENE002101", + "name": "Saint-Jean-le-Vieux", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.467517, + 48.451561 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAINVILLIERS - Rue des acacias - 137397", + "ref:EU:EVSE": "FRS28E13739", + "ref": "FRS28E13739", + "name": "MAINVILLIERS - Rue des acacias - 137397", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.038878, + 47.878668 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Baud", + "ref:EU:EVSE": "FRIENE000502", + "ref": "FRIENE000502", + "name": "Baud", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.038878, + 47.878668 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Baud", + "ref:EU:EVSE": "FRIENE000502", + "ref": "FRIENE000502", + "name": "Baud", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.038878, + 47.878668 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Baud", + "ref:EU:EVSE": "FRIENE000501", + "ref": "FRIENE000501", + "name": "Baud", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.038878, + 47.878668 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Baud", + "ref:EU:EVSE": "FRIENE000501", + "ref": "FRIENE000501", + "name": "Baud", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47429851, + 47.28622 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Carquefou", + "ref:EU:EVSE": "FRIENE001402", + "ref": "FRIENE001402", + "name": "Carquefou", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47429851, + 47.28622 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Carquefou", + "ref:EU:EVSE": "FRIENE001402", + "ref": "FRIENE001402", + "name": "Carquefou", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47429851, + 47.28622 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Carquefou", + "ref:EU:EVSE": "FRIENE001401", + "ref": "FRIENE001401", + "name": "Carquefou", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.977128, + 49.082242 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAMPILLON - 42589 - Rue Jean Jaurés", + "ref:EU:EVSE": "FRS51E4258", + "ref": "FRS51E4258", + "name": "CHAMPILLON - 42589 - Rue Jean Jaurés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.174924, + 49.210139 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Maizières-lès-Metz | Route de Mézière", + "ref:EU:EVSE": "FRIONE43241", + "ref": "FRIONE43241", + "name": "Maizières-lès-Metz | Route de Mézière", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.073028, + 48.689084 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BREZOLLES - Rue de la Ferté - 128792", + "ref:EU:EVSE": "FRS28E12879", + "ref": "FRS28E12879", + "name": "BREZOLLES - Rue de la Ferté - 128792", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.788295, + 49.086712 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Reuil", + "ref:EU:EVSE": "FRIENE009801", + "ref": "FRIENE009801", + "name": "Reuil", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.752446, + 48.264249 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "YMONVILLE - Rue du Haut C hemin - 134341", + "ref:EU:EVSE": "FRS28E13434", + "ref": "FRS28E13434", + "name": "YMONVILLE - Rue du Haut C hemin - 134341", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.243168, + 48.299421 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ILLIERS-COMBRAY - Rue des trois mariés - 137321", + "ref:EU:EVSE": "FRS28E13732", + "ref": "FRS28E13732", + "name": "ILLIERS-COMBRAY - Rue des trois mariés - 137321", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.101471, + 47.057907 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT HIPPOLYTE 15629 - Parking du Stade", + "ref:EU:EVSE": "FRS37E1563", + "ref": "FRS37E1563", + "name": "SAINT HIPPOLYTE 15629 - Parking du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.101471, + 47.057907 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT HIPPOLYTE 15629 - Parking du Stade", + "ref:EU:EVSE": "FRS37E1562", + "ref": "FRS37E1562", + "name": "SAINT HIPPOLYTE 15629 - Parking du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.836236, + 48.333791 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARGON - Rue de la Cloche - 139073", + "ref:EU:EVSE": "FRS28E13907", + "ref": "FRS28E13907", + "name": "MARGON - Rue de la Cloche - 139073", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.679155, + 48.605856 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPERNON - Avenue de la Prairie - 130906", + "ref:EU:EVSE": "FRS28E13090", + "ref": "FRS28E13090", + "name": "EPERNON - Avenue de la Prairie - 130906", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.222709, + 49.175214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VAL DE VESLE - 41910 -Rue du Général de Gaulle", + "ref:EU:EVSE": "FRS51E4191", + "ref": "FRS51E4191", + "name": "VAL DE VESLE - 41910 -Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.222709, + 49.175214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VAL DE VESLE - 41910 -Rue du Général de Gaulle", + "ref:EU:EVSE": "FRS51E4190", + "ref": "FRS51E4190", + "name": "VAL DE VESLE - 41910 -Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.404936, + 48.917944 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SARRY - 41698 - Rue Basse", + "ref:EU:EVSE": "FRS51E4169", + "ref": "FRS51E4169", + "name": "SARRY - 41698 - Rue Basse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.404936, + 48.917944 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SARRY - 41698 - Rue Basse", + "ref:EU:EVSE": "FRS51E4169", + "ref": "FRS51E4169", + "name": "SARRY - 41698 - Rue Basse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.586678, + 45.400288 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LE GAULIAT BORNE 1", + "ref:EU:EVSE": "FRCPIE6648515", + "ref": "FRCPIE6648515", + "name": "LE GAULIAT BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.586678, + 45.400288 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LE GAULIAT BORNE 1", + "ref:EU:EVSE": "FRCPIE6648515", + "ref": "FRCPIE6648515", + "name": "LE GAULIAT BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.025412, + 49.264755 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIMS St Thomas - 41690 -Rue Perin", + "ref:EU:EVSE": "FRS51E4169", + "ref": "FRS51E4169", + "name": "REIMS St Thomas - 41690 -Rue Perin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.025412, + 49.264755 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIMS St Thomas - 41690 -Rue Perin", + "ref:EU:EVSE": "FRS51E4168", + "ref": "FRS51E4168", + "name": "REIMS St Thomas - 41690 -Rue Perin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.025731, + 49.24513 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIMS René THYS - 41688 -Chaussée Bocquaine", + "ref:EU:EVSE": "FRS51E4168", + "ref": "FRS51E4168", + "name": "REIMS René THYS - 41688 -Chaussée Bocquaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.788295, + 49.086712 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Reuil", + "ref:EU:EVSE": "FRIENE009801", + "ref": "FRIENE009801", + "name": "Reuil", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.788295, + 49.086712 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Reuil", + "ref:EU:EVSE": "FRIENE009802", + "ref": "FRIENE009802", + "name": "Reuil", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.977766, + 49.249985 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TINQUEUX - 41686 -Rue Sarah Bernhardt", + "ref:EU:EVSE": "FRS51E4168", + "ref": "FRS51E4168", + "name": "TINQUEUX - 41686 -Rue Sarah Bernhardt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.788295, + 49.086712 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Reuil", + "ref:EU:EVSE": "FRIENE009802", + "ref": "FRIENE009802", + "name": "Reuil", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78081763, + 44.51506617 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Ouest", + "ref:EU:EVSE": "FRIONE40360", + "ref": "FRIONE40360", + "name": "Montélimar Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78081763, + 44.51506617 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Ouest", + "ref:EU:EVSE": "FRIONE40360", + "ref": "FRIONE40360", + "name": "Montélimar Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78081763, + 44.51506617 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Ouest", + "ref:EU:EVSE": "FRIONE40360", + "ref": "FRIONE40360", + "name": "Montélimar Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78081763, + 44.51506617 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Ouest", + "ref:EU:EVSE": "FRIONE40360", + "ref": "FRIONE40360", + "name": "Montélimar Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.103658, + 49.264588 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CERNAY-LES-REIMS - 42110 -Rue Saint Martin", + "ref:EU:EVSE": "FRS51E4211", + "ref": "FRS51E4211", + "name": "CERNAY-LES-REIMS - 42110 -Rue Saint Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.103658, + 49.264588 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CERNAY-LES-REIMS - 42110 -Rue Saint Martin", + "ref:EU:EVSE": "FRS51E4211", + "ref": "FRS51E4211", + "name": "CERNAY-LES-REIMS - 42110 -Rue Saint Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.162963, + 49.146104 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERZY - 42108 - Rue Chanzy", + "ref:EU:EVSE": "FRS51E4210", + "ref": "FRS51E4210", + "name": "VERZY - 42108 - Rue Chanzy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.162963, + 49.146104 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERZY - 42108 - Rue Chanzy", + "ref:EU:EVSE": "FRS51E4210", + "ref": "FRS51E4210", + "name": "VERZY - 42108 - Rue Chanzy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.046298, + 48.099579 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bonvillet", + "ref:EU:EVSE": "FRIENE007002", + "ref": "FRIENE007002", + "name": "Bonvillet", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.046298, + 48.099579 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bonvillet", + "ref:EU:EVSE": "FRIENE007002", + "ref": "FRIENE007002", + "name": "Bonvillet", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.046298, + 48.099579 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bonvillet", + "ref:EU:EVSE": "FRIENE007001", + "ref": "FRIENE007001", + "name": "Bonvillet", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.046298, + 48.099579 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bonvillet", + "ref:EU:EVSE": "FRIENE007001", + "ref": "FRIENE007001", + "name": "Bonvillet", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9805, + 48.138462 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA BAZOCHE-GOUET - Rue des fossés - 134878", + "ref:EU:EVSE": "FRS28E13487", + "ref": "FRS28E13487", + "name": "LA BAZOCHE-GOUET - Rue des fossés - 134878", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.365981, + 49.141384 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MOURMELON LE GRAND - 42093 -Rue du Maréchal Joffre", + "ref:EU:EVSE": "FRS51E4209", + "ref": "FRS51E4209", + "name": "MOURMELON LE GRAND - 42093 -Rue du Maréchal Joffre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.365981, + 49.141384 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MOURMELON LE GRAND - 42093 -Rue du Maréchal Joffre", + "ref:EU:EVSE": "FRS51E4209", + "ref": "FRS51E4209", + "name": "MOURMELON LE GRAND - 42093 -Rue du Maréchal Joffre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.025731, + 49.24513 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIMS René THYS - 41688 -Chaussée Bocquaine", + "ref:EU:EVSE": "FRS51E4168", + "ref": "FRS51E4168", + "name": "REIMS René THYS - 41688 -Chaussée Bocquaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.977766, + 49.249985 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TINQUEUX - 41686 -Rue Sarah Bernhardt", + "ref:EU:EVSE": "FRS51E4168", + "ref": "FRS51E4168", + "name": "TINQUEUX - 41686 -Rue Sarah Bernhardt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78081763, + 44.51506617 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Ouest", + "ref:EU:EVSE": "FRIONE40360", + "ref": "FRIONE40360", + "name": "Montélimar Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.912453, + 45.778018 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GVA VAULX ABBGAUCHE", + "ref:EU:EVSE": "FRCPIE6506505", + "ref": "FRCPIE6506505", + "name": "GVA VAULX ABBGAUCHE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.484484, + 45.691062 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint Victor de Morestel", + "ref:EU:EVSE": "FRIENE007502", + "ref": "FRIENE007502", + "name": "Saint Victor de Morestel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.484484, + 45.691062 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint Victor de Morestel", + "ref:EU:EVSE": "FRIENE007502", + "ref": "FRIENE007502", + "name": "Saint Victor de Morestel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.484484, + 45.691062 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint Victor de Morestel", + "ref:EU:EVSE": "FRIENE007501", + "ref": "FRIENE007501", + "name": "Saint Victor de Morestel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.484484, + 45.691062 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint Victor de Morestel", + "ref:EU:EVSE": "FRIENE007501", + "ref": "FRIENE007501", + "name": "Saint Victor de Morestel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.925021, + 44.734301 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UTILE GRANE BORNE 1", + "ref:EU:EVSE": "FRCPIE6618725", + "ref": "FRCPIE6618725", + "name": "UTILE GRANE BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.925021, + 44.734301 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UTILE GRANE BORNE 1", + "ref:EU:EVSE": "FRCPIE6618725", + "ref": "FRCPIE6618725", + "name": "UTILE GRANE BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.841747, + 44.1183 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GVA ORANGE ABB", + "ref:EU:EVSE": "FRCPIE6501915", + "ref": "FRCPIE6501915", + "name": "GVA ORANGE ABB", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.670186, + 48.590522 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U WOLFI BORNE 1", + "ref:EU:EVSE": "FRCPIE6615295", + "ref": "FRCPIE6615295", + "name": "SUPER U WOLFI BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.670186, + 48.590522 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U WOLFI BORNE 1", + "ref:EU:EVSE": "FRCPIE6615295", + "ref": "FRCPIE6615295", + "name": "SUPER U WOLFI BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87145, + 47.9399 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENTRON - Place de la Mairie - CCS", + "ref:EU:EVSE": "FRS88E16202", + "ref": "FRS88E16202", + "name": "VENTRON - Place de la Mairie - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87145, + 47.9399 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENTRON - Place de la Mairie - CCS", + "ref:EU:EVSE": "FRS88E16202", + "ref": "FRS88E16202", + "name": "VENTRON - Place de la Mairie - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.039059, + 49.232653 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U DOZULE BORNE 1", + "ref:EU:EVSE": "FRCPIE6709175", + "ref": "FRCPIE6709175", + "name": "SUPER U DOZULE BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.039059, + 49.232653 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U DOZULE BORNE 1", + "ref:EU:EVSE": "FRCPIE6709175", + "ref": "FRCPIE6709175", + "name": "SUPER U DOZULE BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.039059, + 49.232653 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U DOZULE BORNE 1", + "ref:EU:EVSE": "FRCPIE6709155", + "ref": "FRCPIE6709155", + "name": "SUPER U DOZULE BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.039059, + 49.232653 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U DOZULE BORNE 1", + "ref:EU:EVSE": "FRCPIE6709155", + "ref": "FRCPIE6709155", + "name": "SUPER U DOZULE BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.912453, + 45.778018 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GVA VAULX ABBGAUCHE", + "ref:EU:EVSE": "FRCPIE6502285", + "ref": "FRCPIE6502285", + "name": "GVA VAULX ABBGAUCHE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.036179, + 49.228438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIMS- René DESCARTES - 175071", + "ref:EU:EVSE": "FRS51E17507", + "ref": "FRS51E17507", + "name": "REIMS- René DESCARTES - 175071", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.163071, + 48.047523 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Piffonds", + "ref:EU:EVSE": "FRIENE006202", + "ref": "FRIENE006202", + "name": "Piffonds", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.036179, + 49.228438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIMS- René DESCARTES - 175071", + "ref:EU:EVSE": "FRS51E17507", + "ref": "FRS51E17507", + "name": "REIMS- René DESCARTES - 175071", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.163071, + 48.047523 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Piffonds", + "ref:EU:EVSE": "FRIENE006202", + "ref": "FRIENE006202", + "name": "Piffonds", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.163071, + 48.047523 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Piffonds", + "ref:EU:EVSE": "FRIENE006201", + "ref": "FRIENE006201", + "name": "Piffonds", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.163071, + 48.047523 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Piffonds", + "ref:EU:EVSE": "FRIENE006201", + "ref": "FRIENE006201", + "name": "Piffonds", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.984678, + 47.28643 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Sublaines A85 CCS", + "ref:EU:EVSE": "FRS37E452", + "ref": "FRS37E452", + "name": "Super Chargeur Sublaines A85 CCS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.984678, + 47.28643 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Sublaines A85 CCS", + "ref:EU:EVSE": "FRS37E452", + "ref": "FRS37E452", + "name": "Super Chargeur Sublaines A85 CCS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.984678, + 47.28643 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Sublaines A85 CCS", + "ref:EU:EVSE": "FRS37E452", + "ref": "FRS37E452", + "name": "Super Chargeur Sublaines A85 CCS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.984678, + 47.28643 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Sublaines A85 CCS", + "ref:EU:EVSE": "FRS37E452", + "ref": "FRS37E452", + "name": "Super Chargeur Sublaines A85 CCS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.823047, + 49.088602 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Caumont-sur-Aure", + "ref:EU:EVSE": "FRIENE003302", + "ref": "FRIENE003302", + "name": "Caumont-sur-Aure", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.823047, + 49.088602 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Caumont-sur-Aure", + "ref:EU:EVSE": "FRIENE003302", + "ref": "FRIENE003302", + "name": "Caumont-sur-Aure", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.823047, + 49.088602 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Caumont-sur-Aure", + "ref:EU:EVSE": "FRIENE003301", + "ref": "FRIENE003301", + "name": "Caumont-sur-Aure", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.823047, + 49.088602 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Caumont-sur-Aure", + "ref:EU:EVSE": "FRIENE003301", + "ref": "FRIENE003301", + "name": "Caumont-sur-Aure", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267674, + 43.621346 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U CASTRES BORNE 2", + "ref:EU:EVSE": "FRCPIE6669225", + "ref": "FRCPIE6669225", + "name": "SUPER U CASTRES BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267674, + 43.621346 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U CASTRES BORNE 2", + "ref:EU:EVSE": "FRCPIE6669225", + "ref": "FRCPIE6669225", + "name": "SUPER U CASTRES BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267674, + 43.621346 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U CASTRES BORNE 2", + "ref:EU:EVSE": "FRCPIE6669215", + "ref": "FRCPIE6669215", + "name": "SUPER U CASTRES BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267674, + 43.621346 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U CASTRES BORNE 2", + "ref:EU:EVSE": "FRCPIE6669215", + "ref": "FRCPIE6669215", + "name": "SUPER U CASTRES BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78081763, + 44.51506617 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Ouest", + "ref:EU:EVSE": "FRIONE40360", + "ref": "FRIONE40360", + "name": "Montélimar Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78081763, + 44.51506617 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Ouest", + "ref:EU:EVSE": "FRIONE4036", + "ref": "FRIONE4036", + "name": "Montélimar Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.161148, + 47.177667 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FOECY - Rue Gaston Cornavin - 143319", + "ref:EU:EVSE": "FRS18E14332", + "ref": "FRS18E14332", + "name": "FOECY - Rue Gaston Cornavin - 143319", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8708, + 49.013191 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St MARTIN D'ABLOIS - 42569 - Rue Julien Ducos", + "ref:EU:EVSE": "FRS51E4256", + "ref": "FRS51E4256", + "name": "St MARTIN D'ABLOIS - 42569 - Rue Julien Ducos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.123919, + 48.098514 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ARROU - rue du docteur Vaisbuch - 134214", + "ref:EU:EVSE": "FRS28E13421", + "ref": "FRS28E13421", + "name": "ARROU - rue du docteur Vaisbuch - 134214", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.344638, + 49.213219 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CAEN", + "ref:EU:EVSE": "FRCPIE6706575", + "ref": "FRCPIE6706575", + "name": "CGED CAEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.344638, + 49.213219 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CAEN", + "ref:EU:EVSE": "FRCPIE6706575", + "ref": "FRCPIE6706575", + "name": "CGED CAEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.320071, + 49.301307 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PONTFAVERGER - 42468 - Rue de la gare", + "ref:EU:EVSE": "FRS51E4246", + "ref": "FRS51E4246", + "name": "PONTFAVERGER - 42468 - Rue de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.320071, + 49.301307 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PONTFAVERGER - 42468 - Rue de la gare", + "ref:EU:EVSE": "FRS51E4246", + "ref": "FRS51E4246", + "name": "PONTFAVERGER - 42468 - Rue de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.693474, + 48.09518 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mayenne", + "ref:EU:EVSE": "FRIONE4168", + "ref": "FRIONE4168", + "name": "Mayenne", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.693474, + 48.09518 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mayenne", + "ref:EU:EVSE": "FRIONE41680", + "ref": "FRIONE41680", + "name": "Mayenne", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.693474, + 48.09518 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mayenne", + "ref:EU:EVSE": "FRIONE41680", + "ref": "FRIONE41680", + "name": "Mayenne", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.693474, + 48.09518 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mayenne", + "ref:EU:EVSE": "FRIONE41680", + "ref": "FRIONE41680", + "name": "Mayenne", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.693474, + 48.09518 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mayenne", + "ref:EU:EVSE": "FRIONE41680", + "ref": "FRIONE41680", + "name": "Mayenne", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.693474, + 48.09518 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mayenne", + "ref:EU:EVSE": "FRIONE41680", + "ref": "FRIONE41680", + "name": "Mayenne", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.693474, + 48.09518 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mayenne", + "ref:EU:EVSE": "FRIONE41680", + "ref": "FRIONE41680", + "name": "Mayenne", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71418, + 48.42006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Combourg", + "ref:EU:EVSE": "FRIENE002902", + "ref": "FRIENE002902", + "name": "Combourg", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71418, + 48.42006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Combourg", + "ref:EU:EVSE": "FRIENE002902", + "ref": "FRIENE002902", + "name": "Combourg", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71418, + 48.42006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Combourg", + "ref:EU:EVSE": "FRIENE002901", + "ref": "FRIENE002901", + "name": "Combourg", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8708, + 49.013191 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St MARTIN D'ABLOIS - 42569 - Rue Julien Ducos", + "ref:EU:EVSE": "FRS51E4256", + "ref": "FRS51E4256", + "name": "St MARTIN D'ABLOIS - 42569 - Rue Julien Ducos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref:EU:EVSE": "FRIONE43550", + "ref": "FRIONE43550", + "name": "Orléans Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.495829, + 48.445765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARTRES - Place Morard - 130744", + "ref:EU:EVSE": "FRS28E13074", + "ref": "FRS28E13074", + "name": "CHARTRES - Place Morard - 130744", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref:EU:EVSE": "FRIONE43550", + "ref": "FRIONE43550", + "name": "Orléans Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.161148, + 47.177667 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FOECY - Rue Gaston Cornavin - 143319", + "ref:EU:EVSE": "FRS18E14331", + "ref": "FRS18E14331", + "name": "FOECY - Rue Gaston Cornavin - 143319", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.307805, + 49.366192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Soissons Ouest", + "ref:EU:EVSE": "FRIONE4483", + "ref": "FRIONE4483", + "name": "Soissons Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.307805, + 49.366192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Soissons Ouest", + "ref:EU:EVSE": "FRIONE44830", + "ref": "FRIONE44830", + "name": "Soissons Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.307805, + 49.366192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Soissons Ouest", + "ref:EU:EVSE": "FRIONE44830", + "ref": "FRIONE44830", + "name": "Soissons Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.307805, + 49.366192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Soissons Ouest", + "ref:EU:EVSE": "FRIONE44830", + "ref": "FRIONE44830", + "name": "Soissons Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.307805, + 49.366192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Soissons Ouest", + "ref:EU:EVSE": "FRIONE44830", + "ref": "FRIONE44830", + "name": "Soissons Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.307805, + 49.366192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Soissons Ouest", + "ref:EU:EVSE": "FRIONE44830", + "ref": "FRIONE44830", + "name": "Soissons Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.307805, + 49.366192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Soissons Ouest", + "ref:EU:EVSE": "FRIONE44830", + "ref": "FRIONE44830", + "name": "Soissons Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.647127, + 47.234257 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR SAINT HERBLAIN", + "ref:EU:EVSE": "FRCPIE6617515", + "ref": "FRCPIE6617515", + "name": "SONEPAR SAINT HERBLAIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.647127, + 47.234257 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR SAINT HERBLAIN", + "ref:EU:EVSE": "FRCPIE6617515", + "ref": "FRCPIE6617515", + "name": "SONEPAR SAINT HERBLAIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref:EU:EVSE": "FRIONE4355", + "ref": "FRIONE4355", + "name": "Orléans Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref:EU:EVSE": "FRIONE43550", + "ref": "FRIONE43550", + "name": "Orléans Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref:EU:EVSE": "FRIONE43550", + "ref": "FRIONE43550", + "name": "Orléans Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref:EU:EVSE": "FRIONE43550", + "ref": "FRIONE43550", + "name": "Orléans Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref:EU:EVSE": "FRIONE43550", + "ref": "FRIONE43550", + "name": "Orléans Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71418, + 48.42006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Combourg", + "ref:EU:EVSE": "FRIENE002901", + "ref": "FRIENE002901", + "name": "Combourg", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.54109, + 48.871712 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Montmirail - 93789 - Parking Rochefoucauld", + "ref:EU:EVSE": "FRS51E9379", + "ref": "FRS51E9379", + "name": "Montmirail - 93789 - Parking Rochefoucauld", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.818785, + 45.344595 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CP 6000 BORNE 1", + "ref:EU:EVSE": "FRCPIE6758325", + "ref": "FRCPIE6758325", + "name": "CP 6000 BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME08990384", + "ref": "FRTNME08990384", + "name": "18B95097", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME08990376", + "ref": "FRTNME08990376", + "name": "18B95097", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME08990136", + "ref": "FRTNME08990136", + "name": "18B95097", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME08990136", + "ref": "FRTNME08990136", + "name": "18B95097", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME08910938", + "ref": "FRTNME08910938", + "name": "18B95097", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME08910938", + "ref": "FRTNME08910938", + "name": "18B95097", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME08910318", + "ref": "FRTNME08910318", + "name": "18B95097", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME08910318", + "ref": "FRTNME08910318", + "name": "18B95097", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.863764, + 43.458331 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U BORNE 5", + "ref:EU:EVSE": "FRCPIE6610525", + "ref": "FRCPIE6610525", + "name": "HYPER U BORNE 5", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.863764, + 43.458331 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U BORNE 5", + "ref:EU:EVSE": "FRCPIE6610525", + "ref": "FRCPIE6610525", + "name": "HYPER U BORNE 5", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67407399, + 47.45647829 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "METTRAY 1285 - Les Gaudières", + "ref:EU:EVSE": "FRS37E128", + "ref": "FRS37E128", + "name": "METTRAY 1285 - Les Gaudières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67407399, + 47.45647829 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "METTRAY 1285 - Les Gaudières", + "ref:EU:EVSE": "FRS37E128", + "ref": "FRS37E128", + "name": "METTRAY 1285 - Les Gaudières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.052451, + 49.225489 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CORMONTREUIL - 42377 - Rue Manoel Pinto", + "ref:EU:EVSE": "FRS51E4237", + "ref": "FRS51E4237", + "name": "CORMONTREUIL - 42377 - Rue Manoel Pinto", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.052451, + 49.225489 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CORMONTREUIL - 42377 - Rue Manoel Pinto", + "ref:EU:EVSE": "FRS51E4237", + "ref": "FRS51E4237", + "name": "CORMONTREUIL - 42377 - Rue Manoel Pinto", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.369631, + 48.717581 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNOUILLET - Rue de ROME - 139351", + "ref:EU:EVSE": "FRS28E13935", + "ref": "FRS28E13935", + "name": "VERNOUILLET - Rue de ROME - 139351", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.818785, + 45.344595 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CP 6000 BORNE 1", + "ref:EU:EVSE": "FRCPIE6758325", + "ref": "FRCPIE6758325", + "name": "CP 6000 BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME08990376", + "ref": "FRTNME08990376", + "name": "18B95097", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME08990384", + "ref": "FRTNME08990384", + "name": "18B95097", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.54109, + 48.871712 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Montmirail - 93789 - Parking Rochefoucauld", + "ref:EU:EVSE": "FRS51E9378", + "ref": "FRS51E9378", + "name": "Montmirail - 93789 - Parking Rochefoucauld", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME08990391", + "ref": "FRTNME08990391", + "name": "18B95097", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.991429, + 49.251015 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TINQUEUX - 66955 - Pl du commerce", + "ref:EU:EVSE": "FRS51E6695", + "ref": "FRS51E6695", + "name": "TINQUEUX - 66955 - Pl du commerce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.991429, + 49.251015 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TINQUEUX - 66955 - Pl du commerce", + "ref:EU:EVSE": "FRS51E6695", + "ref": "FRS51E6695", + "name": "TINQUEUX - 66955 - Pl du commerce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME18B95097", + "ref": "FRTNME18B95097", + "name": "18B95097", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME18B95097", + "ref": "FRTNME18B95097", + "name": "18B95097", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME18B95093", + "ref": "FRTNME18B95093", + "name": "18B95097", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME18B95093", + "ref": "FRTNME18B95093", + "name": "18B95097", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME18B95089", + "ref": "FRTNME18B95089", + "name": "18B95097", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME18B95089", + "ref": "FRTNME18B95089", + "name": "18B95097", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME18B92941", + "ref": "FRTNME18B92941", + "name": "18B95097", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME18B92941", + "ref": "FRTNME18B92941", + "name": "18B95097", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME08990399", + "ref": "FRTNME08990399", + "name": "18B95097", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME08990399", + "ref": "FRTNME08990399", + "name": "18B95097", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME08990395", + "ref": "FRTNME08990395", + "name": "18B95097", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME08990395", + "ref": "FRTNME08990395", + "name": "18B95097", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371518, + 51.031205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "18B95097", + "ref:EU:EVSE": "FRTNME08990391", + "ref": "FRTNME08990391", + "name": "18B95097", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586908, + 48.77765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 30", + "ref:EU:EVSE": "FRCPIE6715695", + "ref": "FRCPIE6715695", + "name": "WAAT 4 CHENES 30", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586908, + 48.77765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 30", + "ref:EU:EVSE": "FRCPIE6715745", + "ref": "FRCPIE6715745", + "name": "WAAT 4 CHENES 30", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.544709, + 47.304761 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Henrichemont", + "ref:EU:EVSE": "FRIENE009301", + "ref": "FRIENE009301", + "name": "Henrichemont", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.345357, + 43.3590418 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc SUD", + "ref:EU:EVSE": "FRSHEE174", + "ref": "FRSHEE174", + "name": "Shell Aire de Béziers-Montblanc SUD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.746969, + 47.346501 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AVERTIN- 60636 - Allée du Chesne", + "ref:EU:EVSE": "FRS37E6063", + "ref": "FRS37E6063", + "name": "SAINT AVERTIN- 60636 - Allée du Chesne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.142684, + 48.410725 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Charmont-sous-Barbuise HW", + "ref:EU:EVSE": "FRSHEE25", + "ref": "FRSHEE25", + "name": "Shell- France Aire de Charmont-sous-Barbuise HW", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.142684, + 48.410725 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Charmont-sous-Barbuise HW", + "ref:EU:EVSE": "FRSHEE25", + "ref": "FRSHEE25", + "name": "Shell- France Aire de Charmont-sous-Barbuise HW", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.345357, + 43.3590418 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc SUD", + "ref:EU:EVSE": "FRSHEE176", + "ref": "FRSHEE176", + "name": "Shell Aire de Béziers-Montblanc SUD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.345357, + 43.3590418 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc SUD", + "ref:EU:EVSE": "FRSHEE176", + "ref": "FRSHEE176", + "name": "Shell Aire de Béziers-Montblanc SUD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.345357, + 43.3590418 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc SUD", + "ref:EU:EVSE": "FRSHEE176", + "ref": "FRSHEE176", + "name": "Shell Aire de Béziers-Montblanc SUD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.345357, + 43.3590418 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc SUD", + "ref:EU:EVSE": "FRSHEE174", + "ref": "FRSHEE174", + "name": "Shell Aire de Béziers-Montblanc SUD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.345357, + 43.3590418 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc SUD", + "ref:EU:EVSE": "FRSHEE174", + "ref": "FRSHEE174", + "name": "Shell Aire de Béziers-Montblanc SUD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586908, + 48.77765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 30", + "ref:EU:EVSE": "FRCPIE6715765", + "ref": "FRCPIE6715765", + "name": "WAAT 4 CHENES 30", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566574, + 43.654568 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Hagetmau", + "ref:EU:EVSE": "FRIENE005102", + "ref": "FRIENE005102", + "name": "Hagetmau", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566574, + 43.654568 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Hagetmau", + "ref:EU:EVSE": "FRIENE005102", + "ref": "FRIENE005102", + "name": "Hagetmau", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566574, + 43.654568 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Hagetmau", + "ref:EU:EVSE": "FRIENE005101", + "ref": "FRIENE005101", + "name": "Hagetmau", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566574, + 43.654568 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Hagetmau", + "ref:EU:EVSE": "FRIENE005101", + "ref": "FRIENE005101", + "name": "Hagetmau", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48584, + 44.157791 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Vincent-d'Autéjac", + "ref:EU:EVSE": "FRIENE006902", + "ref": "FRIENE006902", + "name": "Saint-Vincent-d'Autéjac", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48584, + 44.157791 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Vincent-d'Autéjac", + "ref:EU:EVSE": "FRIENE006902", + "ref": "FRIENE006902", + "name": "Saint-Vincent-d'Autéjac", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48584, + 44.157791 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Vincent-d'Autéjac", + "ref:EU:EVSE": "FRIENE006901", + "ref": "FRIENE006901", + "name": "Saint-Vincent-d'Autéjac", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.746969, + 47.346501 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AVERTIN- 60636 - Allée du Chesne", + "ref:EU:EVSE": "FRS37E6063", + "ref": "FRS37E6063", + "name": "SAINT AVERTIN- 60636 - Allée du Chesne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39603, + 48.943368 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "638a0f9abb23fb6dc695ab59", + "ref:EU:EVSE": "FRTNME18B92615", + "ref": "FRTNME18B92615", + "name": "638a0f9abb23fb6dc695ab59", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.857445, + 50.25722 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PERFORMANCE_PRO BORNE 1", + "ref:EU:EVSE": "FRCPIE6708045", + "ref": "FRCPIE6708045", + "name": "PERFORMANCE_PRO BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.857445, + 50.25722 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "PERFORMANCE_PRO BORNE 1", + "ref:EU:EVSE": "FRCPIE6708045", + "ref": "FRCPIE6708045", + "name": "PERFORMANCE_PRO BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0353191, + 44.7455306 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Auriolles", + "ref:EU:EVSE": "FRIENE008402", + "ref": "FRIENE008402", + "name": "Auriolles", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0353191, + 44.7455306 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Auriolles", + "ref:EU:EVSE": "FRIENE008402", + "ref": "FRIENE008402", + "name": "Auriolles", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0353191, + 44.7455306 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Auriolles", + "ref:EU:EVSE": "FRIENE008401", + "ref": "FRIENE008401", + "name": "Auriolles", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0353191, + 44.7455306 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Auriolles", + "ref:EU:EVSE": "FRIENE008401", + "ref": "FRIENE008401", + "name": "Auriolles", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.910292, + 49.250571 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GUEUX - 44708 - Place des Lacs", + "ref:EU:EVSE": "FRS51E4471", + "ref": "FRS51E4471", + "name": "GUEUX - 44708 - Place des Lacs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.910292, + 49.250571 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GUEUX - 44708 - Place des Lacs", + "ref:EU:EVSE": "FRS51E4470", + "ref": "FRS51E4470", + "name": "GUEUX - 44708 - Place des Lacs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3394, + 49.299799 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Pontfaverger-Moronvilliers", + "ref:EU:EVSE": "FRIENE006402", + "ref": "FRIENE006402", + "name": "Pontfaverger-Moronvilliers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3394, + 49.299799 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Pontfaverger-Moronvilliers", + "ref:EU:EVSE": "FRIENE006402", + "ref": "FRIENE006402", + "name": "Pontfaverger-Moronvilliers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3394, + 49.299799 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Pontfaverger-Moronvilliers", + "ref:EU:EVSE": "FRIENE006401", + "ref": "FRIENE006401", + "name": "Pontfaverger-Moronvilliers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3394, + 49.299799 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Pontfaverger-Moronvilliers", + "ref:EU:EVSE": "FRIENE006401", + "ref": "FRIENE006401", + "name": "Pontfaverger-Moronvilliers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.682168, + 49.307914 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FISMES - 44705 - Rue du Docteur Genillon", + "ref:EU:EVSE": "FRS51E4470", + "ref": "FRS51E4470", + "name": "FISMES - 44705 - Rue du Docteur Genillon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.682168, + 49.307914 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FISMES - 44705 - Rue du Docteur Genillon", + "ref:EU:EVSE": "FRS51E4470", + "ref": "FRS51E4470", + "name": "FISMES - 44705 - Rue du Docteur Genillon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.991867, + 48.753599 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FERE CHAMPENOISE - 44684 - Rue de l'Eglise", + "ref:EU:EVSE": "FRS51E4468", + "ref": "FRS51E4468", + "name": "FERE CHAMPENOISE - 44684 - Rue de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.991867, + 48.753599 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FERE CHAMPENOISE - 44684 - Rue de l'Eglise", + "ref:EU:EVSE": "FRS51E4468", + "ref": "FRS51E4468", + "name": "FERE CHAMPENOISE - 44684 - Rue de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.946034, + 50.310412 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE PRO&CIE 1", + "ref:EU:EVSE": "FRCPIE6473655", + "ref": "FRCPIE6473655", + "name": "BORNE PRO&CIE 1", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48584, + 44.157791 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Vincent-d'Autéjac", + "ref:EU:EVSE": "FRIENE006901", + "ref": "FRIENE006901", + "name": "Saint-Vincent-d'Autéjac", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.685784, + 44.311302 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UTILE LAPALUD BORNE 2", + "ref:EU:EVSE": "FRCPIE6664345", + "ref": "FRCPIE6664345", + "name": "UTILE LAPALUD BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.685784, + 44.311302 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UTILE LAPALUD BORNE 2", + "ref:EU:EVSE": "FRCPIE6664345", + "ref": "FRCPIE6664345", + "name": "UTILE LAPALUD BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24499596, + 43.33458687 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Garonne", + "ref:EU:EVSE": "FRIONE4018", + "ref": "FRIONE4018", + "name": "Garonne", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24499596, + 43.33458687 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Garonne", + "ref:EU:EVSE": "FRIONE40180", + "ref": "FRIONE40180", + "name": "Garonne", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24499596, + 43.33458687 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Garonne", + "ref:EU:EVSE": "FRIONE40180", + "ref": "FRIONE40180", + "name": "Garonne", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24499596, + 43.33458687 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Garonne", + "ref:EU:EVSE": "FRIONE40180", + "ref": "FRIONE40180", + "name": "Garonne", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.253033, + 44.870544 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Garde", + "ref:EU:EVSE": "FRIONE4326", + "ref": "FRIONE4326", + "name": "La Garde", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.253033, + 44.870544 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Garde", + "ref:EU:EVSE": "FRIONE43260", + "ref": "FRIONE43260", + "name": "La Garde", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.253033, + 44.870544 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Garde", + "ref:EU:EVSE": "FRIONE43260", + "ref": "FRIONE43260", + "name": "La Garde", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.253033, + 44.870544 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Garde", + "ref:EU:EVSE": "FRIONE43260", + "ref": "FRIONE43260", + "name": "La Garde", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.253033, + 44.870544 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Garde", + "ref:EU:EVSE": "FRIONE43260", + "ref": "FRIONE43260", + "name": "La Garde", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400005, + 45.461682 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ST-ETIENNE1", + "ref:EU:EVSE": "FRCPIE6678495", + "ref": "FRCPIE6678495", + "name": "SONEPAR CONNECT ST-ETIENNE1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400005, + 45.461682 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ST-ETIENNE1", + "ref:EU:EVSE": "FRCPIE6678495", + "ref": "FRCPIE6678495", + "name": "SONEPAR CONNECT ST-ETIENNE1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400005, + 45.461682 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ST-ETIENNE1", + "ref:EU:EVSE": "FRCPIE6557675", + "ref": "FRCPIE6557675", + "name": "SONEPAR CONNECT ST-ETIENNE1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400005, + 45.461682 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT ST-ETIENNE1", + "ref:EU:EVSE": "FRCPIE6557675", + "ref": "FRCPIE6557675", + "name": "SONEPAR CONNECT ST-ETIENNE1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.117894, + 49.049605 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TOURS SUR MARNE - 43909 - Avenue de Champagne", + "ref:EU:EVSE": "FRS51E4390", + "ref": "FRS51E4390", + "name": "TOURS SUR MARNE - 43909 - Avenue de Champagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.117894, + 49.049605 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TOURS SUR MARNE - 43909 - Avenue de Champagne", + "ref:EU:EVSE": "FRS51E4390", + "ref": "FRS51E4390", + "name": "TOURS SUR MARNE - 43909 - Avenue de Champagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.944203, + 48.347049 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GOMMERVILLE - 50 Route de Voves - 129084", + "ref:EU:EVSE": "FRS28E12908", + "ref": "FRS28E12908", + "name": "GOMMERVILLE - 50 Route de Voves - 129084", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24499596, + 43.33458687 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Garonne", + "ref:EU:EVSE": "FRIONE40180", + "ref": "FRIONE40180", + "name": "Garonne", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.787667, + 47.140961 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MANTHELAN 1279", + "ref:EU:EVSE": "FRS37E127", + "ref": "FRS37E127", + "name": "MANTHELAN 1279", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.685784, + 44.311302 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UTILE LAPALUD BORNE 2", + "ref:EU:EVSE": "FRCPIE6664335", + "ref": "FRCPIE6664335", + "name": "UTILE LAPALUD BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.787667, + 47.140961 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MANTHELAN 1279", + "ref:EU:EVSE": "FRS37E128", + "ref": "FRS37E128", + "name": "MANTHELAN 1279", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.685784, + 44.311302 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UTILE LAPALUD BORNE 2", + "ref:EU:EVSE": "FRCPIE6664335", + "ref": "FRCPIE6664335", + "name": "UTILE LAPALUD BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1547538, + 45.6828638 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de la plaine du Forez Ouest HW", + "ref:EU:EVSE": "FRSHEE158", + "ref": "FRSHEE158", + "name": "Shell Aire de la plaine du Forez Ouest HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1547538, + 45.6828638 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de la plaine du Forez Ouest HW", + "ref:EU:EVSE": "FRSHEE158", + "ref": "FRSHEE158", + "name": "Shell Aire de la plaine du Forez Ouest HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1547538, + 45.6828638 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de la plaine du Forez Ouest HW", + "ref:EU:EVSE": "FRSHEE158", + "ref": "FRSHEE158", + "name": "Shell Aire de la plaine du Forez Ouest HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1547538, + 45.6828638 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de la plaine du Forez Ouest HW", + "ref:EU:EVSE": "FRSHEE157", + "ref": "FRSHEE157", + "name": "Shell Aire de la plaine du Forez Ouest HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1547538, + 45.6828638 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de la plaine du Forez Ouest HW", + "ref:EU:EVSE": "FRSHEE157", + "ref": "FRSHEE157", + "name": "Shell Aire de la plaine du Forez Ouest HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1547538, + 45.6828638 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de la plaine du Forez Ouest HW", + "ref:EU:EVSE": "FRSHEE157", + "ref": "FRSHEE157", + "name": "Shell Aire de la plaine du Forez Ouest HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.155946, + 44.027508 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "U BLAYE MINES BLAYE 2", + "ref:EU:EVSE": "FRCPIE6553755", + "ref": "FRCPIE6553755", + "name": "U BLAYE MINES BLAYE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.155946, + 44.027508 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "U BLAYE MINES BLAYE 2", + "ref:EU:EVSE": "FRCPIE6553755", + "ref": "FRCPIE6553755", + "name": "U BLAYE MINES BLAYE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.155946, + 44.027508 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "U BLAYE MINES BLAYE 2", + "ref:EU:EVSE": "FRCPIE6553735", + "ref": "FRCPIE6553735", + "name": "U BLAYE MINES BLAYE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.155946, + 44.027508 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "U BLAYE MINES BLAYE 2", + "ref:EU:EVSE": "FRCPIE6553735", + "ref": "FRCPIE6553735", + "name": "U BLAYE MINES BLAYE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.774126, + 48.845738 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VANAULT LES DAMES", + "ref:EU:EVSE": "FRS51E5391", + "ref": "FRS51E5391", + "name": "VANAULT LES DAMES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.774126, + 48.845738 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VANAULT LES DAMES", + "ref:EU:EVSE": "FRS51E5391", + "ref": "FRS51E5391", + "name": "VANAULT LES DAMES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322924, + 43.214493 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CARCASSONNE CGE", + "ref:EU:EVSE": "FRCPIE6641115", + "ref": "FRCPIE6641115", + "name": "CGED CARCASSONNE CGE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322924, + 43.214493 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CARCASSONNE CGE", + "ref:EU:EVSE": "FRCPIE6641115", + "ref": "FRCPIE6641115", + "name": "CGED CARCASSONNE CGE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.170852, + 49.362772 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BAZANCOURT - 44731 - Rue Jean Jaurès", + "ref:EU:EVSE": "FRS51E4473", + "ref": "FRS51E4473", + "name": "BAZANCOURT - 44731 - Rue Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.170852, + 49.362772 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BAZANCOURT - 44731 - Rue Jean Jaurès", + "ref:EU:EVSE": "FRS51E4473", + "ref": "FRS51E4473", + "name": "BAZANCOURT - 44731 - Rue Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.353508, + 48.418167 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GEORGES SUR EURE - Eglise - 137362", + "ref:EU:EVSE": "FRS28E13736", + "ref": "FRS28E13736", + "name": "SAINT GEORGES SUR EURE - Eglise - 137362", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.466396, + 48.19388 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPINAL - Rue Philippe Séguin - 159235 - CCS", + "ref:EU:EVSE": "FRS88E15923", + "ref": "FRS88E15923", + "name": "EPINAL - Rue Philippe Séguin - 159235 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-17", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252767, + 47.567883 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRINON-sur-Sauldre - Maire - 186370", + "ref:EU:EVSE": "FRS18E18637", + "ref": "FRS18E18637", + "name": "BRINON-sur-Sauldre - Maire - 186370", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.747075, + 48.088989 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LAVAL", + "ref:EU:EVSE": "FRCPIE6643815", + "ref": "FRCPIE6643815", + "name": "SONEPAR LAVAL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.747075, + 48.088989 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LAVAL", + "ref:EU:EVSE": "FRCPIE6643815", + "ref": "FRCPIE6643815", + "name": "SONEPAR LAVAL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.911604, + 47.157244 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SANCERGUES - La Chicane - 181993", + "ref:EU:EVSE": "FRS18E18199", + "ref": "FRS18E18199", + "name": "SANCERGUES - La Chicane - 181993", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.911604, + 47.157244 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SANCERGUES - La Chicane - 181993", + "ref:EU:EVSE": "FRS18E18199", + "ref": "FRS18E18199", + "name": "SANCERGUES - La Chicane - 181993", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.95925, + 48.2364 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAULCY SUR MEURTHE - 161611 - CCS", + "ref:EU:EVSE": "FRS88E16161", + "ref": "FRS88E16161", + "name": "SAULCY SUR MEURTHE - 161611 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.95925, + 48.2364 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAULCY SUR MEURTHE - 161611 - CCS", + "ref:EU:EVSE": "FRS88E16161", + "ref": "FRS88E16161", + "name": "SAULCY SUR MEURTHE - 161611 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.400307, + 49.036892 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UNILABS BIO CT CHATEAU THIERRY", + "ref:EU:EVSE": "FRCPIE6643385", + "ref": "FRCPIE6643385", + "name": "UNILABS BIO CT CHATEAU THIERRY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.400307, + 49.036892 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UNILABS BIO CT CHATEAU THIERRY", + "ref:EU:EVSE": "FRCPIE6643385", + "ref": "FRCPIE6643385", + "name": "UNILABS BIO CT CHATEAU THIERRY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99582, + 47.15519 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MASSAY - Place de l'église - 112319", + "ref:EU:EVSE": "FRS18E11232", + "ref": "FRS18E11232", + "name": "MASSAY - Place de l'église - 112319", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99582, + 47.15519 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MASSAY - Place de l'église - 112319", + "ref:EU:EVSE": "FRS18E11231", + "ref": "FRS18E11231", + "name": "MASSAY - Place de l'église - 112319", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.624898, + 48.271745 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VOVES - Rue de Châteaudun - 141761", + "ref:EU:EVSE": "FRS28E14176", + "ref": "FRS28E14176", + "name": "VOVES - Rue de Châteaudun - 141761", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.059607, + 47.575025 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U CARNAC BORNE 3", + "ref:EU:EVSE": "FRCPIE6708785", + "ref": "FRCPIE6708785", + "name": "SUPER U CARNAC BORNE 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.059607, + 47.575025 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U CARNAC BORNE 3", + "ref:EU:EVSE": "FRCPIE6708785", + "ref": "FRCPIE6708785", + "name": "SUPER U CARNAC BORNE 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.059607, + 47.575025 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U CARNAC BORNE 3", + "ref:EU:EVSE": "FRCPIE6708765", + "ref": "FRCPIE6708765", + "name": "SUPER U CARNAC BORNE 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252767, + 47.567883 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRINON-sur-Sauldre - Maire - 186370", + "ref:EU:EVSE": "FRS18E18637", + "ref": "FRS18E18637", + "name": "BRINON-sur-Sauldre - Maire - 186370", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.466396, + 48.19388 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPINAL - Rue Philippe Séguin - 159235 - CCS", + "ref:EU:EVSE": "FRS88E15923", + "ref": "FRS88E15923", + "name": "EPINAL - Rue Philippe Séguin - 159235 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-17", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.61971, + 47.12379 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRECY - Mairie - 112944", + "ref:EU:EVSE": "FRS18E20401", + "ref": "FRS18E20401", + "name": "BRECY - Mairie - 112944", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.857829, + 47.336965 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT-SATUR - Résistance - 200419", + "ref:EU:EVSE": "FRS18E20041", + "ref": "FRS18E20041", + "name": "SAINT-SATUR - Résistance - 200419", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.602354, + 48.385134 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROVILLE AUX CHENES - Plc des Erables - 159270-CCS", + "ref:EU:EVSE": "FRS88E15927", + "ref": "FRS88E15927", + "name": "ROVILLE AUX CHENES - Plc des Erables - 159270-CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-17", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.602354, + 48.385134 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROVILLE AUX CHENES - Plc des Erables - 159270-CCS", + "ref:EU:EVSE": "FRS88E15927", + "ref": "FRS88E15927", + "name": "ROVILLE AUX CHENES - Plc des Erables - 159270-CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-17", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56678, + 49.01664 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bonnieres sur Seine", + "ref:EU:EVSE": "FRIENE004102", + "ref": "FRIENE004102", + "name": "Bonnieres sur Seine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56678, + 49.01664 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bonnieres sur Seine", + "ref:EU:EVSE": "FRIENE004102", + "ref": "FRIENE004102", + "name": "Bonnieres sur Seine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56678, + 49.01664 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bonnieres sur Seine", + "ref:EU:EVSE": "FRIENE004101", + "ref": "FRIENE004101", + "name": "Bonnieres sur Seine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56678, + 49.01664 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bonnieres sur Seine", + "ref:EU:EVSE": "FRIENE004101", + "ref": "FRIENE004101", + "name": "Bonnieres sur Seine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43186, + 47.36434 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE D'ANGILLON - Pl. du Monument - 112719", + "ref:EU:EVSE": "FRS18E11272", + "ref": "FRS18E11272", + "name": "LA CHAPELLE D'ANGILLON - Pl. du Monument - 112719", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43186, + 47.36434 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE D'ANGILLON - Pl. du Monument - 112719", + "ref:EU:EVSE": "FRS18E11271", + "ref": "FRS18E11271", + "name": "LA CHAPELLE D'ANGILLON - Pl. du Monument - 112719", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283484, + 46.642269 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE CHATELET - Place de la Mairie - 143927", + "ref:EU:EVSE": "FRS18E14392", + "ref": "FRS18E14392", + "name": "LE CHATELET - Place de la Mairie - 143927", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283484, + 46.642269 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE CHATELET - Place de la Mairie - 143927", + "ref:EU:EVSE": "FRS18E14392", + "ref": "FRS18E14392", + "name": "LE CHATELET - Place de la Mairie - 143927", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43252, + 46.53885 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VESDUN - Rte de St VITTE - 182380", + "ref:EU:EVSE": "FRS18E18238", + "ref": "FRS18E18238", + "name": "VESDUN - Rte de St VITTE - 182380", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43252, + 46.53885 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VESDUN - Rte de St VITTE - 182380", + "ref:EU:EVSE": "FRS18E18238", + "ref": "FRS18E18238", + "name": "VESDUN - Rte de St VITTE - 182380", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.373375, + 47.101366 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St DOULCHARD - Gal De Gaulle - 140155", + "ref:EU:EVSE": "FRS18E14015", + "ref": "FRS18E14015", + "name": "St DOULCHARD - Gal De Gaulle - 140155", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.373375, + 47.101366 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St DOULCHARD - Gal De Gaulle - 140155", + "ref:EU:EVSE": "FRS18E14015", + "ref": "FRS18E14015", + "name": "St DOULCHARD - Gal De Gaulle - 140155", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.857829, + 47.336965 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT-SATUR - Résistance - 200419", + "ref:EU:EVSE": "FRS18E20042", + "ref": "FRS18E20042", + "name": "SAINT-SATUR - Résistance - 200419", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.059607, + 47.575025 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U CARNAC BORNE 3", + "ref:EU:EVSE": "FRCPIE6708765", + "ref": "FRCPIE6708765", + "name": "SUPER U CARNAC BORNE 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.61971, + 47.12379 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRECY - Mairie - 112944", + "ref:EU:EVSE": "FRS18E20401", + "ref": "FRS18E20401", + "name": "BRECY - Mairie - 112944", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.772468, + 48.461236 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUNEAU - Rue Emile Labiche - 134756", + "ref:EU:EVSE": "FRS28E13475", + "ref": "FRS28E13475", + "name": "AUNEAU - Rue Emile Labiche - 134756", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418853, + 47.076978 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Parking Pyrotechnie - 96970", + "ref:EU:EVSE": "FRS18E9697", + "ref": "FRS18E9697", + "name": "BOURGES - Parking Pyrotechnie - 96970", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.71346, + 46.80106 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BANNEGON - Place saint Georges -117205", + "ref:EU:EVSE": "FRS18E19642", + "ref": "FRS18E19642", + "name": "BANNEGON - Place saint Georges -117205", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87324, + 47.42393 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOULLERET - Eglise - 117188", + "ref:EU:EVSE": "FRS18E11718", + "ref": "FRS18E11718", + "name": "BOULLERET - Eglise - 117188", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87324, + 47.42393 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOULLERET - Eglise - 117188", + "ref:EU:EVSE": "FRS18E11718", + "ref": "FRS18E11718", + "name": "BOULLERET - Eglise - 117188", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.689164, + 48.522625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GALLARDON - Rue Guy Pouillé - 178731", + "ref:EU:EVSE": "FRS28E17873", + "ref": "FRS28E17873", + "name": "GALLARDON - Rue Guy Pouillé - 178731", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45819, + 48.417249 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUISANT - Rue Jean Perrin - 137353", + "ref:EU:EVSE": "FRS28E13735", + "ref": "FRS28E13735", + "name": "LUISANT - Rue Jean Perrin - 137353", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7547021, + 48.1252516 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vezin-le-Coquet", + "ref:EU:EVSE": "FRIENE35353A", + "ref": "FRIENE35353A", + "name": "Vezin-le-Coquet", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7547021, + 48.1252516 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vezin-le-Coquet", + "ref:EU:EVSE": "FRIENE35353A", + "ref": "FRIENE35353A", + "name": "Vezin-le-Coquet", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7547021, + 48.1252516 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vezin-le-Coquet", + "ref:EU:EVSE": "FRIENE35353A", + "ref": "FRIENE35353A", + "name": "Vezin-le-Coquet", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7547021, + 48.1252516 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vezin-le-Coquet", + "ref:EU:EVSE": "FRIENE35353A", + "ref": "FRIENE35353A", + "name": "Vezin-le-Coquet", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7547021, + 48.1252516 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vezin-le-Coquet", + "ref:EU:EVSE": "FRIENE35353A", + "ref": "FRIENE35353A", + "name": "Vezin-le-Coquet", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48852, + 48.45289 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARTRES - Place Drouaise - 126231", + "ref:EU:EVSE": "FRS28E12623", + "ref": "FRS28E12623", + "name": "CHARTRES - Place Drouaise - 126231", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.102101, + 44.267239 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Lauzerte", + "ref:EU:EVSE": "FRIENE009502", + "ref": "FRIENE009502", + "name": "Lauzerte", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.102101, + 44.267239 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Lauzerte", + "ref:EU:EVSE": "FRIENE009502", + "ref": "FRIENE009502", + "name": "Lauzerte", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.102101, + 44.267239 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Lauzerte", + "ref:EU:EVSE": "FRIENE009501", + "ref": "FRIENE009501", + "name": "Lauzerte", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.102101, + 44.267239 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Lauzerte", + "ref:EU:EVSE": "FRIENE009501", + "ref": "FRIENE009501", + "name": "Lauzerte", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.71346, + 46.80106 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BANNEGON - Place saint Georges -117205", + "ref:EU:EVSE": "FRS18E19642", + "ref": "FRS18E19642", + "name": "BANNEGON - Place saint Georges -117205", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418853, + 47.076978 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Parking Pyrotechnie - 96970", + "ref:EU:EVSE": "FRS18E9697", + "ref": "FRS18E9697", + "name": "BOURGES - Parking Pyrotechnie - 96970", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.140409, + 46.808706 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "FIDEMECA BORNE 2", + "ref:EU:EVSE": "FRCPIE6734595", + "ref": "FRCPIE6734595", + "name": "FIDEMECA BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.80268, + 49.182375 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLE EN TARDENOIS", + "ref:EU:EVSE": "FRS51E5746", + "ref": "FRS51E5746", + "name": "VILLE EN TARDENOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.140409, + 46.808706 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "FIDEMECA BORNE 2", + "ref:EU:EVSE": "FRCPIE6734595", + "ref": "FRCPIE6734595", + "name": "FIDEMECA BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.140409, + 46.808706 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "FIDEMECA BORNE 2", + "ref:EU:EVSE": "FRCPIE6718575", + "ref": "FRCPIE6718575", + "name": "FIDEMECA BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.140409, + 46.808706 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "FIDEMECA BORNE 2", + "ref:EU:EVSE": "FRCPIE6718575", + "ref": "FRCPIE6718575", + "name": "FIDEMECA BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.45226, + 46.99799 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PLAIMPIED GIVAUDINS - Gobbiers - 112214", + "ref:EU:EVSE": "FRS18E11221", + "ref": "FRS18E11221", + "name": "PLAIMPIED GIVAUDINS - Gobbiers - 112214", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.45226, + 46.99799 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PLAIMPIED GIVAUDINS - Gobbiers - 112214", + "ref:EU:EVSE": "FRS18E11221", + "ref": "FRS18E11221", + "name": "PLAIMPIED GIVAUDINS - Gobbiers - 112214", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387454, + 48.17977 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BONNEVAL - Rue de la grève - 134496", + "ref:EU:EVSE": "FRS28E13449", + "ref": "FRS28E13449", + "name": "BONNEVAL - Rue de la grève - 134496", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.874999, + 47.473644 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LERE - Port - 204137", + "ref:EU:EVSE": "FRS18E20413", + "ref": "FRS18E20413", + "name": "LERE - Port - 204137", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.874999, + 47.473644 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LERE - Port - 204137", + "ref:EU:EVSE": "FRS18E20413", + "ref": "FRS18E20413", + "name": "LERE - Port - 204137", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.57943, + 47.285643 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HENRICHEMONT - La Borne - 186354", + "ref:EU:EVSE": "FRS18E18635", + "ref": "FRS18E18635", + "name": "HENRICHEMONT - La Borne - 186354", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.57943, + 47.285643 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HENRICHEMONT - La Borne - 186354", + "ref:EU:EVSE": "FRS18E18635", + "ref": "FRS18E18635", + "name": "HENRICHEMONT - La Borne - 186354", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56521, + 46.88286 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DUN-SUR-AURON - Piscine - 115406", + "ref:EU:EVSE": "FRS18E11566", + "ref": "FRS18E11566", + "name": "DUN-SUR-AURON - Piscine - 115406", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56521, + 46.88286 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DUN-SUR-AURON - Piscine - 115406", + "ref:EU:EVSE": "FRS18E11540", + "ref": "FRS18E11540", + "name": "DUN-SUR-AURON - Piscine - 115406", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11646, + 46.82673 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEZAL-BENOIT - Poste - 112663", + "ref:EU:EVSE": "FRS18E11266", + "ref": "FRS18E11266", + "name": "CHEZAL-BENOIT - Poste - 112663", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11646, + 46.82673 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEZAL-BENOIT - Poste - 112663", + "ref:EU:EVSE": "FRS18E11266", + "ref": "FRS18E11266", + "name": "CHEZAL-BENOIT - Poste - 112663", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.80268, + 49.182375 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLE EN TARDENOIS", + "ref:EU:EVSE": "FRS51E5747", + "ref": "FRS51E5747", + "name": "VILLE EN TARDENOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.009818, + 48.971941 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVIZE - 43907 - Rue du bourg Joli", + "ref:EU:EVSE": "FRS51E4390", + "ref": "FRS51E4390", + "name": "AVIZE - 43907 - Rue du bourg Joli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.009818, + 48.971941 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVIZE - 43907 - Rue du bourg Joli", + "ref:EU:EVSE": "FRS51E4390", + "ref": "FRS51E4390", + "name": "AVIZE - 43907 - Rue du bourg Joli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4342274, + 44.6459629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Terres de Graves Nord", + "ref:EU:EVSE": "FRSHEE91", + "ref": "FRSHEE91", + "name": "Shell Terres de Graves Nord", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332664, + 49.17908 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR MONDEVILLE 2", + "ref:EU:EVSE": "FRCPIE6752235", + "ref": "FRCPIE6752235", + "name": "SONEPAR MONDEVILLE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07560301, + 49.0617463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Mézidon Vallée d'Auge", + "ref:EU:EVSE": "FRIENE003102", + "ref": "FRIENE003102", + "name": "Mézidon Vallée d'Auge", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07560301, + 49.0617463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Mézidon Vallée d'Auge", + "ref:EU:EVSE": "FRIENE003101", + "ref": "FRIENE003101", + "name": "Mézidon Vallée d'Auge", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07560301, + 49.0617463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Mézidon Vallée d'Auge", + "ref:EU:EVSE": "FRIENE003101", + "ref": "FRIENE003101", + "name": "Mézidon Vallée d'Auge", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.240505, + 48.760843 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST-REMY-SUR-AVRE - Place des Dodots - 139435", + "ref:EU:EVSE": "FRS28E13943", + "ref": "FRS28E13943", + "name": "ST-REMY-SUR-AVRE - Place des Dodots - 139435", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.356077, + 48.7207 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNOUILLET - Place du 8 mai 1945 - 139037", + "ref:EU:EVSE": "FRS28E13903", + "ref": "FRS28E13903", + "name": "VERNOUILLET - Place du 8 mai 1945 - 139037", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.413199, + 46.63381 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "La Roche-sur-Yon", + "ref:EU:EVSE": "FRIENE000602", + "ref": "FRIENE000602", + "name": "La Roche-sur-Yon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.413199, + 46.63381 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "La Roche-sur-Yon", + "ref:EU:EVSE": "FRIENE000602", + "ref": "FRIENE000602", + "name": "La Roche-sur-Yon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.413199, + 46.63381 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "La Roche-sur-Yon", + "ref:EU:EVSE": "FRIENE000601", + "ref": "FRIENE000601", + "name": "La Roche-sur-Yon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.413199, + 46.63381 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "La Roche-sur-Yon", + "ref:EU:EVSE": "FRIENE000601", + "ref": "FRIENE000601", + "name": "La Roche-sur-Yon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586911, + 48.777919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 28", + "ref:EU:EVSE": "FRCPIE6715845", + "ref": "FRCPIE6715845", + "name": "WAAT 4 CHENES 28", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586911, + 48.777919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 28", + "ref:EU:EVSE": "FRCPIE6715845", + "ref": "FRCPIE6715845", + "name": "WAAT 4 CHENES 28", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586911, + 48.777919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 28", + "ref:EU:EVSE": "FRCPIE6715835", + "ref": "FRCPIE6715835", + "name": "WAAT 4 CHENES 28", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586911, + 48.777919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 28", + "ref:EU:EVSE": "FRCPIE6715835", + "ref": "FRCPIE6715835", + "name": "WAAT 4 CHENES 28", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586911, + 48.777919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 28", + "ref:EU:EVSE": "FRCPIE6715825", + "ref": "FRCPIE6715825", + "name": "WAAT 4 CHENES 28", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586911, + 48.777919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 28", + "ref:EU:EVSE": "FRCPIE6715825", + "ref": "FRCPIE6715825", + "name": "WAAT 4 CHENES 28", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07560301, + 49.0617463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Mézidon Vallée d'Auge", + "ref:EU:EVSE": "FRIENE003102", + "ref": "FRIENE003102", + "name": "Mézidon Vallée d'Auge", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332664, + 49.17908 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR MONDEVILLE 2", + "ref:EU:EVSE": "FRCPIE6752235", + "ref": "FRCPIE6752235", + "name": "SONEPAR MONDEVILLE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586911, + 48.777919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 28", + "ref:EU:EVSE": "FRCPIE6715815", + "ref": "FRCPIE6715815", + "name": "WAAT 4 CHENES 28", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332664, + 49.17908 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR MONDEVILLE 2", + "ref:EU:EVSE": "FRCPIE6752245", + "ref": "FRCPIE6752245", + "name": "SONEPAR MONDEVILLE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.012336, + 49.204187 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Champfleury", + "ref:EU:EVSE": "FRIONE43850", + "ref": "FRIONE43850", + "name": "Champfleury", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.012336, + 49.204187 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Champfleury", + "ref:EU:EVSE": "FRIONE43850", + "ref": "FRIONE43850", + "name": "Champfleury", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499421, + 43.681159 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CAAPIMMOPERTUIS BORNE 9-10", + "ref:EU:EVSE": "FRCPIE6753165", + "ref": "FRCPIE6753165", + "name": "CAAPIMMOPERTUIS BORNE 9-10", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499421, + 43.681159 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CAAPIMMOPERTUIS BORNE 9-10", + "ref:EU:EVSE": "FRCPIE6753165", + "ref": "FRCPIE6753165", + "name": "CAAPIMMOPERTUIS BORNE 9-10", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499421, + 43.681159 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CAAPIMMOPERTUIS BORNE 9-10", + "ref:EU:EVSE": "FRCPIE6753085", + "ref": "FRCPIE6753085", + "name": "CAAPIMMOPERTUIS BORNE 9-10", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499421, + 43.681159 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CAAPIMMOPERTUIS BORNE 9-10", + "ref:EU:EVSE": "FRCPIE6753085", + "ref": "FRCPIE6753085", + "name": "CAAPIMMOPERTUIS BORNE 9-10", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499875, + 43.681048 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CAAPIMMOPERTUIS BORNE 7-8", + "ref:EU:EVSE": "FRCPIE6753155", + "ref": "FRCPIE6753155", + "name": "CAAPIMMOPERTUIS BORNE 7-8", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499875, + 43.681048 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CAAPIMMOPERTUIS BORNE 7-8", + "ref:EU:EVSE": "FRCPIE6753155", + "ref": "FRCPIE6753155", + "name": "CAAPIMMOPERTUIS BORNE 7-8", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499875, + 43.681048 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CAAPIMMOPERTUIS BORNE 7-8", + "ref:EU:EVSE": "FRCPIE6753145", + "ref": "FRCPIE6753145", + "name": "CAAPIMMOPERTUIS BORNE 7-8", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499875, + 43.681048 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CAAPIMMOPERTUIS BORNE 7-8", + "ref:EU:EVSE": "FRCPIE6753145", + "ref": "FRCPIE6753145", + "name": "CAAPIMMOPERTUIS BORNE 7-8", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499875, + 43.681048 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CAAPIMMOPERTUIS BORNE 7-8", + "ref:EU:EVSE": "FRCPIE6753035", + "ref": "FRCPIE6753035", + "name": "CAAPIMMOPERTUIS BORNE 7-8", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499875, + 43.681048 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CAAPIMMOPERTUIS BORNE 7-8", + "ref:EU:EVSE": "FRCPIE6753035", + "ref": "FRCPIE6753035", + "name": "CAAPIMMOPERTUIS BORNE 7-8", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.760127, + 48.462029 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUNEAU - Complexe Sportif - 139678", + "ref:EU:EVSE": "FRS28E13967", + "ref": "FRS28E13967", + "name": "AUNEAU - Complexe Sportif - 139678", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.760127, + 48.462029 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUNEAU - Complexe Sportif - 139678", + "ref:EU:EVSE": "FRS28E13967", + "ref": "FRS28E13967", + "name": "AUNEAU - Complexe Sportif - 139678", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332664, + 49.17908 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR MONDEVILLE 2", + "ref:EU:EVSE": "FRCPIE6752245", + "ref": "FRCPIE6752245", + "name": "SONEPAR MONDEVILLE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586911, + 48.777919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 28", + "ref:EU:EVSE": "FRCPIE6715815", + "ref": "FRCPIE6715815", + "name": "WAAT 4 CHENES 28", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586911, + 48.777919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 28", + "ref:EU:EVSE": "FRCPIE6715805", + "ref": "FRCPIE6715805", + "name": "WAAT 4 CHENES 28", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.012336, + 49.204187 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Champfleury", + "ref:EU:EVSE": "FRIONE43850", + "ref": "FRIONE43850", + "name": "Champfleury", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.234271, + 47.076183 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Gétigné", + "ref:EU:EVSE": "FRIENE002001", + "ref": "FRIENE002001", + "name": "Gétigné", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.450029, + 49.254993 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED MONTATAIRE", + "ref:EU:EVSE": "FRCPIE6601735", + "ref": "FRCPIE6601735", + "name": "CGED MONTATAIRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.693046, + 45.7744333 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Chazey-Bons", + "ref:EU:EVSE": "FRIENE001602", + "ref": "FRIENE001602", + "name": "Chazey-Bons", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.693046, + 45.7744333 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Chazey-Bons", + "ref:EU:EVSE": "FRIENE001602", + "ref": "FRIENE001602", + "name": "Chazey-Bons", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.693046, + 45.7744333 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Chazey-Bons", + "ref:EU:EVSE": "FRIENE001601", + "ref": "FRIENE001601", + "name": "Chazey-Bons", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.693046, + 45.7744333 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Chazey-Bons", + "ref:EU:EVSE": "FRIENE001601", + "ref": "FRIENE001601", + "name": "Chazey-Bons", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.322385, + 48.676224 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TREON - Rue Jean Michel Herault - 134347", + "ref:EU:EVSE": "FRS28E13434", + "ref": "FRS28E13434", + "name": "TREON - Rue Jean Michel Herault - 134347", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586908, + 48.77765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 30", + "ref:EU:EVSE": "FRCPIE6715865", + "ref": "FRCPIE6715865", + "name": "WAAT 4 CHENES 30", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586908, + 48.77765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 30", + "ref:EU:EVSE": "FRCPIE6715865", + "ref": "FRCPIE6715865", + "name": "WAAT 4 CHENES 30", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586908, + 48.77765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 30", + "ref:EU:EVSE": "FRCPIE6715855", + "ref": "FRCPIE6715855", + "name": "WAAT 4 CHENES 30", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586908, + 48.77765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 30", + "ref:EU:EVSE": "FRCPIE6715855", + "ref": "FRCPIE6715855", + "name": "WAAT 4 CHENES 30", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586908, + 48.77765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 30", + "ref:EU:EVSE": "FRCPIE6715785", + "ref": "FRCPIE6715785", + "name": "WAAT 4 CHENES 30", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586908, + 48.77765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 30", + "ref:EU:EVSE": "FRCPIE6715785", + "ref": "FRCPIE6715785", + "name": "WAAT 4 CHENES 30", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586908, + 48.77765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 30", + "ref:EU:EVSE": "FRCPIE6715775", + "ref": "FRCPIE6715775", + "name": "WAAT 4 CHENES 30", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586908, + 48.77765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 30", + "ref:EU:EVSE": "FRCPIE6715775", + "ref": "FRCPIE6715775", + "name": "WAAT 4 CHENES 30", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586908, + 48.77765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 30", + "ref:EU:EVSE": "FRCPIE6715765", + "ref": "FRCPIE6715765", + "name": "WAAT 4 CHENES 30", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.450029, + 49.254993 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED MONTATAIRE", + "ref:EU:EVSE": "FRCPIE6601735", + "ref": "FRCPIE6601735", + "name": "CGED MONTATAIRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.234271, + 47.076183 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Gétigné", + "ref:EU:EVSE": "FRIENE002001", + "ref": "FRIENE002001", + "name": "Gétigné", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586911, + 48.777919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 28", + "ref:EU:EVSE": "FRCPIE6715805", + "ref": "FRCPIE6715805", + "name": "WAAT 4 CHENES 28", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.234271, + 47.076183 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Gétigné", + "ref:EU:EVSE": "FRIENE002002", + "ref": "FRIENE002002", + "name": "Gétigné", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586911, + 48.777919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 28", + "ref:EU:EVSE": "FRCPIE6715795", + "ref": "FRCPIE6715795", + "name": "WAAT 4 CHENES 28", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586911, + 48.777919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "WAAT 4 CHENES 28", + "ref:EU:EVSE": "FRCPIE6715795", + "ref": "FRCPIE6715795", + "name": "WAAT 4 CHENES 28", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05605048, + 47.2040707 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Père-en-Retz", + "ref:EU:EVSE": "FRIENE000702", + "ref": "FRIENE000702", + "name": "Saint-Père-en-Retz", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05605048, + 47.2040707 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Père-en-Retz", + "ref:EU:EVSE": "FRIENE000702", + "ref": "FRIENE000702", + "name": "Saint-Père-en-Retz", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05605048, + 47.2040707 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Père-en-Retz", + "ref:EU:EVSE": "FRIENE000701", + "ref": "FRIENE000701", + "name": "Saint-Père-en-Retz", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05605048, + 47.2040707 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Père-en-Retz", + "ref:EU:EVSE": "FRIENE000701", + "ref": "FRIENE000701", + "name": "Saint-Père-en-Retz", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21783034, + 45.2046048 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Orignolles", + "ref:EU:EVSE": "FRIENE001702", + "ref": "FRIENE001702", + "name": "Orignolles", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21783034, + 45.2046048 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Orignolles", + "ref:EU:EVSE": "FRIENE001702", + "ref": "FRIENE001702", + "name": "Orignolles", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21783034, + 45.2046048 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Orignolles", + "ref:EU:EVSE": "FRIENE001701", + "ref": "FRIENE001701", + "name": "Orignolles", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21783034, + 45.2046048 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Orignolles", + "ref:EU:EVSE": "FRIENE001701", + "ref": "FRIENE001701", + "name": "Orignolles", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603188, + 47.518873 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Avrillé", + "ref:EU:EVSE": "FRIENE001102", + "ref": "FRIENE001102", + "name": "Avrillé", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603188, + 47.518873 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Avrillé", + "ref:EU:EVSE": "FRIENE001102", + "ref": "FRIENE001102", + "name": "Avrillé", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603188, + 47.518873 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Avrillé", + "ref:EU:EVSE": "FRIENE001101", + "ref": "FRIENE001101", + "name": "Avrillé", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603188, + 47.518873 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Avrillé", + "ref:EU:EVSE": "FRIENE001101", + "ref": "FRIENE001101", + "name": "Avrillé", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.234271, + 47.076183 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Gétigné", + "ref:EU:EVSE": "FRIENE002002", + "ref": "FRIENE002002", + "name": "Gétigné", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.012336, + 49.204187 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Champfleury", + "ref:EU:EVSE": "FRIONE43850", + "ref": "FRIONE43850", + "name": "Champfleury", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.012336, + 49.204187 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Champfleury", + "ref:EU:EVSE": "FRIONE43850", + "ref": "FRIONE43850", + "name": "Champfleury", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4342274, + 44.6459629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Terres de Graves Nord", + "ref:EU:EVSE": "FRSHEE91", + "ref": "FRSHEE91", + "name": "Shell Terres de Graves Nord", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.435292, + 47.411919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ENNORDRES - La Surprise - 147553", + "ref:EU:EVSE": "FRS18E14755", + "ref": "FRS18E14755", + "name": "ENNORDRES - La Surprise - 147553", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.814318, + 48.58333 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ANGLURE - 43647 - Place de la République", + "ref:EU:EVSE": "FRS51E4364", + "ref": "FRS51E4364", + "name": "ANGLURE - 43647 - Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.814318, + 48.58333 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ANGLURE - 43647 - Place de la République", + "ref:EU:EVSE": "FRS51E15167", + "ref": "FRS51E15167", + "name": "ANGLURE - 43647 - Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.416918, + 46.313059 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Boismandé Ouest", + "ref:EU:EVSE": "FRIONE4020", + "ref": "FRIONE4020", + "name": "Boismandé Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.416918, + 46.313059 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Boismandé Ouest", + "ref:EU:EVSE": "FRIONE40200", + "ref": "FRIONE40200", + "name": "Boismandé Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.416918, + 46.313059 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Boismandé Ouest", + "ref:EU:EVSE": "FRIONE40200", + "ref": "FRIONE40200", + "name": "Boismandé Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.416918, + 46.313059 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Boismandé Ouest", + "ref:EU:EVSE": "FRIONE40200", + "ref": "FRIONE40200", + "name": "Boismandé Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.416918, + 46.313059 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Boismandé Ouest", + "ref:EU:EVSE": "FRIONE40200", + "ref": "FRIONE40200", + "name": "Boismandé Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.679734, + 48.552142 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONFLANS SUR SEINE - 43640 - Av Marechal Leclerc", + "ref:EU:EVSE": "FRS51E4364", + "ref": "FRS51E4364", + "name": "CONFLANS SUR SEINE - 43640 - Av Marechal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.679734, + 48.552142 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONFLANS SUR SEINE - 43640 - Av Marechal Leclerc", + "ref:EU:EVSE": "FRS51E4363", + "ref": "FRS51E4363", + "name": "CONFLANS SUR SEINE - 43640 - Av Marechal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.364287, + 48.229263 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ALLUYES - Av Chevallier Debeausse - 129291", + "ref:EU:EVSE": "FRS28E12929", + "ref": "FRS28E12929", + "name": "ALLUYES - Av Chevallier Debeausse - 129291", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5202, + 44.855926 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED BERGERAC", + "ref:EU:EVSE": "FRCPIE6668835", + "ref": "FRCPIE6668835", + "name": "CGED CGED BERGERAC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5202, + 44.855926 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED BERGERAC", + "ref:EU:EVSE": "FRCPIE6668835", + "ref": "FRCPIE6668835", + "name": "CGED CGED BERGERAC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894038, + 45.8899 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mionnay Chatanay", + "ref:EU:EVSE": "FRIONE4044", + "ref": "FRIONE4044", + "name": "Mionnay Chatanay", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894038, + 45.8899 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mionnay Chatanay", + "ref:EU:EVSE": "FRIONE40440", + "ref": "FRIONE40440", + "name": "Mionnay Chatanay", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894038, + 45.8899 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mionnay Chatanay", + "ref:EU:EVSE": "FRIONE40440", + "ref": "FRIONE40440", + "name": "Mionnay Chatanay", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.742543, + 48.082374 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TERMINIER - Rue de charette - 141733", + "ref:EU:EVSE": "FRS28E14173", + "ref": "FRS28E14173", + "name": "TERMINIER - Rue de charette - 141733", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.435292, + 47.411919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ENNORDRES - La Surprise - 147553", + "ref:EU:EVSE": "FRS18E14755", + "ref": "FRS18E14755", + "name": "ENNORDRES - La Surprise - 147553", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894038, + 45.8899 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mionnay Chatanay", + "ref:EU:EVSE": "FRIONE40440", + "ref": "FRIONE40440", + "name": "Mionnay Chatanay", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.637889, + 47.436748 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA MEMBROLLE SUR CHOISILLE 1260 - La Choisille", + "ref:EU:EVSE": "FRS37E126", + "ref": "FRS37E126", + "name": "LA MEMBROLLE SUR CHOISILLE 1260 - La Choisille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4342274, + 44.6459629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Terres de Graves Nord", + "ref:EU:EVSE": "FRSHEE91", + "ref": "FRSHEE91", + "name": "Shell Terres de Graves Nord", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4342274, + 44.6459629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Terres de Graves Nord", + "ref:EU:EVSE": "FRSHEE91", + "ref": "FRSHEE91", + "name": "Shell Terres de Graves Nord", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4342274, + 44.6459629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Terres de Graves Nord", + "ref:EU:EVSE": "FRSHEE90", + "ref": "FRSHEE90", + "name": "Shell Terres de Graves Nord", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4342274, + 44.6459629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Terres de Graves Nord", + "ref:EU:EVSE": "FRSHEE90", + "ref": "FRSHEE90", + "name": "Shell Terres de Graves Nord", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4342274, + 44.6459629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Terres de Graves Nord", + "ref:EU:EVSE": "FRSHEE90", + "ref": "FRSHEE90", + "name": "Shell Terres de Graves Nord", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4342274, + 44.6459629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Terres de Graves Nord", + "ref:EU:EVSE": "FRSHEE90", + "ref": "FRSHEE90", + "name": "Shell Terres de Graves Nord", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.808141, + 48.92467 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTMORT LUCY - 43905 - Place Général de Gaulle", + "ref:EU:EVSE": "FRS51E4390", + "ref": "FRS51E4390", + "name": "MONTMORT LUCY - 43905 - Place Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.808141, + 48.92467 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTMORT LUCY - 43905 - Place Général de Gaulle", + "ref:EU:EVSE": "FRS51E4390", + "ref": "FRS51E4390", + "name": "MONTMORT LUCY - 43905 - Place Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.995718, + 47.851507 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Created 2021-02-01 15:55 con: 1", + "ref:EU:EVSE": "FRS41E5288", + "ref": "FRS41E5288", + "name": "Created 2021-02-01 15:55 con: 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.995718, + 47.851507 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Created 2021-02-01 15:55 con: 1", + "ref:EU:EVSE": "FRS41E5287", + "ref": "FRS41E5287", + "name": "Created 2021-02-01 15:55 con: 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.758175, + 49.100557 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATILLONS SUR MARNE - 43901 - Rue de Madeleine", + "ref:EU:EVSE": "FRS51E4390", + "ref": "FRS51E4390", + "name": "CHATILLONS SUR MARNE - 43901 - Rue de Madeleine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.758175, + 49.100557 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATILLONS SUR MARNE - 43901 - Rue de Madeleine", + "ref:EU:EVSE": "FRS51E4390", + "ref": "FRS51E4390", + "name": "CHATILLONS SUR MARNE - 43901 - Rue de Madeleine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.946328, + 49.082391 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HAUTVILLERS - 43897 - Rue des Côtes de Lhery", + "ref:EU:EVSE": "FRS51E4389", + "ref": "FRS51E4389", + "name": "HAUTVILLERS - 43897 - Rue des Côtes de Lhery", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.946328, + 49.082391 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HAUTVILLERS - 43897 - Rue des Côtes de Lhery", + "ref:EU:EVSE": "FRS51E4389", + "ref": "FRS51E4389", + "name": "HAUTVILLERS - 43897 - Rue des Côtes de Lhery", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.637889, + 47.436748 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA MEMBROLLE SUR CHOISILLE 1260 - La Choisille", + "ref:EU:EVSE": "FRS37E126", + "ref": "FRS37E126", + "name": "LA MEMBROLLE SUR CHOISILLE 1260 - La Choisille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894038, + 45.8899 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mionnay Chatanay", + "ref:EU:EVSE": "FRIONE40440", + "ref": "FRIONE40440", + "name": "Mionnay Chatanay", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.701123, + 45.137638 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Périgueux Sud", + "ref:EU:EVSE": "FRIONE4391", + "ref": "FRIONE4391", + "name": "Périgueux Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.012336, + 49.204187 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Champfleury", + "ref:EU:EVSE": "FRIONE43850", + "ref": "FRIONE43850", + "name": "Champfleury", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.256576, + 47.288056 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E LECLERC BORNE 2", + "ref:EU:EVSE": "FRCPIE6731085", + "ref": "FRCPIE6731085", + "name": "E LECLERC BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361102, + 46.688275 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT MONCEAU L MINES", + "ref:EU:EVSE": "FRCPIE6731715", + "ref": "FRCPIE6731715", + "name": "SONEPAR CONNECT MONCEAU L MINES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.481391, + 48.443547 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARTRES - Rue du grand faubourg - 134789", + "ref:EU:EVSE": "FRS28E13478", + "ref": "FRS28E13478", + "name": "CHARTRES - Rue du grand faubourg - 134789", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.041007, + 49.166166 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RILLY LA MONTAGNE", + "ref:EU:EVSE": "FRS51E5014", + "ref": "FRS51E5014", + "name": "RILLY LA MONTAGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.041007, + 49.166166 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RILLY LA MONTAGNE", + "ref:EU:EVSE": "FRS51E5014", + "ref": "FRS51E5014", + "name": "RILLY LA MONTAGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.392673, + 48.220971 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTBOISSIER - Les Rues Neuves - 129294", + "ref:EU:EVSE": "FRS28E12929", + "ref": "FRS28E12929", + "name": "MONTBOISSIER - Les Rues Neuves - 129294", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.882983, + 45.284904 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR AED CROLLES", + "ref:EU:EVSE": "FRCPIE6590225", + "ref": "FRCPIE6590225", + "name": "SONEPAR AED CROLLES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.882983, + 45.284904 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR AED CROLLES", + "ref:EU:EVSE": "FRCPIE6590225", + "ref": "FRCPIE6590225", + "name": "SONEPAR AED CROLLES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88964, + 44.024414 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sorgues", + "ref:EU:EVSE": "FRIONE4234", + "ref": "FRIONE4234", + "name": "Sorgues", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88964, + 44.024414 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sorgues", + "ref:EU:EVSE": "FRIONE42340", + "ref": "FRIONE42340", + "name": "Sorgues", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88964, + 44.024414 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sorgues", + "ref:EU:EVSE": "FRIONE42340", + "ref": "FRIONE42340", + "name": "Sorgues", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88964, + 44.024414 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sorgues", + "ref:EU:EVSE": "FRIONE42340", + "ref": "FRIONE42340", + "name": "Sorgues", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88964, + 44.024414 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sorgues", + "ref:EU:EVSE": "FRIONE42340", + "ref": "FRIONE42340", + "name": "Sorgues", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88964, + 44.024414 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sorgues", + "ref:EU:EVSE": "FRIONE42340", + "ref": "FRIONE42340", + "name": "Sorgues", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88964, + 44.024414 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sorgues", + "ref:EU:EVSE": "FRIONE42340", + "ref": "FRIONE42340", + "name": "Sorgues", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.012336, + 49.204187 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Champfleury", + "ref:EU:EVSE": "FRIONE4385", + "ref": "FRIONE4385", + "name": "Champfleury", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361102, + 46.688275 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT MONCEAU L MINES", + "ref:EU:EVSE": "FRCPIE6731715", + "ref": "FRCPIE6731715", + "name": "SONEPAR CONNECT MONCEAU L MINES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.256576, + 47.288056 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E LECLERC BORNE 2", + "ref:EU:EVSE": "FRCPIE6731085", + "ref": "FRCPIE6731085", + "name": "E LECLERC BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.701123, + 45.137638 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Périgueux Sud", + "ref:EU:EVSE": "FRIONE43910", + "ref": "FRIONE43910", + "name": "Périgueux Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.256576, + 47.288056 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E LECLERC BORNE 2", + "ref:EU:EVSE": "FRCPIE6731795", + "ref": "FRCPIE6731795", + "name": "E LECLERC BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.701123, + 45.137638 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Périgueux Sud", + "ref:EU:EVSE": "FRIONE43910", + "ref": "FRIONE43910", + "name": "Périgueux Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.701123, + 45.137638 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Périgueux Sud", + "ref:EU:EVSE": "FRIONE43910", + "ref": "FRIONE43910", + "name": "Périgueux Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.701123, + 45.137638 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Périgueux Sud", + "ref:EU:EVSE": "FRIONE43910", + "ref": "FRIONE43910", + "name": "Périgueux Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.701123, + 45.137638 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Périgueux Sud", + "ref:EU:EVSE": "FRIONE43910", + "ref": "FRIONE43910", + "name": "Périgueux Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.701123, + 45.137638 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Périgueux Sud", + "ref:EU:EVSE": "FRIONE43910", + "ref": "FRIONE43910", + "name": "Périgueux Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.514877, + 48.987472 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURTISOLS", + "ref:EU:EVSE": "FRS51E5048", + "ref": "FRS51E5048", + "name": "COURTISOLS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.514877, + 48.987472 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURTISOLS", + "ref:EU:EVSE": "FRS51E5048", + "ref": "FRS51E5048", + "name": "COURTISOLS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.420088, + 46.314092 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Boismandé Est", + "ref:EU:EVSE": "FRIONE4024", + "ref": "FRIONE4024", + "name": "Boismandé Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.420088, + 46.314092 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Boismandé Est", + "ref:EU:EVSE": "FRIONE40240", + "ref": "FRIONE40240", + "name": "Boismandé Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.420088, + 46.314092 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Boismandé Est", + "ref:EU:EVSE": "FRIONE40240", + "ref": "FRIONE40240", + "name": "Boismandé Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.420088, + 46.314092 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Boismandé Est", + "ref:EU:EVSE": "FRIONE40240", + "ref": "FRIONE40240", + "name": "Boismandé Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.420088, + 46.314092 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Boismandé Est", + "ref:EU:EVSE": "FRIONE40240", + "ref": "FRIONE40240", + "name": "Boismandé Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.256576, + 47.288056 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E LECLERC BORNE 2", + "ref:EU:EVSE": "FRCPIE6731805", + "ref": "FRCPIE6731805", + "name": "E LECLERC BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.256576, + 47.288056 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E LECLERC BORNE 2", + "ref:EU:EVSE": "FRCPIE6731805", + "ref": "FRCPIE6731805", + "name": "E LECLERC BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.256576, + 47.288056 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E LECLERC BORNE 2", + "ref:EU:EVSE": "FRCPIE6731795", + "ref": "FRCPIE6731795", + "name": "E LECLERC BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.983211, + 43.650765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montpellier Saint-Aunès", + "ref:EU:EVSE": "FRIONE4359", + "ref": "FRIONE4359", + "name": "Montpellier Saint-Aunès", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.983211, + 43.650765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montpellier Saint-Aunès", + "ref:EU:EVSE": "FRIONE43590", + "ref": "FRIONE43590", + "name": "Montpellier Saint-Aunès", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.983211, + 43.650765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montpellier Saint-Aunès", + "ref:EU:EVSE": "FRIONE43590", + "ref": "FRIONE43590", + "name": "Montpellier Saint-Aunès", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912706, + 44.236282 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "S.U VAL DURANCE BORNE 1-2", + "ref:EU:EVSE": "FRCPIE6706085", + "ref": "FRCPIE6706085", + "name": "S.U VAL DURANCE BORNE 1-2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.366838, + 46.701436 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Poitiers Jaunay-Clan", + "ref:EU:EVSE": "FRIONE40940", + "ref": "FRIONE40940", + "name": "Poitiers Jaunay-Clan", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.366838, + 46.701436 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Poitiers Jaunay-Clan", + "ref:EU:EVSE": "FRIONE40940", + "ref": "FRIONE40940", + "name": "Poitiers Jaunay-Clan", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.366838, + 46.701436 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Poitiers Jaunay-Clan", + "ref:EU:EVSE": "FRIONE40940", + "ref": "FRIONE40940", + "name": "Poitiers Jaunay-Clan", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.366838, + 46.701436 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Poitiers Jaunay-Clan", + "ref:EU:EVSE": "FRIONE40940", + "ref": "FRIONE40940", + "name": "Poitiers Jaunay-Clan", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.366838, + 46.701436 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Poitiers Jaunay-Clan", + "ref:EU:EVSE": "FRIONE4094", + "ref": "FRIONE4094", + "name": "Poitiers Jaunay-Clan", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912706, + 44.236282 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "S.U VAL DURANCE BORNE 1-2", + "ref:EU:EVSE": "FRCPIE6706075", + "ref": "FRCPIE6706075", + "name": "S.U VAL DURANCE BORNE 1-2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912706, + 44.236282 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "S.U VAL DURANCE BORNE 1-2", + "ref:EU:EVSE": "FRCPIE6706075", + "ref": "FRCPIE6706075", + "name": "S.U VAL DURANCE BORNE 1-2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912706, + 44.236282 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "S.U VAL DURANCE BORNE 1-2", + "ref:EU:EVSE": "FRCPIE6706085", + "ref": "FRCPIE6706085", + "name": "S.U VAL DURANCE BORNE 1-2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.983211, + 43.650765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montpellier Saint-Aunès", + "ref:EU:EVSE": "FRIONE43590", + "ref": "FRIONE43590", + "name": "Montpellier Saint-Aunès", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912706, + 44.236282 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "S.U VAL DURANCE BORNE 1-2", + "ref:EU:EVSE": "FRCPIE6706125", + "ref": "FRCPIE6706125", + "name": "S.U VAL DURANCE BORNE 1-2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912706, + 44.236282 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "S.U VAL DURANCE BORNE 1-2", + "ref:EU:EVSE": "FRCPIE6706125", + "ref": "FRCPIE6706125", + "name": "S.U VAL DURANCE BORNE 1-2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65083, + 47.45830163 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VALLY SUR SAULDRE-Mairie-150315", + "ref:EU:EVSE": "FRS18E15031", + "ref": "FRS18E15031", + "name": "VALLY SUR SAULDRE-Mairie-150315", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65083, + 47.45830163 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VALLY SUR SAULDRE-Mairie-150315", + "ref:EU:EVSE": "FRS18E15031", + "ref": "FRS18E15031", + "name": "VALLY SUR SAULDRE-Mairie-150315", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37077109, + 46.8011169 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VALLENAY - Place Bascoulard - 117415", + "ref:EU:EVSE": "FRS18E11741", + "ref": "FRS18E11741", + "name": "VALLENAY - Place Bascoulard - 117415", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37077109, + 46.8011169 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VALLENAY - Place Bascoulard - 117415", + "ref:EU:EVSE": "FRS18E11741", + "ref": "FRS18E11741", + "name": "VALLENAY - Place Bascoulard - 117415", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.75716, + 47.257608 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEAUGUES - Eglise - 200482", + "ref:EU:EVSE": "FRS18E20048", + "ref": "FRS18E20048", + "name": "VEAUGUES - Eglise - 200482", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.539255, + 46.829121 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CHATELLERAULT", + "ref:EU:EVSE": "FRCPIE6737895", + "ref": "FRCPIE6737895", + "name": "SONEPAR CONNECT CHATELLERAULT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.539255, + 46.829121 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT CHATELLERAULT", + "ref:EU:EVSE": "FRCPIE6737895", + "ref": "FRCPIE6737895", + "name": "SONEPAR CONNECT CHATELLERAULT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3580831, + 47.01014909 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TROUY - Place du Marché - 188401", + "ref:EU:EVSE": "FRS18E18840", + "ref": "FRS18E18840", + "name": "TROUY - Place du Marché - 188401", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3580831, + 47.01014909 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TROUY - Place du Marché - 188401", + "ref:EU:EVSE": "FRS18E18840", + "ref": "FRS18E18840", + "name": "TROUY - Place du Marché - 188401", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 45", + "ref:EU:EVSE": "FRCPIE6736495", + "ref": "FRCPIE6736495", + "name": "RAW PARISGIVERNY 45", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 45", + "ref:EU:EVSE": "FRCPIE6736495", + "ref": "FRCPIE6736495", + "name": "RAW PARISGIVERNY 45", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 45", + "ref:EU:EVSE": "FRCPIE6736735", + "ref": "FRCPIE6736735", + "name": "RAW PARISGIVERNY 45", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 45", + "ref:EU:EVSE": "FRCPIE6736735", + "ref": "FRCPIE6736735", + "name": "RAW PARISGIVERNY 45", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 45", + "ref:EU:EVSE": "FRCPIE6736745", + "ref": "FRCPIE6736745", + "name": "RAW PARISGIVERNY 45", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 45", + "ref:EU:EVSE": "FRCPIE6736745", + "ref": "FRCPIE6736745", + "name": "RAW PARISGIVERNY 45", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 45", + "ref:EU:EVSE": "FRCPIE6736755", + "ref": "FRCPIE6736755", + "name": "RAW PARISGIVERNY 45", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 45", + "ref:EU:EVSE": "FRCPIE6736755", + "ref": "FRCPIE6736755", + "name": "RAW PARISGIVERNY 45", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 45", + "ref:EU:EVSE": "FRCPIE6736825", + "ref": "FRCPIE6736825", + "name": "RAW PARISGIVERNY 45", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 45", + "ref:EU:EVSE": "FRCPIE6736825", + "ref": "FRCPIE6736825", + "name": "RAW PARISGIVERNY 45", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.83647572, + 47.33148416 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SANCERRE - Rempart des Abreuvoirs - 151321", + "ref:EU:EVSE": "FRS18E15132", + "ref": "FRS18E15132", + "name": "SANCERRE - Rempart des Abreuvoirs - 151321", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.83647572, + 47.33148416 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SANCERRE - Rempart des Abreuvoirs - 151321", + "ref:EU:EVSE": "FRS18E15132", + "ref": "FRS18E15132", + "name": "SANCERRE - Rempart des Abreuvoirs - 151321", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.92143963, + 46.82955189 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SANCOINS - Place du champ de Foire - 117712", + "ref:EU:EVSE": "FRS18E11771", + "ref": "FRS18E11771", + "name": "SANCOINS - Place du champ de Foire - 117712", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.92143963, + 46.82955189 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SANCOINS - Place du champ de Foire - 117712", + "ref:EU:EVSE": "FRS18E11771", + "ref": "FRS18E11771", + "name": "SANCOINS - Place du champ de Foire - 117712", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.57491568, + 48.1923956 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SANCHEVILLE - Place du Pâtis - 134359", + "ref:EU:EVSE": "FRS28E13435", + "ref": "FRS28E13435", + "name": "SANCHEVILLE - Place du Pâtis - 134359", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.75716, + 47.257608 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEAUGUES - Eglise - 200482", + "ref:EU:EVSE": "FRS18E20048", + "ref": "FRS18E20048", + "name": "VEAUGUES - Eglise - 200482", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 31", + "ref:EU:EVSE": "FRCPIE6726695", + "ref": "FRCPIE6726695", + "name": "RAW PARISGIVERNY 31", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 31", + "ref:EU:EVSE": "FRCPIE6726695", + "ref": "FRCPIE6726695", + "name": "RAW PARISGIVERNY 31", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.06009837, + 47.22609066 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIERZON - Gare - 148664", + "ref:EU:EVSE": "FRS18E14866", + "ref": "FRS18E14866", + "name": "VIERZON - Gare - 148664", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.238614, + 49.309771 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LE HAUT DICK BORNE 1", + "ref:EU:EVSE": "FRCPIE6611305", + "ref": "FRCPIE6611305", + "name": "LE HAUT DICK BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.238614, + 49.309771 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LE HAUT DICK BORNE 1", + "ref:EU:EVSE": "FRCPIE6611305", + "ref": "FRCPIE6611305", + "name": "LE HAUT DICK BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.691969, + 46.407926 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LUMELEC MAZEROLLES", + "ref:EU:EVSE": "FRCPIE6603165", + "ref": "FRCPIE6603165", + "name": "LUMELEC MAZEROLLES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.691969, + 46.407926 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LUMELEC MAZEROLLES", + "ref:EU:EVSE": "FRCPIE6603165", + "ref": "FRCPIE6603165", + "name": "LUMELEC MAZEROLLES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.462877, + 47.261805 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AZAY LE RIDEAU 1202", + "ref:EU:EVSE": "FRS37E120", + "ref": "FRS37E120", + "name": "AZAY LE RIDEAU 1202", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.462877, + 47.261805 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AZAY LE RIDEAU 1202", + "ref:EU:EVSE": "FRS37E120", + "ref": "FRS37E120", + "name": "AZAY LE RIDEAU 1202", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.285056, + 48.20839 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DANGEAU - Rue de Brou - 129205", + "ref:EU:EVSE": "FRS28E12920", + "ref": "FRS28E12920", + "name": "DANGEAU - Rue de Brou - 129205", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.469628, + 43.446167 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MAISON DES VINS RH CH STATION 2", + "ref:EU:EVSE": "FRCPIE6685345", + "ref": "FRCPIE6685345", + "name": "MAISON DES VINS RH CH STATION 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.469628, + 43.446167 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MAISON DES VINS RH CH STATION 2", + "ref:EU:EVSE": "FRCPIE6685345", + "ref": "FRCPIE6685345", + "name": "MAISON DES VINS RH CH STATION 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.469628, + 43.446167 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MAISON DES VINS RH CH STATION 2", + "ref:EU:EVSE": "FRCPIE6685355", + "ref": "FRCPIE6685355", + "name": "MAISON DES VINS RH CH STATION 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.469628, + 43.446167 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MAISON DES VINS RH CH STATION 2", + "ref:EU:EVSE": "FRCPIE6685355", + "ref": "FRCPIE6685355", + "name": "MAISON DES VINS RH CH STATION 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.096281, + 46.053918 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Roanne", + "ref:EU:EVSE": "FRIENE004001", + "ref": "FRIENE004001", + "name": "Roanne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.096281, + 46.053918 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Roanne", + "ref:EU:EVSE": "FRIENE004001", + "ref": "FRIENE004001", + "name": "Roanne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.096281, + 46.053918 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Roanne", + "ref:EU:EVSE": "FRIENE004002", + "ref": "FRIENE004002", + "name": "Roanne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.096281, + 46.053918 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Roanne", + "ref:EU:EVSE": "FRIENE004002", + "ref": "FRIENE004002", + "name": "Roanne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.06009837, + 47.22609066 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIERZON - Gare - 148664", + "ref:EU:EVSE": "FRS18E14866", + "ref": "FRS18E14866", + "name": "VIERZON - Gare - 148664", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.09868, + 47.21801 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIERZON - Rue Eugène Pottier - 112365", + "ref:EU:EVSE": "FRS18E11236", + "ref": "FRS18E11236", + "name": "VIERZON - Rue Eugène Pottier - 112365", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 31", + "ref:EU:EVSE": "FRCPIE6736275", + "ref": "FRCPIE6736275", + "name": "RAW PARISGIVERNY 31", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.09868, + 47.21801 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIERZON - Rue Eugène Pottier - 112365", + "ref:EU:EVSE": "FRS18E11236", + "ref": "FRS18E11236", + "name": "VIERZON - Rue Eugène Pottier - 112365", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 31", + "ref:EU:EVSE": "FRCPIE6736275", + "ref": "FRCPIE6736275", + "name": "RAW PARISGIVERNY 31", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 31", + "ref:EU:EVSE": "FRCPIE6736845", + "ref": "FRCPIE6736845", + "name": "RAW PARISGIVERNY 31", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 31", + "ref:EU:EVSE": "FRCPIE6736845", + "ref": "FRCPIE6736845", + "name": "RAW PARISGIVERNY 31", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 31", + "ref:EU:EVSE": "FRCPIE6736885", + "ref": "FRCPIE6736885", + "name": "RAW PARISGIVERNY 31", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 31", + "ref:EU:EVSE": "FRCPIE6736885", + "ref": "FRCPIE6736885", + "name": "RAW PARISGIVERNY 31", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 31", + "ref:EU:EVSE": "FRCPIE6736935", + "ref": "FRCPIE6736935", + "name": "RAW PARISGIVERNY 31", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 31", + "ref:EU:EVSE": "FRCPIE6736935", + "ref": "FRCPIE6736935", + "name": "RAW PARISGIVERNY 31", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 31", + "ref:EU:EVSE": "FRCPIE6736945", + "ref": "FRCPIE6736945", + "name": "RAW PARISGIVERNY 31", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 31", + "ref:EU:EVSE": "FRCPIE6736945", + "ref": "FRCPIE6736945", + "name": "RAW PARISGIVERNY 31", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 31", + "ref:EU:EVSE": "FRCPIE6737065", + "ref": "FRCPIE6737065", + "name": "RAW PARISGIVERNY 31", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 31", + "ref:EU:EVSE": "FRCPIE6737065", + "ref": "FRCPIE6737065", + "name": "RAW PARISGIVERNY 31", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 31", + "ref:EU:EVSE": "FRCPIE6737175", + "ref": "FRCPIE6737175", + "name": "RAW PARISGIVERNY 31", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 31", + "ref:EU:EVSE": "FRCPIE6737175", + "ref": "FRCPIE6737175", + "name": "RAW PARISGIVERNY 31", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0649617, + 47.22265878 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIERZON - Parking Gaucherie - 109669", + "ref:EU:EVSE": "FRS18E10966", + "ref": "FRS18E10966", + "name": "VIERZON - Parking Gaucherie - 109669", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0649617, + 47.22265878 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIERZON - Parking Gaucherie - 109669", + "ref:EU:EVSE": "FRS18E10967", + "ref": "FRS18E10967", + "name": "VIERZON - Parking Gaucherie - 109669", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 45", + "ref:EU:EVSE": "FRCPIE6736255", + "ref": "FRCPIE6736255", + "name": "RAW PARISGIVERNY 45", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 45", + "ref:EU:EVSE": "FRCPIE6736255", + "ref": "FRCPIE6736255", + "name": "RAW PARISGIVERNY 45", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 45", + "ref:EU:EVSE": "FRCPIE6726685", + "ref": "FRCPIE6726685", + "name": "RAW PARISGIVERNY 45", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461195, + 48.967538 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 16", + "ref:EU:EVSE": "FRCPIE6609935", + "ref": "FRCPIE6609935", + "name": "MANUTAN 16", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05005, + 47.16264 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MEREAU - Place de la Mairie - 112328", + "ref:EU:EVSE": "FRS18E20136", + "ref": "FRS18E20136", + "name": "MEREAU - Place de la Mairie - 112328", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05005, + 47.16264 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MEREAU - Place de la Mairie - 112328", + "ref:EU:EVSE": "FRS18E20136", + "ref": "FRS18E20136", + "name": "MEREAU - Place de la Mairie - 112328", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19572406, + 47.35043589 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NANCAY - Mairie - 109617", + "ref:EU:EVSE": "FRS18E10961", + "ref": "FRS18E10961", + "name": "NANCAY - Mairie - 109617", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19572406, + 47.35043589 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NANCAY - Mairie - 109617", + "ref:EU:EVSE": "FRS18E10961", + "ref": "FRS18E10961", + "name": "NANCAY - Mairie - 109617", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51529213, + 48.45013673 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARTRES - Avenue Des Sablons - 129928", + "ref:EU:EVSE": "FRS28E12992", + "ref": "FRS28E12992", + "name": "CHARTRES - Avenue Des Sablons - 129928", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25506, + 47.31485 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUVY S/ BARANGEON - Mairie - 109655", + "ref:EU:EVSE": "FRS18E10965", + "ref": "FRS18E10965", + "name": "NEUVY S/ BARANGEON - Mairie - 109655", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25506, + 47.31485 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUVY S/ BARANGEON - Mairie - 109655", + "ref:EU:EVSE": "FRS18E10965", + "ref": "FRS18E10965", + "name": "NEUVY S/ BARANGEON - Mairie - 109655", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.042746, + 47.892491 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U LA SUZE BORNE 2", + "ref:EU:EVSE": "FRCPIE6553745", + "ref": "FRCPIE6553745", + "name": "SUPER U LA SUZE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.042746, + 47.892491 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U LA SUZE BORNE 2", + "ref:EU:EVSE": "FRCPIE6553745", + "ref": "FRCPIE6553745", + "name": "SUPER U LA SUZE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.042746, + 47.892491 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U LA SUZE BORNE 2", + "ref:EU:EVSE": "FRCPIE6618015", + "ref": "FRCPIE6618015", + "name": "SUPER U LA SUZE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.042746, + 47.892491 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U LA SUZE BORNE 2", + "ref:EU:EVSE": "FRCPIE6618015", + "ref": "FRCPIE6618015", + "name": "SUPER U LA SUZE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99526099, + 48.468156 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vaupillon", + "ref:EU:EVSE": "FRIENE002501", + "ref": "FRIENE002501", + "name": "Vaupillon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99526099, + 48.468156 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vaupillon", + "ref:EU:EVSE": "FRIENE002501", + "ref": "FRIENE002501", + "name": "Vaupillon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99526099, + 48.468156 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vaupillon", + "ref:EU:EVSE": "FRIENE002502", + "ref": "FRIENE002502", + "name": "Vaupillon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99526099, + 48.468156 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vaupillon", + "ref:EU:EVSE": "FRIENE002502", + "ref": "FRIENE002502", + "name": "Vaupillon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461195, + 48.967538 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 16", + "ref:EU:EVSE": "FRCPIE6609935", + "ref": "FRCPIE6609935", + "name": "MANUTAN 16", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461195, + 48.967538 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 16", + "ref:EU:EVSE": "FRCPIE6609545", + "ref": "FRCPIE6609545", + "name": "MANUTAN 16", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.522627, + 46.775898 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jura", + "ref:EU:EVSE": "FRIONE40830", + "ref": "FRIONE40830", + "name": "Jura", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461195, + 48.967538 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "MANUTAN 16", + "ref:EU:EVSE": "FRCPIE6609545", + "ref": "FRCPIE6609545", + "name": "MANUTAN 16", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5261468, + 47.30317135 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HENRICHEMONT - Eglise - 113070", + "ref:EU:EVSE": "FRS18E11307", + "ref": "FRS18E11307", + "name": "HENRICHEMONT - Eglise - 113070", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265967, + 47.00417 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St FLORENT SUR CHER - La Vigonnière - 179307", + "ref:EU:EVSE": "FRS18E17930", + "ref": "FRS18E17930", + "name": "St FLORENT SUR CHER - La Vigonnière - 179307", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265967, + 47.00417 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St FLORENT SUR CHER - La Vigonnière - 179307", + "ref:EU:EVSE": "FRS18E17930", + "ref": "FRS18E17930", + "name": "St FLORENT SUR CHER - La Vigonnière - 179307", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40725547, + 46.92545849 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LEVET - Mairie - 150932", + "ref:EU:EVSE": "FRS18E15093", + "ref": "FRS18E15093", + "name": "LEVET - Mairie - 150932", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40725547, + 46.92545849 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LEVET - Mairie - 150932", + "ref:EU:EVSE": "FRS18E15093", + "ref": "FRS18E15093", + "name": "LEVET - Mairie - 150932", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.729634, + 47.111991 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOSSEE - 117836 - PLACE DE LA MAIRIE", + "ref:EU:EVSE": "FRS37E11782", + "ref": "FRS37E11782", + "name": "BOSSEE - 117836 - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.729634, + 47.111991 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOSSEE - 117836 - PLACE DE LA MAIRIE", + "ref:EU:EVSE": "FRS37E11783", + "ref": "FRS37E11783", + "name": "BOSSEE - 117836 - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30708873, + 47.52983244 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAILLES 2956 - Rue des Cormiers", + "ref:EU:EVSE": "FRS41E295", + "ref": "FRS41E295", + "name": "CHAILLES 2956 - Rue des Cormiers", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30708873, + 47.52983244 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAILLES 2956 - Rue des Cormiers", + "ref:EU:EVSE": "FRS41E295", + "ref": "FRS41E295", + "name": "CHAILLES 2956 - Rue des Cormiers", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28396022, + 47.10178143 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARMAGNE - Place de la mairie - 109050", + "ref:EU:EVSE": "FRS18E10905", + "ref": "FRS18E10905", + "name": "MARMAGNE - Place de la mairie - 109050", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28396022, + 47.10178143 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARMAGNE - Place de la mairie - 109050", + "ref:EU:EVSE": "FRS18E10905", + "ref": "FRS18E10905", + "name": "MARMAGNE - Place de la mairie - 109050", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99115189, + 48.31185045 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THIRON-GARDAIS - Place du Marché - 130987", + "ref:EU:EVSE": "FRS28E13098", + "ref": "FRS28E13098", + "name": "THIRON-GARDAIS - Place du Marché - 130987", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49023, + 47.23177 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MENETOU-SALON - Place de la Mairie - 205372", + "ref:EU:EVSE": "FRS18E20537", + "ref": "FRS18E20537", + "name": "MENETOU-SALON - Place de la Mairie - 205372", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307908, + 47.447922 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MÉNÉTRÉOL-SUR-SAULDRE - Place de l'Eglise - 147512", + "ref:EU:EVSE": "FRS18E14751", + "ref": "FRS18E14751", + "name": "MÉNÉTRÉOL-SUR-SAULDRE - Place de l'Eglise - 147512", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307908, + 47.447922 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MÉNÉTRÉOL-SUR-SAULDRE - Place de l'Eglise - 147512", + "ref:EU:EVSE": "FRS18E14751", + "ref": "FRS18E14751", + "name": "MÉNÉTRÉOL-SUR-SAULDRE - Place de l'Eglise - 147512", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.522627, + 46.775898 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jura", + "ref:EU:EVSE": "FRIONE40830", + "ref": "FRIONE40830", + "name": "Jura", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.522627, + 46.775898 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jura", + "ref:EU:EVSE": "FRIONE40830", + "ref": "FRIONE40830", + "name": "Jura", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 45", + "ref:EU:EVSE": "FRCPIE6726685", + "ref": "FRCPIE6726685", + "name": "RAW PARISGIVERNY 45", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.460635, + 46.812997 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "UZAY-LE-VENON - Eglise - 212026", + "ref:EU:EVSE": "FRS18E21202", + "ref": "FRS18E21202", + "name": "UZAY-LE-VENON - Eglise - 212026", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292711, + 47.010678 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE SUBDRAY - Salle des Fêtes - 212076", + "ref:EU:EVSE": "FRS18E21207", + "ref": "FRS18E21207", + "name": "LE SUBDRAY - Salle des Fêtes - 212076", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.115551, + 47.746526 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED EPC SOLUTIONS", + "ref:EU:EVSE": "FRCPIE6652065", + "ref": "FRCPIE6652065", + "name": "CGED EPC SOLUTIONS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.115551, + 47.746526 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED EPC SOLUTIONS", + "ref:EU:EVSE": "FRCPIE6652065", + "ref": "FRCPIE6652065", + "name": "CGED EPC SOLUTIONS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17964854, + 48.21525836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BROU - route de Chartres (intermarché) - 134902", + "ref:EU:EVSE": "FRS28E13490", + "ref": "FRS28E13490", + "name": "BROU - route de Chartres (intermarché) - 134902", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.88865, + 47.04476 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St Hilaire de Gondilly - Le Golf - 126241", + "ref:EU:EVSE": "FRS18E12624", + "ref": "FRS18E12624", + "name": "St Hilaire de Gondilly - Le Golf - 126241", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.88865, + 47.04476 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St Hilaire de Gondilly - Le Golf - 126241", + "ref:EU:EVSE": "FRS18E12624", + "ref": "FRS18E12624", + "name": "St Hilaire de Gondilly - Le Golf - 126241", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.660559, + 47.926333 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RUPT SUR MOSELLE - Rue Louis Courroy - 145479-CCS", + "ref:EU:EVSE": "FRS88E14547", + "ref": "FRS88E14547", + "name": "RUPT SUR MOSELLE - Rue Louis Courroy - 145479-CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-20", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.660559, + 47.926333 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RUPT SUR MOSELLE - Rue Louis Courroy - 145479-CCS", + "ref:EU:EVSE": "FRS88E14548", + "ref": "FRS88E14548", + "name": "RUPT SUR MOSELLE - Rue Louis Courroy - 145479-CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-20", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51002394, + 46.99228393 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT-JUST - Mairie - 150513", + "ref:EU:EVSE": "FRS18E15051", + "ref": "FRS18E15051", + "name": "SAINT-JUST - Mairie - 150513", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51002394, + 46.99228393 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT-JUST - Mairie - 150513", + "ref:EU:EVSE": "FRS18E15051", + "ref": "FRS18E15051", + "name": "SAINT-JUST - Mairie - 150513", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.818616, + 47.854989 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST MAURICE - Rue de Lorraine - 145495 - CCS", + "ref:EU:EVSE": "FRS88E14549", + "ref": "FRS88E14549", + "name": "ST MAURICE - Rue de Lorraine - 145495 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-20", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.818616, + 47.854989 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST MAURICE - Rue de Lorraine - 145495 - CCS", + "ref:EU:EVSE": "FRS88E14549", + "ref": "FRS88E14549", + "name": "ST MAURICE - Rue de Lorraine - 145495 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-20", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.77138871, + 48.35464382 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "OUARVILLE - Rue de le République - 129076", + "ref:EU:EVSE": "FRS28E12907", + "ref": "FRS28E12907", + "name": "OUARVILLE - Rue de le République - 129076", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 45", + "ref:EU:EVSE": "FRCPIE6726675", + "ref": "FRCPIE6726675", + "name": "RAW PARISGIVERNY 45", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 45", + "ref:EU:EVSE": "FRCPIE6726675", + "ref": "FRCPIE6726675", + "name": "RAW PARISGIVERNY 45", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292711, + 47.010678 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE SUBDRAY - Salle des Fêtes - 212076", + "ref:EU:EVSE": "FRS18E21207", + "ref": "FRS18E21207", + "name": "LE SUBDRAY - Salle des Fêtes - 212076", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.460635, + 46.812997 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "UZAY-LE-VENON - Eglise - 212026", + "ref:EU:EVSE": "FRS18E21202", + "ref": "FRS18E21202", + "name": "UZAY-LE-VENON - Eglise - 212026", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.522627, + 46.775898 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jura", + "ref:EU:EVSE": "FRIONE40830", + "ref": "FRIONE40830", + "name": "Jura", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.61345925, + 47.18535428 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RIANS - Place de l'Eglise - 205324", + "ref:EU:EVSE": "FRS18E20532", + "ref": "FRS18E20532", + "name": "RIANS - Place de l'Eglise - 205324", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.522627, + 46.775898 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jura", + "ref:EU:EVSE": "FRIONE40830", + "ref": "FRIONE40830", + "name": "Jura", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.522627, + 46.775898 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jura", + "ref:EU:EVSE": "FRIONE40830", + "ref": "FRIONE40830", + "name": "Jura", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.522627, + 46.775898 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jura", + "ref:EU:EVSE": "FRIONE4083", + "ref": "FRIONE4083", + "name": "Jura", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.987481, + 47.045568 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JOUET-sur-L'Aubois - Mairie - 205672", + "ref:EU:EVSE": "FRS18E20567", + "ref": "FRS18E20567", + "name": "JOUET-sur-L'Aubois - Mairie - 205672", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.987481, + 47.045568 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JOUET-sur-L'Aubois - Mairie - 205672", + "ref:EU:EVSE": "FRS18E20567", + "ref": "FRS18E20567", + "name": "JOUET-sur-L'Aubois - Mairie - 205672", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67909863, + 48.60777195 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPERNON - Rue Nouvelle du Sycomore - 130887", + "ref:EU:EVSE": "FRS28E13088", + "ref": "FRS28E13088", + "name": "EPERNON - Rue Nouvelle du Sycomore - 130887", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.68531, + 46.96955 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RAYMOND -Le Far West -117401", + "ref:EU:EVSE": "FRS18E11740", + "ref": "FRS18E11740", + "name": "RAYMOND -Le Far West -117401", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.68531, + 46.96955 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RAYMOND -Le Far West -117401", + "ref:EU:EVSE": "FRS18E11740", + "ref": "FRS18E11740", + "name": "RAYMOND -Le Far West -117401", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.584799, + 43.418629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lacq Audéjos Nord", + "ref:EU:EVSE": "FRIONE40270", + "ref": "FRIONE40270", + "name": "Lacq Audéjos Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.584799, + 43.418629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lacq Audéjos Nord", + "ref:EU:EVSE": "FRIONE40270", + "ref": "FRIONE40270", + "name": "Lacq Audéjos Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.584799, + 43.418629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lacq Audéjos Nord", + "ref:EU:EVSE": "FRIONE40270", + "ref": "FRIONE40270", + "name": "Lacq Audéjos Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.584799, + 43.418629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lacq Audéjos Nord", + "ref:EU:EVSE": "FRIONE40270", + "ref": "FRIONE40270", + "name": "Lacq Audéjos Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.584799, + 43.418629 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lacq Audéjos Nord", + "ref:EU:EVSE": "FRIONE4027", + "ref": "FRIONE4027", + "name": "Lacq Audéjos Nord", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.289339, + 48.06675 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT DENIS LANNERAY - Rue Jean Moulin - 134842", + "ref:EU:EVSE": "FRS28E13484", + "ref": "FRS28E13484", + "name": "SAINT DENIS LANNERAY - Rue Jean Moulin - 134842", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.61345925, + 47.18535428 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RIANS - Place de l'Eglise - 205324", + "ref:EU:EVSE": "FRS18E20532", + "ref": "FRS18E20532", + "name": "RIANS - Place de l'Eglise - 205324", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0966466, + 49.4928271 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "ABB Office du tourisme", + "ref:EU:EVSE": "FRSHEE21", + "ref": "FRSHEE21", + "name": "ABB Office du tourisme", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0966466, + 49.4928271 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "ABB Office du tourisme", + "ref:EU:EVSE": "FRSHEE21", + "ref": "FRSHEE21", + "name": "ABB Office du tourisme", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0966466, + 49.4928271 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "ABB Office du tourisme", + "ref:EU:EVSE": "FRSHEE24", + "ref": "FRSHEE24", + "name": "ABB Office du tourisme", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.46809232, + 48.97577513 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "L'Epine - 40008 - Rue des Moissons", + "ref:EU:EVSE": "FRS51E4000", + "ref": "FRS51E4000", + "name": "L'Epine - 40008 - Rue des Moissons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.473152, + 43.448813 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE HU LOCATION U", + "ref:EU:EVSE": "FRCPIE6557345", + "ref": "FRCPIE6557345", + "name": "BORNE HU LOCATION U", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.473152, + 43.448813 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE HU LOCATION U", + "ref:EU:EVSE": "FRCPIE6557345", + "ref": "FRCPIE6557345", + "name": "BORNE HU LOCATION U", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.19429, + 48.70356 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT MAX - Parking Champlain - 203728", + "ref:EU:EVSE": "FRN54E20372", + "ref": "FRN54E20372", + "name": "SAINT MAX - Parking Champlain - 203728", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.19429, + 48.70356 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT MAX - Parking Champlain - 203728", + "ref:EU:EVSE": "FRN54E20372", + "ref": "FRN54E20372", + "name": "SAINT MAX - Parking Champlain - 203728", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.189542, + 48.208833 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "YEVRES - Rue du pont - 134257", + "ref:EU:EVSE": "FRS28E13425", + "ref": "FRS28E13425", + "name": "YEVRES - Rue du pont - 134257", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.666942, + 47.390752 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA RICHE 1257", + "ref:EU:EVSE": "FRS37E125", + "ref": "FRS37E125", + "name": "LA RICHE 1257", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.666942, + 47.390752 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA RICHE 1257", + "ref:EU:EVSE": "FRS37E135", + "ref": "FRS37E135", + "name": "LA RICHE 1257", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7177, + 47.2896 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTBAZON 19674 - Route Nationale", + "ref:EU:EVSE": "FRS37E1967", + "ref": "FRS37E1967", + "name": "MONTBAZON 19674 - Route Nationale", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7177, + 47.2896 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTBAZON 19674 - Route Nationale", + "ref:EU:EVSE": "FRS37E1967", + "ref": "FRS37E1967", + "name": "MONTBAZON 19674 - Route Nationale", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3399, + 46.957 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FAYE LA VINEUSE 19690 - Place de la Huchette", + "ref:EU:EVSE": "FRS37E1969", + "ref": "FRS37E1969", + "name": "FAYE LA VINEUSE 19690 - Place de la Huchette", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3399, + 46.957 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FAYE LA VINEUSE 19690 - Place de la Huchette", + "ref:EU:EVSE": "FRS37E1969", + "ref": "FRS37E1969", + "name": "FAYE LA VINEUSE 19690 - Place de la Huchette", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45919, + 47.123171 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CROUZILLES - 56267 - Parking Ronsard", + "ref:EU:EVSE": "FRS37E5626", + "ref": "FRS37E5626", + "name": "CROUZILLES - 56267 - Parking Ronsard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-25", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45919, + 47.123171 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CROUZILLES - 56267 - Parking Ronsard", + "ref:EU:EVSE": "FRS37E5626", + "ref": "FRS37E5626", + "name": "CROUZILLES - 56267 - Parking Ronsard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-25", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.20983, + 48.6947 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NANCY - Parking PZ stade marcel picot - 187497", + "ref:EU:EVSE": "FRN54E18749", + "ref": "FRN54E18749", + "name": "NANCY - Parking PZ stade marcel picot - 187497", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.20983, + 48.6947 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NANCY - Parking PZ stade marcel picot - 187497", + "ref:EU:EVSE": "FRN54E18749", + "ref": "FRN54E18749", + "name": "NANCY - Parking PZ stade marcel picot - 187497", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.46809232, + 48.97577513 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "L'Epine - 40008 - Rue des Moissons", + "ref:EU:EVSE": "FRS51E4000", + "ref": "FRS51E4000", + "name": "L'Epine - 40008 - Rue des Moissons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.531267, + 49.130925 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SUIPPES - 39992 - Place de l'Hotel de Ville", + "ref:EU:EVSE": "FRS51E3999", + "ref": "FRS51E3999", + "name": "SUIPPES - 39992 - Place de l'Hotel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.411334, + 50.125142 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CAUDRY MUSEE", + "ref:EU:EVSE": "FRCPIE6698905", + "ref": "FRCPIE6698905", + "name": "CAUDRY MUSEE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.531267, + 49.130925 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SUIPPES - 39992 - Place de l'Hotel de Ville", + "ref:EU:EVSE": "FRS51E3999", + "ref": "FRS51E3999", + "name": "SUIPPES - 39992 - Place de l'Hotel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.944969, + 48.202498 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VITTEL - Rue Robert de Flers - 145771 - CCS", + "ref:EU:EVSE": "FRS88E14577", + "ref": "FRS88E14577", + "name": "VITTEL - Rue Robert de Flers - 145771 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-20", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.944969, + 48.202498 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VITTEL - Rue Robert de Flers - 145771 - CCS", + "ref:EU:EVSE": "FRS88E14577", + "ref": "FRS88E14577", + "name": "VITTEL - Rue Robert de Flers - 145771 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-20", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.470224, + 48.040627 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEMAURY - Rue de Murgers - 134810", + "ref:EU:EVSE": "FRS28E13481", + "ref": "FRS28E13481", + "name": "VILLEMAURY - Rue de Murgers - 134810", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.496372, + 47.249526 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MEUSNES-121603-Rue Paul Couton", + "ref:EU:EVSE": "FRS41E12160", + "ref": "FRS41E12160", + "name": "MEUSNES-121603-Rue Paul Couton", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.496372, + 47.249526 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MEUSNES-121603-Rue Paul Couton", + "ref:EU:EVSE": "FRS41E12160", + "ref": "FRS41E12160", + "name": "MEUSNES-121603-Rue Paul Couton", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.92882606, + 48.42602984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Jonchets - La Grande Paroisse", + "ref:EU:EVSE": "FRFASE330210", + "ref": "FRFASE330210", + "name": "Aire de Jonchets - La Grande Paroisse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.92882606, + 48.42602984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Jonchets - La Grande Paroisse", + "ref:EU:EVSE": "FRFASE330210", + "ref": "FRFASE330210", + "name": "Aire de Jonchets - La Grande Paroisse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.92882606, + 48.42602984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Jonchets - La Grande Paroisse", + "ref:EU:EVSE": "FRFASE330210", + "ref": "FRFASE330210", + "name": "Aire de Jonchets - La Grande Paroisse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.92882606, + 48.42602984 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Jonchets - La Grande Paroisse", + "ref:EU:EVSE": "FRFASE330210", + "ref": "FRFASE330210", + "name": "Aire de Jonchets - La Grande Paroisse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.328899, + 47.553475 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Couesmes", + "ref:EU:EVSE": "FRIENE005701", + "ref": "FRIENE005701", + "name": "Couesmes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.328899, + 47.553475 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Couesmes", + "ref:EU:EVSE": "FRIENE005701", + "ref": "FRIENE005701", + "name": "Couesmes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.328899, + 47.553475 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Couesmes", + "ref:EU:EVSE": "FRIENE005702", + "ref": "FRIENE005702", + "name": "Couesmes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.328899, + 47.553475 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Couesmes", + "ref:EU:EVSE": "FRIENE005702", + "ref": "FRIENE005702", + "name": "Couesmes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.485743, + 50.352127 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "TINCQUES BORNE 1 DC", + "ref:EU:EVSE": "FRCPIE6690055", + "ref": "FRCPIE6690055", + "name": "TINCQUES BORNE 1 DC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.485743, + 50.352127 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "TINCQUES BORNE 1 DC", + "ref:EU:EVSE": "FRCPIE6690055", + "ref": "FRCPIE6690055", + "name": "TINCQUES BORNE 1 DC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.411334, + 50.125142 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CAUDRY MUSEE", + "ref:EU:EVSE": "FRCPIE6698905", + "ref": "FRCPIE6698905", + "name": "CAUDRY MUSEE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.674677, + 48.610027 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Epernon - Rue du Général Leclerc", + "ref:EU:EVSE": "FRS28E20380", + "ref": "FRS28E20380", + "name": "Epernon - Rue du Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317688, + 43.202944 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Carcassonne", + "ref:EU:EVSE": "FRIENE007802", + "ref": "FRIENE007802", + "name": "Carcassonne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.160305, + 48.48067742 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PONTGOUIN - Place des halles - 137387", + "ref:EU:EVSE": "FRS28E13738", + "ref": "FRS28E13738", + "name": "PONTGOUIN - Place des halles - 137387", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654346, + 47.354024 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JOUÉ-LES-TOURS 15746 - Hervé Thermique", + "ref:EU:EVSE": "FRS37E1574", + "ref": "FRS37E1574", + "name": "JOUÉ-LES-TOURS 15746 - Hervé Thermique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654346, + 47.354024 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JOUÉ-LES-TOURS 15746 - Hervé Thermique", + "ref:EU:EVSE": "FRS37E1574", + "ref": "FRS37E1574", + "name": "JOUÉ-LES-TOURS 15746 - Hervé Thermique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.848956, + 48.769477 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PARGNY SUR SAULX - 40915 - Place Jean Monet", + "ref:EU:EVSE": "FRS51E4091", + "ref": "FRS51E4091", + "name": "PARGNY SUR SAULX - 40915 - Place Jean Monet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.848956, + 48.769477 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PARGNY SUR SAULX - 40915 - Place Jean Monet", + "ref:EU:EVSE": "FRS51E4091", + "ref": "FRS51E4091", + "name": "PARGNY SUR SAULX - 40915 - Place Jean Monet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.192719, + 47.756018 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SELOMMES 3964 - Rue de la Mairie", + "ref:EU:EVSE": "FRS41E396", + "ref": "FRS41E396", + "name": "SELOMMES 3964 - Rue de la Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.192719, + 47.756018 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SELOMMES 3964 - Rue de la Mairie", + "ref:EU:EVSE": "FRS41E396", + "ref": "FRS41E396", + "name": "SELOMMES 3964 - Rue de la Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.625279, + 48.716747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAROLLES - 40928 - Rue Saint Hubert", + "ref:EU:EVSE": "FRS51E4092", + "ref": "FRS51E4092", + "name": "MAROLLES - 40928 - Rue Saint Hubert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.625279, + 48.716747 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAROLLES - 40928 - Rue Saint Hubert", + "ref:EU:EVSE": "FRS51E4092", + "ref": "FRS51E4092", + "name": "MAROLLES - 40928 - Rue Saint Hubert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.005171, + 48.906003 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLANCS COTEAUX - 40985 - Boulebard Jean Brion", + "ref:EU:EVSE": "FRS51E4098", + "ref": "FRS51E4098", + "name": "BLANCS COTEAUX - 40985 - Boulebard Jean Brion", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.005171, + 48.906003 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLANCS COTEAUX - 40985 - Boulebard Jean Brion", + "ref:EU:EVSE": "FRS51E4098", + "ref": "FRS51E4098", + "name": "BLANCS COTEAUX - 40985 - Boulebard Jean Brion", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.460099, + 47.52712 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SONZAY 1584", + "ref:EU:EVSE": "FRS37E158", + "ref": "FRS37E158", + "name": "SONZAY 1584", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.460099, + 47.52712 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SONZAY 1584", + "ref:EU:EVSE": "FRS37E158", + "ref": "FRS37E158", + "name": "SONZAY 1584", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.264386, + 46.682133 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LUMELEC NEUVILLE", + "ref:EU:EVSE": "FRCPIE6643575", + "ref": "FRCPIE6643575", + "name": "LUMELEC NEUVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.264386, + 46.682133 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LUMELEC NEUVILLE", + "ref:EU:EVSE": "FRCPIE6643575", + "ref": "FRCPIE6643575", + "name": "LUMELEC NEUVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.869877, + 49.340218 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GRANDPRE - Rue de Montlix - 144223", + "ref:EU:EVSE": "FRS08E14422", + "ref": "FRS08E14422", + "name": "GRANDPRE - Rue de Montlix - 144223", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47865754, + 48.88282251 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAUSSEE-D'IVRY - Place de l'Eglise - 139414", + "ref:EU:EVSE": "FRS28E13941", + "ref": "FRS28E13941", + "name": "LA CHAUSSEE-D'IVRY - Place de l'Eglise - 139414", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.912567, + 48.783972 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SERMAIZE LES BAINS - 40907 - Rue de Saint Dizier", + "ref:EU:EVSE": "FRS51E4090", + "ref": "FRS51E4090", + "name": "SERMAIZE LES BAINS - 40907 - Rue de Saint Dizier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.674677, + 48.610027 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Epernon - Rue du Général Leclerc", + "ref:EU:EVSE": "FRS28E20381", + "ref": "FRS28E20381", + "name": "Epernon - Rue du Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.912567, + 48.783972 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SERMAIZE LES BAINS - 40907 - Rue de Saint Dizier", + "ref:EU:EVSE": "FRS51E4090", + "ref": "FRS51E4090", + "name": "SERMAIZE LES BAINS - 40907 - Rue de Saint Dizier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.384208, + 48.953695 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST MEMMIE - 40802 - Rue de Poix", + "ref:EU:EVSE": "FRS51E4080", + "ref": "FRS51E4080", + "name": "ST MEMMIE - 40802 - Rue de Poix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.384208, + 48.953695 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST MEMMIE - 40802 - Rue de Poix", + "ref:EU:EVSE": "FRS51E4080", + "ref": "FRS51E4080", + "name": "ST MEMMIE - 40802 - Rue de Poix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34514679, + 48.97530229 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST MARTIN/PRE - 40811 - Rte Louvois", + "ref:EU:EVSE": "FRS51E4081", + "ref": "FRS51E4081", + "name": "ST MARTIN/PRE - 40811 - Rte Louvois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34514679, + 48.97530229 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST MARTIN/PRE - 40811 - Rte Louvois", + "ref:EU:EVSE": "FRS51E4081", + "ref": "FRS51E4081", + "name": "ST MARTIN/PRE - 40811 - Rte Louvois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.319038, + 48.961659 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST MARTIN/PRE - 40811 - Rte Louvois", + "ref:EU:EVSE": "FRS51E4081", + "ref": "FRS51E4081", + "name": "ST MARTIN/PRE - 40811 - Rte Louvois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.319038, + 48.961659 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST MARTIN/PRE - 40811 - Rte Louvois", + "ref:EU:EVSE": "FRS51E4081", + "ref": "FRS51E4081", + "name": "ST MARTIN/PRE - 40811 - Rte Louvois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89263, + 49.091377 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "STE MENEHOULD - 40867 - Place d'Austerlitz", + "ref:EU:EVSE": "FRS51E4086", + "ref": "FRS51E4086", + "name": "STE MENEHOULD - 40867 - Place d'Austerlitz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89263, + 49.091377 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "STE MENEHOULD - 40867 - Place d'Austerlitz", + "ref:EU:EVSE": "FRS51E4086", + "ref": "FRS51E4086", + "name": "STE MENEHOULD - 40867 - Place d'Austerlitz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.010984, + 47.223166 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gevrey-Chambertin Est", + "ref:EU:EVSE": "FRIONE41020", + "ref": "FRIONE41020", + "name": "Gevrey-Chambertin Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.010984, + 47.223166 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gevrey-Chambertin Est", + "ref:EU:EVSE": "FRIONE41020", + "ref": "FRIONE41020", + "name": "Gevrey-Chambertin Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.010984, + 47.223166 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gevrey-Chambertin Est", + "ref:EU:EVSE": "FRIONE41020", + "ref": "FRIONE41020", + "name": "Gevrey-Chambertin Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.010984, + 47.223166 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gevrey-Chambertin Est", + "ref:EU:EVSE": "FRIONE41020", + "ref": "FRIONE41020", + "name": "Gevrey-Chambertin Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.010984, + 47.223166 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gevrey-Chambertin Est", + "ref:EU:EVSE": "FRIONE4102", + "ref": "FRIONE4102", + "name": "Gevrey-Chambertin Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.889667, + 48.946919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GIVRY EN ARGONNE - 40897 - Pkg Centre Commercial", + "ref:EU:EVSE": "FRS51E4089", + "ref": "FRS51E4089", + "name": "GIVRY EN ARGONNE - 40897 - Pkg Centre Commercial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.889667, + 48.946919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GIVRY EN ARGONNE - 40897 - Pkg Centre Commercial", + "ref:EU:EVSE": "FRS51E4089", + "ref": "FRS51E4089", + "name": "GIVRY EN ARGONNE - 40897 - Pkg Centre Commercial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317688, + 43.202944 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Carcassonne", + "ref:EU:EVSE": "FRIENE007802", + "ref": "FRIENE007802", + "name": "Carcassonne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317688, + 43.202944 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Carcassonne", + "ref:EU:EVSE": "FRIENE007801", + "ref": "FRIENE007801", + "name": "Carcassonne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0966466, + 49.4928271 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "ABB Office du tourisme", + "ref:EU:EVSE": "FRSHEE24", + "ref": "FRSHEE24", + "name": "ABB Office du tourisme", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.092707, + 49.21244 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TAISSY - 41147 - Rue du Saussais", + "ref:EU:EVSE": "FRS51E4114", + "ref": "FRS51E4114", + "name": "TAISSY - 41147 - Rue du Saussais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.167616, + 48.211401 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BROU - place de la matrassière - 134890", + "ref:EU:EVSE": "FRS28E13489", + "ref": "FRS28E13489", + "name": "BROU - place de la matrassière - 134890", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.924072, + 49.244383 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vrigny | A4, Aire de Gueux", + "ref:EU:EVSE": "FRIONE40260", + "ref": "FRIONE40260", + "name": "Vrigny | A4, Aire de Gueux", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.924072, + 49.244383 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vrigny | A4, Aire de Gueux", + "ref:EU:EVSE": "FRIONE40260", + "ref": "FRIONE40260", + "name": "Vrigny | A4, Aire de Gueux", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.924072, + 49.244383 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vrigny | A4, Aire de Gueux", + "ref:EU:EVSE": "FRIONE40260", + "ref": "FRIONE40260", + "name": "Vrigny | A4, Aire de Gueux", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.924072, + 49.244383 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vrigny | A4, Aire de Gueux", + "ref:EU:EVSE": "FRIONE40260", + "ref": "FRIONE40260", + "name": "Vrigny | A4, Aire de Gueux", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.924072, + 49.244383 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vrigny | A4, Aire de Gueux", + "ref:EU:EVSE": "FRIONE40265", + "ref": "FRIONE40265", + "name": "Vrigny | A4, Aire de Gueux", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.924072, + 49.244383 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vrigny | A4, Aire de Gueux", + "ref:EU:EVSE": "FRIONE40265", + "ref": "FRIONE40265", + "name": "Vrigny | A4, Aire de Gueux", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.924072, + 49.244383 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vrigny | A4, Aire de Gueux", + "ref:EU:EVSE": "FRIONE40265", + "ref": "FRIONE40265", + "name": "Vrigny | A4, Aire de Gueux", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.046795, + 49.260411 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIMS - Place Alfred Brouette", + "ref:EU:EVSE": "FRS51E4132", + "ref": "FRS51E4132", + "name": "REIMS - Place Alfred Brouette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.046795, + 49.260411 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIMS - Place Alfred Brouette", + "ref:EU:EVSE": "FRS51E4132", + "ref": "FRS51E4132", + "name": "REIMS - Place Alfred Brouette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.078394, + 43.315614 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE ROCBARON BORNE 2", + "ref:EU:EVSE": "FRCPIE6633855", + "ref": "FRCPIE6633855", + "name": "BORNE ROCBARON BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.078394, + 43.315614 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE ROCBARON BORNE 2", + "ref:EU:EVSE": "FRCPIE6633855", + "ref": "FRCPIE6633855", + "name": "BORNE ROCBARON BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.078394, + 43.315614 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE ROCBARON BORNE 2", + "ref:EU:EVSE": "FRCPIE6633865", + "ref": "FRCPIE6633865", + "name": "BORNE ROCBARON BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.078394, + 43.315614 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE ROCBARON BORNE 2", + "ref:EU:EVSE": "FRCPIE6633865", + "ref": "FRCPIE6633865", + "name": "BORNE ROCBARON BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.411364, + 46.064297 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bonneville", + "ref:EU:EVSE": "FRIONE41270", + "ref": "FRIONE41270", + "name": "Bonneville", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59944811, + 48.41284129 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SOURS - Place du docteur Bouclet - 127349", + "ref:EU:EVSE": "FRS28E13734", + "ref": "FRS28E13734", + "name": "SOURS - Place du docteur Bouclet - 127349", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.092707, + 49.21244 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TAISSY - 41147 - Rue du Saussais", + "ref:EU:EVSE": "FRS51E4114", + "ref": "FRS51E4114", + "name": "TAISSY - 41147 - Rue du Saussais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.411364, + 46.064297 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bonneville", + "ref:EU:EVSE": "FRIONE41270", + "ref": "FRIONE41270", + "name": "Bonneville", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1323, + 49.197361 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SILLERY - 41135 - Rue Nicolas Brulart", + "ref:EU:EVSE": "FRS51E4113", + "ref": "FRS51E4113", + "name": "SILLERY - 41135 - Rue Nicolas Brulart", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.303173, + 49.579074 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE CAMPING LE RIVAGE", + "ref:EU:EVSE": "FRCPIE6718385", + "ref": "FRCPIE6718385", + "name": "BORNE CAMPING LE RIVAGE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.303173, + 49.579074 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE CAMPING LE RIVAGE", + "ref:EU:EVSE": "FRCPIE6718385", + "ref": "FRCPIE6718385", + "name": "BORNE CAMPING LE RIVAGE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.352503, + 47.851546 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SABLE BORNE 3", + "ref:EU:EVSE": "FRCPIE6700465", + "ref": "FRCPIE6700465", + "name": "SUPER U SABLE BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.352503, + 47.851546 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SABLE BORNE 3", + "ref:EU:EVSE": "FRCPIE6700465", + "ref": "FRCPIE6700465", + "name": "SUPER U SABLE BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.352503, + 47.851546 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SABLE BORNE 3", + "ref:EU:EVSE": "FRCPIE6700485", + "ref": "FRCPIE6700485", + "name": "SUPER U SABLE BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.352503, + 47.851546 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SABLE BORNE 3", + "ref:EU:EVSE": "FRCPIE6700485", + "ref": "FRCPIE6700485", + "name": "SUPER U SABLE BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.352503, + 47.851546 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SABLE BORNE 3", + "ref:EU:EVSE": "FRCPIE6700495", + "ref": "FRCPIE6700495", + "name": "SUPER U SABLE BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.352503, + 47.851546 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U SABLE BORNE 3", + "ref:EU:EVSE": "FRCPIE6700495", + "ref": "FRCPIE6700495", + "name": "SUPER U SABLE BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.166757, + 47.254236 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "La Chapelle-sur-Loire/A85", + "ref:EU:EVSE": "FRS37E141", + "ref": "FRS37E141", + "name": "La Chapelle-sur-Loire/A85", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.375991, + 48.741367 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DREUX - Rue de la fontaine - 134368", + "ref:EU:EVSE": "FRS28E13436", + "ref": "FRS28E13436", + "name": "DREUX - Rue de la fontaine - 134368", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.484739, + 48.861906 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "POGNY - 40935 - RD 54", + "ref:EU:EVSE": "FRS51E4093", + "ref": "FRS51E4093", + "name": "POGNY - 40935 - RD 54", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.484739, + 48.861906 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "POGNY - 40935 - RD 54", + "ref:EU:EVSE": "FRS51E4093", + "ref": "FRS51E4093", + "name": "POGNY - 40935 - RD 54", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03213549, + 47.54070211 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DAME MARIE DES BOIS 1238", + "ref:EU:EVSE": "FRS37E123", + "ref": "FRS37E123", + "name": "DAME MARIE DES BOIS 1238", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03213549, + 47.54070211 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DAME MARIE DES BOIS 1238", + "ref:EU:EVSE": "FRS37E123", + "ref": "FRS37E123", + "name": "DAME MARIE DES BOIS 1238", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1323, + 49.197361 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SILLERY - 41135 - Rue Nicolas Brulart", + "ref:EU:EVSE": "FRS51E4113", + "ref": "FRS51E4113", + "name": "SILLERY - 41135 - Rue Nicolas Brulart", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.411364, + 46.064297 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bonneville", + "ref:EU:EVSE": "FRIONE41270", + "ref": "FRIONE41270", + "name": "Bonneville", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.411364, + 46.064297 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bonneville", + "ref:EU:EVSE": "FRIONE41270", + "ref": "FRIONE41270", + "name": "Bonneville", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317688, + 43.202944 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Carcassonne", + "ref:EU:EVSE": "FRIENE007801", + "ref": "FRIENE007801", + "name": "Carcassonne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.484881, + 50.352072 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "TINCQUES BORNE 2 AC", + "ref:EU:EVSE": "FRCPIE6689255", + "ref": "FRCPIE6689255", + "name": "TINCQUES BORNE 2 AC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.924876, + 48.081364 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "XONRUPT LONGEMER - All des Ecoliers - 145648-CCS", + "ref:EU:EVSE": "FRS88E14564", + "ref": "FRS88E14564", + "name": "XONRUPT LONGEMER - All des Ecoliers - 145648-CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-20", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.924876, + 48.081364 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "XONRUPT LONGEMER - All des Ecoliers - 145648-CCS", + "ref:EU:EVSE": "FRS88E14565", + "ref": "FRS88E14565", + "name": "XONRUPT LONGEMER - All des Ecoliers - 145648-CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-20", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65424, + 50.539301 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR BETHUNE 1", + "ref:EU:EVSE": "FRCPIE6664165", + "ref": "FRCPIE6664165", + "name": "SONEPAR BETHUNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65424, + 50.539301 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR BETHUNE 1", + "ref:EU:EVSE": "FRCPIE6664165", + "ref": "FRCPIE6664165", + "name": "SONEPAR BETHUNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.852306, + 47.633002 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "YVOY LE MARRON-Parking de l’église-200504", + "ref:EU:EVSE": "FRS41E20050", + "ref": "FRS41E20050", + "name": "YVOY LE MARRON-Parking de l’église-200504", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-22", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.852306, + 47.633002 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "YVOY LE MARRON-Parking de l’église-200504", + "ref:EU:EVSE": "FRS41E20050", + "ref": "FRS41E20050", + "name": "YVOY LE MARRON-Parking de l’église-200504", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-22", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92147, + 45.716052 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR GRESY", + "ref:EU:EVSE": "FRCPIE6664205", + "ref": "FRCPIE6664205", + "name": "SONEPAR GRESY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92147, + 45.716052 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR GRESY", + "ref:EU:EVSE": "FRCPIE6664205", + "ref": "FRCPIE6664205", + "name": "SONEPAR GRESY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.80373021, + 48.32166905 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOGENT-LE-ROTROU - Rue Maison Maraine - 139030", + "ref:EU:EVSE": "FRS28E13903", + "ref": "FRS28E13903", + "name": "NOGENT-LE-ROTROU - Rue Maison Maraine - 139030", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.567431, + 48.591197 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PIERRES - Place Marcel Rouleau - 128891", + "ref:EU:EVSE": "FRS28E12889", + "ref": "FRS28E12889", + "name": "PIERRES - Place Marcel Rouleau - 128891", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.981914, + 49.26254 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St Brice Courcelles - 93668 - 4 août 1789", + "ref:EU:EVSE": "FRS51E9366", + "ref": "FRS51E9366", + "name": "St Brice Courcelles - 93668 - 4 août 1789", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.878221, + 49.073952 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Damery - 93748 - Place rue Paul Douce", + "ref:EU:EVSE": "FRS51E9374", + "ref": "FRS51E9374", + "name": "Damery - 93748 - Place rue Paul Douce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.878221, + 49.073952 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Damery - 93748 - Place rue Paul Douce", + "ref:EU:EVSE": "FRS51E9374", + "ref": "FRS51E9374", + "name": "Damery - 93748 - Place rue Paul Douce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440394, + 48.857906 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ANET - 1 Rue LENOTRE - 139423", + "ref:EU:EVSE": "FRS28E13942", + "ref": "FRS28E13942", + "name": "ANET - 1 Rue LENOTRE - 139423", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440394, + 48.857906 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ANET - 1 Rue LENOTRE - 139423", + "ref:EU:EVSE": "FRS28E13942", + "ref": "FRS28E13942", + "name": "ANET - 1 Rue LENOTRE - 139423", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.484881, + 50.352072 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "TINCQUES BORNE 2 AC", + "ref:EU:EVSE": "FRCPIE6689255", + "ref": "FRCPIE6689255", + "name": "TINCQUES BORNE 2 AC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8226861, + 48.31978104 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOGENT-LE-ROTROU - Rue du château - 139015", + "ref:EU:EVSE": "FRS28E13901", + "ref": "FRS28E13901", + "name": "NOGENT-LE-ROTROU - Rue du château - 139015", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.411364, + 46.064297 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bonneville", + "ref:EU:EVSE": "FRIONE4127", + "ref": "FRIONE4127", + "name": "Bonneville", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432082, + 49.061843 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 01", + "ref:EU:EVSE": "FRCPIE6726825", + "ref": "FRCPIE6726825", + "name": "RAW PARISGIVERNY 01", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.16588111, + 48.21094659 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BROU - place de l'hôtel de ville - 134921", + "ref:EU:EVSE": "FRS28E13492", + "ref": "FRS28E13492", + "name": "BROU - place de l'hôtel de ville - 134921", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.867606, + 48.069902 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GERARDMER - Av. de la Ville de Vichy - 145510-CCS", + "ref:EU:EVSE": "FRS88E14551", + "ref": "FRS88E14551", + "name": "GERARDMER - Av. de la Ville de Vichy - 145510-CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-20", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.867606, + 48.069902 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GERARDMER - Av. de la Ville de Vichy - 145510-CCS", + "ref:EU:EVSE": "FRS88E14551", + "ref": "FRS88E14551", + "name": "GERARDMER - Av. de la Ville de Vichy - 145510-CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-20", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.120891, + 49.290951 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "WITRY LES REIMS - 41643 - Place Gambetta", + "ref:EU:EVSE": "FRS51E4164", + "ref": "FRS51E4164", + "name": "WITRY LES REIMS - 41643 - Place Gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.120891, + 49.290951 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "WITRY LES REIMS - 41643 - Place Gambetta", + "ref:EU:EVSE": "FRS51E4164", + "ref": "FRS51E4164", + "name": "WITRY LES REIMS - 41643 - Place Gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62133245, + 47.40762349 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FONDETTES 1248 - Rue Edouard Branly", + "ref:EU:EVSE": "FRS37E124", + "ref": "FRS37E124", + "name": "FONDETTES 1248 - Rue Edouard Branly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62133245, + 47.40762349 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FONDETTES 1248 - Rue Edouard Branly", + "ref:EU:EVSE": "FRS37E137", + "ref": "FRS37E137", + "name": "FONDETTES 1248 - Rue Edouard Branly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.871981, + 48.072181 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GERARDMER - Place des Déportés - 145636 - CCS", + "ref:EU:EVSE": "FRS88E14563", + "ref": "FRS88E14563", + "name": "GERARDMER - Place des Déportés - 145636 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-20", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.871981, + 48.072181 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GERARDMER - Place des Déportés - 145636 - CCS", + "ref:EU:EVSE": "FRS88E14563", + "ref": "FRS88E14563", + "name": "GERARDMER - Place des Déportés - 145636 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-20", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.064474, + 48.325104 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMBRES - Place de l'Église - 139348", + "ref:EU:EVSE": "FRS28E13934", + "ref": "FRS28E13934", + "name": "COMBRES - Place de l'Église - 139348", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.261027, + 49.852902 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR SAINT-QUENTIN", + "ref:EU:EVSE": "FRCPIE6663945", + "ref": "FRCPIE6663945", + "name": "SONEPAR SAINT-QUENTIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.261027, + 49.852902 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR SAINT-QUENTIN", + "ref:EU:EVSE": "FRCPIE6663945", + "ref": "FRCPIE6663945", + "name": "SONEPAR SAINT-QUENTIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432082, + 49.061843 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 01", + "ref:EU:EVSE": "FRCPIE6720145", + "ref": "FRCPIE6720145", + "name": "RAW PARISGIVERNY 01", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432082, + 49.061843 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 01", + "ref:EU:EVSE": "FRCPIE6720145", + "ref": "FRCPIE6720145", + "name": "RAW PARISGIVERNY 01", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432082, + 49.061843 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 01", + "ref:EU:EVSE": "FRCPIE6726825", + "ref": "FRCPIE6726825", + "name": "RAW PARISGIVERNY 01", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5261468, + 47.30317135 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HENRICHEMONT - Eglise - 113070", + "ref:EU:EVSE": "FRS18E11307", + "ref": "FRS18E11307", + "name": "HENRICHEMONT - Eglise - 113070", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431005, + 49.061255 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 13", + "ref:EU:EVSE": "FRCPIE6736395", + "ref": "FRCPIE6736395", + "name": "RAW PARISGIVERNY 13", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431005, + 49.061255 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 13", + "ref:EU:EVSE": "FRCPIE6736395", + "ref": "FRCPIE6736395", + "name": "RAW PARISGIVERNY 13", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.680558, + 43.452155 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "Centre Médical de la Burlière", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Centre Médical de la Burlière", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.103642, + 50.394888 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR DOUAI 2", + "ref:EU:EVSE": "FRCPIE6677615", + "ref": "FRCPIE6677615", + "name": "SONEPAR DOUAI 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.103642, + 50.394888 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR DOUAI 2", + "ref:EU:EVSE": "FRCPIE6677615", + "ref": "FRCPIE6677615", + "name": "SONEPAR DOUAI 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.091331, + 48.86053 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Loisy", + "ref:EU:EVSE": "FRFASE331090", + "ref": "FRFASE331090", + "name": "Aire de Loisy", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.091331, + 48.86053 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Loisy", + "ref:EU:EVSE": "FRFASE331090", + "ref": "FRFASE331090", + "name": "Aire de Loisy", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.091331, + 48.86053 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Loisy", + "ref:EU:EVSE": "FRFASE331090", + "ref": "FRFASE331090", + "name": "Aire de Loisy", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.091331, + 48.86053 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Loisy", + "ref:EU:EVSE": "FRFASE331090", + "ref": "FRFASE331090", + "name": "Aire de Loisy", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.091331, + 48.86053 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Loisy", + "ref:EU:EVSE": "FRFASE331090", + "ref": "FRFASE331090", + "name": "Aire de Loisy", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.091331, + 48.86053 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Loisy", + "ref:EU:EVSE": "FRFASE331090", + "ref": "FRFASE331090", + "name": "Aire de Loisy", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.091331, + 48.86053 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Loisy", + "ref:EU:EVSE": "FRFASE331090", + "ref": "FRFASE331090", + "name": "Aire de Loisy", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.091331, + 48.86053 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Loisy", + "ref:EU:EVSE": "FRFASE331090", + "ref": "FRFASE331090", + "name": "Aire de Loisy", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.389028, + 49.017264 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Orbec", + "ref:EU:EVSE": "FRIENE003602", + "ref": "FRIENE003602", + "name": "Orbec", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.389028, + 49.017264 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Orbec", + "ref:EU:EVSE": "FRIENE003602", + "ref": "FRIENE003602", + "name": "Orbec", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.389028, + 49.017264 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Orbec", + "ref:EU:EVSE": "FRIENE003601", + "ref": "FRIENE003601", + "name": "Orbec", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.389028, + 49.017264 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Orbec", + "ref:EU:EVSE": "FRIENE003601", + "ref": "FRIENE003601", + "name": "Orbec", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431989, + 47.096046 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Esprit 1 - 97832", + "ref:EU:EVSE": "FRS18E9783", + "ref": "FRS18E9783", + "name": "BOURGES - Esprit 1 - 97832", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.680558, + 43.452155 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "Centre Médical de la Burlière", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Centre Médical de la Burlière", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.689664, + 48.538046 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT VAUX LE PENIL", + "ref:EU:EVSE": "FRCPIE6685065", + "ref": "FRCPIE6685065", + "name": "SONEPAR CONNECT VAUX LE PENIL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894038, + 45.8899 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mionnay | A46, Aire De Mionnay", + "ref:EU:EVSE": "FRIONE40440", + "ref": "FRIONE40440", + "name": "Mionnay | A46, Aire De Mionnay", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35303, + 48.855598 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "09911164", + "ref:EU:EVSE": "FRTNME08912218", + "ref": "FRTNME08912218", + "name": "09911164", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133649, + 45.78463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CLERMONT-FER 3", + "ref:EU:EVSE": "FRCPIE6678655", + "ref": "FRCPIE6678655", + "name": "SONEPAR CLERMONT-FER 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133649, + 45.78463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CLERMONT-FER 3", + "ref:EU:EVSE": "FRCPIE6678655", + "ref": "FRCPIE6678655", + "name": "SONEPAR CLERMONT-FER 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133649, + 45.78463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CLERMONT-FER 3", + "ref:EU:EVSE": "FRCPIE6678625", + "ref": "FRCPIE6678625", + "name": "SONEPAR CLERMONT-FER 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133649, + 45.78463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CLERMONT-FER 3", + "ref:EU:EVSE": "FRCPIE6678625", + "ref": "FRCPIE6678625", + "name": "SONEPAR CLERMONT-FER 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.677381, + 46.522825 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Foussais-Payré", + "ref:EU:EVSE": "FRIENE007402", + "ref": "FRIENE007402", + "name": "Foussais-Payré", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.677381, + 46.522825 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Foussais-Payré", + "ref:EU:EVSE": "FRIENE007402", + "ref": "FRIENE007402", + "name": "Foussais-Payré", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.677381, + 46.522825 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Foussais-Payré", + "ref:EU:EVSE": "FRIENE007401", + "ref": "FRIENE007401", + "name": "Foussais-Payré", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.677381, + 46.522825 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Foussais-Payré", + "ref:EU:EVSE": "FRIENE007401", + "ref": "FRIENE007401", + "name": "Foussais-Payré", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894038, + 45.8899 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mionnay | A46, Aire De Mionnay", + "ref:EU:EVSE": "FRIONE40445", + "ref": "FRIONE40445", + "name": "Mionnay | A46, Aire De Mionnay", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894038, + 45.8899 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mionnay | A46, Aire De Mionnay", + "ref:EU:EVSE": "FRIONE40445", + "ref": "FRIONE40445", + "name": "Mionnay | A46, Aire De Mionnay", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894038, + 45.8899 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mionnay | A46, Aire De Mionnay", + "ref:EU:EVSE": "FRIONE40445", + "ref": "FRIONE40445", + "name": "Mionnay | A46, Aire De Mionnay", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894038, + 45.8899 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mionnay | A46, Aire De Mionnay", + "ref:EU:EVSE": "FRIONE40440", + "ref": "FRIONE40440", + "name": "Mionnay | A46, Aire De Mionnay", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894038, + 45.8899 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mionnay | A46, Aire De Mionnay", + "ref:EU:EVSE": "FRIONE40440", + "ref": "FRIONE40440", + "name": "Mionnay | A46, Aire De Mionnay", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894038, + 45.8899 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mionnay | A46, Aire De Mionnay", + "ref:EU:EVSE": "FRIONE40440", + "ref": "FRIONE40440", + "name": "Mionnay | A46, Aire De Mionnay", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431989, + 47.096046 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Esprit 1 - 97832", + "ref:EU:EVSE": "FRS18E9783", + "ref": "FRS18E9783", + "name": "BOURGES - Esprit 1 - 97832", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.689664, + 48.538046 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT VAUX LE PENIL", + "ref:EU:EVSE": "FRCPIE6685065", + "ref": "FRCPIE6685065", + "name": "SONEPAR CONNECT VAUX LE PENIL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35303, + 48.855598 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "09911164", + "ref:EU:EVSE": "FRTNME08912220", + "ref": "FRTNME08912220", + "name": "09911164", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63311, + 48.992331 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Rosny-Sud", + "ref:EU:EVSE": "FRFASE331020", + "ref": "FRFASE331020", + "name": "Aire de Rosny-Sud", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63311, + 48.992331 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Rosny-Sud", + "ref:EU:EVSE": "FRFASE331020", + "ref": "FRFASE331020", + "name": "Aire de Rosny-Sud", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63311, + 48.992331 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Rosny-Sud", + "ref:EU:EVSE": "FRFASE331020", + "ref": "FRFASE331020", + "name": "Aire de Rosny-Sud", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63311, + 48.992331 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Rosny-Sud", + "ref:EU:EVSE": "FRFASE331020", + "ref": "FRFASE331020", + "name": "Aire de Rosny-Sud", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63311, + 48.992331 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Rosny-Sud", + "ref:EU:EVSE": "FRFASE331020", + "ref": "FRFASE331020", + "name": "Aire de Rosny-Sud", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63311, + 48.992331 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Rosny-Sud", + "ref:EU:EVSE": "FRFASE331020", + "ref": "FRFASE331020", + "name": "Aire de Rosny-Sud", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707788, + 47.615521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNES WELDOM BORNE 2", + "ref:EU:EVSE": "FRCPIE6645705", + "ref": "FRCPIE6645705", + "name": "BORNES WELDOM BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707788, + 47.615521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNES WELDOM BORNE 2", + "ref:EU:EVSE": "FRCPIE6645705", + "ref": "FRCPIE6645705", + "name": "BORNES WELDOM BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707788, + 47.615521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNES WELDOM BORNE 2", + "ref:EU:EVSE": "FRCPIE6645695", + "ref": "FRCPIE6645695", + "name": "BORNES WELDOM BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707788, + 47.615521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNES WELDOM BORNE 2", + "ref:EU:EVSE": "FRCPIE6645695", + "ref": "FRCPIE6645695", + "name": "BORNES WELDOM BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.568067, + 44.658051 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire-jardin des Causses du Lot", + "ref:EU:EVSE": "FRFASE330080", + "ref": "FRFASE330080", + "name": "Aire-jardin des Causses du Lot", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.568067, + 44.658051 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire-jardin des Causses du Lot", + "ref:EU:EVSE": "FRFASE330080", + "ref": "FRFASE330080", + "name": "Aire-jardin des Causses du Lot", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.568067, + 44.658051 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire-jardin des Causses du Lot", + "ref:EU:EVSE": "FRFASE330080", + "ref": "FRFASE330080", + "name": "Aire-jardin des Causses du Lot", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.568067, + 44.658051 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire-jardin des Causses du Lot", + "ref:EU:EVSE": "FRFASE330080", + "ref": "FRFASE330080", + "name": "Aire-jardin des Causses du Lot", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.568067, + 44.658051 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire-jardin des Causses du Lot", + "ref:EU:EVSE": "FRFASE330080", + "ref": "FRFASE330080", + "name": "Aire-jardin des Causses du Lot", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.568067, + 44.658051 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire-jardin des Causses du Lot", + "ref:EU:EVSE": "FRFASE330080", + "ref": "FRFASE330080", + "name": "Aire-jardin des Causses du Lot", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63311, + 48.992331 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Rosny-Sud", + "ref:EU:EVSE": "FRFASE331020", + "ref": "FRFASE331020", + "name": "Aire de Rosny-Sud", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63311, + 48.992331 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Rosny-Sud", + "ref:EU:EVSE": "FRFASE331020", + "ref": "FRFASE331020", + "name": "Aire de Rosny-Sud", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.191293, + 49.490326 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "STENAY - 124570 - Parking Codécom", + "ref:EU:EVSE": "FRS55E12457", + "ref": "FRS55E12457", + "name": "STENAY - 124570 - Parking Codécom", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.805584, + 50.927617 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BIOPATH HDF COQUELLES 1", + "ref:EU:EVSE": "FRCPIE6676155", + "ref": "FRCPIE6676155", + "name": "BIOPATH HDF COQUELLES 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.191293, + 49.490326 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "STENAY - 124570 - Parking Codécom", + "ref:EU:EVSE": "FRS55E12457", + "ref": "FRS55E12457", + "name": "STENAY - 124570 - Parking Codécom", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.182761, + 47.939582 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U ARNAGE ARNAGE 2", + "ref:EU:EVSE": "FRCPIE6580395", + "ref": "FRCPIE6580395", + "name": "SUPER U ARNAGE ARNAGE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.182761, + 47.939582 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U ARNAGE ARNAGE 2", + "ref:EU:EVSE": "FRCPIE6580395", + "ref": "FRCPIE6580395", + "name": "SUPER U ARNAGE ARNAGE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.182761, + 47.939582 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U ARNAGE ARNAGE 2", + "ref:EU:EVSE": "FRCPIE6580385", + "ref": "FRCPIE6580385", + "name": "SUPER U ARNAGE ARNAGE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.182761, + 47.939582 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U ARNAGE ARNAGE 2", + "ref:EU:EVSE": "FRCPIE6580385", + "ref": "FRCPIE6580385", + "name": "SUPER U ARNAGE ARNAGE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.333831, + 45.173218 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Ouest", + "ref:EU:EVSE": "FRIONE4473", + "ref": "FRIONE4473", + "name": "Bedenac Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.333831, + 45.173218 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Ouest", + "ref:EU:EVSE": "FRIONE44730", + "ref": "FRIONE44730", + "name": "Bedenac Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.333831, + 45.173218 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Ouest", + "ref:EU:EVSE": "FRIONE44730", + "ref": "FRIONE44730", + "name": "Bedenac Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.333831, + 45.173218 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Ouest", + "ref:EU:EVSE": "FRIONE44730", + "ref": "FRIONE44730", + "name": "Bedenac Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.333831, + 45.173218 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Ouest", + "ref:EU:EVSE": "FRIONE44730", + "ref": "FRIONE44730", + "name": "Bedenac Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.333831, + 45.173218 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Ouest", + "ref:EU:EVSE": "FRIONE44730", + "ref": "FRIONE44730", + "name": "Bedenac Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.333831, + 45.173218 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Ouest", + "ref:EU:EVSE": "FRIONE44730", + "ref": "FRIONE44730", + "name": "Bedenac Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.139773, + 47.254983 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEIGY 211885 - RUE MARCEL COTTEREAU", + "ref:EU:EVSE": "FRS41E21188", + "ref": "FRS41E21188", + "name": "SEIGY 211885 - RUE MARCEL COTTEREAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.139773, + 47.254983 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEIGY 211885 - RUE MARCEL COTTEREAU", + "ref:EU:EVSE": "FRS41E21188", + "ref": "FRS41E21188", + "name": "SEIGY 211885 - RUE MARCEL COTTEREAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.805584, + 50.927617 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BIOPATH HDF COQUELLES 1", + "ref:EU:EVSE": "FRCPIE6676155", + "ref": "FRCPIE6676155", + "name": "BIOPATH HDF COQUELLES 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35303, + 48.855598 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "09911164", + "ref:EU:EVSE": "FRTNME08912218", + "ref": "FRTNME08912218", + "name": "09911164", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35303, + 48.855598 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "09911164", + "ref:EU:EVSE": "FRTNME08912220", + "ref": "FRTNME08912220", + "name": "09911164", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.568067, + 44.658051 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire-jardin des Causses du Lot", + "ref:EU:EVSE": "FRFASE330080", + "ref": "FRFASE330080", + "name": "Aire-jardin des Causses du Lot", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.795431, + 45.775456 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GVA ECULLY AC", + "ref:EU:EVSE": "FRCPIE6499325", + "ref": "FRCPIE6499325", + "name": "GVA ECULLY AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383175, + 45.470713 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GVA PRIEST-EN AC2", + "ref:EU:EVSE": "FRCPIE6498985", + "ref": "FRCPIE6498985", + "name": "GVA PRIEST-EN AC2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16172, + 48.6219 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUDRES - PARKING DE LA MAIRIE - 187775", + "ref:EU:EVSE": "FRN54E18777", + "ref": "FRN54E18777", + "name": "LUDRES - PARKING DE LA MAIRIE - 187775", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16172, + 48.6219 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUDRES - PARKING DE LA MAIRIE - 187775", + "ref:EU:EVSE": "FRN54E18777", + "ref": "FRN54E18777", + "name": "LUDRES - PARKING DE LA MAIRIE - 187775", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1847, + 49.150483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de La Maxe", + "ref:EU:EVSE": "FRFASE33111", + "ref": "FRFASE33111", + "name": "Aire de La Maxe", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1847, + 49.150483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de La Maxe", + "ref:EU:EVSE": "FRFASE331101", + "ref": "FRFASE331101", + "name": "Aire de La Maxe", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1847, + 49.150483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de La Maxe", + "ref:EU:EVSE": "FRFASE331101", + "ref": "FRFASE331101", + "name": "Aire de La Maxe", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1847, + 49.150483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de La Maxe", + "ref:EU:EVSE": "FRFASE331101", + "ref": "FRFASE331101", + "name": "Aire de La Maxe", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1847, + 49.150483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de La Maxe", + "ref:EU:EVSE": "FRFASE331101", + "ref": "FRFASE331101", + "name": "Aire de La Maxe", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1847, + 49.150483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de La Maxe", + "ref:EU:EVSE": "FRFASE331101", + "ref": "FRFASE331101", + "name": "Aire de La Maxe", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1847, + 49.150483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de La Maxe", + "ref:EU:EVSE": "FRFASE331101", + "ref": "FRFASE331101", + "name": "Aire de La Maxe", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1847, + 49.150483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de La Maxe", + "ref:EU:EVSE": "FRFASE331100", + "ref": "FRFASE331100", + "name": "Aire de La Maxe", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1847, + 49.150483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de La Maxe", + "ref:EU:EVSE": "FRFASE331100", + "ref": "FRFASE331100", + "name": "Aire de La Maxe", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1847, + 49.150483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de La Maxe", + "ref:EU:EVSE": "FRFASE331100", + "ref": "FRFASE331100", + "name": "Aire de La Maxe", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1847, + 49.150483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de La Maxe", + "ref:EU:EVSE": "FRFASE331100", + "ref": "FRFASE331100", + "name": "Aire de La Maxe", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1847, + 49.150483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de La Maxe", + "ref:EU:EVSE": "FRFASE331100", + "ref": "FRFASE331100", + "name": "Aire de La Maxe", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383175, + 45.470713 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GVA PRIEST-EN AC2", + "ref:EU:EVSE": "FRCPIE6498985", + "ref": "FRCPIE6498985", + "name": "GVA PRIEST-EN AC2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89454062, + 45.8843468 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mionnay Saint-Galmier", + "ref:EU:EVSE": "FRIONE40400", + "ref": "FRIONE40400", + "name": "Mionnay Saint-Galmier", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1847, + 49.150483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de La Maxe", + "ref:EU:EVSE": "FRFASE331100", + "ref": "FRFASE331100", + "name": "Aire de La Maxe", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89454062, + 45.8843468 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mionnay Saint-Galmier", + "ref:EU:EVSE": "FRIONE40400", + "ref": "FRIONE40400", + "name": "Mionnay Saint-Galmier", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.983211, + 43.650765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montpellier Saint-Aunès", + "ref:EU:EVSE": "FRIONE43590", + "ref": "FRIONE43590", + "name": "Montpellier Saint-Aunès", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.983211, + 43.650765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montpellier Saint-Aunès", + "ref:EU:EVSE": "FRIONE43590", + "ref": "FRIONE43590", + "name": "Montpellier Saint-Aunès", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.983211, + 43.650765 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montpellier Saint-Aunès", + "ref:EU:EVSE": "FRIONE43590", + "ref": "FRIONE43590", + "name": "Montpellier Saint-Aunès", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.98495561, + 47.3403572 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CROIX EN TOURAINE 1256", + "ref:EU:EVSE": "FRS37E137", + "ref": "FRS37E137", + "name": "LA CROIX EN TOURAINE 1256", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.98495561, + 47.3403572 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CROIX EN TOURAINE 1256", + "ref:EU:EVSE": "FRS37E125", + "ref": "FRS37E125", + "name": "LA CROIX EN TOURAINE 1256", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.783627, + 48.555099 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT JUST SAUVAGE - 57728 - Parking de l'Eglise", + "ref:EU:EVSE": "FRS51E5772", + "ref": "FRS51E5772", + "name": "SAINT JUST SAUVAGE - 57728 - Parking de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.783627, + 48.555099 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT JUST SAUVAGE - 57728 - Parking de l'Eglise", + "ref:EU:EVSE": "FRS51E5772", + "ref": "FRS51E5772", + "name": "SAINT JUST SAUVAGE - 57728 - Parking de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.848341, + 42.577784 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Village Catalan Ouest", + "ref:EU:EVSE": "FRIONE4132", + "ref": "FRIONE4132", + "name": "Village Catalan Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.848341, + 42.577784 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Village Catalan Ouest", + "ref:EU:EVSE": "FRIONE41320", + "ref": "FRIONE41320", + "name": "Village Catalan Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.848341, + 42.577784 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Village Catalan Ouest", + "ref:EU:EVSE": "FRIONE41320", + "ref": "FRIONE41320", + "name": "Village Catalan Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.848341, + 42.577784 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Village Catalan Ouest", + "ref:EU:EVSE": "FRIONE41320", + "ref": "FRIONE41320", + "name": "Village Catalan Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.848341, + 42.577784 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Village Catalan Ouest", + "ref:EU:EVSE": "FRIONE41320", + "ref": "FRIONE41320", + "name": "Village Catalan Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89454062, + 45.8843468 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mionnay Saint-Galmier", + "ref:EU:EVSE": "FRIONE4040", + "ref": "FRIONE4040", + "name": "Mionnay Saint-Galmier", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89454062, + 45.8843468 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mionnay Saint-Galmier", + "ref:EU:EVSE": "FRIONE40400", + "ref": "FRIONE40400", + "name": "Mionnay Saint-Galmier", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89454062, + 45.8843468 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mionnay Saint-Galmier", + "ref:EU:EVSE": "FRIONE40400", + "ref": "FRIONE40400", + "name": "Mionnay Saint-Galmier", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1847, + 49.150483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de La Maxe", + "ref:EU:EVSE": "FRFASE331100", + "ref": "FRFASE331100", + "name": "Aire de La Maxe", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1847, + 49.150483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de La Maxe", + "ref:EU:EVSE": "FRFASE331100", + "ref": "FRFASE331100", + "name": "Aire de La Maxe", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35303, + 48.855598 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "09911164", + "ref:EU:EVSE": "FRTNME08912228", + "ref": "FRTNME08912228", + "name": "09911164", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284115, + 45.856641 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 8", + "ref:EU:EVSE": "FRCPIE6699815", + "ref": "FRCPIE6699815", + "name": "SONEPAR ST-VULBAS 8", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284115, + 45.856641 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 8", + "ref:EU:EVSE": "FRCPIE6696725", + "ref": "FRCPIE6696725", + "name": "SONEPAR ST-VULBAS 8", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284115, + 45.856641 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 8", + "ref:EU:EVSE": "FRCPIE6696715", + "ref": "FRCPIE6696715", + "name": "SONEPAR ST-VULBAS 8", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284115, + 45.856641 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 8", + "ref:EU:EVSE": "FRCPIE6696715", + "ref": "FRCPIE6696715", + "name": "SONEPAR ST-VULBAS 8", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284115, + 45.856641 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 8", + "ref:EU:EVSE": "FRCPIE6535085", + "ref": "FRCPIE6535085", + "name": "SONEPAR ST-VULBAS 8", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284115, + 45.856641 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 8", + "ref:EU:EVSE": "FRCPIE6535085", + "ref": "FRCPIE6535085", + "name": "SONEPAR ST-VULBAS 8", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.183078, + 43.985279 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Larzac", + "ref:EU:EVSE": "FRIONE4325", + "ref": "FRIONE4325", + "name": "Larzac", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.183078, + 43.985279 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Larzac", + "ref:EU:EVSE": "FRIONE43250", + "ref": "FRIONE43250", + "name": "Larzac", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.183078, + 43.985279 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Larzac", + "ref:EU:EVSE": "FRIONE43250", + "ref": "FRIONE43250", + "name": "Larzac", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.183078, + 43.985279 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Larzac", + "ref:EU:EVSE": "FRIONE43250", + "ref": "FRIONE43250", + "name": "Larzac", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.183078, + 43.985279 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Larzac", + "ref:EU:EVSE": "FRIONE43250", + "ref": "FRIONE43250", + "name": "Larzac", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383523, + 47.082805 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - PRADO - 109619", + "ref:EU:EVSE": "FRS18E10962", + "ref": "FRS18E10962", + "name": "BOURGES - PRADO - 109619", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383523, + 47.082805 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - PRADO - 109619", + "ref:EU:EVSE": "FRS18E10961", + "ref": "FRS18E10961", + "name": "BOURGES - PRADO - 109619", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35303, + 48.855598 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "09911164", + "ref:EU:EVSE": "FRTNME09911164", + "ref": "FRTNME09911164", + "name": "09911164", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35303, + 48.855598 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "09911164", + "ref:EU:EVSE": "FRTNME09911164", + "ref": "FRTNME09911164", + "name": "09911164", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35303, + 48.855598 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "09911164", + "ref:EU:EVSE": "FRTNME08912228", + "ref": "FRTNME08912228", + "name": "09911164", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284115, + 45.856641 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 8", + "ref:EU:EVSE": "FRCPIE6696725", + "ref": "FRCPIE6696725", + "name": "SONEPAR ST-VULBAS 8", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284115, + 45.856641 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 8", + "ref:EU:EVSE": "FRCPIE6699815", + "ref": "FRCPIE6699815", + "name": "SONEPAR ST-VULBAS 8", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1847, + 49.150483 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de La Maxe", + "ref:EU:EVSE": "FRFASE331100", + "ref": "FRFASE331100", + "name": "Aire de La Maxe", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref:EU:EVSE": "FRFASE330980", + "ref": "FRFASE330980", + "name": "Aire de Vémars Ouest", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref:EU:EVSE": "FRFASE330981", + "ref": "FRFASE330981", + "name": "Aire de Vémars Ouest", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref:EU:EVSE": "FRFASE330981", + "ref": "FRFASE330981", + "name": "Aire de Vémars Ouest", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref:EU:EVSE": "FRFASE330981", + "ref": "FRFASE330981", + "name": "Aire de Vémars Ouest", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref:EU:EVSE": "FRFASE330981", + "ref": "FRFASE330981", + "name": "Aire de Vémars Ouest", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref:EU:EVSE": "FRFASE330981", + "ref": "FRFASE330981", + "name": "Aire de Vémars Ouest", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref:EU:EVSE": "FRFASE330981", + "ref": "FRFASE330981", + "name": "Aire de Vémars Ouest", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref:EU:EVSE": "FRFASE330981", + "ref": "FRFASE330981", + "name": "Aire de Vémars Ouest", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref:EU:EVSE": "FRFASE330980", + "ref": "FRFASE330980", + "name": "Aire de Vémars Ouest", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref:EU:EVSE": "FRFASE330980", + "ref": "FRFASE330980", + "name": "Aire de Vémars Ouest", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref:EU:EVSE": "FRFASE330980", + "ref": "FRFASE330980", + "name": "Aire de Vémars Ouest", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref:EU:EVSE": "FRFASE330980", + "ref": "FRFASE330980", + "name": "Aire de Vémars Ouest", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref:EU:EVSE": "FRFASE330980", + "ref": "FRFASE330980", + "name": "Aire de Vémars Ouest", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref:EU:EVSE": "FRFASE330980", + "ref": "FRFASE330980", + "name": "Aire de Vémars Ouest", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref:EU:EVSE": "FRFASE330980", + "ref": "FRFASE330980", + "name": "Aire de Vémars Ouest", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref:EU:EVSE": "FRFASE330980", + "ref": "FRFASE330980", + "name": "Aire de Vémars Ouest", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.568067, + 44.658051 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire-jardin des Causses du Lot", + "ref:EU:EVSE": "FRFASE330080", + "ref": "FRFASE330080", + "name": "Aire-jardin des Causses du Lot", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.915513, + 47.32171 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Athée sur Cher 10710 - Place de la Mairie 1", + "ref:EU:EVSE": "FRS37E3632", + "ref": "FRS37E3632", + "name": "Athée sur Cher 10710 - Place de la Mairie 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-04", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431005, + 49.061255 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 13", + "ref:EU:EVSE": "FRCPIE6736355", + "ref": "FRCPIE6736355", + "name": "RAW PARISGIVERNY 13", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref:EU:EVSE": "FRIONE43960", + "ref": "FRIONE43960", + "name": "Saint-Witz", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref:EU:EVSE": "FRIONE43960", + "ref": "FRIONE43960", + "name": "Saint-Witz", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref:EU:EVSE": "FRIONE43960", + "ref": "FRIONE43960", + "name": "Saint-Witz", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref:EU:EVSE": "FRIONE43960", + "ref": "FRIONE43960", + "name": "Saint-Witz", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref:EU:EVSE": "FRIONE43960", + "ref": "FRIONE43960", + "name": "Saint-Witz", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref:EU:EVSE": "FRIONE43960", + "ref": "FRIONE43960", + "name": "Saint-Witz", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref:EU:EVSE": "FRIONE43960", + "ref": "FRIONE43960", + "name": "Saint-Witz", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref:EU:EVSE": "FRIONE43960", + "ref": "FRIONE43960", + "name": "Saint-Witz", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.769307, + 47.292443 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEFRANCHE SUR CHER 5020 - Rue Marcel Géré", + "ref:EU:EVSE": "FRS41E502", + "ref": "FRS41E502", + "name": "VILLEFRANCHE SUR CHER 5020 - Rue Marcel Géré", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.769307, + 47.292443 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEFRANCHE SUR CHER 5020 - Rue Marcel Géré", + "ref:EU:EVSE": "FRS41E502", + "ref": "FRS41E502", + "name": "VILLEFRANCHE SUR CHER 5020 - Rue Marcel Géré", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.798736, + 46.503822 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SU LA CHAUME BORNE 1", + "ref:EU:EVSE": "FRCPIE6580005", + "ref": "FRCPIE6580005", + "name": "SU LA CHAUME BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.798736, + 46.503822 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SU LA CHAUME BORNE 1", + "ref:EU:EVSE": "FRCPIE6580005", + "ref": "FRCPIE6580005", + "name": "SU LA CHAUME BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.876433, + 47.249876 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURCAY 1234", + "ref:EU:EVSE": "FRS37E123", + "ref": "FRS37E123", + "name": "COURCAY 1234", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.876433, + 47.249876 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURCAY 1234", + "ref:EU:EVSE": "FRS37E123", + "ref": "FRS37E123", + "name": "COURCAY 1234", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.63894, + 49.649323 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Poix Terron - Rue de la gare - 188242", + "ref:EU:EVSE": "FRS08E18824", + "ref": "FRS08E18824", + "name": "Poix Terron - Rue de la gare - 188242", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-22", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.63894, + 49.649323 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Poix Terron - Rue de la gare - 188242", + "ref:EU:EVSE": "FRS08E18824", + "ref": "FRS08E18824", + "name": "Poix Terron - Rue de la gare - 188242", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-22", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref:EU:EVSE": "FRIONE43960", + "ref": "FRIONE43960", + "name": "Saint-Witz", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref:EU:EVSE": "FRIONE43961", + "ref": "FRIONE43961", + "name": "Saint-Witz", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20101, + 46.56209 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUMEILLANT - Place de l'église - 182394", + "ref:EU:EVSE": "FRS18E18239", + "ref": "FRS18E18239", + "name": "CHATEAUMEILLANT - Place de l'église - 182394", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref:EU:EVSE": "FRIONE43961", + "ref": "FRIONE43961", + "name": "Saint-Witz", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684731, + 47.852405 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jardin des arbres", + "ref:EU:EVSE": "FRIONE41560", + "ref": "FRIONE41560", + "name": "Jardin des arbres", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684731, + 47.852405 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jardin des arbres", + "ref:EU:EVSE": "FRIONE41560", + "ref": "FRIONE41560", + "name": "Jardin des arbres", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684731, + 47.852405 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jardin des arbres", + "ref:EU:EVSE": "FRIONE41560", + "ref": "FRIONE41560", + "name": "Jardin des arbres", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684731, + 47.852405 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jardin des arbres", + "ref:EU:EVSE": "FRIONE41560", + "ref": "FRIONE41560", + "name": "Jardin des arbres", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.456708, + 48.814104 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SAINT-MAURICE BORNE 3", + "ref:EU:EVSE": "FRCPIE6658785", + "ref": "FRCPIE6658785", + "name": "SAINT-MAURICE BORNE 3", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76787, + 46.14335 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Dracé", + "ref:EU:EVSE": "FRFASE330240", + "ref": "FRFASE330240", + "name": "Aire de Dracé", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76787, + 46.14335 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Dracé", + "ref:EU:EVSE": "FRFASE330240", + "ref": "FRFASE330240", + "name": "Aire de Dracé", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76787, + 46.14335 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Dracé", + "ref:EU:EVSE": "FRFASE330240", + "ref": "FRFASE330240", + "name": "Aire de Dracé", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76787, + 46.14335 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Dracé", + "ref:EU:EVSE": "FRFASE330240", + "ref": "FRFASE330240", + "name": "Aire de Dracé", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76787, + 46.14335 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Dracé", + "ref:EU:EVSE": "FRFASE330240", + "ref": "FRFASE330240", + "name": "Aire de Dracé", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76787, + 46.14335 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Dracé", + "ref:EU:EVSE": "FRFASE330240", + "ref": "FRFASE330240", + "name": "Aire de Dracé", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76787, + 46.14335 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Dracé", + "ref:EU:EVSE": "FRFASE330240", + "ref": "FRFASE330240", + "name": "Aire de Dracé", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76787, + 46.14335 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Dracé", + "ref:EU:EVSE": "FRFASE330240", + "ref": "FRFASE330240", + "name": "Aire de Dracé", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref:EU:EVSE": "FRIONE4396", + "ref": "FRIONE4396", + "name": "Saint-Witz", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref:EU:EVSE": "FRIONE43961", + "ref": "FRIONE43961", + "name": "Saint-Witz", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20101, + 46.56209 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUMEILLANT - Place de l'église - 182394", + "ref:EU:EVSE": "FRS18E18239", + "ref": "FRS18E18239", + "name": "CHATEAUMEILLANT - Place de l'église - 182394", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.768718, + 45.675954 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED BRIGNAIS", + "ref:EU:EVSE": "FRCPIE6634505", + "ref": "FRCPIE6634505", + "name": "CGED CGED BRIGNAIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.846994, + 42.578429 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Village Catalan Est", + "ref:EU:EVSE": "FRIONE41310", + "ref": "FRIONE41310", + "name": "Village Catalan Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65022261, + 47.07331786 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FARGES EN SEPTAINE - Mairie - 188336", + "ref:EU:EVSE": "FRS18E18833", + "ref": "FRS18E18833", + "name": "FARGES EN SEPTAINE - Mairie - 188336", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42903752, + 47.14505949 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FUSSY - La poste - 207176", + "ref:EU:EVSE": "FRS18E20717", + "ref": "FRS18E20717", + "name": "FUSSY - La poste - 207176", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431084, + 49.061551 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 23", + "ref:EU:EVSE": "FRCPIE6736485", + "ref": "FRCPIE6736485", + "name": "RAW PARISGIVERNY 23", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431084, + 49.061551 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 23", + "ref:EU:EVSE": "FRCPIE6736485", + "ref": "FRCPIE6736485", + "name": "RAW PARISGIVERNY 23", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431084, + 49.061551 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 23", + "ref:EU:EVSE": "FRCPIE6736705", + "ref": "FRCPIE6736705", + "name": "RAW PARISGIVERNY 23", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431084, + 49.061551 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 23", + "ref:EU:EVSE": "FRCPIE6736705", + "ref": "FRCPIE6736705", + "name": "RAW PARISGIVERNY 23", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431084, + 49.061551 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 23", + "ref:EU:EVSE": "FRCPIE6736785", + "ref": "FRCPIE6736785", + "name": "RAW PARISGIVERNY 23", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431084, + 49.061551 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 23", + "ref:EU:EVSE": "FRCPIE6736785", + "ref": "FRCPIE6736785", + "name": "RAW PARISGIVERNY 23", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.84443388, + 47.14286071 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GRACAY - Place Gapion - 206002", + "ref:EU:EVSE": "FRS18E20600", + "ref": "FRS18E20600", + "name": "GRACAY - Place Gapion - 206002", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.84443388, + 47.14286071 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GRACAY - Place Gapion - 206002", + "ref:EU:EVSE": "FRS18E20600", + "ref": "FRS18E20600", + "name": "GRACAY - Place Gapion - 206002", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.948825, + 46.951868 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA GUERCHE - Place Auguste FOURNIER - 151547", + "ref:EU:EVSE": "FRS18E20309", + "ref": "FRS18E20309", + "name": "LA GUERCHE - Place Auguste FOURNIER - 151547", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.948825, + 46.951868 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA GUERCHE - Place Auguste FOURNIER - 151547", + "ref:EU:EVSE": "FRS18E20309", + "ref": "FRS18E20309", + "name": "LA GUERCHE - Place Auguste FOURNIER - 151547", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62672506, + 48.27051423 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VOVES - Bd Maurice Violette - 134417", + "ref:EU:EVSE": "FRS28E13441", + "ref": "FRS28E13441", + "name": "VOVES - Bd Maurice Violette - 134417", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431005, + 49.061255 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 13", + "ref:EU:EVSE": "FRCPIE6736325", + "ref": "FRCPIE6736325", + "name": "RAW PARISGIVERNY 13", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431005, + 49.061255 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 13", + "ref:EU:EVSE": "FRCPIE6736325", + "ref": "FRCPIE6736325", + "name": "RAW PARISGIVERNY 13", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431005, + 49.061255 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 13", + "ref:EU:EVSE": "FRCPIE6736355", + "ref": "FRCPIE6736355", + "name": "RAW PARISGIVERNY 13", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42903752, + 47.14505949 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FUSSY - La poste - 207176", + "ref:EU:EVSE": "FRS18E20717", + "ref": "FRS18E20717", + "name": "FUSSY - La poste - 207176", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65022261, + 47.07331786 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FARGES EN SEPTAINE - Mairie - 188336", + "ref:EU:EVSE": "FRS18E18833", + "ref": "FRS18E18833", + "name": "FARGES EN SEPTAINE - Mairie - 188336", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.768718, + 45.675954 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED BRIGNAIS", + "ref:EU:EVSE": "FRCPIE6634505", + "ref": "FRCPIE6634505", + "name": "CGED CGED BRIGNAIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.439158, + 47.097181 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THENEUIL 16754 - Grande Rue", + "ref:EU:EVSE": "FRS37E1675", + "ref": "FRS37E1675", + "name": "THENEUIL 16754 - Grande Rue", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.262646, + 47.839764 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPERU BORNE 3", + "ref:EU:EVSE": "FRCPIE6637885", + "ref": "FRCPIE6637885", + "name": "HYPERU BORNE 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.262646, + 47.839764 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPERU BORNE 3", + "ref:EU:EVSE": "FRCPIE6637885", + "ref": "FRCPIE6637885", + "name": "HYPERU BORNE 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.262646, + 47.839764 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPERU BORNE 3", + "ref:EU:EVSE": "FRCPIE6637895", + "ref": "FRCPIE6637895", + "name": "HYPERU BORNE 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.262646, + 47.839764 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPERU BORNE 3", + "ref:EU:EVSE": "FRCPIE6637895", + "ref": "FRCPIE6637895", + "name": "HYPERU BORNE 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03166, + 47.025656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURS-LES*BARRES - Grande Rue - 181472", + "ref:EU:EVSE": "FRS18E18147", + "ref": "FRS18E18147", + "name": "COURS-LES*BARRES - Grande Rue - 181472", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03166, + 47.025656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURS-LES*BARRES - Grande Rue - 181472", + "ref:EU:EVSE": "FRS18E18147", + "ref": "FRS18E18147", + "name": "COURS-LES*BARRES - Grande Rue - 181472", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.026326, + 47.601158 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMOTTE-BEUVRON- 117722- Rue Ernest Gaugiran", + "ref:EU:EVSE": "FRS41E11772", + "ref": "FRS41E11772", + "name": "LAMOTTE-BEUVRON- 117722- Rue Ernest Gaugiran", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.026326, + 47.601158 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMOTTE-BEUVRON- 117722- Rue Ernest Gaugiran", + "ref:EU:EVSE": "FRS41E11772", + "ref": "FRS41E11772", + "name": "LAMOTTE-BEUVRON- 117722- Rue Ernest Gaugiran", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.501811, + 47.30968 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lochères", + "ref:EU:EVSE": "FRIONE41030", + "ref": "FRIONE41030", + "name": "Lochères", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.501811, + 47.30968 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lochères", + "ref:EU:EVSE": "FRIONE41030", + "ref": "FRIONE41030", + "name": "Lochères", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.501811, + 47.30968 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lochères", + "ref:EU:EVSE": "FRIONE41030", + "ref": "FRIONE41030", + "name": "Lochères", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.501811, + 47.30968 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lochères", + "ref:EU:EVSE": "FRIONE41030", + "ref": "FRIONE41030", + "name": "Lochères", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.501811, + 47.30968 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lochères", + "ref:EU:EVSE": "FRIONE4103", + "ref": "FRIONE4103", + "name": "Lochères", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.446997, + 47.559254 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ARGENT-sur-Sauldre - Place du Marché - 207811", + "ref:EU:EVSE": "FRS18E20781", + "ref": "FRS18E20781", + "name": "ARGENT-sur-Sauldre - Place du Marché - 207811", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.446997, + 47.559254 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ARGENT-sur-Sauldre - Place du Marché - 207811", + "ref:EU:EVSE": "FRS18E20781", + "ref": "FRS18E20781", + "name": "ARGENT-sur-Sauldre - Place du Marché - 207811", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684731, + 47.852405 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jardin des arbres", + "ref:EU:EVSE": "FRIONE4156", + "ref": "FRIONE4156", + "name": "Jardin des arbres", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.846994, + 42.578429 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Village Catalan Est", + "ref:EU:EVSE": "FRIONE41310", + "ref": "FRIONE41310", + "name": "Village Catalan Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.915513, + 47.32171 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Athée sur Cher 10710 - Place de la Mairie 1", + "ref:EU:EVSE": "FRS37E1071", + "ref": "FRS37E1071", + "name": "Athée sur Cher 10710 - Place de la Mairie 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-04", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.188615, + 49.24801 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val de Reuil", + "ref:EU:EVSE": "FRIONE4377", + "ref": "FRIONE4377", + "name": "Val de Reuil", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.188615, + 49.24801 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val de Reuil", + "ref:EU:EVSE": "FRIONE43770", + "ref": "FRIONE43770", + "name": "Val de Reuil", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.188615, + 49.24801 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val de Reuil", + "ref:EU:EVSE": "FRIONE43770", + "ref": "FRIONE43770", + "name": "Val de Reuil", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.188615, + 49.24801 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val de Reuil", + "ref:EU:EVSE": "FRIONE43770", + "ref": "FRIONE43770", + "name": "Val de Reuil", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.188615, + 49.24801 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val de Reuil", + "ref:EU:EVSE": "FRIONE43770", + "ref": "FRIONE43770", + "name": "Val de Reuil", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.188615, + 49.24801 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val de Reuil", + "ref:EU:EVSE": "FRIONE43770", + "ref": "FRIONE43770", + "name": "Val de Reuil", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.710812, + 47.456044 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOTRE DAME D'OE 1341", + "ref:EU:EVSE": "FRS37E134", + "ref": "FRS37E134", + "name": "NOTRE DAME D'OE 1341", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.710812, + 47.456044 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOTRE DAME D'OE 1341", + "ref:EU:EVSE": "FRS37E134", + "ref": "FRS37E134", + "name": "NOTRE DAME D'OE 1341", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.556317, + 47.383873 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUYNES 1339", + "ref:EU:EVSE": "FRS37E134", + "ref": "FRS37E134", + "name": "LUYNES 1339", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.556317, + 47.383873 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUYNES 1339", + "ref:EU:EVSE": "FRS37E133", + "ref": "FRS37E133", + "name": "LUYNES 1339", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.413577, + 46.948665 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JAULNAY 1337", + "ref:EU:EVSE": "FRS37E134", + "ref": "FRS37E134", + "name": "JAULNAY 1337", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.413577, + 46.948665 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JAULNAY 1337", + "ref:EU:EVSE": "FRS37E133", + "ref": "FRS37E133", + "name": "JAULNAY 1337", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.131556, + 47.4185 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué-les-Cossonnières", + "ref:EU:EVSE": "FRIONE4021", + "ref": "FRIONE4021", + "name": "Longué-les-Cossonnières", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.131556, + 47.4185 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué-les-Cossonnières", + "ref:EU:EVSE": "FRIONE40210", + "ref": "FRIONE40210", + "name": "Longué-les-Cossonnières", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.131556, + 47.4185 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué-les-Cossonnières", + "ref:EU:EVSE": "FRIONE40210", + "ref": "FRIONE40210", + "name": "Longué-les-Cossonnières", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.131556, + 47.4185 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué-les-Cossonnières", + "ref:EU:EVSE": "FRIONE40210", + "ref": "FRIONE40210", + "name": "Longué-les-Cossonnières", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.188615, + 49.24801 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val de Reuil", + "ref:EU:EVSE": "FRIONE43770", + "ref": "FRIONE43770", + "name": "Val de Reuil", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.490503, + 48.417013 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "09910787", + "ref:EU:EVSE": "FRTNME09910787", + "ref": "FRTNME09910787", + "name": "09910787", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.331326, + 46.541203 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "QUADRIPACK BORNE 2", + "ref:EU:EVSE": "FRCPIE6671695", + "ref": "FRCPIE6671695", + "name": "QUADRIPACK BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.490503, + 48.417013 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "09910787", + "ref:EU:EVSE": "FRTNME09910787", + "ref": "FRTNME09910787", + "name": "09910787", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-31", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.583139, + 47.343718 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GY EN SOLOGNE 211305 - rue croix Saint-André", + "ref:EU:EVSE": "FRS41E21130", + "ref": "FRS41E21130", + "name": "GY EN SOLOGNE 211305 - rue croix Saint-André", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.583139, + 47.343718 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GY EN SOLOGNE 211305 - rue croix Saint-André", + "ref:EU:EVSE": "FRS41E21130", + "ref": "FRS41E21130", + "name": "GY EN SOLOGNE 211305 - rue croix Saint-André", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.705334, + 46.850918 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Châteauroux Nord", + "ref:EU:EVSE": "FRIONE4489", + "ref": "FRIONE4489", + "name": "Châteauroux Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.705334, + 46.850918 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Châteauroux Nord", + "ref:EU:EVSE": "FRIONE44890", + "ref": "FRIONE44890", + "name": "Châteauroux Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.705334, + 46.850918 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Châteauroux Nord", + "ref:EU:EVSE": "FRIONE44890", + "ref": "FRIONE44890", + "name": "Châteauroux Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.705334, + 46.850918 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Châteauroux Nord", + "ref:EU:EVSE": "FRIONE44890", + "ref": "FRIONE44890", + "name": "Châteauroux Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.705334, + 46.850918 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Châteauroux Nord", + "ref:EU:EVSE": "FRIONE44890", + "ref": "FRIONE44890", + "name": "Châteauroux Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.705334, + 46.850918 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Châteauroux Nord", + "ref:EU:EVSE": "FRIONE44890", + "ref": "FRIONE44890", + "name": "Châteauroux Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.705334, + 46.850918 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Châteauroux Nord", + "ref:EU:EVSE": "FRIONE44890", + "ref": "FRIONE44890", + "name": "Châteauroux Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862741, + 43.987314 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG LE PONTET 6", + "ref:EU:EVSE": "FRCPIE6729915", + "ref": "FRCPIE6729915", + "name": "SONELOG LE PONTET 6", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862741, + 43.987314 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG LE PONTET 6", + "ref:EU:EVSE": "FRCPIE6729915", + "ref": "FRCPIE6729915", + "name": "SONELOG LE PONTET 6", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862741, + 43.987314 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG LE PONTET 6", + "ref:EU:EVSE": "FRCPIE6531055", + "ref": "FRCPIE6531055", + "name": "SONELOG LE PONTET 6", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862741, + 43.987314 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONELOG LE PONTET 6", + "ref:EU:EVSE": "FRCPIE6531055", + "ref": "FRCPIE6531055", + "name": "SONELOG LE PONTET 6", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.638258, + 48.133595 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BNR BORNE 1", + "ref:EU:EVSE": "FRCPIE6697285", + "ref": "FRCPIE6697285", + "name": "BNR BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.638258, + 48.133595 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BNR BORNE 1", + "ref:EU:EVSE": "FRCPIE6697285", + "ref": "FRCPIE6697285", + "name": "BNR BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.131556, + 47.4185 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué-les-Cossonnières", + "ref:EU:EVSE": "FRIONE40210", + "ref": "FRIONE40210", + "name": "Longué-les-Cossonnières", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.331326, + 46.541203 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "QUADRIPACK BORNE 2", + "ref:EU:EVSE": "FRCPIE6671695", + "ref": "FRCPIE6671695", + "name": "QUADRIPACK BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.846994, + 42.578429 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Village Catalan Est", + "ref:EU:EVSE": "FRIONE41310", + "ref": "FRIONE41310", + "name": "Village Catalan Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.684894, + 43.447921 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "Trets | Rue Clerion 1", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Trets | Rue Clerion 1", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.684894, + 43.447921 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "Trets | Rue Clerion 1", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Trets | Rue Clerion 1", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39603, + 48.943368 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "638a0f9abb23fb6dc695ab55", + "ref:EU:EVSE": "FRTNME18B92617", + "ref": "FRTNME18B92617", + "name": "638a0f9abb23fb6dc695ab55", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39603, + 48.943368 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "638a0f9abb23fb6dc695ab55", + "ref:EU:EVSE": "FRTNME18B92615", + "ref": "FRTNME18B92615", + "name": "638a0f9abb23fb6dc695ab55", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39603, + 48.943368 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "638a0f9abb23fb6dc695ab55", + "ref:EU:EVSE": "FRTNME18B92614", + "ref": "FRTNME18B92614", + "name": "638a0f9abb23fb6dc695ab55", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.91212277, + 43.92298703 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Morières", + "ref:EU:EVSE": "FRIONE4085", + "ref": "FRIONE4085", + "name": "Morières", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.91212277, + 43.92298703 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Morières", + "ref:EU:EVSE": "FRIONE40850", + "ref": "FRIONE40850", + "name": "Morières", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.91212277, + 43.92298703 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Morières", + "ref:EU:EVSE": "FRIONE40850", + "ref": "FRIONE40850", + "name": "Morières", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.91212277, + 43.92298703 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Morières", + "ref:EU:EVSE": "FRIONE40850", + "ref": "FRIONE40850", + "name": "Morières", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.91212277, + 43.92298703 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Morières", + "ref:EU:EVSE": "FRIONE40850", + "ref": "FRIONE40850", + "name": "Morières", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.170022, + 47.211736 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT EN VERON 15074 - Rue Paul Langevin", + "ref:EU:EVSE": "FRS37E1507", + "ref": "FRS37E1507", + "name": "BEAUMONT EN VERON 15074 - Rue Paul Langevin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.170022, + 47.211736 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT EN VERON 15074 - Rue Paul Langevin", + "ref:EU:EVSE": "FRS37E1507", + "ref": "FRS37E1507", + "name": "BEAUMONT EN VERON 15074 - Rue Paul Langevin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.447394, + 48.177233 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPINAL - Place Jeanne Arc - 144226 - CCS", + "ref:EU:EVSE": "FRS88E14422", + "ref": "FRS88E14422", + "name": "EPINAL - Place Jeanne Arc - 144226 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-17", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.447394, + 48.177233 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPINAL - Place Jeanne Arc - 144226 - CCS", + "ref:EU:EVSE": "FRS88E14422", + "ref": "FRS88E14422", + "name": "EPINAL - Place Jeanne Arc - 144226 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-17", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.846994, + 42.578429 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Village Catalan Est", + "ref:EU:EVSE": "FRIONE4131", + "ref": "FRIONE4131", + "name": "Village Catalan Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.846994, + 42.578429 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Village Catalan Est", + "ref:EU:EVSE": "FRIONE41310", + "ref": "FRIONE41310", + "name": "Village Catalan Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.232587, + 44.877413 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED SARLAT", + "ref:EU:EVSE": "FRCPIE6724055", + "ref": "FRCPIE6724055", + "name": "CGED SARLAT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.331326, + 46.541203 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "QUADRIPACK BORNE 2", + "ref:EU:EVSE": "FRCPIE6671685", + "ref": "FRCPIE6671685", + "name": "QUADRIPACK BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.232587, + 44.877413 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED SARLAT", + "ref:EU:EVSE": "FRCPIE6724055", + "ref": "FRCPIE6724055", + "name": "CGED SARLAT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.331326, + 46.541203 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "QUADRIPACK BORNE 2", + "ref:EU:EVSE": "FRCPIE6671685", + "ref": "FRCPIE6671685", + "name": "QUADRIPACK BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.332889, + 46.54068 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "QUADRIPACK BORNE 1", + "ref:EU:EVSE": "FRCPIE6671585", + "ref": "FRCPIE6671585", + "name": "QUADRIPACK BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.332889, + 46.54068 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "QUADRIPACK BORNE 1", + "ref:EU:EVSE": "FRCPIE6671585", + "ref": "FRCPIE6671585", + "name": "QUADRIPACK BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80509, + 50.927424 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BIOPATH HDF COQUELLES 2", + "ref:EU:EVSE": "FRCPIE6676145", + "ref": "FRCPIE6676145", + "name": "BIOPATH HDF COQUELLES 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80509, + 50.927424 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BIOPATH HDF COQUELLES 2", + "ref:EU:EVSE": "FRCPIE6676145", + "ref": "FRCPIE6676145", + "name": "BIOPATH HDF COQUELLES 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.60124, + 43.287488 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CCF AUBAGNE", + "ref:EU:EVSE": "FRCPIE6724145", + "ref": "FRCPIE6724145", + "name": "SONEPAR CCF AUBAGNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.60124, + 43.287488 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CCF AUBAGNE", + "ref:EU:EVSE": "FRCPIE6724145", + "ref": "FRCPIE6724145", + "name": "SONEPAR CCF AUBAGNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8003045, + 45.14952753 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire du Manoire", + "ref:EU:EVSE": "FRFASE330490", + "ref": "FRFASE330490", + "name": "Aire du Manoire", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8003045, + 45.14952753 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire du Manoire", + "ref:EU:EVSE": "FRFASE330490", + "ref": "FRFASE330490", + "name": "Aire du Manoire", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8003045, + 45.14952753 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire du Manoire", + "ref:EU:EVSE": "FRFASE330490", + "ref": "FRFASE330490", + "name": "Aire du Manoire", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8003045, + 45.14952753 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire du Manoire", + "ref:EU:EVSE": "FRFASE330490", + "ref": "FRFASE330490", + "name": "Aire du Manoire", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8003045, + 45.14952753 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire du Manoire", + "ref:EU:EVSE": "FRFASE330490", + "ref": "FRFASE330490", + "name": "Aire du Manoire", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8003045, + 45.14952753 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire du Manoire", + "ref:EU:EVSE": "FRFASE330490", + "ref": "FRFASE330490", + "name": "Aire du Manoire", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8003045, + 45.14952753 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire du Manoire", + "ref:EU:EVSE": "FRFASE330490", + "ref": "FRFASE330490", + "name": "Aire du Manoire", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8003045, + 45.14952753 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire du Manoire", + "ref:EU:EVSE": "FRFASE330490", + "ref": "FRFASE330490", + "name": "Aire du Manoire", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-09", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.544709, + 47.304761 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Henrichemont", + "ref:EU:EVSE": "FRIENE009301", + "ref": "FRIENE009301", + "name": "Henrichemont", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.544709, + 47.304761 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Henrichemont", + "ref:EU:EVSE": "FRIENE009302", + "ref": "FRIENE009302", + "name": "Henrichemont", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.244511, + 48.298942 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ILLIERS-COMBRAY - place Maunoury - 134925", + "ref:EU:EVSE": "FRS28E13492", + "ref": "FRS28E13492", + "name": "ILLIERS-COMBRAY - place Maunoury - 134925", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912983, + 44.236495 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sisteron", + "ref:EU:EVSE": "FRIONE44900", + "ref": "FRIONE44900", + "name": "Sisteron", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.963021, + 48.289934 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HMV SAINT DIE 2", + "ref:EU:EVSE": "FRCPIE6654675", + "ref": "FRCPIE6654675", + "name": "HMV SAINT DIE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.963021, + 48.289934 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HMV SAINT DIE 2", + "ref:EU:EVSE": "FRCPIE6654675", + "ref": "FRCPIE6654675", + "name": "HMV SAINT DIE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635956, + 48.825393 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR 3CCLIM CROISSY", + "ref:EU:EVSE": "FRCPIE6759675", + "ref": "FRCPIE6759675", + "name": "SONEPAR 3CCLIM CROISSY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635956, + 48.825393 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR 3CCLIM CROISSY", + "ref:EU:EVSE": "FRCPIE6759675", + "ref": "FRCPIE6759675", + "name": "SONEPAR 3CCLIM CROISSY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509765, + 47.700796 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MER 4037 - 1 Avenue Maréchal Maunoury", + "ref:EU:EVSE": "FRS41E403", + "ref": "FRS41E403", + "name": "MER 4037 - 1 Avenue Maréchal Maunoury", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509765, + 47.700796 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MER 4037 - 1 Avenue Maréchal Maunoury", + "ref:EU:EVSE": "FRS41E403", + "ref": "FRS41E403", + "name": "MER 4037 - 1 Avenue Maréchal Maunoury", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.547145, + 49.614324 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bolleville Est", + "ref:EU:EVSE": "FRIONE40230", + "ref": "FRIONE40230", + "name": "Bolleville Est", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.547145, + 49.614324 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bolleville Est", + "ref:EU:EVSE": "FRIONE40230", + "ref": "FRIONE40230", + "name": "Bolleville Est", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.547145, + 49.614324 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bolleville Est", + "ref:EU:EVSE": "FRIONE4023", + "ref": "FRIONE4023", + "name": "Bolleville Est", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.476357, + 43.29862 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U AGDE BORNE 3", + "ref:EU:EVSE": "FRCPIE6608855", + "ref": "FRCPIE6608855", + "name": "HYPER U AGDE BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.476357, + 43.29862 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U AGDE BORNE 3", + "ref:EU:EVSE": "FRCPIE6608855", + "ref": "FRCPIE6608855", + "name": "HYPER U AGDE BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.476357, + 43.29862 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U AGDE BORNE 3", + "ref:EU:EVSE": "FRCPIE6608865", + "ref": "FRCPIE6608865", + "name": "HYPER U AGDE BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.476357, + 43.29862 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U AGDE BORNE 3", + "ref:EU:EVSE": "FRCPIE6608865", + "ref": "FRCPIE6608865", + "name": "HYPER U AGDE BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.476357, + 43.29862 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U AGDE BORNE 3", + "ref:EU:EVSE": "FRCPIE6608875", + "ref": "FRCPIE6608875", + "name": "HYPER U AGDE BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.476357, + 43.29862 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HYPER U AGDE BORNE 3", + "ref:EU:EVSE": "FRCPIE6608875", + "ref": "FRCPIE6608875", + "name": "HYPER U AGDE BORNE 3", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.024389, + 47.797822 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAVEIL 4933 - Rue de Montrieux", + "ref:EU:EVSE": "FRS41E493", + "ref": "FRS41E493", + "name": "NAVEIL 4933 - Rue de Montrieux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.024389, + 47.797822 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAVEIL 4933 - Rue de Montrieux", + "ref:EU:EVSE": "FRS41E493", + "ref": "FRS41E493", + "name": "NAVEIL 4933 - Rue de Montrieux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.404699, + 46.373134 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "KRYS BORNE 1", + "ref:EU:EVSE": "FRCPIE6665415", + "ref": "FRCPIE6665415", + "name": "KRYS BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.404699, + 46.373134 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "KRYS BORNE 1", + "ref:EU:EVSE": "FRCPIE6665415", + "ref": "FRCPIE6665415", + "name": "KRYS BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912983, + 44.236495 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sisteron", + "ref:EU:EVSE": "FRIONE44900", + "ref": "FRIONE44900", + "name": "Sisteron", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912983, + 44.236495 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sisteron", + "ref:EU:EVSE": "FRIONE44900", + "ref": "FRIONE44900", + "name": "Sisteron", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.695643, + 48.532623 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR MELUN", + "ref:EU:EVSE": "FRCPIE6759465", + "ref": "FRCPIE6759465", + "name": "SONEPAR MELUN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.695643, + 48.532623 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR MELUN", + "ref:EU:EVSE": "FRCPIE6759465", + "ref": "FRCPIE6759465", + "name": "SONEPAR MELUN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418074, + 47.204422 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St MARTIN D'AUXIGNY - Place de la Mairie - 188179", + "ref:EU:EVSE": "FRS18E18818", + "ref": "FRS18E18818", + "name": "St MARTIN D'AUXIGNY - Place de la Mairie - 188179", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86101, + 45.243957 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Nazaire les Eymes", + "ref:EU:EVSE": "FRFASE330970", + "ref": "FRFASE330970", + "name": "Aire de Saint-Nazaire les Eymes", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.54542, + 48.870452 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTMIRAIL - 48602 - Place de Montlean", + "ref:EU:EVSE": "FRS51E4860", + "ref": "FRS51E4860", + "name": "MONTMIRAIL - 48602 - Place de Montlean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.54542, + 48.870452 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTMIRAIL - 48602 - Place de Montlean", + "ref:EU:EVSE": "FRS51E4860", + "ref": "FRS51E4860", + "name": "MONTMIRAIL - 48602 - Place de Montlean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.814386, + 46.447174 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LA BOUCHERIE RESTAURANT", + "ref:EU:EVSE": "FRCPIE6693455", + "ref": "FRCPIE6693455", + "name": "LA BOUCHERIE RESTAURANT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.814386, + 46.447174 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LA BOUCHERIE RESTAURANT", + "ref:EU:EVSE": "FRCPIE6693455", + "ref": "FRCPIE6693455", + "name": "LA BOUCHERIE RESTAURANT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86101, + 45.243957 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Nazaire les Eymes", + "ref:EU:EVSE": "FRFASE330970", + "ref": "FRFASE330970", + "name": "Aire de Saint-Nazaire les Eymes", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86101, + 45.243957 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Nazaire les Eymes", + "ref:EU:EVSE": "FRFASE330970", + "ref": "FRFASE330970", + "name": "Aire de Saint-Nazaire les Eymes", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86101, + 45.243957 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Nazaire les Eymes", + "ref:EU:EVSE": "FRFASE330970", + "ref": "FRFASE330970", + "name": "Aire de Saint-Nazaire les Eymes", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86101, + 45.243957 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Nazaire les Eymes", + "ref:EU:EVSE": "FRFASE330970", + "ref": "FRFASE330970", + "name": "Aire de Saint-Nazaire les Eymes", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86101, + 45.243957 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Nazaire les Eymes", + "ref:EU:EVSE": "FRFASE330970", + "ref": "FRFASE330970", + "name": "Aire de Saint-Nazaire les Eymes", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86101, + 45.243957 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Nazaire les Eymes", + "ref:EU:EVSE": "FRFASE330970", + "ref": "FRFASE330970", + "name": "Aire de Saint-Nazaire les Eymes", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418074, + 47.204422 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St MARTIN D'AUXIGNY - Place de la Mairie - 188179", + "ref:EU:EVSE": "FRS18E18817", + "ref": "FRS18E18817", + "name": "St MARTIN D'AUXIGNY - Place de la Mairie - 188179", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86101, + 45.243957 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Nazaire les Eymes", + "ref:EU:EVSE": "FRFASE330970", + "ref": "FRFASE330970", + "name": "Aire de Saint-Nazaire les Eymes", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.965497, + 48.290046 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HMV SAINT DIE 4", + "ref:EU:EVSE": "FRCPIE6654415", + "ref": "FRCPIE6654415", + "name": "HMV SAINT DIE 4", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.965497, + 48.290046 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HMV SAINT DIE 4", + "ref:EU:EVSE": "FRCPIE6654415", + "ref": "FRCPIE6654415", + "name": "HMV SAINT DIE 4", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.964374, + 48.289919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HMV SAINT DIE 3", + "ref:EU:EVSE": "FRCPIE6654585", + "ref": "FRCPIE6654585", + "name": "HMV SAINT DIE 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.964374, + 48.289919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HMV SAINT DIE 3", + "ref:EU:EVSE": "FRCPIE6654585", + "ref": "FRCPIE6654585", + "name": "HMV SAINT DIE 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.964374, + 48.289919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HMV SAINT DIE 3", + "ref:EU:EVSE": "FRCPIE6654685", + "ref": "FRCPIE6654685", + "name": "HMV SAINT DIE 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.964374, + 48.289919 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HMV SAINT DIE 3", + "ref:EU:EVSE": "FRCPIE6654685", + "ref": "FRCPIE6654685", + "name": "HMV SAINT DIE 3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765788, + 48.554601 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GUIFFAUMONT CHAMPAUBERT - 48890 - Casino", + "ref:EU:EVSE": "FRS51E4888", + "ref": "FRS51E4888", + "name": "GUIFFAUMONT CHAMPAUBERT - 48890 - Casino", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765788, + 48.554601 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GUIFFAUMONT CHAMPAUBERT - 48890 - Casino", + "ref:EU:EVSE": "FRS51E4889", + "ref": "FRS51E4889", + "name": "GUIFFAUMONT CHAMPAUBERT - 48890 - Casino", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912983, + 44.236495 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sisteron", + "ref:EU:EVSE": "FRIONE44900", + "ref": "FRIONE44900", + "name": "Sisteron", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912983, + 44.236495 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sisteron", + "ref:EU:EVSE": "FRIONE4490", + "ref": "FRIONE4490", + "name": "Sisteron", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14581, + 48.6494 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VANDOEUVRE-Parking relais du CHU Brabois - 187881", + "ref:EU:EVSE": "FRN54E20708", + "ref": "FRN54E20708", + "name": "VANDOEUVRE-Parking relais du CHU Brabois - 187881", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.114786, + 48.573786 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint Hilaire du Harcouët", + "ref:EU:EVSE": "FRIENE005501", + "ref": "FRIENE005501", + "name": "Saint Hilaire du Harcouët", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.74469, + 48.93661 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Boinville-en-Mantois", + "ref:EU:EVSE": "FRIENE005002", + "ref": "FRIENE005002", + "name": "Boinville-en-Mantois", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.74469, + 48.93661 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Boinville-en-Mantois", + "ref:EU:EVSE": "FRIENE005002", + "ref": "FRIENE005002", + "name": "Boinville-en-Mantois", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387813, + 47.664023 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Ménars", + "ref:EU:EVSE": "FRIONE40780", + "ref": "FRIONE40780", + "name": "Blois Ménars", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387813, + 47.664023 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Ménars", + "ref:EU:EVSE": "FRIONE40780", + "ref": "FRIONE40780", + "name": "Blois Ménars", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387813, + 47.664023 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Ménars", + "ref:EU:EVSE": "FRIONE40780", + "ref": "FRIONE40780", + "name": "Blois Ménars", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387813, + 47.664023 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Ménars", + "ref:EU:EVSE": "FRIONE40780", + "ref": "FRIONE40780", + "name": "Blois Ménars", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387813, + 47.664023 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Ménars", + "ref:EU:EVSE": "FRIONE4078", + "ref": "FRIONE4078", + "name": "Blois Ménars", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.312729, + 46.612695 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT POITIERS", + "ref:EU:EVSE": "FRCPIE6738725", + "ref": "FRCPIE6738725", + "name": "SONEPAR CONNECT POITIERS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.312729, + 46.612695 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT POITIERS", + "ref:EU:EVSE": "FRCPIE6738725", + "ref": "FRCPIE6738725", + "name": "SONEPAR CONNECT POITIERS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59565, + 47.555778 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Neuille-Pont-Pierre A28 CCS", + "ref:EU:EVSE": "FRS37E449", + "ref": "FRS37E449", + "name": "Super Chargeur Neuille-Pont-Pierre A28 CCS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59565, + 47.555778 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Neuille-Pont-Pierre A28 CCS", + "ref:EU:EVSE": "FRS37E449", + "ref": "FRS37E449", + "name": "Super Chargeur Neuille-Pont-Pierre A28 CCS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59565, + 47.555778 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Neuille-Pont-Pierre A28 CCS", + "ref:EU:EVSE": "FRS37E449", + "ref": "FRS37E449", + "name": "Super Chargeur Neuille-Pont-Pierre A28 CCS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59565, + 47.555778 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Neuille-Pont-Pierre A28 CCS", + "ref:EU:EVSE": "FRS37E450", + "ref": "FRS37E450", + "name": "Super Chargeur Neuille-Pont-Pierre A28 CCS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.529178, + 48.480158 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Andel", + "ref:EU:EVSE": "FRIENE005801", + "ref": "FRIENE005801", + "name": "Andel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.529178, + 48.480158 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Andel", + "ref:EU:EVSE": "FRIENE005801", + "ref": "FRIENE005801", + "name": "Andel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.529178, + 48.480158 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Andel", + "ref:EU:EVSE": "FRIENE005802", + "ref": "FRIENE005802", + "name": "Andel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.529178, + 48.480158 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Andel", + "ref:EU:EVSE": "FRIENE005802", + "ref": "FRIENE005802", + "name": "Andel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2005877, + 46.0008547 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire des Eglantiers - Ruffec", + "ref:EU:EVSE": "FRSHEE71", + "ref": "FRSHEE71", + "name": "Shell Aire des Eglantiers - Ruffec", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2005877, + 46.0008547 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire des Eglantiers - Ruffec", + "ref:EU:EVSE": "FRSHEE71", + "ref": "FRSHEE71", + "name": "Shell Aire des Eglantiers - Ruffec", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2005877, + 46.0008547 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire des Eglantiers - Ruffec", + "ref:EU:EVSE": "FRSHEE72", + "ref": "FRSHEE72", + "name": "Shell Aire des Eglantiers - Ruffec", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2005877, + 46.0008547 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire des Eglantiers - Ruffec", + "ref:EU:EVSE": "FRSHEE72", + "ref": "FRSHEE72", + "name": "Shell Aire des Eglantiers - Ruffec", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.74469, + 48.93661 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Boinville-en-Mantois", + "ref:EU:EVSE": "FRIENE005001", + "ref": "FRIENE005001", + "name": "Boinville-en-Mantois", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.74469, + 48.93661 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Boinville-en-Mantois", + "ref:EU:EVSE": "FRIENE005001", + "ref": "FRIENE005001", + "name": "Boinville-en-Mantois", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.208417, + 47.682055 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEFRANCOEUR - 60409 - Aerodrome de BLOIS", + "ref:EU:EVSE": "FRS41E6041", + "ref": "FRS41E6041", + "name": "VILLEFRANCOEUR - 60409 - Aerodrome de BLOIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.807788, + 50.10205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHOOZ - Rue Paul Emile Janson - 57639", + "ref:EU:EVSE": "FRS08E5763", + "ref": "FRS08E5763", + "name": "CHOOZ - Rue Paul Emile Janson - 57639", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.114786, + 48.573786 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint Hilaire du Harcouët", + "ref:EU:EVSE": "FRIENE005501", + "ref": "FRIENE005501", + "name": "Saint Hilaire du Harcouët", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.114786, + 48.573786 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint Hilaire du Harcouët", + "ref:EU:EVSE": "FRIENE005502", + "ref": "FRIENE005502", + "name": "Saint Hilaire du Harcouët", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.114786, + 48.573786 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint Hilaire du Harcouët", + "ref:EU:EVSE": "FRIENE005502", + "ref": "FRIENE005502", + "name": "Saint Hilaire du Harcouët", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.707178, + 50.010736 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HAYBES - Place de la mairie - 57561", + "ref:EU:EVSE": "FRS08E5756", + "ref": "FRS08E5756", + "name": "HAYBES - Place de la mairie - 57561", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.707178, + 50.010736 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HAYBES - Place de la mairie - 57561", + "ref:EU:EVSE": "FRS08E5756", + "ref": "FRS08E5756", + "name": "HAYBES - Place de la mairie - 57561", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702371, + 49.992544 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FUMAY - Place Aristide Briand - 57685", + "ref:EU:EVSE": "FRS08E5768", + "ref": "FRS08E5768", + "name": "FUMAY - Place Aristide Briand - 57685", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702371, + 49.992544 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FUMAY - Place Aristide Briand - 57685", + "ref:EU:EVSE": "FRS08E5768", + "ref": "FRS08E5768", + "name": "FUMAY - Place Aristide Briand - 57685", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14207, + 48.69796 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NANCY - PARKING PISCINE GENTILLY - 188610", + "ref:EU:EVSE": "FRN54E18861", + "ref": "FRN54E18861", + "name": "NANCY - PARKING PISCINE GENTILLY - 188610", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14207, + 48.69796 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NANCY - PARKING PISCINE GENTILLY - 188610", + "ref:EU:EVSE": "FRN54E18861", + "ref": "FRN54E18861", + "name": "NANCY - PARKING PISCINE GENTILLY - 188610", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.807788, + 50.10205 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHOOZ - Rue Paul Emile Janson - 57639", + "ref:EU:EVSE": "FRS08E5764", + "ref": "FRS08E5764", + "name": "CHOOZ - Rue Paul Emile Janson - 57639", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.208417, + 47.682055 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEFRANCOEUR - 60409 - Aerodrome de BLOIS", + "ref:EU:EVSE": "FRS41E6040", + "ref": "FRS41E6040", + "name": "VILLEFRANCOEUR - 60409 - Aerodrome de BLOIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.040516, + 49.245067 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Reims - 95878 - Rue Gambetta - Parking rectorat", + "ref:EU:EVSE": "FRS51E9587", + "ref": "FRS51E9587", + "name": "Reims - 95878 - Rue Gambetta - Parking rectorat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.040516, + 49.245067 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Reims - 95878 - Rue Gambetta - Parking rectorat", + "ref:EU:EVSE": "FRS51E9587", + "ref": "FRS51E9587", + "name": "Reims - 95878 - Rue Gambetta - Parking rectorat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825571, + 45.275563 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Ouest", + "ref:EU:EVSE": "FRIONE41300", + "ref": "FRIONE41300", + "name": "Saint-Rambert Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825571, + 45.275563 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Ouest", + "ref:EU:EVSE": "FRIONE41300", + "ref": "FRIONE41300", + "name": "Saint-Rambert Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825571, + 45.275563 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Ouest", + "ref:EU:EVSE": "FRIONE41300", + "ref": "FRIONE41300", + "name": "Saint-Rambert Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825571, + 45.275563 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Ouest", + "ref:EU:EVSE": "FRIONE41300", + "ref": "FRIONE41300", + "name": "Saint-Rambert Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825571, + 45.275563 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Ouest", + "ref:EU:EVSE": "FRIONE41300", + "ref": "FRIONE41300", + "name": "Saint-Rambert Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825571, + 45.275563 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Ouest", + "ref:EU:EVSE": "FRIONE41300", + "ref": "FRIONE41300", + "name": "Saint-Rambert Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825571, + 45.275563 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Ouest", + "ref:EU:EVSE": "FRIONE4130", + "ref": "FRIONE4130", + "name": "Saint-Rambert Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14581, + 48.6494 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VANDOEUVRE-Parking relais du CHU Brabois - 187881", + "ref:EU:EVSE": "FRN54E20708", + "ref": "FRN54E20708", + "name": "VANDOEUVRE-Parking relais du CHU Brabois - 187881", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14581, + 48.6494 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VANDOEUVRE-Parking relais du CHU Brabois - 187881", + "ref:EU:EVSE": "FRN54E18788", + "ref": "FRN54E18788", + "name": "VANDOEUVRE-Parking relais du CHU Brabois - 187881", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30883262, + 43.91498099 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labastide-Saint-Pierre | Avenue du Pech", + "ref:EU:EVSE": "FRIONE42150", + "ref": "FRIONE42150", + "name": "Labastide-Saint-Pierre | Avenue du Pech", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.661829, + 47.237075 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GEORGES RENAULT BORNE 1", + "ref:EU:EVSE": "FRCPIE6527975", + "ref": "FRCPIE6527975", + "name": "GEORGES RENAULT BORNE 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048383, + 46.904192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Herbiers", + "ref:EU:EVSE": "FRIONE45411", + "ref": "FRIONE45411", + "name": "Herbiers", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048383, + 46.904192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Herbiers", + "ref:EU:EVSE": "FRIONE4541", + "ref": "FRIONE4541", + "name": "Herbiers", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.692941, + 48.973818 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT MAGNANVILLE", + "ref:EU:EVSE": "FRCPIE6666625", + "ref": "FRCPIE6666625", + "name": "SONEPAR CONNECT MAGNANVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.692941, + 48.973818 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT MAGNANVILLE", + "ref:EU:EVSE": "FRCPIE6666625", + "ref": "FRCPIE6666625", + "name": "SONEPAR CONNECT MAGNANVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.241716, + 43.43521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VITROLLES 4", + "ref:EU:EVSE": "FRCPIE6642565", + "ref": "FRCPIE6642565", + "name": "SONEPAR VITROLLES 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.241716, + 43.43521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VITROLLES 4", + "ref:EU:EVSE": "FRCPIE6642565", + "ref": "FRCPIE6642565", + "name": "SONEPAR VITROLLES 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.241716, + 43.43521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VITROLLES 4", + "ref:EU:EVSE": "FRCPIE6642605", + "ref": "FRCPIE6642605", + "name": "SONEPAR VITROLLES 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.241716, + 43.43521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VITROLLES 4", + "ref:EU:EVSE": "FRCPIE6642605", + "ref": "FRCPIE6642605", + "name": "SONEPAR VITROLLES 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.241716, + 43.43521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VITROLLES 4", + "ref:EU:EVSE": "FRCPIE6642615", + "ref": "FRCPIE6642615", + "name": "SONEPAR VITROLLES 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.241716, + 43.43521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VITROLLES 4", + "ref:EU:EVSE": "FRCPIE6642615", + "ref": "FRCPIE6642615", + "name": "SONEPAR VITROLLES 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.241716, + 43.43521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VITROLLES 4", + "ref:EU:EVSE": "FRCPIE6642625", + "ref": "FRCPIE6642625", + "name": "SONEPAR VITROLLES 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.241716, + 43.43521 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VITROLLES 4", + "ref:EU:EVSE": "FRCPIE6642625", + "ref": "FRCPIE6642625", + "name": "SONEPAR VITROLLES 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.053657, + 49.26282 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UNILABS BIO CT REIMS PT", + "ref:EU:EVSE": "FRCPIE6645895", + "ref": "FRCPIE6645895", + "name": "UNILABS BIO CT REIMS PT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.053657, + 49.26282 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "UNILABS BIO CT REIMS PT", + "ref:EU:EVSE": "FRCPIE6645895", + "ref": "FRCPIE6645895", + "name": "UNILABS BIO CT REIMS PT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.396898, + 48.610175 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TREVERAY - 122901 - Mairie", + "ref:EU:EVSE": "FRS55E12290", + "ref": "FRS55E12290", + "name": "TREVERAY - 122901 - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.396898, + 48.610175 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TREVERAY - 122901 - Mairie", + "ref:EU:EVSE": "FRS55E12290", + "ref": "FRS55E12290", + "name": "TREVERAY - 122901 - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.255731, + 47.390532 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PONTLEVOY 2950 - Rue de la Saulaie", + "ref:EU:EVSE": "FRS41E295", + "ref": "FRS41E295", + "name": "PONTLEVOY 2950 - Rue de la Saulaie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.255731, + 47.390532 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PONTLEVOY 2950 - Rue de la Saulaie", + "ref:EU:EVSE": "FRS41E295", + "ref": "FRS41E295", + "name": "PONTLEVOY 2950 - Rue de la Saulaie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.931112, + 45.751247 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VAULX-EN-VELIN", + "ref:EU:EVSE": "FRCPIE6634525", + "ref": "FRCPIE6634525", + "name": "SONEPAR VAULX-EN-VELIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.931112, + 45.751247 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR VAULX-EN-VELIN", + "ref:EU:EVSE": "FRCPIE6634525", + "ref": "FRCPIE6634525", + "name": "SONEPAR VAULX-EN-VELIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.482925, + 47.350599 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEMERY 2952 - Rue du Balay", + "ref:EU:EVSE": "FRS41E295", + "ref": "FRS41E295", + "name": "CHEMERY 2952 - Rue du Balay", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048383, + 46.904192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Herbiers", + "ref:EU:EVSE": "FRIONE45411", + "ref": "FRIONE45411", + "name": "Herbiers", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048383, + 46.904192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Herbiers", + "ref:EU:EVSE": "FRIONE45411", + "ref": "FRIONE45411", + "name": "Herbiers", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048383, + 46.904192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Herbiers", + "ref:EU:EVSE": "FRIONE45411", + "ref": "FRIONE45411", + "name": "Herbiers", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048383, + 46.904192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Herbiers", + "ref:EU:EVSE": "FRIONE45410", + "ref": "FRIONE45410", + "name": "Herbiers", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.489556, + 43.450393 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE HU BORNE DC 02", + "ref:EU:EVSE": "FRCPIE6714285", + "ref": "FRCPIE6714285", + "name": "BORNE HU BORNE DC 02", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.489556, + 43.450393 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE HU BORNE DC 02", + "ref:EU:EVSE": "FRCPIE6739225", + "ref": "FRCPIE6739225", + "name": "BORNE HU BORNE DC 02", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.205307, + 44.70102 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Maurs", + "ref:EU:EVSE": "FRIENE004801", + "ref": "FRIENE004801", + "name": "Maurs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.205307, + 44.70102 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Maurs", + "ref:EU:EVSE": "FRIENE004801", + "ref": "FRIENE004801", + "name": "Maurs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.205307, + 44.70102 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Maurs", + "ref:EU:EVSE": "FRIENE004802", + "ref": "FRIENE004802", + "name": "Maurs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.205307, + 44.70102 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Maurs", + "ref:EU:EVSE": "FRIENE004802", + "ref": "FRIENE004802", + "name": "Maurs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.67127, + 48.0259 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST AME - RUE DU STADE - 184031 - CCS", + "ref:EU:EVSE": "FRS88E18403", + "ref": "FRS88E18403", + "name": "ST AME - RUE DU STADE - 184031 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.67127, + 48.0259 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST AME - RUE DU STADE - 184031 - CCS", + "ref:EU:EVSE": "FRS88E18403", + "ref": "FRS88E18403", + "name": "ST AME - RUE DU STADE - 184031 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048383, + 46.904192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Herbiers", + "ref:EU:EVSE": "FRIONE45410", + "ref": "FRIONE45410", + "name": "Herbiers", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13341, + 43.715255 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Ambrussum Nord", + "ref:EU:EVSE": "FRFASE330070", + "ref": "FRFASE330070", + "name": "Aire d’Ambrussum Nord", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048383, + 46.904192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Herbiers", + "ref:EU:EVSE": "FRIONE45411", + "ref": "FRIONE45411", + "name": "Herbiers", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048383, + 46.904192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Herbiers", + "ref:EU:EVSE": "FRIONE45410", + "ref": "FRIONE45410", + "name": "Herbiers", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048383, + 46.904192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Herbiers", + "ref:EU:EVSE": "FRIONE45410", + "ref": "FRIONE45410", + "name": "Herbiers", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048383, + 46.904192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Herbiers", + "ref:EU:EVSE": "FRIONE45410", + "ref": "FRIONE45410", + "name": "Herbiers", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048383, + 46.904192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Herbiers", + "ref:EU:EVSE": "FRIONE45410", + "ref": "FRIONE45410", + "name": "Herbiers", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048383, + 46.904192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Herbiers", + "ref:EU:EVSE": "FRIONE45410", + "ref": "FRIONE45410", + "name": "Herbiers", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048383, + 46.904192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Herbiers", + "ref:EU:EVSE": "FRIONE45410", + "ref": "FRIONE45410", + "name": "Herbiers", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048383, + 46.904192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Herbiers", + "ref:EU:EVSE": "FRIONE45410", + "ref": "FRIONE45410", + "name": "Herbiers", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048383, + 46.904192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Herbiers", + "ref:EU:EVSE": "FRIONE45411", + "ref": "FRIONE45411", + "name": "Herbiers", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048383, + 46.904192 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Herbiers", + "ref:EU:EVSE": "FRIONE45411", + "ref": "FRIONE45411", + "name": "Herbiers", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.482925, + 47.350599 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEMERY 2952 - Rue du Balay", + "ref:EU:EVSE": "FRS41E295", + "ref": "FRS41E295", + "name": "CHEMERY 2952 - Rue du Balay", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.661829, + 47.237075 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GEORGES RENAULT BORNE 1", + "ref:EU:EVSE": "FRCPIE6527975", + "ref": "FRCPIE6527975", + "name": "GEORGES RENAULT BORNE 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14581, + 48.6494 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VANDOEUVRE-Parking relais du CHU Brabois - 187881", + "ref:EU:EVSE": "FRN54E18788", + "ref": "FRN54E18788", + "name": "VANDOEUVRE-Parking relais du CHU Brabois - 187881", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.661829, + 47.237075 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GEORGES RENAULT BORNE 1", + "ref:EU:EVSE": "FRCPIE6530035", + "ref": "FRCPIE6530035", + "name": "GEORGES RENAULT BORNE 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.507029, + 46.720829 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St AMAND-MONTROND - Cours Manuel 2 - 171693", + "ref:EU:EVSE": "FRS18E17169", + "ref": "FRS18E17169", + "name": "St AMAND-MONTROND - Cours Manuel 2 - 171693", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-04", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046836, + 47.849873 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SAS AUNAUDIS BORNE 2", + "ref:EU:EVSE": "FRCPIE6753105", + "ref": "FRCPIE6753105", + "name": "SAS AUNAUDIS BORNE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046836, + 47.849873 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SAS AUNAUDIS BORNE 2", + "ref:EU:EVSE": "FRCPIE6753105", + "ref": "FRCPIE6753105", + "name": "SAS AUNAUDIS BORNE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046546, + 47.849887 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SAS AUNAUDIS BORNE 1", + "ref:EU:EVSE": "FRCPIE6753115", + "ref": "FRCPIE6753115", + "name": "SAS AUNAUDIS BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046546, + 47.849887 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SAS AUNAUDIS BORNE 1", + "ref:EU:EVSE": "FRCPIE6753115", + "ref": "FRCPIE6753115", + "name": "SAS AUNAUDIS BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.418951, + 43.585904 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Est", + "ref:EU:EVSE": "FRIONE40290", + "ref": "FRIONE40290", + "name": "Labenne Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.418951, + 43.585904 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Est", + "ref:EU:EVSE": "FRIONE40290", + "ref": "FRIONE40290", + "name": "Labenne Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.418951, + 43.585904 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Est", + "ref:EU:EVSE": "FRIONE40290", + "ref": "FRIONE40290", + "name": "Labenne Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.418951, + 43.585904 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Est", + "ref:EU:EVSE": "FRIONE40290", + "ref": "FRIONE40290", + "name": "Labenne Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.418951, + 43.585904 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Est", + "ref:EU:EVSE": "FRIONE4029", + "ref": "FRIONE4029", + "name": "Labenne Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.420473, + 43.586775 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Ouest", + "ref:EU:EVSE": "FRIONE40520", + "ref": "FRIONE40520", + "name": "Labenne Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.420473, + 43.586775 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Ouest", + "ref:EU:EVSE": "FRIONE40520", + "ref": "FRIONE40520", + "name": "Labenne Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.420473, + 43.586775 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Ouest", + "ref:EU:EVSE": "FRIONE40520", + "ref": "FRIONE40520", + "name": "Labenne Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.420473, + 43.586775 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Ouest", + "ref:EU:EVSE": "FRIONE40520", + "ref": "FRIONE40520", + "name": "Labenne Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.420473, + 43.586775 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Ouest", + "ref:EU:EVSE": "FRIONE4052", + "ref": "FRIONE4052", + "name": "Labenne Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.748407, + 47.002756 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BENGY-sur-Craon - Rte de Bourges - 186608", + "ref:EU:EVSE": "FRS18E18660", + "ref": "FRS18E18660", + "name": "BENGY-sur-Craon - Rte de Bourges - 186608", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.748407, + 47.002756 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BENGY-sur-Craon - Rte de Bourges - 186608", + "ref:EU:EVSE": "FRS18E18660", + "ref": "FRS18E18660", + "name": "BENGY-sur-Craon - Rte de Bourges - 186608", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.347765, + 47.720211 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Diges", + "ref:EU:EVSE": "FRIENE007601", + "ref": "FRIENE007601", + "name": "Diges", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.347765, + 47.720211 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Diges", + "ref:EU:EVSE": "FRIENE007601", + "ref": "FRIENE007601", + "name": "Diges", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.347765, + 47.720211 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Diges", + "ref:EU:EVSE": "FRIENE007602", + "ref": "FRIENE007602", + "name": "Diges", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.347765, + 47.720211 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Diges", + "ref:EU:EVSE": "FRIENE007602", + "ref": "FRIENE007602", + "name": "Diges", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.507029, + 46.720829 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St AMAND-MONTROND - Cours Manuel 2 - 171693", + "ref:EU:EVSE": "FRS18E17169", + "ref": "FRS18E17169", + "name": "St AMAND-MONTROND - Cours Manuel 2 - 171693", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-04", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.995222, + 47.155156 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MASSAY - Avenue Marechal Foch - 205973", + "ref:EU:EVSE": "FRS18E20597", + "ref": "FRS18E20597", + "name": "MASSAY - Avenue Marechal Foch - 205973", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.995222, + 47.155156 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MASSAY - Avenue Marechal Foch - 205973", + "ref:EU:EVSE": "FRS18E20597", + "ref": "FRS18E20597", + "name": "MASSAY - Avenue Marechal Foch - 205973", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.063073, + 48.970463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Ussy sur Marne", + "ref:EU:EVSE": "FRFASE331120", + "ref": "FRFASE331120", + "name": "Aire de Ussy sur Marne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.661829, + 47.237075 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GEORGES RENAULT BORNE 1", + "ref:EU:EVSE": "FRCPIE6530035", + "ref": "FRCPIE6530035", + "name": "GEORGES RENAULT BORNE 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.661829, + 47.237075 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GEORGES RENAULT BORNE 1", + "ref:EU:EVSE": "FRCPIE6654735", + "ref": "FRCPIE6654735", + "name": "GEORGES RENAULT BORNE 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.661829, + 47.237075 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GEORGES RENAULT BORNE 1", + "ref:EU:EVSE": "FRCPIE6654735", + "ref": "FRCPIE6654735", + "name": "GEORGES RENAULT BORNE 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25417363, + 46.4339625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PREVERANGES - Mairie - 148778", + "ref:EU:EVSE": "FRS18E14877", + "ref": "FRS18E14877", + "name": "PREVERANGES - Mairie - 148778", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25417363, + 46.4339625 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PREVERANGES - Mairie - 148778", + "ref:EU:EVSE": "FRS18E14877", + "ref": "FRS18E14877", + "name": "PREVERANGES - Mairie - 148778", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.063073, + 48.970463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Ussy sur Marne", + "ref:EU:EVSE": "FRFASE331120", + "ref": "FRFASE331120", + "name": "Aire de Ussy sur Marne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.063073, + 48.970463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Ussy sur Marne", + "ref:EU:EVSE": "FRFASE331120", + "ref": "FRFASE331120", + "name": "Aire de Ussy sur Marne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.063073, + 48.970463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Ussy sur Marne", + "ref:EU:EVSE": "FRFASE331120", + "ref": "FRFASE331120", + "name": "Aire de Ussy sur Marne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.063073, + 48.970463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Ussy sur Marne", + "ref:EU:EVSE": "FRFASE331120", + "ref": "FRFASE331120", + "name": "Aire de Ussy sur Marne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.063073, + 48.970463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Ussy sur Marne", + "ref:EU:EVSE": "FRFASE331120", + "ref": "FRFASE331120", + "name": "Aire de Ussy sur Marne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.239191, + 46.895022 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LUMELEC SOFITOM1", + "ref:EU:EVSE": "FRCPIE6650145", + "ref": "FRCPIE6650145", + "name": "LUMELEC SOFITOM1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.063073, + 48.970463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Ussy sur Marne", + "ref:EU:EVSE": "FRFASE331120", + "ref": "FRFASE331120", + "name": "Aire de Ussy sur Marne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.063073, + 48.970463 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Ussy sur Marne", + "ref:EU:EVSE": "FRFASE331120", + "ref": "FRFASE331120", + "name": "Aire de Ussy sur Marne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.187398, + 48.273996 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Kergoët", + "ref:EU:EVSE": "FRIONE43600", + "ref": "FRIONE43600", + "name": "Kergoët", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.187398, + 48.273996 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Kergoët", + "ref:EU:EVSE": "FRIONE43600", + "ref": "FRIONE43600", + "name": "Kergoët", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.187398, + 48.273996 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Kergoët", + "ref:EU:EVSE": "FRIONE43600", + "ref": "FRIONE43600", + "name": "Kergoët", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.187398, + 48.273996 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Kergoët", + "ref:EU:EVSE": "FRIONE43600", + "ref": "FRIONE43600", + "name": "Kergoët", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31743, + 43.489727 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ITM SEYESSES 1 BRVE 1", + "ref:EU:EVSE": "FRCPIE6731545", + "ref": "FRCPIE6731545", + "name": "ITM SEYESSES 1 BRVE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31743, + 43.489727 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ITM SEYESSES 1 BRVE 1", + "ref:EU:EVSE": "FRCPIE6731545", + "ref": "FRCPIE6731545", + "name": "ITM SEYESSES 1 BRVE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.239191, + 46.895022 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LUMELEC SOFITOM1", + "ref:EU:EVSE": "FRCPIE6650145", + "ref": "FRCPIE6650145", + "name": "LUMELEC SOFITOM1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2005877, + 46.0008547 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire des Eglantiers - Ruffec", + "ref:EU:EVSE": "FRSHEE72", + "ref": "FRSHEE72", + "name": "Shell Aire des Eglantiers - Ruffec", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30883262, + 43.91498099 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labastide-Saint-Pierre | Avenue du Pech", + "ref:EU:EVSE": "FRIONE42150", + "ref": "FRIONE42150", + "name": "Labastide-Saint-Pierre | Avenue du Pech", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.489556, + 43.450393 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE HU BORNE DC 02", + "ref:EU:EVSE": "FRCPIE6714275", + "ref": "FRCPIE6714275", + "name": "BORNE HU BORNE DC 02", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241201, + 47.094379 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bourges Sainte Thorette", + "ref:EU:EVSE": "FRIONE4161", + "ref": "FRIONE4161", + "name": "Bourges Sainte Thorette", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6737625", + "ref": "FRCPIE6737625", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6737655", + "ref": "FRCPIE6737655", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6737655", + "ref": "FRCPIE6737655", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6737665", + "ref": "FRCPIE6737665", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6737665", + "ref": "FRCPIE6737665", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22902, + 48.6585 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LANEUVEVILLE - Parking de la piscine - 187442", + "ref:EU:EVSE": "FRN54E18744", + "ref": "FRN54E18744", + "name": "LANEUVEVILLE - Parking de la piscine - 187442", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22902, + 48.6585 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LANEUVEVILLE - Parking de la piscine - 187442", + "ref:EU:EVSE": "FRN54E18744", + "ref": "FRN54E18744", + "name": "LANEUVEVILLE - Parking de la piscine - 187442", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.19956, + 48.6931 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NANCY - Parking mail de l'horloge - 187727", + "ref:EU:EVSE": "FRN54E18772", + "ref": "FRN54E18772", + "name": "NANCY - Parking mail de l'horloge - 187727", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.19956, + 48.6931 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NANCY - Parking mail de l'horloge - 187727", + "ref:EU:EVSE": "FRN54E18772", + "ref": "FRN54E18772", + "name": "NANCY - Parking mail de l'horloge - 187727", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13388, + 48.6994 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAXOU - Centre commercial la cascade - 187763", + "ref:EU:EVSE": "FRN54E18776", + "ref": "FRN54E18776", + "name": "LAXOU - Centre commercial la cascade - 187763", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13388, + 48.6994 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAXOU - Centre commercial la cascade - 187763", + "ref:EU:EVSE": "FRN54E18776", + "ref": "FRN54E18776", + "name": "LAXOU - Centre commercial la cascade - 187763", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-30", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref:EU:EVSE": "FRIONE45200", + "ref": "FRIONE45200", + "name": "Pays de Brives Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref:EU:EVSE": "FRIONE45200", + "ref": "FRIONE45200", + "name": "Pays de Brives Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref:EU:EVSE": "FRIONE45200", + "ref": "FRIONE45200", + "name": "Pays de Brives Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref:EU:EVSE": "FRIONE45200", + "ref": "FRIONE45200", + "name": "Pays de Brives Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref:EU:EVSE": "FRIONE45200", + "ref": "FRIONE45200", + "name": "Pays de Brives Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref:EU:EVSE": "FRIONE45200", + "ref": "FRIONE45200", + "name": "Pays de Brives Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref:EU:EVSE": "FRIONE45200", + "ref": "FRIONE45200", + "name": "Pays de Brives Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref:EU:EVSE": "FRIONE45201", + "ref": "FRIONE45201", + "name": "Pays de Brives Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref:EU:EVSE": "FRIONE4520", + "ref": "FRIONE4520", + "name": "Pays de Brives Nord", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241201, + 47.094379 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bourges Sainte Thorette", + "ref:EU:EVSE": "FRIONE41610", + "ref": "FRIONE41610", + "name": "Bourges Sainte Thorette", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6737625", + "ref": "FRCPIE6737625", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6737565", + "ref": "FRCPIE6737565", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6737565", + "ref": "FRCPIE6737565", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6736235", + "ref": "FRCPIE6736235", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.874112, + 45.59649 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ALDIANCE 1", + "ref:EU:EVSE": "FRCPIE6742485", + "ref": "FRCPIE6742485", + "name": "SONEPAR ALDIANCE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.874112, + 45.59649 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ALDIANCE 1", + "ref:EU:EVSE": "FRCPIE6742495", + "ref": "FRCPIE6742495", + "name": "SONEPAR ALDIANCE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.874112, + 45.59649 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ALDIANCE 1", + "ref:EU:EVSE": "FRCPIE6742495", + "ref": "FRCPIE6742495", + "name": "SONEPAR ALDIANCE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.538226, + 44.817371 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "644a2ea935cf6d6b98b2a0b7", + "ref:EU:EVSE": "FRTNME08910961", + "ref": "FRTNME08910961", + "name": "644a2ea935cf6d6b98b2a0b7", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.538226, + 44.817371 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "644a2ea935cf6d6b98b2a0b7", + "ref:EU:EVSE": "FRTNME08912792", + "ref": "FRTNME08912792", + "name": "644a2ea935cf6d6b98b2a0b7", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537032, + 43.247589 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 2 DC", + "ref:EU:EVSE": "FRCPIE6741255", + "ref": "FRCPIE6741255", + "name": "E.LECLERC BORNE 2 DC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537032, + 43.247589 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 2 DC", + "ref:EU:EVSE": "FRCPIE6741255", + "ref": "FRCPIE6741255", + "name": "E.LECLERC BORNE 2 DC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537032, + 43.247589 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 2 DC", + "ref:EU:EVSE": "FRCPIE6741505", + "ref": "FRCPIE6741505", + "name": "E.LECLERC BORNE 2 DC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537032, + 43.247589 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "E.LECLERC BORNE 2 DC", + "ref:EU:EVSE": "FRCPIE6741505", + "ref": "FRCPIE6741505", + "name": "E.LECLERC BORNE 2 DC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6736235", + "ref": "FRCPIE6736235", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6737255", + "ref": "FRCPIE6737255", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6736575", + "ref": "FRCPIE6736575", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6736575", + "ref": "FRCPIE6736575", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6736625", + "ref": "FRCPIE6736625", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6736625", + "ref": "FRCPIE6736625", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6737035", + "ref": "FRCPIE6737035", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6737035", + "ref": "FRCPIE6737035", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6737185", + "ref": "FRCPIE6737185", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6737185", + "ref": "FRCPIE6737185", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 72", + "ref:EU:EVSE": "FRCPIE6737255", + "ref": "FRCPIE6737255", + "name": "RAW PARISGIVERNY 72", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241201, + 47.094379 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bourges Sainte Thorette", + "ref:EU:EVSE": "FRIONE41610", + "ref": "FRIONE41610", + "name": "Bourges Sainte Thorette", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.720788, + 48.263874 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Nemours", + "ref:EU:EVSE": "FRIONE40860", + "ref": "FRIONE40860", + "name": "Nemours", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16809, + 47.803507 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sarthe Sud", + "ref:EU:EVSE": "FRIONE4034", + "ref": "FRIONE4034", + "name": "Sarthe Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.720788, + 48.263874 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Nemours", + "ref:EU:EVSE": "FRIONE40860", + "ref": "FRIONE40860", + "name": "Nemours", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.602227, + 48.755076 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMERCY - 157987 - Piscine", + "ref:EU:EVSE": "FRS55E15798", + "ref": "FRS55E15798", + "name": "COMMERCY - 157987 - Piscine", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.602227, + 48.755076 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMERCY - 157987 - Piscine", + "ref:EU:EVSE": "FRS55E15798", + "ref": "FRS55E15798", + "name": "COMMERCY - 157987 - Piscine", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.602227, + 48.755076 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMERCY - 157987 - Piscine", + "ref:EU:EVSE": "FRS55E15800", + "ref": "FRS55E15800", + "name": "COMMERCY - 157987 - Piscine", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.602227, + 48.755076 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMERCY - 157987 - Piscine", + "ref:EU:EVSE": "FRS55E15800", + "ref": "FRS55E15800", + "name": "COMMERCY - 157987 - Piscine", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.602227, + 48.755076 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMERCY - 157987 - Piscine", + "ref:EU:EVSE": "FRS55E15801", + "ref": "FRS55E15801", + "name": "COMMERCY - 157987 - Piscine", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.602227, + 48.755076 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMERCY - 157987 - Piscine", + "ref:EU:EVSE": "FRS55E15801", + "ref": "FRS55E15801", + "name": "COMMERCY - 157987 - Piscine", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.602227, + 48.755076 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMERCY - 157987 - Piscine", + "ref:EU:EVSE": "FRS55E15801", + "ref": "FRS55E15801", + "name": "COMMERCY - 157987 - Piscine", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.602227, + 48.755076 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMERCY - 157987 - Piscine", + "ref:EU:EVSE": "FRS55E15801", + "ref": "FRS55E15801", + "name": "COMMERCY - 157987 - Piscine", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.602227, + 48.755076 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMERCY - 157987 - Piscine", + "ref:EU:EVSE": "FRS55E16758", + "ref": "FRS55E16758", + "name": "COMMERCY - 157987 - Piscine", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.602227, + 48.755076 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMERCY - 157987 - Piscine", + "ref:EU:EVSE": "FRS55E16758", + "ref": "FRS55E16758", + "name": "COMMERCY - 157987 - Piscine", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.490129, + 46.11788 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Ceignes Haut Bugey", + "ref:EU:EVSE": "FRIONE43120", + "ref": "FRIONE43120", + "name": "Ceignes Haut Bugey", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.490129, + 46.11788 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Ceignes Haut Bugey", + "ref:EU:EVSE": "FRIONE43120", + "ref": "FRIONE43120", + "name": "Ceignes Haut Bugey", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.490129, + 46.11788 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Ceignes Haut Bugey", + "ref:EU:EVSE": "FRIONE43120", + "ref": "FRIONE43120", + "name": "Ceignes Haut Bugey", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.490129, + 46.11788 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Ceignes Haut Bugey", + "ref:EU:EVSE": "FRIONE43120", + "ref": "FRIONE43120", + "name": "Ceignes Haut Bugey", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.490129, + 46.11788 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Ceignes Haut Bugey", + "ref:EU:EVSE": "FRIONE4312", + "ref": "FRIONE4312", + "name": "Ceignes Haut Bugey", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13341, + 43.715255 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Ambrussum Nord", + "ref:EU:EVSE": "FRFASE330070", + "ref": "FRFASE330070", + "name": "Aire d’Ambrussum Nord", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13341, + 43.715255 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Ambrussum Nord", + "ref:EU:EVSE": "FRFASE330070", + "ref": "FRFASE330070", + "name": "Aire d’Ambrussum Nord", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13341, + 43.715255 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Ambrussum Nord", + "ref:EU:EVSE": "FRFASE330070", + "ref": "FRFASE330070", + "name": "Aire d’Ambrussum Nord", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13341, + 43.715255 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Ambrussum Nord", + "ref:EU:EVSE": "FRFASE330070", + "ref": "FRFASE330070", + "name": "Aire d’Ambrussum Nord", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13341, + 43.715255 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Ambrussum Nord", + "ref:EU:EVSE": "FRFASE330070", + "ref": "FRFASE330070", + "name": "Aire d’Ambrussum Nord", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13341, + 43.715255 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Ambrussum Nord", + "ref:EU:EVSE": "FRFASE330070", + "ref": "FRFASE330070", + "name": "Aire d’Ambrussum Nord", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-22", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.602227, + 48.755076 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMERCY - 157987 - Piscine", + "ref:EU:EVSE": "FRS55E15795", + "ref": "FRS55E15795", + "name": "COMMERCY - 157987 - Piscine", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.602227, + 48.755076 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMERCY - 157987 - Piscine", + "ref:EU:EVSE": "FRS55E15795", + "ref": "FRS55E15795", + "name": "COMMERCY - 157987 - Piscine", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.406892, + 48.111453 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ITEP-ROCHERS BORNE 1", + "ref:EU:EVSE": "FRCPIE6672815", + "ref": "FRCPIE6672815", + "name": "ITEP-ROCHERS BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06949, + 45.875816 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Fontanelles", + "ref:EU:EVSE": "FRIONE40900", + "ref": "FRIONE40900", + "name": "Fontanelles", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.720788, + 48.263874 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Nemours", + "ref:EU:EVSE": "FRIONE40860", + "ref": "FRIONE40860", + "name": "Nemours", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.720788, + 48.263874 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Nemours", + "ref:EU:EVSE": "FRIONE40860", + "ref": "FRIONE40860", + "name": "Nemours", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.720788, + 48.263874 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Nemours", + "ref:EU:EVSE": "FRIONE4086", + "ref": "FRIONE4086", + "name": "Nemours", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.379958, + 49.301268 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE HYPER U STATION 2", + "ref:EU:EVSE": "FRCPIE6583555", + "ref": "FRCPIE6583555", + "name": "BORNE HYPER U STATION 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.379958, + 49.301268 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE HYPER U STATION 2", + "ref:EU:EVSE": "FRCPIE6583555", + "ref": "FRCPIE6583555", + "name": "BORNE HYPER U STATION 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.379958, + 49.301268 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE HYPER U STATION 2", + "ref:EU:EVSE": "FRCPIE6590315", + "ref": "FRCPIE6590315", + "name": "BORNE HYPER U STATION 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.379958, + 49.301268 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE HYPER U STATION 2", + "ref:EU:EVSE": "FRCPIE6590315", + "ref": "FRCPIE6590315", + "name": "BORNE HYPER U STATION 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06949, + 45.875816 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Fontanelles", + "ref:EU:EVSE": "FRIONE40900", + "ref": "FRIONE40900", + "name": "Fontanelles", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06949, + 45.875816 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Fontanelles", + "ref:EU:EVSE": "FRIONE40900", + "ref": "FRIONE40900", + "name": "Fontanelles", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06949, + 45.875816 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Fontanelles", + "ref:EU:EVSE": "FRIONE40900", + "ref": "FRIONE40900", + "name": "Fontanelles", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.406892, + 48.111453 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ITEP-ROCHERS BORNE 1", + "ref:EU:EVSE": "FRCPIE6672815", + "ref": "FRCPIE6672815", + "name": "ITEP-ROCHERS BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06949, + 45.875816 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Fontanelles", + "ref:EU:EVSE": "FRIONE4090", + "ref": "FRIONE4090", + "name": "Fontanelles", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431517, + 49.061577 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 41", + "ref:EU:EVSE": "FRCPIE6720155", + "ref": "FRCPIE6720155", + "name": "RAW PARISGIVERNY 41", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431517, + 49.061577 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 41", + "ref:EU:EVSE": "FRCPIE6720155", + "ref": "FRCPIE6720155", + "name": "RAW PARISGIVERNY 41", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431517, + 49.061577 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 41", + "ref:EU:EVSE": "FRCPIE6726615", + "ref": "FRCPIE6726615", + "name": "RAW PARISGIVERNY 41", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431517, + 49.061577 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 41", + "ref:EU:EVSE": "FRCPIE6726615", + "ref": "FRCPIE6726615", + "name": "RAW PARISGIVERNY 41", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431517, + 49.061577 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 41", + "ref:EU:EVSE": "FRCPIE6736615", + "ref": "FRCPIE6736615", + "name": "RAW PARISGIVERNY 41", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431517, + 49.061577 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 41", + "ref:EU:EVSE": "FRCPIE6736615", + "ref": "FRCPIE6736615", + "name": "RAW PARISGIVERNY 41", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431517, + 49.061577 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 41", + "ref:EU:EVSE": "FRCPIE6736725", + "ref": "FRCPIE6736725", + "name": "RAW PARISGIVERNY 41", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431517, + 49.061577 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 41", + "ref:EU:EVSE": "FRCPIE6736725", + "ref": "FRCPIE6736725", + "name": "RAW PARISGIVERNY 41", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.874112, + 45.59649 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ALDIANCE 1", + "ref:EU:EVSE": "FRCPIE6742485", + "ref": "FRCPIE6742485", + "name": "SONEPAR ALDIANCE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16809, + 47.803507 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sarthe Sud", + "ref:EU:EVSE": "FRIONE40340", + "ref": "FRIONE40340", + "name": "Sarthe Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30883262, + 43.91498099 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labastide-Saint-Pierre | Avenue du Pech", + "ref:EU:EVSE": "FRIONE42150", + "ref": "FRIONE42150", + "name": "Labastide-Saint-Pierre | Avenue du Pech", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13469517, + 47.41925327 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué la Couaille", + "ref:EU:EVSE": "FRIONE40220", + "ref": "FRIONE40220", + "name": "Longué la Couaille", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3735372, + 48.8488274 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Haras HW", + "ref:EU:EVSE": "FRSHEE69", + "ref": "FRSHEE69", + "name": "Shell Aire de Haras HW", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3735372, + 48.8488274 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Haras HW", + "ref:EU:EVSE": "FRSHEE70", + "ref": "FRSHEE70", + "name": "Shell Aire de Haras HW", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3735372, + 48.8488274 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Haras HW", + "ref:EU:EVSE": "FRSHEE70", + "ref": "FRSHEE70", + "name": "Shell Aire de Haras HW", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3735372, + 48.8488274 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Haras HW", + "ref:EU:EVSE": "FRSHEE70", + "ref": "FRSHEE70", + "name": "Shell Aire de Haras HW", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3735372, + 48.8488274 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Haras HW", + "ref:EU:EVSE": "FRSHEE70", + "ref": "FRSHEE70", + "name": "Shell Aire de Haras HW", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref:EU:EVSE": "FRIONE45210", + "ref": "FRIONE45210", + "name": "Pays de Brives Sud", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref:EU:EVSE": "FRIONE45210", + "ref": "FRIONE45210", + "name": "Pays de Brives Sud", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref:EU:EVSE": "FRIONE45210", + "ref": "FRIONE45210", + "name": "Pays de Brives Sud", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref:EU:EVSE": "FRIONE45210", + "ref": "FRIONE45210", + "name": "Pays de Brives Sud", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref:EU:EVSE": "FRIONE45210", + "ref": "FRIONE45210", + "name": "Pays de Brives Sud", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref:EU:EVSE": "FRIONE45210", + "ref": "FRIONE45210", + "name": "Pays de Brives Sud", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref:EU:EVSE": "FRIONE45210", + "ref": "FRIONE45210", + "name": "Pays de Brives Sud", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref:EU:EVSE": "FRIONE45210", + "ref": "FRIONE45210", + "name": "Pays de Brives Sud", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref:EU:EVSE": "FRIONE4521", + "ref": "FRIONE4521", + "name": "Pays de Brives Sud", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24555436, + 43.33794647 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Volvestre", + "ref:EU:EVSE": "FRIONE40190", + "ref": "FRIONE40190", + "name": "Volvestre", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24555436, + 43.33794647 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Volvestre", + "ref:EU:EVSE": "FRIONE40190", + "ref": "FRIONE40190", + "name": "Volvestre", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24555436, + 43.33794647 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Volvestre", + "ref:EU:EVSE": "FRIONE40190", + "ref": "FRIONE40190", + "name": "Volvestre", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24555436, + 43.33794647 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Volvestre", + "ref:EU:EVSE": "FRIONE40190", + "ref": "FRIONE40190", + "name": "Volvestre", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24555436, + 43.33794647 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Volvestre", + "ref:EU:EVSE": "FRIONE4019", + "ref": "FRIONE4019", + "name": "Volvestre", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13469517, + 47.41925327 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué la Couaille", + "ref:EU:EVSE": "FRIONE40220", + "ref": "FRIONE40220", + "name": "Longué la Couaille", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13469517, + 47.41925327 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué la Couaille", + "ref:EU:EVSE": "FRIONE40220", + "ref": "FRIONE40220", + "name": "Longué la Couaille", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3735372, + 48.8488274 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Haras HW", + "ref:EU:EVSE": "FRSHEE69", + "ref": "FRSHEE69", + "name": "Shell Aire de Haras HW", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3735372, + 48.8488274 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Haras HW", + "ref:EU:EVSE": "FRSHEE68", + "ref": "FRSHEE68", + "name": "Shell Aire de Haras HW", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3735372, + 48.8488274 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Haras HW", + "ref:EU:EVSE": "FRSHEE68", + "ref": "FRSHEE68", + "name": "Shell Aire de Haras HW", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.163118, + 48.221297 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Brou", + "ref:EU:EVSE": "FRIENE006701", + "ref": "FRIENE006701", + "name": "Brou", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30883262, + 43.91498099 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labastide-Saint-Pierre | Avenue du Pech", + "ref:EU:EVSE": "FRIONE42150", + "ref": "FRIONE42150", + "name": "Labastide-Saint-Pierre | Avenue du Pech", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30883262, + 43.91498099 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labastide-Saint-Pierre | Avenue du Pech", + "ref:EU:EVSE": "FRIONE42155", + "ref": "FRIONE42155", + "name": "Labastide-Saint-Pierre | Avenue du Pech", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30883262, + 43.91498099 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labastide-Saint-Pierre | Avenue du Pech", + "ref:EU:EVSE": "FRIONE42155", + "ref": "FRIONE42155", + "name": "Labastide-Saint-Pierre | Avenue du Pech", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30883262, + 43.91498099 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labastide-Saint-Pierre | Avenue du Pech", + "ref:EU:EVSE": "FRIONE42155", + "ref": "FRIONE42155", + "name": "Labastide-Saint-Pierre | Avenue du Pech", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.367618, + 49.877237 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "Asia Automotive", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Asia Automotive", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.041287, + 49.242168 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIMS - 49177 - Parking St Remi Place Lenoncourt", + "ref:EU:EVSE": "FRS51E4917", + "ref": "FRS51E4917", + "name": "REIMS - 49177 - Parking St Remi Place Lenoncourt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.041287, + 49.242168 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIMS - 49177 - Parking St Remi Place Lenoncourt", + "ref:EU:EVSE": "FRS51E4917", + "ref": "FRS51E4917", + "name": "REIMS - 49177 - Parking St Remi Place Lenoncourt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.163118, + 48.221297 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Brou", + "ref:EU:EVSE": "FRIENE006701", + "ref": "FRIENE006701", + "name": "Brou", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.939804, + 46.940088 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA GUERCHE - Parking NETTO - 146807", + "ref:EU:EVSE": "FRS18E14680", + "ref": "FRS18E14680", + "name": "LA GUERCHE - Parking NETTO - 146807", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.163118, + 48.221297 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Brou", + "ref:EU:EVSE": "FRIENE006702", + "ref": "FRIENE006702", + "name": "Brou", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.163118, + 48.221297 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Brou", + "ref:EU:EVSE": "FRIENE006702", + "ref": "FRIENE006702", + "name": "Brou", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61192, + 44.920927 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SDS BORNE 2", + "ref:EU:EVSE": "FRCPIE6639455", + "ref": "FRCPIE6639455", + "name": "SDS BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61192, + 44.920927 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SDS BORNE 2", + "ref:EU:EVSE": "FRCPIE6639455", + "ref": "FRCPIE6639455", + "name": "SDS BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61192, + 44.920927 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SDS BORNE 2", + "ref:EU:EVSE": "FRCPIE6639495", + "ref": "FRCPIE6639495", + "name": "SDS BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61192, + 44.920927 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SDS BORNE 2", + "ref:EU:EVSE": "FRCPIE6639495", + "ref": "FRCPIE6639495", + "name": "SDS BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61192, + 44.920927 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SDS BORNE 2", + "ref:EU:EVSE": "FRCPIE6639505", + "ref": "FRCPIE6639505", + "name": "SDS BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61192, + 44.920927 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SDS BORNE 2", + "ref:EU:EVSE": "FRCPIE6639505", + "ref": "FRCPIE6639505", + "name": "SDS BORNE 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.544709, + 47.304761 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Henrichemont", + "ref:EU:EVSE": "FRIENE009302", + "ref": "FRIENE009302", + "name": "Henrichemont", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13469517, + 47.41925327 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué la Couaille", + "ref:EU:EVSE": "FRIONE40220", + "ref": "FRIONE40220", + "name": "Longué la Couaille", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13469517, + 47.41925327 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué la Couaille", + "ref:EU:EVSE": "FRIONE4022", + "ref": "FRIONE4022", + "name": "Longué la Couaille", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16809, + 47.803507 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sarthe Sud", + "ref:EU:EVSE": "FRIONE40340", + "ref": "FRIONE40340", + "name": "Sarthe Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.94658719, + 48.06335936 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ARVILLE 4926", + "ref:EU:EVSE": "FRS41E492", + "ref": "FRS41E492", + "name": "ARVILLE 4926", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 67", + "ref:EU:EVSE": "FRCPIE6736525", + "ref": "FRCPIE6736525", + "name": "RAW PARISGIVERNY 67", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 67", + "ref:EU:EVSE": "FRCPIE6736525", + "ref": "FRCPIE6736525", + "name": "RAW PARISGIVERNY 67", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 67", + "ref:EU:EVSE": "FRCPIE6736975", + "ref": "FRCPIE6736975", + "name": "RAW PARISGIVERNY 67", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 67", + "ref:EU:EVSE": "FRCPIE6736975", + "ref": "FRCPIE6736975", + "name": "RAW PARISGIVERNY 67", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 67", + "ref:EU:EVSE": "FRCPIE6736995", + "ref": "FRCPIE6736995", + "name": "RAW PARISGIVERNY 67", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 67", + "ref:EU:EVSE": "FRCPIE6736995", + "ref": "FRCPIE6736995", + "name": "RAW PARISGIVERNY 67", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 67", + "ref:EU:EVSE": "FRCPIE6737525", + "ref": "FRCPIE6737525", + "name": "RAW PARISGIVERNY 67", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 67", + "ref:EU:EVSE": "FRCPIE6737525", + "ref": "FRCPIE6737525", + "name": "RAW PARISGIVERNY 67", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353031, + 48.856298 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "TERRA_54_013", + "ref:EU:EVSE": "FRTNMETERRA54012", + "ref": "FRTNMETERRA54012", + "name": "TERRA_54_013", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353031, + 48.856298 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "TERRA_54_013", + "ref:EU:EVSE": "FRTNMETERRA54012", + "ref": "FRTNMETERRA54012", + "name": "TERRA_54_013", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353031, + 48.856298 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "TERRA_54_013", + "ref:EU:EVSE": "FRTNMETERRA54013", + "ref": "FRTNMETERRA54013", + "name": "TERRA_54_013", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353031, + 48.856298 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "TERRA_54_013", + "ref:EU:EVSE": "FRTNMETERRA54013", + "ref": "FRTNMETERRA54013", + "name": "TERRA_54_013", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684845, + 47.852305 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "ref:EU:EVSE": "FRIONE41560", + "ref": "FRIONE41560", + "name": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684845, + 47.852305 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "ref:EU:EVSE": "FRIONE41560", + "ref": "FRIONE41560", + "name": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684845, + 47.852305 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "ref:EU:EVSE": "FRIONE41560", + "ref": "FRIONE41560", + "name": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684845, + 47.852305 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "ref:EU:EVSE": "FRIONE41560", + "ref": "FRIONE41560", + "name": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684845, + 47.852305 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "ref:EU:EVSE": "FRIONE41565", + "ref": "FRIONE41565", + "name": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684845, + 47.852305 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "ref:EU:EVSE": "FRIONE41565", + "ref": "FRIONE41565", + "name": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684845, + 47.852305 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "ref:EU:EVSE": "FRIONE41565", + "ref": "FRIONE41565", + "name": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16809, + 47.803507 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sarthe Sud", + "ref:EU:EVSE": "FRIONE40340", + "ref": "FRIONE40340", + "name": "Sarthe Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16809, + 47.803507 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sarthe Sud", + "ref:EU:EVSE": "FRIONE40340", + "ref": "FRIONE40340", + "name": "Sarthe Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 67", + "ref:EU:EVSE": "FRCPIE6736515", + "ref": "FRCPIE6736515", + "name": "RAW PARISGIVERNY 67", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "RAW PARISGIVERNY 67", + "ref:EU:EVSE": "FRCPIE6736515", + "ref": "FRCPIE6736515", + "name": "RAW PARISGIVERNY 67", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.873729, + 47.640214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR BELFORT CONNECT", + "ref:EU:EVSE": "FRCPIE6665205", + "ref": "FRCPIE6665205", + "name": "SONEPAR BELFORT CONNECT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.102999, + 48.908924 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vallée de la vire Gouvets", + "ref:EU:EVSE": "FRIONE41040", + "ref": "FRIONE41040", + "name": "Vallée de la vire Gouvets", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.94658719, + 48.06335936 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ARVILLE 4926", + "ref:EU:EVSE": "FRS41E492", + "ref": "FRS41E492", + "name": "ARVILLE 4926", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.757126, + 48.928281 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NONSARD LAMARCHE - 66378 - Base Loisirs de Madine", + "ref:EU:EVSE": "FRS55E6637", + "ref": "FRS55E6637", + "name": "NONSARD LAMARCHE - 66378 - Base Loisirs de Madine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.757126, + 48.928281 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NONSARD LAMARCHE - 66378 - Base Loisirs de Madine", + "ref:EU:EVSE": "FRS55E6637", + "ref": "FRS55E6637", + "name": "NONSARD LAMARCHE - 66378 - Base Loisirs de Madine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.166899, + 45.998903 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire des Crêts Blancs", + "ref:EU:EVSE": "FRFASE330950", + "ref": "FRFASE330950", + "name": "Aire des Crêts Blancs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.166899, + 45.998903 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire des Crêts Blancs", + "ref:EU:EVSE": "FRFASE330950", + "ref": "FRFASE330950", + "name": "Aire des Crêts Blancs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.166899, + 45.998903 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire des Crêts Blancs", + "ref:EU:EVSE": "FRFASE330950", + "ref": "FRFASE330950", + "name": "Aire des Crêts Blancs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.166899, + 45.998903 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire des Crêts Blancs", + "ref:EU:EVSE": "FRFASE330950", + "ref": "FRFASE330950", + "name": "Aire des Crêts Blancs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-14", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.102999, + 48.908924 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vallée de la vire Gouvets", + "ref:EU:EVSE": "FRIONE41040", + "ref": "FRIONE41040", + "name": "Vallée de la vire Gouvets", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.102999, + 48.908924 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vallée de la vire Gouvets", + "ref:EU:EVSE": "FRIONE41040", + "ref": "FRIONE41040", + "name": "Vallée de la vire Gouvets", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.102999, + 48.908924 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vallée de la vire Gouvets", + "ref:EU:EVSE": "FRIONE41040", + "ref": "FRIONE41040", + "name": "Vallée de la vire Gouvets", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.873729, + 47.640214 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR BELFORT CONNECT", + "ref:EU:EVSE": "FRCPIE6665205", + "ref": "FRCPIE6665205", + "name": "SONEPAR BELFORT CONNECT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.102999, + 48.908924 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Vallée de la vire Gouvets", + "ref:EU:EVSE": "FRIONE4104", + "ref": "FRIONE4104", + "name": "Vallée de la vire Gouvets", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09642, + 48.47696 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Quevilloncourt", + "ref:EU:EVSE": "FRIENE008601", + "ref": "FRIENE008601", + "name": "Quevilloncourt", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09642, + 48.47696 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Quevilloncourt", + "ref:EU:EVSE": "FRIENE008601", + "ref": "FRIENE008601", + "name": "Quevilloncourt", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09642, + 48.47696 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Quevilloncourt", + "ref:EU:EVSE": "FRIENE008602", + "ref": "FRIENE008602", + "name": "Quevilloncourt", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09642, + 48.47696 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Quevilloncourt", + "ref:EU:EVSE": "FRIENE008602", + "ref": "FRIENE008602", + "name": "Quevilloncourt", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.896767, + 46.675976 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Couleuvre", + "ref:EU:EVSE": "FRIENE005301", + "ref": "FRIENE005301", + "name": "Couleuvre", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.896767, + 46.675976 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Couleuvre", + "ref:EU:EVSE": "FRIENE005301", + "ref": "FRIENE005301", + "name": "Couleuvre", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.896767, + 46.675976 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Couleuvre", + "ref:EU:EVSE": "FRIENE005302", + "ref": "FRIENE005302", + "name": "Couleuvre", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.896767, + 46.675976 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Couleuvre", + "ref:EU:EVSE": "FRIENE005302", + "ref": "FRIENE005302", + "name": "Couleuvre", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.489556, + 43.450393 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE HU BORNE DC 02", + "ref:EU:EVSE": "FRCPIE6714285", + "ref": "FRCPIE6714285", + "name": "BORNE HU BORNE DC 02", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.939804, + 46.940088 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA GUERCHE - Parking NETTO - 146807", + "ref:EU:EVSE": "FRS18E14680", + "ref": "FRS18E14680", + "name": "LA GUERCHE - Parking NETTO - 146807", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-29", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.489556, + 43.450393 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE HU BORNE DC 02", + "ref:EU:EVSE": "FRCPIE6714275", + "ref": "FRCPIE6714275", + "name": "BORNE HU BORNE DC 02", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03314, + 47.93275 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Douchy-Montcorbon", + "ref:EU:EVSE": "FRIENE009402", + "ref": "FRIENE009402", + "name": "Douchy-Montcorbon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.524313, + 45.030881 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Ouest", + "ref:EU:EVSE": "FRIONE43340", + "ref": "FRIONE43340", + "name": "Pech Montat Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.524313, + 45.030881 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Ouest", + "ref:EU:EVSE": "FRIONE43340", + "ref": "FRIONE43340", + "name": "Pech Montat Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.524313, + 45.030881 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Ouest", + "ref:EU:EVSE": "FRIONE43340", + "ref": "FRIONE43340", + "name": "Pech Montat Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.524313, + 45.030881 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Ouest", + "ref:EU:EVSE": "FRIONE43340", + "ref": "FRIONE43340", + "name": "Pech Montat Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.524313, + 45.030881 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Ouest", + "ref:EU:EVSE": "FRIONE4334", + "ref": "FRIONE4334", + "name": "Pech Montat Ouest", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.515931, + 48.563374 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LANNILIS SIEGE BORNE 2", + "ref:EU:EVSE": "FRCPIE6699285", + "ref": "FRCPIE6699285", + "name": "LANNILIS SIEGE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.515931, + 48.563374 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LANNILIS SIEGE BORNE 2", + "ref:EU:EVSE": "FRCPIE6699285", + "ref": "FRCPIE6699285", + "name": "LANNILIS SIEGE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.515931, + 48.563374 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LANNILIS SIEGE BORNE 2", + "ref:EU:EVSE": "FRCPIE6699895", + "ref": "FRCPIE6699895", + "name": "LANNILIS SIEGE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.515931, + 48.563374 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LANNILIS SIEGE BORNE 2", + "ref:EU:EVSE": "FRCPIE6699895", + "ref": "FRCPIE6699895", + "name": "LANNILIS SIEGE BORNE 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.762427, + 48.506516 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUNEAU-BLEURY ST SYMPHORIEN - Rue Patton -137338", + "ref:EU:EVSE": "FRS28E13733", + "ref": "FRS28E13733", + "name": "AUNEAU-BLEURY ST SYMPHORIEN - Rue Patton -137338", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206429, + 48.688773 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR 3CCLIM VILLEBON", + "ref:EU:EVSE": "FRCPIE6690455", + "ref": "FRCPIE6690455", + "name": "SONEPAR 3CCLIM VILLEBON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206429, + 48.688773 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR 3CCLIM VILLEBON", + "ref:EU:EVSE": "FRCPIE6690455", + "ref": "FRCPIE6690455", + "name": "SONEPAR 3CCLIM VILLEBON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40283817, + 47.12422876 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Asnieres - 104686", + "ref:EU:EVSE": "FRS18E10468", + "ref": "FRS18E10468", + "name": "BOURGES - Asnieres - 104686", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40283817, + 47.12422876 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Asnieres - 104686", + "ref:EU:EVSE": "FRS18E10468", + "ref": "FRS18E10468", + "name": "BOURGES - Asnieres - 104686", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44161714, + 47.48927488 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUBIGNY - Place Résistance - 95964", + "ref:EU:EVSE": "FRS18E9596", + "ref": "FRS18E9596", + "name": "AUBIGNY - Place Résistance - 95964", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44161714, + 47.48927488 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUBIGNY - Place Résistance - 95964", + "ref:EU:EVSE": "FRS18E9596", + "ref": "FRS18E9596", + "name": "AUBIGNY - Place Résistance - 95964", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.47679, + 48.0905 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HADOL - PLACE VIVIN - 161845 - CCS", + "ref:EU:EVSE": "FRS88E16184", + "ref": "FRS88E16184", + "name": "HADOL - PLACE VIVIN - 161845 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.47679, + 48.0905 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HADOL - PLACE VIVIN - 161845 - CCS", + "ref:EU:EVSE": "FRS88E16184", + "ref": "FRS88E16184", + "name": "HADOL - PLACE VIVIN - 161845 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40458209, + 47.10553756 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Place Cothenet - 104721", + "ref:EU:EVSE": "FRS18E10472", + "ref": "FRS18E10472", + "name": "BOURGES - Place Cothenet - 104721", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40458209, + 47.10553756 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Place Cothenet - 104721", + "ref:EU:EVSE": "FRS18E10472", + "ref": "FRS18E10472", + "name": "BOURGES - Place Cothenet - 104721", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.730978, + 46.480447 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HAILO FR BORNE 4", + "ref:EU:EVSE": "FRCPIE6644555", + "ref": "FRCPIE6644555", + "name": "HAILO FR BORNE 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03314, + 47.93275 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Douchy-Montcorbon", + "ref:EU:EVSE": "FRIENE009402", + "ref": "FRIENE009402", + "name": "Douchy-Montcorbon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03314, + 47.93275 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Douchy-Montcorbon", + "ref:EU:EVSE": "FRIENE009401", + "ref": "FRIENE009401", + "name": "Douchy-Montcorbon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.107851, + 44.566656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR GAP", + "ref:EU:EVSE": "FRCPIE6593725", + "ref": "FRCPIE6593725", + "name": "SONEPAR GAP", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03314, + 47.93275 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Douchy-Montcorbon", + "ref:EU:EVSE": "FRIENE009401", + "ref": "FRIENE009401", + "name": "Douchy-Montcorbon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9315, + 48.4286 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Jonchets - Les Récompenses", + "ref:EU:EVSE": "FRFASE330220", + "ref": "FRFASE330220", + "name": "Aire de Jonchets - Les Récompenses", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.709964, + 48.435547 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEVILLE LE COMTE - Rue Pinceloup - 130145", + "ref:EU:EVSE": "FRS28E13014", + "ref": "FRS28E13014", + "name": "BEVILLE LE COMTE - Rue Pinceloup - 130145", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.508255, + 49.119967 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Verdun Saint-Nicolas Nord", + "ref:EU:EVSE": "FRIONE41370", + "ref": "FRIONE41370", + "name": "Verdun Saint-Nicolas Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.508255, + 49.119967 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Verdun Saint-Nicolas Nord", + "ref:EU:EVSE": "FRIONE41370", + "ref": "FRIONE41370", + "name": "Verdun Saint-Nicolas Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.508255, + 49.119967 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Verdun Saint-Nicolas Nord", + "ref:EU:EVSE": "FRIONE41370", + "ref": "FRIONE41370", + "name": "Verdun Saint-Nicolas Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.508255, + 49.119967 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Verdun Saint-Nicolas Nord", + "ref:EU:EVSE": "FRIONE41370", + "ref": "FRIONE41370", + "name": "Verdun Saint-Nicolas Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.508255, + 49.119967 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Verdun Saint-Nicolas Nord", + "ref:EU:EVSE": "FRIONE41370", + "ref": "FRIONE41370", + "name": "Verdun Saint-Nicolas Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.508255, + 49.119967 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Verdun Saint-Nicolas Nord", + "ref:EU:EVSE": "FRIONE41370", + "ref": "FRIONE41370", + "name": "Verdun Saint-Nicolas Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.508255, + 49.119967 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Verdun Saint-Nicolas Nord", + "ref:EU:EVSE": "FRIONE4137", + "ref": "FRIONE4137", + "name": "Verdun Saint-Nicolas Nord", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.877246, + 48.072141 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HMV BORNE 1", + "ref:EU:EVSE": "FRCPIE6638625", + "ref": "FRCPIE6638625", + "name": "HMV BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.877246, + 48.072141 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HMV BORNE 1", + "ref:EU:EVSE": "FRCPIE6638625", + "ref": "FRCPIE6638625", + "name": "HMV BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87392, + 48.0687 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GERARDMER - PLACE DU TILLEUL - 177260 - CCS", + "ref:EU:EVSE": "FRS88E17726", + "ref": "FRS88E17726", + "name": "GERARDMER - PLACE DU TILLEUL - 177260 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87392, + 48.0687 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GERARDMER - PLACE DU TILLEUL - 177260 - CCS", + "ref:EU:EVSE": "FRS88E17726", + "ref": "FRS88E17726", + "name": "GERARDMER - PLACE DU TILLEUL - 177260 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.876856, + 48.072562 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HMV BORNE 2", + "ref:EU:EVSE": "FRCPIE6638635", + "ref": "FRCPIE6638635", + "name": "HMV BORNE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.876856, + 48.072562 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HMV BORNE 2", + "ref:EU:EVSE": "FRCPIE6638635", + "ref": "FRCPIE6638635", + "name": "HMV BORNE 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.482988, + 48.449832 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARTRES - Place Saint Jean - 134777", + "ref:EU:EVSE": "FRS28E13477", + "ref": "FRS28E13477", + "name": "CHARTRES - Place Saint Jean - 134777", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.923522, + 49.2444 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gueux", + "ref:EU:EVSE": "FRIONE40260", + "ref": "FRIONE40260", + "name": "Gueux", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.923522, + 49.2444 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gueux", + "ref:EU:EVSE": "FRIONE40260", + "ref": "FRIONE40260", + "name": "Gueux", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.923522, + 49.2444 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gueux", + "ref:EU:EVSE": "FRIONE40260", + "ref": "FRIONE40260", + "name": "Gueux", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.923522, + 49.2444 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gueux", + "ref:EU:EVSE": "FRIONE40260", + "ref": "FRIONE40260", + "name": "Gueux", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.923522, + 49.2444 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gueux", + "ref:EU:EVSE": "FRIONE4026", + "ref": "FRIONE4026", + "name": "Gueux", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.730978, + 46.480447 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HAILO FR BORNE 4", + "ref:EU:EVSE": "FRCPIE6644555", + "ref": "FRCPIE6644555", + "name": "HAILO FR BORNE 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.730978, + 46.480447 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HAILO FR BORNE 4", + "ref:EU:EVSE": "FRCPIE6644565", + "ref": "FRCPIE6644565", + "name": "HAILO FR BORNE 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.730978, + 46.480447 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HAILO FR BORNE 4", + "ref:EU:EVSE": "FRCPIE6644565", + "ref": "FRCPIE6644565", + "name": "HAILO FR BORNE 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.730978, + 46.480447 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HAILO FR BORNE 4", + "ref:EU:EVSE": "FRCPIE6644635", + "ref": "FRCPIE6644635", + "name": "HAILO FR BORNE 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.06768176, + 47.24563167 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIERZON - Pôle d'activités - 112534", + "ref:EU:EVSE": "FRS18E11253", + "ref": "FRS18E11253", + "name": "VIERZON - Pôle d'activités - 112534", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.06768176, + 47.24563167 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIERZON - Pôle d'activités - 112534", + "ref:EU:EVSE": "FRS18E11253", + "ref": "FRS18E11253", + "name": "VIERZON - Pôle d'activités - 112534", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.015, + 48.1736 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PLAINFAINE - Place de l'Eglise - 177421 - CCS", + "ref:EU:EVSE": "FRS88E17742", + "ref": "FRS88E17742", + "name": "PLAINFAINE - Place de l'Eglise - 177421 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.015, + 48.1736 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PLAINFAINE - Place de l'Eglise - 177421 - CCS", + "ref:EU:EVSE": "FRS88E17742", + "ref": "FRS88E17742", + "name": "PLAINFAINE - Place de l'Eglise - 177421 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.198119, + 48.766006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST-LUBIN-DES-JONCHERETS- Rue de la Baronie -139443", + "ref:EU:EVSE": "FRS28E13944", + "ref": "FRS28E13944", + "name": "ST-LUBIN-DES-JONCHERETS- Rue de la Baronie -139443", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.198119, + 48.766006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST-LUBIN-DES-JONCHERETS- Rue de la Baronie -139443", + "ref:EU:EVSE": "FRS28E13944", + "ref": "FRS28E13944", + "name": "ST-LUBIN-DES-JONCHERETS- Rue de la Baronie -139443", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.873564, + 50.173438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Léger", + "ref:EU:EVSE": "FRFASE331000", + "ref": "FRFASE331000", + "name": "Aire de Saint-Léger", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.873564, + 50.173438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Léger", + "ref:EU:EVSE": "FRFASE331000", + "ref": "FRFASE331000", + "name": "Aire de Saint-Léger", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.873564, + 50.173438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Léger", + "ref:EU:EVSE": "FRFASE331000", + "ref": "FRFASE331000", + "name": "Aire de Saint-Léger", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.873564, + 50.173438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Léger", + "ref:EU:EVSE": "FRFASE331000", + "ref": "FRFASE331000", + "name": "Aire de Saint-Léger", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.873564, + 50.173438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Léger", + "ref:EU:EVSE": "FRFASE331000", + "ref": "FRFASE331000", + "name": "Aire de Saint-Léger", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.873564, + 50.173438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Léger", + "ref:EU:EVSE": "FRFASE331000", + "ref": "FRFASE331000", + "name": "Aire de Saint-Léger", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.873564, + 50.173438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Léger", + "ref:EU:EVSE": "FRFASE331000", + "ref": "FRFASE331000", + "name": "Aire de Saint-Léger", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.873564, + 50.173438 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Léger", + "ref:EU:EVSE": "FRFASE331000", + "ref": "FRFASE331000", + "name": "Aire de Saint-Léger", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.880171, + 48.375871 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HMV MOYENMOUTIER 2", + "ref:EU:EVSE": "FRCPIE6643015", + "ref": "FRCPIE6643015", + "name": "HMV MOYENMOUTIER 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.880171, + 48.375871 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HMV MOYENMOUTIER 2", + "ref:EU:EVSE": "FRCPIE6643015", + "ref": "FRCPIE6643015", + "name": "HMV MOYENMOUTIER 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.880171, + 48.375871 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HMV MOYENMOUTIER 2", + "ref:EU:EVSE": "FRCPIE6643025", + "ref": "FRCPIE6643025", + "name": "HMV MOYENMOUTIER 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.880171, + 48.375871 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HMV MOYENMOUTIER 2", + "ref:EU:EVSE": "FRCPIE6643025", + "ref": "FRCPIE6643025", + "name": "HMV MOYENMOUTIER 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.543013, + 48.651644 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COULOMBS - Rue des Remparts - 139389", + "ref:EU:EVSE": "FRS28E13938", + "ref": "FRS28E13938", + "name": "COULOMBS - Rue des Remparts - 139389", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81153005, + 46.99737769 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NERONDES - Route de Bourges - 146793", + "ref:EU:EVSE": "FRS18E14679", + "ref": "FRS18E14679", + "name": "NERONDES - Route de Bourges - 146793", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81153005, + 46.99737769 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NERONDES - Route de Bourges - 146793", + "ref:EU:EVSE": "FRS18E14679", + "ref": "FRS18E14679", + "name": "NERONDES - Route de Bourges - 146793", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.014208, + 48.471682 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA LOUPE - Place de l'hôtel de ville - 134195", + "ref:EU:EVSE": "FRS28E13419", + "ref": "FRS28E13419", + "name": "LA LOUPE - Place de l'hôtel de ville - 134195", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.06775, + 46.94724 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CUFFY - Le Pont Canal - 117885", + "ref:EU:EVSE": "FRS18E11788", + "ref": "FRS18E11788", + "name": "CUFFY - Le Pont Canal - 117885", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.06775, + 46.94724 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CUFFY - Le Pont Canal - 117885", + "ref:EU:EVSE": "FRS18E11788", + "ref": "FRS18E11788", + "name": "CUFFY - Le Pont Canal - 117885", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.334795, + 45.169865 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Est", + "ref:EU:EVSE": "FRIONE43230", + "ref": "FRIONE43230", + "name": "Bedenac Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.730978, + 46.480447 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HAILO FR BORNE 4", + "ref:EU:EVSE": "FRCPIE6644635", + "ref": "FRCPIE6644635", + "name": "HAILO FR BORNE 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.730978, + 46.480447 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HAILO FR BORNE 4", + "ref:EU:EVSE": "FRCPIE6644645", + "ref": "FRCPIE6644645", + "name": "HAILO FR BORNE 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.730978, + 46.480447 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "HAILO FR BORNE 4", + "ref:EU:EVSE": "FRCPIE6644645", + "ref": "FRCPIE6644645", + "name": "HAILO FR BORNE 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38806432, + 47.08333836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Juranville - 97770", + "ref:EU:EVSE": "FRS18E9777", + "ref": "FRS18E9777", + "name": "BOURGES - Juranville - 97770", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38806432, + 47.08333836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Juranville - 97770", + "ref:EU:EVSE": "FRS18E9777", + "ref": "FRS18E9777", + "name": "BOURGES - Juranville - 97770", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.117433, + 46.99243 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAROST - Place François Chapus - 200950", + "ref:EU:EVSE": "FRS18E20095", + "ref": "FRS18E20095", + "name": "CHAROST - Place François Chapus - 200950", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.117433, + 46.99243 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAROST - Place François Chapus - 200950", + "ref:EU:EVSE": "FRS18E20095", + "ref": "FRS18E20095", + "name": "CHAROST - Place François Chapus - 200950", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.334795, + 45.169865 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Est", + "ref:EU:EVSE": "FRIONE43230", + "ref": "FRIONE43230", + "name": "Bedenac Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.334795, + 45.169865 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Est", + "ref:EU:EVSE": "FRIONE43230", + "ref": "FRIONE43230", + "name": "Bedenac Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.334795, + 45.169865 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Est", + "ref:EU:EVSE": "FRIONE43230", + "ref": "FRIONE43230", + "name": "Bedenac Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.175825, + 46.849766 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LES COLONNADES BORNE 1", + "ref:EU:EVSE": "FRCPIE6651395", + "ref": "FRCPIE6651395", + "name": "LES COLONNADES BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.334795, + 45.169865 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Est", + "ref:EU:EVSE": "FRIONE4323", + "ref": "FRIONE4323", + "name": "Bedenac Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40308834, + 47.08186564 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Parking Anatole France - 98496", + "ref:EU:EVSE": "FRS18E9849", + "ref": "FRS18E9849", + "name": "BOURGES - Parking Anatole France - 98496", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40308834, + 47.08186564 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Parking Anatole France - 98496", + "ref:EU:EVSE": "FRS18E9849", + "ref": "FRS18E9849", + "name": "BOURGES - Parking Anatole France - 98496", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.456284, + 47.371248 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Guérande", + "ref:EU:EVSE": "FRIENE006801", + "ref": "FRIENE006801", + "name": "Guérande", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.456284, + 47.371248 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Guérande", + "ref:EU:EVSE": "FRIENE006801", + "ref": "FRIENE006801", + "name": "Guérande", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.456284, + 47.371248 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Guérande", + "ref:EU:EVSE": "FRIENE006802", + "ref": "FRIENE006802", + "name": "Guérande", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.456284, + 47.371248 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Guérande", + "ref:EU:EVSE": "FRIENE006802", + "ref": "FRIENE006802", + "name": "Guérande", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.290792, + 48.76059 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERT-EN-DROUAIS - Rue de l'Eglise - 139425", + "ref:EU:EVSE": "FRS28E13942", + "ref": "FRS28E13942", + "name": "VERT-EN-DROUAIS - Rue de l'Eglise - 139425", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.175825, + 46.849766 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LES COLONNADES BORNE 1", + "ref:EU:EVSE": "FRCPIE6651395", + "ref": "FRCPIE6651395", + "name": "LES COLONNADES BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9315, + 48.4286 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Jonchets - Les Récompenses", + "ref:EU:EVSE": "FRFASE330220", + "ref": "FRFASE330220", + "name": "Aire de Jonchets - Les Récompenses", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9315, + 48.4286 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Jonchets - Les Récompenses", + "ref:EU:EVSE": "FRFASE330220", + "ref": "FRFASE330220", + "name": "Aire de Jonchets - Les Récompenses", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9315, + 48.4286 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Jonchets - Les Récompenses", + "ref:EU:EVSE": "FRFASE330220", + "ref": "FRFASE330220", + "name": "Aire de Jonchets - Les Récompenses", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-27", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284364, + 45.856939 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 2", + "ref:EU:EVSE": "FRCPIE6696705", + "ref": "FRCPIE6696705", + "name": "SONEPAR ST-VULBAS 2", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.07050827, + 45.84386863 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lyon-Dagneux Sud", + "ref:EU:EVSE": "FRIONE40840", + "ref": "FRIONE40840", + "name": "Lyon-Dagneux Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.07050827, + 45.84386863 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lyon-Dagneux Sud", + "ref:EU:EVSE": "FRIONE4084", + "ref": "FRIONE4084", + "name": "Lyon-Dagneux Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.955762, + 43.63593 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR GRASSE", + "ref:EU:EVSE": "FRCPIE6630285", + "ref": "FRCPIE6630285", + "name": "SONEPAR GRASSE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.955762, + 43.63593 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR GRASSE", + "ref:EU:EVSE": "FRCPIE6630285", + "ref": "FRCPIE6630285", + "name": "SONEPAR GRASSE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.049093, + 44.039853 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GVA CARPENTRAS ABB", + "ref:EU:EVSE": "FRCPIE6509805", + "ref": "FRCPIE6509805", + "name": "GVA CARPENTRAS ABB", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.012166, + 48.470684 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA LOUPE - Rue Pasteur - 134213", + "ref:EU:EVSE": "FRS28E13421", + "ref": "FRS28E13421", + "name": "LA LOUPE - Rue Pasteur - 134213", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.577741, + 48.586706 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAINTENON - Place Aristide Briand - 128898", + "ref:EU:EVSE": "FRS28E12889", + "ref": "FRS28E12889", + "name": "MAINTENON - Place Aristide Briand - 128898", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.52264, + 48.0588 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RAON AUX BOIS - ROUTE D'ARCHES - 162333 - CCS", + "ref:EU:EVSE": "FRS88E16233", + "ref": "FRS88E16233", + "name": "RAON AUX BOIS - ROUTE D'ARCHES - 162333 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.52264, + 48.0588 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RAON AUX BOIS - ROUTE D'ARCHES - 162333 - CCS", + "ref:EU:EVSE": "FRS88E16233", + "ref": "FRS88E16233", + "name": "RAON AUX BOIS - ROUTE D'ARCHES - 162333 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.339952, + 48.730179 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNOUILLET - 16 Avenue Marc CHAPPEY - 139069", + "ref:EU:EVSE": "FRS28E13906", + "ref": "FRS28E13906", + "name": "VERNOUILLET - 16 Avenue Marc CHAPPEY - 139069", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.381954, + 48.840804 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SOREL-MOUSSEL - Place De La Mairie - 139436", + "ref:EU:EVSE": "FRS28E13943", + "ref": "FRS28E13943", + "name": "SOREL-MOUSSEL - Place De La Mairie - 139436", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.133889, + 47.336889 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHISSAY EN TOURAINE 4723 - Place du Château", + "ref:EU:EVSE": "FRS41E472", + "ref": "FRS41E472", + "name": "CHISSAY EN TOURAINE 4723 - Place du Château", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-23", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.133889, + 47.336889 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHISSAY EN TOURAINE 4723 - Place du Château", + "ref:EU:EVSE": "FRS41E472", + "ref": "FRS41E472", + "name": "CHISSAY EN TOURAINE 4723 - Place du Château", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-23", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21332, + 47.05409 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Loché-sur-Indrois", + "ref:EU:EVSE": "FRIENE005901", + "ref": "FRIENE005901", + "name": "Loché-sur-Indrois", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21332, + 47.05409 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Loché-sur-Indrois", + "ref:EU:EVSE": "FRIENE005901", + "ref": "FRIENE005901", + "name": "Loché-sur-Indrois", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21332, + 47.05409 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Loché-sur-Indrois", + "ref:EU:EVSE": "FRIENE005902", + "ref": "FRIENE005902", + "name": "Loché-sur-Indrois", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21332, + 47.05409 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Loché-sur-Indrois", + "ref:EU:EVSE": "FRIENE005902", + "ref": "FRIENE005902", + "name": "Loché-sur-Indrois", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.233912, + 47.997089 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CLOYES-SUR-LE-LOIR - Place Gambetta - 127147", + "ref:EU:EVSE": "FRS28E12714", + "ref": "FRS28E12714", + "name": "CLOYES-SUR-LE-LOIR - Place Gambetta - 127147", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284364, + 45.856939 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 2", + "ref:EU:EVSE": "FRCPIE6696685", + "ref": "FRCPIE6696685", + "name": "SONEPAR ST-VULBAS 2", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284364, + 45.856939 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 2", + "ref:EU:EVSE": "FRCPIE6696685", + "ref": "FRCPIE6696685", + "name": "SONEPAR ST-VULBAS 2", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284364, + 45.856939 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 2", + "ref:EU:EVSE": "FRCPIE6696695", + "ref": "FRCPIE6696695", + "name": "SONEPAR ST-VULBAS 2", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.07050827, + 45.84386863 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lyon-Dagneux Sud", + "ref:EU:EVSE": "FRIONE40840", + "ref": "FRIONE40840", + "name": "Lyon-Dagneux Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.07050827, + 45.84386863 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lyon-Dagneux Sud", + "ref:EU:EVSE": "FRIONE40840", + "ref": "FRIONE40840", + "name": "Lyon-Dagneux Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.07050827, + 45.84386863 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lyon-Dagneux Sud", + "ref:EU:EVSE": "FRIONE40840", + "ref": "FRIONE40840", + "name": "Lyon-Dagneux Sud", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.877437, + 45.634803 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ZI PONTET BORNE 1", + "ref:EU:EVSE": "FRCPIE6708995", + "ref": "FRCPIE6708995", + "name": "ZI PONTET BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.47546, + 48.1402 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DINOZE - 161636 - CCS", + "ref:EU:EVSE": "FRS88E16163", + "ref": "FRS88E16163", + "name": "DINOZE - 161636 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.47546, + 48.1402 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DINOZE - 161636 - CCS", + "ref:EU:EVSE": "FRS88E16163", + "ref": "FRS88E16163", + "name": "DINOZE - 161636 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.366913, + 48.957709 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Châlons-en-Champagne | Rue du Flocmagny", + "ref:EU:EVSE": "FRS51E14185", + "ref": "FRS51E14185", + "name": "Châlons-en-Champagne | Rue du Flocmagny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.366913, + 48.957709 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Châlons-en-Champagne | Rue du Flocmagny", + "ref:EU:EVSE": "FRS51E14185", + "ref": "FRS51E14185", + "name": "Châlons-en-Champagne | Rue du Flocmagny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.978697, + 48.26783 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST MARGUERITE - Rue de la Meurthe - 159296 - CCS", + "ref:EU:EVSE": "FRS88E15929", + "ref": "FRS88E15929", + "name": "ST MARGUERITE - Rue de la Meurthe - 159296 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-17", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.978697, + 48.26783 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST MARGUERITE - Rue de la Meurthe - 159296 - CCS", + "ref:EU:EVSE": "FRS88E15929", + "ref": "FRS88E15929", + "name": "ST MARGUERITE - Rue de la Meurthe - 159296 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-17", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.451327, + 48.159642 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPINAL - Rue de Remiremont - 159049 - Type 2", + "ref:EU:EVSE": "FRS88E15904", + "ref": "FRS88E15904", + "name": "EPINAL - Rue de Remiremont - 159049 - Type 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.451327, + 48.159642 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPINAL - Rue de Remiremont - 159049 - Type 2", + "ref:EU:EVSE": "FRS88E15904", + "ref": "FRS88E15904", + "name": "EPINAL - Rue de Remiremont - 159049 - Type 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.877437, + 45.634803 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "ZI PONTET BORNE 1", + "ref:EU:EVSE": "FRCPIE6708995", + "ref": "FRCPIE6708995", + "name": "ZI PONTET BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919794, + 45.897783 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Junien", + "ref:EU:EVSE": "FRIONE46920", + "ref": "FRIONE46920", + "name": "Saint Junien", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.585304, + 47.812847 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED AUXERRE", + "ref:EU:EVSE": "FRCPIE6711185", + "ref": "FRCPIE6711185", + "name": "CGED AUXERRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919794, + 45.897783 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Junien", + "ref:EU:EVSE": "FRIONE46920", + "ref": "FRIONE46920", + "name": "Saint Junien", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919794, + 45.897783 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Junien", + "ref:EU:EVSE": "FRIONE46920", + "ref": "FRIONE46920", + "name": "Saint Junien", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919794, + 45.897783 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Junien", + "ref:EU:EVSE": "FRIONE46920", + "ref": "FRIONE46920", + "name": "Saint Junien", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919794, + 45.897783 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Junien", + "ref:EU:EVSE": "FRIONE46920", + "ref": "FRIONE46920", + "name": "Saint Junien", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919794, + 45.897783 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Junien", + "ref:EU:EVSE": "FRIONE46920", + "ref": "FRIONE46920", + "name": "Saint Junien", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919794, + 45.897783 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Junien", + "ref:EU:EVSE": "FRIONE4692", + "ref": "FRIONE4692", + "name": "Saint Junien", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87923, + 48.1726 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CORCIEUX - Pl. du Gén de Gaulle - 161737 - CCS", + "ref:EU:EVSE": "FRS88E16173", + "ref": "FRS88E16173", + "name": "CORCIEUX - Pl. du Gén de Gaulle - 161737 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87923, + 48.1726 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CORCIEUX - Pl. du Gén de Gaulle - 161737 - CCS", + "ref:EU:EVSE": "FRS88E16173", + "ref": "FRS88E16173", + "name": "CORCIEUX - Pl. du Gén de Gaulle - 161737 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.585304, + 47.812847 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED AUXERRE", + "ref:EU:EVSE": "FRCPIE6711185", + "ref": "FRCPIE6711185", + "name": "CGED AUXERRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-13", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284364, + 45.856939 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 2", + "ref:EU:EVSE": "FRCPIE6696695", + "ref": "FRCPIE6696695", + "name": "SONEPAR ST-VULBAS 2", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284364, + 45.856939 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 2", + "ref:EU:EVSE": "FRCPIE6696705", + "ref": "FRCPIE6696705", + "name": "SONEPAR ST-VULBAS 2", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.826062, + 47.387572 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTLOUIS SUR LOIRE 1213 - Rue Rousseau", + "ref:EU:EVSE": "FRS37E133", + "ref": "FRS37E133", + "name": "MONTLOUIS SUR LOIRE 1213 - Rue Rousseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284364, + 45.856939 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 2", + "ref:EU:EVSE": "FRCPIE6696765", + "ref": "FRCPIE6696765", + "name": "SONEPAR ST-VULBAS 2", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21506944, + 47.6492611 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Allaire", + "ref:EU:EVSE": "FRIENE006002", + "ref": "FRIENE006002", + "name": "Allaire", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21506944, + 47.6492611 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Allaire", + "ref:EU:EVSE": "FRIENE006002", + "ref": "FRIENE006002", + "name": "Allaire", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.40224, + 48.0442 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "XERTIGNY - 177098 - CCS", + "ref:EU:EVSE": "FRS88E17709", + "ref": "FRS88E17709", + "name": "XERTIGNY - 177098 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.40224, + 48.0442 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "XERTIGNY - 177098 - CCS", + "ref:EU:EVSE": "FRS88E17710", + "ref": "FRS88E17710", + "name": "XERTIGNY - 177098 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.546522, + 48.121309 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SOMOUEST BORNE 1", + "ref:EU:EVSE": "FRCPIE6685205", + "ref": "FRCPIE6685205", + "name": "SOMOUEST BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.546522, + 48.121309 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SOMOUEST BORNE 1", + "ref:EU:EVSE": "FRCPIE6685205", + "ref": "FRCPIE6685205", + "name": "SOMOUEST BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.18008, + 48.6458 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HOUDEMONT - Parking relais de la gare - 187685", + "ref:EU:EVSE": "FRN54E18768", + "ref": "FRN54E18768", + "name": "HOUDEMONT - Parking relais de la gare - 187685", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.18008, + 48.6458 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HOUDEMONT - Parking relais de la gare - 187685", + "ref:EU:EVSE": "FRN54E18768", + "ref": "FRN54E18768", + "name": "HOUDEMONT - Parking relais de la gare - 187685", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.035971, + 47.504363 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Maison Dieu", + "ref:EU:EVSE": "FRIONE43880", + "ref": "FRIONE43880", + "name": "Maison Dieu", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.035971, + 47.504363 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Maison Dieu", + "ref:EU:EVSE": "FRIONE43880", + "ref": "FRIONE43880", + "name": "Maison Dieu", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.035971, + 47.504363 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Maison Dieu", + "ref:EU:EVSE": "FRIONE43880", + "ref": "FRIONE43880", + "name": "Maison Dieu", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.035971, + 47.504363 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Maison Dieu", + "ref:EU:EVSE": "FRIONE43880", + "ref": "FRIONE43880", + "name": "Maison Dieu", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.035971, + 47.504363 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Maison Dieu", + "ref:EU:EVSE": "FRIONE43880", + "ref": "FRIONE43880", + "name": "Maison Dieu", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.035971, + 47.504363 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Maison Dieu", + "ref:EU:EVSE": "FRIONE43880", + "ref": "FRIONE43880", + "name": "Maison Dieu", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.162319, + 48.775137 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BAR LE DUC-place des exelmans-66230", + "ref:EU:EVSE": "FRS55E6623", + "ref": "FRS55E6623", + "name": "55 BAR LE DUC-place des exelmans-66230", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.162319, + 48.775137 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 BAR LE DUC-place des exelmans-66230", + "ref:EU:EVSE": "FRS55E6623", + "ref": "FRS55E6623", + "name": "55 BAR LE DUC-place des exelmans-66230", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-03", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.359979, + 44.039147 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GRAMAGLIA SARL BORNE ELECTRIC", + "ref:EU:EVSE": "FRCPIE6672145", + "ref": "FRCPIE6672145", + "name": "GRAMAGLIA SARL BORNE ELECTRIC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.359979, + 44.039147 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "GRAMAGLIA SARL BORNE ELECTRIC", + "ref:EU:EVSE": "FRCPIE6672145", + "ref": "FRCPIE6672145", + "name": "GRAMAGLIA SARL BORNE ELECTRIC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.76674, + 47.8782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE THILLOT - 177158 - CCS", + "ref:EU:EVSE": "FRS88E17715", + "ref": "FRS88E17715", + "name": "LE THILLOT - 177158 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.76674, + 47.8782 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE THILLOT - 177158 - CCS", + "ref:EU:EVSE": "FRS88E17716", + "ref": "FRS88E17716", + "name": "LE THILLOT - 177158 - CCS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.826062, + 47.387572 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTLOUIS SUR LOIRE 1213 - Rue Rousseau", + "ref:EU:EVSE": "FRS37E121", + "ref": "FRS37E121", + "name": "MONTLOUIS SUR LOIRE 1213 - Rue Rousseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21506944, + 47.6492611 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Allaire", + "ref:EU:EVSE": "FRIENE006001", + "ref": "FRIENE006001", + "name": "Allaire", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21506944, + 47.6492611 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Allaire", + "ref:EU:EVSE": "FRIENE006001", + "ref": "FRIENE006001", + "name": "Allaire", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.283908, + 45.856424 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 9", + "ref:EU:EVSE": "FRCPIE6699795", + "ref": "FRCPIE6699795", + "name": "SONEPAR ST-VULBAS 9", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.358236, + 49.318152 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LA CAPRICIEUSE GOLD", + "ref:EU:EVSE": "FRCPIE6735855", + "ref": "FRCPIE6735855", + "name": "LA CAPRICIEUSE GOLD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.284364, + 45.856939 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 2", + "ref:EU:EVSE": "FRCPIE6696765", + "ref": "FRCPIE6696765", + "name": "SONEPAR ST-VULBAS 2", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82394, + 48.2551 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Thelo", + "ref:EU:EVSE": "FRIENE009101", + "ref": "FRIENE009101", + "name": "Saint-Thelo", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82394, + 48.2551 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Thelo", + "ref:EU:EVSE": "FRIENE009101", + "ref": "FRIENE009101", + "name": "Saint-Thelo", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82394, + 48.2551 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Thelo", + "ref:EU:EVSE": "FRIENE009102", + "ref": "FRIENE009102", + "name": "Saint-Thelo", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82394, + 48.2551 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Thelo", + "ref:EU:EVSE": "FRIENE009102", + "ref": "FRIENE009102", + "name": "Saint-Thelo", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.299493, + 49.189088 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SU COLOMBELLES BORNE 1", + "ref:EU:EVSE": "FRCPIE6608205", + "ref": "FRCPIE6608205", + "name": "SU COLOMBELLES BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.299493, + 49.189088 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SU COLOMBELLES BORNE 1", + "ref:EU:EVSE": "FRCPIE6608205", + "ref": "FRCPIE6608205", + "name": "SU COLOMBELLES BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.409856, + 50.12472 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CAUDRY MAIRIE", + "ref:EU:EVSE": "FRCPIE6735385", + "ref": "FRCPIE6735385", + "name": "CAUDRY MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.409856, + 50.12472 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CAUDRY MAIRIE", + "ref:EU:EVSE": "FRCPIE6735385", + "ref": "FRCPIE6735385", + "name": "CAUDRY MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.358236, + 49.318152 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "LA CAPRICIEUSE GOLD", + "ref:EU:EVSE": "FRCPIE6735855", + "ref": "FRCPIE6735855", + "name": "LA CAPRICIEUSE GOLD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.283908, + 45.856424 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 9", + "ref:EU:EVSE": "FRCPIE6699795", + "ref": "FRCPIE6699795", + "name": "SONEPAR ST-VULBAS 9", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.427055, + 48.612608 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LISSES", + "ref:EU:EVSE": "FRCPIE6758525", + "ref": "FRCPIE6758525", + "name": "SONEPAR LISSES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.489556, + 43.450393 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNE HU BORNE DC 02", + "ref:EU:EVSE": "FRCPIE6707215", + "ref": "FRCPIE6707215", + "name": "BORNE HU BORNE DC 02", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-29", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.427055, + 48.612608 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR LISSES", + "ref:EU:EVSE": "FRCPIE6758525", + "ref": "FRCPIE6758525", + "name": "SONEPAR LISSES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-20", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.283908, + 45.856424 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 9", + "ref:EU:EVSE": "FRCPIE6696735", + "ref": "FRCPIE6696735", + "name": "SONEPAR ST-VULBAS 9", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.283908, + 45.856424 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 9", + "ref:EU:EVSE": "FRCPIE6696735", + "ref": "FRCPIE6696735", + "name": "SONEPAR ST-VULBAS 9", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.283908, + 45.856424 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 9", + "ref:EU:EVSE": "FRCPIE6696745", + "ref": "FRCPIE6696745", + "name": "SONEPAR ST-VULBAS 9", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.283908, + 45.856424 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 9", + "ref:EU:EVSE": "FRCPIE6696745", + "ref": "FRCPIE6696745", + "name": "SONEPAR ST-VULBAS 9", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.283908, + 45.856424 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 9", + "ref:EU:EVSE": "FRCPIE6696755", + "ref": "FRCPIE6696755", + "name": "SONEPAR ST-VULBAS 9", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.283908, + 45.856424 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR ST-VULBAS 9", + "ref:EU:EVSE": "FRCPIE6696755", + "ref": "FRCPIE6696755", + "name": "SONEPAR ST-VULBAS 9", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.818359, + 48.322194 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOGENT-LE-ROTROU - Place du 11 août - 139024", + "ref:EU:EVSE": "FRS28E13902", + "ref": "FRS28E13902", + "name": "NOGENT-LE-ROTROU - Place du 11 août - 139024", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.869877, + 49.340218 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GRANDPRE - Rue de Montlix - 144223", + "ref:EU:EVSE": "FRS08E14422", + "ref": "FRS08E14422", + "name": "GRANDPRE - Rue de Montlix - 144223", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.107851, + 44.566656 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR GAP", + "ref:EU:EVSE": "FRCPIE6593725", + "ref": "FRCPIE6593725", + "name": "SONEPAR GAP", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04947, + 48.12164 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Pierre-la-Cour", + "ref:EU:EVSE": "FRIENE009002", + "ref": "FRIENE009002", + "name": "Saint-Pierre-la-Cour", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861169, + 49.360989 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Bosgouet Sud", + "ref:EU:EVSE": "FRFASE331030", + "ref": "FRFASE331030", + "name": "Aire de Bosgouet Sud", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861169, + 49.360989 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Bosgouet Sud", + "ref:EU:EVSE": "FRFASE331030", + "ref": "FRFASE331030", + "name": "Aire de Bosgouet Sud", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861169, + 49.360989 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Bosgouet Sud", + "ref:EU:EVSE": "FRFASE331030", + "ref": "FRFASE331030", + "name": "Aire de Bosgouet Sud", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861169, + 49.360989 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Bosgouet Sud", + "ref:EU:EVSE": "FRFASE331030", + "ref": "FRFASE331030", + "name": "Aire de Bosgouet Sud", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861169, + 49.360989 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Bosgouet Sud", + "ref:EU:EVSE": "FRFASE331030", + "ref": "FRFASE331030", + "name": "Aire de Bosgouet Sud", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861169, + 49.360989 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Bosgouet Sud", + "ref:EU:EVSE": "FRFASE331030", + "ref": "FRFASE331030", + "name": "Aire de Bosgouet Sud", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22542, + 48.680789 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TOMBLAINES - PARKING BOIS LA DAME - 187398", + "ref:EU:EVSE": "FRN54E18739", + "ref": "FRN54E18739", + "name": "TOMBLAINES - PARKING BOIS LA DAME - 187398", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22542, + 48.680789 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TOMBLAINES - PARKING BOIS LA DAME - 187398", + "ref:EU:EVSE": "FRN54E18739", + "ref": "FRN54E18739", + "name": "TOMBLAINES - PARKING BOIS LA DAME - 187398", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.595775, + 43.388968 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Os-Marsillon", + "ref:EU:EVSE": "FRIENE003001", + "ref": "FRIENE003001", + "name": "Os-Marsillon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.701676, + 48.976424 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIGNEULES LES HATTONCHATEL - 66442 - Rte St MIhiel", + "ref:EU:EVSE": "FRS55E6644", + "ref": "FRS55E6644", + "name": "VIGNEULES LES HATTONCHATEL - 66442 - Rte St MIhiel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.595775, + 43.388968 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Os-Marsillon", + "ref:EU:EVSE": "FRIENE003002", + "ref": "FRIENE003002", + "name": "Os-Marsillon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.595775, + 43.388968 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Os-Marsillon", + "ref:EU:EVSE": "FRIENE003002", + "ref": "FRIENE003002", + "name": "Os-Marsillon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.06458, + 46.579872 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bourbon-l'Archambault", + "ref:EU:EVSE": "FRIENE005201", + "ref": "FRIENE005201", + "name": "Bourbon-l'Archambault", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.06458, + 46.579872 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bourbon-l'Archambault", + "ref:EU:EVSE": "FRIENE005201", + "ref": "FRIENE005201", + "name": "Bourbon-l'Archambault", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.06458, + 46.579872 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bourbon-l'Archambault", + "ref:EU:EVSE": "FRIENE005202", + "ref": "FRIENE005202", + "name": "Bourbon-l'Archambault", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.06458, + 46.579872 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bourbon-l'Archambault", + "ref:EU:EVSE": "FRIENE005202", + "ref": "FRIENE005202", + "name": "Bourbon-l'Archambault", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99387, + 43.892162 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Beaumont-de-Lomagne", + "ref:EU:EVSE": "FRIENE004601", + "ref": "FRIENE004601", + "name": "Beaumont-de-Lomagne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99387, + 43.892162 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Beaumont-de-Lomagne", + "ref:EU:EVSE": "FRIENE004601", + "ref": "FRIENE004601", + "name": "Beaumont-de-Lomagne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99387, + 43.892162 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Beaumont-de-Lomagne", + "ref:EU:EVSE": "FRIENE004602", + "ref": "FRIENE004602", + "name": "Beaumont-de-Lomagne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99387, + 43.892162 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Beaumont-de-Lomagne", + "ref:EU:EVSE": "FRIENE004602", + "ref": "FRIENE004602", + "name": "Beaumont-de-Lomagne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04947, + 48.12164 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Pierre-la-Cour", + "ref:EU:EVSE": "FRIENE009001", + "ref": "FRIENE009001", + "name": "Saint-Pierre-la-Cour", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861169, + 49.360989 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Bosgouet Sud", + "ref:EU:EVSE": "FRFASE331030", + "ref": "FRFASE331030", + "name": "Aire de Bosgouet Sud", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861169, + 49.360989 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Bosgouet Sud", + "ref:EU:EVSE": "FRFASE331030", + "ref": "FRFASE331030", + "name": "Aire de Bosgouet Sud", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39871737, + 47.0807 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Parking Hôtel de Ville - 95968", + "ref:EU:EVSE": "FRS18E9596", + "ref": "FRS18E9596", + "name": "BOURGES - Parking Hôtel de Ville - 95968", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.156923, + 48.908117 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "EPPENDORF BORNE 4", + "ref:EU:EVSE": "FRCPIE6727085", + "ref": "FRCPIE6727085", + "name": "EPPENDORF BORNE 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525098, + 45.030878 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Est", + "ref:EU:EVSE": "FRIONE40870", + "ref": "FRIONE40870", + "name": "Pech Montat Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525098, + 45.030878 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Est", + "ref:EU:EVSE": "FRIONE40870", + "ref": "FRIONE40870", + "name": "Pech Montat Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525098, + 45.030878 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Est", + "ref:EU:EVSE": "FRIONE40870", + "ref": "FRIONE40870", + "name": "Pech Montat Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525098, + 45.030878 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Est", + "ref:EU:EVSE": "FRIONE4087", + "ref": "FRIONE4087", + "name": "Pech Montat Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.700614, + 47.437236 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "3C CLIM TOURS", + "ref:EU:EVSE": "FRCPIE6689415", + "ref": "FRCPIE6689415", + "name": "3C CLIM TOURS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.700614, + 47.437236 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "3C CLIM TOURS", + "ref:EU:EVSE": "FRCPIE6689415", + "ref": "FRCPIE6689415", + "name": "3C CLIM TOURS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.190681, + 50.186031 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT RAILLENCOURT", + "ref:EU:EVSE": "FRCPIE6690045", + "ref": "FRCPIE6690045", + "name": "SONEPAR CONNECT RAILLENCOURT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.190681, + 50.186031 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT RAILLENCOURT", + "ref:EU:EVSE": "FRCPIE6690045", + "ref": "FRCPIE6690045", + "name": "SONEPAR CONNECT RAILLENCOURT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.237583, + 48.005493 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CROYES-SUR-LE-LOIR - Piscine - 127485", + "ref:EU:EVSE": "FRS28E13080", + "ref": "FRS28E13080", + "name": "CROYES-SUR-LE-LOIR - Piscine - 127485", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.156923, + 48.908117 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "EPPENDORF BORNE 4", + "ref:EU:EVSE": "FRCPIE6727095", + "ref": "FRCPIE6727095", + "name": "EPPENDORF BORNE 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39871737, + 47.0807 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Parking Hôtel de Ville - 95968", + "ref:EU:EVSE": "FRS18E9596", + "ref": "FRS18E9596", + "name": "BOURGES - Parking Hôtel de Ville - 95968", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.156923, + 48.908117 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "EPPENDORF BORNE 4", + "ref:EU:EVSE": "FRCPIE6727095", + "ref": "FRCPIE6727095", + "name": "EPPENDORF BORNE 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.156923, + 48.908117 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "EPPENDORF BORNE 4", + "ref:EU:EVSE": "FRCPIE6727105", + "ref": "FRCPIE6727105", + "name": "EPPENDORF BORNE 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.156923, + 48.908117 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "EPPENDORF BORNE 4", + "ref:EU:EVSE": "FRCPIE6727105", + "ref": "FRCPIE6727105", + "name": "EPPENDORF BORNE 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.156923, + 48.908117 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "EPPENDORF BORNE 4", + "ref:EU:EVSE": "FRCPIE6727115", + "ref": "FRCPIE6727115", + "name": "EPPENDORF BORNE 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.156923, + 48.908117 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "EPPENDORF BORNE 4", + "ref:EU:EVSE": "FRCPIE6727115", + "ref": "FRCPIE6727115", + "name": "EPPENDORF BORNE 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48205299, + 45.119945 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Léon-sur-l'Isle", + "ref:EU:EVSE": "FRIENE003801", + "ref": "FRIENE003801", + "name": "Saint-Léon-sur-l'Isle", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48205299, + 45.119945 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Léon-sur-l'Isle", + "ref:EU:EVSE": "FRIENE003801", + "ref": "FRIENE003801", + "name": "Saint-Léon-sur-l'Isle", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48205299, + 45.119945 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Léon-sur-l'Isle", + "ref:EU:EVSE": "FRIENE003802", + "ref": "FRIENE003802", + "name": "Saint-Léon-sur-l'Isle", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48205299, + 45.119945 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Léon-sur-l'Isle", + "ref:EU:EVSE": "FRIENE003802", + "ref": "FRIENE003802", + "name": "Saint-Léon-sur-l'Isle", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04947, + 48.12164 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Pierre-la-Cour", + "ref:EU:EVSE": "FRIENE009001", + "ref": "FRIENE009001", + "name": "Saint-Pierre-la-Cour", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04947, + 48.12164 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Pierre-la-Cour", + "ref:EU:EVSE": "FRIENE009002", + "ref": "FRIENE009002", + "name": "Saint-Pierre-la-Cour", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49106235, + 47.50032088 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Portes d'Angers Sud", + "ref:EU:EVSE": "FRIONE10140", + "ref": "FRIONE10140", + "name": "Portes d'Angers Sud", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref:EU:EVSE": "FRIONE44070", + "ref": "FRIONE44070", + "name": "Mas D'Agenais", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.15351203, + 45.66017323 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Veyre", + "ref:EU:EVSE": "FRIONE41690", + "ref": "FRIONE41690", + "name": "Veyre", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.15351203, + 45.66017323 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Veyre", + "ref:EU:EVSE": "FRIONE41690", + "ref": "FRIONE41690", + "name": "Veyre", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.15351203, + 45.66017323 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Veyre", + "ref:EU:EVSE": "FRIONE41690", + "ref": "FRIONE41690", + "name": "Veyre", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.15351203, + 45.66017323 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Veyre", + "ref:EU:EVSE": "FRIONE41690", + "ref": "FRIONE41690", + "name": "Veyre", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.545844, + 49.614343 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bolleville Ouest", + "ref:EU:EVSE": "FRIONE4319", + "ref": "FRIONE4319", + "name": "Bolleville Ouest", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.545844, + 49.614343 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bolleville Ouest", + "ref:EU:EVSE": "FRIONE43190", + "ref": "FRIONE43190", + "name": "Bolleville Ouest", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.545844, + 49.614343 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bolleville Ouest", + "ref:EU:EVSE": "FRIONE43190", + "ref": "FRIONE43190", + "name": "Bolleville Ouest", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372304, + 48.85239 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Paris | Rue du Faubourg Saint-Antoine 45", + "ref:EU:EVSE": "FRTNME09911355", + "ref": "FRTNME09911355", + "name": "Paris | Rue du Faubourg Saint-Antoine 45", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372304, + 48.85239 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Paris | Rue du Faubourg Saint-Antoine 45", + "ref:EU:EVSE": "FRTNME08912790", + "ref": "FRTNME08912790", + "name": "Paris | Rue du Faubourg Saint-Antoine 45", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372304, + 48.85239 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Paris | Rue du Faubourg Saint-Antoine 45", + "ref:EU:EVSE": "FRTNME08912789", + "ref": "FRTNME08912789", + "name": "Paris | Rue du Faubourg Saint-Antoine 45", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372304, + 48.85239 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Paris | Rue du Faubourg Saint-Antoine 45", + "ref:EU:EVSE": "FRTNME08912788", + "ref": "FRTNME08912788", + "name": "Paris | Rue du Faubourg Saint-Antoine 45", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372304, + 48.85239 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Paris | Rue du Faubourg Saint-Antoine 45", + "ref:EU:EVSE": "FRTNME08912731", + "ref": "FRTNME08912731", + "name": "Paris | Rue du Faubourg Saint-Antoine 45", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372304, + 48.85239 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Paris | Rue du Faubourg Saint-Antoine 45", + "ref:EU:EVSE": "FRTNME08912730", + "ref": "FRTNME08912730", + "name": "Paris | Rue du Faubourg Saint-Antoine 45", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372304, + 48.85239 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Paris | Rue du Faubourg Saint-Antoine 45", + "ref:EU:EVSE": "FRTNME08912729", + "ref": "FRTNME08912729", + "name": "Paris | Rue du Faubourg Saint-Antoine 45", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372304, + 48.85239 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Paris | Rue du Faubourg Saint-Antoine 45", + "ref:EU:EVSE": "FRTNME08912728", + "ref": "FRTNME08912728", + "name": "Paris | Rue du Faubourg Saint-Antoine 45", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372304, + 48.85239 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Paris | Rue du Faubourg Saint-Antoine 45", + "ref:EU:EVSE": "FRTNME08912692", + "ref": "FRTNME08912692", + "name": "Paris | Rue du Faubourg Saint-Antoine 45", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353249, + 48.856136 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "TERRA_54_011", + "ref:EU:EVSE": "FRTNMETERRA54011", + "ref": "FRTNMETERRA54011", + "name": "TERRA_54_011", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353249, + 48.856136 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "TERRA_54_011", + "ref:EU:EVSE": "FRTNMETERRA54011", + "ref": "FRTNMETERRA54011", + "name": "TERRA_54_011", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353249, + 48.856136 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "TERRA_54_011", + "ref:EU:EVSE": "FRTNMETERRA54010", + "ref": "FRTNMETERRA54010", + "name": "TERRA_54_011", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353249, + 48.856136 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "TERRA_54_011", + "ref:EU:EVSE": "FRTNMETERRA54010", + "ref": "FRTNMETERRA54010", + "name": "TERRA_54_011", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.219219, + 47.146574 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MEHUN-sur-Yèvre - Square 8 Mai 1945 - 184331", + "ref:EU:EVSE": "FRS18E18433", + "ref": "FRS18E18433", + "name": "MEHUN-sur-Yèvre - Square 8 Mai 1945 - 184331", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.15351203, + 45.66017323 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Veyre", + "ref:EU:EVSE": "FRIONE4169", + "ref": "FRIONE4169", + "name": "Veyre", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-18", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.176307, + 47.308871 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT SAINT NAZAIRE", + "ref:EU:EVSE": "FRCPIE6666445", + "ref": "FRCPIE6666445", + "name": "SONEPAR CONNECT SAINT NAZAIRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.176307, + 47.308871 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT SAINT NAZAIRE", + "ref:EU:EVSE": "FRCPIE6666445", + "ref": "FRCPIE6666445", + "name": "SONEPAR CONNECT SAINT NAZAIRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-15", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.392879, + 49.203458 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CCI CAEN STATION 1", + "ref:EU:EVSE": "FRCPIE6600375", + "ref": "FRCPIE6600375", + "name": "CCI CAEN STATION 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref:EU:EVSE": "FRIONE44070", + "ref": "FRIONE44070", + "name": "Mas D'Agenais", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref:EU:EVSE": "FRIONE44070", + "ref": "FRIONE44070", + "name": "Mas D'Agenais", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref:EU:EVSE": "FRIONE44070", + "ref": "FRIONE44070", + "name": "Mas D'Agenais", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref:EU:EVSE": "FRIONE44070", + "ref": "FRIONE44070", + "name": "Mas D'Agenais", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref:EU:EVSE": "FRIONE44070", + "ref": "FRIONE44070", + "name": "Mas D'Agenais", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref:EU:EVSE": "FRIONE44070", + "ref": "FRIONE44070", + "name": "Mas D'Agenais", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref:EU:EVSE": "FRIONE44070", + "ref": "FRIONE44070", + "name": "Mas D'Agenais", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref:EU:EVSE": "FRIONE4407", + "ref": "FRIONE4407", + "name": "Mas D'Agenais", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.392879, + 49.203458 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CCI CAEN STATION 1", + "ref:EU:EVSE": "FRCPIE6600375", + "ref": "FRCPIE6600375", + "name": "CCI CAEN STATION 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36893, + 47.063792 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Daurat - 178309", + "ref:EU:EVSE": "FRS18E17830", + "ref": "FRS18E17830", + "name": "BOURGES - Daurat - 178309", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.33374, + 47.29969 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Coteaux-sur-Loire", + "ref:EU:EVSE": "FRIENE008302", + "ref": "FRIENE008302", + "name": "Coteaux-sur-Loire", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36893, + 47.063792 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Daurat - 178309", + "ref:EU:EVSE": "FRS18E17831", + "ref": "FRS18E17831", + "name": "BOURGES - Daurat - 178309", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.344566, + 47.602342 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4750 - Mail Pierre Charlot", + "ref:EU:EVSE": "FRS41E475", + "ref": "FRS41E475", + "name": "BLOIS 4750 - Mail Pierre Charlot", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.344566, + 47.602342 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4750 - Mail Pierre Charlot", + "ref:EU:EVSE": "FRS41E475", + "ref": "FRS41E475", + "name": "BLOIS 4750 - Mail Pierre Charlot", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.348317, + 48.079206 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUDUN - Place de Schweinfurt - 127481", + "ref:EU:EVSE": "FRS28E12748", + "ref": "FRS28E12748", + "name": "CHATEAUDUN - Place de Schweinfurt - 127481", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.348317, + 48.079206 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUDUN - Place de Schweinfurt - 127481", + "ref:EU:EVSE": "FRS28E12748", + "ref": "FRS28E12748", + "name": "CHATEAUDUN - Place de Schweinfurt - 127481", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-07", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.33374, + 47.29969 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Coteaux-sur-Loire", + "ref:EU:EVSE": "FRIENE008301", + "ref": "FRIENE008301", + "name": "Coteaux-sur-Loire", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.33374, + 47.29969 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Coteaux-sur-Loire", + "ref:EU:EVSE": "FRIENE008301", + "ref": "FRIENE008301", + "name": "Coteaux-sur-Loire", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.33374, + 47.29969 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Coteaux-sur-Loire", + "ref:EU:EVSE": "FRIENE008302", + "ref": "FRIENE008302", + "name": "Coteaux-sur-Loire", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "EF connector is available at the site separately", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.595775, + 43.388968 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Os-Marsillon", + "ref:EU:EVSE": "FRIENE003001", + "ref": "FRIENE003001", + "name": "Os-Marsillon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525098, + 45.030878 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Est", + "ref:EU:EVSE": "FRIONE40870", + "ref": "FRIONE40870", + "name": "Pech Montat Est", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.156923, + 48.908117 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "EPPENDORF BORNE 4", + "ref:EU:EVSE": "FRCPIE6727085", + "ref": "FRCPIE6727085", + "name": "EPPENDORF BORNE 4", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49106235, + 47.50032088 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Portes d'Angers Sud", + "ref:EU:EVSE": "FRIONE10140", + "ref": "FRIONE10140", + "name": "Portes d'Angers Sud", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279899, + 44.524191 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNHDP BORNE 1", + "ref:EU:EVSE": "FRCPIE6676785", + "ref": "FRCPIE6676785", + "name": "BORNHDP BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47814, + 46.302012 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Niort Saint-Florent", + "ref:EU:EVSE": "FRIENE009201", + "ref": "FRIENE009201", + "name": "Niort Saint-Florent", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47814, + 46.302012 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Niort Saint-Florent", + "ref:EU:EVSE": "FRIENE009202", + "ref": "FRIENE009202", + "name": "Niort Saint-Florent", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47814, + 46.302012 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Niort Saint-Florent", + "ref:EU:EVSE": "FRIENE009202", + "ref": "FRIENE009202", + "name": "Niort Saint-Florent", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.391091, + 48.727654 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINTE GEMME MORONVAL - Rte Nogent le Roi - 130548", + "ref:EU:EVSE": "FRS28E13054", + "ref": "FRS28E13054", + "name": "SAINTE GEMME MORONVAL - Rte Nogent le Roi - 130548", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0643557, + 50.2274772 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Rumaucourt HW", + "ref:EU:EVSE": "FRSHEE32", + "ref": "FRSHEE32", + "name": "Shell- France Aire de Rumaucourt HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0643557, + 50.2274772 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Rumaucourt HW", + "ref:EU:EVSE": "FRSHEE32", + "ref": "FRSHEE32", + "name": "Shell- France Aire de Rumaucourt HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0643557, + 50.2274772 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Rumaucourt HW", + "ref:EU:EVSE": "FRSHEE33", + "ref": "FRSHEE33", + "name": "Shell- France Aire de Rumaucourt HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0643557, + 50.2274772 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Rumaucourt HW", + "ref:EU:EVSE": "FRSHEE33", + "ref": "FRSHEE33", + "name": "Shell- France Aire de Rumaucourt HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0643557, + 50.2274772 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Rumaucourt HW", + "ref:EU:EVSE": "FRSHEE33", + "ref": "FRSHEE33", + "name": "Shell- France Aire de Rumaucourt HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0643557, + 50.2274772 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Rumaucourt HW", + "ref:EU:EVSE": "FRSHEE33", + "ref": "FRSHEE33", + "name": "Shell- France Aire de Rumaucourt HW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.447106, + 46.141037 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT VICHY", + "ref:EU:EVSE": "FRCPIE6647205", + "ref": "FRCPIE6647205", + "name": "SONEPAR CONNECT VICHY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.447106, + 46.141037 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SONEPAR CONNECT VICHY", + "ref:EU:EVSE": "FRCPIE6647205", + "ref": "FRCPIE6647205", + "name": "SONEPAR CONNECT VICHY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279899, + 44.524191 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "BORNHDP BORNE 1", + "ref:EU:EVSE": "FRCPIE6676785", + "ref": "FRCPIE6676785", + "name": "BORNHDP BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49106235, + 47.50032088 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Portes d'Angers Sud", + "ref:EU:EVSE": "FRIONE10140", + "ref": "FRIONE10140", + "name": "Portes d'Angers Sud", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.593659, + 49.050216 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "U FAULQUEMONT EMPLOYES", + "ref:EU:EVSE": "FRCPIE6547545", + "ref": "FRCPIE6547545", + "name": "U FAULQUEMONT EMPLOYES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.593659, + 49.050216 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "U FAULQUEMONT EMPLOYES", + "ref:EU:EVSE": "FRCPIE6547545", + "ref": "FRCPIE6547545", + "name": "U FAULQUEMONT EMPLOYES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.058594, + 47.574824 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U CARNAC BORNE 1", + "ref:EU:EVSE": "FRCPIE6708745", + "ref": "FRCPIE6708745", + "name": "SUPER U CARNAC BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.058594, + 47.574824 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "SUPER U CARNAC BORNE 1", + "ref:EU:EVSE": "FRCPIE6708745", + "ref": "FRCPIE6708745", + "name": "SUPER U CARNAC BORNE 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-14", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.369649, + 49.504894 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RETHEL - 46434 - Parking Place Victor Hugo", + "ref:EU:EVSE": "FRS08E4643", + "ref": "FRS08E4643", + "name": "RETHEL - 46434 - Parking Place Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.369649, + 49.504894 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RETHEL - 46434 - Parking Place Victor Hugo", + "ref:EU:EVSE": "FRS08E4643", + "ref": "FRS08E4643", + "name": "RETHEL - 46434 - Parking Place Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.365318, + 49.508675 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RETHEL - 46445 - Place de la republique", + "ref:EU:EVSE": "FRS08E4644", + "ref": "FRS08E4644", + "name": "RETHEL - 46445 - Place de la republique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.365318, + 49.508675 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RETHEL - 46445 - Place de la republique", + "ref:EU:EVSE": "FRS08E4644", + "ref": "FRS08E4644", + "name": "RETHEL - 46445 - Place de la republique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2676, + 49.4177 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATELET SUR RETOURNE - 46461 - Parking D925", + "ref:EU:EVSE": "FRS08E4646", + "ref": "FRS08E4646", + "name": "CHATELET SUR RETOURNE - 46461 - Parking D925", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2676, + 49.4177 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATELET SUR RETOURNE - 46461 - Parking D925", + "ref:EU:EVSE": "FRS08E4646", + "ref": "FRS08E4646", + "name": "CHATELET SUR RETOURNE - 46461 - Parking D925", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.04468352, + 49.42853006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRIENNE SUR AISNE - 46468 - Parking Co-voiturage", + "ref:EU:EVSE": "FRS08E4646", + "ref": "FRS08E4646", + "name": "BRIENNE SUR AISNE - 46468 - Parking Co-voiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.04468352, + 49.42853006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRIENNE SUR AISNE - 46468 - Parking Co-voiturage", + "ref:EU:EVSE": "FRS08E4646", + "ref": "FRS08E4646", + "name": "BRIENNE SUR AISNE - 46468 - Parking Co-voiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47814, + 46.302012 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Niort Saint-Florent", + "ref:EU:EVSE": "FRIENE009201", + "ref": "FRIENE009201", + "name": "Niort Saint-Florent", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.252578, + 48.449077 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURVILLE SUR EUR - Beauce - 137388", + "ref:EU:EVSE": "FRS28E13738", + "ref": "FRS28E13738", + "name": "COURVILLE SUR EUR - Beauce - 137388", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26026, + 49.851873 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED ST QUENTIN", + "ref:EU:EVSE": "FRCPIE6649255", + "ref": "FRCPIE6649255", + "name": "CGED CGED ST QUENTIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26026, + 49.851873 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "CGED CGED ST QUENTIN", + "ref:EU:EVSE": "FRCPIE6649255", + "ref": "FRCPIE6649255", + "name": "CGED CGED ST QUENTIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.701676, + 48.976424 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIGNEULES LES HATTONCHATEL - 66442 - Rte St MIhiel", + "ref:EU:EVSE": "FRS55E6644", + "ref": "FRS55E6644", + "name": "VIGNEULES LES HATTONCHATEL - 66442 - Rte St MIhiel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.623059, + 45.196766 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Freney", + "ref:EU:EVSE": "FRIONE40370", + "ref": "FRIONE40370", + "name": "Freney", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.623059, + 45.196766 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Freney", + "ref:EU:EVSE": "FRIONE40370", + "ref": "FRIONE40370", + "name": "Freney", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.623059, + 45.196766 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Freney", + "ref:EU:EVSE": "FRIONE40370", + "ref": "FRIONE40370", + "name": "Freney", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.623059, + 45.196766 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Freney", + "ref:EU:EVSE": "FRIONE40370", + "ref": "FRIONE40370", + "name": "Freney", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.623059, + 45.196766 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Freney", + "ref:EU:EVSE": "FRIONE4037", + "ref": "FRIONE4037", + "name": "Freney", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-19", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.884251, + 48.200212 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JANVILLE-EN-BEAUCE - Rue Sœur Saint-Henri - 130244", + "ref:EU:EVSE": "FRS28E13024", + "ref": "FRS28E13024", + "name": "JANVILLE-EN-BEAUCE - Rue Sœur Saint-Henri - 130244", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2288233, + 48.7293536 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Sommesous HW", + "ref:EU:EVSE": "FRSHEE43", + "ref": "FRSHEE43", + "name": "Shell- France Aire de Sommesous HW", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2288233, + 48.7293536 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Sommesous HW", + "ref:EU:EVSE": "FRSHEE43", + "ref": "FRSHEE43", + "name": "Shell- France Aire de Sommesous HW", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2288233, + 48.7293536 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Sommesous HW", + "ref:EU:EVSE": "FRSHEE43", + "ref": "FRSHEE43", + "name": "Shell- France Aire de Sommesous HW", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2288233, + 48.7293536 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Sommesous HW", + "ref:EU:EVSE": "FRSHEE44", + "ref": "FRSHEE44", + "name": "Shell- France Aire de Sommesous HW", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2288233, + 48.7293536 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Sommesous HW", + "ref:EU:EVSE": "FRSHEE44", + "ref": "FRSHEE44", + "name": "Shell- France Aire de Sommesous HW", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2288233, + 48.7293536 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Sommesous HW", + "ref:EU:EVSE": "FRSHEE45", + "ref": "FRSHEE45", + "name": "Shell- France Aire de Sommesous HW", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2288233, + 48.7293536 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Sommesous HW", + "ref:EU:EVSE": "FRSHEE45", + "ref": "FRSHEE45", + "name": "Shell- France Aire de Sommesous HW", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2288233, + 48.7293536 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Sommesous HW", + "ref:EU:EVSE": "FRSHEE45", + "ref": "FRSHEE45", + "name": "Shell- France Aire de Sommesous HW", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2288233, + 48.7293536 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Sommesous HW", + "ref:EU:EVSE": "FRSHEE45", + "ref": "FRSHEE45", + "name": "Shell- France Aire de Sommesous HW", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35150861, + 46.57702787 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIGNY - Le Bourg - 148756", + "ref:EU:EVSE": "FRS18E14875", + "ref": "FRS18E14875", + "name": "REIGNY - Le Bourg - 148756", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35150861, + 46.57702787 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIGNY - Le Bourg - 148756", + "ref:EU:EVSE": "FRS18E14875", + "ref": "FRS18E14875", + "name": "REIGNY - Le Bourg - 148756", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.682819, + 48.146012 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ORGERES-EN-BEAUCE - Rue de l'Arsenal - 130014", + "ref:EU:EVSE": "FRS28E13001", + "ref": "FRS28E13001", + "name": "ORGERES-EN-BEAUCE - Rue de l'Arsenal - 130014", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.414504, + 47.081654 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - SDE18 - 186239", + "ref:EU:EVSE": "FRS18E18623", + "ref": "FRS18E18623", + "name": "BOURGES - SDE18 - 186239", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37298052, + 47.10104724 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St DOULCHARD - Clos Chaperon - 98613", + "ref:EU:EVSE": "FRS18E9861", + "ref": "FRS18E9861", + "name": "St DOULCHARD - Clos Chaperon - 98613", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37298052, + 47.10104724 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St DOULCHARD - Clos Chaperon - 98613", + "ref:EU:EVSE": "FRS18E9861", + "ref": "FRS18E9861", + "name": "St DOULCHARD - Clos Chaperon - 98613", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40000606, + 47.09136482 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Coubertin - 153420", + "ref:EU:EVSE": "FRS18E15342", + "ref": "FRS18E15342", + "name": "BOURGES - Coubertin - 153420", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40000606, + 47.09136482 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Coubertin - 153420", + "ref:EU:EVSE": "FRS18E15342", + "ref": "FRS18E15342", + "name": "BOURGES - Coubertin - 153420", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.392723, + 48.113672 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MOLEANS - Rue du moulin - 134801", + "ref:EU:EVSE": "FRS28E13480", + "ref": "FRS28E13480", + "name": "MOLEANS - Rue du moulin - 134801", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.98555, + 49.262042 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Saint Brice Courcelle rue libération - 112430", + "ref:EU:EVSE": "FRS51E11242", + "ref": "FRS51E11242", + "name": "Saint Brice Courcelle rue libération - 112430", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.98555, + 49.262042 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Saint Brice Courcelle rue libération - 112430", + "ref:EU:EVSE": "FRS51E11243", + "ref": "FRS51E11243", + "name": "Saint Brice Courcelle rue libération - 112430", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.509793, + 49.118571 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Verdun Saint-Nicolas Sud", + "ref:EU:EVSE": "FRIONE41760", + "ref": "FRIONE41760", + "name": "Verdun Saint-Nicolas Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.66933846, + 47.6509206 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Derval", + "ref:EU:EVSE": "FRIENE003702", + "ref": "FRIENE003702", + "name": "Derval", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.052668, + 48.14336 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAPELLE ROYALE - Rue jean moulin - 134851", + "ref:EU:EVSE": "FRS28E13485", + "ref": "FRS28E13485", + "name": "CHAPELLE ROYALE - Rue jean moulin - 134851", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-05", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.59294, + 49.049168 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "U FAULQUEMONT BORNE 1", + "ref:EU:EVSE": "FRCPIE6600945", + "ref": "FRCPIE6600945", + "name": "U FAULQUEMONT BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.59294, + 49.049168 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "U FAULQUEMONT BORNE 1", + "ref:EU:EVSE": "FRCPIE6600945", + "ref": "FRCPIE6600945", + "name": "U FAULQUEMONT BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.59294, + 49.049168 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "U FAULQUEMONT BORNE 1", + "ref:EU:EVSE": "FRCPIE6600955", + "ref": "FRCPIE6600955", + "name": "U FAULQUEMONT BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.59294, + 49.049168 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@chargepoint.com", + "phone": "", + "network": "U FAULQUEMONT BORNE 1", + "ref:EU:EVSE": "FRCPIE6600955", + "ref": "FRCPIE6600955", + "name": "U FAULQUEMONT BORNE 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-08", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12869, + 43.293939 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Nissan-Lez-Enserune", + "ref:EU:EVSE": "FRIENE009601", + "ref": "FRIENE009601", + "name": "Nissan-Lez-Enserune", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12869, + 43.293939 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Nissan-Lez-Enserune", + "ref:EU:EVSE": "FRIENE009601", + "ref": "FRIENE009601", + "name": "Nissan-Lez-Enserune", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12869, + 43.293939 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Nissan-Lez-Enserune", + "ref:EU:EVSE": "FRIENE009602", + "ref": "FRIENE009602", + "name": "Nissan-Lez-Enserune", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12869, + 43.293939 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Nissan-Lez-Enserune", + "ref:EU:EVSE": "FRIENE009602", + "ref": "FRIENE009602", + "name": "Nissan-Lez-Enserune", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.088926, + 48.856103 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de L'Obrion", + "ref:EU:EVSE": "FRFASE331080", + "ref": "FRFASE331080", + "name": "Aire de L'Obrion", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.088926, + 48.856103 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de L'Obrion", + "ref:EU:EVSE": "FRFASE331080", + "ref": "FRFASE331080", + "name": "Aire de L'Obrion", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.088926, + 48.856103 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de L'Obrion", + "ref:EU:EVSE": "FRFASE331080", + "ref": "FRFASE331080", + "name": "Aire de L'Obrion", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.088926, + 48.856103 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de L'Obrion", + "ref:EU:EVSE": "FRFASE331080", + "ref": "FRFASE331080", + "name": "Aire de L'Obrion", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.088926, + 48.856103 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de L'Obrion", + "ref:EU:EVSE": "FRFASE331080", + "ref": "FRFASE331080", + "name": "Aire de L'Obrion", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.088926, + 48.856103 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de L'Obrion", + "ref:EU:EVSE": "FRFASE331080", + "ref": "FRFASE331080", + "name": "Aire de L'Obrion", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.088926, + 48.856103 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de L'Obrion", + "ref:EU:EVSE": "FRFASE331080", + "ref": "FRFASE331080", + "name": "Aire de L'Obrion", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.088926, + 48.856103 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de L'Obrion", + "ref:EU:EVSE": "FRFASE331080", + "ref": "FRFASE331080", + "name": "Aire de L'Obrion", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.158265, + 45.548788 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Arclusaz", + "ref:EU:EVSE": "FRIONE40990", + "ref": "FRIONE40990", + "name": "Arclusaz", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.158265, + 45.548788 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Arclusaz", + "ref:EU:EVSE": "FRIONE40990", + "ref": "FRIONE40990", + "name": "Arclusaz", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.158265, + 45.548788 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Arclusaz", + "ref:EU:EVSE": "FRIONE40990", + "ref": "FRIONE40990", + "name": "Arclusaz", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.158265, + 45.548788 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Arclusaz", + "ref:EU:EVSE": "FRIONE40990", + "ref": "FRIONE40990", + "name": "Arclusaz", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.158265, + 45.548788 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Arclusaz", + "ref:EU:EVSE": "FRIONE4099", + "ref": "FRIONE4099", + "name": "Arclusaz", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-12", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49106235, + 47.50032088 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Portes d'Angers Sud", + "ref:EU:EVSE": "FRIONE10140", + "ref": "FRIONE10140", + "name": "Portes d'Angers Sud", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49106235, + 47.50032088 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Portes d'Angers Sud", + "ref:EU:EVSE": "FRIONE10140", + "ref": "FRIONE10140", + "name": "Portes d'Angers Sud", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49106235, + 47.50032088 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Portes d'Angers Sud", + "ref:EU:EVSE": "FRIONE10140", + "ref": "FRIONE10140", + "name": "Portes d'Angers Sud", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.66933846, + 47.6509206 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Derval", + "ref:EU:EVSE": "FRIENE003702", + "ref": "FRIENE003702", + "name": "Derval", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.66933846, + 47.6509206 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Derval", + "ref:EU:EVSE": "FRIENE003701", + "ref": "FRIENE003701", + "name": "Derval", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.509793, + 49.118571 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Verdun Saint-Nicolas Sud", + "ref:EU:EVSE": "FRIONE41760", + "ref": "FRIONE41760", + "name": "Verdun Saint-Nicolas Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.66933846, + 47.6509206 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Derval", + "ref:EU:EVSE": "FRIENE003701", + "ref": "FRIENE003701", + "name": "Derval", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.509793, + 49.118571 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Verdun Saint-Nicolas Sud", + "ref:EU:EVSE": "FRIONE41760", + "ref": "FRIONE41760", + "name": "Verdun Saint-Nicolas Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.509793, + 49.118571 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Verdun Saint-Nicolas Sud", + "ref:EU:EVSE": "FRIONE41760", + "ref": "FRIONE41760", + "name": "Verdun Saint-Nicolas Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.219219, + 47.146574 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MEHUN-sur-Yèvre - Square 8 Mai 1945 - 184331", + "ref:EU:EVSE": "FRS18E18433", + "ref": "FRS18E18433", + "name": "MEHUN-sur-Yèvre - Square 8 Mai 1945 - 184331", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-13", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.509793, + 49.118571 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Verdun Saint-Nicolas Sud", + "ref:EU:EVSE": "FRIONE4176", + "ref": "FRIONE4176", + "name": "Verdun Saint-Nicolas Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.509793, + 49.118571 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Verdun Saint-Nicolas Sud", + "ref:EU:EVSE": "FRIONE41760", + "ref": "FRIONE41760", + "name": "Verdun Saint-Nicolas Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.509793, + 49.118571 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Verdun Saint-Nicolas Sud", + "ref:EU:EVSE": "FRIONE41760", + "ref": "FRIONE41760", + "name": "Verdun Saint-Nicolas Sud", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "EF connector is available at the site separately", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.146988, + 44.656649 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR17841", + "ref": "FR*SOD*S*OTHR*178*4*_*_", + "name": "ARCACHON - AIGUILLON", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.193047, + 44.658496 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR18041", + "ref": "FR*SOD*S*OTHR*180*4*_*_", + "name": "ARCACHON - PEREIRE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.201663, + 44.641716 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR18121", + "ref": "FR*SOD*S*OTHR*181*2*_*_", + "name": "ARCACHON - MOULLEAU", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.201663, + 44.641716 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR18141", + "ref": "FR*SOD*S*OTHR*181*4*_*_", + "name": "ARCACHON - MOULLEAU", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.201663, + 44.641716 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR18151", + "ref": "FR*SOD*S*OTHR*181*5*_*_", + "name": "ARCACHON - MOULLEAU", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.201663, + 44.641716 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR18111", + "ref": "FR*SOD*S*OTHR*181*1*_*_", + "name": "ARCACHON - MOULLEAU", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.201663, + 44.641716 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR18131", + "ref": "FR*SOD*S*OTHR*181*3*_*_", + "name": "ARCACHON - MOULLEAU", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.193047, + 44.658496 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR18011", + "ref": "FR*SOD*S*OTHR*180*1*_*_", + "name": "ARCACHON - PEREIRE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.193047, + 44.658496 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR18021", + "ref": "FR*SOD*S*OTHR*180*2*_*_", + "name": "ARCACHON - PEREIRE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.193047, + 44.658496 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR18031", + "ref": "FR*SOD*S*OTHR*180*3*_*_", + "name": "ARCACHON - PEREIRE", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.146988, + 44.656649 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR17831", + "ref": "FR*SOD*S*OTHR*178*3*_*_", + "name": "ARCACHON - AIGUILLON", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.193047, + 44.658496 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR18051", + "ref": "FR*SOD*S*OTHR*180*5*_*_", + "name": "ARCACHON - PEREIRE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.165259, + 44.659664 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR17951", + "ref": "FR*SOD*S*OTHR*179*5*_*_", + "name": "ARCACHON - GARE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.165259, + 44.659664 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR17921", + "ref": "FR*SOD*S*OTHR*179*2*_*_", + "name": "ARCACHON - GARE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.165259, + 44.659664 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR17911", + "ref": "FR*SOD*S*OTHR*179*1*_*_", + "name": "ARCACHON - GARE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.165259, + 44.659664 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR17931", + "ref": "FR*SOD*S*OTHR*179*3*_*_", + "name": "ARCACHON - GARE", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.146988, + 44.656649 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR17851", + "ref": "FR*SOD*S*OTHR*178*5*_*_", + "name": "ARCACHON - AIGUILLON", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.146988, + 44.656649 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR17811", + "ref": "FR*SOD*S*OTHR*178*1*_*_", + "name": "ARCACHON - AIGUILLON", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.146988, + 44.656649 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR17821", + "ref": "FR*SOD*S*OTHR*178*2*_*_", + "name": "ARCACHON - AIGUILLON", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.165259, + 44.659664 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref:EU:EVSE": "FROTHPOTHR17941", + "ref": "FR*SOD*S*OTHR*179*4*_*_", + "name": "ARCACHON - GARE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.249567, + 48.906326 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO111", + "ref": "FR*SOD*S*GACO*1*1*_*_", + "name": "LA GARENNE-COLOMBES - 52 BOULEVARD DE LA REPUBLIQUE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO661", + "ref": "FR*SOD*S*GACO*6*6*_*_", + "name": "LA GARENNE-COLOMBES - 41 AVENUE DE VERDUN", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255774, + 48.905086 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO411", + "ref": "FR*SOD*S*GACO*4*1*_*_", + "name": "LA GARENNE-COLOMBES - 126 RUE DE COLOMBES", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255774, + 48.905086 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO441", + "ref": "FR*SOD*S*GACO*4*4*_*_", + "name": "LA GARENNE-COLOMBES - 126 RUE DE COLOMBES", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255774, + 48.905086 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO471", + "ref": "FR*SOD*S*GACO*4*7*_*_", + "name": "LA GARENNE-COLOMBES - 126 RUE DE COLOMBES", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255774, + 48.905086 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO451", + "ref": "FR*SOD*S*GACO*4*5*_*_", + "name": "LA GARENNE-COLOMBES - 126 RUE DE COLOMBES", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255774, + 48.905086 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO421", + "ref": "FR*SOD*S*GACO*4*2*_*_", + "name": "LA GARENNE-COLOMBES - 126 RUE DE COLOMBES", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239232, + 48.903313 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO531", + "ref": "FR*SOD*S*GACO*5*3*_*_", + "name": "LA GARENNE-COLOMBES - 31 BOULEVARD NATIONAL", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239232, + 48.903313 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO541", + "ref": "FR*SOD*S*GACO*5*4*_*_", + "name": "LA GARENNE-COLOMBES - 31 BOULEVARD NATIONAL", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239232, + 48.903313 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO511", + "ref": "FR*SOD*S*GACO*5*1*_*_", + "name": "LA GARENNE-COLOMBES - 31 BOULEVARD NATIONAL", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239232, + 48.903313 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO521", + "ref": "FR*SOD*S*GACO*5*2*_*_", + "name": "LA GARENNE-COLOMBES - 31 BOULEVARD NATIONAL", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239232, + 48.903313 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO551", + "ref": "FR*SOD*S*GACO*5*5*_*_", + "name": "LA GARENNE-COLOMBES - 31 BOULEVARD NATIONAL", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239232, + 48.903313 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO561", + "ref": "FR*SOD*S*GACO*5*6*_*_", + "name": "LA GARENNE-COLOMBES - 31 BOULEVARD NATIONAL", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO631", + "ref": "FR*SOD*S*GACO*6*3*_*_", + "name": "LA GARENNE-COLOMBES - 41 AVENUE DE VERDUN", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO611", + "ref": "FR*SOD*S*GACO*6*1*_*_", + "name": "LA GARENNE-COLOMBES - 41 AVENUE DE VERDUN", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO641", + "ref": "FR*SOD*S*GACO*6*4*_*_", + "name": "LA GARENNE-COLOMBES - 41 AVENUE DE VERDUN", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO621", + "ref": "FR*SOD*S*GACO*6*2*_*_", + "name": "LA GARENNE-COLOMBES - 41 AVENUE DE VERDUN", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.249567, + 48.906326 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO131", + "ref": "FR*SOD*S*GACO*1*3*_*_", + "name": "LA GARENNE-COLOMBES - 52 BOULEVARD DE LA REPUBLIQUE", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255774, + 48.905086 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO461", + "ref": "FR*SOD*S*GACO*4*6*_*_", + "name": "LA GARENNE-COLOMBES - 126 RUE DE COLOMBES", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO651", + "ref": "FR*SOD*S*GACO*6*5*_*_", + "name": "LA GARENNE-COLOMBES - 41 AVENUE DE VERDUN", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255774, + 48.905086 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO431", + "ref": "FR*SOD*S*GACO*4*3*_*_", + "name": "LA GARENNE-COLOMBES - 126 RUE DE COLOMBES", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237217, + 48.908458 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO241", + "ref": "FR*SOD*S*GACO*2*4*_*_", + "name": "LA GARENNE-COLOMBES - 92 BOULEVARD NATIONAL", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.249567, + 48.906326 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO151", + "ref": "FR*SOD*S*GACO*1*5*_*_", + "name": "LA GARENNE-COLOMBES - 52 BOULEVARD DE LA REPUBLIQUE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.257169, + 48.913486 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO351", + "ref": "FR*SOD*S*GACO*3*5*_*_", + "name": "LA GARENNE-COLOMBES - 3 RUE DU TRANSVAAL", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.249567, + 48.906326 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO121", + "ref": "FR*SOD*S*GACO*1*2*_*_", + "name": "LA GARENNE-COLOMBES - 52 BOULEVARD DE LA REPUBLIQUE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.249567, + 48.906326 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO161", + "ref": "FR*SOD*S*GACO*1*6*_*_", + "name": "LA GARENNE-COLOMBES - 52 BOULEVARD DE LA REPUBLIQUE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237217, + 48.908458 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO231", + "ref": "FR*SOD*S*GACO*2*3*_*_", + "name": "LA GARENNE-COLOMBES - 92 BOULEVARD NATIONAL", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237217, + 48.908458 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO221", + "ref": "FR*SOD*S*GACO*2*2*_*_", + "name": "LA GARENNE-COLOMBES - 92 BOULEVARD NATIONAL", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237217, + 48.908458 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO211", + "ref": "FR*SOD*S*GACO*2*1*_*_", + "name": "LA GARENNE-COLOMBES - 92 BOULEVARD NATIONAL", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.249567, + 48.906326 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO141", + "ref": "FR*SOD*S*GACO*1*4*_*_", + "name": "LA GARENNE-COLOMBES - 52 BOULEVARD DE LA REPUBLIQUE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237217, + 48.908458 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO261", + "ref": "FR*SOD*S*GACO*2*6*_*_", + "name": "LA GARENNE-COLOMBES - 92 BOULEVARD NATIONAL", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.257169, + 48.913486 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO341", + "ref": "FR*SOD*S*GACO*3*4*_*_", + "name": "LA GARENNE-COLOMBES - 3 RUE DU TRANSVAAL", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.257169, + 48.913486 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO331", + "ref": "FR*SOD*S*GACO*3*3*_*_", + "name": "LA GARENNE-COLOMBES - 3 RUE DU TRANSVAAL", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.257169, + 48.913486 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO311", + "ref": "FR*SOD*S*GACO*3*1*_*_", + "name": "LA GARENNE-COLOMBES - 3 RUE DU TRANSVAAL", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.257169, + 48.913486 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO321", + "ref": "FR*SOD*S*GACO*3*2*_*_", + "name": "LA GARENNE-COLOMBES - 3 RUE DU TRANSVAAL", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.257169, + 48.913486 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO361", + "ref": "FR*SOD*S*GACO*3*6*_*_", + "name": "LA GARENNE-COLOMBES - 3 RUE DU TRANSVAAL", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237217, + 48.908458 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref:EU:EVSE": "FRLGCPGACO251", + "ref": "FR*SOD*S*GACO*2*5*_*_", + "name": "LA GARENNE-COLOMBES - 92 BOULEVARD NATIONAL", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.022342, + 44.992886 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334011", + "ref": "FR*SOD*S*MB33*40*1*_*_", + "name": "GOURS - PARKING EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.041403, + 44.39061 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334112", + "ref": "FR*SOD*S*MB33*41*1*_*_", + "name": "GRIGNOLS - RUE DU CHATEAU DEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.041403, + 44.39061 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334111", + "ref": "FR*SOD*S*MB33*41*1*_*_", + "name": "GRIGNOLS - RUE DU CHATEAU DEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.185352, + 45.040447 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334211", + "ref": "FR*SOD*S*MB33*42*1*_*_", + "name": "GUITRES - AV DE L ISLE / PARKING L ANGLE RUE DE LA GRAVETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.185352, + 45.040447 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334212", + "ref": "FR*SOD*S*MB33*42*1*_*_", + "name": "GUITRES - AV DE L ISLE / PARKING L ANGLE RUE DE LA GRAVETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.071506, + 44.635715 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334411", + "ref": "FR*SOD*S*MB33*44*1*_*_", + "name": "GUJAN-MESTRAS - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0602, + 44.63863 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334311", + "ref": "FR*SOD*S*MB33*43*1*_*_", + "name": "GUJAN-MESTRAS - PARKING DOCTEUR BEZIAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0602, + 44.63863 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334312", + "ref": "FR*SOD*S*MB33*43*1*_*_", + "name": "GUJAN-MESTRAS - PARKING DOCTEUR BEZIAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.071506, + 44.635715 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334412", + "ref": "FR*SOD*S*MB33*44*1*_*_", + "name": "GUJAN-MESTRAS - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0694, + 44.640648 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334511", + "ref": "FR*SOD*S*MB33*45*1*_*_", + "name": "GUJAN-MESTRAS - PEM RUE DE LYSER - DROITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0694, + 44.640648 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334512", + "ref": "FR*SOD*S*MB33*45*1*_*_", + "name": "GUJAN-MESTRAS - PEM RUE DE LYSER - DROITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.274073, + 44.992256 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333911", + "ref": "FR*SOD*S*MB33*39*1*_*_", + "name": "GALGON - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.069077, + 44.64072 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334612", + "ref": "FR*SOD*S*MB33*46*1*_*_", + "name": "GUJAN-MESTRAS - PEM RUE DE LYSER - GAUCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.022342, + 44.992886 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334012", + "ref": "FR*SOD*S*MB33*40*1*_*_", + "name": "GOURS - PARKING EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.573481, + 45.224117 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333511", + "ref": "FR*SOD*S*MB33*35*1*_*_", + "name": "ETAULIERS - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.274073, + 44.992256 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333912", + "ref": "FR*SOD*S*MB33*39*1*_*_", + "name": "GALGON - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.271769, + 44.924076 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333812", + "ref": "FR*SOD*S*MB33*38*1*_*_", + "name": "FRONSAC - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.271769, + 44.924076 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333811", + "ref": "FR*SOD*S*MB33*38*1*_*_", + "name": "FRONSAC - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.007033, + 44.945431 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333712", + "ref": "FR*SOD*S*MB33*37*1*_*_", + "name": "FRANCS - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.007033, + 44.945431 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333711", + "ref": "FR*SOD*S*MB33*37*1*_*_", + "name": "FRANCS - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.445306, + 44.824787 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333611", + "ref": "FR*SOD*S*MB33*36*1*_*_", + "name": "FARGUES-SAINT-HILAIRE - AVENUE DE LA LAURENCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.445306, + 44.824787 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333612", + "ref": "FR*SOD*S*MB33*36*1*_*_", + "name": "FARGUES-SAINT-HILAIRE - AVENUE DE LA LAURENCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.573481, + 45.224117 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333512", + "ref": "FR*SOD*S*MB33*35*1*_*_", + "name": "ETAULIERS - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.408791, + 45.075554 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333412", + "ref": "FR*SOD*S*MB33*34*1*_*_", + "name": "CUBNEZAIS - RUE DE L ABREVOIR / PARKING CIMETIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.408791, + 45.075554 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333411", + "ref": "FR*SOD*S*MB33*34*1*_*_", + "name": "CUBNEZAIS - RUE DE L ABREVOIR / PARKING CIMETIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.701827, + 44.771759 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333312", + "ref": "FR*SOD*S*MB33*33*1*_*_", + "name": "CESTAS - PLACE DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.701827, + 44.771759 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333311", + "ref": "FR*SOD*S*MB33*33*1*_*_", + "name": "CESTAS - PLACE DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.684628, + 44.741707 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333212", + "ref": "FR*SOD*S*MB33*32*1*_*_", + "name": "CESTAS - BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.068484, + 44.640541 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334712", + "ref": "FR*SOD*S*MB33*47*1*_*_", + "name": "GUJAN-MESTRAS - RUE EDMOND DAUTRIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.069077, + 44.64072 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334611", + "ref": "FR*SOD*S*MB33*46*1*_*_", + "name": "GUJAN-MESTRAS - PEM RUE DE LYSER - GAUCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.245125, + 44.553131 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336312", + "ref": "FR*SOD*S*MB33*63*1*_*_", + "name": "LANGON - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.068484, + 44.640541 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334711", + "ref": "FR*SOD*S*MB33*47*1*_*_", + "name": "GUJAN-MESTRAS - RUE EDMOND DAUTRIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.684628, + 44.741707 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333211", + "ref": "FR*SOD*S*MB33*32*1*_*_", + "name": "CESTAS - BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.400897, + 44.708164 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336211", + "ref": "FR*SOD*S*MB33*62*1*_*_", + "name": "LANGOIRAN - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41494, + 44.567455 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336111", + "ref": "FR*SOD*S*MB33*61*1*_*_", + "name": "LANDIRAS - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41494, + 44.567455 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336112", + "ref": "FR*SOD*S*MB33*61*1*_*_", + "name": "LANDIRAS - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.074968, + 44.977234 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336011", + "ref": "FR*SOD*S*MB33*60*1*_*_", + "name": "LACANAU - RUE DU MARECHAL LECLERC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.074968, + 44.977234 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336012", + "ref": "FR*SOD*S*MB33*60*1*_*_", + "name": "LACANAU - RUE DU MARECHAL LECLERC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.195334, + 45.001762 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335912", + "ref": "FR*SOD*S*MB33*59*1*_*_", + "name": "LACANAU - ALLEE DU MATELOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.195334, + 45.001762 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335911", + "ref": "FR*SOD*S*MB33*59*1*_*_", + "name": "LACANAU - ALLEE DU MATELOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.148236, + 44.631668 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335811", + "ref": "FR*SOD*S*MB33*58*1*_*_", + "name": "LA TESTE-DE-BUCH - RUE DU GENERAL GALLIENI - PARKING LA POSTE ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.148236, + 44.631668 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335812", + "ref": "FR*SOD*S*MB33*58*1*_*_", + "name": "LA TESTE-DE-BUCH - RUE DU GENERAL GALLIENI - PARKING LA POSTE ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.144855, + 44.638229 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335712", + "ref": "FR*SOD*S*MB33*57*1*_*_", + "name": "LA TESTE-DE-BUCH - RUE DE LYSER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.144855, + 44.638229 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335711", + "ref": "FR*SOD*S*MB33*57*1*_*_", + "name": "LA TESTE-DE-BUCH - RUE DE LYSER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.152655, + 44.537663 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335611", + "ref": "FR*SOD*S*MB33*56*1*_*_", + "name": "LA TESTE-DE-BUCH - AVENUE VERDUN CAZAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.152655, + 44.537663 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335612", + "ref": "FR*SOD*S*MB33*56*1*_*_", + "name": "LA TESTE-DE-BUCH - AVENUE VERDUN CAZAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.207559, + 44.606632 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335512", + "ref": "FR*SOD*S*MB33*55*1*_*_", + "name": "LA TESTE-DE-BUCH - AVENUE DU BANC DARGUIN PYLA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.361701, + 44.91988 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334812", + "ref": "FR*SOD*S*MB33*48*1*_*_", + "name": "IZON - AV DU GEN DE GAULLE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.202032, + 44.632652 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335411", + "ref": "FR*SOD*S*MB33*54*1*_*_", + "name": "LA TESTE-DE-BUCH - ALLEE DU GARDE-FEU DU JUGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.202032, + 44.632652 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335412", + "ref": "FR*SOD*S*MB33*54*1*_*_", + "name": "LA TESTE-DE-BUCH - ALLEE DU GARDE-FEU DU JUGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150912, + 44.63129 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335312", + "ref": "FR*SOD*S*MB33*53*1*_*_", + "name": "LA TESTE DE BUCH - RUE GILBERT SORE - PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150912, + 44.63129 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335311", + "ref": "FR*SOD*S*MB33*53*1*_*_", + "name": "LA TESTE DE BUCH - RUE GILBERT SORE - PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.034757, + 44.582245 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335211", + "ref": "FR*SOD*S*MB33*52*1*_*_", + "name": "LA REOLE - PARKING - RUE DES JACOBINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.034757, + 44.582245 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335212", + "ref": "FR*SOD*S*MB33*52*1*_*_", + "name": "LA REOLE - PARKING - RUE DES JACOBINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.035621, + 44.584213 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335112", + "ref": "FR*SOD*S*MB33*51*1*_*_", + "name": "LA REOLE - PARKING - AVENUE CARNOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.035621, + 44.584213 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335111", + "ref": "FR*SOD*S*MB33*51*1*_*_", + "name": "LA REOLE - PARKING - AVENUE CARNOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.037012, + 44.581619 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335011", + "ref": "FR*SOD*S*MB33*50*1*_*_", + "name": "LA REOLE - AVENUE JEAN DELSOL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.037012, + 44.581619 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335012", + "ref": "FR*SOD*S*MB33*50*1*_*_", + "name": "LA REOLE - AVENUE JEAN DELSOL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.531089, + 44.679783 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334911", + "ref": "FR*SOD*S*MB33*49*1*_*_", + "name": "LA BREDE - PARKING DE LA BREDINIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.531089, + 44.679783 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334912", + "ref": "FR*SOD*S*MB33*49*1*_*_", + "name": "LA BREDE - PARKING DE LA BREDINIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.361701, + 44.91988 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB334811", + "ref": "FR*SOD*S*MB33*48*1*_*_", + "name": "IZON - AV DU GEN DE GAULLE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.207559, + 44.606632 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB335511", + "ref": "FR*SOD*S*MB33*55*1*_*_", + "name": "LA TESTE-DE-BUCH - AVENUE DU BANC DARGUIN PYLA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.529436, + 44.755657 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332311", + "ref": "FR*SOD*S*MB33*23*1*_*_", + "name": "CADAUJAC - PARKING EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389539, + 45.101608 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333111", + "ref": "FR*SOD*S*MB33*31*1*_*_", + "name": "CAVIGNAC - RTE DE PARIS - PLACE DES ROSES-PROCHE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.138983, + 44.765343 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33712", + "ref": "FR*SOD*S*MB33*7*1*_*_", + "name": "ARES - MAIRIE - RUE PIERRE PAUILLHAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.965542, + 44.637932 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331311", + "ref": "FR*SOD*S*MB33*13*1*_*_", + "name": "BIGANOS - PEI GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.965542, + 44.637932 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331312", + "ref": "FR*SOD*S*MB33*13*1*_*_", + "name": "BIGANOS - PEI GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.975692, + 44.64143 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331211", + "ref": "FR*SOD*S*MB33*12*1*_*_", + "name": "BIGANOS - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.975692, + 44.64143 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331212", + "ref": "FR*SOD*S*MB33*12*1*_*_", + "name": "BIGANOS - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.031351, + 44.878628 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331112", + "ref": "FR*SOD*S*MB33*11*1*_*_", + "name": "BELVES DE CASTILLON - LE BOURG / PARKING PROCHE EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.031351, + 44.878628 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331111", + "ref": "FR*SOD*S*MB33*11*1*_*_", + "name": "BELVES DE CASTILLON - LE BOURG / PARKING PROCHE EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.449122, + 44.703663 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331011", + "ref": "FR*SOD*S*MB33*10*1*_*_", + "name": "BEAUTIRAN - RUE DE LA PAPETERIE / ANGLE PLACE DE VERDUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.449122, + 44.703663 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331012", + "ref": "FR*SOD*S*MB33*10*1*_*_", + "name": "BEAUTIRAN - RUE DE LA PAPETERIE / ANGLE PLACE DE VERDUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.014052, + 44.682381 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33912", + "ref": "FR*SOD*S*MB33*9*1*_*_", + "name": "AUDENGE - PARKING RUE DES HORTENSIAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.014052, + 44.682381 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33911", + "ref": "FR*SOD*S*MB33*9*1*_*_", + "name": "AUDENGE - PARKING RUE DES HORTENSIAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.015976, + 44.683964 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33811", + "ref": "FR*SOD*S*MB33*8*1*_*_", + "name": "AUDENGE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.015976, + 44.683964 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33812", + "ref": "FR*SOD*S*MB33*8*1*_*_", + "name": "AUDENGE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.138983, + 44.765343 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33711", + "ref": "FR*SOD*S*MB33*7*1*_*_", + "name": "ARES - MAIRIE - RUE PIERRE PAUILLHAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.141424, + 44.764664 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33612", + "ref": "FR*SOD*S*MB33*6*1*_*_", + "name": "ARES - AVENUE DE LA PLAGE - PLACE WEISS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389539, + 45.101608 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333112", + "ref": "FR*SOD*S*MB33*31*1*_*_", + "name": "CAVIGNAC - RTE DE PARIS - PLACE DES ROSES-PROCHE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.141424, + 44.764664 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33611", + "ref": "FR*SOD*S*MB33*6*1*_*_", + "name": "ARES - AVENUE DE LA PLAGE - PLACE WEISS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.163121, + 44.663528 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33512", + "ref": "FR*SOD*S*MB33*5*1*_*_", + "name": "ARCACHON - PLACE PEYNEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.163121, + 44.663528 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33511", + "ref": "FR*SOD*S*MB33*5*1*_*_", + "name": "ARCACHON - PLACE PEYNEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.172374, + 44.663364 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33412", + "ref": "FR*SOD*S*MB33*4*1*_*_", + "name": "ARCACHON - PLACE CARNOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.172374, + 44.663364 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33411", + "ref": "FR*SOD*S*MB33*4*1*_*_", + "name": "ARCACHON - PLACE CARNOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16609, + 44.659492 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33331", + "ref": "FR*SOD*S*MB33*3*3*_*_", + "name": "ARCACHON - GARE SNCF", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16609, + 44.659492 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33311", + "ref": "FR*SOD*S*MB33*3*1*_*_", + "name": "ARCACHON - GARE SNCF", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16609, + 44.659492 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33312", + "ref": "FR*SOD*S*MB33*3*1*_*_", + "name": "ARCACHON - GARE SNCF", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16609, + 44.659492 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33332", + "ref": "FR*SOD*S*MB33*3*3*_*_", + "name": "ARCACHON - GARE SNCF", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098947, + 44.74308 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33211", + "ref": "FR*SOD*S*MB33*2*1*_*_", + "name": "ANDERNOS LES BAINS - ESPLANADE DE BROUSTIC/ALLEE MAX ET PAULETTE FAYE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098947, + 44.74308 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33212", + "ref": "FR*SOD*S*MB33*2*1*_*_", + "name": "ANDERNOS LES BAINS - ESPLANADE DE BROUSTIC/ALLEE MAX ET PAULETTE FAYE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.106562, + 44.74374 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33112", + "ref": "FR*SOD*S*MB33*1*1*_*_", + "name": "ANDERNOS LES BAINS - BOULEVARD DE LA PLAGE/ PARKING PORT OSTREICOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.106562, + 44.74374 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB33111", + "ref": "FR*SOD*S*MB33*1*1*_*_", + "name": "ANDERNOS LES BAINS - BOULEVARD DE LA PLAGE/ PARKING PORT OSTREICOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.965469, + 44.639351 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331412", + "ref": "FR*SOD*S*MB33*14*1*_*_", + "name": "BIGANOS - RUE DE LA RESISTANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.965469, + 44.639351 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331411", + "ref": "FR*SOD*S*MB33*14*1*_*_", + "name": "BIGANOS - RUE DE LA RESISTANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.663159, + 45.131039 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331511", + "ref": "FR*SOD*S*MB33*15*1*_*_", + "name": "BLAYE -  PLACE DES  CONES / ANGLE ESPLANADE DE LA CITADELLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.663159, + 45.131039 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331512", + "ref": "FR*SOD*S*MB33*15*1*_*_", + "name": "BLAYE -  PLACE DES  CONES / ANGLE ESPLANADE DE LA CITADELLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.042146, + 44.85408 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333011", + "ref": "FR*SOD*S*MB33*30*1*_*_", + "name": "CASTILLON-LA-BATAILLE - PLACE DU 14 JUILLET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.042146, + 44.85408 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB333012", + "ref": "FR*SOD*S*MB33*30*1*_*_", + "name": "CASTILLON-LA-BATAILLE - PLACE DU 14 JUILLET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.043266, + 44.852478 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332912", + "ref": "FR*SOD*S*MB33*29*1*_*_", + "name": "CASTILLON-LA-BATAILLE - EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.043266, + 44.852478 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332911", + "ref": "FR*SOD*S*MB33*29*1*_*_", + "name": "CASTILLON-LA-BATAILLE - EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.797203, + 45.025738 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332812", + "ref": "FR*SOD*S*MB33*28*1*_*_", + "name": "CASTELNAU DE MEDOC - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.797203, + 45.025738 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332811", + "ref": "FR*SOD*S*MB33*28*1*_*_", + "name": "CASTELNAU DE MEDOC - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.261004, + 44.292 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332712", + "ref": "FR*SOD*S*MB33*27*1*_*_", + "name": "CAPTIEUX - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.261004, + 44.292 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332711", + "ref": "FR*SOD*S*MB33*27*1*_*_", + "name": "CAPTIEUX - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.64122, + 44.750343 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332612", + "ref": "FR*SOD*S*MB33*26*1*_*_", + "name": "CANEJAN - CHEMIN LA HOUSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.64122, + 44.750343 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332611", + "ref": "FR*SOD*S*MB33*26*1*_*_", + "name": "CANEJAN - CHEMIN LA HOUSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.654258, + 44.763481 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332511", + "ref": "FR*SOD*S*MB33*25*1*_*_", + "name": "CANEJAN - CHE DE BARBICADGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.654258, + 44.763481 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332512", + "ref": "FR*SOD*S*MB33*25*1*_*_", + "name": "CANEJAN - CHE DE BARBICADGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.030508, + 45.015129 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332412", + "ref": "FR*SOD*S*MB33*24*1*_*_", + "name": "CAMPS SUR L ISLE - AV DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.030508, + 45.015129 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332411", + "ref": "FR*SOD*S*MB33*24*1*_*_", + "name": "CAMPS SUR L ISLE - AV DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.529436, + 44.755657 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332312", + "ref": "FR*SOD*S*MB33*23*1*_*_", + "name": "CADAUJAC - PARKING EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.700727, + 45.284054 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332212", + "ref": "FR*SOD*S*MB33*22*1*_*_", + "name": "BRAUD ET SAINT LOUIS - LES NOUVELLES POSSESSIONS - TERRES D OISEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.700727, + 45.284054 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332211", + "ref": "FR*SOD*S*MB33*22*1*_*_", + "name": "BRAUD ET SAINT LOUIS - LES NOUVELLES POSSESSIONS - TERRES D OISEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.626513, + 45.246693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332111", + "ref": "FR*SOD*S*MB33*21*1*_*_", + "name": "BRAUD ET SAINT LOUIS - AV DE LA REPUBLIQUE - PARKING MUSIQUE PROCHE PHARMACIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.626513, + 45.246693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332112", + "ref": "FR*SOD*S*MB33*21*1*_*_", + "name": "BRAUD ET SAINT LOUIS - AV DE LA REPUBLIQUE - PARKING MUSIQUE PROCHE PHARMACIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624, + 45.251667 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332011", + "ref": "FR*SOD*S*MB33*20*1*_*_", + "name": "BRAUD ET SAINT LOUIS - AV DE LA REPUBLIQUE - PARKING CDC ESTUAIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624, + 45.251667 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB332012", + "ref": "FR*SOD*S*MB33*20*1*_*_", + "name": "BRAUD ET SAINT LOUIS - AV DE LA REPUBLIQUE - PARKING CDC ESTUAIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.560364, + 45.039116 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331911", + "ref": "FR*SOD*S*MB33*19*1*_*_", + "name": "BOURG SUR GIRONDE - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.560364, + 45.039116 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331912", + "ref": "FR*SOD*S*MB33*19*1*_*_", + "name": "BOURG SUR GIRONDE - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.664302, + 45.124519 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331711", + "ref": "FR*SOD*S*MB33*17*1*_*_", + "name": "BLAYE - COURS DU GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.664302, + 45.124519 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331712", + "ref": "FR*SOD*S*MB33*17*1*_*_", + "name": "BLAYE - COURS DU GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.662261, + 45.129269 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331611", + "ref": "FR*SOD*S*MB33*16*1*_*_", + "name": "BLAYE - COURS DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.662261, + 45.129269 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB331612", + "ref": "FR*SOD*S*MB33*16*1*_*_", + "name": "BLAYE - COURS DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.400897, + 44.708164 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336212", + "ref": "FR*SOD*S*MB33*62*1*_*_", + "name": "LANGOIRAN - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.581216, + 44.712681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339311", + "ref": "FR*SOD*S*MB33*93*1*_*_", + "name": "MARTILLAC - PARKING SITE MONTESQUIEU - ALLEE ROSTAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.245125, + 44.553131 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336311", + "ref": "FR*SOD*S*MB33*63*1*_*_", + "name": "LANGON - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.410028, + 45.139877 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313912", + "ref": "FR*SOD*S*MB33*139*1*_*_", + "name": "SAINT-YZAN-DE-SOUDIAC - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.392749, + 45.140446 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314012", + "ref": "FR*SOD*S*MB33*140*1*_*_", + "name": "SAINT-YZAN-DE-SOUDIAC - RUE PIERRE SEMARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396709, + 44.842957 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314111", + "ref": "FR*SOD*S*MB33*141*1*_*_", + "name": "SALLEBOEUF - CENTRE BOURG - AV DE LA TOUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396709, + 44.842957 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314112", + "ref": "FR*SOD*S*MB33*141*1*_*_", + "name": "SALLEBOEUF - CENTRE BOURG - AV DE LA TOUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.867027, + 44.550583 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314212", + "ref": "FR*SOD*S*MB33*142*1*_*_", + "name": "SALLES - ALLEE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.088728, + 44.694389 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314311", + "ref": "FR*SOD*S*MB33*143*1*_*_", + "name": "SAUVETERRE DE GUYENNE - PARKING CIMETIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.088728, + 44.694389 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314312", + "ref": "FR*SOD*S*MB33*143*1*_*_", + "name": "SAUVETERRE DE GUYENNE - PARKING CIMETIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.083812, + 44.692291 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314411", + "ref": "FR*SOD*S*MB33*144*1*_*_", + "name": "SAUVETERRE DE GUYENNE - PARKING GENDARMERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.083812, + 44.692291 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314412", + "ref": "FR*SOD*S*MB33*144*1*_*_", + "name": "SAUVETERRE DE GUYENNE - PARKING GENDARMERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15, + 45.484943 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314512", + "ref": "FR*SOD*S*MB33*145*1*_*_", + "name": "SOULAC SUR MER - LAMELIE - 4 RUE DU 8 MAI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15, + 45.484943 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314511", + "ref": "FR*SOD*S*MB33*145*1*_*_", + "name": "SOULAC SUR MER - LAMELIE - 4 RUE DU 8 MAI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.126126, + 45.514442 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314611", + "ref": "FR*SOD*S*MB33*146*1*_*_", + "name": "SOULAC SUR MER - PARKING DE LA BALEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.126126, + 45.514442 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314612", + "ref": "FR*SOD*S*MB33*146*1*_*_", + "name": "SOULAC SUR MER - PARKING DE LA BALEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.265181, + 44.734566 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314811", + "ref": "FR*SOD*S*MB33*148*1*_*_", + "name": "TARGON - RUE DU POIDS PUBLIC/PLACE DU 11 NOVEMBRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.265181, + 44.734566 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314812", + "ref": "FR*SOD*S*MB33*148*1*_*_", + "name": "TARGON - RUE DU POIDS PUBLIC/PLACE DU 11 NOVEMBRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260849, + 44.55788 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314911", + "ref": "FR*SOD*S*MB33*149*1*_*_", + "name": "TOULENNE - AVENUE DU 8 MAI 1945 - PARKING COMMERCES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260849, + 44.55788 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314912", + "ref": "FR*SOD*S*MB33*149*1*_*_", + "name": "TOULENNE - AVENUE DU 8 MAI 1945 - PARKING COMMERCES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.316924, + 44.897648 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315012", + "ref": "FR*SOD*S*MB33*150*1*_*_", + "name": "VAYRES - PARKING DU GESTAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.316924, + 44.897648 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315011", + "ref": "FR*SOD*S*MB33*150*1*_*_", + "name": "VAYRES - PARKING DU GESTAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.601418, + 45.190145 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315111", + "ref": "FR*SOD*S*MB33*151*1*_*_", + "name": "EYRANS - LIEU-DIT PONTET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.601418, + 45.190145 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315111", + "ref": "FR*SOD*S*MB33*151*1*_*_", + "name": "EYRANS - LIEU-DIT PONTET", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.601418, + 45.190145 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315111", + "ref": "FR*SOD*S*MB33*151*1*_*_", + "name": "EYRANS - LIEU-DIT PONTET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.601418, + 45.190145 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315111", + "ref": "FR*SOD*S*MB33*151*1*_*_", + "name": "EYRANS - LIEU-DIT PONTET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244545, + 44.946975 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315211", + "ref": "FR*SOD*S*MB33*152*1*_*_", + "name": "LIBOURNE - RUE SCHWANDORF - DAGUEYS", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244545, + 44.946975 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315211", + "ref": "FR*SOD*S*MB33*152*1*_*_", + "name": "LIBOURNE - RUE SCHWANDORF - DAGUEYS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244545, + 44.946975 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315211", + "ref": "FR*SOD*S*MB33*152*1*_*_", + "name": "LIBOURNE - RUE SCHWANDORF - DAGUEYS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244545, + 44.946975 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315211", + "ref": "FR*SOD*S*MB33*152*1*_*_", + "name": "LIBOURNE - RUE SCHWANDORF - DAGUEYS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.124493, + 44.618902 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315311", + "ref": "FR*SOD*S*MB33*153*1*_*_", + "name": "LA TESTE-DE-BUCH - PLAINE DES SPORTS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.392749, + 45.140446 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314011", + "ref": "FR*SOD*S*MB33*140*1*_*_", + "name": "SAINT-YZAN-DE-SOUDIAC - RUE PIERRE SEMARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.410028, + 45.139877 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313911", + "ref": "FR*SOD*S*MB33*139*1*_*_", + "name": "SAINT-YZAN-DE-SOUDIAC - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.056675, + 45.014774 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312412", + "ref": "FR*SOD*S*MB33*124*1*_*_", + "name": "SAINT MEDARD DE GUIZIERES - RUE DU 14 JUILLET / PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.031379, + 44.914112 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313812", + "ref": "FR*SOD*S*MB33*138*1*_*_", + "name": "SAINT-PHILIPPE-DAIGUILHE - CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.478578, + 44.671124 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312511", + "ref": "FR*SOD*S*MB33*125*1*_*_", + "name": "SAINT SELVE - GRAND RUE - SALLE POLYVALENTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.478578, + 44.671124 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312512", + "ref": "FR*SOD*S*MB33*125*1*_*_", + "name": "SAINT SELVE - GRAND RUE - SALLE POLYVALENTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.248037, + 44.555328 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336411", + "ref": "FR*SOD*S*MB33*64*1*_*_", + "name": "LANGON - PLACE DU FOIRAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.000992, + 45.015003 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312612", + "ref": "FR*SOD*S*MB33*126*1*_*_", + "name": "SAINT SEURIN SUR L ISLE - AV GEORGES CLEMENCEAU / PARKING MEDIATHEQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.003134, + 45.01342 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312712", + "ref": "FR*SOD*S*MB33*127*1*_*_", + "name": "SAINT SEURIN SUR L ISLE - PLACE GENERAL RAOUL SALAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.003134, + 45.01342 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312711", + "ref": "FR*SOD*S*MB33*127*1*_*_", + "name": "SAINT SEURIN SUR L ISLE - PLACE GENERAL RAOUL SALAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.190544, + 44.876118 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312812", + "ref": "FR*SOD*S*MB33*128*1*_*_", + "name": "SAINT SULPICE DE FALEYRENS - AV DU GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.190544, + 44.876118 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312811", + "ref": "FR*SOD*S*MB33*128*1*_*_", + "name": "SAINT SULPICE DE FALEYRENS - AV DU GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.488382, + 44.429783 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312912", + "ref": "FR*SOD*S*MB33*129*1*_*_", + "name": "SAINT SYMPHORIEN - PLACE MICHELET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.488382, + 44.429783 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312911", + "ref": "FR*SOD*S*MB33*129*1*_*_", + "name": "SAINT SYMPHORIEN - PLACE MICHELET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.443644, + 44.996262 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313012", + "ref": "FR*SOD*S*MB33*130*1*_*_", + "name": "SAINT-ANDRE-DE-CUBZAC - ALLEE LOUISE MICHEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.443644, + 44.996262 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313011", + "ref": "FR*SOD*S*MB33*130*1*_*_", + "name": "SAINT-ANDRE-DE-CUBZAC - ALLEE LOUISE MICHEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.430289, + 44.992447 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313112", + "ref": "FR*SOD*S*MB33*131*1*_*_", + "name": "SAINT-ANDRE-DE-CUBZAC - IMPASSE DU PAS DE MONNAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.430289, + 44.992447 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313111", + "ref": "FR*SOD*S*MB33*131*1*_*_", + "name": "SAINT-ANDRE-DE-CUBZAC - IMPASSE DU PAS DE MONNAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.014856, + 45.079998 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313211", + "ref": "FR*SOD*S*MB33*132*1*_*_", + "name": "SAINT-CHRISTOPHE-DE-DOUBLE - CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.014856, + 45.079998 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313212", + "ref": "FR*SOD*S*MB33*132*1*_*_", + "name": "SAINT-CHRISTOPHE-DE-DOUBLE - CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06199, + 44.879169 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313311", + "ref": "FR*SOD*S*MB33*133*1*_*_", + "name": "SAINTE COLOMBE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06199, + 44.879169 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313312", + "ref": "FR*SOD*S*MB33*133*1*_*_", + "name": "SAINTE COLOMBE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.473999, + 44.904659 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313411", + "ref": "FR*SOD*S*MB33*134*1*_*_", + "name": "SAINTE EULALIE - PARKING MEDIATHEQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.473999, + 44.904659 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313412", + "ref": "FR*SOD*S*MB33*134*1*_*_", + "name": "SAINTE EULALIE - PARKING MEDIATHEQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.485241, + 44.907875 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313511", + "ref": "FR*SOD*S*MB33*135*1*_*_", + "name": "SAINTE EULALIE - RUE DE LESTEY FLEURI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.485241, + 44.907875 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313512", + "ref": "FR*SOD*S*MB33*135*1*_*_", + "name": "SAINTE EULALIE - RUE DE LESTEY FLEURI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.473356, + 44.908749 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313612", + "ref": "FR*SOD*S*MB33*136*1*_*_", + "name": "SAINTE EULALIE - RUE EUGENE COLETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.473356, + 44.908749 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313611", + "ref": "FR*SOD*S*MB33*136*1*_*_", + "name": "SAINTE EULALIE - RUE EUGENE COLETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.063501, + 44.898205 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313711", + "ref": "FR*SOD*S*MB33*137*1*_*_", + "name": "SAINT-GENES-DE-CASTILLON - CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.063501, + 44.898205 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313712", + "ref": "FR*SOD*S*MB33*137*1*_*_", + "name": "SAINT-GENES-DE-CASTILLON - CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.031379, + 44.914112 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3313811", + "ref": "FR*SOD*S*MB33*138*1*_*_", + "name": "SAINT-PHILIPPE-DAIGUILHE - CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.124493, + 44.618902 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315311", + "ref": "FR*SOD*S*MB33*153*1*_*_", + "name": "LA TESTE-DE-BUCH - PLAINE DES SPORTS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.124493, + 44.618902 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315311", + "ref": "FR*SOD*S*MB33*153*1*_*_", + "name": "LA TESTE-DE-BUCH - PLAINE DES SPORTS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.124493, + 44.618902 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315311", + "ref": "FR*SOD*S*MB33*153*1*_*_", + "name": "LA TESTE-DE-BUCH - PLAINE DES SPORTS", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.960185, + 44.627885 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315411", + "ref": "FR*SOD*S*MB33*154*1*_*_", + "name": "MIOS - ECHANGEUR MASQUET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.128961, + 45.015847 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316312", + "ref": "FR*SOD*S*MB33*163*1*_*_", + "name": "ABZAC - RUE DU CHEMINOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345016, + 44.81952 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316412", + "ref": "FR*SOD*S*MB33*164*1*_*_", + "name": "CROIGNON - RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345016, + 44.81952 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316411", + "ref": "FR*SOD*S*MB33*164*1*_*_", + "name": "CROIGNON - RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.115768, + 44.639867 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316512", + "ref": "FR*SOD*S*MB33*165*1*_*_", + "name": "GUJAN-MESTRAS - AV DU MARECHAL DE LATTRE DE TASSIGNY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.115768, + 44.639867 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316511", + "ref": "FR*SOD*S*MB33*165*1*_*_", + "name": "GUJAN-MESTRAS - AV DU MARECHAL DE LATTRE DE TASSIGNY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.438853, + 44.85042 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316711", + "ref": "FR*SOD*S*MB33*167*1*_*_", + "name": "POMPIGNAC - AV DE LA MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.438853, + 44.85042 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316712", + "ref": "FR*SOD*S*MB33*167*1*_*_", + "name": "POMPIGNAC - AV DE LA MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.463965, + 44.847856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316811", + "ref": "FR*SOD*S*MB33*168*1*_*_", + "name": "TRESSES - AVENUE DES ECOLES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.463965, + 44.847856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316812", + "ref": "FR*SOD*S*MB33*168*1*_*_", + "name": "TRESSES - AVENUE DES ECOLES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.074516, + 44.618461 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316911", + "ref": "FR*SOD*S*MB33*169*1*_*_", + "name": "GUJAN-MESTRAS - ALL. MOZART", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.074516, + 44.618461 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316912", + "ref": "FR*SOD*S*MB33*169*1*_*_", + "name": "GUJAN-MESTRAS - ALL. MOZART", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.474491, + 44.812994 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3317011", + "ref": "FR*SOD*S*MB33*170*1*_*_", + "name": "CARIGNAN-DE-BORDEAUX - PARKING CENTRE CULTUREL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.474491, + 44.812994 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3317012", + "ref": "FR*SOD*S*MB33*170*1*_*_", + "name": "CARIGNAN-DE-BORDEAUX - PARKING CENTRE CULTUREL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.342405, + 44.53057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3317212", + "ref": "FR*SOD*S*MB33*172*1*_*_", + "name": "SAUTERNES - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.342405, + 44.53057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3317211", + "ref": "FR*SOD*S*MB33*172*1*_*_", + "name": "SAUTERNES - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.373517, + 44.692539 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3317311", + "ref": "FR*SOD*S*MB33*173*1*_*_", + "name": "LESTIAC SUR GARONNE - PARKING ECOLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.373517, + 44.692539 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3317312", + "ref": "FR*SOD*S*MB33*173*1*_*_", + "name": "LESTIAC SUR GARONNE - PARKING ECOLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369699, + 44.882555 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3317423", + "ref": "FR*SOD*S*MB33*174*2*_*_", + "name": "BEYCHAC-ET-CAILLAU - ROUTE DU FILEUR", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369699, + 44.882555 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3317421", + "ref": "FR*SOD*S*MB33*174*2*_*_", + "name": "BEYCHAC-ET-CAILLAU - ROUTE DU FILEUR", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369699, + 44.882555 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3317422", + "ref": "FR*SOD*S*MB33*174*2*_*_", + "name": "BEYCHAC-ET-CAILLAU - ROUTE DU FILEUR", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.123766, + 45.513463 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3317512", + "ref": "FR*SOD*S*MB33*175*1*_*_", + "name": "SOULAC-SUR-MER - PARKING DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.123766, + 45.513463 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3317511", + "ref": "FR*SOD*S*MB33*175*1*_*_", + "name": "SOULAC-SUR-MER - PARKING DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.122837, + 45.515089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3317623", + "ref": "FR*SOD*S*MB33*176*2*_*_", + "name": "SOULAC-SUR-MER - PARKING DE LA MAIRIE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.122837, + 45.515089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3317622", + "ref": "FR*SOD*S*MB33*176*2*_*_", + "name": "SOULAC-SUR-MER - PARKING DE LA MAIRIE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.122837, + 45.515089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3317621", + "ref": "FR*SOD*S*MB33*176*2*_*_", + "name": "SOULAC-SUR-MER - PARKING DE LA MAIRIE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.486943, + 44.765249 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3317711", + "ref": "FR*SOD*S*MB33*177*1*_*_", + "name": "CAMBLANES ET MEYNAC - ROUTE DE MORILLON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.486943, + 44.765249 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3317712", + "ref": "FR*SOD*S*MB33*177*1*_*_", + "name": "CAMBLANES ET MEYNAC - ROUTE DE MORILLON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.128961, + 45.015847 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316311", + "ref": "FR*SOD*S*MB33*163*1*_*_", + "name": "ABZAC - RUE DU CHEMINOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244976, + 44.944289 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316221", + "ref": "FR*SOD*S*MB33*162*2*_*_", + "name": "LIBOURNE - CENTRE AQUATIQUE ZONE DES DAGUEYS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244976, + 44.944289 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316211", + "ref": "FR*SOD*S*MB33*162*1*_*_", + "name": "LIBOURNE - CENTRE AQUATIQUE ZONE DES DAGUEYS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436955, + 45.005005 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315711", + "ref": "FR*SOD*S*MB33*157*1*_*_", + "name": "SAINT-ANDRE-DE-CUBZAC - GIRATOIRE DE LA GAROSSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.960185, + 44.627885 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315411", + "ref": "FR*SOD*S*MB33*154*1*_*_", + "name": "MIOS - ECHANGEUR MASQUET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.960185, + 44.627885 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315411", + "ref": "FR*SOD*S*MB33*154*1*_*_", + "name": "MIOS - ECHANGEUR MASQUET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826756, + 44.664279 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315511", + "ref": "FR*SOD*S*MB33*155*1*_*_", + "name": "MIOS - ECHANGEUR PELOUNEYRES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826756, + 44.664279 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315511", + "ref": "FR*SOD*S*MB33*155*1*_*_", + "name": "MIOS - ECHANGEUR PELOUNEYRES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826756, + 44.664279 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315511", + "ref": "FR*SOD*S*MB33*155*1*_*_", + "name": "MIOS - ECHANGEUR PELOUNEYRES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.569409, + 45.29116 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315611", + "ref": "FR*SOD*S*MB33*156*1*_*_", + "name": "SAINT CAPRAIS DE BLAYE - PARKING DE FERCHAUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.569409, + 45.29116 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315611", + "ref": "FR*SOD*S*MB33*156*1*_*_", + "name": "SAINT CAPRAIS DE BLAYE - PARKING DE FERCHAUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.569409, + 45.29116 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315611", + "ref": "FR*SOD*S*MB33*156*1*_*_", + "name": "SAINT CAPRAIS DE BLAYE - PARKING DE FERCHAUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.569409, + 45.29116 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315611", + "ref": "FR*SOD*S*MB33*156*1*_*_", + "name": "SAINT CAPRAIS DE BLAYE - PARKING DE FERCHAUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436955, + 45.005005 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315711", + "ref": "FR*SOD*S*MB33*157*1*_*_", + "name": "SAINT-ANDRE-DE-CUBZAC - GIRATOIRE DE LA GAROSSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436955, + 45.005005 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315711", + "ref": "FR*SOD*S*MB33*157*1*_*_", + "name": "SAINT-ANDRE-DE-CUBZAC - GIRATOIRE DE LA GAROSSE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436955, + 45.005005 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315711", + "ref": "FR*SOD*S*MB33*157*1*_*_", + "name": "SAINT-ANDRE-DE-CUBZAC - GIRATOIRE DE LA GAROSSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.050627, + 44.776755 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315811", + "ref": "FR*SOD*S*MB33*158*1*_*_", + "name": "ANDERNOS LES BAINS - GIRATOIRE QUERQUILLAS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244976, + 44.944289 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316212", + "ref": "FR*SOD*S*MB33*162*1*_*_", + "name": "LIBOURNE - CENTRE AQUATIQUE ZONE DES DAGUEYS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.050627, + 44.776755 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315811", + "ref": "FR*SOD*S*MB33*158*1*_*_", + "name": "ANDERNOS LES BAINS - GIRATOIRE QUERQUILLAS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.050627, + 44.776755 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315811", + "ref": "FR*SOD*S*MB33*158*1*_*_", + "name": "ANDERNOS LES BAINS - GIRATOIRE QUERQUILLAS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.050627, + 44.776755 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315811", + "ref": "FR*SOD*S*MB33*158*1*_*_", + "name": "ANDERNOS LES BAINS - GIRATOIRE QUERQUILLAS", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.135596, + 44.819706 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315911", + "ref": "FR*SOD*S*MB33*159*1*_*_", + "name": "SAINTE-TERRE - LAVAGNAC – RUE DU GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.135596, + 44.819706 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3315912", + "ref": "FR*SOD*S*MB33*159*1*_*_", + "name": "SAINTE-TERRE - LAVAGNAC – RUE DU GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424664, + 44.914339 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316011", + "ref": "FR*SOD*S*MB33*160*1*_*_", + "name": "SAINT LOUBES - CENTRE NAUTIQUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424664, + 44.914339 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316022", + "ref": "FR*SOD*S*MB33*160*2*_*_", + "name": "SAINT LOUBES - CENTRE NAUTIQUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424664, + 44.914339 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316012", + "ref": "FR*SOD*S*MB33*160*1*_*_", + "name": "SAINT LOUBES - CENTRE NAUTIQUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424664, + 44.914339 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316021", + "ref": "FR*SOD*S*MB33*160*2*_*_", + "name": "SAINT LOUBES - CENTRE NAUTIQUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.400987, + 44.708023 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316112", + "ref": "FR*SOD*S*MB33*161*1*_*_", + "name": "LANGOIRAN - PLACE DE L’EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.400987, + 44.708023 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316111", + "ref": "FR*SOD*S*MB33*161*1*_*_", + "name": "LANGOIRAN - PLACE DE L’EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244976, + 44.944289 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3316222", + "ref": "FR*SOD*S*MB33*162*2*_*_", + "name": "LIBOURNE - CENTRE AQUATIQUE ZONE DES DAGUEYS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.056675, + 45.014774 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312411", + "ref": "FR*SOD*S*MB33*124*1*_*_", + "name": "SAINT MEDARD DE GUIZIERES - RUE DU 14 JUILLET / PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.000992, + 45.015003 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312611", + "ref": "FR*SOD*S*MB33*126*1*_*_", + "name": "SAINT SEURIN SUR L ISLE - AV GEORGES CLEMENCEAU / PARKING MEDIATHEQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.426206, + 44.916077 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312312", + "ref": "FR*SOD*S*MB33*123*1*_*_", + "name": "SAINT LOUBES - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.601472, + 44.727711 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337812", + "ref": "FR*SOD*S*MB33*78*1*_*_", + "name": "LEOGNAN - PARKING EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598145, + 44.727558 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337912", + "ref": "FR*SOD*S*MB33*79*1*_*_", + "name": "LEOGNAN - PLACE MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598145, + 44.727558 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337911", + "ref": "FR*SOD*S*MB33*79*1*_*_", + "name": "LEOGNAN - PLACE MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.097568, + 45.069656 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338012", + "ref": "FR*SOD*S*MB33*80*1*_*_", + "name": "LES PEINTURES - RUE LUCIEN LACOUR - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.097568, + 45.069656 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338011", + "ref": "FR*SOD*S*MB33*80*1*_*_", + "name": "LES PEINTURES - RUE LUCIEN LACOUR - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.001139, + 44.91209 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338111", + "ref": "FR*SOD*S*MB33*81*1*_*_", + "name": "LES SALLES-DE-CASTILLON - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.001139, + 44.91209 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338112", + "ref": "FR*SOD*S*MB33*81*1*_*_", + "name": "LES SALLES-DE-CASTILLON - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.241218, + 44.91774 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338211", + "ref": "FR*SOD*S*MB33*82*1*_*_", + "name": "LIBOURNE - ALLEES ROBERT BOULIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.241218, + 44.91774 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338212", + "ref": "FR*SOD*S*MB33*82*1*_*_", + "name": "LIBOURNE - ALLEES ROBERT BOULIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.241469, + 44.911701 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338312", + "ref": "FR*SOD*S*MB33*83*1*_*_", + "name": "LIBOURNE - ANGLE PLACE JOFFRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.241469, + 44.911701 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338311", + "ref": "FR*SOD*S*MB33*83*1*_*_", + "name": "LIBOURNE - ANGLE PLACE JOFFRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23693, + 44.916817 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338412", + "ref": "FR*SOD*S*MB33*84*1*_*_", + "name": "LIBOURNE - AVENUE GALLIENI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23693, + 44.916817 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338411", + "ref": "FR*SOD*S*MB33*84*1*_*_", + "name": "LIBOURNE - AVENUE GALLIENI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.243664, + 44.91433 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338512", + "ref": "FR*SOD*S*MB33*85*1*_*_", + "name": "LIBOURNE - RUE MICHEL MONTAIGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.243664, + 44.91433 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338511", + "ref": "FR*SOD*S*MB33*85*1*_*_", + "name": "LIBOURNE - RUE MICHEL MONTAIGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603403, + 44.982456 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338611", + "ref": "FR*SOD*S*MB33*86*1*_*_", + "name": "LUDON-MEDOC - PLACE JEAN JAURES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603403, + 44.982456 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338612", + "ref": "FR*SOD*S*MB33*86*1*_*_", + "name": "LUDON-MEDOC - PLACE JEAN JAURES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.095814, + 44.948994 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338712", + "ref": "FR*SOD*S*MB33*87*1*_*_", + "name": "LUSSAC - IMPASSE DE LA CONFRERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.095814, + 44.948994 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338711", + "ref": "FR*SOD*S*MB33*87*1*_*_", + "name": "LUSSAC - IMPASSE DE LA CONFRERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26885, + 45.070889 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338811", + "ref": "FR*SOD*S*MB33*88*1*_*_", + "name": "MARANSIN - RD N°120/ LD LE BOURG/PARKING EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26885, + 45.070889 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338812", + "ref": "FR*SOD*S*MB33*88*1*_*_", + "name": "MARANSIN - RD N°120/ LD LE BOURG/PARKING EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.855523, + 44.692165 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338912", + "ref": "FR*SOD*S*MB33*89*1*_*_", + "name": "MARCHEPRIME - AVENUE DE LA COTE DARGENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.855523, + 44.692165 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB338911", + "ref": "FR*SOD*S*MB33*89*1*_*_", + "name": "MARCHEPRIME - AVENUE DE LA COTE DARGENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.85433, + 44.690495 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339012", + "ref": "FR*SOD*S*MB33*90*1*_*_", + "name": "MARCHEPRIME - RUE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.85433, + 44.690495 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339011", + "ref": "FR*SOD*S*MB33*90*1*_*_", + "name": "MARCHEPRIME - RUE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.384012, + 45.067467 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339111", + "ref": "FR*SOD*S*MB33*91*1*_*_", + "name": "MARSAS - PLACE DE L ECOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.384012, + 45.067467 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339112", + "ref": "FR*SOD*S*MB33*91*1*_*_", + "name": "MARSAS - PLACE DE L ECOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.426206, + 44.916077 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312311", + "ref": "FR*SOD*S*MB33*123*1*_*_", + "name": "SAINT LOUBES - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.601472, + 44.727711 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337811", + "ref": "FR*SOD*S*MB33*78*1*_*_", + "name": "LEOGNAN - PARKING EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.245858, + 44.650799 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337712", + "ref": "FR*SOD*S*MB33*77*1*_*_", + "name": "LEGE - CAP-FERRET - AVENUE DU MONUMENT SALIENS PARKING - CAP-FERRET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.542552, + 44.714039 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339211", + "ref": "FR*SOD*S*MB33*92*1*_*_", + "name": "MARTILLAC - PARKING DU PAS DE L ANE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.245858, + 44.650799 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337711", + "ref": "FR*SOD*S*MB33*77*1*_*_", + "name": "LEGE - CAP-FERRET - AVENUE DU MONUMENT SALIENS PARKING - CAP-FERRET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.248037, + 44.555328 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336412", + "ref": "FR*SOD*S*MB33*64*1*_*_", + "name": "LANGON - PLACE DU FOIRAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.248891, + 44.553619 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336512", + "ref": "FR*SOD*S*MB33*65*1*_*_", + "name": "LANGON - PLACE KENNEDY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.248891, + 44.553619 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336511", + "ref": "FR*SOD*S*MB33*65*1*_*_", + "name": "LANGON - PLACE KENNEDY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.033432, + 44.701801 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336612", + "ref": "FR*SOD*S*MB33*66*1*_*_", + "name": "LANTON - AVENUE DE LA LIBERATION MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.033432, + 44.701801 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336611", + "ref": "FR*SOD*S*MB33*66*1*_*_", + "name": "LANTON - AVENUE DE LA LIBERATION MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.056711, + 44.712387 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336712", + "ref": "FR*SOD*S*MB33*67*1*_*_", + "name": "LANTON - AVENUE DE LA REPUBLIQUE CASSY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.056711, + 44.712387 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336711", + "ref": "FR*SOD*S*MB33*67*1*_*_", + "name": "LANTON - AVENUE DE LA REPUBLIQUE CASSY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.343015, + 45.107861 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336812", + "ref": "FR*SOD*S*MB33*68*1*_*_", + "name": "LARUSCADE - LE BOURG - RD N°22 / PARKING SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.343015, + 45.107861 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336811", + "ref": "FR*SOD*S*MB33*68*1*_*_", + "name": "LARUSCADE - LE BOURG - RD N°22 / PARKING SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.498521, + 44.785572 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336912", + "ref": "FR*SOD*S*MB33*69*1*_*_", + "name": "LATRESNE - RUE DE LA SALARGUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.498521, + 44.785572 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB336911", + "ref": "FR*SOD*S*MB33*69*1*_*_", + "name": "LATRESNE - RUE DE LA SALARGUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.770521, + 44.607964 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337011", + "ref": "FR*SOD*S*MB33*70*1*_*_", + "name": "LE BARP - PLACE DU CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.770521, + 44.607964 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337012", + "ref": "FR*SOD*S*MB33*70*1*_*_", + "name": "LE BARP - PLACE DU CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.032427, + 45.059238 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337112", + "ref": "FR*SOD*S*MB33*71*1*_*_", + "name": "LE FIEU - LE BOURG PARKING ANGLE RUE DE LA GRAVETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.032427, + 45.059238 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337111", + "ref": "FR*SOD*S*MB33*71*1*_*_", + "name": "LE FIEU - LE BOURG PARKING ANGLE RUE DE LA GRAVETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.025833, + 44.632778 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337211", + "ref": "FR*SOD*S*MB33*72*1*_*_", + "name": "LE TEICH - PARKING GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.025833, + 44.632778 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337212", + "ref": "FR*SOD*S*MB33*72*1*_*_", + "name": "LE TEICH - PARKING GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.021466, + 44.635406 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337312", + "ref": "FR*SOD*S*MB33*73*1*_*_", + "name": "LE TEICH - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.021466, + 44.635406 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337311", + "ref": "FR*SOD*S*MB33*73*1*_*_", + "name": "LE TEICH - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.026443, + 44.631077 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337412", + "ref": "FR*SOD*S*MB33*74*1*_*_", + "name": "LE TEICH - RUE DE LA PETITE FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.026443, + 44.631077 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337411", + "ref": "FR*SOD*S*MB33*74*1*_*_", + "name": "LE TEICH - RUE DE LA PETITE FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14603, + 44.795773 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337522", + "ref": "FR*SOD*S*MB33*75*2*_*_", + "name": "LEGE - CAP-FERRET - AVENUE DE LA GARE - MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14603, + 44.795773 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337521", + "ref": "FR*SOD*S*MB33*75*2*_*_", + "name": "LEGE - CAP-FERRET - AVENUE DE LA GARE - MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14603, + 44.795773 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337512", + "ref": "FR*SOD*S*MB33*75*1*_*_", + "name": "LEGE - CAP-FERRET - AVENUE DE LA GARE - MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14603, + 44.795773 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337511", + "ref": "FR*SOD*S*MB33*75*1*_*_", + "name": "LEGE - CAP-FERRET - AVENUE DE LA GARE - MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.181364, + 44.749344 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337612", + "ref": "FR*SOD*S*MB33*76*1*_*_", + "name": "LEGE - CAP-FERRET - AVENUE DES HALLES - CLAOUEY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.181364, + 44.749344 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB337611", + "ref": "FR*SOD*S*MB33*76*1*_*_", + "name": "LEGE - CAP-FERRET - AVENUE DES HALLES - CLAOUEY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.542552, + 44.714039 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339212", + "ref": "FR*SOD*S*MB33*92*1*_*_", + "name": "MARTILLAC - PARKING DU PAS DE L ANE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.867027, + 44.550583 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3314211", + "ref": "FR*SOD*S*MB33*142*1*_*_", + "name": "SALLES - ALLEE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.581216, + 44.712681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339312", + "ref": "FR*SOD*S*MB33*93*1*_*_", + "name": "MARTILLAC - PARKING SITE MONTESQUIEU - ALLEE ROSTAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276985, + 45.030991 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311512", + "ref": "FR*SOD*S*MB33*115*1*_*_", + "name": "SAINT CIERS D ABZAC - RUE MONTAIGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.126184, + 44.778473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310812", + "ref": "FR*SOD*S*MB33*108*1*_*_", + "name": "RAUZAN - PLACE DU CHAMPS DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.126184, + 44.778473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310811", + "ref": "FR*SOD*S*MB33*108*1*_*_", + "name": "RAUZAN - PLACE DU CHAMPS DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.176874, + 45.025108 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310912", + "ref": "FR*SOD*S*MB33*109*1*_*_", + "name": "SABLONS - VILLAGE DENFANTS - GRANDE LANDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.176874, + 45.025108 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310911", + "ref": "FR*SOD*S*MB33*109*1*_*_", + "name": "SABLONS - VILLAGE DENFANTS - GRANDE LANDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44713, + 45.139946 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311011", + "ref": "FR*SOD*S*MB33*110*1*_*_", + "name": "SAINT - SAVIN - PLACE DE LA LIBERATION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44713, + 45.139946 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311012", + "ref": "FR*SOD*S*MB33*110*1*_*_", + "name": "SAINT - SAVIN - PLACE DE LA LIBERATION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.040668, + 45.027435 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311111", + "ref": "FR*SOD*S*MB33*111*1*_*_", + "name": "SAINT ANTOINE SUR L ISLE - AVENUE DE LA LIBERATION / RUE BARTEBRUNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.040668, + 45.027435 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311112", + "ref": "FR*SOD*S*MB33*111*1*_*_", + "name": "SAINT ANTOINE SUR L ISLE - AVENUE DE LA LIBERATION / RUE BARTEBRUNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.557763, + 45.248619 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311212", + "ref": "FR*SOD*S*MB33*112*1*_*_", + "name": "SAINT AUBIN DE BLAYE - BRASSE MISERE / PARKING PEPINIERE D ENTREPRISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.557763, + 45.248619 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311211", + "ref": "FR*SOD*S*MB33*112*1*_*_", + "name": "SAINT AUBIN DE BLAYE - BRASSE MISERE / PARKING PEPINIERE D ENTREPRISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.507449, + 45.130127 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311311", + "ref": "FR*SOD*S*MB33*113*1*_*_", + "name": "SAINT CHRISTOLY DE BLAYE - VC N°6 LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.507449, + 45.130127 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311312", + "ref": "FR*SOD*S*MB33*113*1*_*_", + "name": "SAINT CHRISTOLY DE BLAYE - VC N°6 LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.023352, + 44.939892 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311411", + "ref": "FR*SOD*S*MB33*114*1*_*_", + "name": "SAINT CIBARD - RD N°21/LD PIMPINE/PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.023352, + 44.939892 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311412", + "ref": "FR*SOD*S*MB33*114*1*_*_", + "name": "SAINT CIBARD - RD N°21/LD PIMPINE/PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276985, + 45.030991 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311511", + "ref": "FR*SOD*S*MB33*115*1*_*_", + "name": "SAINT CIERS D ABZAC - RUE MONTAIGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.488296, + 44.755913 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310712", + "ref": "FR*SOD*S*MB33*107*1*_*_", + "name": "QUINSAC - RUE HENRI CHIVALEY CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.609335, + 45.290096 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311611", + "ref": "FR*SOD*S*MB33*116*1*_*_", + "name": "SAINT CIERS SUR GIRONDE - RUE GEORGES PICOTIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.609335, + 45.290096 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311612", + "ref": "FR*SOD*S*MB33*116*1*_*_", + "name": "SAINT CIERS SUR GIRONDE - RUE GEORGES PICOTIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.204426, + 44.9921 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311712", + "ref": "FR*SOD*S*MB33*117*1*_*_", + "name": "SAINT DENIS DE PILE - RUE DU CHAMPS DE FOIRE - SALLE DES FETES - AU BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.204426, + 44.9921 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311711", + "ref": "FR*SOD*S*MB33*117*1*_*_", + "name": "SAINT DENIS DE PILE - RUE DU CHAMPS DE FOIRE - SALLE DES FETES - AU BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.156992, + 44.896271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311811", + "ref": "FR*SOD*S*MB33*118*1*_*_", + "name": "SAINT EMILION - PARKING RUE DU GRAND PONTET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.156992, + 44.896271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311812", + "ref": "FR*SOD*S*MB33*118*1*_*_", + "name": "SAINT EMILION - PARKING RUE DU GRAND PONTET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.327441, + 44.94614 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311912", + "ref": "FR*SOD*S*MB33*119*1*_*_", + "name": "SAINT GERMAIN LA RIVIERE - PARKING MAISON DU FRONSADAIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.327441, + 44.94614 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3311911", + "ref": "FR*SOD*S*MB33*119*1*_*_", + "name": "SAINT GERMAIN LA RIVIERE - PARKING MAISON DU FRONSADAIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.784099, + 44.809963 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312011", + "ref": "FR*SOD*S*MB33*120*1*_*_", + "name": "SAINT JEAN DILLAC - GIRATOIRE DE LA FONTAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.784099, + 44.809963 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312012", + "ref": "FR*SOD*S*MB33*120*1*_*_", + "name": "SAINT JEAN DILLAC - GIRATOIRE DE LA FONTAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.780595, + 44.812153 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312111", + "ref": "FR*SOD*S*MB33*121*1*_*_", + "name": "SAINT JEAN DILLAC - PLACE DE L’EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.780595, + 44.812153 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312112", + "ref": "FR*SOD*S*MB33*121*1*_*_", + "name": "SAINT JEAN DILLAC - PLACE DE L’EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.822102, + 45.149315 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312212", + "ref": "FR*SOD*S*MB33*122*1*_*_", + "name": "SAINT LAURENT MEDOC - RUE CAMILLE MAUMEY / PARKING PLACE DU 8 MAI-RUE FONTAIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.822102, + 45.149315 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3312211", + "ref": "FR*SOD*S*MB33*122*1*_*_", + "name": "SAINT LAURENT MEDOC - RUE CAMILLE MAUMEY / PARKING PLACE DU 8 MAI-RUE FONTAIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.488296, + 44.755913 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310711", + "ref": "FR*SOD*S*MB33*107*1*_*_", + "name": "QUINSAC - RUE HENRI CHIVALEY CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.001493, + 44.981499 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310612", + "ref": "FR*SOD*S*MB33*106*1*_*_", + "name": "PUYNORMAND - RD N°123 /ANGLE VC DU BOURG / LD BOURG SUD OUEST", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.747904, + 45.199554 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339811", + "ref": "FR*SOD*S*MB33*98*1*_*_", + "name": "PAUILLAC - RUE JULES FERRY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.078747, + 44.820744 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310012", + "ref": "FR*SOD*S*MB33*100*1*_*_", + "name": "PESSAC-SUR-DORDOGNE - PLACE DU PONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.584632, + 44.709854 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339411", + "ref": "FR*SOD*S*MB33*94*1*_*_", + "name": "MARTILLAC - RUE JACQUES MONOD - TECHNOPOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.584632, + 44.709854 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339412", + "ref": "FR*SOD*S*MB33*94*1*_*_", + "name": "MARTILLAC - RUE JACQUES MONOD - TECHNOPOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.939739, + 44.606319 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339512", + "ref": "FR*SOD*S*MB33*95*1*_*_", + "name": "MIOS - AVENUE DE LA REPUBLIQUE MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.939739, + 44.606319 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339511", + "ref": "FR*SOD*S*MB33*95*1*_*_", + "name": "MIOS - AVENUE DE LA REPUBLIQUE MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.083541, + 44.650417 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339612", + "ref": "FR*SOD*S*MB33*96*1*_*_", + "name": "MONSEGUR - PLACE DU 8 MAI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.083541, + 44.650417 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339611", + "ref": "FR*SOD*S*MB33*96*1*_*_", + "name": "MONSEGUR - PLACE DU 8 MAI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.126781, + 44.929531 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339712", + "ref": "FR*SOD*S*MB33*97*1*_*_", + "name": "MONTAGNE - CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.126781, + 44.929531 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339711", + "ref": "FR*SOD*S*MB33*97*1*_*_", + "name": "MONTAGNE - CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.747904, + 45.199554 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339812", + "ref": "FR*SOD*S*MB33*98*1*_*_", + "name": "PAUILLAC - RUE JULES FERRY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.001493, + 44.981499 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310611", + "ref": "FR*SOD*S*MB33*106*1*_*_", + "name": "PUYNORMAND - RD N°123 /ANGLE VC DU BOURG / LD BOURG SUD OUEST", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.077091, + 44.742752 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339911", + "ref": "FR*SOD*S*MB33*99*1*_*_", + "name": "PELLEGRUE - PARKING DU CIMETIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.077091, + 44.742752 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB339912", + "ref": "FR*SOD*S*MB33*99*1*_*_", + "name": "PELLEGRUE - PARKING DU CIMETIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.078747, + 44.820744 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310011", + "ref": "FR*SOD*S*MB33*100*1*_*_", + "name": "PESSAC-SUR-DORDOGNE - PLACE DU PONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.064026, + 44.981812 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310111", + "ref": "FR*SOD*S*MB33*101*1*_*_", + "name": "PETIT-PALAIS-ET-CORNEMPS - CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.064026, + 44.981812 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310112", + "ref": "FR*SOD*S*MB33*101*1*_*_", + "name": "PETIT-PALAIS-ET-CORNEMPS - CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.226371, + 44.830223 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310211", + "ref": "FR*SOD*S*MB33*102*1*_*_", + "name": "PINEUILH - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.226371, + 44.830223 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310212", + "ref": "FR*SOD*S*MB33*102*1*_*_", + "name": "PINEUILH - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.354772, + 44.650349 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310311", + "ref": "FR*SOD*S*MB33*103*1*_*_", + "name": "PODENSAC - PLACE GAMBETTA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.354772, + 44.650349 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310312", + "ref": "FR*SOD*S*MB33*103*1*_*_", + "name": "PODENSAC - PLACE GAMBETTA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.423946, + 44.696251 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310412", + "ref": "FR*SOD*S*MB33*104*1*_*_", + "name": "PORTETS - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.423946, + 44.696251 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310411", + "ref": "FR*SOD*S*MB33*104*1*_*_", + "name": "PORTETS - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.074422, + 44.925064 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310512", + "ref": "FR*SOD*S*MB33*105*1*_*_", + "name": "PUISSEGUIN - LIEU-DIT AU BARAIL - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.074422, + 44.925064 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref:EU:EVSE": "FRS33PMB3310511", + "ref": "FR*SOD*S*MB33*105*1*_*_", + "name": "PUISSEGUIN - LIEU-DIT AU BARAIL - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888315, + 44.966278 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "FLEX-E", + "ref:EU:EVSE": "FRE04POAZS22331", + "ref": "FR*SOD*S*OAZS*223*3*_*_", + "name": "IZIVIA | AIRE DE COVOITURAGE DE VALENCE NORD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.365344, + 48.732587 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "FLEX-E", + "ref:EU:EVSE": "FRE04POAZS22212", + "ref": "FR*SOD*S*OAZS*222*1*_*_", + "name": "IZIVIA | STATION ORLY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.365344, + 48.732587 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "FLEX-E", + "ref:EU:EVSE": "FRE04POAZS22211", + "ref": "FR*SOD*S*OAZS*222*1*_*_", + "name": "IZIVIA | STATION ORLY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.365344, + 48.732587 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "FLEX-E", + "ref:EU:EVSE": "FRE04POAZS22232", + "ref": "FR*SOD*S*OAZS*222*3*_*_", + "name": "IZIVIA | STATION ORLY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888315, + 44.966278 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "FLEX-E", + "ref:EU:EVSE": "FRE04POAZS22312", + "ref": "FR*SOD*S*OAZS*223*1*_*_", + "name": "IZIVIA | AIRE DE COVOITURAGE DE VALENCE NORD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888315, + 44.966278 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "FLEX-E", + "ref:EU:EVSE": "FRE04POAZS22311", + "ref": "FR*SOD*S*OAZS*223*1*_*_", + "name": "IZIVIA | AIRE DE COVOITURAGE DE VALENCE NORD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888315, + 44.966278 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "FLEX-E", + "ref:EU:EVSE": "FRE04POAZS22332", + "ref": "FR*SOD*S*OAZS*223*3*_*_", + "name": "IZIVIA | AIRE DE COVOITURAGE DE VALENCE NORD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.365344, + 48.732587 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "FLEX-E", + "ref:EU:EVSE": "FRE04POAZS22231", + "ref": "FR*SOD*S*OAZS*222*3*_*_", + "name": "IZIVIA | STATION ORLY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.678903, + 45.568583 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172411", + "ref": "FR*SOD*S*MB17*24*1*_*_", + "name": "GEMOZAC - PLACE DE VERDUN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.678903, + 45.568583 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172412", + "ref": "FR*SOD*S*MB17*24*1*_*_", + "name": "GEMOZAC - PLACE DE VERDUN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.004244, + 46.127379 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB177012", + "ref": "FR*SOD*S*MB17*70*1*_*_", + "name": "LA JARRIE - RUE DE LA PROVIDENCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.008851, + 46.128313 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB177112", + "ref": "FR*SOD*S*MB17*71*1*_*_", + "name": "LA JARRIE - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.834953, + 45.582125 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB177212", + "ref": "FR*SOD*S*MB17*72*1*_*_", + "name": "COZES - ROUTE DE TALMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.834953, + 45.582125 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB177211", + "ref": "FR*SOD*S*MB17*72*1*_*_", + "name": "COZES - ROUTE DE TALMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.906058, + 45.536148 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB177311", + "ref": "FR*SOD*S*MB17*73*1*_*_", + "name": "TALMONT - AVENUE DE LESTUAIRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.906058, + 45.536148 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB177312", + "ref": "FR*SOD*S*MB17*73*1*_*_", + "name": "TALMONT - AVENUE DE LESTUAIRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.272743, + 45.243324 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB177412", + "ref": "FR*SOD*S*MB17*74*1*_*_", + "name": "MONTLIEU LA GARDE - MAISON DE LA FORET", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.272743, + 45.243324 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB177411", + "ref": "FR*SOD*S*MB17*74*1*_*_", + "name": "MONTLIEU LA GARDE - MAISON DE LA FORET", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.272743, + 45.243324 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB177413", + "ref": "FR*SOD*S*MB17*74*1*_*_", + "name": "MONTLIEU LA GARDE - MAISON DE LA FORET", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.678903, + 45.568583 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172412", + "ref": "FR*SOD*S*MB17*24*1*_*_", + "name": "GEMOZAC - PLACE DE VERDUN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.013245, + 45.157408 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172312", + "ref": "FR*SOD*S*MB17*23*1*_*_", + "name": "SAINT AIGULIN - RUE GAMBETTA PLACE JULES FERRY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.013245, + 45.157408 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172312", + "ref": "FR*SOD*S*MB17*23*1*_*_", + "name": "SAINT AIGULIN - RUE GAMBETTA PLACE JULES FERRY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.013245, + 45.157408 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172311", + "ref": "FR*SOD*S*MB17*23*1*_*_", + "name": "SAINT AIGULIN - RUE GAMBETTA PLACE JULES FERRY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30677, + 45.941801 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172211", + "ref": "FR*SOD*S*MB17*22*1*_*_", + "name": "SAINT PIERRE DOLERON - RUE DE LA BOULINE PLACE GAMBETTA", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30677, + 45.941801 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172212", + "ref": "FR*SOD*S*MB17*22*1*_*_", + "name": "SAINT PIERRE DOLERON - RUE DE LA BOULINE PLACE GAMBETTA", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30677, + 45.941801 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172212", + "ref": "FR*SOD*S*MB17*22*1*_*_", + "name": "SAINT PIERRE DOLERON - RUE DE LA BOULINE PLACE GAMBETTA", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31735, + 45.869989 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172112", + "ref": "FR*SOD*S*MB17*21*1*_*_", + "name": "MATHA - PLACE DU CHATEAU DEAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31735, + 45.869989 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172112", + "ref": "FR*SOD*S*MB17*21*1*_*_", + "name": "MATHA - PLACE DU CHATEAU DEAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31735, + 45.869989 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172111", + "ref": "FR*SOD*S*MB17*21*1*_*_", + "name": "MATHA - PLACE DU CHATEAU DEAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.050769, + 45.62793 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172011", + "ref": "FR*SOD*S*MB17*20*1*_*_", + "name": "ROYAN - PARKING AVENUE DE PARIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.050769, + 45.62793 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172012", + "ref": "FR*SOD*S*MB17*20*1*_*_", + "name": "ROYAN - PARKING AVENUE DE PARIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.050769, + 45.62793 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172012", + "ref": "FR*SOD*S*MB17*20*1*_*_", + "name": "ROYAN - PARKING AVENUE DE PARIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.392039, + 46.183592 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171911", + "ref": "FR*SOD*S*MB17*19*1*_*_", + "name": "LE BOIS PLAGE EN RE - RUE DES BARGOTTES PARKING LAZZATE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.392039, + 46.183592 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171912", + "ref": "FR*SOD*S*MB17*19*1*_*_", + "name": "LE BOIS PLAGE EN RE - RUE DES BARGOTTES PARKING LAZZATE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.008851, + 46.128313 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB177111", + "ref": "FR*SOD*S*MB17*71*1*_*_", + "name": "LA JARRIE - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.004244, + 46.127379 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB177011", + "ref": "FR*SOD*S*MB17*70*1*_*_", + "name": "LA JARRIE - RUE DE LA PROVIDENCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33143, + 46.19102 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175512", + "ref": "FR*SOD*S*MB17*55*1*_*_", + "name": "LA FLOTTE EN RE - RUE JEAN MOULIN", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.403964, + 45.312323 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176911", + "ref": "FR*SOD*S*MB17*69*1*_*_", + "name": "COUX - AVENUE DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.01114, + 45.67263 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175612", + "ref": "FR*SOD*S*MB17*56*1*_*_", + "name": "SAINT SULPICE DE ROYAN - ROUTE DE SAINT-PALAIS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.01114, + 45.67263 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175613", + "ref": "FR*SOD*S*MB17*56*1*_*_", + "name": "SAINT SULPICE DE ROYAN - ROUTE DE SAINT-PALAIS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.01114, + 45.67263 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175611", + "ref": "FR*SOD*S*MB17*56*1*_*_", + "name": "SAINT SULPICE DE ROYAN - ROUTE DE SAINT-PALAIS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.929732, + 45.666839 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175811", + "ref": "FR*SOD*S*MB17*58*1*_*_", + "name": "SAUJON - PARKING GARE SNCF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.929732, + 45.666839 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175812", + "ref": "FR*SOD*S*MB17*58*1*_*_", + "name": "SAUJON - PARKING GARE SNCF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.378539, + 46.027521 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176011", + "ref": "FR*SOD*S*MB17*60*1*_*_", + "name": "SAINT DENIS DOLERON - RUE MARC GUYONNET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.378539, + 46.027521 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176012", + "ref": "FR*SOD*S*MB17*60*1*_*_", + "name": "SAINT DENIS DOLERON - RUE MARC GUYONNET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.991936, + 45.603029 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176112", + "ref": "FR*SOD*S*MB17*61*1*_*_", + "name": "SAINT GEORGES DE DIDONNE - RUE DU PROFESSEUR LANGEVIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.991936, + 45.603029 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176111", + "ref": "FR*SOD*S*MB17*61*1*_*_", + "name": "SAINT GEORGES DE DIDONNE - RUE DU PROFESSEUR LANGEVIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.001935, + 45.60287 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176211", + "ref": "FR*SOD*S*MB17*62*1*_*_", + "name": "SAINT GEORGES DE DIDONNE - RUE DU COCA", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.001935, + 45.60287 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176212", + "ref": "FR*SOD*S*MB17*62*1*_*_", + "name": "SAINT GEORGES DE DIDONNE - RUE DU COCA", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.187188, + 45.216866 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176311", + "ref": "FR*SOD*S*MB17*63*1*_*_", + "name": "MONTGUYON - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.187188, + 45.216866 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176312", + "ref": "FR*SOD*S*MB17*63*1*_*_", + "name": "MONTGUYON - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.209274, + 45.844284 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176412", + "ref": "FR*SOD*S*MB17*64*1*_*_", + "name": "SAINT TROJAN LES BAINS - RUE DES PECHEURS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.209274, + 45.844284 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176411", + "ref": "FR*SOD*S*MB17*64*1*_*_", + "name": "SAINT TROJAN LES BAINS - RUE DES PECHEURS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.944979, + 45.726395 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176511", + "ref": "FR*SOD*S*MB17*65*1*_*_", + "name": "LE GUA - RUE SAMUEL CHAMPLAIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.944979, + 45.726395 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176512", + "ref": "FR*SOD*S*MB17*65*1*_*_", + "name": "LE GUA - RUE SAMUEL CHAMPLAIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.542199, + 46.22903 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176612", + "ref": "FR*SOD*S*MB17*66*1*_*_", + "name": "SAINT CLEMENT DES BALEINES - RUE DU CENTRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.542199, + 46.22903 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176611", + "ref": "FR*SOD*S*MB17*66*1*_*_", + "name": "SAINT CLEMENT DES BALEINES - RUE DU CENTRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.422367, + 46.195531 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176712", + "ref": "FR*SOD*S*MB17*67*1*_*_", + "name": "LA COUARDE SUR MER - COURS DES POILUS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238763, + 45.294596 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176812", + "ref": "FR*SOD*S*MB17*68*1*_*_", + "name": "CHEVANCEAUX - AVENUE DE PARIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238763, + 45.294596 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176811", + "ref": "FR*SOD*S*MB17*68*1*_*_", + "name": "CHEVANCEAUX - AVENUE DE PARIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.403964, + 45.312323 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176912", + "ref": "FR*SOD*S*MB17*69*1*_*_", + "name": "COUX - AVENUE DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.392039, + 46.183592 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171912", + "ref": "FR*SOD*S*MB17*19*1*_*_", + "name": "LE BOIS PLAGE EN RE - RUE DES BARGOTTES PARKING LAZZATE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.060593, + 45.64539 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171812", + "ref": "FR*SOD*S*MB17*18*1*_*_", + "name": "VAUX SUR MER", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.060593, + 45.64539 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171812", + "ref": "FR*SOD*S*MB17*18*1*_*_", + "name": "VAUX SUR MER", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.060593, + 45.64539 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171811", + "ref": "FR*SOD*S*MB17*18*1*_*_", + "name": "VAUX SUR MER", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.265068, + 45.91099 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17912", + "ref": "FR*SOD*S*MB17*9*1*_*_", + "name": "DOLUS - PASSAGE DE LA CURE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.517812, + 45.94568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17812", + "ref": "FR*SOD*S*MB17*8*1*_*_", + "name": "SAINT JEAN DANGELY - PLACE DES MARTYRS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.517812, + 45.94568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17811", + "ref": "FR*SOD*S*MB17*8*1*_*_", + "name": "SAINT JEAN DANGELY - PLACE DES MARTYRS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.517812, + 45.94568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17812", + "ref": "FR*SOD*S*MB17*8*1*_*_", + "name": "SAINT JEAN DANGELY - PLACE DES MARTYRS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.116179, + 46.185988 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17711", + "ref": "FR*SOD*S*MB17*7*1*_*_", + "name": "PUILBOREAU - PLACE JEAN FLIPPI", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.116179, + 46.185988 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17712", + "ref": "FR*SOD*S*MB17*7*1*_*_", + "name": "PUILBOREAU - PLACE JEAN FLIPPI", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.116179, + 46.185988 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17712", + "ref": "FR*SOD*S*MB17*7*1*_*_", + "name": "PUILBOREAU - PLACE JEAN FLIPPI", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.276077, + 46.159822 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17612", + "ref": "FR*SOD*S*MB17*6*1*_*_", + "name": "RIVEDOUX - PLACE DES LIONS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.276077, + 46.159822 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17612", + "ref": "FR*SOD*S*MB17*6*1*_*_", + "name": "RIVEDOUX - PLACE DES LIONS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.276077, + 46.159822 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17611", + "ref": "FR*SOD*S*MB17*6*1*_*_", + "name": "RIVEDOUX - PLACE DES LIONS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548559, + 45.577977 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17512", + "ref": "FR*SOD*S*MB17*5*1*_*_", + "name": "PONS - PLACE DES MARRONNIERS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548559, + 45.577977 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17511", + "ref": "FR*SOD*S*MB17*5*1*_*_", + "name": "PONS - PLACE DES MARRONNIERS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548559, + 45.577977 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17512", + "ref": "FR*SOD*S*MB17*5*1*_*_", + "name": "PONS - PLACE DES MARRONNIERS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.663373, + 45.747971 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17411", + "ref": "FR*SOD*S*MB17*4*1*_*_", + "name": "SAINTES - ZI DE LORMEAU DE PIED", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.272705, + 45.243315 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17312", + "ref": "FR*SOD*S*MB17*3*1*_*_", + "name": "MONTLIEU LA GARDE - MAISON DE LA FORET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.272705, + 45.243315 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17311", + "ref": "FR*SOD*S*MB17*3*1*_*_", + "name": "MONTLIEU LA GARDE - MAISON DE LA FORET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.272705, + 45.243315 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17312", + "ref": "FR*SOD*S*MB17*3*1*_*_", + "name": "MONTLIEU LA GARDE - MAISON DE LA FORET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.752427, + 46.104744 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17212", + "ref": "FR*SOD*S*MB17*2*1*_*_", + "name": "SURGERES - PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.752427, + 46.104744 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17211", + "ref": "FR*SOD*S*MB17*2*1*_*_", + "name": "SURGERES - PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.752427, + 46.104744 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17212", + "ref": "FR*SOD*S*MB17*2*1*_*_", + "name": "SURGERES - PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.925464, + 45.676244 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17112", + "ref": "FR*SOD*S*MB17*1*1*_*_", + "name": "SAUJON - PLACE RICHELIEU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.925464, + 45.676244 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17112", + "ref": "FR*SOD*S*MB17*1*1*_*_", + "name": "SAUJON - PLACE RICHELIEU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.925464, + 45.676244 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17111", + "ref": "FR*SOD*S*MB17*1*1*_*_", + "name": "SAUJON - PLACE RICHELIEU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.265068, + 45.91099 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17912", + "ref": "FR*SOD*S*MB17*9*1*_*_", + "name": "DOLUS - PASSAGE DE LA CURE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.265068, + 45.91099 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB17911", + "ref": "FR*SOD*S*MB17*9*1*_*_", + "name": "DOLUS - PASSAGE DE LA CURE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.094403, + 46.152379 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171011", + "ref": "FR*SOD*S*MB17*10*1*_*_", + "name": "PERIGNY - PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.367359, + 46.200984 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171412", + "ref": "FR*SOD*S*MB17*14*1*_*_", + "name": "SAINT MARTIN DE RE - RUE DU PERE IGNACE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568038, + 45.480921 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171712", + "ref": "FR*SOD*S*MB17*17*1*_*_", + "name": "SAINT GENIS DE SAINTONGE - RUE DU PONT BOUCHARD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568038, + 45.480921 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171711", + "ref": "FR*SOD*S*MB17*17*1*_*_", + "name": "SAINT GENIS DE SAINTONGE - RUE DU PONT BOUCHARD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568038, + 45.480921 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171712", + "ref": "FR*SOD*S*MB17*17*1*_*_", + "name": "SAINT GENIS DE SAINTONGE - RUE DU PONT BOUCHARD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.351954, + 45.972849 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171612", + "ref": "FR*SOD*S*MB17*16*1*_*_", + "name": "SAINT GEORGES DOLERON - CHERAY PARKING GODEAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.351954, + 45.972849 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171611", + "ref": "FR*SOD*S*MB17*16*1*_*_", + "name": "SAINT GEORGES DOLERON - CHERAY PARKING GODEAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.351954, + 45.972849 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171612", + "ref": "FR*SOD*S*MB17*16*1*_*_", + "name": "SAINT GEORGES DOLERON - CHERAY PARKING GODEAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.064226, + 46.188736 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171511", + "ref": "FR*SOD*S*MB17*15*1*_*_", + "name": "DOMPIERRE SUR MER - ESPACE MICHEL CREPEAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.064226, + 46.188736 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171512", + "ref": "FR*SOD*S*MB17*15*1*_*_", + "name": "DOMPIERRE SUR MER - ESPACE MICHEL CREPEAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.064226, + 46.188736 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171512", + "ref": "FR*SOD*S*MB17*15*1*_*_", + "name": "DOMPIERRE SUR MER - ESPACE MICHEL CREPEAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.367359, + 46.200984 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171411", + "ref": "FR*SOD*S*MB17*14*1*_*_", + "name": "SAINT MARTIN DE RE - RUE DU PERE IGNACE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.367359, + 46.200984 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171412", + "ref": "FR*SOD*S*MB17*14*1*_*_", + "name": "SAINT MARTIN DE RE - RUE DU PERE IGNACE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.094403, + 46.152379 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171012", + "ref": "FR*SOD*S*MB17*10*1*_*_", + "name": "PERIGNY - PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.569505, + 45.373002 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171311", + "ref": "FR*SOD*S*MB17*13*1*_*_", + "name": "MIRAMBEAU - RUE DES ECOLES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.569505, + 45.373002 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171312", + "ref": "FR*SOD*S*MB17*13*1*_*_", + "name": "MIRAMBEAU - RUE DES ECOLES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.569505, + 45.373002 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171312", + "ref": "FR*SOD*S*MB17*13*1*_*_", + "name": "MIRAMBEAU - RUE DES ECOLES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.892793, + 45.943879 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171212", + "ref": "FR*SOD*S*MB17*12*1*_*_", + "name": "TONNAY CHARENTE - RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.892793, + 45.943879 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171211", + "ref": "FR*SOD*S*MB17*12*1*_*_", + "name": "TONNAY CHARENTE - RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.892793, + 45.943879 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171212", + "ref": "FR*SOD*S*MB17*12*1*_*_", + "name": "TONNAY CHARENTE - RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.029349, + 45.624614 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171112", + "ref": "FR*SOD*S*MB17*11*1*_*_", + "name": "ROYAN - PLACE CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.029349, + 45.624614 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171111", + "ref": "FR*SOD*S*MB17*11*1*_*_", + "name": "ROYAN - PLACE CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.029349, + 45.624614 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171112", + "ref": "FR*SOD*S*MB17*11*1*_*_", + "name": "ROYAN - PLACE CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.094403, + 46.152379 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB171012", + "ref": "FR*SOD*S*MB17*10*1*_*_", + "name": "PERIGNY - PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33143, + 46.19102 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175513", + "ref": "FR*SOD*S*MB17*55*1*_*_", + "name": "LA FLOTTE EN RE - RUE JEAN MOULIN", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.422367, + 46.195531 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB176711", + "ref": "FR*SOD*S*MB17*67*1*_*_", + "name": "LA COUARDE SUR MER - COURS DES POILUS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33143, + 46.19102 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175511", + "ref": "FR*SOD*S*MB17*55*1*_*_", + "name": "LA FLOTTE EN RE - RUE JEAN MOULIN", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.142896, + 45.768927 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173412", + "ref": "FR*SOD*S*MB17*34*1*_*_", + "name": "LA TREMBLADE - PLACE JEAN NOEL DE LIPKOWSKI", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.813299, + 45.740856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173513", + "ref": "FR*SOD*S*MB17*35*1*_*_", + "name": "CORME ROYAL - RESIDENCE DES ORMEAUX", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.813299, + 45.740856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173511", + "ref": "FR*SOD*S*MB17*35*1*_*_", + "name": "CORME ROYAL - RESIDENCE DES ORMEAUX", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.06977, + 46.14952 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175411", + "ref": "FR*SOD*S*MB17*54*1*_*_", + "name": "SAINT ROGATIEN - RUE DE LA ROCHELLE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.079027, + 46.08067 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173613", + "ref": "FR*SOD*S*MB17*36*1*_*_", + "name": "CHATELAILLON - PARKING HAUT RILLON", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.079027, + 46.08067 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173612", + "ref": "FR*SOD*S*MB17*36*1*_*_", + "name": "CHATELAILLON - PARKING HAUT RILLON", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.079027, + 46.08067 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173611", + "ref": "FR*SOD*S*MB17*36*1*_*_", + "name": "CHATELAILLON - PARKING HAUT RILLON", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.096399, + 46.300894 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173711", + "ref": "FR*SOD*S*MB17*37*1*_*_", + "name": "CHARRON - RUE DU CHATEAU ZONE DES MORINES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.096399, + 46.300894 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173713", + "ref": "FR*SOD*S*MB17*37*1*_*_", + "name": "CHARRON - RUE DU CHATEAU ZONE DES MORINES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.096399, + 46.300894 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173712", + "ref": "FR*SOD*S*MB17*37*1*_*_", + "name": "CHARRON - RUE DU CHATEAU ZONE DES MORINES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432498, + 46.224022 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173811", + "ref": "FR*SOD*S*MB17*38*1*_*_", + "name": "LOIX EN RE - PARKING DE LA BERNARDIERE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432498, + 46.224022 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173812", + "ref": "FR*SOD*S*MB17*38*1*_*_", + "name": "LOIX EN RE - PARKING DE LA BERNARDIERE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432498, + 46.224022 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173813", + "ref": "FR*SOD*S*MB17*38*1*_*_", + "name": "LOIX EN RE - PARKING DE LA BERNARDIERE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.317532, + 46.155851 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173911", + "ref": "FR*SOD*S*MB17*39*1*_*_", + "name": "SAINTE MARIE DE RE - CHEMIN DES SABLES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.317532, + 46.155851 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173913", + "ref": "FR*SOD*S*MB17*39*1*_*_", + "name": "SAINTE MARIE DE RE - CHEMIN DES SABLES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.317532, + 46.155851 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173912", + "ref": "FR*SOD*S*MB17*39*1*_*_", + "name": "SAINTE MARIE DE RE - CHEMIN DES SABLES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.936192, + 46.114931 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174013", + "ref": "FR*SOD*S*MB17*40*1*_*_", + "name": "AIGREFEUILLE - RUE DE LA POSTE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.936192, + 46.114931 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174012", + "ref": "FR*SOD*S*MB17*40*1*_*_", + "name": "AIGREFEUILLE - RUE DE LA POSTE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.936192, + 46.114931 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174011", + "ref": "FR*SOD*S*MB17*40*1*_*_", + "name": "AIGREFEUILLE - RUE DE LA POSTE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.958623, + 45.934373 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174111", + "ref": "FR*SOD*S*MB17*41*1*_*_", + "name": "ROCHEFORT - PARKING DE LA GALISSONIERE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.958623, + 45.934373 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174113", + "ref": "FR*SOD*S*MB17*41*1*_*_", + "name": "ROCHEFORT - PARKING DE LA GALISSONIERE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.958623, + 45.934373 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174112", + "ref": "FR*SOD*S*MB17*41*1*_*_", + "name": "ROCHEFORT - PARKING DE LA GALISSONIERE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.96002, + 45.944355 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174212", + "ref": "FR*SOD*S*MB17*42*1*_*_", + "name": "ROCHEFORT - AVENUE MARCEL DASSAULT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.96002, + 45.944355 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174213", + "ref": "FR*SOD*S*MB17*42*1*_*_", + "name": "ROCHEFORT - AVENUE MARCEL DASSAULT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.142896, + 45.768927 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173413", + "ref": "FR*SOD*S*MB17*34*1*_*_", + "name": "LA TREMBLADE - PLACE JEAN NOEL DE LIPKOWSKI", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.142896, + 45.768927 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173411", + "ref": "FR*SOD*S*MB17*34*1*_*_", + "name": "LA TREMBLADE - PLACE JEAN NOEL DE LIPKOWSKI", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.406388, + 45.284856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174312", + "ref": "FR*SOD*S*MB17*43*1*_*_", + "name": "MONTENDRE - PLACE RAYMOND PAILLE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345935, + 46.019559 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173312", + "ref": "FR*SOD*S*MB17*33*1*_*_", + "name": "AULNAY DE SAINTONGE - PLACE CHARLES DE GAULLE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303649, + 45.527902 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172512", + "ref": "FR*SOD*S*MB17*25*1*_*_", + "name": "ARCHIAC - RUE DE LA PART DES ANGES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303649, + 45.527902 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172512", + "ref": "FR*SOD*S*MB17*25*1*_*_", + "name": "ARCHIAC - RUE DE LA PART DES ANGES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303649, + 45.527902 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172511", + "ref": "FR*SOD*S*MB17*25*1*_*_", + "name": "ARCHIAC - RUE DE LA PART DES ANGES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.838119, + 45.8611 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172611", + "ref": "FR*SOD*S*MB17*26*1*_*_", + "name": "BEURLAY - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.838119, + 45.8611 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172612", + "ref": "FR*SOD*S*MB17*26*1*_*_", + "name": "BEURLAY - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.838119, + 45.8611 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172612", + "ref": "FR*SOD*S*MB17*26*1*_*_", + "name": "BEURLAY - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.955017, + 45.898288 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172712", + "ref": "FR*SOD*S*MB17*27*1*_*_", + "name": "ECHILLAIS - PLACE DE LEUROPE RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.955017, + 45.898288 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172711", + "ref": "FR*SOD*S*MB17*27*1*_*_", + "name": "ECHILLAIS - PLACE DE LEUROPE RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.955017, + 45.898288 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172712", + "ref": "FR*SOD*S*MB17*27*1*_*_", + "name": "ECHILLAIS - PLACE DE LEUROPE RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.178706, + 45.691602 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172812", + "ref": "FR*SOD*S*MB17*28*1*_*_", + "name": "LES MATHES - AVENUE DU POITOU - LA PALMYRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.178706, + 45.691602 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172811", + "ref": "FR*SOD*S*MB17*28*1*_*_", + "name": "LES MATHES - AVENUE DU POITOU - LA PALMYRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.178706, + 45.691602 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB172812", + "ref": "FR*SOD*S*MB17*28*1*_*_", + "name": "LES MATHES - AVENUE DU POITOU - LA PALMYRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.194709, + 45.886536 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173013", + "ref": "FR*SOD*S*MB17*30*1*_*_", + "name": "LE CHATEAU DOLERON - PLACE DE LA REPUBLIQUE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.194709, + 45.886536 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173011", + "ref": "FR*SOD*S*MB17*30*1*_*_", + "name": "LE CHATEAU DOLERON - PLACE DE LA REPUBLIQUE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.194709, + 45.886536 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173012", + "ref": "FR*SOD*S*MB17*30*1*_*_", + "name": "LE CHATEAU DOLERON - PLACE DE LA REPUBLIQUE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.188403, + 46.193318 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173111", + "ref": "FR*SOD*S*MB17*31*1*_*_", + "name": "LHOUMEAU - PLACE GABY COLL", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.188403, + 46.193318 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173113", + "ref": "FR*SOD*S*MB17*31*1*_*_", + "name": "LHOUMEAU - PLACE GABY COLL", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.188403, + 46.193318 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173112", + "ref": "FR*SOD*S*MB17*31*1*_*_", + "name": "LHOUMEAU - PLACE GABY COLL", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.678354, + 45.876197 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173211", + "ref": "FR*SOD*S*MB17*32*1*_*_", + "name": "SAINT SAVINIEN - PLACE DE LA GARE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.678354, + 45.876197 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173213", + "ref": "FR*SOD*S*MB17*32*1*_*_", + "name": "SAINT SAVINIEN - PLACE DE LA GARE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.678354, + 45.876197 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173212", + "ref": "FR*SOD*S*MB17*32*1*_*_", + "name": "SAINT SAVINIEN - PLACE DE LA GARE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345935, + 46.019559 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173311", + "ref": "FR*SOD*S*MB17*33*1*_*_", + "name": "AULNAY DE SAINTONGE - PLACE CHARLES DE GAULLE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345935, + 46.019559 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173313", + "ref": "FR*SOD*S*MB17*33*1*_*_", + "name": "AULNAY DE SAINTONGE - PLACE CHARLES DE GAULLE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.96002, + 45.944355 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174211", + "ref": "FR*SOD*S*MB17*42*1*_*_", + "name": "ROCHEFORT - AVENUE MARCEL DASSAULT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.813299, + 45.740856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB173512", + "ref": "FR*SOD*S*MB17*35*1*_*_", + "name": "CORME ROYAL - RESIDENCE DES ORMEAUX", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.406388, + 45.284856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174311", + "ref": "FR*SOD*S*MB17*43*1*_*_", + "name": "MONTENDRE - PLACE RAYMOND PAILLE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.505448, + 45.817534 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175012", + "ref": "FR*SOD*S*MB17*50*1*_*_", + "name": "ECOYEUX - RUE DES ARTISANS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.962153, + 45.94209 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174711", + "ref": "FR*SOD*S*MB17*47*1*_*_", + "name": "ROCHEFORT - AV CAMILLE PELLETAN LES THERMES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.962153, + 45.94209 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174712", + "ref": "FR*SOD*S*MB17*47*1*_*_", + "name": "ROCHEFORT - AV CAMILLE PELLETAN LES THERMES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422257, + 45.774072 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174812", + "ref": "FR*SOD*S*MB17*48*1*_*_", + "name": "BURIE - RUE DE VERDUN PLACE DES PLATANES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422257, + 45.774072 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174813", + "ref": "FR*SOD*S*MB17*48*1*_*_", + "name": "BURIE - RUE DE VERDUN PLACE DES PLATANES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422257, + 45.774072 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174811", + "ref": "FR*SOD*S*MB17*48*1*_*_", + "name": "BURIE - RUE DE VERDUN PLACE DES PLATANES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.496067, + 45.764361 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174913", + "ref": "FR*SOD*S*MB17*49*1*_*_", + "name": "SAINT CESAIRE - LES BUJOLIERS LAC", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.496067, + 45.764361 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174911", + "ref": "FR*SOD*S*MB17*49*1*_*_", + "name": "SAINT CESAIRE - LES BUJOLIERS LAC", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.496067, + 45.764361 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174912", + "ref": "FR*SOD*S*MB17*49*1*_*_", + "name": "SAINT CESAIRE - LES BUJOLIERS LAC", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.505448, + 45.817534 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175011", + "ref": "FR*SOD*S*MB17*50*1*_*_", + "name": "ECOYEUX - RUE DES ARTISANS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.505448, + 45.817534 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175013", + "ref": "FR*SOD*S*MB17*50*1*_*_", + "name": "ECOYEUX - RUE DES ARTISANS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.779485, + 45.700818 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175113", + "ref": "FR*SOD*S*MB17*51*1*_*_", + "name": "PISANY - ALLEE DES SPORTS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.529733, + 45.948627 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174612", + "ref": "FR*SOD*S*MB17*46*1*_*_", + "name": "SAINT JEAN DANGELY - FAUBOURG DAUNIS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.779485, + 45.700818 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175111", + "ref": "FR*SOD*S*MB17*51*1*_*_", + "name": "PISANY - ALLEE DES SPORTS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.779485, + 45.700818 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175112", + "ref": "FR*SOD*S*MB17*51*1*_*_", + "name": "PISANY - ALLEE DES SPORTS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.033112, + 45.620421 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175211", + "ref": "FR*SOD*S*MB17*52*1*_*_", + "name": "ROYAN - AVENUE DES CONGRES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.033112, + 45.620421 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175213", + "ref": "FR*SOD*S*MB17*52*1*_*_", + "name": "ROYAN - AVENUE DES CONGRES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.033112, + 45.620421 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175212", + "ref": "FR*SOD*S*MB17*52*1*_*_", + "name": "ROYAN - AVENUE DES CONGRES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.018217, + 45.62523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175313", + "ref": "FR*SOD*S*MB17*53*1*_*_", + "name": "ROYAN - BD GEORGES CLEMENCEAU GARE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.018217, + 45.62523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175311", + "ref": "FR*SOD*S*MB17*53*1*_*_", + "name": "ROYAN - BD GEORGES CLEMENCEAU GARE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.406388, + 45.284856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174313", + "ref": "FR*SOD*S*MB17*43*1*_*_", + "name": "MONTENDRE - PLACE RAYMOND PAILLE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.06977, + 46.14952 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175412", + "ref": "FR*SOD*S*MB17*54*1*_*_", + "name": "SAINT ROGATIEN - RUE DE LA ROCHELLE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.06977, + 46.14952 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175413", + "ref": "FR*SOD*S*MB17*54*1*_*_", + "name": "SAINT ROGATIEN - RUE DE LA ROCHELLE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.962153, + 45.94209 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174713", + "ref": "FR*SOD*S*MB17*47*1*_*_", + "name": "ROCHEFORT - AV CAMILLE PELLETAN LES THERMES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.018217, + 45.62523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB175312", + "ref": "FR*SOD*S*MB17*53*1*_*_", + "name": "ROYAN - BD GEORGES CLEMENCEAU GARE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.529733, + 45.948627 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174611", + "ref": "FR*SOD*S*MB17*46*1*_*_", + "name": "SAINT JEAN DANGELY - FAUBOURG DAUNIS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.529733, + 45.948627 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174613", + "ref": "FR*SOD*S*MB17*46*1*_*_", + "name": "SAINT JEAN DANGELY - FAUBOURG DAUNIS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.556037, + 45.717543 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174412", + "ref": "FR*SOD*S*MB17*44*1*_*_", + "name": "CHANIERS - AV CHARLES DE GAULLE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.556037, + 45.717543 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174413", + "ref": "FR*SOD*S*MB17*44*1*_*_", + "name": "CHANIERS - AV CHARLES DE GAULLE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.556037, + 45.717543 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174411", + "ref": "FR*SOD*S*MB17*44*1*_*_", + "name": "CHANIERS - AV CHARLES DE GAULLE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510211, + 45.940547 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174513", + "ref": "FR*SOD*S*MB17*45*1*_*_", + "name": "SAINT JEAN DANGELY - AV ARISTIDE BRIAND", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510211, + 45.940547 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174512", + "ref": "FR*SOD*S*MB17*45*1*_*_", + "name": "SAINT JEAN DANGELY - AV ARISTIDE BRIAND", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510211, + 45.940547 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref:EU:EVSE": "FRS17PMB174511", + "ref": "FR*SOD*S*MB17*45*1*_*_", + "name": "SAINT JEAN DANGELY - AV ARISTIDE BRIAND", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252027, + 48.821956 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8031", + "ref": "FR*SOD*S*SIGE*80*3*_*_", + "name": "SIGEIF - 44 RUE CHAMPS CHARDON - ISSY-LES-MOULINEAUX", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.164531, + 48.77241 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7911", + "ref": "FR*SOD*S*SIGE*79*1*_*_", + "name": "SIGEIF - RUE IMPRIMEUR AU BLOC - JOUY-EN-JOSAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.164531, + 48.77241 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7912", + "ref": "FR*SOD*S*SIGE*79*1*_*_", + "name": "SIGEIF - RUE IMPRIMEUR AU BLOC - JOUY-EN-JOSAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.175402, + 48.762795 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7811", + "ref": "FR*SOD*S*SIGE*78*1*_*_", + "name": "SIGEIF - RUE ST ROCH - JOUY-EN-JOSAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.275604, + 48.823132 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7421", + "ref": "FR*SOD*S*SIGE*74*2*_*_", + "name": "SIGEIF - 22 AVENUE JEAN JAURES - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.167502, + 48.765481 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7712", + "ref": "FR*SOD*S*SIGE*77*1*_*_", + "name": "SIGEIF - PLACE DE LA MARNE - JOUY-EN-JOSAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.152863, + 48.768693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7611", + "ref": "FR*SOD*S*SIGE*76*1*_*_", + "name": "SIGEIF - RUE CHARLES DE GAULLE - JOUY-EN-JOSAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.152863, + 48.768693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7612", + "ref": "FR*SOD*S*SIGE*76*1*_*_", + "name": "SIGEIF - RUE CHARLES DE GAULLE - JOUY-EN-JOSAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.169532, + 48.76463 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7511", + "ref": "FR*SOD*S*SIGE*75*1*_*_", + "name": "SIGEIF - 17/19 AVENUE JEAN JAURES - JOUY-EN-JOSAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.169532, + 48.76463 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7512", + "ref": "FR*SOD*S*SIGE*75*1*_*_", + "name": "SIGEIF - 17/19 AVENUE JEAN JAURES - JOUY-EN-JOSAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.275604, + 48.823132 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7441", + "ref": "FR*SOD*S*SIGE*74*4*_*_", + "name": "SIGEIF - 22 AVENUE JEAN JAURES - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.175402, + 48.762795 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7812", + "ref": "FR*SOD*S*SIGE*78*1*_*_", + "name": "SIGEIF - RUE ST ROCH - JOUY-EN-JOSAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.275604, + 48.823132 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7461", + "ref": "FR*SOD*S*SIGE*74*6*_*_", + "name": "SIGEIF - 22 AVENUE JEAN JAURES - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.275604, + 48.823132 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7411", + "ref": "FR*SOD*S*SIGE*74*1*_*_", + "name": "SIGEIF - 22 AVENUE JEAN JAURES - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258038, + 48.819081 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7241", + "ref": "FR*SOD*S*SIGE*72*4*_*_", + "name": "SIGEIF - 66 BOULEVARD RODIN - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.254615, + 48.832364 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7141", + "ref": "FR*SOD*S*SIGE*71*4*_*_", + "name": "SIGEIF - 24 BOULEVARD DE LA REPUBLIQUE BOULOGNE-BILLANCOURT - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258038, + 48.819081 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7251", + "ref": "FR*SOD*S*SIGE*72*5*_*_", + "name": "SIGEIF - 66 BOULEVARD RODIN - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258038, + 48.819081 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7211", + "ref": "FR*SOD*S*SIGE*72*1*_*_", + "name": "SIGEIF - 66 BOULEVARD RODIN - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258038, + 48.819081 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7231", + "ref": "FR*SOD*S*SIGE*72*3*_*_", + "name": "SIGEIF - 66 BOULEVARD RODIN - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258038, + 48.819081 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7221", + "ref": "FR*SOD*S*SIGE*72*2*_*_", + "name": "SIGEIF - 66 BOULEVARD RODIN - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258038, + 48.819081 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7261", + "ref": "FR*SOD*S*SIGE*72*6*_*_", + "name": "SIGEIF - 66 BOULEVARD RODIN - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270023, + 48.817549 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7351", + "ref": "FR*SOD*S*SIGE*73*5*_*_", + "name": "SIGEIF - 166 PROMENADE DU VERGER - ISSY-LES-MOULINEAUX", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252027, + 48.821956 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8011", + "ref": "FR*SOD*S*SIGE*80*1*_*_", + "name": "SIGEIF - 44 RUE CHAMPS CHARDON - ISSY-LES-MOULINEAUX", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270023, + 48.817549 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7331", + "ref": "FR*SOD*S*SIGE*73*3*_*_", + "name": "SIGEIF - 166 PROMENADE DU VERGER - ISSY-LES-MOULINEAUX", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270023, + 48.817549 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7321", + "ref": "FR*SOD*S*SIGE*73*2*_*_", + "name": "SIGEIF - 166 PROMENADE DU VERGER - ISSY-LES-MOULINEAUX", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270023, + 48.817549 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7311", + "ref": "FR*SOD*S*SIGE*73*1*_*_", + "name": "SIGEIF - 166 PROMENADE DU VERGER - ISSY-LES-MOULINEAUX", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270023, + 48.817549 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7341", + "ref": "FR*SOD*S*SIGE*73*4*_*_", + "name": "SIGEIF - 166 PROMENADE DU VERGER - ISSY-LES-MOULINEAUX", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.275604, + 48.823132 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7451", + "ref": "FR*SOD*S*SIGE*74*5*_*_", + "name": "SIGEIF - 22 AVENUE JEAN JAURES - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.275604, + 48.823132 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7431", + "ref": "FR*SOD*S*SIGE*74*3*_*_", + "name": "SIGEIF - 22 AVENUE JEAN JAURES - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252027, + 48.821956 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8021", + "ref": "FR*SOD*S*SIGE*80*2*_*_", + "name": "SIGEIF - 44 RUE CHAMPS CHARDON - ISSY-LES-MOULINEAUX", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277644, + 48.819004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8111", + "ref": "FR*SOD*S*SIGE*81*1*_*_", + "name": "SIGEIF - 88 AVENUE DU GENERAL DE GAULLE - ISSY-LES-MOULINEAUX", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252027, + 48.821956 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8041", + "ref": "FR*SOD*S*SIGE*80*4*_*_", + "name": "SIGEIF - 44 RUE CHAMPS CHARDON - ISSY-LES-MOULINEAUX", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.209352, + 49.11376 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE42011", + "ref": "FR*SOD*S*SIGE*420*1*_*_", + "name": "SIGEIF - 7 PLACE GEORGES CLEMENCEAU PARKING DEVANT LE BUREAU DE POSTE - PARMAIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.254615, + 48.832364 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7131", + "ref": "FR*SOD*S*SIGE*71*3*_*_", + "name": "SIGEIF - 24 BOULEVARD DE LA REPUBLIQUE BOULOGNE-BILLANCOURT - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.217951, + 49.121776 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE42911", + "ref": "FR*SOD*S*SIGE*429*1*_*_", + "name": "SIGEIF - AVENUE DU CHEMIN VERT - ZONE PORTUAIRE PARKING DU PORT DE PLAISANCE - LISLE-ADAM", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.217951, + 49.121776 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE42912", + "ref": "FR*SOD*S*SIGE*429*1*_*_", + "name": "SIGEIF - AVENUE DU CHEMIN VERT - ZONE PORTUAIRE PARKING DU PORT DE PLAISANCE - LISLE-ADAM", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.179013, + 48.909418 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE42711", + "ref": "FR*SOD*S*SIGE*427*1*_*_", + "name": "SIGEIF - 49 BOULEVARD CARNOT - CARRIERES-SUR-SEINE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.179013, + 48.909418 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE42712", + "ref": "FR*SOD*S*SIGE*427*1*_*_", + "name": "SIGEIF - 49 BOULEVARD CARNOT - CARRIERES-SUR-SEINE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.179001, + 49.069632 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE42612", + "ref": "FR*SOD*S*SIGE*426*1*_*_", + "name": "SIGEIF - 5 AVENUE MARCEL PERRIN - PARKING DERRIERE - LA MAIRIE-MERY-SUR-OISE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.179001, + 49.069632 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE42611", + "ref": "FR*SOD*S*SIGE*426*1*_*_", + "name": "SIGEIF - 5 AVENUE MARCEL PERRIN - PARKING DERRIERE - LA MAIRIE-MERY-SUR-OISE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.207922, + 49.078548 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE42512", + "ref": "FR*SOD*S*SIGE*425*1*_*_", + "name": "SIGEIF - 3 RUE DE L’EGLISE – PARKING DE LA PLACE JENTEL - MERIEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.207922, + 49.078548 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE42511", + "ref": "FR*SOD*S*SIGE*425*1*_*_", + "name": "SIGEIF - 3 RUE DE L’EGLISE – PARKING DE LA PLACE JENTEL - MERIEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252206, + 49.054005 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE42411", + "ref": "FR*SOD*S*SIGE*424*1*_*_", + "name": "SIGEIF - 3 RUE DE LA CROIX FRILEUSE - PLACE DE LA POMPE - BETHEMONT-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252206, + 49.054005 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE42412", + "ref": "FR*SOD*S*SIGE*424*1*_*_", + "name": "SIGEIF - 3 RUE DE LA CROIX FRILEUSE - PLACE DE LA POMPE - BETHEMONT-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284516, + 49.115166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE42112", + "ref": "FR*SOD*S*SIGE*421*1*_*_", + "name": "SIGEIF - 9 RUE DE LA REPUBLIQUE - PRESLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284516, + 49.115166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE42111", + "ref": "FR*SOD*S*SIGE*421*1*_*_", + "name": "SIGEIF - 9 RUE DE LA REPUBLIQUE - PRESLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.209352, + 49.11376 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE42012", + "ref": "FR*SOD*S*SIGE*420*1*_*_", + "name": "SIGEIF - 7 PLACE GEORGES CLEMENCEAU PARKING DEVANT LE BUREAU DE POSTE - PARMAIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277644, + 48.819004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8141", + "ref": "FR*SOD*S*SIGE*81*4*_*_", + "name": "SIGEIF - 88 AVENUE DU GENERAL DE GAULLE - ISSY-LES-MOULINEAUX", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.502954, + 49.059232 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE41911", + "ref": "FR*SOD*S*SIGE*419*1*_*_", + "name": "SIGEIF - 2 AVENUE DE GRAFENBERG - PLACE JEAN MOULIN - PUISEUX-EN-FRANCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.502954, + 49.059232 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE41912", + "ref": "FR*SOD*S*SIGE*419*1*_*_", + "name": "SIGEIF - 2 AVENUE DE GRAFENBERG - PLACE JEAN MOULIN - PUISEUX-EN-FRANCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306583, + 48.972892 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8421", + "ref": "FR*SOD*S*SIGE*84*2*_*_", + "name": "SIGEIF - 19 RUE DE LARRIVEE - ENGHIEN-LES-BAINS", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306583, + 48.972892 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8461", + "ref": "FR*SOD*S*SIGE*84*6*_*_", + "name": "SIGEIF - 19 RUE DE LARRIVEE - ENGHIEN-LES-BAINS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306583, + 48.972892 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8451", + "ref": "FR*SOD*S*SIGE*84*5*_*_", + "name": "SIGEIF - 19 RUE DE LARRIVEE - ENGHIEN-LES-BAINS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.152096, + 48.837186 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8321", + "ref": "FR*SOD*S*SIGE*83*2*_*_", + "name": "SIGEIF - 2 PLACE CHARLES DE GAULLE - VAUCRESSON", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.152096, + 48.837186 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8341", + "ref": "FR*SOD*S*SIGE*83*4*_*_", + "name": "SIGEIF - 2 PLACE CHARLES DE GAULLE - VAUCRESSON", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.152096, + 48.837186 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8351", + "ref": "FR*SOD*S*SIGE*83*5*_*_", + "name": "SIGEIF - 2 PLACE CHARLES DE GAULLE - VAUCRESSON", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.152096, + 48.837186 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8311", + "ref": "FR*SOD*S*SIGE*83*1*_*_", + "name": "SIGEIF - 2 PLACE CHARLES DE GAULLE - VAUCRESSON", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.152096, + 48.837186 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8331", + "ref": "FR*SOD*S*SIGE*83*3*_*_", + "name": "SIGEIF - 2 PLACE CHARLES DE GAULLE - VAUCRESSON", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277644, + 48.819004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8121", + "ref": "FR*SOD*S*SIGE*81*2*_*_", + "name": "SIGEIF - 88 AVENUE DU GENERAL DE GAULLE - ISSY-LES-MOULINEAUX", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277644, + 48.819004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8151", + "ref": "FR*SOD*S*SIGE*81*5*_*_", + "name": "SIGEIF - 88 AVENUE DU GENERAL DE GAULLE - ISSY-LES-MOULINEAUX", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277644, + 48.819004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8131", + "ref": "FR*SOD*S*SIGE*81*3*_*_", + "name": "SIGEIF - 88 AVENUE DU GENERAL DE GAULLE - ISSY-LES-MOULINEAUX", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.254615, + 48.832364 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7111", + "ref": "FR*SOD*S*SIGE*71*1*_*_", + "name": "SIGEIF - 24 BOULEVARD DE LA REPUBLIQUE BOULOGNE-BILLANCOURT - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252363, + 48.83684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6411", + "ref": "FR*SOD*S*SIGE*64*1*_*_", + "name": "SIGEIF - 2 RUE HENRI MARTIN - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.254615, + 48.832364 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7161", + "ref": "FR*SOD*S*SIGE*71*6*_*_", + "name": "SIGEIF - 24 BOULEVARD DE LA REPUBLIQUE BOULOGNE-BILLANCOURT - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.227086, + 48.787468 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3151", + "ref": "FR*SOD*S*SIGE*31*5*_*_", + "name": "SIGEIF - 19 AVENUE GENERAL DE GAULLE - MEUDON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.165078, + 48.818204 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3341", + "ref": "FR*SOD*S*SIGE*33*4*_*_", + "name": "SIGEIF - 217 RUE DE VERSAILLES - VILLE-DAVRAY", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.165078, + 48.818204 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3311", + "ref": "FR*SOD*S*SIGE*33*1*_*_", + "name": "SIGEIF - 217 RUE DE VERSAILLES - VILLE-DAVRAY", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213824, + 48.814263 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3211", + "ref": "FR*SOD*S*SIGE*32*1*_*_", + "name": "SIGEIF - RUE WOLFENBUTTEL SEVRES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213824, + 48.814263 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3231", + "ref": "FR*SOD*S*SIGE*32*3*_*_", + "name": "SIGEIF - RUE WOLFENBUTTEL SEVRES", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213824, + 48.814263 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3251", + "ref": "FR*SOD*S*SIGE*32*5*_*_", + "name": "SIGEIF - RUE WOLFENBUTTEL SEVRES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213824, + 48.814263 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3241", + "ref": "FR*SOD*S*SIGE*32*4*_*_", + "name": "SIGEIF - RUE WOLFENBUTTEL SEVRES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213824, + 48.814263 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3221", + "ref": "FR*SOD*S*SIGE*32*2*_*_", + "name": "SIGEIF - RUE WOLFENBUTTEL SEVRES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213824, + 48.814263 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3261", + "ref": "FR*SOD*S*SIGE*32*6*_*_", + "name": "SIGEIF - RUE WOLFENBUTTEL SEVRES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.227086, + 48.787468 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3161", + "ref": "FR*SOD*S*SIGE*31*6*_*_", + "name": "SIGEIF - 19 AVENUE GENERAL DE GAULLE - MEUDON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.227086, + 48.787468 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3121", + "ref": "FR*SOD*S*SIGE*31*2*_*_", + "name": "SIGEIF - 19 AVENUE GENERAL DE GAULLE - MEUDON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.227086, + 48.787468 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3141", + "ref": "FR*SOD*S*SIGE*31*4*_*_", + "name": "SIGEIF - 19 AVENUE GENERAL DE GAULLE - MEUDON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.254615, + 48.832364 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7121", + "ref": "FR*SOD*S*SIGE*71*2*_*_", + "name": "SIGEIF - 24 BOULEVARD DE LA REPUBLIQUE BOULOGNE-BILLANCOURT - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.227086, + 48.787468 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3111", + "ref": "FR*SOD*S*SIGE*31*1*_*_", + "name": "SIGEIF - 19 AVENUE GENERAL DE GAULLE - MEUDON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.227086, + 48.787468 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3131", + "ref": "FR*SOD*S*SIGE*31*3*_*_", + "name": "SIGEIF - 19 AVENUE GENERAL DE GAULLE - MEUDON", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.234801, + 48.807732 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3061", + "ref": "FR*SOD*S*SIGE*30*6*_*_", + "name": "SIGEIF - PARKING TERRE NEUVE MEUDON - MEUDON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.234801, + 48.807732 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3041", + "ref": "FR*SOD*S*SIGE*30*4*_*_", + "name": "SIGEIF - PARKING TERRE NEUVE MEUDON - MEUDON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.234801, + 48.807732 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3051", + "ref": "FR*SOD*S*SIGE*30*5*_*_", + "name": "SIGEIF - PARKING TERRE NEUVE MEUDON - MEUDON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.234801, + 48.807732 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3011", + "ref": "FR*SOD*S*SIGE*30*1*_*_", + "name": "SIGEIF - PARKING TERRE NEUVE MEUDON - MEUDON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.234801, + 48.807732 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3031", + "ref": "FR*SOD*S*SIGE*30*3*_*_", + "name": "SIGEIF - PARKING TERRE NEUVE MEUDON - MEUDON", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.234801, + 48.807732 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3021", + "ref": "FR*SOD*S*SIGE*30*2*_*_", + "name": "SIGEIF - PARKING TERRE NEUVE MEUDON - MEUDON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237844, + 48.812485 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2941", + "ref": "FR*SOD*S*SIGE*29*4*_*_", + "name": "SIGEIF - 2 RUE DE PONCEAU - MEUDON", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237844, + 48.812485 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2931", + "ref": "FR*SOD*S*SIGE*29*3*_*_", + "name": "SIGEIF - 2 RUE DE PONCEAU - MEUDON", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.165078, + 48.818204 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3331", + "ref": "FR*SOD*S*SIGE*33*3*_*_", + "name": "SIGEIF - 217 RUE DE VERSAILLES - VILLE-DAVRAY", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.165078, + 48.818204 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3321", + "ref": "FR*SOD*S*SIGE*33*2*_*_", + "name": "SIGEIF - 217 RUE DE VERSAILLES - VILLE-DAVRAY", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.165078, + 48.818204 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3351", + "ref": "FR*SOD*S*SIGE*33*5*_*_", + "name": "SIGEIF - 217 RUE DE VERSAILLES - VILLE-DAVRAY", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284725, + 48.799158 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3531", + "ref": "FR*SOD*S*SIGE*35*3*_*_", + "name": "SIGEIF - 12 AVENUE DE LA DIVISION LECLERC - CHATILLON", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.289905, + 48.804568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3841", + "ref": "FR*SOD*S*SIGE*38*4*_*_", + "name": "SIGEIF - 21 AVENUE DE PARIS - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.289905, + 48.804568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3861", + "ref": "FR*SOD*S*SIGE*38*6*_*_", + "name": "SIGEIF - 21 AVENUE DE PARIS - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.289905, + 48.804568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3851", + "ref": "FR*SOD*S*SIGE*38*5*_*_", + "name": "SIGEIF - 21 AVENUE DE PARIS - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.289905, + 48.804568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3811", + "ref": "FR*SOD*S*SIGE*38*1*_*_", + "name": "SIGEIF - 21 AVENUE DE PARIS - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282812, + 48.809693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3711", + "ref": "FR*SOD*S*SIGE*37*1*_*_", + "name": "SIGEIF - 97 BOULEVARD DE VANVES - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282812, + 48.809693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3761", + "ref": "FR*SOD*S*SIGE*37*6*_*_", + "name": "SIGEIF - 97 BOULEVARD DE VANVES - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282812, + 48.809693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3751", + "ref": "FR*SOD*S*SIGE*37*5*_*_", + "name": "SIGEIF - 97 BOULEVARD DE VANVES - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282812, + 48.809693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3741", + "ref": "FR*SOD*S*SIGE*37*4*_*_", + "name": "SIGEIF - 97 BOULEVARD DE VANVES - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282812, + 48.809693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3731", + "ref": "FR*SOD*S*SIGE*37*3*_*_", + "name": "SIGEIF - 97 BOULEVARD DE VANVES - CHATILLON", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282812, + 48.809693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3721", + "ref": "FR*SOD*S*SIGE*37*2*_*_", + "name": "SIGEIF - 97 BOULEVARD DE VANVES - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282806, + 48.809681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3641", + "ref": "FR*SOD*S*SIGE*36*4*_*_", + "name": "SIGEIF - 76 AVENUE DE VERDUN - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282806, + 48.809681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3611", + "ref": "FR*SOD*S*SIGE*36*1*_*_", + "name": "SIGEIF - 76 AVENUE DE VERDUN - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282806, + 48.809681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3651", + "ref": "FR*SOD*S*SIGE*36*5*_*_", + "name": "SIGEIF - 76 AVENUE DE VERDUN - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282806, + 48.809681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3621", + "ref": "FR*SOD*S*SIGE*36*2*_*_", + "name": "SIGEIF - 76 AVENUE DE VERDUN - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282806, + 48.809681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3661", + "ref": "FR*SOD*S*SIGE*36*6*_*_", + "name": "SIGEIF - 76 AVENUE DE VERDUN - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282806, + 48.809681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3631", + "ref": "FR*SOD*S*SIGE*36*3*_*_", + "name": "SIGEIF - 76 AVENUE DE VERDUN - CHATILLON", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284725, + 48.799158 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3561", + "ref": "FR*SOD*S*SIGE*35*6*_*_", + "name": "SIGEIF - 12 AVENUE DE LA DIVISION LECLERC - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284725, + 48.799158 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3541", + "ref": "FR*SOD*S*SIGE*35*4*_*_", + "name": "SIGEIF - 12 AVENUE DE LA DIVISION LECLERC - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284725, + 48.799158 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3511", + "ref": "FR*SOD*S*SIGE*35*1*_*_", + "name": "SIGEIF - 12 AVENUE DE LA DIVISION LECLERC - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284725, + 48.799158 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3551", + "ref": "FR*SOD*S*SIGE*35*5*_*_", + "name": "SIGEIF - 12 AVENUE DE LA DIVISION LECLERC - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284725, + 48.799158 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3521", + "ref": "FR*SOD*S*SIGE*35*2*_*_", + "name": "SIGEIF - 12 AVENUE DE LA DIVISION LECLERC - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237844, + 48.812485 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2921", + "ref": "FR*SOD*S*SIGE*29*2*_*_", + "name": "SIGEIF - 2 RUE DE PONCEAU - MEUDON", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237844, + 48.812485 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2911", + "ref": "FR*SOD*S*SIGE*29*1*_*_", + "name": "SIGEIF - 2 RUE DE PONCEAU - MEUDON", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.17596, + 48.90592 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2712", + "ref": "FR*SOD*S*SIGE*27*1*_*_", + "name": "SIGEIF - RUE VICTOR HUGO - CARRIERES-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.178067, + 48.830567 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE1312", + "ref": "FR*SOD*S*SIGE*13*1*_*_", + "name": "SIGEIF - PLACE DE LA MAIRIE - MARNES-LA-COQUETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.276657, + 48.827045 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE1212", + "ref": "FR*SOD*S*SIGE*12*1*_*_", + "name": "SIGEIF - 7 RUE VAUDETARD - ISSY-LES-MOULINEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264953, + 48.82991 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE1112", + "ref": "FR*SOD*S*SIGE*11*1*_*_", + "name": "SIGEIF - 31 RUE CAMILLE DESMOULINS - ISSY-LES-MOULINEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264953, + 48.82991 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE1111", + "ref": "FR*SOD*S*SIGE*11*1*_*_", + "name": "SIGEIF - 31 RUE CAMILLE DESMOULINS - ISSY-LES-MOULINEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.188014, + 48.805695 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE1011", + "ref": "FR*SOD*S*SIGE*10*1*_*_", + "name": "SIGEIF - 28 RUE ANATOLE FRANCE - CHAVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.188014, + 48.805695 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE1012", + "ref": "FR*SOD*S*SIGE*10*1*_*_", + "name": "SIGEIF - 28 RUE ANATOLE FRANCE - CHAVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.192191, + 48.813019 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE911", + "ref": "FR*SOD*S*SIGE*9*1*_*_", + "name": "SIGEIF - 705 AVENUE ROGER SALENGRO - CHAVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.192191, + 48.813019 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE912", + "ref": "FR*SOD*S*SIGE*9*1*_*_", + "name": "SIGEIF - 705 AVENUE ROGER SALENGRO - CHAVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240082, + 48.839897 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE812", + "ref": "FR*SOD*S*SIGE*8*1*_*_", + "name": "SIGEIF - 61 BOULEVARD JEAN JAURES - BOULOGNE-BILLANCOURT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240082, + 48.839897 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE811", + "ref": "FR*SOD*S*SIGE*8*1*_*_", + "name": "SIGEIF - 61 BOULEVARD JEAN JAURES - BOULOGNE-BILLANCOURT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239694, + 48.836639 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE712", + "ref": "FR*SOD*S*SIGE*7*1*_*_", + "name": "SIGEIF - 114 RUE GALLIENI - BOULOGNE-BILLANCOURT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239694, + 48.836639 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE711", + "ref": "FR*SOD*S*SIGE*7*1*_*_", + "name": "SIGEIF - 114 RUE GALLIENI - BOULOGNE-BILLANCOURT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212253, + 48.859722 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE611", + "ref": "FR*SOD*S*SIGE*6*1*_*_", + "name": "SIGEIF - ALLEE DES GYMNASES - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212253, + 48.859722 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE612", + "ref": "FR*SOD*S*SIGE*6*1*_*_", + "name": "SIGEIF - ALLEE DES GYMNASES - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.207385, + 48.843157 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE511", + "ref": "FR*SOD*S*SIGE*5*1*_*_", + "name": "SIGEIF - 8 BOULEVARD DE LA REPUBLIQUE - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.207385, + 48.843157 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE512", + "ref": "FR*SOD*S*SIGE*5*1*_*_", + "name": "SIGEIF - 8 BOULEVARD DE LA REPUBLIQUE - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.215528, + 48.855042 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE412", + "ref": "FR*SOD*S*SIGE*4*1*_*_", + "name": "SIGEIF - 8 RUE DU MONT-VALERIEN - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.215528, + 48.855042 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE411", + "ref": "FR*SOD*S*SIGE*4*1*_*_", + "name": "SIGEIF - 8 RUE DU MONT-VALERIEN - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.207391, + 48.847778 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE311", + "ref": "FR*SOD*S*SIGE*3*1*_*_", + "name": "SIGEIF - 52 AVENUE DU MARECHAL FOCH - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.207391, + 48.847778 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE312", + "ref": "FR*SOD*S*SIGE*3*1*_*_", + "name": "SIGEIF - 52 AVENUE DU MARECHAL FOCH - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.210997, + 48.857063 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE212", + "ref": "FR*SOD*S*SIGE*2*1*_*_", + "name": "SIGEIF - 199 BOULEVARD DE LA REPUBLIQUE - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.210997, + 48.857063 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE211", + "ref": "FR*SOD*S*SIGE*2*1*_*_", + "name": "SIGEIF - 199 BOULEVARD DE LA REPUBLIQUE - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.276657, + 48.827045 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE1211", + "ref": "FR*SOD*S*SIGE*12*1*_*_", + "name": "SIGEIF - 7 RUE VAUDETARD - ISSY-LES-MOULINEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.178067, + 48.830567 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE1311", + "ref": "FR*SOD*S*SIGE*13*1*_*_", + "name": "SIGEIF - PLACE DE LA MAIRIE - MARNES-LA-COQUETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.17596, + 48.90592 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2711", + "ref": "FR*SOD*S*SIGE*27*1*_*_", + "name": "SIGEIF - RUE VICTOR HUGO - CARRIERES-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.227161, + 48.821484 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE1511", + "ref": "FR*SOD*S*SIGE*15*1*_*_", + "name": "SIGEIF - 12 RUE MARCEL ALLEGOT - MEUDON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.189425, + 48.82634 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2612", + "ref": "FR*SOD*S*SIGE*26*1*_*_", + "name": "SIGEIF - PLACE CHARLES DE GAULLE - VILLE-DAVRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.189425, + 48.82634 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2611", + "ref": "FR*SOD*S*SIGE*26*1*_*_", + "name": "SIGEIF - PLACE CHARLES DE GAULLE - VILLE-DAVRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35707, + 48.81287 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2512", + "ref": "FR*SOD*S*SIGE*25*1*_*_", + "name": "SIGEIF - 12 AVENUE DU DOCTEUR ANTOINE LACROIX - LE KREMLIN-BICETRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35707, + 48.81287 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2511", + "ref": "FR*SOD*S*SIGE*25*1*_*_", + "name": "SIGEIF - 12 AVENUE DU DOCTEUR ANTOINE LACROIX - LE KREMLIN-BICETRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05212, + 48.80807 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2412", + "ref": "FR*SOD*S*SIGE*24*1*_*_", + "name": "SIGEIF - 1 PLACE OLIVIER MESSIAEN - FONTENAY-LE-FLEURY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05212, + 48.80807 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2411", + "ref": "FR*SOD*S*SIGE*24*1*_*_", + "name": "SIGEIF - 1 PLACE OLIVIER MESSIAEN - FONTENAY-LE-FLEURY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.177236, + 48.912132 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2312", + "ref": "FR*SOD*S*SIGE*23*1*_*_", + "name": "SIGEIF - AVENUE DU MARECHAL JUIN - CARRIERES-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.177236, + 48.912132 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2311", + "ref": "FR*SOD*S*SIGE*23*1*_*_", + "name": "SIGEIF - AVENUE DU MARECHAL JUIN - CARRIERES-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.17895, + 48.90953 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2211", + "ref": "FR*SOD*S*SIGE*22*1*_*_", + "name": "SIGEIF - BOULEVARD CARNOT PARKING - CARRIERES-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.17895, + 48.90953 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2212", + "ref": "FR*SOD*S*SIGE*22*1*_*_", + "name": "SIGEIF - BOULEVARD CARNOT PARKING - CARRIERES-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.131865, + 48.84512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2111", + "ref": "FR*SOD*S*SIGE*21*1*_*_", + "name": "SIGEIF - AVENUE DES ETANGS - LA CELLE-SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.131865, + 48.84512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2112", + "ref": "FR*SOD*S*SIGE*21*1*_*_", + "name": "SIGEIF - AVENUE DES ETANGS - LA CELLE-SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.15031, + 48.848957 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2011", + "ref": "FR*SOD*S*SIGE*20*1*_*_", + "name": "SIGEIF - PLACE DU DOCTEUR BERTHET - LA CELLE-SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.15031, + 48.848957 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE2012", + "ref": "FR*SOD*S*SIGE*20*1*_*_", + "name": "SIGEIF - PLACE DU DOCTEUR BERTHET - LA CELLE-SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.290181, + 48.82598 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE1911", + "ref": "FR*SOD*S*SIGE*19*1*_*_", + "name": "SIGEIF - 101 RUE JEAN JAURES - VANVES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.290181, + 48.82598 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE1912", + "ref": "FR*SOD*S*SIGE*19*1*_*_", + "name": "SIGEIF - 101 RUE JEAN JAURES - VANVES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212834, + 48.824499 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE1711", + "ref": "FR*SOD*S*SIGE*17*1*_*_", + "name": "SIGEIF - 53 GRANDE RUE - SEVRES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212834, + 48.824499 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE1712", + "ref": "FR*SOD*S*SIGE*17*1*_*_", + "name": "SIGEIF - 53 GRANDE RUE - SEVRES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20638, + 48.822094 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE1612", + "ref": "FR*SOD*S*SIGE*16*1*_*_", + "name": "SIGEIF - 123 GRANDE RUE - SEVRES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20638, + 48.822094 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE1611", + "ref": "FR*SOD*S*SIGE*16*1*_*_", + "name": "SIGEIF - 123 GRANDE RUE - SEVRES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.227161, + 48.821484 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE1512", + "ref": "FR*SOD*S*SIGE*15*1*_*_", + "name": "SIGEIF - 12 RUE MARCEL ALLEGOT - MEUDON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.289905, + 48.804568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3821", + "ref": "FR*SOD*S*SIGE*38*2*_*_", + "name": "SIGEIF - 21 AVENUE DE PARIS - CHATILLON", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.289905, + 48.804568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3831", + "ref": "FR*SOD*S*SIGE*38*3*_*_", + "name": "SIGEIF - 21 AVENUE DE PARIS - CHATILLON", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301669, + 48.966448 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3931", + "ref": "FR*SOD*S*SIGE*39*3*_*_", + "name": "SIGEIF - 2 RUE DE LA COUSSAYE - ENGHIEN-LES-BAINS", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229152, + 48.840172 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6511", + "ref": "FR*SOD*S*SIGE*65*1*_*_", + "name": "SIGEIF - 121 AVENUE ANDRE MORIZET - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252363, + 48.83684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6421", + "ref": "FR*SOD*S*SIGE*64*2*_*_", + "name": "SIGEIF - 2 RUE HENRI MARTIN - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4336, + 48.80911 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE41511", + "ref": "FR*SOD*S*SIGE*415*1*_*_", + "name": "SIGEIF - 22 AVENUE DU GENERAL LECLERC - MAISONS-ALFORT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252363, + 48.83684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6431", + "ref": "FR*SOD*S*SIGE*64*3*_*_", + "name": "SIGEIF - 2 RUE HENRI MARTIN - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252363, + 48.83684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6451", + "ref": "FR*SOD*S*SIGE*64*5*_*_", + "name": "SIGEIF - 2 RUE HENRI MARTIN - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252363, + 48.83684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6461", + "ref": "FR*SOD*S*SIGE*64*6*_*_", + "name": "SIGEIF - 2 RUE HENRI MARTIN - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252363, + 48.83684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6441", + "ref": "FR*SOD*S*SIGE*64*4*_*_", + "name": "SIGEIF - 2 RUE HENRI MARTIN - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240936, + 48.826296 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6351", + "ref": "FR*SOD*S*SIGE*63*5*_*_", + "name": "SIGEIF - 30 RUE MARCEL BONTEMPS - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240936, + 48.826296 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6331", + "ref": "FR*SOD*S*SIGE*63*3*_*_", + "name": "SIGEIF - 30 RUE MARCEL BONTEMPS - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240936, + 48.826296 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6311", + "ref": "FR*SOD*S*SIGE*63*1*_*_", + "name": "SIGEIF - 30 RUE MARCEL BONTEMPS - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240936, + 48.826296 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6341", + "ref": "FR*SOD*S*SIGE*63*4*_*_", + "name": "SIGEIF - 30 RUE MARCEL BONTEMPS - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240936, + 48.826296 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6321", + "ref": "FR*SOD*S*SIGE*63*2*_*_", + "name": "SIGEIF - 30 RUE MARCEL BONTEMPS - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240936, + 48.826296 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6361", + "ref": "FR*SOD*S*SIGE*63*6*_*_", + "name": "SIGEIF - 30 RUE MARCEL BONTEMPS - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240936, + 48.826296 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6351", + "ref": "FR*SOD*S*SIGE*67*4*_*_", + "name": "SIGEIF - 30 RUE MARCEL BONTEMPS - BOULOGNE-BILLANCOURT", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307657, + 49.06973 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6211", + "ref": "FR*SOD*S*SIGE*62*1*_*_", + "name": "SIGEIF - 3 RUE DES TILLEULS - MONTSOULT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307657, + 49.06973 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6212", + "ref": "FR*SOD*S*SIGE*62*1*_*_", + "name": "SIGEIF - 3 RUE DES TILLEULS - MONTSOULT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320821, + 49.067314 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6112", + "ref": "FR*SOD*S*SIGE*61*1*_*_", + "name": "SIGEIF - PARKING RELAIS FOURCADE - MONTSOULT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320821, + 49.067314 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6111", + "ref": "FR*SOD*S*SIGE*61*1*_*_", + "name": "SIGEIF - PARKING RELAIS FOURCADE - MONTSOULT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -205,6 +198595,958 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.427408, + 48.802789 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE5912", + "ref": "FR*SOD*S*SIGE*59*1*_*_", + "name": "SIGEIF - 12 RUE AUGUSTE SIMON - MAISONS-ALFORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.427408, + 48.802789 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE5911", + "ref": "FR*SOD*S*SIGE*59*1*_*_", + "name": "SIGEIF - 12 RUE AUGUSTE SIMON - MAISONS-ALFORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229152, + 48.840172 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6531", + "ref": "FR*SOD*S*SIGE*65*3*_*_", + "name": "SIGEIF - 121 AVENUE ANDRE MORIZET - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229152, + 48.840172 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6541", + "ref": "FR*SOD*S*SIGE*65*4*_*_", + "name": "SIGEIF - 121 AVENUE ANDRE MORIZET - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.234965, + 48.820297 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE5811", + "ref": "FR*SOD*S*SIGE*58*1*_*_", + "name": "SIGEIF - 10 RUE DE LA VERRERIE - MEUDON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229152, + 48.840172 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6551", + "ref": "FR*SOD*S*SIGE*65*5*_*_", + "name": "SIGEIF - 121 AVENUE ANDRE MORIZET - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.254615, + 48.832364 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7151", + "ref": "FR*SOD*S*SIGE*71*5*_*_", + "name": "SIGEIF - 24 BOULEVARD DE LA REPUBLIQUE BOULOGNE-BILLANCOURT - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.119152, + 48.887603 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7021", + "ref": "FR*SOD*S*SIGE*70*2*_*_", + "name": "SIGEIF - 1 CHEMIN DE RONDE - CROISSY-SUR-SEINE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.119152, + 48.887603 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE7022", + "ref": "FR*SOD*S*SIGE*70*2*_*_", + "name": "SIGEIF - 1 CHEMIN DE RONDE - CROISSY-SUR-SEINE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.140268, + 48.880798 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6912", + "ref": "FR*SOD*S*SIGE*69*1*_*_", + "name": "SIGEIF - 20 AVENUE DU GENERAL DE GAULLE - CROISSY-SUR-SEINE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.140268, + 48.880798 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6911", + "ref": "FR*SOD*S*SIGE*69*1*_*_", + "name": "SIGEIF - 20 AVENUE DU GENERAL DE GAULLE - CROISSY-SUR-SEINE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.143236, + 48.878289 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6812", + "ref": "FR*SOD*S*SIGE*68*1*_*_", + "name": "SIGEIF - 35 BOULEVARD FERDINAND HOSTACHY - CROISSY-SUR-SEINE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.143236, + 48.878289 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6811", + "ref": "FR*SOD*S*SIGE*68*1*_*_", + "name": "SIGEIF - 35 BOULEVARD FERDINAND HOSTACHY - CROISSY-SUR-SEINE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241986, + 48.828194 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6721", + "ref": "FR*SOD*S*SIGE*67*2*_*_", + "name": "SIGEIF - 40 RUE DE MEUDON - BOULOGNE-BILLANCOURT", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241986, + 48.828194 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6741", + "ref": "FR*SOD*S*SIGE*67*4*_*_", + "name": "SIGEIF - 40 RUE DE MEUDON - BOULOGNE-BILLANCOURT", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241986, + 48.828194 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6761", + "ref": "FR*SOD*S*SIGE*67*6*_*_", + "name": "SIGEIF - 40 RUE DE MEUDON - BOULOGNE-BILLANCOURT", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241986, + 48.828194 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6731", + "ref": "FR*SOD*S*SIGE*67*3*_*_", + "name": "SIGEIF - 40 RUE DE MEUDON - BOULOGNE-BILLANCOURT", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241986, + 48.828194 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6751", + "ref": "FR*SOD*S*SIGE*67*5*_*_", + "name": "SIGEIF - 40 RUE DE MEUDON - BOULOGNE-BILLANCOURT", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241986, + 48.828194 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6711", + "ref": "FR*SOD*S*SIGE*67*1*_*_", + "name": "SIGEIF - 40 RUE DE MEUDON - BOULOGNE-BILLANCOURT", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230145, + 48.831536 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6641", + "ref": "FR*SOD*S*SIGE*66*4*_*_", + "name": "SIGEIF - 80 RUE DE SEVRES - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230145, + 48.831536 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6661", + "ref": "FR*SOD*S*SIGE*66*6*_*_", + "name": "SIGEIF - 80 RUE DE SEVRES - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230145, + 48.831536 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6651", + "ref": "FR*SOD*S*SIGE*66*5*_*_", + "name": "SIGEIF - 80 RUE DE SEVRES - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230145, + 48.831536 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6621", + "ref": "FR*SOD*S*SIGE*66*2*_*_", + "name": "SIGEIF - 80 RUE DE SEVRES - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230145, + 48.831536 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6611", + "ref": "FR*SOD*S*SIGE*66*1*_*_", + "name": "SIGEIF - 80 RUE DE SEVRES - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230145, + 48.831536 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6631", + "ref": "FR*SOD*S*SIGE*66*3*_*_", + "name": "SIGEIF - 80 RUE DE SEVRES - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229152, + 48.840172 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6561", + "ref": "FR*SOD*S*SIGE*65*6*_*_", + "name": "SIGEIF - 121 AVENUE ANDRE MORIZET - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229152, + 48.840172 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE6521", + "ref": "FR*SOD*S*SIGE*65*2*_*_", + "name": "SIGEIF - 121 AVENUE ANDRE MORIZET - BOULOGNE-BILLANCOURT", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.234965, + 48.820297 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE5812", + "ref": "FR*SOD*S*SIGE*58*1*_*_", + "name": "SIGEIF - 10 RUE DE LA VERRERIE - MEUDON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -239,6 +199581,856 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301669, + 48.966448 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3911", + "ref": "FR*SOD*S*SIGE*39*1*_*_", + "name": "SIGEIF - 2 RUE DE LA COUSSAYE - ENGHIEN-LES-BAINS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264081, + 48.905256 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4341", + "ref": "FR*SOD*S*SIGE*43*4*_*_", + "name": "SIGEIF - 16 RUE RAOUL NORDLING - BOIS-COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264081, + 48.905256 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4361", + "ref": "FR*SOD*S*SIGE*43*6*_*_", + "name": "SIGEIF - 16 RUE RAOUL NORDLING - BOIS-COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264081, + 48.905256 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4321", + "ref": "FR*SOD*S*SIGE*43*2*_*_", + "name": "SIGEIF - 16 RUE RAOUL NORDLING - BOIS-COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264081, + 48.905256 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4331", + "ref": "FR*SOD*S*SIGE*43*3*_*_", + "name": "SIGEIF - 16 RUE RAOUL NORDLING - BOIS-COLOMBES", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269387, + 48.915407 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4221", + "ref": "FR*SOD*S*SIGE*42*2*_*_", + "name": "SIGEIF - 45 RUE DU GENERAL LECLERC - BOIS-COLOMBES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269387, + 48.915407 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4211", + "ref": "FR*SOD*S*SIGE*42*1*_*_", + "name": "SIGEIF - 45 RUE DU GENERAL LECLERC - BOIS-COLOMBES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269387, + 48.915407 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4251", + "ref": "FR*SOD*S*SIGE*42*5*_*_", + "name": "SIGEIF - 45 RUE DU GENERAL LECLERC - BOIS-COLOMBES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269387, + 48.915407 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4241", + "ref": "FR*SOD*S*SIGE*42*4*_*_", + "name": "SIGEIF - 45 RUE DU GENERAL LECLERC - BOIS-COLOMBES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269387, + 48.915407 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4231", + "ref": "FR*SOD*S*SIGE*42*3*_*_", + "name": "SIGEIF - 45 RUE DU GENERAL LECLERC - BOIS-COLOMBES", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284057, + 48.822254 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4151", + "ref": "FR*SOD*S*SIGE*41*5*_*_", + "name": "SIGEIF - RUE PRUVOT - VANVES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284057, + 48.822254 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4121", + "ref": "FR*SOD*S*SIGE*41*2*_*_", + "name": "SIGEIF - RUE PRUVOT - VANVES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284057, + 48.822254 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4141", + "ref": "FR*SOD*S*SIGE*41*4*_*_", + "name": "SIGEIF - RUE PRUVOT - VANVES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284057, + 48.822254 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4131", + "ref": "FR*SOD*S*SIGE*41*3*_*_", + "name": "SIGEIF - RUE PRUVOT - VANVES", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284057, + 48.822254 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4111", + "ref": "FR*SOD*S*SIGE*41*1*_*_", + "name": "SIGEIF - RUE PRUVOT - VANVES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.280009, + 48.816557 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4021", + "ref": "FR*SOD*S*SIGE*40*2*_*_", + "name": "SIGEIF - 14 RUE LARMEROUX - VANVES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.280009, + 48.816557 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4031", + "ref": "FR*SOD*S*SIGE*40*3*_*_", + "name": "SIGEIF - 14 RUE LARMEROUX - VANVES", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.280009, + 48.816557 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4011", + "ref": "FR*SOD*S*SIGE*40*1*_*_", + "name": "SIGEIF - 14 RUE LARMEROUX - VANVES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.280009, + 48.816557 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4051", + "ref": "FR*SOD*S*SIGE*40*5*_*_", + "name": "SIGEIF - 14 RUE LARMEROUX - VANVES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301669, + 48.966448 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3951", + "ref": "FR*SOD*S*SIGE*39*5*_*_", + "name": "SIGEIF - 2 RUE DE LA COUSSAYE - ENGHIEN-LES-BAINS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301669, + 48.966448 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3941", + "ref": "FR*SOD*S*SIGE*39*4*_*_", + "name": "SIGEIF - 2 RUE DE LA COUSSAYE - ENGHIEN-LES-BAINS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301669, + 48.966448 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3961", + "ref": "FR*SOD*S*SIGE*39*6*_*_", + "name": "SIGEIF - 2 RUE DE LA COUSSAYE - ENGHIEN-LES-BAINS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301669, + 48.966448 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE3921", + "ref": "FR*SOD*S*SIGE*39*2*_*_", + "name": "SIGEIF - 2 RUE DE LA COUSSAYE - ENGHIEN-LES-BAINS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264081, + 48.905256 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4351", + "ref": "FR*SOD*S*SIGE*43*5*_*_", + "name": "SIGEIF - 16 RUE RAOUL NORDLING - BOIS-COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264081, + 48.905256 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4311", + "ref": "FR*SOD*S*SIGE*43*1*_*_", + "name": "SIGEIF - 16 RUE RAOUL NORDLING - BOIS-COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -273,6 +200465,40 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270931, + 48.921611 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4441", + "ref": "FR*SOD*S*SIGE*44*4*_*_", + "name": "SIGEIF - PLACE JEAN MERMOZ - BOIS-COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -341,6 +200567,856 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288422, + 48.821077 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE5211", + "ref": "FR*SOD*S*SIGE*52*1*_*_", + "name": "SIGEIF - 34 RUE ANTOINE FRATACCI - VANVES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288422, + 48.821077 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE5212", + "ref": "FR*SOD*S*SIGE*52*1*_*_", + "name": "SIGEIF - 34 RUE ANTOINE FRATACCI - VANVES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.308342, + 48.974918 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE5111", + "ref": "FR*SOD*S*SIGE*51*1*_*_", + "name": "SIGEIF - 147 AVENUE DE LA DIVISION LECLERC - ENGHIEN-LES-BAINS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.308342, + 48.974918 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE5112", + "ref": "FR*SOD*S*SIGE*51*1*_*_", + "name": "SIGEIF - 147 AVENUE DE LA DIVISION LECLERC - ENGHIEN-LES-BAINS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.222437, + 48.826646 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4912", + "ref": "FR*SOD*S*SIGE*49*1*_*_", + "name": "SIGEIF - 2 AVENUE DE LA CRISTALLERIE - SEVRES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.222437, + 48.826646 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4911", + "ref": "FR*SOD*S*SIGE*49*1*_*_", + "name": "SIGEIF - 2 AVENUE DE LA CRISTALLERIE - SEVRES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237767, + 48.850211 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4812", + "ref": "FR*SOD*S*SIGE*48*1*_*_", + "name": "SIGEIF - 15 AVENUE CHARLES DE GAULLE - BOULOGNE-BILLANCOURT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237767, + 48.850211 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4811", + "ref": "FR*SOD*S*SIGE*48*1*_*_", + "name": "SIGEIF - 15 AVENUE CHARLES DE GAULLE - BOULOGNE-BILLANCOURT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.177418, + 48.798292 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4711", + "ref": "FR*SOD*S*SIGE*47*1*_*_", + "name": "SIGEIF - 28 RUE CHANZY - VIROFLAY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.177418, + 48.798292 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4712", + "ref": "FR*SOD*S*SIGE*47*1*_*_", + "name": "SIGEIF - 28 RUE CHANZY - VIROFLAY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237223, + 48.844739 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4612", + "ref": "FR*SOD*S*SIGE*46*1*_*_", + "name": "SIGEIF - 10 BOULEVARD JEAN JAURES - BOULOGNE-BILLANCOURT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237223, + 48.844739 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4611", + "ref": "FR*SOD*S*SIGE*46*1*_*_", + "name": "SIGEIF - 10 BOULEVARD JEAN JAURES - BOULOGNE-BILLANCOURT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.247755, + 48.816826 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4511", + "ref": "FR*SOD*S*SIGE*45*1*_*_", + "name": "SIGEIF - 6 RUE DE PARIS - MEUDON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.247755, + 48.816826 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4512", + "ref": "FR*SOD*S*SIGE*45*1*_*_", + "name": "SIGEIF - 6 RUE DE PARIS - MEUDON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270931, + 48.921611 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4421", + "ref": "FR*SOD*S*SIGE*44*2*_*_", + "name": "SIGEIF - PLACE JEAN MERMOZ - BOIS-COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270931, + 48.921611 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4451", + "ref": "FR*SOD*S*SIGE*44*5*_*_", + "name": "SIGEIF - PLACE JEAN MERMOZ - BOIS-COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270931, + 48.921611 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4461", + "ref": "FR*SOD*S*SIGE*44*6*_*_", + "name": "SIGEIF - PLACE JEAN MERMOZ - BOIS-COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270931, + 48.921611 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4431", + "ref": "FR*SOD*S*SIGE*44*3*_*_", + "name": "SIGEIF - PLACE JEAN MERMOZ - BOIS-COLOMBES", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270931, + 48.921611 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4411", + "ref": "FR*SOD*S*SIGE*44*1*_*_", + "name": "SIGEIF - PLACE JEAN MERMOZ - BOIS-COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218229, + 49.038771 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE41612", + "ref": "FR*SOD*S*SIGE*416*1*_*_", + "name": "SIGEIF - 90 GRANDE RUE - BESSANCOURT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1991, + 48.9966 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40112", + "ref": "FR*SOD*S*SIGE*401*1*_*_", + "name": "SIGEIF - PARKING PICASSO - MONTIGNY-LES-CORMEILLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4336, + 48.80911 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE41512", + "ref": "FR*SOD*S*SIGE*415*1*_*_", + "name": "SIGEIF - 22 AVENUE DU GENERAL LECLERC - MAISONS-ALFORT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320497, + 48.965586 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE28311", + "ref": "FR*SOD*S*SIGE*283*1*_*_", + "name": "SIGEIF - 120 ROUTE DE SAINT DENIS - DEUIL-LA-BARRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230882, + 48.950894 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27811", + "ref": "FR*SOD*S*SIGE*278*1*_*_", + "name": "SIGEIF - ALLEE ROMAIN ROLLAND - ARGENTEUIL - 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230882, + 48.950894 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27812", + "ref": "FR*SOD*S*SIGE*278*1*_*_", + "name": "SIGEIF - ALLEE ROMAIN ROLLAND - ARGENTEUIL - 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -477,6 +201553,278 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.519994, + 48.902239 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE28111", + "ref": "FR*SOD*S*SIGE*281*1*_*_", + "name": "SIGEIF - 29 AVENUE DE LIVRY - LE RAINCY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.519994, + 48.902239 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE28112", + "ref": "FR*SOD*S*SIGE*281*1*_*_", + "name": "SIGEIF - 29 AVENUE DE LIVRY - LE RAINCY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322788, + 48.972669 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE28211", + "ref": "FR*SOD*S*SIGE*282*1*_*_", + "name": "SIGEIF - 62 RUE DE LA BARRE - DEUIL-LA-BARRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322788, + 48.972669 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE28212", + "ref": "FR*SOD*S*SIGE*282*1*_*_", + "name": "SIGEIF - 62 RUE DE LA BARRE - DEUIL-LA-BARRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320497, + 48.965586 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE28312", + "ref": "FR*SOD*S*SIGE*283*1*_*_", + "name": "SIGEIF - 120 ROUTE DE SAINT DENIS - DEUIL-LA-BARRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252769, + 48.922914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE41411", + "ref": "FR*SOD*S*SIGE*414*1*_*_", + "name": "SIGEIF - 10 PLACE GENERAL LECLERC - COLOMBES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388748, + 49.006074 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE28511", + "ref": "FR*SOD*S*SIGE*285*1*_*_", + "name": "SIGEIF - RUELLE DES PATISSIERS - VILLERS-LE-BEL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388748, + 49.006074 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE28512", + "ref": "FR*SOD*S*SIGE*285*1*_*_", + "name": "SIGEIF - RUELLE DES PATISSIERS - VILLERS-LE-BEL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -545,6 +201893,1298 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48729, + 48.873236 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE28711", + "ref": "FR*SOD*S*SIGE*287*1*_*_", + "name": "SIGEIF - 1 RUE CLAUDE PERNES - ROSNY-SOUS-BOIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48729, + 48.873236 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE28712", + "ref": "FR*SOD*S*SIGE*287*1*_*_", + "name": "SIGEIF - 1 RUE CLAUDE PERNES - ROSNY-SOUS-BOIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.413664, + 49.000478 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE28911", + "ref": "FR*SOD*S*SIGE*289*1*_*_", + "name": "SIGEIF - 4 ALLEE PIERRE CORNEILLE - VILLIERS-LE-BEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.413664, + 49.000478 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE28912", + "ref": "FR*SOD*S*SIGE*289*1*_*_", + "name": "SIGEIF - 4 ALLEE PIERRE CORNEILLE - VILLIERS-LE-BEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.392918, + 49.004398 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29011", + "ref": "FR*SOD*S*SIGE*290*1*_*_", + "name": "SIGEIF - 5 BOULEVARD SALVADOR ALLENDE - VILLIERS-LE-BEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.392918, + 49.004398 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29012", + "ref": "FR*SOD*S*SIGE*290*1*_*_", + "name": "SIGEIF - 5 BOULEVARD SALVADOR ALLENDE - VILLIERS-LE-BEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046263, + 48.811175 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27711", + "ref": "FR*SOD*S*SIGE*277*1*_*_", + "name": "SIGEIF - 4 AVENUE JEAN LURCAT - FONTENAY-LE-FLEURY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046263, + 48.811175 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27712", + "ref": "FR*SOD*S*SIGE*277*1*_*_", + "name": "SIGEIF - 4 AVENUE JEAN LURCAT - FONTENAY-LE-FLEURY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.238681, + 48.90954 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27611", + "ref": "FR*SOD*S*SIGE*276*1*_*_", + "name": "SIGEIF - 42 RUE PIERRE BROSSOLETTE - COLOMBES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.238681, + 48.90954 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27612", + "ref": "FR*SOD*S*SIGE*276*1*_*_", + "name": "SIGEIF - 42 RUE PIERRE BROSSOLETTE - COLOMBES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.253396, + 48.915111 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE26312", + "ref": "FR*SOD*S*SIGE*263*1*_*_", + "name": "SIGEIF - 7 RUE FELIX FAURE - COLOMBES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279536, + 48.972823 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE26512", + "ref": "FR*SOD*S*SIGE*265*1*_*_", + "name": "SIGEIF - 26 RUE DERMONT - SAINT-GRATIEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279536, + 48.972823 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE26511", + "ref": "FR*SOD*S*SIGE*265*1*_*_", + "name": "SIGEIF - 26 RUE DERMONT - SAINT-GRATIEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.486329, + 48.870292 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE26611", + "ref": "FR*SOD*S*SIGE*266*1*_*_", + "name": "SIGEIF - 9 AVENUE JEAN JAURES - ROSNY-SOUS-BOIS - 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.486329, + 48.870292 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE26612", + "ref": "FR*SOD*S*SIGE*266*1*_*_", + "name": "SIGEIF - 9 AVENUE JEAN JAURES - ROSNY-SOUS-BOIS - 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371545, + 48.812103 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE26711", + "ref": "FR*SOD*S*SIGE*267*1*_*_", + "name": "SIGEIF - 111 RUE HOCHE - IVRY-SUR-SEINE - 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371545, + 48.812103 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE26712", + "ref": "FR*SOD*S*SIGE*267*1*_*_", + "name": "SIGEIF - 111 RUE HOCHE - IVRY-SUR-SEINE - 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.399729, + 48.814589 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE26911", + "ref": "FR*SOD*S*SIGE*269*1*_*_", + "name": "SIGEIF - 23 BOULEVARD DE BRANDEBOURG - IVRY-SUR-SEINE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.399729, + 48.814589 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE26912", + "ref": "FR*SOD*S*SIGE*269*1*_*_", + "name": "SIGEIF - 23 BOULEVARD DE BRANDEBOURG - IVRY-SUR-SEINE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.642961, + 48.866405 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27011", + "ref": "FR*SOD*S*SIGE*270*1*_*_", + "name": "SIGEIF - RUE DE TORCY - VAIRES-SUR-MARNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.642961, + 48.866405 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27012", + "ref": "FR*SOD*S*SIGE*270*1*_*_", + "name": "SIGEIF - RUE DE TORCY - VAIRES-SUR-MARNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.468985, + 48.882559 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27111", + "ref": "FR*SOD*S*SIGE*271*1*_*_", + "name": "SIGEIF - 16 RUE DE LISBONNE - ROSNY-SOUS-BOIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.468985, + 48.882559 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27112", + "ref": "FR*SOD*S*SIGE*271*1*_*_", + "name": "SIGEIF - 16 RUE DE LISBONNE - ROSNY-SOUS-BOIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.196674, + 48.82341 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27211", + "ref": "FR*SOD*S*SIGE*272*1*_*_", + "name": "SIGEIF - 15 CHEMIN DESVALLIERES - VILLE-DAVRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.196674, + 48.82341 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27212", + "ref": "FR*SOD*S*SIGE*272*1*_*_", + "name": "SIGEIF - 15 CHEMIN DESVALLIERES - VILLE-DAVRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.188821, + 48.822768 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27311", + "ref": "FR*SOD*S*SIGE*273*1*_*_", + "name": "SIGEIF - 10 RUE DE LA RONCE - VILLE-DAVRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.188821, + 48.822768 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27312", + "ref": "FR*SOD*S*SIGE*273*1*_*_", + "name": "SIGEIF - 10 RUE DE LA RONCE - VILLE-DAVRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.223943, + 48.87384 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27411", + "ref": "FR*SOD*S*SIGE*274*1*_*_", + "name": "SIGEIF - 42 RUE GARDENAT LAPOSTOL - SURESNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.223943, + 48.87384 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27412", + "ref": "FR*SOD*S*SIGE*274*1*_*_", + "name": "SIGEIF - 42 RUE GARDENAT LAPOSTOL - SURESNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.201931, + 48.863165 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27512", + "ref": "FR*SOD*S*SIGE*275*1*_*_", + "name": "SIGEIF - 1 PLACE STALINGRAD - SURESNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.201931, + 48.863165 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE27511", + "ref": "FR*SOD*S*SIGE*275*1*_*_", + "name": "SIGEIF - 1 PLACE STALINGRAD - SURESNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.514439, + 49.003741 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29112", + "ref": "FR*SOD*S*SIGE*291*1*_*_", + "name": "SIGEIF - 21 RUE HOUDART - ROISSY-EN-FRANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.514439, + 49.003741 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29111", + "ref": "FR*SOD*S*SIGE*291*1*_*_", + "name": "SIGEIF - 21 RUE HOUDART - ROISSY-EN-FRANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.325135, + 48.975383 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29212", + "ref": "FR*SOD*S*SIGE*292*1*_*_", + "name": "SIGEIF - 3 RUE CHARLES DE GAULLE - DEUIL-LA-BARRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.146948, + 48.944501 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30412", + "ref": "FR*SOD*S*SIGE*304*1*_*_", + "name": "SIGEIF - 33 RUE GUYNEMER - MAISONS-LAFFITTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.486793, + 48.872049 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30512", + "ref": "FR*SOD*S*SIGE*305*1*_*_", + "name": "SIGEIF - PARKING DE LEUROPE - ROSNY-SOUS-BOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213465, + 48.86188 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30612", + "ref": "FR*SOD*S*SIGE*306*1*_*_", + "name": "SIGEIF - 33 RUE DE LA TUILERIE - SURESNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213465, + 48.86188 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30611", + "ref": "FR*SOD*S*SIGE*306*1*_*_", + "name": "SIGEIF - 33 RUE DE LA TUILERIE - SURESNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -681,6 +203321,1842 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.484066, + 48.871722 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30811", + "ref": "FR*SOD*S*SIGE*308*1*_*_", + "name": "SIGEIF - 6 RUE DU MARECHAL MAUNOURY - ROSNY-SOUS-BOIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.484066, + 48.871722 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30812", + "ref": "FR*SOD*S*SIGE*308*1*_*_", + "name": "SIGEIF - 6 RUE DU MARECHAL MAUNOURY - ROSNY-SOUS-BOIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.457298, + 49.02965 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30911", + "ref": "FR*SOD*S*SIGE*309*1*_*_", + "name": "SIGEIF - 21 AVENUE DE MONTMORENCY - GOUSSAINVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.457298, + 49.02965 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30912", + "ref": "FR*SOD*S*SIGE*309*1*_*_", + "name": "SIGEIF - 21 AVENUE DE MONTMORENCY - GOUSSAINVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.47388, + 49.031974 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31012", + "ref": "FR*SOD*S*SIGE*310*1*_*_", + "name": "SIGEIF - RUE PABLO NERUDA - GOUSSAINVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.47388, + 49.031974 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31011", + "ref": "FR*SOD*S*SIGE*310*1*_*_", + "name": "SIGEIF - RUE PABLO NERUDA - GOUSSAINVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.640961, + 48.869794 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31111", + "ref": "FR*SOD*S*SIGE*311*1*_*_", + "name": "SIGEIF - PLACE DE LA REPUBLIQUE - VAIRES-SUR-MARNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.640961, + 48.869794 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31112", + "ref": "FR*SOD*S*SIGE*311*1*_*_", + "name": "SIGEIF - PLACE DE LA REPUBLIQUE - VAIRES-SUR-MARNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.330149, + 48.760628 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31211", + "ref": "FR*SOD*S*SIGE*312*1*_*_", + "name": "SIGEIF - 42 AVENUE DE LA PAIX - FRESNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.330149, + 48.760628 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31212", + "ref": "FR*SOD*S*SIGE*312*1*_*_", + "name": "SIGEIF - 42 AVENUE DE LA PAIX - FRESNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.640491, + 48.873308 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31311", + "ref": "FR*SOD*S*SIGE*313*1*_*_", + "name": "SIGEIF - 4 BOULEVARD CONSTANT MELET - VAIRES-SUR-MARNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.640491, + 48.873308 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31312", + "ref": "FR*SOD*S*SIGE*313*1*_*_", + "name": "SIGEIF - 4 BOULEVARD CONSTANT MELET - VAIRES-SUR-MARNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.141711, + 48.947895 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31412", + "ref": "FR*SOD*S*SIGE*314*1*_*_", + "name": "SIGEIF - RUE JEAN MERMOZ - MAISONS-LAFFITTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.141711, + 48.947895 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31411", + "ref": "FR*SOD*S*SIGE*314*1*_*_", + "name": "SIGEIF - RUE JEAN MERMOZ - MAISONS-LAFFITTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.486793, + 48.872049 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30511", + "ref": "FR*SOD*S*SIGE*305*1*_*_", + "name": "SIGEIF - PARKING DE LEUROPE - ROSNY-SOUS-BOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.146948, + 48.944501 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30411", + "ref": "FR*SOD*S*SIGE*304*1*_*_", + "name": "SIGEIF - 33 RUE GUYNEMER - MAISONS-LAFFITTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.325135, + 48.975383 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29211", + "ref": "FR*SOD*S*SIGE*292*1*_*_", + "name": "SIGEIF - 3 RUE CHARLES DE GAULLE - DEUIL-LA-BARRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.141333, + 48.766087 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30312", + "ref": "FR*SOD*S*SIGE*303*1*_*_", + "name": "SIGEIF - RUE DU PETIT JOUY - LOGES-EN-JOSAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.04919, + 48.814008 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29312", + "ref": "FR*SOD*S*SIGE*293*1*_*_", + "name": "SIGEIF - 8 RUE PIERRE CURIE - FONTENAY-LE-FLEURY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.04919, + 48.814008 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29311", + "ref": "FR*SOD*S*SIGE*293*1*_*_", + "name": "SIGEIF - 8 RUE PIERRE CURIE - FONTENAY-LE-FLEURY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.314644, + 48.965435 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29411", + "ref": "FR*SOD*S*SIGE*294*1*_*_", + "name": "SIGEIF - 37 RUE DE LA BARRE - ENGHIEN-LES-BAINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.314644, + 48.965435 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29412", + "ref": "FR*SOD*S*SIGE*294*1*_*_", + "name": "SIGEIF - 37 RUE DE LA BARRE - ENGHIEN-LES-BAINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324662, + 48.961764 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29511", + "ref": "FR*SOD*S*SIGE*295*1*_*_", + "name": "SIGEIF - 27 ROUTE DE SAINT DENIS - DEUIL-LA-BARRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324662, + 48.961764 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29512", + "ref": "FR*SOD*S*SIGE*295*1*_*_", + "name": "SIGEIF - 27 ROUTE DE SAINT DENIS - DEUIL-LA-BARRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241634, + 48.832916 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29611", + "ref": "FR*SOD*S*SIGE*296*1*_*_", + "name": "SIGEIF - 15 AVENUE DU GENERAL LECLERC - BOULOGNE-BILLANCOURT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241634, + 48.832916 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29612", + "ref": "FR*SOD*S*SIGE*296*1*_*_", + "name": "SIGEIF - 15 AVENUE DU GENERAL LECLERC - BOULOGNE-BILLANCOURT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320078, + 48.792163 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29721", + "ref": "FR*SOD*S*SIGE*297*2*_*_", + "name": "SIGEIF - 230 AVENUE ARISTIDE BRIAND - BAGNEUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320078, + 48.792163 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29722", + "ref": "FR*SOD*S*SIGE*297*2*_*_", + "name": "SIGEIF - 230 AVENUE ARISTIDE BRIAND - BAGNEUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.150202, + 48.959082 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29811", + "ref": "FR*SOD*S*SIGE*298*1*_*_", + "name": "SIGEIF - 13 AVENUE DESAIX - MAISONS-LAFFITTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.150202, + 48.959082 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29812", + "ref": "FR*SOD*S*SIGE*298*1*_*_", + "name": "SIGEIF - 13 AVENUE DESAIX - MAISONS-LAFFITTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.351968, + 48.986303 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29911", + "ref": "FR*SOD*S*SIGE*299*1*_*_", + "name": "SIGEIF - 6 RUE DU DR GOLDSTEIN - GROSLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.351968, + 48.986303 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE29912", + "ref": "FR*SOD*S*SIGE*299*1*_*_", + "name": "SIGEIF - 6 RUE DU DR GOLDSTEIN - GROSLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344589, + 48.989537 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30011", + "ref": "FR*SOD*S*SIGE*300*1*_*_", + "name": "SIGEIF - 2 RUE DES CARRIERES - GROSLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344589, + 48.989537 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30012", + "ref": "FR*SOD*S*SIGE*300*1*_*_", + "name": "SIGEIF - 2 RUE DES CARRIERES - GROSLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.335975, + 48.935119 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30111", + "ref": "FR*SOD*S*SIGE*301*1*_*_", + "name": "SIGEIF - 7 QUAI DASNIERES - VILLENEUVE-LA-GARENNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.335975, + 48.935119 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30112", + "ref": "FR*SOD*S*SIGE*301*1*_*_", + "name": "SIGEIF - 7 QUAI DASNIERES - VILLENEUVE-LA-GARENNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315636, + 48.80169 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30211", + "ref": "FR*SOD*S*SIGE*302*1*_*_", + "name": "SIGEIF - 43 AVENUE HENRI BARBUSSE - BAGNEUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315636, + 48.80169 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30212", + "ref": "FR*SOD*S*SIGE*302*1*_*_", + "name": "SIGEIF - 43 AVENUE HENRI BARBUSSE - BAGNEUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.141333, + 48.766087 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE30311", + "ref": "FR*SOD*S*SIGE*303*1*_*_", + "name": "SIGEIF - RUE DU PETIT JOUY - LOGES-EN-JOSAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.253396, + 48.915111 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE26311", + "ref": "FR*SOD*S*SIGE*263*1*_*_", + "name": "SIGEIF - 7 RUE FELIX FAURE - COLOMBES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.194656, + 48.822302 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE25911", + "ref": "FR*SOD*S*SIGE*259*1*_*_", + "name": "SIGEIF - 30 CHEMIN DESVALLIERES - VILLE-DAVRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.194656, + 48.822302 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE25912", + "ref": "FR*SOD*S*SIGE*259*1*_*_", + "name": "SIGEIF - 30 CHEMIN DESVALLIERES - VILLE-DAVRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.151554, + 48.943852 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24011", + "ref": "FR*SOD*S*SIGE*240*1*_*_", + "name": "SIGEIF - 23 RUE DE LA DIGUE - MAISONS-LAFFITTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379583, + 48.816769 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE23911", + "ref": "FR*SOD*S*SIGE*239*1*_*_", + "name": "SIGEIF - 67 RUE GABRIEL PERI - IVRY-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.243501, + 48.877078 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE23812", + "ref": "FR*SOD*S*SIGE*238*1*_*_", + "name": "SIGEIF - 7 ALLEE DES SPORTS - PUTEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.243501, + 48.877078 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE23811", + "ref": "FR*SOD*S*SIGE*238*1*_*_", + "name": "SIGEIF - 7 ALLEE DES SPORTS - PUTEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.526659, + 48.895792 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE23711", + "ref": "FR*SOD*S*SIGE*237*1*_*_", + "name": "SIGEIF - ROND-POINT DE MONTFERMEIL - LE RAINCY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.526659, + 48.895792 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE23712", + "ref": "FR*SOD*S*SIGE*237*1*_*_", + "name": "SIGEIF - ROND-POINT DE MONTFERMEIL - LE RAINCY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.549201, + 48.839452 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE23611", + "ref": "FR*SOD*S*SIGE*236*1*_*_", + "name": "SIGEIF - 2 BOULEVARD DU LEVANT - NOISY-LE-GRAND", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.549201, + 48.839452 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE23612", + "ref": "FR*SOD*S*SIGE*236*1*_*_", + "name": "SIGEIF - 2 BOULEVARD DU LEVANT - NOISY-LE-GRAND", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232948, + 48.883089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE23412", + "ref": "FR*SOD*S*SIGE*234*1*_*_", + "name": "SIGEIF - 1 PLACE DE SOUVENIR FRANCAIS - PUTEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232948, + 48.883089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE23411", + "ref": "FR*SOD*S*SIGE*234*1*_*_", + "name": "SIGEIF - 1 PLACE DE SOUVENIR FRANCAIS - PUTEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.444934, + 49.050178 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE23212", + "ref": "FR*SOD*S*SIGE*232*1*_*_", + "name": "SIGEIF - PARKING DU STADE MUNICIPAL - FONTENAY EN PARISIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.444934, + 49.050178 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE23211", + "ref": "FR*SOD*S*SIGE*232*1*_*_", + "name": "SIGEIF - PARKING DU STADE MUNICIPAL - FONTENAY EN PARISIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -749,6 +205225,4324 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353092, + 49.079916 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE23011", + "ref": "FR*SOD*S*SIGE*230*1*_*_", + "name": "SIGEIF - 2 BIS HAMEAU DU BEAU JAY - BELLOY-EN-FRANCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353092, + 49.079916 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE23012", + "ref": "FR*SOD*S*SIGE*230*1*_*_", + "name": "SIGEIF - 2 BIS HAMEAU DU BEAU JAY - BELLOY-EN-FRANCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259156, + 48.924688 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22931", + "ref": "FR*SOD*S*SIGE*229*3*_*_", + "name": "SIGEIF - 8 AVENUE MENELOTTE - COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259156, + 48.924688 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22961", + "ref": "FR*SOD*S*SIGE*229*6*_*_", + "name": "SIGEIF - 8 AVENUE MENELOTTE - COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259156, + 48.924688 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22951", + "ref": "FR*SOD*S*SIGE*229*5*_*_", + "name": "SIGEIF - 8 AVENUE MENELOTTE - COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259156, + 48.924688 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22911", + "ref": "FR*SOD*S*SIGE*229*1*_*_", + "name": "SIGEIF - 8 AVENUE MENELOTTE - COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259156, + 48.924688 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22941", + "ref": "FR*SOD*S*SIGE*229*4*_*_", + "name": "SIGEIF - 8 AVENUE MENELOTTE - COLOMBES", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259156, + 48.924688 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22921", + "ref": "FR*SOD*S*SIGE*229*2*_*_", + "name": "SIGEIF - 8 AVENUE MENELOTTE - COLOMBES", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379583, + 48.816769 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE23912", + "ref": "FR*SOD*S*SIGE*239*1*_*_", + "name": "SIGEIF - 67 RUE GABRIEL PERI - IVRY-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.151554, + 48.943852 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24012", + "ref": "FR*SOD*S*SIGE*240*1*_*_", + "name": "SIGEIF - 23 RUE DE LA DIGUE - MAISONS-LAFFITTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.566347, + 48.829448 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22812", + "ref": "FR*SOD*S*SIGE*228*1*_*_", + "name": "SIGEIF - 71 AVENUE MEDERIC - NOISY-LE-GRAND", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.235762, + 48.873871 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24111", + "ref": "FR*SOD*S*SIGE*241*1*_*_", + "name": "SIGEIF - 37 AVENUE GEORGES POMPIDOU - SURESNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.250294, + 48.945741 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE25312", + "ref": "FR*SOD*S*SIGE*253*1*_*_", + "name": "SIGEIF - 1 RUE DE LA POSTE PROLONGE - ARGENTEUIL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.250294, + 48.945741 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE25311", + "ref": "FR*SOD*S*SIGE*253*1*_*_", + "name": "SIGEIF - 1 RUE DE LA POSTE PROLONGE - ARGENTEUIL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313771, + 48.795472 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE25212", + "ref": "FR*SOD*S*SIGE*252*1*_*_", + "name": "SIGEIF - 89 AVENUE ALBERT PETIT - BAGNEUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313771, + 48.795472 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE25211", + "ref": "FR*SOD*S*SIGE*252*1*_*_", + "name": "SIGEIF - 89 AVENUE ALBERT PETIT - BAGNEUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317675, + 48.798756 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE25112", + "ref": "FR*SOD*S*SIGE*251*1*_*_", + "name": "SIGEIF - 17 AVENUE LOUIS PASTEUR - BAGNEUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317675, + 48.798756 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE25111", + "ref": "FR*SOD*S*SIGE*251*1*_*_", + "name": "SIGEIF - 17 AVENUE LOUIS PASTEUR - BAGNEUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284068, + 48.965992 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24912", + "ref": "FR*SOD*S*SIGE*249*1*_*_", + "name": "SIGEIF - 47 RUE BERTHIE ALBRECHT - SAINT GRATIEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284068, + 48.965992 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24911", + "ref": "FR*SOD*S*SIGE*249*1*_*_", + "name": "SIGEIF - 47 RUE BERTHIE ALBRECHT - SAINT GRATIEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284159, + 48.95965 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24811", + "ref": "FR*SOD*S*SIGE*248*1*_*_", + "name": "SIGEIF - 12 RUE DES RAGUENETS - SAINT GRATIEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284159, + 48.95965 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24812", + "ref": "FR*SOD*S*SIGE*248*1*_*_", + "name": "SIGEIF - 12 RUE DES RAGUENETS - SAINT GRATIEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.319999, + 48.988914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24612", + "ref": "FR*SOD*S*SIGE*246*1*_*_", + "name": "SIGEIF - RUE DU DOCTEUR DEMIRLEAU - MONTMORENCY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.319999, + 48.988914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24611", + "ref": "FR*SOD*S*SIGE*246*1*_*_", + "name": "SIGEIF - RUE DU DOCTEUR DEMIRLEAU - MONTMORENCY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.312299, + 48.973415 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24512", + "ref": "FR*SOD*S*SIGE*245*1*_*_", + "name": "SIGEIF - 4 RUE JEAN MONNET - MONTMORENCY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.312299, + 48.973415 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24511", + "ref": "FR*SOD*S*SIGE*245*1*_*_", + "name": "SIGEIF - 4 RUE JEAN MONNET - MONTMORENCY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321968, + 48.999316 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24412", + "ref": "FR*SOD*S*SIGE*244*1*_*_", + "name": "SIGEIF - 23 AVENUE DE LA 1ERE ARMEE FRANCAISE - MONTMORENCY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321968, + 48.999316 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24411", + "ref": "FR*SOD*S*SIGE*244*1*_*_", + "name": "SIGEIF - 23 AVENUE DE LA 1ERE ARMEE FRANCAISE - MONTMORENCY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22766, + 48.87125 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24312", + "ref": "FR*SOD*S*SIGE*243*1*_*_", + "name": "SIGEIF - 15 RUE DE VERDUN - SURESNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22766, + 48.87125 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24311", + "ref": "FR*SOD*S*SIGE*243*1*_*_", + "name": "SIGEIF - 15 RUE DE VERDUN - SURESNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.224059, + 48.861252 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24212", + "ref": "FR*SOD*S*SIGE*242*1*_*_", + "name": "SIGEIF - 2 RUE MARCEL MONGE - SURESNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.224059, + 48.861252 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24211", + "ref": "FR*SOD*S*SIGE*242*1*_*_", + "name": "SIGEIF - 2 RUE MARCEL MONGE - SURESNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.235762, + 48.873871 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE24112", + "ref": "FR*SOD*S*SIGE*241*1*_*_", + "name": "SIGEIF - 37 AVENUE GEORGES POMPIDOU - SURESNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.566347, + 48.829448 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22811", + "ref": "FR*SOD*S*SIGE*228*1*_*_", + "name": "SIGEIF - 71 AVENUE MEDERIC - NOISY-LE-GRAND", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.549687, + 48.847681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22711", + "ref": "FR*SOD*S*SIGE*227*1*_*_", + "name": "SIGEIF - RUE DES 4 SAISONS - NOISY-LE-GRAND", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181596, + 48.827704 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE25711", + "ref": "FR*SOD*S*SIGE*257*1*_*_", + "name": "SIGEIF - 29 AVENUE THIERRY - VILLE-DAVRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.620085, + 48.940606 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21212", + "ref": "FR*SOD*S*SIGE*212*1*_*_", + "name": "SIGEIF - RUE DE RUZE - VILLEPARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.370779, + 48.976697 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21111", + "ref": "FR*SOD*S*SIGE*211*1*_*_", + "name": "SIGEIF - PLACE ANDRE GIDE - SARCELLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.370779, + 48.976697 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21112", + "ref": "FR*SOD*S*SIGE*211*1*_*_", + "name": "SIGEIF - PLACE ANDRE GIDE - SARCELLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383546, + 48.980861 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21011", + "ref": "FR*SOD*S*SIGE*210*1*_*_", + "name": "SIGEIF - 49 AVENUE DU MARECHAL PIERRE KOEING - SARCELLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383546, + 48.980861 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21012", + "ref": "FR*SOD*S*SIGE*210*1*_*_", + "name": "SIGEIF - 49 AVENUE DU MARECHAL PIERRE KOEING - SARCELLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37428, + 48.817419 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20911", + "ref": "FR*SOD*S*SIGE*209*1*_*_", + "name": "SIGEIF - 9 RUE BAUDIN - IVRY-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37428, + 48.817419 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20912", + "ref": "FR*SOD*S*SIGE*209*1*_*_", + "name": "SIGEIF - 9 RUE BAUDIN - IVRY-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.389021, + 48.812972 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20811", + "ref": "FR*SOD*S*SIGE*208*1*_*_", + "name": "SIGEIF - 5 AVENUE SPINOZA - IVRY-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.389021, + 48.812972 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20812", + "ref": "FR*SOD*S*SIGE*208*1*_*_", + "name": "SIGEIF - 5 AVENUE SPINOZA - IVRY-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37586, + 48.807196 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20711", + "ref": "FR*SOD*S*SIGE*207*1*_*_", + "name": "SIGEIF - 27 RUE MICHELET - IVRY-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37586, + 48.807196 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20712", + "ref": "FR*SOD*S*SIGE*207*1*_*_", + "name": "SIGEIF - 27 RUE MICHELET - IVRY-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3851, + 48.81043 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20612", + "ref": "FR*SOD*S*SIGE*206*1*_*_", + "name": "SIGEIF - 16 RUE MARAT - IVRY-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3851, + 48.81043 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20611", + "ref": "FR*SOD*S*SIGE*206*1*_*_", + "name": "SIGEIF - 16 RUE MARAT - IVRY-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601128, + 48.950792 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20512", + "ref": "FR*SOD*S*SIGE*205*1*_*_", + "name": "SIGEIF - 140 AVENUE EUGENE VARLIN - VILLEPARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601128, + 48.950792 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20511", + "ref": "FR*SOD*S*SIGE*205*1*_*_", + "name": "SIGEIF - 140 AVENUE EUGENE VARLIN - VILLEPARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.044941, + 48.811271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE25412", + "ref": "FR*SOD*S*SIGE*254*1*_*_", + "name": "SIGEIF - 5 PLACE DU 8 MAI 1945 - FONTENAY-LE-FLEURY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.044941, + 48.811271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE25411", + "ref": "FR*SOD*S*SIGE*254*1*_*_", + "name": "SIGEIF - 5 PLACE DU 8 MAI 1945 - FONTENAY-LE-FLEURY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.179316, + 48.821396 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE25512", + "ref": "FR*SOD*S*SIGE*255*1*_*_", + "name": "SIGEIF - 67 RUE DE VERSAILLES - VILLE-DAVRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.179316, + 48.821396 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE25511", + "ref": "FR*SOD*S*SIGE*255*1*_*_", + "name": "SIGEIF - 67 RUE DE VERSAILLES - VILLE-DAVRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.184659, + 48.827427 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE25612", + "ref": "FR*SOD*S*SIGE*256*1*_*_", + "name": "SIGEIF - 21 RUE DE MARNES - VILLE-DAVRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.184659, + 48.827427 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE25611", + "ref": "FR*SOD*S*SIGE*256*1*_*_", + "name": "SIGEIF - 21 RUE DE MARNES - VILLE-DAVRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181596, + 48.827704 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE25712", + "ref": "FR*SOD*S*SIGE*257*1*_*_", + "name": "SIGEIF - 29 AVENUE THIERRY - VILLE-DAVRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.620085, + 48.940606 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21211", + "ref": "FR*SOD*S*SIGE*212*1*_*_", + "name": "SIGEIF - RUE DE RUZE - VILLEPARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.236634, + 48.883921 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21312", + "ref": "FR*SOD*S*SIGE*213*1*_*_", + "name": "SIGEIF - 23 RUE CHANTE COQ - PUTEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.549687, + 48.847681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22712", + "ref": "FR*SOD*S*SIGE*227*1*_*_", + "name": "SIGEIF - RUE DES 4 SAISONS - NOISY-LE-GRAND", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.236634, + 48.883921 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21311", + "ref": "FR*SOD*S*SIGE*213*1*_*_", + "name": "SIGEIF - 23 RUE CHANTE COQ - PUTEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.011658, + 48.803085 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22611", + "ref": "FR*SOD*S*SIGE*226*1*_*_", + "name": "SIGEIF - 8 AVENUE ARLETTY - BOIS-DARCY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.011658, + 48.803085 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22612", + "ref": "FR*SOD*S*SIGE*226*1*_*_", + "name": "SIGEIF - 8 AVENUE ARLETTY - BOIS-DARCY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.225601, + 48.868305 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22512", + "ref": "FR*SOD*S*SIGE*225*1*_*_", + "name": "SIGEIF - 1 RUE CHARLES PEGUY - SURESNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.225601, + 48.868305 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22511", + "ref": "FR*SOD*S*SIGE*225*1*_*_", + "name": "SIGEIF - 1 RUE CHARLES PEGUY - SURESNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.227553, + 48.874264 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22412", + "ref": "FR*SOD*S*SIGE*224*1*_*_", + "name": "SIGEIF - 52 RUE CARNOT - SURESNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.227553, + 48.874264 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22411", + "ref": "FR*SOD*S*SIGE*224*1*_*_", + "name": "SIGEIF - 52 RUE CARNOT - SURESNES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535132, + 48.799087 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22011", + "ref": "FR*SOD*S*SIGE*220*1*_*_", + "name": "SIGEIF - 12 RUE DES FUSILLE DE CHATEAUBRIAND - CHENNEVIERES-SUR-MARNE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535132, + 48.799087 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22031", + "ref": "FR*SOD*S*SIGE*220*3*_*_", + "name": "SIGEIF - 12 RUE DES FUSILLE DE CHATEAUBRIAND - CHENNEVIERES-SUR-MARNE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535132, + 48.799087 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22021", + "ref": "FR*SOD*S*SIGE*220*2*_*_", + "name": "SIGEIF - 12 RUE DES FUSILLE DE CHATEAUBRIAND - CHENNEVIERES-SUR-MARNE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535132, + 48.799087 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22051", + "ref": "FR*SOD*S*SIGE*220*5*_*_", + "name": "SIGEIF - 12 RUE DES FUSILLE DE CHATEAUBRIAND - CHENNEVIERES-SUR-MARNE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535132, + 48.799087 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE22041", + "ref": "FR*SOD*S*SIGE*220*4*_*_", + "name": "SIGEIF - 12 RUE DES FUSILLE DE CHATEAUBRIAND - CHENNEVIERES-SUR-MARNE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.257649, + 48.948752 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21812", + "ref": "FR*SOD*S*SIGE*218*1*_*_", + "name": "SIGEIF - PLACE ARISTIDE BRIAND - ARGENTEUIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.257649, + 48.948752 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21811", + "ref": "FR*SOD*S*SIGE*218*1*_*_", + "name": "SIGEIF - PLACE ARISTIDE BRIAND - ARGENTEUIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239076, + 48.947107 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21712", + "ref": "FR*SOD*S*SIGE*217*1*_*_", + "name": "SIGEIF - 11 BOULVERARD DU GENERAL LECLERC - ARGENTEUIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239076, + 48.947107 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21711", + "ref": "FR*SOD*S*SIGE*217*1*_*_", + "name": "SIGEIF - 11 BOULVERARD DU GENERAL LECLERC - ARGENTEUIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.247911, + 48.940484 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21611", + "ref": "FR*SOD*S*SIGE*216*1*_*_", + "name": "SIGEIF - PLACE DU 8 MAI 1945 - ARGENTEUIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.247911, + 48.940484 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21612", + "ref": "FR*SOD*S*SIGE*216*1*_*_", + "name": "SIGEIF - PLACE DU 8 MAI 1945 - ARGENTEUIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.287242, + 48.957323 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21511", + "ref": "FR*SOD*S*SIGE*215*1*_*_", + "name": "SIGEIF - 7 PLACE DU CAPITAINE CHAUVELOT - ARGENTEUIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.287242, + 48.957323 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21512", + "ref": "FR*SOD*S*SIGE*215*1*_*_", + "name": "SIGEIF - 7 PLACE DU CAPITAINE CHAUVELOT - ARGENTEUIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.542244, + 48.729206 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21411", + "ref": "FR*SOD*S*SIGE*214*1*_*_", + "name": "SIGEIF - MAIL DE LA JUSTICE MAROLLES-EN-BRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.542244, + 48.729206 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE21412", + "ref": "FR*SOD*S*SIGE*214*1*_*_", + "name": "SIGEIF - MAIL DE LA JUSTICE MAROLLES-EN-BRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.484081, + 48.914985 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31511", + "ref": "FR*SOD*S*SIGE*315*1*_*_", + "name": "SIGEIF - 32 AVENUE HENRI VARAGNAT - BONDY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.484081, + 48.914985 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31512", + "ref": "FR*SOD*S*SIGE*315*1*_*_", + "name": "SIGEIF - 32 AVENUE HENRI VARAGNAT - BONDY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.482415, + 48.902376 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31611", + "ref": "FR*SOD*S*SIGE*316*1*_*_", + "name": "SIGEIF - 91 RUE JULES GUESDE - BONDY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2108, + 49.0173 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37812", + "ref": "FR*SOD*S*SIGE*378*1*_*_", + "name": "SIGEIF - PARKING DE LA PISCINE ET DE LA POSTE - TAVERNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20446, + 49.0115 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37911", + "ref": "FR*SOD*S*SIGE*379*1*_*_", + "name": "SIGEIF - PARKING GYMNASE - TAVERNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20446, + 49.0115 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37912", + "ref": "FR*SOD*S*SIGE*379*1*_*_", + "name": "SIGEIF - PARKING GYMNASE - TAVERNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2249, + 49.0264 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38011", + "ref": "FR*SOD*S*SIGE*380*1*_*_", + "name": "SIGEIF - PARKING DE LA MAIRIE - TAVERNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2249, + 49.0264 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38012", + "ref": "FR*SOD*S*SIGE*380*1*_*_", + "name": "SIGEIF - PARKING DE LA MAIRIE - TAVERNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221, + 49.0254 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38111", + "ref": "FR*SOD*S*SIGE*381*1*_*_", + "name": "SIGEIF - GARE PARKING SUD - TAVERNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221, + 49.0254 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38112", + "ref": "FR*SOD*S*SIGE*381*1*_*_", + "name": "SIGEIF - GARE PARKING SUD - TAVERNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2215, + 49.0258 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38211", + "ref": "FR*SOD*S*SIGE*382*1*_*_", + "name": "SIGEIF - GARE PARKING NORD - TAVERNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2215, + 49.0258 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38212", + "ref": "FR*SOD*S*SIGE*382*1*_*_", + "name": "SIGEIF - GARE PARKING NORD - TAVERNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2633, + 48.9701 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38311", + "ref": "FR*SOD*S*SIGE*383*1*_*_", + "name": "SIGEIF - PARKING DE LA GARE - SANNOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2633, + 48.9701 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38312", + "ref": "FR*SOD*S*SIGE*383*1*_*_", + "name": "SIGEIF - PARKING DE LA GARE - SANNOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25721, + 48.9715 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38411", + "ref": "FR*SOD*S*SIGE*384*1*_*_", + "name": "SIGEIF - PARKING DU MARCHE - SANNOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25721, + 48.9715 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38412", + "ref": "FR*SOD*S*SIGE*384*1*_*_", + "name": "SIGEIF - PARKING DU MARCHE - SANNOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2661, + 48.9686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38512", + "ref": "FR*SOD*S*SIGE*385*1*_*_", + "name": "SIGEIF - PARKING ECOLE PASTEUR - SANNOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2661, + 48.9686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38511", + "ref": "FR*SOD*S*SIGE*385*1*_*_", + "name": "SIGEIF - PARKING ECOLE PASTEUR - SANNOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24037, + 48.9686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38611", + "ref": "FR*SOD*S*SIGE*386*1*_*_", + "name": "SIGEIF - CORMEILLES - SANNOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24037, + 48.9686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38612", + "ref": "FR*SOD*S*SIGE*386*1*_*_", + "name": "SIGEIF - CORMEILLES - SANNOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2562, + 48.9761 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38711", + "ref": "FR*SOD*S*SIGE*387*1*_*_", + "name": "SIGEIF - PARKING STADE DELAUNE - SANNOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2562, + 48.9761 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38712", + "ref": "FR*SOD*S*SIGE*387*1*_*_", + "name": "SIGEIF - PARKING STADE DELAUNE - SANNOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2423, + 48.9784 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38812", + "ref": "FR*SOD*S*SIGE*388*1*_*_", + "name": "SIGEIF - PARKING JEAN MOULIN - SANNOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2423, + 48.9784 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38811", + "ref": "FR*SOD*S*SIGE*388*1*_*_", + "name": "SIGEIF - PARKING JEAN MOULIN - SANNOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2521, + 49.0236 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38912", + "ref": "FR*SOD*S*SIGE*389*1*_*_", + "name": "SIGEIF - PARKING CHATAIGNERAIE - SAINT-LEU-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2108, + 49.0173 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37811", + "ref": "FR*SOD*S*SIGE*378*1*_*_", + "name": "SIGEIF - PARKING DE LA PISCINE ET DE LA POSTE - TAVERNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2126, + 49.0271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37712", + "ref": "FR*SOD*S*SIGE*377*1*_*_", + "name": "SIGEIF - PLACE DES 7 FONTAINES - TAVERNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24848, + 49.0193 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39011", + "ref": "FR*SOD*S*SIGE*390*1*_*_", + "name": "SIGEIF - PARKING MAISON POUR TOUS - SAINT-LEU-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2126, + 49.0271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37711", + "ref": "FR*SOD*S*SIGE*377*1*_*_", + "name": "SIGEIF - PLACE DES 7 FONTAINES - TAVERNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1658, + 48.99 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36711", + "ref": "FR*SOD*S*SIGE*367*1*_*_", + "name": "SIGEIF - PLACE DE LAPPEL DU 18 JUIN 1940 - HERBLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1449, + 48.998 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36812", + "ref": "FR*SOD*S*SIGE*368*1*_*_", + "name": "SIGEIF - CHEMIN RURAL DES CHENNEVIERES PARKING DU DOJO - HERBLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1449, + 48.998 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36811", + "ref": "FR*SOD*S*SIGE*368*1*_*_", + "name": "SIGEIF - CHEMIN RURAL DES CHENNEVIERES PARKING DU DOJO - HERBLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.176, + 48.9915 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36912", + "ref": "FR*SOD*S*SIGE*369*1*_*_", + "name": "SIGEIF - 7 CHEMIN DE MONTIGNY ESPACE ANDRE MALRAUX - HERBLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.176, + 48.9915 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36911", + "ref": "FR*SOD*S*SIGE*369*1*_*_", + "name": "SIGEIF - 7 CHEMIN DE MONTIGNY ESPACE ANDRE MALRAUX - HERBLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1658, + 48.9914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37012", + "ref": "FR*SOD*S*SIGE*370*1*_*_", + "name": "SIGEIF - 4 PLACE DE LA HALLE PARKING PLACE DE LA HALLE - HERBLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1658, + 48.9914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37011", + "ref": "FR*SOD*S*SIGE*370*1*_*_", + "name": "SIGEIF - 4 PLACE DE LA HALLE PARKING PLACE DE LA HALLE - HERBLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181, + 48.9796 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37111", + "ref": "FR*SOD*S*SIGE*371*1*_*_", + "name": "SIGEIF - 2 RUE MARCELIN BERTHELOT PARKING DE LA GARE - LA FRETTE-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181, + 48.9796 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37112", + "ref": "FR*SOD*S*SIGE*371*1*_*_", + "name": "SIGEIF - 2 RUE MARCELIN BERTHELOT PARKING DE LA GARE - LA FRETTE-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1813, + 48.9621 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37212", + "ref": "FR*SOD*S*SIGE*372*1*_*_", + "name": "SIGEIF - 38 AVENUE DES LILAS - PARKING DE LA BASE DE LOISIRS - LA FRETTE-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1813, + 48.9621 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37211", + "ref": "FR*SOD*S*SIGE*372*1*_*_", + "name": "SIGEIF - 38 AVENUE DES LILAS - PARKING DE LA BASE DE LOISIRS - LA FRETTE-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.17747, + 48.9747 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37312", + "ref": "FR*SOD*S*SIGE*373*1*_*_", + "name": "SIGEIF - 64 QUAI DE SEINE PARKING DE LA MAIRIE - LA FRETTE SUR SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.17747, + 48.9747 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37311", + "ref": "FR*SOD*S*SIGE*373*1*_*_", + "name": "SIGEIF - 64 QUAI DE SEINE PARKING DE LA MAIRIE - LA FRETTE SUR SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29046, + 48.9795 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37412", + "ref": "FR*SOD*S*SIGE*374*1*_*_", + "name": "SIGEIF - VILLA FORESTIER PARKING GARE DU CHAMP DE COURSE - EAUBONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29046, + 48.9795 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37411", + "ref": "FR*SOD*S*SIGE*374*1*_*_", + "name": "SIGEIF - VILLA FORESTIER PARKING GARE DU CHAMP DE COURSE - EAUBONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -885,6 +209679,2964 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23112, + 49.0211 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37612", + "ref": "FR*SOD*S*SIGE*376*1*_*_", + "name": "SIGEIF - PARKING GARE DE VAUCELLES - TAVERNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23112, + 49.0211 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE37611", + "ref": "FR*SOD*S*SIGE*376*1*_*_", + "name": "SIGEIF - PARKING GARE DE VAUCELLES - TAVERNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2521, + 49.0236 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE38911", + "ref": "FR*SOD*S*SIGE*389*1*_*_", + "name": "SIGEIF - PARKING CHATAIGNERAIE - SAINT-LEU-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24848, + 49.0193 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39012", + "ref": "FR*SOD*S*SIGE*390*1*_*_", + "name": "SIGEIF - PARKING MAISON POUR TOUS - SAINT-LEU-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12663, + 49.0169 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36611", + "ref": "FR*SOD*S*SIGE*366*1*_*_", + "name": "SIGEIF - 9 MAIL DES OMBRAGES - HERBLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1977, + 49.007 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40311", + "ref": "FR*SOD*S*SIGE*403*1*_*_", + "name": "SIGEIF - AVENUE DES TILLEULS - MONTIGNY-LES-CORMEILLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20313, + 48.994 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40412", + "ref": "FR*SOD*S*SIGE*404*1*_*_", + "name": "SIGEIF - ARISTIDE MAILLOL - MONTIGNY-LES-CORMEILLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20313, + 48.994 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40411", + "ref": "FR*SOD*S*SIGE*404*1*_*_", + "name": "SIGEIF - ARISTIDE MAILLOL - MONTIGNY-LES-CORMEILLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23283, + 49.0022 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40512", + "ref": "FR*SOD*S*SIGE*405*1*_*_", + "name": "SIGEIF - CHAUSSEE JULES CESAR - LE PLESSIS-BOUCHARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23283, + 49.0022 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40511", + "ref": "FR*SOD*S*SIGE*405*1*_*_", + "name": "SIGEIF - CHAUSSEE JULES CESAR - LE PLESSIS-BOUCHARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23634, + 49.0019 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40611", + "ref": "FR*SOD*S*SIGE*406*1*_*_", + "name": "SIGEIF - DE GAULLE - LE PLESSIS-BOUCHARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23634, + 49.0019 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40612", + "ref": "FR*SOD*S*SIGE*406*1*_*_", + "name": "SIGEIF - DE GAULLE - LE PLESSIS-BOUCHARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2444, + 48.9976 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40712", + "ref": "FR*SOD*S*SIGE*407*1*_*_", + "name": "SIGEIF - GYMNASE GUILLAUMIE - LE PLESSIS-BOUCHARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2444, + 48.9976 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40711", + "ref": "FR*SOD*S*SIGE*407*1*_*_", + "name": "SIGEIF - GYMNASE GUILLAUMIE - LE PLESSIS-BOUCHARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22748, + 48.9843 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40812", + "ref": "FR*SOD*S*SIGE*408*1*_*_", + "name": "SIGEIF - 108 RUE DU GENERAL LECLERC PARKING CENTRE VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22748, + 48.9843 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40811", + "ref": "FR*SOD*S*SIGE*408*1*_*_", + "name": "SIGEIF - 108 RUE DU GENERAL LECLERC PARKING CENTRE VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218401, + 49.112389 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40911", + "ref": "FR*SOD*S*SIGE*409*1*_*_", + "name": "SIGEIF - 45 GRANDE RUE - LISLE-ADAM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218401, + 49.112389 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40912", + "ref": "FR*SOD*S*SIGE*409*1*_*_", + "name": "SIGEIF - 45 GRANDE RUE - LISLE-ADAM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216531, + 49.111305 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE41012", + "ref": "FR*SOD*S*SIGE*410*1*_*_", + "name": "SIGEIF - 15 RUE MARTEL - LISLE-ADAM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216531, + 49.111305 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE41011", + "ref": "FR*SOD*S*SIGE*410*1*_*_", + "name": "SIGEIF - 15 RUE MARTEL - LISLE-ADAM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.542078, + 48.701192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE41111", + "ref": "FR*SOD*S*SIGE*411*1*_*_", + "name": "SIGEIF - 1B RUE DU GENERAL LECLERC - PLACE DE LA MAIRIE - MANDRES-LES-ROSES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.542078, + 48.701192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE41112", + "ref": "FR*SOD*S*SIGE*411*1*_*_", + "name": "SIGEIF - 1B RUE DU GENERAL LECLERC - PLACE DE LA MAIRIE - MANDRES-LES-ROSES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181177, + 48.905838 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE41211", + "ref": "FR*SOD*S*SIGE*412*1*_*_", + "name": "SIGEIF - 11 RUE CLAUDE MONET AVANT LE RESTAURANT VAPORETTO - CARRIERES-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181177, + 48.905838 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE41212", + "ref": "FR*SOD*S*SIGE*412*1*_*_", + "name": "SIGEIF - 11 RUE CLAUDE MONET AVANT LE RESTAURANT VAPORETTO - CARRIERES-SUR-SEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.256419, + 48.921798 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE41312", + "ref": "FR*SOD*S*SIGE*413*1*_*_", + "name": "SIGEIF - 30 RUE DU MARECHAL JOFFRE - COLOMBES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.256419, + 48.921798 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE41311", + "ref": "FR*SOD*S*SIGE*413*1*_*_", + "name": "SIGEIF - 30 RUE DU MARECHAL JOFFRE - COLOMBES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252769, + 48.922914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE41412", + "ref": "FR*SOD*S*SIGE*414*1*_*_", + "name": "SIGEIF - 10 PLACE GENERAL LECLERC - COLOMBES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1977, + 49.007 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40312", + "ref": "FR*SOD*S*SIGE*403*1*_*_", + "name": "SIGEIF - AVENUE DES TILLEULS - MONTIGNY-LES-CORMEILLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18857, + 48.9854 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40212", + "ref": "FR*SOD*S*SIGE*402*1*_*_", + "name": "SIGEIF - PARKING GRANDE RUE - MONTIGNY-LES-CORMEILLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24591, + 49.0186 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39111", + "ref": "FR*SOD*S*SIGE*391*1*_*_", + "name": "SIGEIF - ECOLE LE VILLAGE - SAINT-LEU-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18857, + 48.9854 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40211", + "ref": "FR*SOD*S*SIGE*402*1*_*_", + "name": "SIGEIF - PARKING GRANDE RUE - MONTIGNY-LES-CORMEILLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24591, + 49.0186 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39112", + "ref": "FR*SOD*S*SIGE*391*1*_*_", + "name": "SIGEIF - ECOLE LE VILLAGE - SAINT-LEU-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.238, + 49.0107 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39212", + "ref": "FR*SOD*S*SIGE*392*1*_*_", + "name": "SIGEIF - MEDIATHEQUE - SAINT-LEU-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.238, + 49.0107 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39211", + "ref": "FR*SOD*S*SIGE*392*1*_*_", + "name": "SIGEIF - MEDIATHEQUE - SAINT-LEU-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2484, + 49.0057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39311", + "ref": "FR*SOD*S*SIGE*393*1*_*_", + "name": "SIGEIF - HOTEL DES IMPOTS - SAINT-LEU-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2484, + 49.0057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39312", + "ref": "FR*SOD*S*SIGE*393*1*_*_", + "name": "SIGEIF - HOTEL DES IMPOTS - SAINT-LEU-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25216, + 49.0132 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39412", + "ref": "FR*SOD*S*SIGE*394*1*_*_", + "name": "SIGEIF - PARKING DU JUBILE - SAINT-LEU-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25216, + 49.0132 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39411", + "ref": "FR*SOD*S*SIGE*394*1*_*_", + "name": "SIGEIF - PARKING DU JUBILE - SAINT-LEU-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24271, + 49.0197 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39511", + "ref": "FR*SOD*S*SIGE*395*1*_*_", + "name": "SIGEIF - POSTE - SAINT-LEU-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24271, + 49.0197 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39512", + "ref": "FR*SOD*S*SIGE*395*1*_*_", + "name": "SIGEIF - POSTE - SAINT-LEU-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2424, + 49.0158 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39611", + "ref": "FR*SOD*S*SIGE*396*1*_*_", + "name": "SIGEIF - PARKING GARE NORD - SAINT-LEU-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2424, + 49.0158 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39612", + "ref": "FR*SOD*S*SIGE*396*1*_*_", + "name": "SIGEIF - PARKING GARE NORD - SAINT-LEU-LA-FORET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.16317, + 49.0203 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39712", + "ref": "FR*SOD*S*SIGE*397*1*_*_", + "name": "SIGEIF - PARKING PISCINE - PIERRELAYE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.16317, + 49.0203 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39711", + "ref": "FR*SOD*S*SIGE*397*1*_*_", + "name": "SIGEIF - PARKING PISCINE - PIERRELAYE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1413, + 49.0223 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39811", + "ref": "FR*SOD*S*SIGE*398*1*_*_", + "name": "SIGEIF - RUE EMILE ZOLA - PIERRELAYE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1413, + 49.0223 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39812", + "ref": "FR*SOD*S*SIGE*398*1*_*_", + "name": "SIGEIF - RUE EMILE ZOLA - PIERRELAYE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.15733, + 49.0218 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39912", + "ref": "FR*SOD*S*SIGE*399*1*_*_", + "name": "SIGEIF - SALLE POLYVALENTE - PIERRELAYE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.15733, + 49.0218 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE39911", + "ref": "FR*SOD*S*SIGE*399*1*_*_", + "name": "SIGEIF - SALLE POLYVALENTE - PIERRELAYE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1552, + 49.0194 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40011", + "ref": "FR*SOD*S*SIGE*400*1*_*_", + "name": "SIGEIF - PARKING DE LA GARE - PIERRELAYE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1552, + 49.0194 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40012", + "ref": "FR*SOD*S*SIGE*400*1*_*_", + "name": "SIGEIF - PARKING DE LA GARE - PIERRELAYE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220406, + 48.85466 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE112", + "ref": "FR*SOD*S*SIGE*1*1*_*_", + "name": "SIGEIF - 32 BOULEVARD SENARD - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1991, + 48.9966 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE40111", + "ref": "FR*SOD*S*SIGE*401*1*_*_", + "name": "SIGEIF - PARKING PICASSO - MONTIGNY-LES-CORMEILLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1658, + 48.99 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36712", + "ref": "FR*SOD*S*SIGE*367*1*_*_", + "name": "SIGEIF - PLACE DE LAPPEL DU 18 JUIN 1940 - HERBLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12663, + 49.0169 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36612", + "ref": "FR*SOD*S*SIGE*366*1*_*_", + "name": "SIGEIF - 9 MAIL DES OMBRAGES - HERBLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.482415, + 48.902376 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31612", + "ref": "FR*SOD*S*SIGE*316*1*_*_", + "name": "SIGEIF - 91 RUE JULES GUESDE - BONDY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.205439, + 48.976037 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE32912", + "ref": "FR*SOD*S*SIGE*329*1*_*_", + "name": "SIGEIF - 27 RUE EMY LES PRES PARKING SALLE DES FETES - CORMEILLES EN PARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.209218, + 48.965775 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33012", + "ref": "FR*SOD*S*SIGE*330*1*_*_", + "name": "SIGEIF - 42 RUE DU NOYER DE LIMAGE PARKING - CORMEILLES EN PARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.202975, + 48.973692 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33112", + "ref": "FR*SOD*S*SIGE*331*1*_*_", + "name": "SIGEIF - 7 RUE DES CARRIERES EN FACE DU 10B PARKING - CORMEILLES-EN-PARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.202975, + 48.973692 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33111", + "ref": "FR*SOD*S*SIGE*331*1*_*_", + "name": "SIGEIF - 7 RUE DES CARRIERES EN FACE DU 10B PARKING - CORMEILLES-EN-PARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.199478, + 48.976976 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33212", + "ref": "FR*SOD*S*SIGE*332*1*_*_", + "name": "SIGEIF - 9 AVENUE EMELIE PARKING DE LHOTEL DE VILLE - CORMEILLES-EN-PARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.199478, + 48.976976 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33211", + "ref": "FR*SOD*S*SIGE*332*1*_*_", + "name": "SIGEIF - 9 AVENUE EMELIE PARKING DE LHOTEL DE VILLE - CORMEILLES-EN-PARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1851, + 49.0179 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33311", + "ref": "FR*SOD*S*SIGE*333*1*_*_", + "name": "SIGEIF - 6 AVENUE DE LEGALITE PARKING DU STADE - BEAUCHAMP", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1851, + 49.0179 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33312", + "ref": "FR*SOD*S*SIGE*333*1*_*_", + "name": "SIGEIF - 6 AVENUE DE LEGALITE PARKING DU STADE - BEAUCHAMP", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19591, + 49.0134 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33412", + "ref": "FR*SOD*S*SIGE*334*1*_*_", + "name": "SIGEIF - 47-49 AVENUE ROGER SALENGRO - BEAUCHAMP", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19591, + 49.0134 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33411", + "ref": "FR*SOD*S*SIGE*334*1*_*_", + "name": "SIGEIF - 47-49 AVENUE ROGER SALENGRO - BEAUCHAMP", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1904, + 48.9613 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33512", + "ref": "FR*SOD*S*SIGE*335*1*_*_", + "name": "SIGEIF - CHEMIN DE LA VOIE BLANCHE PARKING PISCINE - CORMEILLE-EN-PARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1904, + 48.9613 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33511", + "ref": "FR*SOD*S*SIGE*335*1*_*_", + "name": "SIGEIF - CHEMIN DE LA VOIE BLANCHE PARKING PISCINE - CORMEILLE-EN-PARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2001, + 48.9835 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33612", + "ref": "FR*SOD*S*SIGE*336*1*_*_", + "name": "SIGEIF - 4 ROUTE STRATEGIQUE - CORMEILLES-EN-PARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2001, + 48.9835 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33611", + "ref": "FR*SOD*S*SIGE*336*1*_*_", + "name": "SIGEIF - 4 ROUTE STRATEGIQUE - CORMEILLES-EN-PARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1996, + 49.0108 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33711", + "ref": "FR*SOD*S*SIGE*337*1*_*_", + "name": "SIGEIF - 22 AVENUE PASTEUR - BEAUCHAMP", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1996, + 49.0108 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33712", + "ref": "FR*SOD*S*SIGE*337*1*_*_", + "name": "SIGEIF - 22 AVENUE PASTEUR - BEAUCHAMP", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19769, + 49.0097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33811", + "ref": "FR*SOD*S*SIGE*338*1*_*_", + "name": "SIGEIF - 4-6 AVENUE DU MARECHAL JOFFRE - BEAUCHAMP", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19769, + 49.0097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33812", + "ref": "FR*SOD*S*SIGE*338*1*_*_", + "name": "SIGEIF - 4-6 AVENUE DU MARECHAL JOFFRE - BEAUCHAMP", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.211656, + 49.038018 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33911", + "ref": "FR*SOD*S*SIGE*339*1*_*_", + "name": "SIGEIF - ANGLE RUE DE VERDUN/RUE DU CHATEAU PARKING - BESSANCOURT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.211656, + 49.038018 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33912", + "ref": "FR*SOD*S*SIGE*339*1*_*_", + "name": "SIGEIF - ANGLE RUE DE VERDUN/RUE DU CHATEAU PARKING - BESSANCOURT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20896, + 49.0369 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34012", + "ref": "FR*SOD*S*SIGE*340*1*_*_", + "name": "SIGEIF - 9 RUE ANTOINE VOLLON PARKING DE LA GARE - BESSANCOURT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20896, + 49.0369 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34011", + "ref": "FR*SOD*S*SIGE*340*1*_*_", + "name": "SIGEIF - 9 RUE ANTOINE VOLLON PARKING DE LA GARE - BESSANCOURT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.209218, + 48.965775 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE33011", + "ref": "FR*SOD*S*SIGE*330*1*_*_", + "name": "SIGEIF - 42 RUE DU NOYER DE LIMAGE PARKING - CORMEILLES EN PARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.205439, + 48.976037 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE32911", + "ref": "FR*SOD*S*SIGE*329*1*_*_", + "name": "SIGEIF - 27 RUE EMY LES PRES PARKING SALLE DES FETES - CORMEILLES EN PARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2047, + 49.0408 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34112", + "ref": "FR*SOD*S*SIGE*341*1*_*_", + "name": "SIGEIF - 22 AVENUE LAMARTINE PARKING LAMARTINE - BESSANCOURT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.197618, + 48.958165 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE32811", + "ref": "FR*SOD*S*SIGE*328*1*_*_", + "name": "SIGEIF - 3 AVENUE DES FRERES LUMIERE PARKING DES ARTS - CORMEILLES-EN-PARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.478607, + 48.900927 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31711", + "ref": "FR*SOD*S*SIGE*317*1*_*_", + "name": "SIGEIF - PLACE CHARLES DE GAULLES - BONDY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.478607, + 48.900927 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31712", + "ref": "FR*SOD*S*SIGE*317*1*_*_", + "name": "SIGEIF - PLACE CHARLES DE GAULLES - BONDY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.460008, + 49.029892 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31911", + "ref": "FR*SOD*S*SIGE*319*1*_*_", + "name": "SIGEIF - 11 AVENUE ALBERT SARRAUT - GOUSSAINVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.460008, + 49.029892 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE31912", + "ref": "FR*SOD*S*SIGE*319*1*_*_", + "name": "SIGEIF - 11 AVENUE ALBERT SARRAUT - GOUSSAINVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.631761, + 48.882366 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE32012", + "ref": "FR*SOD*S*SIGE*320*1*_*_", + "name": "SIGEIF - 17 RUE LAZARE CARNOT - BROU-SUR-CHANTEREINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.631761, + 48.882366 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE32011", + "ref": "FR*SOD*S*SIGE*320*1*_*_", + "name": "SIGEIF - 17 RUE LAZARE CARNOT - BROU-SUR-CHANTEREINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -953,6 +212705,142 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.516052, + 48.898465 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE32211", + "ref": "FR*SOD*S*SIGE*322*1*_*_", + "name": "SIGEIF - 121 AVENUE DE LA RESISTANCE - LE RAINCY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.516052, + 48.898465 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE32212", + "ref": "FR*SOD*S*SIGE*322*1*_*_", + "name": "SIGEIF - 121 AVENUE DE LA RESISTANCE - LE RAINCY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.357092, + 48.918278 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE32312", + "ref": "FR*SOD*S*SIGE*323*1*_*_", + "name": "SIGEIF - 102-104 AVENUE DU PRESIDENT WILSON - PAVILLONS-SOUS-BOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.357092, + 48.918278 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE32311", + "ref": "FR*SOD*S*SIGE*323*1*_*_", + "name": "SIGEIF - 102-104 AVENUE DU PRESIDENT WILSON - PAVILLONS-SOUS-BOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -1021,6 +212909,3134 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.340589, + 49.025174 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE32511", + "ref": "FR*SOD*S*SIGE*325*1*_*_", + "name": "SIGEIF - PARKING DES FAUVETTES - DOMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.340589, + 49.025174 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE32512", + "ref": "FR*SOD*S*SIGE*325*1*_*_", + "name": "SIGEIF - PARKING DES FAUVETTES - DOMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.338942, + 49.030229 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE32611", + "ref": "FR*SOD*S*SIGE*326*1*_*_", + "name": "SIGEIF - MAIL DES PASSEMENTIERES - DOMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.338942, + 49.030229 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE32612", + "ref": "FR*SOD*S*SIGE*326*1*_*_", + "name": "SIGEIF - MAIL DES PASSEMENTIERES - DOMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.309573, + 48.972443 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE32711", + "ref": "FR*SOD*S*SIGE*327*1*_*_", + "name": "SIGEIF - 11 RUE BLANCHE - PARKING MISTINGUETT - ENGHIEN-LES-BIENS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.309573, + 48.972443 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE32712", + "ref": "FR*SOD*S*SIGE*327*1*_*_", + "name": "SIGEIF - 11 RUE BLANCHE - PARKING MISTINGUETT - ENGHIEN-LES-BIENS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.197618, + 48.958165 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE32812", + "ref": "FR*SOD*S*SIGE*328*1*_*_", + "name": "SIGEIF - 3 AVENUE DES FRERES LUMIERE PARKING DES ARTS - CORMEILLES-EN-PARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2047, + 49.0408 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34111", + "ref": "FR*SOD*S*SIGE*341*1*_*_", + "name": "SIGEIF - 22 AVENUE LAMARTINE PARKING LAMARTINE - BESSANCOURT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27736, + 48.9917 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34212", + "ref": "FR*SOD*S*SIGE*342*1*_*_", + "name": "SIGEIF - 4 RUE CRISTINO - GARCIA PLACE ETIENNE DOLET - EAUBONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.15787, + 49.0025 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36511", + "ref": "FR*SOD*S*SIGE*365*1*_*_", + "name": "SIGEIF - 7 ROUTE DE PIERRELAYE COMPLEXE DES SPORTS DES BEAUREGARDS - HERBLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25776, + 48.9895 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35412", + "ref": "FR*SOD*S*SIGE*354*1*_*_", + "name": "SIGEIF - 16 RUE DU 18 JUIN PARKING - ERMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22189, + 48.9986 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35512", + "ref": "FR*SOD*S*SIGE*355*1*_*_", + "name": "SIGEIF - RUE DES POMMIERS SAULNIERS PARKING DU STADE - FRANCONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22189, + 48.9986 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35511", + "ref": "FR*SOD*S*SIGE*355*1*_*_", + "name": "SIGEIF - RUE DES POMMIERS SAULNIERS PARKING DU STADE - FRANCONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2338, + 48.994 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35612", + "ref": "FR*SOD*S*SIGE*356*1*_*_", + "name": "SIGEIF - 4-6 RUE CHARLES BURGER PARKING DE LA GARE - FRANCONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2338, + 48.994 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35611", + "ref": "FR*SOD*S*SIGE*356*1*_*_", + "name": "SIGEIF - 4-6 RUE CHARLES BURGER PARKING DE LA GARE - FRANCONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2338, + 48.994 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35711", + "ref": "FR*SOD*S*SIGE*357*1*_*_", + "name": "SIGEIF - 4-6 RUE CHARLES BURGER PARKING DE LA GARE 2 - FRANCONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2338, + 48.994 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35712", + "ref": "FR*SOD*S*SIGE*357*1*_*_", + "name": "SIGEIF - 4-6 RUE CHARLES BURGER PARKING DE LA GARE 2 - FRANCONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2229, + 48.9911 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35811", + "ref": "FR*SOD*S*SIGE*358*1*_*_", + "name": "SIGEIF - 25 AVENUE DES MARAIS PARKING DE LA PISCINE ET DE LA PATINOIRE - FRANCONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2229, + 48.9911 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35812", + "ref": "FR*SOD*S*SIGE*358*1*_*_", + "name": "SIGEIF - 25 AVENUE DES MARAIS PARKING DE LA PISCINE ET DE LA PATINOIRE - FRANCONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2229, + 48.9911 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35912", + "ref": "FR*SOD*S*SIGE*359*1*_*_", + "name": "SIGEIF - 25 AVENUE DES MARAIS PARKING DE LA PISCINE ET DE LA PATINOIRE 2 - FRANCONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2229, + 48.9911 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35911", + "ref": "FR*SOD*S*SIGE*359*1*_*_", + "name": "SIGEIF - 25 AVENUE DES MARAIS PARKING DE LA PISCINE ET DE LA PATINOIRE 2 - FRANCONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2361, + 48.9843 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36011", + "ref": "FR*SOD*S*SIGE*360*1*_*_", + "name": "SIGEIF - 117 TROISIEME AVENUE PARKING - FRANCONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2361, + 48.9843 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36012", + "ref": "FR*SOD*S*SIGE*360*1*_*_", + "name": "SIGEIF - 117 TROISIEME AVENUE PARKING - FRANCONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2277, + 48.9842 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36111", + "ref": "FR*SOD*S*SIGE*361*1*_*_", + "name": "SIGEIF - 106 RUE DU GENERAL LECLERC PARKING CENTRE VILLE - FRANCONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2277, + 48.9842 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36112", + "ref": "FR*SOD*S*SIGE*361*1*_*_", + "name": "SIGEIF - 106 RUE DU GENERAL LECLERC PARKING CENTRE VILLE - FRANCONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206, + 49.0509 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36211", + "ref": "FR*SOD*S*SIGE*362*1*_*_", + "name": "SIGEIF - 2 RUE DE COUDRAY - FREPILLON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206, + 49.0509 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36212", + "ref": "FR*SOD*S*SIGE*362*1*_*_", + "name": "SIGEIF - 2 RUE DE COUDRAY - FREPILLON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.127156, + 49.004227 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36312", + "ref": "FR*SOD*S*SIGE*363*1*_*_", + "name": "SIGEIF - 5 MAIL JEAN-BAPTISTE POQUELIN PARKING DU SUPER MARCHE - HERBLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.127156, + 49.004227 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36311", + "ref": "FR*SOD*S*SIGE*363*1*_*_", + "name": "SIGEIF - 5 MAIL JEAN-BAPTISTE POQUELIN PARKING DU SUPER MARCHE - HERBLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.14247, + 49.0004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36411", + "ref": "FR*SOD*S*SIGE*364*1*_*_", + "name": "SIGEIF - 1 RUE FRANCOIS TRUFFAUT PARKING DE LA PISCINE - HERBLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.14247, + 49.0004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36412", + "ref": "FR*SOD*S*SIGE*364*1*_*_", + "name": "SIGEIF - 1 RUE FRANCOIS TRUFFAUT PARKING DE LA PISCINE - HERBLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.15787, + 49.0025 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE36512", + "ref": "FR*SOD*S*SIGE*365*1*_*_", + "name": "SIGEIF - 7 ROUTE DE PIERRELAYE COMPLEXE DES SPORTS DES BEAUREGARDS - HERBLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25776, + 48.9895 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35411", + "ref": "FR*SOD*S*SIGE*354*1*_*_", + "name": "SIGEIF - 16 RUE DU 18 JUIN PARKING - ERMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26332, + 48.9852 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35311", + "ref": "FR*SOD*S*SIGE*353*1*_*_", + "name": "SIGEIF - 56 RUE MAURICE BERTEAUX - ERMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27736, + 48.9917 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34211", + "ref": "FR*SOD*S*SIGE*342*1*_*_", + "name": "SIGEIF - 4 RUE CRISTINO - GARCIA PLACE ETIENNE DOLET - EAUBONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26332, + 48.9852 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35312", + "ref": "FR*SOD*S*SIGE*353*1*_*_", + "name": "SIGEIF - 56 RUE MAURICE BERTEAUX - ERMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27636, + 49.0022 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34312", + "ref": "FR*SOD*S*SIGE*343*1*_*_", + "name": "SIGEIF - 32 RUE FLAMMARION PARKING PLAINE DU LUAT - EAUBONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27636, + 49.0022 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34311", + "ref": "FR*SOD*S*SIGE*343*1*_*_", + "name": "SIGEIF - 32 RUE FLAMMARION PARKING PLAINE DU LUAT - EAUBONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27736, + 48.9917 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34411", + "ref": "FR*SOD*S*SIGE*344*1*_*_", + "name": "SIGEIF - 4 RUE CRISTINO GARCIA - PLACE ETIENNE DOLET - PARKING MEDIATHEQUE 2 - EAUBONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27736, + 48.9917 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34412", + "ref": "FR*SOD*S*SIGE*344*1*_*_", + "name": "SIGEIF - 4 RUE CRISTINO GARCIA - PLACE ETIENNE DOLET - PARKING MEDIATHEQUE 2 - EAUBONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27736, + 48.9917 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34412", + "ref": "FR*SOD*S*SIGE*344*1*_*_", + "name": "SIGEIF - 4 RUE CRISTINO GARCIA - PLACE ETIENNE DOLET - PARKING MEDIATHEQUE 2 - EAUBONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27439, + 48.98 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34512", + "ref": "FR*SOD*S*SIGE*345*1*_*_", + "name": "SIGEIF - 22 RUE DES BUSSYS INTERSECTION RUE HENRI COUDERT - EAUBONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27439, + 48.98 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34512", + "ref": "FR*SOD*S*SIGE*345*1*_*_", + "name": "SIGEIF - 22 RUE DES BUSSYS INTERSECTION RUE HENRI COUDERT - EAUBONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27439, + 48.98 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34511", + "ref": "FR*SOD*S*SIGE*345*1*_*_", + "name": "SIGEIF - 22 RUE DES BUSSYS INTERSECTION RUE HENRI COUDERT - EAUBONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26679, + 48.995 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34611", + "ref": "FR*SOD*S*SIGE*346*1*_*_", + "name": "SIGEIF - 2 RUE DES PENDANTS - PARKING CTM - EAUBONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26679, + 48.995 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34612", + "ref": "FR*SOD*S*SIGE*346*1*_*_", + "name": "SIGEIF - 2 RUE DES PENDANTS - PARKING CTM - EAUBONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28509, + 48.9913 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34712", + "ref": "FR*SOD*S*SIGE*347*1*_*_", + "name": "SIGEIF - 16 RUE DE SOISY PARKING ESPACE JEUNESSE ET FAMILLES - EAUBONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28509, + 48.9913 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34711", + "ref": "FR*SOD*S*SIGE*347*1*_*_", + "name": "SIGEIF - 16 RUE DE SOISY PARKING ESPACE JEUNESSE ET FAMILLES - EAUBONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26089, + 48.9913 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34911", + "ref": "FR*SOD*S*SIGE*349*1*_*_", + "name": "SIGEIF - AVENUE DE LA PREMIERE ARMEE FRANCAISE AUDIENCE - ERMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26089, + 48.9913 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE34912", + "ref": "FR*SOD*S*SIGE*349*1*_*_", + "name": "SIGEIF - AVENUE DE LA PREMIERE ARMEE FRANCAISE AUDIENCE - ERMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26261, + 48.9898 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35012", + "ref": "FR*SOD*S*SIGE*350*1*_*_", + "name": "SIGEIF - 43 RUE DE LA HALTE PARKING GARE ERMONT HALTE - ERMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26261, + 48.9898 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35011", + "ref": "FR*SOD*S*SIGE*350*1*_*_", + "name": "SIGEIF - 43 RUE DE LA HALTE PARKING GARE ERMONT HALTE - ERMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25678, + 48.985 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35112", + "ref": "FR*SOD*S*SIGE*351*1*_*_", + "name": "SIGEIF - 2 RUE JEAN JAURES PARKING DE CERNAY - ERMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25678, + 48.985 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35111", + "ref": "FR*SOD*S*SIGE*351*1*_*_", + "name": "SIGEIF - 2 RUE JEAN JAURES PARKING DE CERNAY - ERMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27183, + 48.9797 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35212", + "ref": "FR*SOD*S*SIGE*352*1*_*_", + "name": "SIGEIF - 8 RUE JEAN ESPRANGLE PARKING GARE DERMONT-EAUBONNE - ERMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27183, + 48.9797 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35211", + "ref": "FR*SOD*S*SIGE*352*1*_*_", + "name": "SIGEIF - 8 RUE JEAN ESPRANGLE PARKING GARE DERMONT-EAUBONNE - ERMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26332, + 48.9852 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE35312", + "ref": "FR*SOD*S*SIGE*353*1*_*_", + "name": "SIGEIF - 56 RUE MAURICE BERTEAUX - ERMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220406, + 48.85466 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE111", + "ref": "FR*SOD*S*SIGE*1*1*_*_", + "name": "SIGEIF - 32 BOULEVARD SENARD - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.280009, + 48.816557 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE4041", + "ref": "FR*SOD*S*SIGE*40*4*_*_", + "name": "SIGEIF - 14 RUE LARMEROUX - VANVES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.299287, + 48.810455 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE12312", + "ref": "FR*SOD*S*SIGE*123*1*_*_", + "name": "SIGEIF - 188 AVENUE DE PARIS - CHATILLON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.064108, + 48.803135 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16812", + "ref": "FR*SOD*S*SIGE*168*1*_*_", + "name": "SIGEIF - PLACE DE MADAME DE MAINTENON - SAINT-CYR-LECOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.569549, + 48.929952 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17111", + "ref": "FR*SOD*S*SIGE*171*1*_*_", + "name": "SIGEIF - PARKING PLACE DES FETES - VAUJOURS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.569549, + 48.929952 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17112", + "ref": "FR*SOD*S*SIGE*171*1*_*_", + "name": "SIGEIF - PARKING PLACE DES FETES - VAUJOURS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513673, + 48.748812 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17011", + "ref": "FR*SOD*S*SIGE*170*1*_*_", + "name": "SIGEIF - RUE DE SUCY - BOISSY-SAINT-LEGER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513673, + 48.748812 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17012", + "ref": "FR*SOD*S*SIGE*170*1*_*_", + "name": "SIGEIF - RUE DE SUCY - BOISSY-SAINT-LEGER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.169688, + 48.846574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16911", + "ref": "FR*SOD*S*SIGE*169*1*_*_", + "name": "SIGEIF - 44 AVENUE DE LA CELLE ST CLOUD - VAUCRESSON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.169688, + 48.846574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16912", + "ref": "FR*SOD*S*SIGE*169*1*_*_", + "name": "SIGEIF - 44 AVENUE DE LA CELLE ST CLOUD - VAUCRESSON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.064108, + 48.803135 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16811", + "ref": "FR*SOD*S*SIGE*168*1*_*_", + "name": "SIGEIF - PLACE DE MADAME DE MAINTENON - SAINT-CYR-LECOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.149957, + 48.833635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16711", + "ref": "FR*SOD*S*SIGE*167*1*_*_", + "name": "SIGEIF - 23 ALLEE DU COLLEGE - VAUCRESSON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.456492, + 48.808336 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18112", + "ref": "FR*SOD*S*SIGE*181*1*_*_", + "name": "SIGEIF - RUE DANIELLE CASANOVA - MAISONS-ALFORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.149957, + 48.833635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16712", + "ref": "FR*SOD*S*SIGE*167*1*_*_", + "name": "SIGEIF - 23 ALLEE DU COLLEGE - VAUCRESSON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.518227, + 48.923959 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16612", + "ref": "FR*SOD*S*SIGE*166*1*_*_", + "name": "SIGEIF - 20 RESIDENCE PIERRE MENDES FRANCE - LIVRY-GARGAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.518227, + 48.923959 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16611", + "ref": "FR*SOD*S*SIGE*166*1*_*_", + "name": "SIGEIF - 20 RESIDENCE PIERRE MENDES FRANCE - LIVRY-GARGAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23971, + 48.879812 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16511", + "ref": "FR*SOD*S*SIGE*165*1*_*_", + "name": "SIGEIF - 23 BVD RICHARD WALLACE - PUTEAUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23971, + 48.879812 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16512", + "ref": "FR*SOD*S*SIGE*165*1*_*_", + "name": "SIGEIF - 23 BVD RICHARD WALLACE - PUTEAUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.069517, + 48.799693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16412", + "ref": "FR*SOD*S*SIGE*164*1*_*_", + "name": "SIGEIF - PARKING REPUBLIQUE - SAINT-CYR-LECOLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.069517, + 48.799693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16411", + "ref": "FR*SOD*S*SIGE*164*1*_*_", + "name": "SIGEIF - PARKING REPUBLIQUE - SAINT-CYR-LECOLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.569549, + 48.934912 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17211", + "ref": "FR*SOD*S*SIGE*172*1*_*_", + "name": "SIGEIF - 78 RUE DE MEAUX - VAUJOURS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.569549, + 48.934912 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17212", + "ref": "FR*SOD*S*SIGE*172*1*_*_", + "name": "SIGEIF - 78 RUE DE MEAUX - VAUJOURS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326942, + 48.762217 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17311", + "ref": "FR*SOD*S*SIGE*173*1*_*_", + "name": "SIGEIF - 66 RUE EMILE ZOLA - FRESNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326942, + 48.762217 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17312", + "ref": "FR*SOD*S*SIGE*173*1*_*_", + "name": "SIGEIF - 66 RUE EMILE ZOLA - FRESNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213168, + 48.821562 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18011", + "ref": "FR*SOD*S*SIGE*180*1*_*_", + "name": "SIGEIF - RUE GEORGES BONNEFOUS - SEVRES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.612309, + 48.98021 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17912", + "ref": "FR*SOD*S*SIGE*179*1*_*_", + "name": "SIGEIF - RUE MARCEL PAUL - MITRY-MORY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.612309, + 48.98021 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17911", + "ref": "FR*SOD*S*SIGE*179*1*_*_", + "name": "SIGEIF - RUE MARCEL PAUL - MITRY-MORY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.642232, + 48.974569 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17812", + "ref": "FR*SOD*S*SIGE*178*1*_*_", + "name": "SIGEIF - 3 RUE PAUL GAUGUIN - MITRY-MORY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.642232, + 48.974569 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17811", + "ref": "FR*SOD*S*SIGE*178*1*_*_", + "name": "SIGEIF - 3 RUE PAUL GAUGUIN - MITRY-MORY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313813, + 48.919804 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17721", + "ref": "FR*SOD*S*SIGE*177*2*_*_", + "name": "SIGEIF - 215 AVENUE DES GRESILLONS - GENNEVILLIERS - 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313813, + 48.919804 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17741", + "ref": "FR*SOD*S*SIGE*177*4*_*_", + "name": "SIGEIF - 215 AVENUE DES GRESILLONS - GENNEVILLIERS - 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313813, + 48.919804 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17731", + "ref": "FR*SOD*S*SIGE*177*3*_*_", + "name": "SIGEIF - 215 AVENUE DES GRESILLONS - GENNEVILLIERS - 2", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313813, + 48.919804 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17711", + "ref": "FR*SOD*S*SIGE*177*1*_*_", + "name": "SIGEIF - 215 AVENUE DES GRESILLONS - GENNEVILLIERS - 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.637631, + 48.873611 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17611", + "ref": "FR*SOD*S*SIGE*176*1*_*_", + "name": "SIGEIF - 30 AVENUE JEAN JAURES - VAIRES-SUR-MARNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.637631, + 48.873611 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17612", + "ref": "FR*SOD*S*SIGE*176*1*_*_", + "name": "SIGEIF - 30 AVENUE JEAN JAURES - VAIRES-SUR-MARNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -1089,6 +216105,2760 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288179, + 49.003723 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17411", + "ref": "FR*SOD*S*SIGE*174*1*_*_", + "name": "SIGEIF - RUE DU 18 JUIN - MARGENCY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288179, + 49.003723 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE17412", + "ref": "FR*SOD*S*SIGE*174*1*_*_", + "name": "SIGEIF - RUE DU 18 JUIN - MARGENCY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.199466, + 48.827906 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16311", + "ref": "FR*SOD*S*SIGE*163*1*_*_", + "name": "SIGEIF - 10 RUE RIOCREUX - SEVRES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.199466, + 48.827906 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16312", + "ref": "FR*SOD*S*SIGE*163*1*_*_", + "name": "SIGEIF - 10 RUE RIOCREUX - SEVRES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432908, + 48.797861 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16212", + "ref": "FR*SOD*S*SIGE*162*1*_*_", + "name": "SIGEIF - 166 AVENUE JEAN JAURES - MAISONS-ALFORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.332291, + 48.935574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15351", + "ref": "FR*SOD*S*SIGE*153*5*_*_", + "name": "SIGEIF - 30 AVENUE DE VERDUN - VILLENEUVE-LA-GARENNE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306583, + 48.972892 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8431", + "ref": "FR*SOD*S*SIGE*84*3*_*_", + "name": "SIGEIF - 19 RUE DE LARRIVEE - ENGHIEN-LES-BAINS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306583, + 48.972892 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8441", + "ref": "FR*SOD*S*SIGE*84*4*_*_", + "name": "SIGEIF - 19 RUE DE LARRIVEE - ENGHIEN-LES-BAINS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304623, + 48.904369 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8541", + "ref": "FR*SOD*S*SIGE*85*4*_*_", + "name": "SIGEIF - 87 RUE MARTRE - CLICHY", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304623, + 48.904369 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8551", + "ref": "FR*SOD*S*SIGE*85*5*_*_", + "name": "SIGEIF - 87 RUE MARTRE - CLICHY", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304623, + 48.904369 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8531", + "ref": "FR*SOD*S*SIGE*85*3*_*_", + "name": "SIGEIF - 87 RUE MARTRE - CLICHY", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304623, + 48.904369 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8521", + "ref": "FR*SOD*S*SIGE*85*2*_*_", + "name": "SIGEIF - 87 RUE MARTRE - CLICHY", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304623, + 48.904369 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8511", + "ref": "FR*SOD*S*SIGE*85*1*_*_", + "name": "SIGEIF - 87 RUE MARTRE - CLICHY", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.309161, + 48.909744 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8621", + "ref": "FR*SOD*S*SIGE*86*2*_*_", + "name": "SIGEIF - 7 AV CLAUDE DEBUSSY - CLICHY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.309161, + 48.909744 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8631", + "ref": "FR*SOD*S*SIGE*86*3*_*_", + "name": "SIGEIF - 7 AV CLAUDE DEBUSSY - CLICHY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.309161, + 48.909744 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8641", + "ref": "FR*SOD*S*SIGE*86*4*_*_", + "name": "SIGEIF - 7 AV CLAUDE DEBUSSY - CLICHY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.309161, + 48.909744 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8611", + "ref": "FR*SOD*S*SIGE*86*1*_*_", + "name": "SIGEIF - 7 AV CLAUDE DEBUSSY - CLICHY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2987, + 48.901286 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8731", + "ref": "FR*SOD*S*SIGE*87*3*_*_", + "name": "SIGEIF - 4 RUE VALITON - CLICHY", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2987, + 48.901286 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8751", + "ref": "FR*SOD*S*SIGE*87*5*_*_", + "name": "SIGEIF - 4 RUE VALITON - CLICHY", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2987, + 48.901286 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8741", + "ref": "FR*SOD*S*SIGE*87*4*_*_", + "name": "SIGEIF - 4 RUE VALITON - CLICHY", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2987, + 48.901286 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8711", + "ref": "FR*SOD*S*SIGE*87*1*_*_", + "name": "SIGEIF - 4 RUE VALITON - CLICHY", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306583, + 48.972892 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8411", + "ref": "FR*SOD*S*SIGE*84*1*_*_", + "name": "SIGEIF - 19 RUE DE LARRIVEE - ENGHIEN-LES-BAINS", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.332291, + 48.935574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15331", + "ref": "FR*SOD*S*SIGE*153*3*_*_", + "name": "SIGEIF - 30 AVENUE DE VERDUN - VILLENEUVE-LA-GARENNE", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432908, + 48.797861 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16211", + "ref": "FR*SOD*S*SIGE*162*1*_*_", + "name": "SIGEIF - 166 AVENUE JEAN JAURES - MAISONS-ALFORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.332291, + 48.935574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15361", + "ref": "FR*SOD*S*SIGE*153*6*_*_", + "name": "SIGEIF - 30 AVENUE DE VERDUN - VILLENEUVE-LA-GARENNE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.244992, + 48.880643 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16012", + "ref": "FR*SOD*S*SIGE*160*1*_*_", + "name": "SIGEIF - QUAI DE DION BOUTON - PUTEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.244992, + 48.880643 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE16011", + "ref": "FR*SOD*S*SIGE*160*1*_*_", + "name": "SIGEIF - QUAI DE DION BOUTON - PUTEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.245622, + 48.884208 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15912", + "ref": "FR*SOD*S*SIGE*159*1*_*_", + "name": "SIGEIF - 48 RUE JEAN JAURES - PUTEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.245622, + 48.884208 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15911", + "ref": "FR*SOD*S*SIGE*159*1*_*_", + "name": "SIGEIF - 48 RUE JEAN JAURES - PUTEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.059222, + 48.803114 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15812", + "ref": "FR*SOD*S*SIGE*158*1*_*_", + "name": "SIGEIF - PARKING RUE LUCIEN SAMPAIX - SAINT-CYR-LECOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.059222, + 48.803114 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15811", + "ref": "FR*SOD*S*SIGE*158*1*_*_", + "name": "SIGEIF - PARKING RUE LUCIEN SAMPAIX - SAINT-CYR-LECOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241748, + 48.808116 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15711", + "ref": "FR*SOD*S*SIGE*157*1*_*_", + "name": "SIGEIF - 1 RUE DES GRIMETTES - MEUDON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241748, + 48.808116 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15712", + "ref": "FR*SOD*S*SIGE*157*1*_*_", + "name": "SIGEIF - 1 RUE DES GRIMETTES - MEUDON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.515321, + 49.006211 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15611", + "ref": "FR*SOD*S*SIGE*156*1*_*_", + "name": "SIGEIF - RUE HOUDART - ROISSY-EN-FRANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.515321, + 49.006211 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15612", + "ref": "FR*SOD*S*SIGE*156*1*_*_", + "name": "SIGEIF - RUE HOUDART - ROISSY-EN-FRANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.519465, + 49.001676 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15511", + "ref": "FR*SOD*S*SIGE*155*1*_*_", + "name": "SIGEIF - FACE AU 7 ALLEE DU VERGER - PARKING DE LORANGERIE - ROISSY-EN-FRANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.519465, + 49.001676 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15512", + "ref": "FR*SOD*S*SIGE*155*1*_*_", + "name": "SIGEIF - FACE AU 7 ALLEE DU VERGER - PARKING DE LORANGERIE - ROISSY-EN-FRANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.332291, + 48.935574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15311", + "ref": "FR*SOD*S*SIGE*153*1*_*_", + "name": "SIGEIF - 30 AVENUE DE VERDUN - VILLENEUVE-LA-GARENNE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.332291, + 48.935574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15341", + "ref": "FR*SOD*S*SIGE*153*4*_*_", + "name": "SIGEIF - 30 AVENUE DE VERDUN - VILLENEUVE-LA-GARENNE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.332291, + 48.935574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15321", + "ref": "FR*SOD*S*SIGE*153*2*_*_", + "name": "SIGEIF - 30 AVENUE DE VERDUN - VILLENEUVE-LA-GARENNE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213168, + 48.821562 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18012", + "ref": "FR*SOD*S*SIGE*180*1*_*_", + "name": "SIGEIF - RUE GEORGES BONNEFOUS - SEVRES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.456492, + 48.808336 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18111", + "ref": "FR*SOD*S*SIGE*181*1*_*_", + "name": "SIGEIF - RUE DANIELLE CASANOVA - MAISONS-ALFORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.471163, + 49.002593 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20311", + "ref": "FR*SOD*S*SIGE*203*1*_*_", + "name": "SIGEIF - 68 RUE DE PARIS - LE THILLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322472, + 49.045307 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19612", + "ref": "FR*SOD*S*SIGE*196*1*_*_", + "name": "SIGEIF - RUE LOUISE MICHEL - BOUFFEMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24842, + 48.923662 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19841", + "ref": "FR*SOD*S*SIGE*198*4*_*_", + "name": "SIGEIF - 1 RUE GOUNOD - COLOMBES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24842, + 48.923662 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19811", + "ref": "FR*SOD*S*SIGE*198*1*_*_", + "name": "SIGEIF - 1 RUE GOUNOD - COLOMBES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24842, + 48.923662 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19831", + "ref": "FR*SOD*S*SIGE*198*3*_*_", + "name": "SIGEIF - 1 RUE GOUNOD - COLOMBES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24842, + 48.923662 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19821", + "ref": "FR*SOD*S*SIGE*198*2*_*_", + "name": "SIGEIF - 1 RUE GOUNOD - COLOMBES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1842, + 48.800118 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19712", + "ref": "FR*SOD*S*SIGE*197*1*_*_", + "name": "SIGEIF - 1 RUE RENE - VIROFLAY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1842, + 48.800118 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19711", + "ref": "FR*SOD*S*SIGE*197*1*_*_", + "name": "SIGEIF - 1 RUE RENE - VIROFLAY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322472, + 49.045307 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19611", + "ref": "FR*SOD*S*SIGE*196*1*_*_", + "name": "SIGEIF - RUE LOUISE MICHEL - BOUFFEMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310958, + 49.041152 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19512", + "ref": "FR*SOD*S*SIGE*195*1*_*_", + "name": "SIGEIF - 23 RUE DES CORDONNIERS - BOUFFEMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265278, + 48.819562 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18211", + "ref": "FR*SOD*S*SIGE*182*1*_*_", + "name": "SIGEIF - 1 RUE DE LEGALITE - ISSY-LES-MOULINEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310958, + 49.041152 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19511", + "ref": "FR*SOD*S*SIGE*195*1*_*_", + "name": "SIGEIF - 23 RUE DES CORDONNIERS - BOUFFEMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.479328, + 49.009207 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19411", + "ref": "FR*SOD*S*SIGE*194*1*_*_", + "name": "SIGEIF - CHEMIN SAINT DENIS - THILLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.479328, + 49.009207 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19412", + "ref": "FR*SOD*S*SIGE*194*1*_*_", + "name": "SIGEIF - CHEMIN SAINT DENIS - THILLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.223497, + 48.78506 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19322", + "ref": "FR*SOD*S*SIGE*193*2*_*_", + "name": "SIGEIF - AV DE LATTRE DE TASSIGNY - MEUDON", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.223497, + 48.78506 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19311", + "ref": "FR*SOD*S*SIGE*193*1*_*_", + "name": "SIGEIF - AV DE LATTRE DE TASSIGNY - MEUDON", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.223497, + 48.78506 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19312", + "ref": "FR*SOD*S*SIGE*193*1*_*_", + "name": "SIGEIF - AV DE LATTRE DE TASSIGNY - MEUDON", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.223497, + 48.78506 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19321", + "ref": "FR*SOD*S*SIGE*193*2*_*_", + "name": "SIGEIF - AV DE LATTRE DE TASSIGNY - MEUDON", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.260623, + 48.931418 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19931", + "ref": "FR*SOD*S*SIGE*199*3*_*_", + "name": "SIGEIF - RUE AUGUSTE RENOIR - COLOMBES", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.260623, + 48.931418 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19961", + "ref": "FR*SOD*S*SIGE*199*6*_*_", + "name": "SIGEIF - RUE AUGUSTE RENOIR - COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.260623, + 48.931418 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19911", + "ref": "FR*SOD*S*SIGE*199*1*_*_", + "name": "SIGEIF - RUE AUGUSTE RENOIR - COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.260623, + 48.931418 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19921", + "ref": "FR*SOD*S*SIGE*199*2*_*_", + "name": "SIGEIF - RUE AUGUSTE RENOIR - COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.451673, + 49.049662 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20212", + "ref": "FR*SOD*S*SIGE*202*1*_*_", + "name": "SIGEIF - RUE MAITRE RENAUD - FONTENAY-EN-PARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.451673, + 49.049662 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20211", + "ref": "FR*SOD*S*SIGE*202*1*_*_", + "name": "SIGEIF - RUE MAITRE RENAUD - FONTENAY-EN-PARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25284, + 48.927836 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20111", + "ref": "FR*SOD*S*SIGE*201*1*_*_", + "name": "SIGEIF - AVENUE AUDRA - COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25284, + 48.927836 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20141", + "ref": "FR*SOD*S*SIGE*201*4*_*_", + "name": "SIGEIF - AVENUE AUDRA - COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25284, + 48.927836 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20121", + "ref": "FR*SOD*S*SIGE*201*2*_*_", + "name": "SIGEIF - AVENUE AUDRA - COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25284, + 48.927836 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20151", + "ref": "FR*SOD*S*SIGE*201*5*_*_", + "name": "SIGEIF - AVENUE AUDRA - COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25284, + 48.927836 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20131", + "ref": "FR*SOD*S*SIGE*201*3*_*_", + "name": "SIGEIF - AVENUE AUDRA - COLOMBES", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25284, + 48.927836 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20161", + "ref": "FR*SOD*S*SIGE*201*6*_*_", + "name": "SIGEIF - AVENUE AUDRA - COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.228808, + 48.922232 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20051", + "ref": "FR*SOD*S*SIGE*200*5*_*_", + "name": "SIGEIF - 52 RUE DE SEINE - COLOMBES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.228808, + 48.922232 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20031", + "ref": "FR*SOD*S*SIGE*200*3*_*_", + "name": "SIGEIF - 52 RUE DE SEINE - COLOMBES", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.228808, + 48.922232 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20011", + "ref": "FR*SOD*S*SIGE*200*1*_*_", + "name": "SIGEIF - 52 RUE DE SEINE - COLOMBES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51808, + 48.909806 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE12111", + "ref": "FR*SOD*S*SIGE*121*1*_*_", + "name": "SIGEIF - PLACE DE LA LIBERATION - PAVILLONS-SOUS-BOIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.228808, + 48.922232 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20021", + "ref": "FR*SOD*S*SIGE*200*2*_*_", + "name": "SIGEIF - 52 RUE DE SEINE - COLOMBES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.260623, + 48.931418 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19941", + "ref": "FR*SOD*S*SIGE*199*4*_*_", + "name": "SIGEIF - RUE AUGUSTE RENOIR - COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.260623, + 48.931418 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19951", + "ref": "FR*SOD*S*SIGE*199*5*_*_", + "name": "SIGEIF - RUE AUGUSTE RENOIR - COLOMBES", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.028097, + 48.799939 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19212", + "ref": "FR*SOD*S*SIGE*192*1*_*_", + "name": "SIGEIF - 4 RUE BELTRAME - BOIS DARCY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.028097, + 48.799939 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19211", + "ref": "FR*SOD*S*SIGE*192*1*_*_", + "name": "SIGEIF - 4 RUE BELTRAME - BOIS DARCY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -1123,6 +218893,618 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321975, + 48.80181 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18631", + "ref": "FR*SOD*S*SIGE*186*3*_*_", + "name": "SIGEIF - 127 RUE DE VERDUN - BAGNEUX", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313149, + 48.790097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18551", + "ref": "FR*SOD*S*SIGE*185*5*_*_", + "name": "SIGEIF - RUE DU DOCTEUR SCHWEITZER - BAGNEUX", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313149, + 48.790097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18541", + "ref": "FR*SOD*S*SIGE*185*4*_*_", + "name": "SIGEIF - RUE DU DOCTEUR SCHWEITZER - BAGNEUX", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313149, + 48.790097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18511", + "ref": "FR*SOD*S*SIGE*185*1*_*_", + "name": "SIGEIF - RUE DU DOCTEUR SCHWEITZER - BAGNEUX", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313149, + 48.790097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18531", + "ref": "FR*SOD*S*SIGE*185*3*_*_", + "name": "SIGEIF - RUE DU DOCTEUR SCHWEITZER - BAGNEUX", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313149, + 48.790097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18521", + "ref": "FR*SOD*S*SIGE*185*2*_*_", + "name": "SIGEIF - RUE DU DOCTEUR SCHWEITZER - BAGNEUX", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221831, + 48.8768 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18421", + "ref": "FR*SOD*S*SIGE*184*2*_*_", + "name": "SIGEIF - 26 RUE HUCHE - SURESNES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221831, + 48.8768 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18441", + "ref": "FR*SOD*S*SIGE*184*4*_*_", + "name": "SIGEIF - 26 RUE HUCHE - SURESNES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221831, + 48.8768 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18411", + "ref": "FR*SOD*S*SIGE*184*1*_*_", + "name": "SIGEIF - 26 RUE HUCHE - SURESNES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221831, + 48.8768 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18451", + "ref": "FR*SOD*S*SIGE*184*5*_*_", + "name": "SIGEIF - 26 RUE HUCHE - SURESNES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221831, + 48.8768 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18431", + "ref": "FR*SOD*S*SIGE*184*3*_*_", + "name": "SIGEIF - 26 RUE HUCHE - SURESNES", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.209007, + 48.863623 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18341", + "ref": "FR*SOD*S*SIGE*183*4*_*_", + "name": "SIGEIF - 21 AVENUE JEAN JAURES - SURESNES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.209007, + 48.863623 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18321", + "ref": "FR*SOD*S*SIGE*183*2*_*_", + "name": "SIGEIF - 21 AVENUE JEAN JAURES - SURESNES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.209007, + 48.863623 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18311", + "ref": "FR*SOD*S*SIGE*183*1*_*_", + "name": "SIGEIF - 21 AVENUE JEAN JAURES - SURESNES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.209007, + 48.863623 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18331", + "ref": "FR*SOD*S*SIGE*183*3*_*_", + "name": "SIGEIF - 21 AVENUE JEAN JAURES - SURESNES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265278, + 48.819562 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18212", + "ref": "FR*SOD*S*SIGE*182*1*_*_", + "name": "SIGEIF - 1 RUE DE LEGALITE - ISSY-LES-MOULINEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321975, + 48.80181 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18611", + "ref": "FR*SOD*S*SIGE*186*1*_*_", + "name": "SIGEIF - 127 RUE DE VERDUN - BAGNEUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321975, + 48.80181 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18651", + "ref": "FR*SOD*S*SIGE*186*5*_*_", + "name": "SIGEIF - 127 RUE DE VERDUN - BAGNEUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -1157,6 +219539,13810 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321975, + 48.80181 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18621", + "ref": "FR*SOD*S*SIGE*186*2*_*_", + "name": "SIGEIF - 127 RUE DE VERDUN - BAGNEUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322484, + 48.755884 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19011", + "ref": "FR*SOD*S*SIGE*190*1*_*_", + "name": "SIGEIF - PIERRE ET MARIE CURIE - FRESNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322484, + 48.755884 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE19012", + "ref": "FR*SOD*S*SIGE*190*1*_*_", + "name": "SIGEIF - PIERRE ET MARIE CURIE - FRESNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31427, + 48.805902 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18841", + "ref": "FR*SOD*S*SIGE*188*4*_*_", + "name": "SIGEIF - 5 RUE JEAN MARIN NAUDIN - BAGNEUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31427, + 48.805902 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18861", + "ref": "FR*SOD*S*SIGE*188*6*_*_", + "name": "SIGEIF - 5 RUE JEAN MARIN NAUDIN - BAGNEUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31427, + 48.805902 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18821", + "ref": "FR*SOD*S*SIGE*188*2*_*_", + "name": "SIGEIF - 5 RUE JEAN MARIN NAUDIN - BAGNEUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31427, + 48.805902 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18851", + "ref": "FR*SOD*S*SIGE*188*5*_*_", + "name": "SIGEIF - 5 RUE JEAN MARIN NAUDIN - BAGNEUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31427, + 48.805902 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18811", + "ref": "FR*SOD*S*SIGE*188*1*_*_", + "name": "SIGEIF - 5 RUE JEAN MARIN NAUDIN - BAGNEUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31427, + 48.805902 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18831", + "ref": "FR*SOD*S*SIGE*188*3*_*_", + "name": "SIGEIF - 5 RUE JEAN MARIN NAUDIN - BAGNEUX", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304591, + 48.799297 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18741", + "ref": "FR*SOD*S*SIGE*187*4*_*_", + "name": "SIGEIF - 65 RUE RENE CROS - BAGNEUX", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304591, + 48.799297 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18721", + "ref": "FR*SOD*S*SIGE*187*2*_*_", + "name": "SIGEIF - 65 RUE RENE CROS - BAGNEUX", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304591, + 48.799297 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18731", + "ref": "FR*SOD*S*SIGE*187*3*_*_", + "name": "SIGEIF - 65 RUE RENE CROS - BAGNEUX", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304591, + 48.799297 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18711", + "ref": "FR*SOD*S*SIGE*187*1*_*_", + "name": "SIGEIF - 65 RUE RENE CROS - BAGNEUX", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304591, + 48.799297 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18751", + "ref": "FR*SOD*S*SIGE*187*5*_*_", + "name": "SIGEIF - 65 RUE RENE CROS - BAGNEUX", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321975, + 48.80181 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18671", + "ref": "FR*SOD*S*SIGE*186*7*_*_", + "name": "SIGEIF - 127 RUE DE VERDUN - BAGNEUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321975, + 48.80181 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE18641", + "ref": "FR*SOD*S*SIGE*186*4*_*_", + "name": "SIGEIF - 127 RUE DE VERDUN - BAGNEUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2987, + 48.901286 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8721", + "ref": "FR*SOD*S*SIGE*87*2*_*_", + "name": "SIGEIF - 4 RUE VALITON - CLICHY", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.308363, + 48.900249 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8831", + "ref": "FR*SOD*S*SIGE*88*3*_*_", + "name": "SIGEIF - 41 RUE MARTHE - CLICHY", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.308363, + 48.900249 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8821", + "ref": "FR*SOD*S*SIGE*88*2*_*_", + "name": "SIGEIF - 41 RUE MARTHE - CLICHY", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307748, + 48.920737 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13931", + "ref": "FR*SOD*S*SIGE*139*3*_*_", + "name": "SIGEIF - 1 RUE GEORGES CORETE - GENNEVILLIERS", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321018, + 48.92301 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14121", + "ref": "FR*SOD*S*SIGE*141*2*_*_", + "name": "SIGEIF - 36 BOULEVARD LOUISE MICHEL - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321018, + 48.92301 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14111", + "ref": "FR*SOD*S*SIGE*141*1*_*_", + "name": "SIGEIF - 36 BOULEVARD LOUISE MICHEL - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321018, + 48.92301 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14141", + "ref": "FR*SOD*S*SIGE*141*4*_*_", + "name": "SIGEIF - 36 BOULEVARD LOUISE MICHEL - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321018, + 48.92301 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14161", + "ref": "FR*SOD*S*SIGE*141*6*_*_", + "name": "SIGEIF - 36 BOULEVARD LOUISE MICHEL - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321018, + 48.92301 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14131", + "ref": "FR*SOD*S*SIGE*141*3*_*_", + "name": "SIGEIF - 36 BOULEVARD LOUISE MICHEL - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307748, + 48.920737 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13951", + "ref": "FR*SOD*S*SIGE*139*5*_*_", + "name": "SIGEIF - 1 RUE GEORGES CORETE - GENNEVILLIERS", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307748, + 48.920737 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13921", + "ref": "FR*SOD*S*SIGE*139*2*_*_", + "name": "SIGEIF - 1 RUE GEORGES CORETE - GENNEVILLIERS", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307748, + 48.920737 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13911", + "ref": "FR*SOD*S*SIGE*139*1*_*_", + "name": "SIGEIF - 1 RUE GEORGES CORETE - GENNEVILLIERS", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.308363, + 48.900249 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8841", + "ref": "FR*SOD*S*SIGE*88*4*_*_", + "name": "SIGEIF - 41 RUE MARTHE - CLICHY", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307748, + 48.920737 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13941", + "ref": "FR*SOD*S*SIGE*139*4*_*_", + "name": "SIGEIF - 1 RUE GEORGES CORETE - GENNEVILLIERS", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297148, + 48.92004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13821", + "ref": "FR*SOD*S*SIGE*138*2*_*_", + "name": "SIGEIF - 16 AVENUE DE LA REPUBLIQUE - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297148, + 48.92004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13831", + "ref": "FR*SOD*S*SIGE*138*3*_*_", + "name": "SIGEIF - 16 AVENUE DE LA REPUBLIQUE - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297148, + 48.92004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13841", + "ref": "FR*SOD*S*SIGE*138*4*_*_", + "name": "SIGEIF - 16 AVENUE DE LA REPUBLIQUE - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297148, + 48.92004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13861", + "ref": "FR*SOD*S*SIGE*138*6*_*_", + "name": "SIGEIF - 16 AVENUE DE LA REPUBLIQUE - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297148, + 48.92004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13811", + "ref": "FR*SOD*S*SIGE*138*1*_*_", + "name": "SIGEIF - 16 AVENUE DE LA REPUBLIQUE - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297148, + 48.92004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13851", + "ref": "FR*SOD*S*SIGE*138*5*_*_", + "name": "SIGEIF - 16 AVENUE DE LA REPUBLIQUE - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321018, + 48.92301 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14151", + "ref": "FR*SOD*S*SIGE*141*5*_*_", + "name": "SIGEIF - 36 BOULEVARD LOUISE MICHEL - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23608, + 48.87624 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14261", + "ref": "FR*SOD*S*SIGE*142*6*_*_", + "name": "SIGEIF - 14 RUE FRANCIS PRESSENSE - PUTEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23608, + 48.87624 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14221", + "ref": "FR*SOD*S*SIGE*142*2*_*_", + "name": "SIGEIF - 14 RUE FRANCIS PRESSENSE - PUTEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23608, + 48.87624 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14251", + "ref": "FR*SOD*S*SIGE*142*5*_*_", + "name": "SIGEIF - 14 RUE FRANCIS PRESSENSE - PUTEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.155149, + 48.885583 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14721", + "ref": "FR*SOD*S*SIGE*147*2*_*_", + "name": "SIGEIF - PLACE DE LA GARE - CHATOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.155149, + 48.885583 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14722", + "ref": "FR*SOD*S*SIGE*147*2*_*_", + "name": "SIGEIF - PLACE DE LA GARE - CHATOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36695, + 49.087523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14612", + "ref": "FR*SOD*S*SIGE*146*1*_*_", + "name": "SIGEIF - RUE FAUBERT - BELLOY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36695, + 49.087523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14611", + "ref": "FR*SOD*S*SIGE*146*1*_*_", + "name": "SIGEIF - RUE FAUBERT - BELLOY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.290551, + 48.821902 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14512", + "ref": "FR*SOD*S*SIGE*145*1*_*_", + "name": "SIGEIF - 9 RUE RENE SAHORS - VANVES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.290551, + 48.821902 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14511", + "ref": "FR*SOD*S*SIGE*145*1*_*_", + "name": "SIGEIF - 9 RUE RENE SAHORS - VANVES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232187, + 48.887726 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14411", + "ref": "FR*SOD*S*SIGE*144*1*_*_", + "name": "SIGEIF - 70 AVENUE CHARLES DE GAULLE - PUTEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232187, + 48.887726 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14461", + "ref": "FR*SOD*S*SIGE*144*6*_*_", + "name": "SIGEIF - 70 AVENUE CHARLES DE GAULLE - PUTEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232187, + 48.887726 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14431", + "ref": "FR*SOD*S*SIGE*144*3*_*_", + "name": "SIGEIF - 70 AVENUE CHARLES DE GAULLE - PUTEAUX", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232187, + 48.887726 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14421", + "ref": "FR*SOD*S*SIGE*144*2*_*_", + "name": "SIGEIF - 70 AVENUE CHARLES DE GAULLE - PUTEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232187, + 48.887726 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14441", + "ref": "FR*SOD*S*SIGE*144*4*_*_", + "name": "SIGEIF - 70 AVENUE CHARLES DE GAULLE - PUTEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232187, + 48.887726 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14451", + "ref": "FR*SOD*S*SIGE*144*5*_*_", + "name": "SIGEIF - 70 AVENUE CHARLES DE GAULLE - PUTEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23608, + 48.87624 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14241", + "ref": "FR*SOD*S*SIGE*142*4*_*_", + "name": "SIGEIF - 14 RUE FRANCIS PRESSENSE - PUTEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23608, + 48.87624 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14211", + "ref": "FR*SOD*S*SIGE*142*1*_*_", + "name": "SIGEIF - 14 RUE FRANCIS PRESSENSE - PUTEAUX", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23608, + 48.87624 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14231", + "ref": "FR*SOD*S*SIGE*142*3*_*_", + "name": "SIGEIF - 14 RUE FRANCIS PRESSENSE - PUTEAUX", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294767, + 48.922874 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13751", + "ref": "FR*SOD*S*SIGE*137*5*_*_", + "name": "SIGEIF - 169 AVENUE GABRIEL PERI - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294767, + 48.922874 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13731", + "ref": "FR*SOD*S*SIGE*137*3*_*_", + "name": "SIGEIF - 169 AVENUE GABRIEL PERI - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294767, + 48.922874 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13721", + "ref": "FR*SOD*S*SIGE*137*2*_*_", + "name": "SIGEIF - 169 AVENUE GABRIEL PERI - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.303511, + 48.946266 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13411", + "ref": "FR*SOD*S*SIGE*134*1*_*_", + "name": "SIGEIF - 4 CHEMIN DES PETITS MARAIS - GENNEVILLIERS", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.227715, + 48.787877 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13312", + "ref": "FR*SOD*S*SIGE*133*1*_*_", + "name": "SIGEIF - RUE SAINT-EXUPERY - MEUDON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.227715, + 48.787877 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13311", + "ref": "FR*SOD*S*SIGE*133*1*_*_", + "name": "SIGEIF - RUE SAINT-EXUPERY - MEUDON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240595, + 48.80806 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13212", + "ref": "FR*SOD*S*SIGE*132*1*_*_", + "name": "SIGEIF - RUE JEAN JAURES - MEUDON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240595, + 48.80806 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13211", + "ref": "FR*SOD*S*SIGE*132*1*_*_", + "name": "SIGEIF - RUE JEAN JAURES - MEUDON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513482, + 48.894296 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE12912", + "ref": "FR*SOD*S*SIGE*129*1*_*_", + "name": "SIGEIF - 61 AVENUE DE LA RESISTANCE - RAINCY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513482, + 48.894296 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE12911", + "ref": "FR*SOD*S*SIGE*129*1*_*_", + "name": "SIGEIF - 61 AVENUE DE LA RESISTANCE - RAINCY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.512814, + 48.892332 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE12811", + "ref": "FR*SOD*S*SIGE*128*1*_*_", + "name": "SIGEIF - 24 AVENUE DE LA RESISTANCE - RAINCY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.512814, + 48.892332 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE12812", + "ref": "FR*SOD*S*SIGE*128*1*_*_", + "name": "SIGEIF - 24 AVENUE DE LA RESISTANCE - RAINCY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.604149, + 48.916773 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE12511", + "ref": "FR*SOD*S*SIGE*125*1*_*_", + "name": "SIGEIF - PARKING JACOBSEN - COURTRY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.604149, + 48.916773 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE12512", + "ref": "FR*SOD*S*SIGE*125*1*_*_", + "name": "SIGEIF - PARKING JACOBSEN - COURTRY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298238, + 48.806568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE12411", + "ref": "FR*SOD*S*SIGE*124*1*_*_", + "name": "SIGEIF - 140 AVENUE DE LA REPUBLIQUE - CHATILLON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298238, + 48.806568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE12412", + "ref": "FR*SOD*S*SIGE*124*1*_*_", + "name": "SIGEIF - 140 AVENUE DE LA REPUBLIQUE - CHATILLON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.299287, + 48.810455 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE12311", + "ref": "FR*SOD*S*SIGE*123*1*_*_", + "name": "SIGEIF - 188 AVENUE DE PARIS - CHATILLON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.339881, + 49.033346 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE12212", + "ref": "FR*SOD*S*SIGE*122*1*_*_", + "name": "SIGEIF - AVENUE JEAN JAURES - DOMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.339881, + 49.033346 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE12211", + "ref": "FR*SOD*S*SIGE*122*1*_*_", + "name": "SIGEIF - AVENUE JEAN JAURES - DOMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.303511, + 48.946266 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13441", + "ref": "FR*SOD*S*SIGE*134*4*_*_", + "name": "SIGEIF - 4 CHEMIN DES PETITS MARAIS - GENNEVILLIERS", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.303511, + 48.946266 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13431", + "ref": "FR*SOD*S*SIGE*134*3*_*_", + "name": "SIGEIF - 4 CHEMIN DES PETITS MARAIS - GENNEVILLIERS", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294767, + 48.922874 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13761", + "ref": "FR*SOD*S*SIGE*137*6*_*_", + "name": "SIGEIF - 169 AVENUE GABRIEL PERI - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.303511, + 48.946266 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13421", + "ref": "FR*SOD*S*SIGE*134*2*_*_", + "name": "SIGEIF - 4 CHEMIN DES PETITS MARAIS - GENNEVILLIERS", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294767, + 48.922874 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13711", + "ref": "FR*SOD*S*SIGE*137*1*_*_", + "name": "SIGEIF - 169 AVENUE GABRIEL PERI - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294767, + 48.922874 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13741", + "ref": "FR*SOD*S*SIGE*137*4*_*_", + "name": "SIGEIF - 169 AVENUE GABRIEL PERI - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306643, + 48.933824 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13661", + "ref": "FR*SOD*S*SIGE*136*6*_*_", + "name": "SIGEIF - 23 AVENUE DU GENERAL DE GAULLE - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306643, + 48.933824 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13611", + "ref": "FR*SOD*S*SIGE*136*1*_*_", + "name": "SIGEIF - 23 AVENUE DU GENERAL DE GAULLE - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306643, + 48.933824 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13641", + "ref": "FR*SOD*S*SIGE*136*4*_*_", + "name": "SIGEIF - 23 AVENUE DU GENERAL DE GAULLE - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306643, + 48.933824 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13651", + "ref": "FR*SOD*S*SIGE*136*5*_*_", + "name": "SIGEIF - 23 AVENUE DU GENERAL DE GAULLE - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306643, + 48.933824 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13621", + "ref": "FR*SOD*S*SIGE*136*2*_*_", + "name": "SIGEIF - 23 AVENUE DU GENERAL DE GAULLE - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306643, + 48.933824 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13631", + "ref": "FR*SOD*S*SIGE*136*3*_*_", + "name": "SIGEIF - 23 AVENUE DU GENERAL DE GAULLE - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301197, + 48.930646 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13561", + "ref": "FR*SOD*S*SIGE*135*6*_*_", + "name": "SIGEIF - 66 BOULEVARD CAMELINAT - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301197, + 48.930646 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13521", + "ref": "FR*SOD*S*SIGE*135*2*_*_", + "name": "SIGEIF - 66 BOULEVARD CAMELINAT - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301197, + 48.930646 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13541", + "ref": "FR*SOD*S*SIGE*135*4*_*_", + "name": "SIGEIF - 66 BOULEVARD CAMELINAT - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301197, + 48.930646 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13531", + "ref": "FR*SOD*S*SIGE*135*3*_*_", + "name": "SIGEIF - 66 BOULEVARD CAMELINAT - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301197, + 48.930646 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13551", + "ref": "FR*SOD*S*SIGE*135*5*_*_", + "name": "SIGEIF - 66 BOULEVARD CAMELINAT - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301197, + 48.930646 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13511", + "ref": "FR*SOD*S*SIGE*135*1*_*_", + "name": "SIGEIF - 66 BOULEVARD CAMELINAT - GENNEVILLIERS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.303511, + 48.946266 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE13451", + "ref": "FR*SOD*S*SIGE*134*5*_*_", + "name": "SIGEIF - 4 CHEMIN DES PETITS MARAIS - GENNEVILLIERS", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.604141, + 48.918367 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14811", + "ref": "FR*SOD*S*SIGE*148*1*_*_", + "name": "SIGEIF - PLACE DU GENERAL LECLERC - COURTRY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.604141, + 48.918367 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14812", + "ref": "FR*SOD*S*SIGE*148*1*_*_", + "name": "SIGEIF - PLACE DU GENERAL LECLERC - COURTRY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.508051, + 48.902835 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11911", + "ref": "FR*SOD*S*SIGE*119*1*_*_", + "name": "SIGEIF - PLACE DE LA RESISTANCE - PAVILLONS-SOUS-BOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.531936, + 48.798856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE9511", + "ref": "FR*SOD*S*SIGE*95*1*_*_", + "name": "SIGEIF - PARKING - RUE DU GENERAL DE GAULLE - CHENNEVIERES-SUR-MARNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.185283, + 48.805695 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE9711", + "ref": "FR*SOD*S*SIGE*97*1*_*_", + "name": "SIGEIF - 33 ROUTE DU PAVE DES GARDES - CHAVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.164518, + 48.840307 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE9812", + "ref": "FR*SOD*S*SIGE*98*1*_*_", + "name": "SIGEIF - ROND-POINT DU SOUVENIR FRANCAIS - VAUCRESSON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.164518, + 48.840307 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE9811", + "ref": "FR*SOD*S*SIGE*98*1*_*_", + "name": "SIGEIF - ROND-POINT DU SOUVENIR FRANCAIS - VAUCRESSON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.217007, + 48.850512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10011", + "ref": "FR*SOD*S*SIGE*100*1*_*_", + "name": "SIGEIF - RUE ARMENGAUD - SAINT-CLOUD", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.217007, + 48.850512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10021", + "ref": "FR*SOD*S*SIGE*100*2*_*_", + "name": "SIGEIF - RUE ARMENGAUD - SAINT-CLOUD", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.217007, + 48.850512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10022", + "ref": "FR*SOD*S*SIGE*100*2*_*_", + "name": "SIGEIF - RUE ARMENGAUD - SAINT-CLOUD", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.217007, + 48.850512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10012", + "ref": "FR*SOD*S*SIGE*100*1*_*_", + "name": "SIGEIF - RUE ARMENGAUD - SAINT-CLOUD", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.171623, + 48.802012 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10111", + "ref": "FR*SOD*S*SIGE*101*1*_*_", + "name": "SIGEIF - 26 PARKING COSTES & BELLONTE - VIROFLAY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.171623, + 48.802012 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10112", + "ref": "FR*SOD*S*SIGE*101*1*_*_", + "name": "SIGEIF - 26 PARKING COSTES & BELLONTE - VIROFLAY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.163266, + 48.806434 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10212", + "ref": "FR*SOD*S*SIGE*102*1*_*_", + "name": "SIGEIF - 20 RUE DE LA PEPINIERE - VIROFLAY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.163266, + 48.806434 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10221", + "ref": "FR*SOD*S*SIGE*102*2*_*_", + "name": "SIGEIF - 20 RUE DE LA PEPINIERE - VIROFLAY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.163266, + 48.806434 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10222", + "ref": "FR*SOD*S*SIGE*102*2*_*_", + "name": "SIGEIF - 20 RUE DE LA PEPINIERE - VIROFLAY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.163266, + 48.806434 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10211", + "ref": "FR*SOD*S*SIGE*102*1*_*_", + "name": "SIGEIF - 20 RUE DE LA PEPINIERE - VIROFLAY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.524608, + 48.905451 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10311", + "ref": "FR*SOD*S*SIGE*103*1*_*_", + "name": "SIGEIF - 85 BD DE LA REPUBLIQUE - LIVRY-GARGAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.524608, + 48.905451 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10312", + "ref": "FR*SOD*S*SIGE*103*1*_*_", + "name": "SIGEIF - 85 BD DE LA REPUBLIQUE - LIVRY-GARGAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.185283, + 48.805695 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE9712", + "ref": "FR*SOD*S*SIGE*97*1*_*_", + "name": "SIGEIF - 33 ROUTE DU PAVE DES GARDES - CHAVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.531936, + 48.798856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE9512", + "ref": "FR*SOD*S*SIGE*95*1*_*_", + "name": "SIGEIF - PARKING - RUE DU GENERAL DE GAULLE - CHENNEVIERES-SUR-MARNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.517099, + 48.91367 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10512", + "ref": "FR*SOD*S*SIGE*105*1*_*_", + "name": "SIGEIF - 46 BOULEVARD GUTENBERG - LIVRY-GARGAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.545659, + 48.799648 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE9411", + "ref": "FR*SOD*S*SIGE*94*1*_*_", + "name": "SIGEIF - 13 ROUTE DU PLESSIS - CHENNEVIERES-SUR-MARNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.308363, + 48.900249 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8811", + "ref": "FR*SOD*S*SIGE*88*1*_*_", + "name": "SIGEIF - 41 RUE MARTHE - CLICHY", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.308363, + 48.900249 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8851", + "ref": "FR*SOD*S*SIGE*88*5*_*_", + "name": "SIGEIF - 41 RUE MARTHE - CLICHY", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.308363, + 48.900249 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8861", + "ref": "FR*SOD*S*SIGE*88*6*_*_", + "name": "SIGEIF - 41 RUE MARTHE - CLICHY", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317644, + 48.902349 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8951", + "ref": "FR*SOD*S*SIGE*89*5*_*_", + "name": "SIGEIF - 123 BD VICTOR HUGO - CLICHY", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317644, + 48.902349 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8931", + "ref": "FR*SOD*S*SIGE*89*3*_*_", + "name": "SIGEIF - 123 BD VICTOR HUGO - CLICHY", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317644, + 48.902349 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8941", + "ref": "FR*SOD*S*SIGE*89*4*_*_", + "name": "SIGEIF - 123 BD VICTOR HUGO - CLICHY", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317644, + 48.902349 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8921", + "ref": "FR*SOD*S*SIGE*89*2*_*_", + "name": "SIGEIF - 123 BD VICTOR HUGO - CLICHY", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317644, + 48.902349 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE8911", + "ref": "FR*SOD*S*SIGE*89*1*_*_", + "name": "SIGEIF - 123 BD VICTOR HUGO - CLICHY", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310159, + 48.968482 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE9111", + "ref": "FR*SOD*S*SIGE*91*1*_*_", + "name": "SIGEIF - 2 PLACE DE VERDUN - ENGHIEN-LES-BAINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310159, + 48.968482 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE9112", + "ref": "FR*SOD*S*SIGE*91*1*_*_", + "name": "SIGEIF - 2 PLACE DE VERDUN - ENGHIEN-LES-BAINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.215126, + 48.857159 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE9212", + "ref": "FR*SOD*S*SIGE*92*1*_*_", + "name": "SIGEIF - 38 RUE DU MONT VALERIEN - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.215126, + 48.857159 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE9211", + "ref": "FR*SOD*S*SIGE*92*1*_*_", + "name": "SIGEIF - 38 RUE DU MONT VALERIEN - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.532549, + 48.801016 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE9311", + "ref": "FR*SOD*S*SIGE*93*1*_*_", + "name": "SIGEIF - PLACE MON IDEE - CHENNEVIERES-SUR-MARNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.532549, + 48.801016 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE9312", + "ref": "FR*SOD*S*SIGE*93*1*_*_", + "name": "SIGEIF - PLACE MON IDEE - CHENNEVIERES-SUR-MARNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.545659, + 48.799648 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE9412", + "ref": "FR*SOD*S*SIGE*94*1*_*_", + "name": "SIGEIF - 13 ROUTE DU PLESSIS - CHENNEVIERES-SUR-MARNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.517099, + 48.91367 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10511", + "ref": "FR*SOD*S*SIGE*105*1*_*_", + "name": "SIGEIF - 46 BOULEVARD GUTENBERG - LIVRY-GARGAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326929, + 49.027391 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10611", + "ref": "FR*SOD*S*SIGE*106*1*_*_", + "name": "SIGEIF - RUE DE LA MAIRIE - DOMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.508051, + 48.902835 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11912", + "ref": "FR*SOD*S*SIGE*119*1*_*_", + "name": "SIGEIF - PLACE DE LA RESISTANCE - PAVILLONS-SOUS-BOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323457, + 48.941725 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15241", + "ref": "FR*SOD*S*SIGE*152*4*_*_", + "name": "SIGEIF - 29 AVENUE GEORGES POMPIDOU - VILLENEUVE-LA-GARENNE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323457, + 48.941725 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15221", + "ref": "FR*SOD*S*SIGE*152*2*_*_", + "name": "SIGEIF - 29 AVENUE GEORGES POMPIDOU - VILLENEUVE-LA-GARENNE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323457, + 48.941725 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15251", + "ref": "FR*SOD*S*SIGE*152*5*_*_", + "name": "SIGEIF - 29 AVENUE GEORGES POMPIDOU - VILLENEUVE-LA-GARENNE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323457, + 48.941725 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15231", + "ref": "FR*SOD*S*SIGE*152*3*_*_", + "name": "SIGEIF - 29 AVENUE GEORGES POMPIDOU - VILLENEUVE-LA-GARENNE", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.441778, + 48.804958 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15112", + "ref": "FR*SOD*S*SIGE*151*1*_*_", + "name": "SIGEIF - 92 AVENUE DU GENERAL LECLERC - MAISONS-ALFORT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.441778, + 48.804958 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15111", + "ref": "FR*SOD*S*SIGE*151*1*_*_", + "name": "SIGEIF - 92 AVENUE DU GENERAL LECLERC - MAISONS-ALFORT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.157368, + 48.889452 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15012", + "ref": "FR*SOD*S*SIGE*150*1*_*_", + "name": "SIGEIF - 11 AVENUE DU MARECHAL FOCH - CHATOU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.157368, + 48.889452 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15011", + "ref": "FR*SOD*S*SIGE*150*1*_*_", + "name": "SIGEIF - 11 AVENUE DU MARECHAL FOCH - CHATOU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.629187, + 48.869505 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14912", + "ref": "FR*SOD*S*SIGE*149*1*_*_", + "name": "SIGEIF - RUE DES PECHEURS - VAIRES-SUR-MARNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.629187, + 48.869505 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE14911", + "ref": "FR*SOD*S*SIGE*149*1*_*_", + "name": "SIGEIF - RUE DES PECHEURS - VAIRES-SUR-MARNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.246242, + 48.8288 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11612", + "ref": "FR*SOD*S*SIGE*116*1*_*_", + "name": "SIGEIF - 245 BD JEAN JAURES - BOULOGNE-BILLANCOURT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.246242, + 48.8288 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11611", + "ref": "FR*SOD*S*SIGE*116*1*_*_", + "name": "SIGEIF - 245 BD JEAN JAURES - BOULOGNE-BILLANCOURT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.536884, + 48.919073 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11711", + "ref": "FR*SOD*S*SIGE*117*1*_*_", + "name": "SIGEIF - PLACE FRANCOIS MITTERAND - LIVRY-GARGAN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.536884, + 48.919073 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11712", + "ref": "FR*SOD*S*SIGE*117*1*_*_", + "name": "SIGEIF - PLACE FRANCOIS MITTERAND - LIVRY-GARGAN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54441, + 48.922985 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11811", + "ref": "FR*SOD*S*SIGE*118*1*_*_", + "name": "SIGEIF - PLACE DE LA LIBERATION - LIVRY-GARGAN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54441, + 48.922985 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11812", + "ref": "FR*SOD*S*SIGE*118*1*_*_", + "name": "SIGEIF - PLACE DE LA LIBERATION - LIVRY-GARGAN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323457, + 48.941725 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15261", + "ref": "FR*SOD*S*SIGE*152*6*_*_", + "name": "SIGEIF - 29 AVENUE GEORGES POMPIDOU - VILLENEUVE-LA-GARENNE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323457, + 48.941725 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE15211", + "ref": "FR*SOD*S*SIGE*152*1*_*_", + "name": "SIGEIF - 29 AVENUE GEORGES POMPIDOU - VILLENEUVE-LA-GARENNE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326929, + 49.027391 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10612", + "ref": "FR*SOD*S*SIGE*106*1*_*_", + "name": "SIGEIF - RUE DE LA MAIRIE - DOMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.156808, + 48.838145 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11511", + "ref": "FR*SOD*S*SIGE*115*1*_*_", + "name": "SIGEIF - PARKING DU SQUARE DE LA CROIX BLANCHE - VAUCRESSON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336956, + 49.032846 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10711", + "ref": "FR*SOD*S*SIGE*107*1*_*_", + "name": "SIGEIF - PARKING DE LA GARE - DOMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336956, + 49.032846 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10712", + "ref": "FR*SOD*S*SIGE*107*1*_*_", + "name": "SIGEIF - PARKING DE LA GARE - DOMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.380766, + 48.97929 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10812", + "ref": "FR*SOD*S*SIGE*108*1*_*_", + "name": "SIGEIF - AVENUE PAUL VALERY - SARCELLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.380766, + 48.97929 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE10811", + "ref": "FR*SOD*S*SIGE*108*1*_*_", + "name": "SIGEIF - AVENUE PAUL VALERY - SARCELLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.377945, + 48.99638 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11012", + "ref": "FR*SOD*S*SIGE*110*1*_*_", + "name": "SIGEIF - PLACE DE LA LIBERATION - SARCELLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.377945, + 48.99638 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11011", + "ref": "FR*SOD*S*SIGE*110*1*_*_", + "name": "SIGEIF - PLACE DE LA LIBERATION - SARCELLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218729, + 48.845411 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11112", + "ref": "FR*SOD*S*SIGE*111*1*_*_", + "name": "SIGEIF - 8 RUE GASTON LATOUCHE - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218729, + 48.845411 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11111", + "ref": "FR*SOD*S*SIGE*111*1*_*_", + "name": "SIGEIF - 8 RUE GASTON LATOUCHE - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.203739, + 48.842105 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11211", + "ref": "FR*SOD*S*SIGE*112*1*_*_", + "name": "SIGEIF - RUE PASTEUR - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.203739, + 48.842105 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11212", + "ref": "FR*SOD*S*SIGE*112*1*_*_", + "name": "SIGEIF - RUE PASTEUR - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.219264, + 48.841715 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11311", + "ref": "FR*SOD*S*SIGE*113*1*_*_", + "name": "SIGEIF - RUE DORLEANS - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.219264, + 48.841715 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11312", + "ref": "FR*SOD*S*SIGE*113*1*_*_", + "name": "SIGEIF - RUE DORLEANS - SAINT-CLOUD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53094, + 48.7965 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11411", + "ref": "FR*SOD*S*SIGE*114*1*_*_", + "name": "SIGEIF - AVENUE DU MARECHAL LECLERC - CHENNEVIERES-SUR-MARNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53094, + 48.7965 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11412", + "ref": "FR*SOD*S*SIGE*114*1*_*_", + "name": "SIGEIF - AVENUE DU MARECHAL LECLERC - CHENNEVIERES-SUR-MARNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.156808, + 48.838145 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE11512", + "ref": "FR*SOD*S*SIGE*115*1*_*_", + "name": "SIGEIF - PARKING DU SQUARE DE LA CROIX BLANCHE - VAUCRESSON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.471163, + 49.002593 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20312", + "ref": "FR*SOD*S*SIGE*203*1*_*_", + "name": "SIGEIF - 68 RUE DE PARIS - LE THILLAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.228808, + 48.922232 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20041", + "ref": "FR*SOD*S*SIGE*200*4*_*_", + "name": "SIGEIF - 52 RUE DE SEINE - COLOMBES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.612862, + 48.953031 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20411", + "ref": "FR*SOD*S*SIGE*204*1*_*_", + "name": "SIGEIF - PLACE FRANCOIS MAURIAC - VILLEPARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.612862, + 48.953031 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE20412", + "ref": "FR*SOD*S*SIGE*204*1*_*_", + "name": "SIGEIF - PLACE FRANCOIS MAURIAC - VILLEPARISIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51808, + 48.909806 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref:EU:EVSE": "FRSIGPSIGE12112", + "ref": "FR*SOD*S*SIGE*121*1*_*_", + "name": "SIGEIF - PLACE DE LA LIBERATION - PAVILLONS-SOUS-BOIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.890833, + 44.38361 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479912", + "ref": "FR*SOD*S*MB47*99*1*_*_", + "name": "DAUSSE - PLACE DU 8 MAI 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68865, + 44.39468 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473712", + "ref": "FR*SOD*S*MB47*37*1*_*_", + "name": "PUJOLS - PARKING PISCINE MALBENTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.293672, + 44.455635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710611", + "ref": "FR*SOD*S*MB47*106*1*_*_", + "name": "GONTAUD DE NOGARET - RUE DES DOCTEURS DE SAMONDES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.159444, + 44.448612 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710512", + "ref": "FR*SOD*S*MB47*105*1*_*_", + "name": "FOURQUES SUR GARONNE - BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.159444, + 44.448612 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710511", + "ref": "FR*SOD*S*MB47*105*1*_*_", + "name": "FOURQUES SUR GARONNE - BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.640469, + 44.245251 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710412", + "ref": "FR*SOD*S*MB47*104*1*_*_", + "name": "FOULAYRONNES - ZAE FOULAYRONNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.640469, + 44.245251 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710411", + "ref": "FR*SOD*S*MB47*104*1*_*_", + "name": "FOULAYRONNES - ZAE FOULAYRONNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.644147, + 44.238674 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710312", + "ref": "FR*SOD*S*MB47*103*1*_*_", + "name": "FOULAYRONNES - PLACE DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.644147, + 44.238674 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710311", + "ref": "FR*SOD*S*MB47*103*1*_*_", + "name": "FOULAYRONNES - PLACE DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.347643, + 44.222729 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710211", + "ref": "FR*SOD*S*MB47*102*1*_*_", + "name": "FEUGAROLLES - PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.347643, + 44.222729 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710212", + "ref": "FR*SOD*S*MB47*102*1*_*_", + "name": "FEUGAROLLES - PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.577217, + 44.16872 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710111", + "ref": "FR*SOD*S*MB47*101*1*_*_", + "name": "ESTILLAC - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.577217, + 44.16872 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710112", + "ref": "FR*SOD*S*MB47*101*1*_*_", + "name": "ESTILLAC - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.181111, + 44.675556 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710012", + "ref": "FR*SOD*S*MB47*100*1*_*_", + "name": "DURAS - PLACE DE LUNION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.690809, + 44.386063 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473612", + "ref": "FR*SOD*S*MB47*36*1*_*_", + "name": "PUJOLS - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.619894, + 44.206848 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474512", + "ref": "FR*SOD*S*MB47*45*1*_*_", + "name": "AGEN - MONSEIGNEUR POUZET - COTE CARNOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.690809, + 44.386063 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473611", + "ref": "FR*SOD*S*MB47*36*1*_*_", + "name": "PUJOLS - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.509986, + 44.28891 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473512", + "ref": "FR*SOD*S*MB47*35*1*_*_", + "name": "PRAYSSAS - PLACE AVENUE JEAN JAURES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.181111, + 44.675556 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710011", + "ref": "FR*SOD*S*MB47*100*1*_*_", + "name": "DURAS - PLACE DE LUNION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.890833, + 44.38361 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479911", + "ref": "FR*SOD*S*MB47*99*1*_*_", + "name": "DAUSSE - PLACE DU 8 MAI 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.399167, + 44.249722 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473412", + "ref": "FR*SOD*S*MB47*34*1*_*_", + "name": "PORT SAINTE MARIE - PARKING RUE PASTEUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67833, + 44.230488 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473311", + "ref": "FR*SOD*S*MB47*33*1*_*_", + "name": "PONT-DU-CASSE - PARKING CENTRE COMMERCIAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67833, + 44.230488 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473312", + "ref": "FR*SOD*S*MB47*33*1*_*_", + "name": "PONT-DU-CASSE - PARKING CENTRE COMMERCIAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.681062, + 44.23138 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473212", + "ref": "FR*SOD*S*MB47*32*1*_*_", + "name": "PONT-DU-CASSE - PARKING CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.681062, + 44.23138 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473211", + "ref": "FR*SOD*S*MB47*32*1*_*_", + "name": "PONT-DU-CASSE - PARKING CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.810305, + 44.384762 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473111", + "ref": "FR*SOD*S*MB47*31*1*_*_", + "name": "PENNE DAGENAIS - THEATRE DEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.810305, + 44.384762 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473112", + "ref": "FR*SOD*S*MB47*31*1*_*_", + "name": "PENNE DAGENAIS - THEATRE DEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.806667, + 44.394165 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473011", + "ref": "FR*SOD*S*MB47*30*1*_*_", + "name": "PENNE DAGENAIS - PARKING CAPITAINERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.293672, + 44.455635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710612", + "ref": "FR*SOD*S*MB47*106*1*_*_", + "name": "GONTAUD DE NOGARET - RUE DES DOCTEURS DE SAMONDES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61975, + 44.200583 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710712", + "ref": "FR*SOD*S*MB47*107*1*_*_", + "name": "AGEN - TE 47_2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61975, + 44.200583 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710711", + "ref": "FR*SOD*S*MB47*107*1*_*_", + "name": "AGEN - TE 47_2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.619719, + 44.200736 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710811", + "ref": "FR*SOD*S*MB47*108*1*_*_", + "name": "AGEN - TE 47_3", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.591341, + 44.398441 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474411", + "ref": "FR*SOD*S*MB47*44*1*_*_", + "name": "SAINTE LIVRADE SUR LOT - FAUBOURG GARDETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.611923, + 44.203743 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474312", + "ref": "FR*SOD*S*MB47*43*1*_*_", + "name": "AGEN - GENERAL DE GAULLE - GRAND CAFE FOY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.611923, + 44.203743 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474311", + "ref": "FR*SOD*S*MB47*43*1*_*_", + "name": "AGEN - GENERAL DE GAULLE - GRAND CAFE FOY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.516944, + 44.17889 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474212", + "ref": "FR*SOD*S*MB47*42*1*_*_", + "name": "SAINTE COLOMBE EN BRUILHOIS - POLE SPORTIF BECADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.516944, + 44.17889 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474211", + "ref": "FR*SOD*S*MB47*42*1*_*_", + "name": "SAINTE COLOMBE EN BRUILHOIS - POLE SPORTIF BECADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.611634, + 44.203403 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474111", + "ref": "FR*SOD*S*MB47*41*1*_*_", + "name": "AGEN - GENERAL DE GAULLE - CONTREPOINT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.611634, + 44.203403 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474112", + "ref": "FR*SOD*S*MB47*41*1*_*_", + "name": "AGEN - GENERAL DE GAULLE - CONTREPOINT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.542454, + 44.194412 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474011", + "ref": "FR*SOD*S*MB47*40*1*_*_", + "name": "SAINTE COLOMBE EN BRUILHOIS - CARRERE DE BRAX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.542454, + 44.194412 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474012", + "ref": "FR*SOD*S*MB47*40*1*_*_", + "name": "SAINTE COLOMBE EN BRUILHOIS - CARRERE DE BRAX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.095533, + 44.530373 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473912", + "ref": "FR*SOD*S*MB47*39*1*_*_", + "name": "SAINTE BAZEILLE - PLACE DOCTEUR BELOT - GAUCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.095533, + 44.530373 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473911", + "ref": "FR*SOD*S*MB47*39*1*_*_", + "name": "SAINTE BAZEILLE - PLACE DOCTEUR BELOT - GAUCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.095448, + 44.530308 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473812", + "ref": "FR*SOD*S*MB47*38*1*_*_", + "name": "SAINTE BAZEILLE - PLACE DOCTEUR BELOT - DROITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.095448, + 44.530308 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473811", + "ref": "FR*SOD*S*MB47*38*1*_*_", + "name": "SAINTE BAZEILLE - PLACE DOCTEUR BELOT - DROITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68865, + 44.39468 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473711", + "ref": "FR*SOD*S*MB47*37*1*_*_", + "name": "PUJOLS - PARKING PISCINE MALBENTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.795556, + 44.187102 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4711511", + "ref": "FR*SOD*S*MB47*115*1*_*_", + "name": "PUYMIROL - 2 PLACE DU MARECHAL LECLERC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.795556, + 44.187102 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4711512", + "ref": "FR*SOD*S*MB47*115*1*_*_", + "name": "PUYMIROL - 2 PLACE DU MARECHAL LECLERC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.611846, + 44.204935 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4711411", + "ref": "FR*SOD*S*MB47*114*1*_*_", + "name": "AGEN - 32 AVENUE DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.611846, + 44.204935 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4711412", + "ref": "FR*SOD*S*MB47*114*1*_*_", + "name": "AGEN - 32 AVENUE DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01301, + 44.5904 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4711311", + "ref": "FR*SOD*S*MB47*113*1*_*_", + "name": "SAUVETERRE LA LEMANCE - RUE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01301, + 44.5904 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4711312", + "ref": "FR*SOD*S*MB47*113*1*_*_", + "name": "SAUVETERRE LA LEMANCE - RUE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53505, + 44.54946 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4711211", + "ref": "FR*SOD*S*MB47*112*1*_*_", + "name": "MONBAHUS - RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53505, + 44.54946 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4711212", + "ref": "FR*SOD*S*MB47*112*1*_*_", + "name": "MONBAHUS - RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.267636, + 44.290688 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710913", + "ref": "FR*SOD*S*MB47*109*1*_*_", + "name": "DAMAZAN - AVENUE DE LA CONFLUENCE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.267636, + 44.290688 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710911", + "ref": "FR*SOD*S*MB47*109*1*_*_", + "name": "DAMAZAN - AVENUE DE LA CONFLUENCE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.267636, + 44.290688 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB4710912", + "ref": "FR*SOD*S*MB47*109*1*_*_", + "name": "DAMAZAN - AVENUE DE LA CONFLUENCE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.806667, + 44.394165 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473012", + "ref": "FR*SOD*S*MB47*30*1*_*_", + "name": "PENNE DAGENAIS - PARKING CAPITAINERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.342304, + 44.134995 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472911", + "ref": "FR*SOD*S*MB47*29*1*_*_", + "name": "NERAC - MEDIATHEQUE - GAUCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.342304, + 44.134995 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472912", + "ref": "FR*SOD*S*MB47*29*1*_*_", + "name": "NERAC - MEDIATHEQUE - GAUCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.168611, + 44.498611 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471412", + "ref": "FR*SOD*S*MB47*14*1*_*_", + "name": "MARMANDE - PLACE DE LA LAICITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.169167, + 44.501667 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471311", + "ref": "FR*SOD*S*MB47*13*1*_*_", + "name": "MARMANDE - PLACE DE LA COURONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.169167, + 44.501667 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471312", + "ref": "FR*SOD*S*MB47*13*1*_*_", + "name": "MARMANDE - PLACE DE LA COURONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.167222, + 44.496666 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471212", + "ref": "FR*SOD*S*MB47*12*1*_*_", + "name": "MARMANDE - PLACE BIRAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.167222, + 44.496666 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471211", + "ref": "FR*SOD*S*MB47*12*1*_*_", + "name": "MARMANDE - PLACE BIRAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15449, + 44.507633 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471111", + "ref": "FR*SOD*S*MB47*11*1*_*_", + "name": "MARMANDE - PARKING PISCINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15449, + 44.507633 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471112", + "ref": "FR*SOD*S*MB47*11*1*_*_", + "name": "MARMANDE - PARKING PISCINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.177198, + 44.500938 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471012", + "ref": "FR*SOD*S*MB47*10*1*_*_", + "name": "MARMANDE - LA GRAVETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.177198, + 44.500938 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471011", + "ref": "FR*SOD*S*MB47*10*1*_*_", + "name": "MARMANDE - LA GRAVETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5974, + 44.190453 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47912", + "ref": "FR*SOD*S*MB47*9*1*_*_", + "name": "LE PASSAGE - RUE ANATOLE FRANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5974, + 44.190453 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47911", + "ref": "FR*SOD*S*MB47*9*1*_*_", + "name": "LE PASSAGE - RUE ANATOLE FRANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.604511, + 44.192799 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47812", + "ref": "FR*SOD*S*MB47*8*1*_*_", + "name": "LE PASSAGE - PLACETTE RICARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.604511, + 44.192799 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47811", + "ref": "FR*SOD*S*MB47*8*1*_*_", + "name": "LE PASSAGE - PLACETTE RICARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.606086, + 44.201248 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47712", + "ref": "FR*SOD*S*MB47*7*1*_*_", + "name": "LE PASSAGE - PLACE DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.606086, + 44.201248 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47711", + "ref": "FR*SOD*S*MB47*7*1*_*_", + "name": "LE PASSAGE - PLACE DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.603436, + 44.194824 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47612", + "ref": "FR*SOD*S*MB47*6*1*_*_", + "name": "LE PASSAGE - ALLEE DU LUXEMBOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.603436, + 44.194824 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47611", + "ref": "FR*SOD*S*MB47*6*1*_*_", + "name": "LE PASSAGE - ALLEE DU LUXEMBOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.218302, + 44.409389 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47511", + "ref": "FR*SOD*S*MB47*5*1*_*_", + "name": "LE MAS DAGENAIS - PLACE DES FOSSES DE LA VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.218302, + 44.409389 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47512", + "ref": "FR*SOD*S*MB47*5*1*_*_", + "name": "LE MAS DAGENAIS - PLACE DES FOSSES DE LA VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659898, + 44.132675 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47411", + "ref": "FR*SOD*S*MB47*4*1*_*_", + "name": "LAYRAC - RUE DU 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659898, + 44.132675 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47412", + "ref": "FR*SOD*S*MB47*4*1*_*_", + "name": "LAYRAC - RUE DU 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.298611, + 44.179165 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47312", + "ref": "FR*SOD*S*MB47*3*1*_*_", + "name": "LAVARDAC - PLACE DU FOIRAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.298611, + 44.179165 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47311", + "ref": "FR*SOD*S*MB47*3*1*_*_", + "name": "LAVARDAC - PLACE DU FOIRAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.459611, + 44.630516 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47212", + "ref": "FR*SOD*S*MB47*2*1*_*_", + "name": "LAUZUN - AVENUE DE SCHLIERBACH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.459611, + 44.630516 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47211", + "ref": "FR*SOD*S*MB47*2*1*_*_", + "name": "LAUZUN - AVENUE DE SCHLIERBACH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.763611, + 44.283054 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47111", + "ref": "FR*SOD*S*MB47*1*1*_*_", + "name": "LAROQUE TIMBAUT - PLACE DE LHOTEL DE VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.168611, + 44.498611 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471411", + "ref": "FR*SOD*S*MB47*14*1*_*_", + "name": "MARMANDE - PLACE DE LA LAICITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163333, + 44.503887 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471511", + "ref": "FR*SOD*S*MB47*15*1*_*_", + "name": "MARMANDE - PLACE DU 14 JUILLET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.34265, + 44.134975 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472811", + "ref": "FR*SOD*S*MB47*28*1*_*_", + "name": "NERAC - MEDIATHEQUE - DROITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163333, + 44.503887 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471512", + "ref": "FR*SOD*S*MB47*15*1*_*_", + "name": "MARMANDE - PLACE DU 14 JUILLET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.34265, + 44.134975 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472812", + "ref": "FR*SOD*S*MB47*28*1*_*_", + "name": "NERAC - MEDIATHEQUE - DROITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.333498, + 44.13789 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472712", + "ref": "FR*SOD*S*MB47*27*1*_*_", + "name": "NERAC - LE PIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.333498, + 44.13789 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472711", + "ref": "FR*SOD*S*MB47*27*1*_*_", + "name": "NERAC - LE PIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.335646, + 44.134117 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472611", + "ref": "FR*SOD*S*MB47*26*1*_*_", + "name": "NERAC - FOIRAIL - GAUCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.335646, + 44.134117 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472612", + "ref": "FR*SOD*S*MB47*26*1*_*_", + "name": "NERAC - FOIRAIL - GAUCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.335512, + 44.134357 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472512", + "ref": "FR*SOD*S*MB47*25*1*_*_", + "name": "NERAC - FOIRAIL - DROITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.335512, + 44.134357 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472511", + "ref": "FR*SOD*S*MB47*25*1*_*_", + "name": "NERAC - FOIRAIL - DROITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.985842, + 44.480385 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472412", + "ref": "FR*SOD*S*MB47*24*1*_*_", + "name": "MONTAYRAL - PLACE PIERRE CAUMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.985842, + 44.480385 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472411", + "ref": "FR*SOD*S*MB47*24*1*_*_", + "name": "MONTAYRAL - PLACE PIERRE CAUMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.943916, + 44.482044 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472312", + "ref": "FR*SOD*S*MB47*23*1*_*_", + "name": "MONSEMPRON-LIBOS - RUE DES ECOLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.943916, + 44.482044 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472311", + "ref": "FR*SOD*S*MB47*23*1*_*_", + "name": "MONSEMPRON-LIBOS - RUE DES ECOLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.767955, + 44.530869 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472212", + "ref": "FR*SOD*S*MB47*22*1*_*_", + "name": "MONFLANQUIN - PLACE YVES BALSEGUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.767955, + 44.530869 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472211", + "ref": "FR*SOD*S*MB47*22*1*_*_", + "name": "MONFLANQUIN - PLACE YVES BALSEGUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.760762, + 44.527367 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472112", + "ref": "FR*SOD*S*MB47*21*1*_*_", + "name": "MONFLANQUIN - ABATTOIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.760762, + 44.527367 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472111", + "ref": "FR*SOD*S*MB47*21*1*_*_", + "name": "MONFLANQUIN - ABATTOIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.609229, + 44.141376 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472011", + "ref": "FR*SOD*S*MB47*20*1*_*_", + "name": "MOIRAX - PLACE DU BRUILHOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.609229, + 44.141376 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB472012", + "ref": "FR*SOD*S*MB47*20*1*_*_", + "name": "MOIRAX - PLACE DU BRUILHOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.359663, + 44.602715 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471911", + "ref": "FR*SOD*S*MB47*19*1*_*_", + "name": "MIRAMONT DE GUYENNE - BOULEVARD ARISTIDE BRIAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.359663, + 44.602715 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471912", + "ref": "FR*SOD*S*MB47*19*1*_*_", + "name": "MIRAMONT DE GUYENNE - BOULEVARD ARISTIDE BRIAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.256566, + 44.056007 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471812", + "ref": "FR*SOD*S*MB47*18*1*_*_", + "name": "MEZIN - PLACE DU CLUB", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.256566, + 44.056007 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471811", + "ref": "FR*SOD*S*MB47*18*1*_*_", + "name": "MEZIN - PLACE DU CLUB", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.261792, + 44.056679 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471711", + "ref": "FR*SOD*S*MB47*17*1*_*_", + "name": "MEZIN - PARKING PISCINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.261792, + 44.056679 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471712", + "ref": "FR*SOD*S*MB47*17*1*_*_", + "name": "MEZIN - PARKING PISCINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.032222, + 44.519165 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471611", + "ref": "FR*SOD*S*MB47*16*1*_*_", + "name": "MEILHAN SUR GARONNE - PLACE DE LHOTEL DE VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.032222, + 44.519165 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB471612", + "ref": "FR*SOD*S*MB47*16*1*_*_", + "name": "MEILHAN SUR GARONNE - PLACE DE LHOTEL DE VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.591341, + 44.398441 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474412", + "ref": "FR*SOD*S*MB47*44*1*_*_", + "name": "SAINTE LIVRADE SUR LOT - FAUBOURG GARDETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.399167, + 44.249722 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473411", + "ref": "FR*SOD*S*MB47*34*1*_*_", + "name": "PORT SAINTE MARIE - PARKING RUE PASTEUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.619894, + 44.206848 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474511", + "ref": "FR*SOD*S*MB47*45*1*_*_", + "name": "AGEN - MONSEIGNEUR POUZET - COTE CARNOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.621467, + 44.442345 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478512", + "ref": "FR*SOD*S*MB47*85*1*_*_", + "name": "CASSENEUIL - CHEMIN DE PASCALET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.625405, + 44.442253 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478411", + "ref": "FR*SOD*S*MB47*84*1*_*_", + "name": "CASSENEUIL - AVENUE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.625405, + 44.442253 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478412", + "ref": "FR*SOD*S*MB47*84*1*_*_", + "name": "CASSENEUIL - AVENUE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.299375, + 44.258472 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478312", + "ref": "FR*SOD*S*MB47*83*1*_*_", + "name": "BUZET SUR BAISE - PARKING DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.299375, + 44.258472 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478311", + "ref": "FR*SOD*S*MB47*83*1*_*_", + "name": "BUZET SUR BAISE - PARKING DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.102908, + 44.385929 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478212", + "ref": "FR*SOD*S*MB47*82*1*_*_", + "name": "BOUGLON - PARKING AIRE DE REPOS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.102908, + 44.385929 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478211", + "ref": "FR*SOD*S*MB47*82*1*_*_", + "name": "BOUGLON - PARKING AIRE DE REPOS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.669306, + 44.186966 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478112", + "ref": "FR*SOD*S*MB47*81*1*_*_", + "name": "BON ENCONTRE - SQUARE BIR HAKEIM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.669306, + 44.186966 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478111", + "ref": "FR*SOD*S*MB47*81*1*_*_", + "name": "BON ENCONTRE - SQUARE BIR HAKEIM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.999401, + 44.40205 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478011", + "ref": "FR*SOD*S*MB47*80*1*_*_", + "name": "TOURNON DAGENAIS - PARKING DU CREDIT AGRICOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.999401, + 44.40205 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478011", + "ref": "FR*SOD*S*MB47*80*1*_*_", + "name": "TOURNON DAGENAIS - PARKING DU CREDIT AGRICOLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.999401, + 44.40205 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478012", + "ref": "FR*SOD*S*MB47*80*1*_*_", + "name": "TOURNON DAGENAIS - PARKING DU CREDIT AGRICOLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.999401, + 44.40205 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478012", + "ref": "FR*SOD*S*MB47*80*1*_*_", + "name": "TOURNON DAGENAIS - PARKING DU CREDIT AGRICOLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.676419, + 44.18615 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477912", + "ref": "FR*SOD*S*MB47*79*1*_*_", + "name": "BON ENCONTRE - PARKING TORTIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.676419, + 44.18615 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477911", + "ref": "FR*SOD*S*MB47*79*1*_*_", + "name": "BON ENCONTRE - PARKING TORTIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07137, + 44.295952 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477811", + "ref": "FR*SOD*S*MB47*78*1*_*_", + "name": "CASTELJALOUX - LAC DE CLARENS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07137, + 44.295952 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477812", + "ref": "FR*SOD*S*MB47*78*1*_*_", + "name": "CASTELJALOUX - LAC DE CLARENS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07137, + 44.295952 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477812", + "ref": "FR*SOD*S*MB47*78*1*_*_", + "name": "CASTELJALOUX - LAC DE CLARENS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07137, + 44.295952 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477811", + "ref": "FR*SOD*S*MB47*78*1*_*_", + "name": "CASTELJALOUX - LAC DE CLARENS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656492, + 44.190346 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477711", + "ref": "FR*SOD*S*MB47*77*1*_*_", + "name": "BON ENCONTRE - PARKING REDON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656492, + 44.190346 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477712", + "ref": "FR*SOD*S*MB47*77*1*_*_", + "name": "BON ENCONTRE - PARKING REDON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.624025, + 44.536303 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477611", + "ref": "FR*SOD*S*MB47*76*1*_*_", + "name": "CANCON - JARDIN PUBLIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.624025, + 44.536303 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477611", + "ref": "FR*SOD*S*MB47*76*1*_*_", + "name": "CANCON - JARDIN PUBLIC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.624025, + 44.536303 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477612", + "ref": "FR*SOD*S*MB47*76*1*_*_", + "name": "CANCON - JARDIN PUBLIC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.624025, + 44.536303 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477612", + "ref": "FR*SOD*S*MB47*76*1*_*_", + "name": "CANCON - JARDIN PUBLIC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67219, + 44.18623 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477512", + "ref": "FR*SOD*S*MB47*75*1*_*_", + "name": "BON ENCONTRE - MASCARON BASILIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.621467, + 44.442345 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478511", + "ref": "FR*SOD*S*MB47*85*1*_*_", + "name": "CASSENEUIL - CHEMIN DE PASCALET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.689687, + 44.175274 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478612", + "ref": "FR*SOD*S*MB47*86*1*_*_", + "name": "CASTELCULIER - RUE LESBOULBENES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339443, + 44.295475 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477412", + "ref": "FR*SOD*S*MB47*74*1*_*_", + "name": "AIGUILLON - PARKING AVENUE JF PONCET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.763611, + 44.283054 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB47112", + "ref": "FR*SOD*S*MB47*1*1*_*_", + "name": "LAROQUE TIMBAUT - PLACE DE LHOTEL DE VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.274231, + 44.291206 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479811", + "ref": "FR*SOD*S*MB47*98*1*_*_", + "name": "DAMAZAN - SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.274231, + 44.291206 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479812", + "ref": "FR*SOD*S*MB47*98*1*_*_", + "name": "DAMAZAN - SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.270507, + 44.286812 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479712", + "ref": "FR*SOD*S*MB47*97*1*_*_", + "name": "DAMAZAN - PARKING COVOITURAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.270507, + 44.286812 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479711", + "ref": "FR*SOD*S*MB47*97*1*_*_", + "name": "DAMAZAN - PARKING COVOITURAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.552938, + 44.220078 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479612", + "ref": "FR*SOD*S*MB47*96*1*_*_", + "name": "COLAYRAC - PLACE MAURICE TISSERAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.552938, + 44.220078 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479611", + "ref": "FR*SOD*S*MB47*96*1*_*_", + "name": "COLAYRAC - PLACE MAURICE TISSERAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.554053, + 44.221779 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479511", + "ref": "FR*SOD*S*MB47*95*1*_*_", + "name": "COLAYRAC - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.554053, + 44.221779 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479512", + "ref": "FR*SOD*S*MB47*95*1*_*_", + "name": "COLAYRAC - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.025985, + 44.447399 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479412", + "ref": "FR*SOD*S*MB47*94*1*_*_", + "name": "COCUMONT - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.025985, + 44.447399 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479411", + "ref": "FR*SOD*S*MB47*94*1*_*_", + "name": "COCUMONT - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.378629, + 44.361179 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479312", + "ref": "FR*SOD*S*MB47*93*1*_*_", + "name": "CLAIRAC - PLACE VICOZE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.378629, + 44.361179 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479311", + "ref": "FR*SOD*S*MB47*93*1*_*_", + "name": "CLAIRAC - PLACE VICOZE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.376292, + 44.360611 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479211", + "ref": "FR*SOD*S*MB47*92*1*_*_", + "name": "CLAIRAC - PARKING TIVOLI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.376292, + 44.360611 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479212", + "ref": "FR*SOD*S*MB47*92*1*_*_", + "name": "CLAIRAC - PARKING TIVOLI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7375, + 44.115276 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479112", + "ref": "FR*SOD*S*MB47*91*1*_*_", + "name": "CAUDECOSTE - ROUTE DE GIMBREDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7375, + 44.115276 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479111", + "ref": "FR*SOD*S*MB47*91*1*_*_", + "name": "CAUDECOSTE - ROUTE DE GIMBREDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.586944, + 44.400085 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474612", + "ref": "FR*SOD*S*MB47*46*1*_*_", + "name": "SAINTE LIVRADE SUR LOT - PARKING GENDARMERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.591389, + 44.651669 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479011", + "ref": "FR*SOD*S*MB47*90*1*_*_", + "name": "CASTILLONNES - PLACE JASMIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.493029, + 44.397484 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478911", + "ref": "FR*SOD*S*MB47*89*1*_*_", + "name": "CASTELMORON SUR LOT - PARKING BRANSOUILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.493029, + 44.397484 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478912", + "ref": "FR*SOD*S*MB47*89*1*_*_", + "name": "CASTELMORON SUR LOT - PARKING BRANSOUILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088177, + 44.31319 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478812", + "ref": "FR*SOD*S*MB47*88*1*_*_", + "name": "CASTELJALOUX - PLACE JOSE BES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088177, + 44.31319 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478811", + "ref": "FR*SOD*S*MB47*88*1*_*_", + "name": "CASTELJALOUX - PLACE JOSE BES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.090439, + 44.313465 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478712", + "ref": "FR*SOD*S*MB47*87*1*_*_", + "name": "CASTELJALOUX - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.090439, + 44.313465 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478711", + "ref": "FR*SOD*S*MB47*87*1*_*_", + "name": "CASTELJALOUX - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.689687, + 44.175274 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB478611", + "ref": "FR*SOD*S*MB47*86*1*_*_", + "name": "CASTELCULIER - RUE LESBOULBENES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67219, + 44.18623 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477511", + "ref": "FR*SOD*S*MB47*75*1*_*_", + "name": "BON ENCONTRE - MASCARON BASILIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.591389, + 44.651669 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB479012", + "ref": "FR*SOD*S*MB47*90*1*_*_", + "name": "CASTILLONNES - PLACE JASMIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339443, + 44.295475 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477411", + "ref": "FR*SOD*S*MB47*74*1*_*_", + "name": "AIGUILLON - PARKING AVENUE JF PONCET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130918, + 44.435215 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475212", + "ref": "FR*SOD*S*MB47*52*1*_*_", + "name": "SAMAZAN - PARKING PARCELLE EAUX PLUVIALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30878, + 44.391033 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475812", + "ref": "FR*SOD*S*MB47*58*1*_*_", + "name": "TONNEINS - RUE DUCOURNEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30878, + 44.391033 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475811", + "ref": "FR*SOD*S*MB47*58*1*_*_", + "name": "TONNEINS - RUE DUCOURNEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61978, + 44.200527 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475712", + "ref": "FR*SOD*S*MB47*57*1*_*_", + "name": "AGEN - TE 47", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61978, + 44.200527 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475711", + "ref": "FR*SOD*S*MB47*57*1*_*_", + "name": "AGEN - TE 47", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.310212, + 44.390133 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475612", + "ref": "FR*SOD*S*MB47*56*1*_*_", + "name": "TONNEINS - MARECHAL FOCH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.310212, + 44.390133 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475611", + "ref": "FR*SOD*S*MB47*56*1*_*_", + "name": "TONNEINS - MARECHAL FOCH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.616868, + 44.191933 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475511", + "ref": "FR*SOD*S*MB47*55*1*_*_", + "name": "AGEN - RUE DE SEVIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.616868, + 44.191933 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475512", + "ref": "FR*SOD*S*MB47*55*1*_*_", + "name": "AGEN - RUE DE SEVIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.451676, + 44.505325 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475412", + "ref": "FR*SOD*S*MB47*54*1*_*_", + "name": "TOMBEBOEUF - PLACE DU BASKET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.451676, + 44.505325 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475411", + "ref": "FR*SOD*S*MB47*54*1*_*_", + "name": "TOMBEBOEUF - PLACE DU BASKET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.616936, + 44.199535 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475311", + "ref": "FR*SOD*S*MB47*53*1*_*_", + "name": "AGEN - PLACE FALLIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.616936, + 44.199535 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475312", + "ref": "FR*SOD*S*MB47*53*1*_*_", + "name": "AGEN - PLACE FALLIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130918, + 44.435215 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475211", + "ref": "FR*SOD*S*MB47*52*1*_*_", + "name": "SAMAZAN - PARKING PARCELLE EAUX PLUVIALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.340556, + 44.301109 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475912", + "ref": "FR*SOD*S*MB47*59*1*_*_", + "name": "AIGUILLON - RUE DE VISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.618712, + 44.192516 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475111", + "ref": "FR*SOD*S*MB47*51*1*_*_", + "name": "AGEN - PIERRE DE COUBERTIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.618712, + 44.192516 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475112", + "ref": "FR*SOD*S*MB47*51*1*_*_", + "name": "AGEN - PIERRE DE COUBERTIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.513095, + 44.225597 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475011", + "ref": "FR*SOD*S*MB47*50*1*_*_", + "name": "SAINT-HILAIRE DE LUSIGNAN - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.513095, + 44.225597 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475012", + "ref": "FR*SOD*S*MB47*50*1*_*_", + "name": "SAINT-HILAIRE DE LUSIGNAN - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.627324, + 44.205681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474912", + "ref": "FR*SOD*S*MB47*49*1*_*_", + "name": "AGEN - PARKING CINEMA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.627324, + 44.205681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474911", + "ref": "FR*SOD*S*MB47*49*1*_*_", + "name": "AGEN - PARKING CINEMA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.805496, + 44.396168 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474812", + "ref": "FR*SOD*S*MB47*48*1*_*_", + "name": "SAINTE SYLVESTRE SUR LOT - PARKING PLACE DU LOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.805496, + 44.396168 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474811", + "ref": "FR*SOD*S*MB47*48*1*_*_", + "name": "SAINTE SYLVESTRE SUR LOT - PARKING PLACE DU LOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.619786, + 44.206921 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474712", + "ref": "FR*SOD*S*MB47*47*1*_*_", + "name": "AGEN - MONSEIGNEUR POUZET - COTE CATHEDRALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.619786, + 44.206921 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474711", + "ref": "FR*SOD*S*MB47*47*1*_*_", + "name": "AGEN - MONSEIGNEUR POUZET - COTE CATHEDRALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.586944, + 44.400085 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB474611", + "ref": "FR*SOD*S*MB47*46*1*_*_", + "name": "SAINTE LIVRADE SUR LOT - PARKING GENDARMERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339443, + 44.295475 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477412", + "ref": "FR*SOD*S*MB47*74*1*_*_", + "name": "AIGUILLON - PARKING AVENUE JF PONCET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.340556, + 44.301109 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB475911", + "ref": "FR*SOD*S*MB47*59*1*_*_", + "name": "AIGUILLON - RUE DE VISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.509986, + 44.28891 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB473511", + "ref": "FR*SOD*S*MB47*35*1*_*_", + "name": "PRAYSSAS - PLACE AVENUE JEAN JAURES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.707673, + 44.405212 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476012", + "ref": "FR*SOD*S*MB47*60*1*_*_", + "name": "VILLENEUVE SUR LOT - PARKING DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.670505, + 44.416508 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476512", + "ref": "FR*SOD*S*MB47*65*1*_*_", + "name": "BIAS - PARKING DU DOJO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.745556, + 44.638332 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476612", + "ref": "FR*SOD*S*MB47*66*1*_*_", + "name": "VILLEREAL - PARKING ATELIER TECHNIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.745556, + 44.638332 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476611", + "ref": "FR*SOD*S*MB47*66*1*_*_", + "name": "VILLEREAL - PARKING ATELIER TECHNIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.663889, + 44.181389 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476711", + "ref": "FR*SOD*S*MB47*67*1*_*_", + "name": "BOE - CHEMIN DES ECOLIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.663889, + 44.181389 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476712", + "ref": "FR*SOD*S*MB47*67*1*_*_", + "name": "BOE - CHEMIN DES ECOLIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.216508, + 44.506062 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476811", + "ref": "FR*SOD*S*MB47*68*1*_*_", + "name": "VIRAZEIL - AIRE DE COVOITURAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.655556, + 44.170834 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476911", + "ref": "FR*SOD*S*MB47*69*1*_*_", + "name": "BOE - DOJO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.655556, + 44.170834 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476912", + "ref": "FR*SOD*S*MB47*69*1*_*_", + "name": "BOE - DOJO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608545, + 44.170858 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477011", + "ref": "FR*SOD*S*MB47*70*1*_*_", + "name": "LE PASSAGE - BEAUREGARD - AVENUE DES PYRENEES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62705, + 44.160133 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477112", + "ref": "FR*SOD*S*MB47*71*1*_*_", + "name": "BOE - PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62705, + 44.160133 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477111", + "ref": "FR*SOD*S*MB47*71*1*_*_", + "name": "BOE - PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.14084, + 44.50922 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477211", + "ref": "FR*SOD*S*MB47*72*1*_*_", + "name": "MARMANDE - ROND POINT DE THIVRAS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630348, + 44.179935 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477312", + "ref": "FR*SOD*S*MB47*73*1*_*_", + "name": "BOE - RUE RIGOULET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630348, + 44.179935 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477311", + "ref": "FR*SOD*S*MB47*73*1*_*_", + "name": "BOE - RUE RIGOULET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.707673, + 44.405212 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476011", + "ref": "FR*SOD*S*MB47*60*1*_*_", + "name": "VILLENEUVE SUR LOT - PARKING DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339443, + 44.295475 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB477411", + "ref": "FR*SOD*S*MB47*74*1*_*_", + "name": "AIGUILLON - PARKING AVENUE JF PONCET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.670505, + 44.416508 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476511", + "ref": "FR*SOD*S*MB47*65*1*_*_", + "name": "BIAS - PARKING DU DOJO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.216508, + 44.506062 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476812", + "ref": "FR*SOD*S*MB47*68*1*_*_", + "name": "VIRAZEIL - AIRE DE COVOITURAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.741111, + 44.638332 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476412", + "ref": "FR*SOD*S*MB47*64*1*_*_", + "name": "VILLEREAL - BOULEVARD ALPHONSE DE POITIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.706495, + 44.408772 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476212", + "ref": "FR*SOD*S*MB47*62*1*_*_", + "name": "VILLENEUVE SUR LOT - PARKING REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.650561, + 44.063637 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476112", + "ref": "FR*SOD*S*MB47*61*1*_*_", + "name": "ASTAFFORT - PARKING PLATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.650561, + 44.063637 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476111", + "ref": "FR*SOD*S*MB47*61*1*_*_", + "name": "ASTAFFORT - PARKING PLATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.741111, + 44.638332 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476411", + "ref": "FR*SOD*S*MB47*64*1*_*_", + "name": "VILLEREAL - BOULEVARD ALPHONSE DE POITIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.706495, + 44.408772 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476211", + "ref": "FR*SOD*S*MB47*62*1*_*_", + "name": "VILLENEUVE SUR LOT - PARKING REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.882228, + 44.277363 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476312", + "ref": "FR*SOD*S*MB47*63*1*_*_", + "name": "BEAUVILLE - PLACE CARRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.882228, + 44.277363 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref:EU:EVSE": "FRS47PMB476311", + "ref": "FR*SOD*S*MB47*63*1*_*_", + "name": "BEAUVILLE - PLACE CARRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -4523,6 +236709,51278 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.216076, + 47.974601 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS27212", + "ref": "FR*SOD*S*OAZS*272*1*_*_", + "name": "NORAUTO - LE MANS SUD", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602749, + 44.786403 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS21311", + "ref": "FR*SOD*S*OAZS*213*1*_*_", + "name": "INTERMARCHE GRADIGNAN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.221395, + 49.120483 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS21912", + "ref": "FR*SOD*S*OAZS*219*1*_*_", + "name": "INTERMARCHE METZ", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.221395, + 49.120483 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS21911", + "ref": "FR*SOD*S*OAZS*219*1*_*_", + "name": "INTERMARCHE METZ", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18295, + 48.027775 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS21821", + "ref": "FR*SOD*S*OAZS*218*2*_*_", + "name": "INTERMARCHE LE MANS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18295, + 48.027775 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS21823", + "ref": "FR*SOD*S*OAZS*218*2*_*_", + "name": "INTERMARCHE LE MANS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18295, + 48.027775 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS21822", + "ref": "FR*SOD*S*OAZS*218*2*_*_", + "name": "INTERMARCHE LE MANS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5076, + 45.16407 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS21512", + "ref": "FR*SOD*S*OAZS*215*1*_*_", + "name": "INTERMARCHE BRIVE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5076, + 45.16407 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS21511", + "ref": "FR*SOD*S*OAZS*215*1*_*_", + "name": "INTERMARCHE BRIVE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602749, + 44.786403 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS21312", + "ref": "FR*SOD*S*OAZS*213*1*_*_", + "name": "INTERMARCHE GRADIGNAN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.21121, + 50.19432 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS19821", + "ref": "FR*SOD*S*OAZS*198*2*_*_", + "name": "INTERMARCHE CAMBRAI", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8633, + 47.628899 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22121", + "ref": "FR*SOD*S*OAZS*221*2*_*_", + "name": "LECLERC BELFORT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.21121, + 50.19432 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS19822", + "ref": "FR*SOD*S*OAZS*198*2*_*_", + "name": "INTERMARCHE CAMBRAI", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.21121, + 50.19432 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS19823", + "ref": "FR*SOD*S*OAZS*198*2*_*_", + "name": "INTERMARCHE CAMBRAI", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.322088, + 46.59909 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS19421", + "ref": "FR*SOD*S*OAZS*194*2*_*_", + "name": "INTERMARCHE POITIERS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.322088, + 46.59909 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS19423", + "ref": "FR*SOD*S*OAZS*194*2*_*_", + "name": "INTERMARCHE POITIERS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.322088, + 46.59909 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS19422", + "ref": "FR*SOD*S*OAZS*194*2*_*_", + "name": "INTERMARCHE POITIERS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.976783, + 45.954433 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS19221", + "ref": "FR*SOD*S*OAZS*192*2*_*_", + "name": "INTERMARCHE ROCHEFORT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.976783, + 45.954433 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS19222", + "ref": "FR*SOD*S*OAZS*192*2*_*_", + "name": "INTERMARCHE ROCHEFORT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.976783, + 45.954433 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS19223", + "ref": "FR*SOD*S*OAZS*192*2*_*_", + "name": "INTERMARCHE ROCHEFORT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8633, + 47.628899 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22123", + "ref": "FR*SOD*S*OAZS*221*2*_*_", + "name": "LECLERC BELFORT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8633, + 47.628899 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22122", + "ref": "FR*SOD*S*OAZS*221*2*_*_", + "name": "LECLERC BELFORT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64417, + 48.828511 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS18821", + "ref": "FR*SOD*S*OAZS*188*2*_*_", + "name": "INTERMARCHE CROISSY BEAUBOURG", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.330305, + 46.590128 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22421", + "ref": "FR*SOD*S*OAZS*224*2*_*_", + "name": "E.LECLERC - AVERMES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07665, + 49.36376 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22811", + "ref": "FR*SOD*S*OAZS*228*1*_*_", + "name": "IZIVIA | DEAUVILLE - RUE MIRABEAU PROLONGEE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07665, + 49.36376 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22812", + "ref": "FR*SOD*S*OAZS*228*1*_*_", + "name": "IZIVIA | DEAUVILLE - RUE MIRABEAU PROLONGEE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.495323, + 48.77495 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22722", + "ref": "FR*SOD*S*OAZS*227*2*_*_", + "name": "BON - STATION MULTI-ENERGIE BONNEUIL-SUR-MARNE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.495323, + 48.77495 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22711", + "ref": "FR*SOD*S*OAZS*227*1*_*_", + "name": "BON - STATION MULTI-ENERGIE BONNEUIL-SUR-MARNE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.495323, + 48.77495 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22721", + "ref": "FR*SOD*S*OAZS*227*2*_*_", + "name": "BON - STATION MULTI-ENERGIE BONNEUIL-SUR-MARNE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9003, + 45.593597 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22612", + "ref": "FR*SOD*S*OAZS*226*1*_*_", + "name": "CC CHAMNORD 2", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9003, + 45.593597 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22621", + "ref": "FR*SOD*S*OAZS*226*2*_*_", + "name": "CC CHAMNORD 2", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9003, + 45.593597 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22611", + "ref": "FR*SOD*S*OAZS*226*1*_*_", + "name": "CC CHAMNORD 2", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9003, + 45.593597 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22622", + "ref": "FR*SOD*S*OAZS*226*2*_*_", + "name": "CC CHAMNORD 2", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9003, + 45.593597 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22613", + "ref": "FR*SOD*S*OAZS*226*1*_*_", + "name": "CC CHAMNORD 2", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.899208, + 45.59193 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22521", + "ref": "FR*SOD*S*OAZS*225*2*_*_", + "name": "CC CHAMNORD 1", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.899208, + 45.59193 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22522", + "ref": "FR*SOD*S*OAZS*225*2*_*_", + "name": "CC CHAMNORD 1", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.899208, + 45.59193 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22513", + "ref": "FR*SOD*S*OAZS*225*1*_*_", + "name": "CC CHAMNORD 1", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.899208, + 45.59193 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22511", + "ref": "FR*SOD*S*OAZS*225*1*_*_", + "name": "CC CHAMNORD 1", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.899208, + 45.59193 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22512", + "ref": "FR*SOD*S*OAZS*225*1*_*_", + "name": "CC CHAMNORD 1", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.330305, + 46.590128 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22411", + "ref": "FR*SOD*S*OAZS*224*1*_*_", + "name": "E.LECLERC - AVERMES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.330305, + 46.590128 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22422", + "ref": "FR*SOD*S*OAZS*224*2*_*_", + "name": "E.LECLERC - AVERMES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.330305, + 46.590128 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22413", + "ref": "FR*SOD*S*OAZS*224*1*_*_", + "name": "E.LECLERC - AVERMES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.330305, + 46.590128 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22412", + "ref": "FR*SOD*S*OAZS*224*1*_*_", + "name": "E.LECLERC - AVERMES", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64417, + 48.828511 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS18823", + "ref": "FR*SOD*S*OAZS*188*2*_*_", + "name": "INTERMARCHE CROISSY BEAUBOURG", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64417, + 48.828511 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS18822", + "ref": "FR*SOD*S*OAZS*188*2*_*_", + "name": "INTERMARCHE CROISSY BEAUBOURG", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08303, + 49.36278 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22911", + "ref": "FR*SOD*S*OAZS*229*1*_*_", + "name": "IZIVIA | DEAUVILLE - QUAI DE LA TOUQUES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.643388, + 49.582576 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS17021", + "ref": "FR*SOD*S*OAZS*170*2*_*_", + "name": "INTERMARCHE LAON", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56331, + 48.64879 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS2321", + "ref": "FR*SOD*S*OAZS*23*2*_*_", + "name": "INTERMARCHE COMBS-LA-VILLE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56331, + 48.64879 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS2341", + "ref": "FR*SOD*S*OAZS*23*4*_*_", + "name": "INTERMARCHE COMBS-LA-VILLE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.268193, + 45.814212 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS1432", + "ref": "FR*SOD*S*OAZS*14*3*_*_", + "name": "INTERMARCHE LIMOGES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.268193, + 45.814212 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS1433", + "ref": "FR*SOD*S*OAZS*14*3*_*_", + "name": "INTERMARCHE LIMOGES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.268193, + 45.814212 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS1431", + "ref": "FR*SOD*S*OAZS*14*3*_*_", + "name": "INTERMARCHE LIMOGES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59948, + 48.703034 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS26912", + "ref": "FR*SOD*S*OAZS*269*1*_*_", + "name": "NORAUTO - BRIE COMTE ROBERT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59948, + 48.703034 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS26911", + "ref": "FR*SOD*S*OAZS*269*1*_*_", + "name": "NORAUTO - BRIE COMTE ROBERT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59948, + 48.703034 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS26913", + "ref": "FR*SOD*S*OAZS*269*1*_*_", + "name": "NORAUTO - BRIE COMTE ROBERT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352528, + 49.007023 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS27021", + "ref": "FR*SOD*S*OAZS*270*2*_*_", + "name": "NORAUTO - SAINT BRICE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352528, + 49.007023 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS27011", + "ref": "FR*SOD*S*OAZS*270*1*_*_", + "name": "NORAUTO - SAINT BRICE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352528, + 49.007023 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS27022", + "ref": "FR*SOD*S*OAZS*270*2*_*_", + "name": "NORAUTO - SAINT BRICE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352528, + 49.007023 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS27013", + "ref": "FR*SOD*S*OAZS*270*1*_*_", + "name": "NORAUTO - SAINT BRICE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352528, + 49.007023 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS27012", + "ref": "FR*SOD*S*OAZS*270*1*_*_", + "name": "NORAUTO - SAINT BRICE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.053254, + 47.704318 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS27112", + "ref": "FR*SOD*S*OAZS*271*1*_*_", + "name": "NORAUTO - LA FLECHE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.053254, + 47.704318 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS27113", + "ref": "FR*SOD*S*OAZS*271*1*_*_", + "name": "NORAUTO - LA FLECHE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.053254, + 47.704318 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS27111", + "ref": "FR*SOD*S*OAZS*271*1*_*_", + "name": "NORAUTO - LA FLECHE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.216076, + 47.974601 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS27213", + "ref": "FR*SOD*S*OAZS*272*1*_*_", + "name": "NORAUTO - LE MANS SUD", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.216076, + 47.974601 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS27211", + "ref": "FR*SOD*S*OAZS*272*1*_*_", + "name": "NORAUTO - LE MANS SUD", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15792, + 47.975755 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS27312", + "ref": "FR*SOD*S*OAZS*273*1*_*_", + "name": "NORAUTO - ALLONNES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56331, + 48.64879 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS2331", + "ref": "FR*SOD*S*OAZS*23*3*_*_", + "name": "INTERMARCHE COMBS-LA-VILLE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56331, + 48.64879 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS2332", + "ref": "FR*SOD*S*OAZS*23*3*_*_", + "name": "INTERMARCHE COMBS-LA-VILLE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56331, + 48.64879 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS2322", + "ref": "FR*SOD*S*OAZS*23*2*_*_", + "name": "INTERMARCHE COMBS-LA-VILLE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.669763, + 46.820196 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS10322", + "ref": "FR*SOD*S*OAZS*103*2*_*_", + "name": "E.LECLERC SAINT MAUR NORD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.643388, + 49.582576 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS17022", + "ref": "FR*SOD*S*OAZS*170*2*_*_", + "name": "INTERMARCHE LAON", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.643388, + 49.582576 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS17023", + "ref": "FR*SOD*S*OAZS*170*2*_*_", + "name": "INTERMARCHE LAON", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.566611, + 47.251353 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS16422", + "ref": "FR*SOD*S*OAZS*164*2*_*_", + "name": "POUILLY EN AUXOIS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.566611, + 47.251353 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS16421", + "ref": "FR*SOD*S*OAZS*164*2*_*_", + "name": "POUILLY EN AUXOIS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.566611, + 47.251353 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS16423", + "ref": "FR*SOD*S*OAZS*164*2*_*_", + "name": "POUILLY EN AUXOIS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14912, + 45.819579 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS12631", + "ref": "FR*SOD*S*OAZS*126*3*_*_", + "name": "INTERMARCHE GERZAT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14912, + 45.819579 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS12632", + "ref": "FR*SOD*S*OAZS*126*3*_*_", + "name": "INTERMARCHE GERZAT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14912, + 45.819579 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS12633", + "ref": "FR*SOD*S*OAZS*126*3*_*_", + "name": "INTERMARCHE GERZAT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.669763, + 46.820196 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS10321", + "ref": "FR*SOD*S*OAZS*103*2*_*_", + "name": "E.LECLERC SAINT MAUR NORD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56331, + 48.64879 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS2342", + "ref": "FR*SOD*S*OAZS*23*4*_*_", + "name": "INTERMARCHE COMBS-LA-VILLE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.098543, + 50.645579 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS10231", + "ref": "FR*SOD*S*OAZS*102*3*_*_", + "name": "INTERMARCHE MONS EN BAROEIL", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.098543, + 50.645579 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS10232", + "ref": "FR*SOD*S*OAZS*102*3*_*_", + "name": "INTERMARCHE MONS EN BAROEIL", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.098543, + 50.645579 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS10233", + "ref": "FR*SOD*S*OAZS*102*3*_*_", + "name": "INTERMARCHE MONS EN BAROEIL", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.293566, + 47.759518 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS8031", + "ref": "FR*SOD*S*OAZS*80*3*_*_", + "name": "INTERMARCHE PFASTATT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.293566, + 47.759518 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS8032", + "ref": "FR*SOD*S*OAZS*80*3*_*_", + "name": "INTERMARCHE PFASTATT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.293566, + 47.759518 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS8033", + "ref": "FR*SOD*S*OAZS*80*3*_*_", + "name": "INTERMARCHE PFASTATT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59105, + 47.262201 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS4322", + "ref": "FR*SOD*S*OAZS*43*2*_*_", + "name": "E.LECLERC ORVAULT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59105, + 47.262201 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS4321", + "ref": "FR*SOD*S*OAZS*43*2*_*_", + "name": "E.LECLERC ORVAULT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08303, + 49.36278 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS22912", + "ref": "FR*SOD*S*OAZS*229*1*_*_", + "name": "IZIVIA | DEAUVILLE - QUAI DE LA TOUQUES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07042, + 49.35469 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23011", + "ref": "FR*SOD*S*OAZS*230*1*_*_", + "name": "IZIVIA | DEAUVILLE - SQUARE DE LEGLISE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15792, + 47.975755 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS27313", + "ref": "FR*SOD*S*OAZS*273*1*_*_", + "name": "NORAUTO - ALLONNES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.198934, + 48.991535 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25513", + "ref": "FR*SOD*S*OAZS*255*1*_*_", + "name": "NORAUTO - MONTIGNY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.550342, + 47.284433 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25313", + "ref": "FR*SOD*S*OAZS*253*1*_*_", + "name": "NORAUTO - LA CHAPELLE-SUR-ERDRE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.550342, + 47.284433 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25311", + "ref": "FR*SOD*S*OAZS*253*1*_*_", + "name": "NORAUTO - LA CHAPELLE-SUR-ERDRE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298284, + 49.163926 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25212", + "ref": "FR*SOD*S*OAZS*252*1*_*_", + "name": "NORAUTO - MONDEVILLE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298284, + 49.163926 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25223", + "ref": "FR*SOD*S*OAZS*252*2*_*_", + "name": "NORAUTO - MONDEVILLE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298284, + 49.163926 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25211", + "ref": "FR*SOD*S*OAZS*252*1*_*_", + "name": "NORAUTO - MONDEVILLE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298284, + 49.163926 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25222", + "ref": "FR*SOD*S*OAZS*252*2*_*_", + "name": "NORAUTO - MONDEVILLE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298284, + 49.163926 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25221", + "ref": "FR*SOD*S*OAZS*252*2*_*_", + "name": "NORAUTO - MONDEVILLE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.917933, + 48.95821 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25113", + "ref": "FR*SOD*S*OAZS*251*1*_*_", + "name": "NORAUTO - MEAUX", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.917933, + 48.95821 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25111", + "ref": "FR*SOD*S*OAZS*251*1*_*_", + "name": "NORAUTO - MEAUX", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.917933, + 48.95821 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25112", + "ref": "FR*SOD*S*OAZS*251*1*_*_", + "name": "NORAUTO - MEAUX", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.654923, + 48.842721 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25011", + "ref": "FR*SOD*S*OAZS*250*1*_*_", + "name": "NORAUTO - TORCY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.654923, + 48.842721 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25012", + "ref": "FR*SOD*S*OAZS*250*1*_*_", + "name": "NORAUTO - TORCY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.654923, + 48.842721 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25013", + "ref": "FR*SOD*S*OAZS*250*1*_*_", + "name": "NORAUTO - TORCY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.968916, + 49.534125 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24911", + "ref": "FR*SOD*S*OAZS*249*1*_*_", + "name": "NORAUTO - BARENTIN", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.968916, + 49.534125 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24912", + "ref": "FR*SOD*S*OAZS*249*1*_*_", + "name": "NORAUTO - BARENTIN", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.968916, + 49.534125 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24913", + "ref": "FR*SOD*S*OAZS*249*1*_*_", + "name": "NORAUTO - BARENTIN", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.189267, + 49.529647 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24823", + "ref": "FR*SOD*S*OAZS*248*2*_*_", + "name": "NORAUTO - MONTIVILLIERS", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.189267, + 49.529647 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24812", + "ref": "FR*SOD*S*OAZS*248*1*_*_", + "name": "NORAUTO - MONTIVILLIERS", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.189267, + 49.529647 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24821", + "ref": "FR*SOD*S*OAZS*248*2*_*_", + "name": "NORAUTO - MONTIVILLIERS", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.550342, + 47.284433 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25312", + "ref": "FR*SOD*S*OAZS*253*1*_*_", + "name": "NORAUTO - LA CHAPELLE-SUR-ERDRE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.198934, + 48.991535 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25511", + "ref": "FR*SOD*S*OAZS*255*1*_*_", + "name": "NORAUTO - MONTIGNY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07042, + 49.35469 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23012", + "ref": "FR*SOD*S*OAZS*230*1*_*_", + "name": "IZIVIA | DEAUVILLE - SQUARE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.198934, + 48.991535 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25512", + "ref": "FR*SOD*S*OAZS*255*1*_*_", + "name": "NORAUTO - MONTIGNY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.078485, + 49.075618 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS26813", + "ref": "FR*SOD*S*OAZS*268*1*_*_", + "name": "NORAUTO - OSNY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659959, + 47.42451 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS26713", + "ref": "FR*SOD*S*OAZS*267*1*_*_", + "name": "NORAUTO - TOURS ST CYR SUR LOIRE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659959, + 47.42451 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS26711", + "ref": "FR*SOD*S*OAZS*267*1*_*_", + "name": "NORAUTO - TOURS ST CYR SUR LOIRE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659959, + 47.42451 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS26712", + "ref": "FR*SOD*S*OAZS*267*1*_*_", + "name": "NORAUTO - TOURS ST CYR SUR LOIRE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206899, + 48.945617 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS26612", + "ref": "FR*SOD*S*OAZS*266*1*_*_", + "name": "NORAUTO - ARGENTEUIL", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206899, + 48.945617 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS26611", + "ref": "FR*SOD*S*OAZS*266*1*_*_", + "name": "NORAUTO - ARGENTEUIL", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206899, + 48.945617 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS26613", + "ref": "FR*SOD*S*OAZS*266*1*_*_", + "name": "NORAUTO - ARGENTEUIL", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91136, + 47.876422 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25913", + "ref": "FR*SOD*S*OAZS*259*1*_*_", + "name": "NORAUTO - ORLEANS OLIVET", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91136, + 47.876422 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25911", + "ref": "FR*SOD*S*OAZS*259*1*_*_", + "name": "NORAUTO - ORLEANS OLIVET", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91136, + 47.876422 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25912", + "ref": "FR*SOD*S*OAZS*259*1*_*_", + "name": "NORAUTO - ORLEANS OLIVET", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.469031, + 48.427316 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25812", + "ref": "FR*SOD*S*OAZS*258*1*_*_", + "name": "NORAUTO - BREST 1", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.469031, + 48.427316 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25813", + "ref": "FR*SOD*S*OAZS*258*1*_*_", + "name": "NORAUTO - BREST 1", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.469031, + 48.427316 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25811", + "ref": "FR*SOD*S*OAZS*258*1*_*_", + "name": "NORAUTO - BREST 1", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.528937, + 48.388316 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25711", + "ref": "FR*SOD*S*OAZS*257*1*_*_", + "name": "NORAUTO - BREST 2", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.528937, + 48.388316 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25713", + "ref": "FR*SOD*S*OAZS*257*1*_*_", + "name": "NORAUTO - BREST 2", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.528937, + 48.388316 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25712", + "ref": "FR*SOD*S*OAZS*257*1*_*_", + "name": "NORAUTO - BREST 2", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.573282, + 47.194623 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25612", + "ref": "FR*SOD*S*OAZS*256*1*_*_", + "name": "NORAUTO - NANTES REZE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.573282, + 47.194623 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25611", + "ref": "FR*SOD*S*OAZS*256*1*_*_", + "name": "NORAUTO - NANTES REZE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.573282, + 47.194623 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS25613", + "ref": "FR*SOD*S*OAZS*256*1*_*_", + "name": "NORAUTO - NANTES REZE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.189267, + 49.529647 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24822", + "ref": "FR*SOD*S*OAZS*248*2*_*_", + "name": "NORAUTO - MONTIVILLIERS", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.189267, + 49.529647 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24811", + "ref": "FR*SOD*S*OAZS*248*1*_*_", + "name": "NORAUTO - MONTIVILLIERS", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.530598, + 47.398424 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24721", + "ref": "FR*SOD*S*OAZS*247*2*_*_", + "name": "HYPER U - MURS-ERIGNE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.530598, + 47.398424 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24722", + "ref": "FR*SOD*S*OAZS*247*2*_*_", + "name": "HYPER U - MURS-ERIGNE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07285, + 49.36195 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24011", + "ref": "FR*SOD*S*OAZS*240*1*_*_", + "name": "IZIVIA | DEAUVILLE - MARINA - BD EUGENE CORNUCHE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07285, + 49.36195 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24012", + "ref": "FR*SOD*S*OAZS*240*1*_*_", + "name": "IZIVIA | DEAUVILLE - MARINA - BD EUGENE CORNUCHE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07285, + 49.36195 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24013", + "ref": "FR*SOD*S*OAZS*240*1*_*_", + "name": "IZIVIA | DEAUVILLE - MARINA - BD EUGENE CORNUCHE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08352, + 49.36012 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23912", + "ref": "FR*SOD*S*OAZS*239*1*_*_", + "name": "IZIVIA | DEAUVILLE - GARE - PLACE LOUIS ARMAND", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08352, + 49.36012 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23911", + "ref": "FR*SOD*S*OAZS*239*1*_*_", + "name": "IZIVIA | DEAUVILLE - GARE - PLACE LOUIS ARMAND", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07448, + 49.362896 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23812", + "ref": "FR*SOD*S*OAZS*238*1*_*_", + "name": "IZIVIA | DEAUVILLE - LYCEE - BD EUGENE CORNUCHE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07448, + 49.362896 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23811", + "ref": "FR*SOD*S*OAZS*238*1*_*_", + "name": "IZIVIA | DEAUVILLE - LYCEE - BD EUGENE CORNUCHE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06664, + 49.3547 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23712", + "ref": "FR*SOD*S*OAZS*237*1*_*_", + "name": "IZIVIA | DEAUVILLE - AVENUE DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06664, + 49.3547 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23711", + "ref": "FR*SOD*S*OAZS*237*1*_*_", + "name": "IZIVIA | DEAUVILLE - AVENUE DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08258, + 49.36224 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23511", + "ref": "FR*SOD*S*OAZS*235*1*_*_", + "name": "IZIVIA | DEAUVILLE - PLACE JOSEPHINE BAKER", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08258, + 49.36224 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23512", + "ref": "FR*SOD*S*OAZS*235*1*_*_", + "name": "IZIVIA | DEAUVILLE - PLACE JOSEPHINE BAKER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0724, + 49.35691 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23411", + "ref": "FR*SOD*S*OAZS*234*1*_*_", + "name": "IZIVIA | DEAUVILLE - AVENUE DU GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0724, + 49.35691 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23412", + "ref": "FR*SOD*S*OAZS*234*1*_*_", + "name": "IZIVIA | DEAUVILLE - AVENUE DU GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.082, + 49.36005 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23311", + "ref": "FR*SOD*S*OAZS*233*1*_*_", + "name": "IZIVIA | DEAUVILLE - PARKING DE LESPLANADE DU BASSIN MORNY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.082, + 49.36005 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23312", + "ref": "FR*SOD*S*OAZS*233*1*_*_", + "name": "IZIVIA | DEAUVILLE - PARKING DE LESPLANADE DU BASSIN MORNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08237, + 49.35703 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23211", + "ref": "FR*SOD*S*OAZS*232*1*_*_", + "name": "IZIVIA | DEAUVILLE - BOULEVARD DES SPORTS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08237, + 49.35703 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23212", + "ref": "FR*SOD*S*OAZS*232*1*_*_", + "name": "IZIVIA | DEAUVILLE - BOULEVARD DES SPORTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07346, + 49.3443 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23111", + "ref": "FR*SOD*S*OAZS*231*1*_*_", + "name": "IZIVIA | DEAUVILLE - AVENUE DES MARECHAUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07346, + 49.3443 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS23112", + "ref": "FR*SOD*S*OAZS*231*1*_*_", + "name": "IZIVIA | DEAUVILLE - AVENUE DES MARECHAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.519112, + 43.492885 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24122", + "ref": "FR*SOD*S*OAZS*241*2*_*_", + "name": "E.LECLERC ANGLET", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.519112, + 43.492885 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24111", + "ref": "FR*SOD*S*OAZS*241*1*_*_", + "name": "E.LECLERC ANGLET", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.519112, + 43.492885 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24123", + "ref": "FR*SOD*S*OAZS*241*2*_*_", + "name": "E.LECLERC ANGLET", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99055, + 48.625582 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24422", + "ref": "FR*SOD*S*OAZS*244*2*_*_", + "name": "NORAUTO - SAINT-MALO", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.530598, + 47.398424 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24712", + "ref": "FR*SOD*S*OAZS*247*1*_*_", + "name": "HYPER U - MURS-ERIGNE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.530598, + 47.398424 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24723", + "ref": "FR*SOD*S*OAZS*247*2*_*_", + "name": "HYPER U - MURS-ERIGNE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.530598, + 47.398424 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24711", + "ref": "FR*SOD*S*OAZS*247*1*_*_", + "name": "HYPER U - MURS-ERIGNE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.466318, + 49.095829 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24511", + "ref": "FR*SOD*S*OAZS*245*1*_*_", + "name": "NORAUTO - VERNON", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.466318, + 49.095829 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24512", + "ref": "FR*SOD*S*OAZS*245*1*_*_", + "name": "NORAUTO - VERNON", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.466318, + 49.095829 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24513", + "ref": "FR*SOD*S*OAZS*245*1*_*_", + "name": "NORAUTO - VERNON", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99055, + 48.625582 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24411", + "ref": "FR*SOD*S*OAZS*244*1*_*_", + "name": "NORAUTO - SAINT-MALO", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99055, + 48.625582 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24412", + "ref": "FR*SOD*S*OAZS*244*1*_*_", + "name": "NORAUTO - SAINT-MALO", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99055, + 48.625582 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24423", + "ref": "FR*SOD*S*OAZS*244*2*_*_", + "name": "NORAUTO - SAINT-MALO", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.519112, + 43.492885 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24121", + "ref": "FR*SOD*S*OAZS*241*2*_*_", + "name": "E.LECLERC ANGLET", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99055, + 48.625582 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24421", + "ref": "FR*SOD*S*OAZS*244*2*_*_", + "name": "NORAUTO - SAINT-MALO", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.016885, + 47.403579 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24312", + "ref": "FR*SOD*S*OAZS*243*1*_*_", + "name": "E.LECLERC - AMBOISE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.016885, + 47.403579 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24311", + "ref": "FR*SOD*S*OAZS*243*1*_*_", + "name": "E.LECLERC - AMBOISE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.016885, + 47.403579 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24313", + "ref": "FR*SOD*S*OAZS*243*1*_*_", + "name": "E.LECLERC - AMBOISE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80384, + 45.76165 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24212", + "ref": "FR*SOD*S*OAZS*242*1*_*_", + "name": "E.LECLERC LYON BARTHELEMY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80384, + 45.76165 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24211", + "ref": "FR*SOD*S*OAZS*242*1*_*_", + "name": "E.LECLERC LYON BARTHELEMY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80384, + 45.76165 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24213", + "ref": "FR*SOD*S*OAZS*242*1*_*_", + "name": "E.LECLERC LYON BARTHELEMY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.519112, + 43.492885 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS24112", + "ref": "FR*SOD*S*OAZS*241*1*_*_", + "name": "E.LECLERC ANGLET", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15792, + 47.975755 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS27311", + "ref": "FR*SOD*S*OAZS*273*1*_*_", + "name": "NORAUTO - ALLONNES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.078485, + 49.075618 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS26812", + "ref": "FR*SOD*S*OAZS*268*1*_*_", + "name": "NORAUTO - OSNY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.078485, + 49.075618 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref:EU:EVSE": "FRE04POAZS26811", + "ref": "FR*SOD*S*OAZS*268*1*_*_", + "name": "NORAUTO - OSNY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.385066, + 43.851494 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401612", + "ref": "FR*SOD*S*MB40*16*1*_*_", + "name": "MOLIETS - AVENUE DE LOCEAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.386023, + 43.541794 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407912", + "ref": "FR*SOD*S*MB40*79*1*_*_", + "name": "SAINT MARTIN DE SEIGNANX - PARKING SUPER U", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.125996, + 43.613544 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407814", + "ref": "FR*SOD*S*MB40*78*1*_*_", + "name": "SAINT LON LES MINES - PARKING SUPERETTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.125996, + 43.613544 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407813", + "ref": "FR*SOD*S*MB40*78*1*_*_", + "name": "SAINT LON LES MINES - PARKING SUPERETTE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.125996, + 43.613544 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407811", + "ref": "FR*SOD*S*MB40*78*1*_*_", + "name": "SAINT LON LES MINES - PARKING SUPERETTE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.125996, + 43.613544 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407812", + "ref": "FR*SOD*S*MB40*78*1*_*_", + "name": "SAINT LON LES MINES - PARKING SUPERETTE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.232223, + 43.980003 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407711", + "ref": "FR*SOD*S*MB40*77*1*_*_", + "name": "SAINT JUSTIN - PARKING ALLEE GASTON PHOEBUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.232223, + 43.980003 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407712", + "ref": "FR*SOD*S*MB40*77*1*_*_", + "name": "SAINT JUSTIN - PARKING ALLEE GASTON PHOEBUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.232223, + 43.980003 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407714", + "ref": "FR*SOD*S*MB40*77*1*_*_", + "name": "SAINT JUSTIN - PARKING ALLEE GASTON PHOEBUS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.232223, + 43.980003 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407713", + "ref": "FR*SOD*S*MB40*77*1*_*_", + "name": "SAINT JUSTIN - PARKING ALLEE GASTON PHOEBUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.228767, + 43.688267 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407613", + "ref": "FR*SOD*S*MB40*76*1*_*_", + "name": "SAINT GEOURS DE MARENNE - PARKING DERRIERE EGLISE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.228767, + 43.688267 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407614", + "ref": "FR*SOD*S*MB40*76*1*_*_", + "name": "SAINT GEOURS DE MARENNE - PARKING DERRIERE EGLISE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.228767, + 43.688267 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407611", + "ref": "FR*SOD*S*MB40*76*1*_*_", + "name": "SAINT GEOURS DE MARENNE - PARKING DERRIERE EGLISE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.228767, + 43.688267 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407612", + "ref": "FR*SOD*S*MB40*76*1*_*_", + "name": "SAINT GEOURS DE MARENNE - PARKING DERRIERE EGLISE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.449683, + 43.916889 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407513", + "ref": "FR*SOD*S*MB40*75*1*_*_", + "name": "SAINT AVIT - ALLEE MAMOURA", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.449683, + 43.916889 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407511", + "ref": "FR*SOD*S*MB40*75*1*_*_", + "name": "SAINT AVIT - ALLEE MAMOURA", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.386023, + 43.541794 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407914", + "ref": "FR*SOD*S*MB40*79*1*_*_", + "name": "SAINT MARTIN DE SEIGNANX - PARKING SUPER U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.386023, + 43.541794 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407913", + "ref": "FR*SOD*S*MB40*79*1*_*_", + "name": "SAINT MARTIN DE SEIGNANX - PARKING SUPER U", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.449683, + 43.916889 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407514", + "ref": "FR*SOD*S*MB40*75*1*_*_", + "name": "SAINT AVIT - ALLEE MAMOURA", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.386023, + 43.541794 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407911", + "ref": "FR*SOD*S*MB40*79*1*_*_", + "name": "SAINT MARTIN DE SEIGNANX - PARKING SUPER U", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.641041, + 43.928139 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408013", + "ref": "FR*SOD*S*MB40*80*1*_*_", + "name": "SAINT MARTIN DONEY - PARKING PLACE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.641041, + 43.928139 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408011", + "ref": "FR*SOD*S*MB40*80*1*_*_", + "name": "SAINT MARTIN DONEY - PARKING PLACE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.641041, + 43.928139 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408014", + "ref": "FR*SOD*S*MB40*80*1*_*_", + "name": "SAINT MARTIN DONEY - PARKING PLACE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.641041, + 43.928139 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408012", + "ref": "FR*SOD*S*MB40*80*1*_*_", + "name": "SAINT MARTIN DONEY - PARKING PLACE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.064402, + 43.727768 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408111", + "ref": "FR*SOD*S*MB40*81*1*_*_", + "name": "SAINT PAUL LES DAX - PARKING LAC DE CHRISTUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.064402, + 43.727768 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408113", + "ref": "FR*SOD*S*MB40*81*1*_*_", + "name": "SAINT PAUL LES DAX - PARKING LAC DE CHRISTUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.385066, + 43.851494 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401611", + "ref": "FR*SOD*S*MB40*16*1*_*_", + "name": "MOLIETS - AVENUE DE LOCEAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.292032, + 44.213303 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401511", + "ref": "FR*SOD*S*MB40*15*1*_*_", + "name": "MIMIZAN - PARKING SEGOSA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.292032, + 44.213303 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401512", + "ref": "FR*SOD*S*MB40*15*1*_*_", + "name": "MIMIZAN - PARKING SEGOSA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.378626, + 43.814949 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401411", + "ref": "FR*SOD*S*MB40*14*1*_*_", + "name": "MESSANGES - ROUTE DES LACS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.055476, + 43.708969 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40312", + "ref": "FR*SOD*S*MB40*3*1*_*_", + "name": "DAX - PLACE CAMILLE BOUVET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.378626, + 43.814949 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401412", + "ref": "FR*SOD*S*MB40*14*1*_*_", + "name": "MESSANGES - ROUTE DES LACS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.985157, + 44.231018 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401311", + "ref": "FR*SOD*S*MB40*13*1*_*_", + "name": "LUE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.449683, + 43.916889 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407512", + "ref": "FR*SOD*S*MB40*75*1*_*_", + "name": "SAINT AVIT - ALLEE MAMOURA", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.922969, + 43.787643 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407411", + "ref": "FR*SOD*S*MB40*74*1*_*_", + "name": "PONTONX SUR ADOUR - RUE DE BALUHEC PARKING DES ARENES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.040466, + 43.707176 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40411", + "ref": "FR*SOD*S*MB40*4*1*_*_", + "name": "DAX - PLACE DE LA CHALOSSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.503016, + 43.884914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407013", + "ref": "FR*SOD*S*MB40*70*1*_*_", + "name": "MONT DE MARSAN - PARKING POLE DECHANGE MULTIMODAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.303443, + 43.876064 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406612", + "ref": "FR*SOD*S*MB40*66*1*_*_", + "name": "LEON - PLACE DE LABBE DULONG", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.213377, + 43.77866 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406711", + "ref": "FR*SOD*S*MB40*67*1*_*_", + "name": "MAGESCQ - AIRE DE COVOITURAGE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.213377, + 43.77866 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406714", + "ref": "FR*SOD*S*MB40*67*1*_*_", + "name": "MAGESCQ - AIRE DE COVOITURAGE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.213377, + 43.77866 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406712", + "ref": "FR*SOD*S*MB40*67*1*_*_", + "name": "MAGESCQ - AIRE DE COVOITURAGE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.213377, + 43.77866 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406713", + "ref": "FR*SOD*S*MB40*67*1*_*_", + "name": "MAGESCQ - AIRE DE COVOITURAGE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.227322, + 44.202587 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406811", + "ref": "FR*SOD*S*MB40*68*1*_*_", + "name": "MIMIZAN - RUE DU JARDIN PUBLIC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.227322, + 44.202587 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406814", + "ref": "FR*SOD*S*MB40*68*1*_*_", + "name": "MIMIZAN - RUE DU JARDIN PUBLIC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.227322, + 44.202587 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406812", + "ref": "FR*SOD*S*MB40*68*1*_*_", + "name": "MIMIZAN - RUE DU JARDIN PUBLIC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.227322, + 44.202587 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406813", + "ref": "FR*SOD*S*MB40*68*1*_*_", + "name": "MIMIZAN - RUE DU JARDIN PUBLIC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.359458, + 43.849495 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406912", + "ref": "FR*SOD*S*MB40*69*1*_*_", + "name": "MOLIETS - PARKING DU TENNIS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.359458, + 43.849495 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406911", + "ref": "FR*SOD*S*MB40*69*1*_*_", + "name": "MOLIETS - PARKING DU TENNIS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.359458, + 43.849495 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406914", + "ref": "FR*SOD*S*MB40*69*1*_*_", + "name": "MOLIETS - PARKING DU TENNIS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.359458, + 43.849495 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406913", + "ref": "FR*SOD*S*MB40*69*1*_*_", + "name": "MOLIETS - PARKING DU TENNIS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.503016, + 43.884914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407012", + "ref": "FR*SOD*S*MB40*70*1*_*_", + "name": "MONT DE MARSAN - PARKING POLE DECHANGE MULTIMODAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.503016, + 43.884914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407014", + "ref": "FR*SOD*S*MB40*70*1*_*_", + "name": "MONT DE MARSAN - PARKING POLE DECHANGE MULTIMODAL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.922969, + 43.787643 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407414", + "ref": "FR*SOD*S*MB40*74*1*_*_", + "name": "PONTONX SUR ADOUR - RUE DE BALUHEC PARKING DES ARENES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.503016, + 43.884914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407011", + "ref": "FR*SOD*S*MB40*70*1*_*_", + "name": "MONT DE MARSAN - PARKING POLE DECHANGE MULTIMODAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.008743, + 43.69286 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407112", + "ref": "FR*SOD*S*MB40*71*1*_*_", + "name": "NARROSSE - MAIRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.008743, + 43.69286 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407114", + "ref": "FR*SOD*S*MB40*71*1*_*_", + "name": "NARROSSE - MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.008743, + 43.69286 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407113", + "ref": "FR*SOD*S*MB40*71*1*_*_", + "name": "NARROSSE - MAIRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.446481, + 43.562065 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407211", + "ref": "FR*SOD*S*MB40*72*1*_*_", + "name": "ONDRES - PLACE RICHARD FEUILLET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.446481, + 43.562065 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407214", + "ref": "FR*SOD*S*MB40*72*1*_*_", + "name": "ONDRES - PLACE RICHARD FEUILLET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.446481, + 43.562065 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407212", + "ref": "FR*SOD*S*MB40*72*1*_*_", + "name": "ONDRES - PLACE RICHARD FEUILLET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.446481, + 43.562065 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407213", + "ref": "FR*SOD*S*MB40*72*1*_*_", + "name": "ONDRES - PLACE RICHARD FEUILLET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.072901, + 44.353287 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407313", + "ref": "FR*SOD*S*MB40*73*1*_*_", + "name": "PARENTIS EN BORN - PARKING MAIRIE- AVENUE GERMINAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.072901, + 44.353287 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407311", + "ref": "FR*SOD*S*MB40*73*1*_*_", + "name": "PARENTIS EN BORN - PARKING MAIRIE- AVENUE GERMINAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.072901, + 44.353287 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407312", + "ref": "FR*SOD*S*MB40*73*1*_*_", + "name": "PARENTIS EN BORN - PARKING MAIRIE- AVENUE GERMINAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.072901, + 44.353287 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407314", + "ref": "FR*SOD*S*MB40*73*1*_*_", + "name": "PARENTIS EN BORN - PARKING MAIRIE- AVENUE GERMINAL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.922969, + 43.787643 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407413", + "ref": "FR*SOD*S*MB40*74*1*_*_", + "name": "PONTONX SUR ADOUR - RUE DE BALUHEC PARKING DES ARENES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.922969, + 43.787643 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407412", + "ref": "FR*SOD*S*MB40*74*1*_*_", + "name": "PONTONX SUR ADOUR - RUE DE BALUHEC PARKING DES ARENES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.985157, + 44.231018 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401312", + "ref": "FR*SOD*S*MB40*13*1*_*_", + "name": "LUE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.040466, + 43.707176 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40412", + "ref": "FR*SOD*S*MB40*4*1*_*_", + "name": "DAX - PLACE DE LA CHALOSSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.303443, + 43.876064 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406613", + "ref": "FR*SOD*S*MB40*66*1*_*_", + "name": "LEON - PLACE DE LABBE DULONG", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.591106, + 43.864971 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408314", + "ref": "FR*SOD*S*MB40*83*1*_*_", + "name": "SAINT PERDON - RUE DE LEGLISE-PARKING MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.390726, + 43.670666 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408712", + "ref": "FR*SOD*S*MB40*87*1*_*_", + "name": "SOORTS HOSSEGOR - AVENUE DES CHARPENTIERS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.237678, + 43.556313 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408611", + "ref": "FR*SOD*S*MB40*86*1*_*_", + "name": "SAINTE MARIE DE GOSSE - PLACE SALLE ISIDORE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.237678, + 43.556313 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408612", + "ref": "FR*SOD*S*MB40*86*1*_*_", + "name": "SAINTE MARIE DE GOSSE - PLACE SALLE ISIDORE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.237678, + 43.556313 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408614", + "ref": "FR*SOD*S*MB40*86*1*_*_", + "name": "SAINTE MARIE DE GOSSE - PLACE SALLE ISIDORE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.237678, + 43.556313 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408613", + "ref": "FR*SOD*S*MB40*86*1*_*_", + "name": "SAINTE MARIE DE GOSSE - PLACE SALLE ISIDORE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.314985, + 43.661247 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408514", + "ref": "FR*SOD*S*MB40*85*1*_*_", + "name": "SAINT VINCENT DE TYROSSE - AVENUE DE TOURREN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.314985, + 43.661247 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408512", + "ref": "FR*SOD*S*MB40*85*1*_*_", + "name": "SAINT VINCENT DE TYROSSE - AVENUE DE TOURREN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.314985, + 43.661247 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408513", + "ref": "FR*SOD*S*MB40*85*1*_*_", + "name": "SAINT VINCENT DE TYROSSE - AVENUE DE TOURREN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.314985, + 43.661247 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408511", + "ref": "FR*SOD*S*MB40*85*1*_*_", + "name": "SAINT VINCENT DE TYROSSE - AVENUE DE TOURREN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.572845, + 43.760368 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408413", + "ref": "FR*SOD*S*MB40*84*1*_*_", + "name": "SAINT SEVER - PLACE DU TRIBUNAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.572845, + 43.760368 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408412", + "ref": "FR*SOD*S*MB40*84*1*_*_", + "name": "SAINT SEVER - PLACE DU TRIBUNAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.572845, + 43.760368 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408414", + "ref": "FR*SOD*S*MB40*84*1*_*_", + "name": "SAINT SEVER - PLACE DU TRIBUNAL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.572845, + 43.760368 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408411", + "ref": "FR*SOD*S*MB40*84*1*_*_", + "name": "SAINT SEVER - PLACE DU TRIBUNAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.591106, + 43.864971 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408313", + "ref": "FR*SOD*S*MB40*83*1*_*_", + "name": "SAINT PERDON - RUE DE LEGLISE-PARKING MAIRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.187404, + 43.968964 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401011", + "ref": "FR*SOD*S*MB40*10*1*_*_", + "name": "LABASTIDE DARMAGNAC - PLACE DES MARTYRES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.390726, + 43.670666 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408711", + "ref": "FR*SOD*S*MB40*87*1*_*_", + "name": "SOORTS HOSSEGOR - AVENUE DES CHARPENTIERS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.187404, + 43.968964 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401012", + "ref": "FR*SOD*S*MB40*10*1*_*_", + "name": "LABASTIDE DARMAGNAC - PLACE DES MARTYRES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.920244, + 44.211601 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401112", + "ref": "FR*SOD*S*MB40*11*1*_*_", + "name": "LABOUHEYRE - PARKING DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.920244, + 44.211601 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401111", + "ref": "FR*SOD*S*MB40*11*1*_*_", + "name": "LABOUHEYRE - PARKING DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.591106, + 43.864971 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408312", + "ref": "FR*SOD*S*MB40*83*1*_*_", + "name": "SAINT PERDON - RUE DE LEGLISE-PARKING MAIRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.591106, + 43.864971 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408311", + "ref": "FR*SOD*S*MB40*83*1*_*_", + "name": "SAINT PERDON - RUE DE LEGLISE-PARKING MAIRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052096, + 43.723057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408211", + "ref": "FR*SOD*S*MB40*82*1*_*_", + "name": "SAINT PAUL LES DAX - RUE ANDRE FOURCADE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052096, + 43.723057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408213", + "ref": "FR*SOD*S*MB40*82*1*_*_", + "name": "SAINT PAUL LES DAX - RUE ANDRE FOURCADE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052096, + 43.723057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408212", + "ref": "FR*SOD*S*MB40*82*1*_*_", + "name": "SAINT PAUL LES DAX - RUE ANDRE FOURCADE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052096, + 43.723057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408214", + "ref": "FR*SOD*S*MB40*82*1*_*_", + "name": "SAINT PAUL LES DAX - RUE ANDRE FOURCADE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.064402, + 43.727768 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408114", + "ref": "FR*SOD*S*MB40*81*1*_*_", + "name": "SAINT PAUL LES DAX - PARKING LAC DE CHRISTUS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.064402, + 43.727768 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408112", + "ref": "FR*SOD*S*MB40*81*1*_*_", + "name": "SAINT PAUL LES DAX - PARKING LAC DE CHRISTUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.491801, + 43.896542 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401711", + "ref": "FR*SOD*S*MB40*17*1*_*_", + "name": "MONT DE MARSAN - MEDIATHEQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.258727, + 44.03413 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401211", + "ref": "FR*SOD*S*MB40*12*1*_*_", + "name": "LIT ET MIXE - PARKING ARRIERE MAIRIE RUE DES ARENES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.258727, + 44.03413 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401212", + "ref": "FR*SOD*S*MB40*12*1*_*_", + "name": "LIT ET MIXE - PARKING ARRIERE MAIRIE RUE DES ARENES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.390726, + 43.670666 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408714", + "ref": "FR*SOD*S*MB40*87*1*_*_", + "name": "SOORTS HOSSEGOR - AVENUE DES CHARPENTIERS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.390726, + 43.670666 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408713", + "ref": "FR*SOD*S*MB40*87*1*_*_", + "name": "SOORTS HOSSEGOR - AVENUE DES CHARPENTIERS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0557, + 43.713142 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40511", + "ref": "FR*SOD*S*MB40*5*1*_*_", + "name": "DAX - QUARTIER DU SABLAR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.962171, + 44.3279 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB409212", + "ref": "FR*SOD*S*MB40*92*1*_*_", + "name": "YCHOUX - PARKING DE LA MAIRIE AVENUE FELIX ARNAUDIN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0557, + 43.713142 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40512", + "ref": "FR*SOD*S*MB40*5*1*_*_", + "name": "DAX - QUARTIER DU SABLAR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.066157, + 43.698608 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40611", + "ref": "FR*SOD*S*MB40*6*1*_*_", + "name": "DAX - RUE DE TERCIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.066157, + 43.698608 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40612", + "ref": "FR*SOD*S*MB40*6*1*_*_", + "name": "DAX - RUE DE TERCIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.008552, + 43.98666 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40711", + "ref": "FR*SOD*S*MB40*7*1*_*_", + "name": "GABARRET - PARKING RUE ATTENSCHWILLER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.008552, + 43.98666 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40712", + "ref": "FR*SOD*S*MB40*7*1*_*_", + "name": "GABARRET - PARKING RUE ATTENSCHWILLER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380386, + 43.636551 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40811", + "ref": "FR*SOD*S*MB40*8*1*_*_", + "name": "GEAUNE - PARKING DE LA PISCINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380386, + 43.636551 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40812", + "ref": "FR*SOD*S*MB40*8*1*_*_", + "name": "GEAUNE - PARKING DE LA PISCINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59247, + 43.652554 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40911", + "ref": "FR*SOD*S*MB40*9*1*_*_", + "name": "HAGETMAU - PARKING DES ARENES- CHEMIN DE LOUSSETS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59247, + 43.652554 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40912", + "ref": "FR*SOD*S*MB40*9*1*_*_", + "name": "HAGETMAU - PARKING DES ARENES- CHEMIN DE LOUSSETS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.74467, + 43.591513 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB409312", + "ref": "FR*SOD*S*MB40*93*1*_*_", + "name": "AMOU - AVENUE DE LA DIGUE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.74467, + 43.591513 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB409311", + "ref": "FR*SOD*S*MB40*93*1*_*_", + "name": "AMOU - AVENUE DE LA DIGUE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.962171, + 44.3279 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB409211", + "ref": "FR*SOD*S*MB40*92*1*_*_", + "name": "YCHOUX - PARKING DE LA MAIRIE AVENUE FELIX ARNAUDIN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.962171, + 44.3279 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB409214", + "ref": "FR*SOD*S*MB40*92*1*_*_", + "name": "YCHOUX - PARKING DE LA MAIRIE AVENUE FELIX ARNAUDIN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.962171, + 44.3279 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB409213", + "ref": "FR*SOD*S*MB40*92*1*_*_", + "name": "YCHOUX - PARKING DE LA MAIRIE AVENUE FELIX ARNAUDIN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.946732, + 44.327576 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB409111", + "ref": "FR*SOD*S*MB40*91*1*_*_", + "name": "YCHOUX - YCHOUX- PARKING DE COVOITURAGE PLACE FRANCK LAHARY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.328835, + 43.75444 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408813", + "ref": "FR*SOD*S*MB40*88*1*_*_", + "name": "SOUSTONS - PARKING LABOUYRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.946732, + 44.327576 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB409113", + "ref": "FR*SOD*S*MB40*91*1*_*_", + "name": "YCHOUX - YCHOUX- PARKING DE COVOITURAGE PLACE FRANCK LAHARY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.946732, + 44.327576 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB409112", + "ref": "FR*SOD*S*MB40*91*1*_*_", + "name": "YCHOUX - YCHOUX- PARKING DE COVOITURAGE PLACE FRANCK LAHARY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.946732, + 44.327576 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB409114", + "ref": "FR*SOD*S*MB40*91*1*_*_", + "name": "YCHOUX - YCHOUX- PARKING DE COVOITURAGE PLACE FRANCK LAHARY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.330115, + 43.692356 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB409012", + "ref": "FR*SOD*S*MB40*90*1*_*_", + "name": "TOSSE - SALLE DES SPORTS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.330115, + 43.692356 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB409014", + "ref": "FR*SOD*S*MB40*90*1*_*_", + "name": "TOSSE - SALLE DES SPORTS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.330115, + 43.692356 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB409013", + "ref": "FR*SOD*S*MB40*90*1*_*_", + "name": "TOSSE - SALLE DES SPORTS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.330115, + 43.692356 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB409011", + "ref": "FR*SOD*S*MB40*90*1*_*_", + "name": "TOSSE - SALLE DES SPORTS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.814181, + 43.835133 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408911", + "ref": "FR*SOD*S*MB40*89*1*_*_", + "name": "TARTAS - RUE LEON BLUM", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.814181, + 43.835133 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408912", + "ref": "FR*SOD*S*MB40*89*1*_*_", + "name": "TARTAS - RUE LEON BLUM", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.814181, + 43.835133 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408913", + "ref": "FR*SOD*S*MB40*89*1*_*_", + "name": "TARTAS - RUE LEON BLUM", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.814181, + 43.835133 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408914", + "ref": "FR*SOD*S*MB40*89*1*_*_", + "name": "TARTAS - RUE LEON BLUM", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.328835, + 43.75444 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408812", + "ref": "FR*SOD*S*MB40*88*1*_*_", + "name": "SOUSTONS - PARKING LABOUYRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.328835, + 43.75444 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408811", + "ref": "FR*SOD*S*MB40*88*1*_*_", + "name": "SOUSTONS - PARKING LABOUYRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.328835, + 43.75444 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB408814", + "ref": "FR*SOD*S*MB40*88*1*_*_", + "name": "SOUSTONS - PARKING LABOUYRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.303443, + 43.876064 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406614", + "ref": "FR*SOD*S*MB40*66*1*_*_", + "name": "LEON - PLACE DE LABBE DULONG", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.008743, + 43.69286 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB407111", + "ref": "FR*SOD*S*MB40*71*1*_*_", + "name": "NARROSSE - MAIRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.303443, + 43.876064 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406611", + "ref": "FR*SOD*S*MB40*66*1*_*_", + "name": "LEON - PLACE DE LABBE DULONG", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.077171, + 44.480804 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403812", + "ref": "FR*SOD*S*MB40*38*1*_*_", + "name": "SANGUINET - RUE DU MARECHAL FERRANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.442726, + 43.661537 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404112", + "ref": "FR*SOD*S*MB40*41*1*_*_", + "name": "SOORTS HOSSEGOR - BOULEVARD DE LA DUNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.442726, + 43.661537 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404111", + "ref": "FR*SOD*S*MB40*41*1*_*_", + "name": "SOORTS HOSSEGOR - BOULEVARD DE LA DUNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.430495, + 43.708202 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404011", + "ref": "FR*SOD*S*MB40*40*1*_*_", + "name": "SEIGNOSSE - PLACE VICTOR GENTILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.425559, + 43.595455 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406514", + "ref": "FR*SOD*S*MB40*65*1*_*_", + "name": "LABENNE - PARKING COTE PRESBYTERE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.312809, + 43.610508 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403912", + "ref": "FR*SOD*S*MB40*39*1*_*_", + "name": "SAUBRIGUES - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.312809, + 43.610508 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403911", + "ref": "FR*SOD*S*MB40*39*1*_*_", + "name": "SAUBRIGUES - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.077171, + 44.480804 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403811", + "ref": "FR*SOD*S*MB40*38*1*_*_", + "name": "SANGUINET - RUE DU MARECHAL FERRANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052639, + 43.725822 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403411", + "ref": "FR*SOD*S*MB40*34*1*_*_", + "name": "SAINT PAUL LES DAX - PARKING JEAN ODDOS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.487642, + 43.634613 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403711", + "ref": "FR*SOD*S*MB40*37*1*_*_", + "name": "SAMADET - PARKING ZONE COMMERCIALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.487642, + 43.634613 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403712", + "ref": "FR*SOD*S*MB40*37*1*_*_", + "name": "SAMADET - PARKING ZONE COMMERCIALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.306919, + 43.662987 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403611", + "ref": "FR*SOD*S*MB40*36*1*_*_", + "name": "SAINT VINCENT DE TYROSSE - RUE CLAIRACQ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.306919, + 43.662987 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403612", + "ref": "FR*SOD*S*MB40*36*1*_*_", + "name": "SAINT VINCENT DE TYROSSE - RUE CLAIRACQ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.519344, + 43.881813 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403512", + "ref": "FR*SOD*S*MB40*35*1*_*_", + "name": "SAINT PIERRE DU MONT - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.519344, + 43.881813 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403511", + "ref": "FR*SOD*S*MB40*35*1*_*_", + "name": "SAINT PIERRE DU MONT - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.581232, + 44.322952 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404212", + "ref": "FR*SOD*S*MB40*42*1*_*_", + "name": "SORE - PARKING PLACE DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.581232, + 44.322952 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404211", + "ref": "FR*SOD*S*MB40*42*1*_*_", + "name": "SORE - PARKING PLACE DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32592, + 43.751686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404311", + "ref": "FR*SOD*S*MB40*43*1*_*_", + "name": "SOUSTONS - PARKING SALLE ROGER HANIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32592, + 43.751686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404312", + "ref": "FR*SOD*S*MB40*43*1*_*_", + "name": "SOUSTONS - PARKING SALLE ROGER HANIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.491811, + 43.545513 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404411", + "ref": "FR*SOD*S*MB40*44*1*_*_", + "name": "TARNOS - PARKING ESPACE BERTIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.491811, + 43.545513 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404412", + "ref": "FR*SOD*S*MB40*44*1*_*_", + "name": "TARNOS - PARKING ESPACE BERTIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.402247, + 43.786724 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404511", + "ref": "FR*SOD*S*MB40*45*1*_*_", + "name": "VIEUX BOUCAU - AVENUE DE LA LIBERTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.402247, + 43.786724 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404512", + "ref": "FR*SOD*S*MB40*45*1*_*_", + "name": "VIEUX BOUCAU - AVENUE DE LA LIBERTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.410125, + 43.788254 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404612", + "ref": "FR*SOD*S*MB40*46*1*_*_", + "name": "VIEUX BOUCAU - PARKING PLAGE - AVENUE BREMONTIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.410125, + 43.788254 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404611", + "ref": "FR*SOD*S*MB40*46*1*_*_", + "name": "VIEUX BOUCAU - PARKING PLAGE - AVENUE BREMONTIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.302908, + 43.891857 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404712", + "ref": "FR*SOD*S*MB40*47*1*_*_", + "name": "VILLENEUVE DE MARSAN - PLACE DE LA BOITERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.302908, + 43.891857 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404711", + "ref": "FR*SOD*S*MB40*47*1*_*_", + "name": "VILLENEUVE DE MARSAN - PLACE DE LA BOITERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.396896, + 43.631031 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404911", + "ref": "FR*SOD*S*MB40*49*1*_*_", + "name": "BENESSE MARENNE - D28 AIRE DE COVOITURAGE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.396896, + 43.631031 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404912", + "ref": "FR*SOD*S*MB40*49*1*_*_", + "name": "BENESSE MARENNE - D28 AIRE DE COVOITURAGE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.396896, + 43.631031 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404913", + "ref": "FR*SOD*S*MB40*49*1*_*_", + "name": "BENESSE MARENNE - D28 AIRE DE COVOITURAGE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.396896, + 43.631031 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404914", + "ref": "FR*SOD*S*MB40*49*1*_*_", + "name": "BENESSE MARENNE - D28 AIRE DE COVOITURAGE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.501203, + 43.828957 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405013", + "ref": "FR*SOD*S*MB40*50*1*_*_", + "name": "BENQUET - PARKING ECOLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052639, + 43.725822 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403412", + "ref": "FR*SOD*S*MB40*34*1*_*_", + "name": "SAINT PAUL LES DAX - PARKING JEAN ODDOS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.044376, + 43.726215 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403312", + "ref": "FR*SOD*S*MB40*33*1*_*_", + "name": "SAINT PAUL LES DAX - GYMNASE DE LINGRES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.501203, + 43.828957 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405014", + "ref": "FR*SOD*S*MB40*50*1*_*_", + "name": "BENQUET - PARKING ECOLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.833645, + 43.710106 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402111", + "ref": "FR*SOD*S*MB40*21*1*_*_", + "name": "MONTFORT EN CHALOSSE - PARKING COOPERATIVE - FACE GENDARMERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.071594, + 44.34993 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402411", + "ref": "FR*SOD*S*MB40*24*1*_*_", + "name": "PARENTIS EN BORN - ALLEES MALICHECQ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.749156, + 43.750278 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402311", + "ref": "FR*SOD*S*MB40*23*1*_*_", + "name": "MUGRON - PARKING PLACE RUE DUCASSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.749156, + 43.750278 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402312", + "ref": "FR*SOD*S*MB40*23*1*_*_", + "name": "MUGRON - PARKING PLACE RUE DUCASSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.761524, + 44.358582 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402212", + "ref": "FR*SOD*S*MB40*22*1*_*_", + "name": "MOUSTEY - PARKING DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.761524, + 44.358582 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402211", + "ref": "FR*SOD*S*MB40*22*1*_*_", + "name": "MOUSTEY - PARKING DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.833645, + 43.710106 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402112", + "ref": "FR*SOD*S*MB40*21*1*_*_", + "name": "MONTFORT EN CHALOSSE - PARKING COOPERATIVE - FACE GENDARMERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497182, + 43.89362 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402011", + "ref": "FR*SOD*S*MB40*20*1*_*_", + "name": "MONT DE MARSAN - PLACE DE LA DOUZE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.044376, + 43.726215 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403311", + "ref": "FR*SOD*S*MB40*33*1*_*_", + "name": "SAINT PAUL LES DAX - GYMNASE DE LINGRES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497182, + 43.89362 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402012", + "ref": "FR*SOD*S*MB40*20*1*_*_", + "name": "MONT DE MARSAN - PLACE DE LA DOUZE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502202, + 43.886929 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401911", + "ref": "FR*SOD*S*MB40*19*1*_*_", + "name": "MONT DE MARSAN - PARKING LYCEE JEAN ROSTAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502202, + 43.886929 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401912", + "ref": "FR*SOD*S*MB40*19*1*_*_", + "name": "MONT DE MARSAN - PARKING LYCEE JEAN ROSTAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.482222, + 43.89635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401811", + "ref": "FR*SOD*S*MB40*18*1*_*_", + "name": "MONT DE MARSAN - PARKING CFA MONT DE MARSAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.482222, + 43.89635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401812", + "ref": "FR*SOD*S*MB40*18*1*_*_", + "name": "MONT DE MARSAN - PARKING CFA MONT DE MARSAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.491801, + 43.896542 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB401712", + "ref": "FR*SOD*S*MB40*17*1*_*_", + "name": "MONT DE MARSAN - MEDIATHEQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.071594, + 44.34993 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402412", + "ref": "FR*SOD*S*MB40*24*1*_*_", + "name": "PARENTIS EN BORN - ALLEES MALICHECQ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.101548, + 43.543797 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402511", + "ref": "FR*SOD*S*MB40*25*1*_*_", + "name": "PEYREHORADE - PARKING ARRIERE PISCINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.101548, + 43.543797 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402512", + "ref": "FR*SOD*S*MB40*25*1*_*_", + "name": "PEYREHORADE - PARKING ARRIERE PISCINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82855, + 43.628651 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402611", + "ref": "FR*SOD*S*MB40*26*1*_*_", + "name": "POMAREZ - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82855, + 43.628651 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402612", + "ref": "FR*SOD*S*MB40*26*1*_*_", + "name": "POMAREZ - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.121237, + 44.241581 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402712", + "ref": "FR*SOD*S*MB40*27*1*_*_", + "name": "PONTENX - PARKING EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.121237, + 44.241581 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402711", + "ref": "FR*SOD*S*MB40*27*1*_*_", + "name": "PONTENX - PARKING EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99688, + 43.606438 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402811", + "ref": "FR*SOD*S*MB40*28*1*_*_", + "name": "POUILLON - PARKING DU COLLEGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99688, + 43.606438 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402812", + "ref": "FR*SOD*S*MB40*28*1*_*_", + "name": "POUILLON - PARKING DU COLLEGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.918238, + 43.919731 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402911", + "ref": "FR*SOD*S*MB40*29*1*_*_", + "name": "RION DES LANDES - PLACE GUILLAUME FRONTON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.918238, + 43.919731 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB402912", + "ref": "FR*SOD*S*MB40*29*1*_*_", + "name": "RION DES LANDES - PLACE GUILLAUME FRONTON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.320547, + 44.034054 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403011", + "ref": "FR*SOD*S*MB40*30*1*_*_", + "name": "ROQUEFORT - PARKING SQUARE JEAN CAILLUYE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.320547, + 44.034054 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403012", + "ref": "FR*SOD*S*MB40*30*1*_*_", + "name": "ROQUEFORT - PARKING SQUARE JEAN CAILLUYE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.233307, + 43.708225 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403111", + "ref": "FR*SOD*S*MB40*31*1*_*_", + "name": "SAINT GEOURS DE MARENNE - RUE DU GAVE AYGUE BLUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.233307, + 43.708225 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403112", + "ref": "FR*SOD*S*MB40*31*1*_*_", + "name": "SAINT GEOURS DE MARENNE - RUE DU GAVE AYGUE BLUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.227091, + 44.063213 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403211", + "ref": "FR*SOD*S*MB40*32*1*_*_", + "name": "SAINT JULIEN EN BORN - PARKING RUE DES ECOLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.227091, + 44.063213 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB403212", + "ref": "FR*SOD*S*MB40*32*1*_*_", + "name": "SAINT JULIEN EN BORN - PARKING RUE DES ECOLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.501203, + 43.828957 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405012", + "ref": "FR*SOD*S*MB40*50*1*_*_", + "name": "BENQUET - PARKING ECOLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.430495, + 43.708202 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB404012", + "ref": "FR*SOD*S*MB40*40*1*_*_", + "name": "SEIGNOSSE - PLACE VICTOR GENTILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.501203, + 43.828957 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405011", + "ref": "FR*SOD*S*MB40*50*1*_*_", + "name": "BENQUET - PARKING ECOLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.928073, + 43.571198 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406112", + "ref": "FR*SOD*S*MB40*61*1*_*_", + "name": "HABAS - LOTISSEMENT LA BARRAQUE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.924396, + 44.03067 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405914", + "ref": "FR*SOD*S*MB40*59*1*_*_", + "name": "GARROSSE - AVENUE DE L OCEAN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.924396, + 44.03067 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405912", + "ref": "FR*SOD*S*MB40*59*1*_*_", + "name": "GARROSSE - AVENUE DE L OCEAN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.167335, + 44.395638 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40112", + "ref": "FR*SOD*S*MB40*1*1*_*_", + "name": "BISCARROSSE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.167335, + 44.395638 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40111", + "ref": "FR*SOD*S*MB40*1*1*_*_", + "name": "BISCARROSSE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.439685, + 43.653248 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40211", + "ref": "FR*SOD*S*MB40*2*1*_*_", + "name": "CAPBRETON - PARKING DU LAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.439685, + 43.653248 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40212", + "ref": "FR*SOD*S*MB40*2*1*_*_", + "name": "CAPBRETON - PARKING DU LAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.055476, + 43.708969 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB40311", + "ref": "FR*SOD*S*MB40*3*1*_*_", + "name": "DAX - PLACE CAMILLE BOUVET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42846, + 43.773663 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406014", + "ref": "FR*SOD*S*MB40*60*1*_*_", + "name": "GRENADE SUR ADOUR - AVENUE DE HESINGUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42846, + 43.773663 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406013", + "ref": "FR*SOD*S*MB40*60*1*_*_", + "name": "GRENADE SUR ADOUR - AVENUE DE HESINGUE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42846, + 43.773663 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406011", + "ref": "FR*SOD*S*MB40*60*1*_*_", + "name": "GRENADE SUR ADOUR - AVENUE DE HESINGUE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42846, + 43.773663 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406012", + "ref": "FR*SOD*S*MB40*60*1*_*_", + "name": "GRENADE SUR ADOUR - AVENUE DE HESINGUE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.928073, + 43.571198 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406113", + "ref": "FR*SOD*S*MB40*61*1*_*_", + "name": "HABAS - LOTISSEMENT LA BARRAQUE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.928073, + 43.571198 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406111", + "ref": "FR*SOD*S*MB40*61*1*_*_", + "name": "HABAS - LOTISSEMENT LA BARRAQUE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.928073, + 43.571198 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406114", + "ref": "FR*SOD*S*MB40*61*1*_*_", + "name": "HABAS - LOTISSEMENT LA BARRAQUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.592122, + 43.657413 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406211", + "ref": "FR*SOD*S*MB40*62*1*_*_", + "name": "HAGETMAU - PLACE GRAMONT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.924396, + 44.03067 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405913", + "ref": "FR*SOD*S*MB40*59*1*_*_", + "name": "GARROSSE - AVENUE DE L OCEAN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.592122, + 43.657413 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406212", + "ref": "FR*SOD*S*MB40*62*1*_*_", + "name": "HAGETMAU - PLACE GRAMONT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.592122, + 43.657413 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406214", + "ref": "FR*SOD*S*MB40*62*1*_*_", + "name": "HAGETMAU - PLACE GRAMONT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.592122, + 43.657413 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406213", + "ref": "FR*SOD*S*MB40*62*1*_*_", + "name": "HAGETMAU - PLACE GRAMONT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.250123, + 44.445004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405111", + "ref": "FR*SOD*S*MB40*51*1*_*_", + "name": "BISCARROSSE - PARKING DUFAU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.927685, + 43.702885 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406311", + "ref": "FR*SOD*S*MB40*63*1*_*_", + "name": "HINX - PLACE DE LA MAIRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.927685, + 43.702885 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406313", + "ref": "FR*SOD*S*MB40*63*1*_*_", + "name": "HINX - PLACE DE LA MAIRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.927685, + 43.702885 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406314", + "ref": "FR*SOD*S*MB40*63*1*_*_", + "name": "HINX - PLACE DE LA MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.224409, + 43.640213 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406411", + "ref": "FR*SOD*S*MB40*64*1*_*_", + "name": "JOSSE - ENTREE PARKING COVOITURAGE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.224409, + 43.640213 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406414", + "ref": "FR*SOD*S*MB40*64*1*_*_", + "name": "JOSSE - ENTREE PARKING COVOITURAGE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.224409, + 43.640213 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406413", + "ref": "FR*SOD*S*MB40*64*1*_*_", + "name": "JOSSE - ENTREE PARKING COVOITURAGE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.224409, + 43.640213 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406412", + "ref": "FR*SOD*S*MB40*64*1*_*_", + "name": "JOSSE - ENTREE PARKING COVOITURAGE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.425559, + 43.595455 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406512", + "ref": "FR*SOD*S*MB40*65*1*_*_", + "name": "LABENNE - PARKING COTE PRESBYTERE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.425559, + 43.595455 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406511", + "ref": "FR*SOD*S*MB40*65*1*_*_", + "name": "LABENNE - PARKING COTE PRESBYTERE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.425559, + 43.595455 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406513", + "ref": "FR*SOD*S*MB40*65*1*_*_", + "name": "LABENNE - PARKING COTE PRESBYTERE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.924396, + 44.03067 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405911", + "ref": "FR*SOD*S*MB40*59*1*_*_", + "name": "GARROSSE - AVENUE DE L OCEAN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.927685, + 43.702885 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB406312", + "ref": "FR*SOD*S*MB40*63*1*_*_", + "name": "HINX - PLACE DE LA MAIRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.972001, + 44.145809 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405811", + "ref": "FR*SOD*S*MB40*58*1*_*_", + "name": "ESCOURCE - ZONE DACTIVITES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.053255, + 43.714935 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405514", + "ref": "FR*SOD*S*MB40*55*1*_*_", + "name": "DAX - PARKING DE LA TANNERIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.972001, + 44.145809 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405813", + "ref": "FR*SOD*S*MB40*58*1*_*_", + "name": "ESCOURCE - ZONE DACTIVITES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.250123, + 44.445004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405114", + "ref": "FR*SOD*S*MB40*51*1*_*_", + "name": "BISCARROSSE - PARKING DUFAU", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432253, + 43.645058 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405211", + "ref": "FR*SOD*S*MB40*52*1*_*_", + "name": "CAPBRETON - AVENUE DU MARECHAL LECLERC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432253, + 43.645058 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405212", + "ref": "FR*SOD*S*MB40*52*1*_*_", + "name": "CAPBRETON - AVENUE DU MARECHAL LECLERC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432253, + 43.645058 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405213", + "ref": "FR*SOD*S*MB40*52*1*_*_", + "name": "CAPBRETON - AVENUE DU MARECHAL LECLERC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432253, + 43.645058 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405214", + "ref": "FR*SOD*S*MB40*52*1*_*_", + "name": "CAPBRETON - AVENUE DU MARECHAL LECLERC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.144952, + 43.882175 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405313", + "ref": "FR*SOD*S*MB40*53*1*_*_", + "name": "CASTETS - PARKING MAIRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.144952, + 43.882175 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405314", + "ref": "FR*SOD*S*MB40*53*1*_*_", + "name": "CASTETS - PARKING MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.144952, + 43.882175 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405311", + "ref": "FR*SOD*S*MB40*53*1*_*_", + "name": "CASTETS - PARKING MAIRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.144952, + 43.882175 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405312", + "ref": "FR*SOD*S*MB40*53*1*_*_", + "name": "CASTETS - PARKING MAIRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.041901, + 43.711033 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405412", + "ref": "FR*SOD*S*MB40*54*1*_*_", + "name": "DAX - HOPITAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.041901, + 43.711033 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405414", + "ref": "FR*SOD*S*MB40*54*1*_*_", + "name": "DAX - HOPITAL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.041901, + 43.711033 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405413", + "ref": "FR*SOD*S*MB40*54*1*_*_", + "name": "DAX - HOPITAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.053255, + 43.714935 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405512", + "ref": "FR*SOD*S*MB40*55*1*_*_", + "name": "DAX - PARKING DE LA TANNERIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.041901, + 43.711033 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405411", + "ref": "FR*SOD*S*MB40*54*1*_*_", + "name": "DAX - HOPITAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.053255, + 43.714935 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405513", + "ref": "FR*SOD*S*MB40*55*1*_*_", + "name": "DAX - PARKING DE LA TANNERIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.049525, + 43.709187 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405711", + "ref": "FR*SOD*S*MB40*57*1*_*_", + "name": "DAX - PLACE ST PIERRE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.972001, + 44.145809 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405812", + "ref": "FR*SOD*S*MB40*58*1*_*_", + "name": "ESCOURCE - ZONE DACTIVITES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.250123, + 44.445004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405112", + "ref": "FR*SOD*S*MB40*51*1*_*_", + "name": "BISCARROSSE - PARKING DUFAU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.053255, + 43.714935 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405511", + "ref": "FR*SOD*S*MB40*55*1*_*_", + "name": "DAX - PARKING DE LA TANNERIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.049525, + 43.709187 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405714", + "ref": "FR*SOD*S*MB40*57*1*_*_", + "name": "DAX - PLACE ST PIERRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.049525, + 43.709187 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405712", + "ref": "FR*SOD*S*MB40*57*1*_*_", + "name": "DAX - PLACE ST PIERRE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.049525, + 43.709187 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405713", + "ref": "FR*SOD*S*MB40*57*1*_*_", + "name": "DAX - PLACE ST PIERRE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.972001, + 44.145809 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405814", + "ref": "FR*SOD*S*MB40*58*1*_*_", + "name": "ESCOURCE - ZONE DACTIVITES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052169, + 43.695694 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405614", + "ref": "FR*SOD*S*MB40*56*1*_*_", + "name": "DAX - PLACE DE LA TORTE- RUE JOSEPH DE LAURENS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052169, + 43.695694 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405613", + "ref": "FR*SOD*S*MB40*56*1*_*_", + "name": "DAX - PLACE DE LA TORTE- RUE JOSEPH DE LAURENS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052169, + 43.695694 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405611", + "ref": "FR*SOD*S*MB40*56*1*_*_", + "name": "DAX - PLACE DE LA TORTE- RUE JOSEPH DE LAURENS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.250123, + 44.445004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405113", + "ref": "FR*SOD*S*MB40*51*1*_*_", + "name": "BISCARROSSE - PARKING DUFAU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052169, + 43.695694 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref:EU:EVSE": "FRS40PMB405612", + "ref": "FR*SOD*S*MB40*56*1*_*_", + "name": "DAX - PLACE DE LA TORTE- RUE JOSEPH DE LAURENS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800955, + 46.355543 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD811", + "ref": "FR*SOD*S*AVTD*8*1*_*_", + "name": "AIRE DE LALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.889898, + 44.023808 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD191", + "ref": "FR*SOD*S*AVTD*1*9*_*_", + "name": "AIRE DE SORGUES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.438933, + 43.868104 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD221", + "ref": "FR*SOD*S*AVTD*2*2*_*_", + "name": "AIRE DE MARGUERITTES SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865158, + 44.865884 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD321", + "ref": "FR*SOD*S*AVTD*3*2*_*_", + "name": "AIRE DE PORTES LES VALENCE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876818, + 45.019791 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD411", + "ref": "FR*SOD*S*AVTD*4*1*_*_", + "name": "AIRE DE LATITUDE 45", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876818, + 45.019791 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD412", + "ref": "FR*SOD*S*AVTD*4*1*_*_", + "name": "AIRE DE LATITUDE 45", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.346847, + 48.035643 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD522", + "ref": "FR*SOD*S*AVTD*5*2*_*_", + "name": "STATION AVIA - NOGENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.346847, + 48.035643 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD521", + "ref": "FR*SOD*S*AVTD*5*2*_*_", + "name": "STATION AVIA - NOGENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.819599, + 45.631355 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD621", + "ref": "FR*SOD*S*AVTD*6*2*_*_", + "name": "AIRE DE SEREZIN DU RHONE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.03745, + 47.504832 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD721", + "ref": "FR*SOD*S*AVTD*7*2*_*_", + "name": "AIRE DE MAISON DIEU", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.498871, + 47.975185 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD1311", + "ref": "FR*SOD*S*AVTD*13*1*_*_", + "name": "AIRE DE VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.089774, + 50.122249 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD1011", + "ref": "FR*SOD*S*AVTD*10*1*_*_", + "name": "AIRE DE HAVRINCOURT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.159788, + 46.872673 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD1411", + "ref": "FR*SOD*S*AVTD*14*1*_*_", + "name": "AIRE DE MAGNY COURS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145897, + 47.295589 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD1541", + "ref": "FR*SOD*S*AVTD*15*4*_*_", + "name": "STATION AVIA - CHEVIGNY ST SAUVEUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145897, + 47.295589 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD1542", + "ref": "FR*SOD*S*AVTD*15*4*_*_", + "name": "STATION AVIA - CHEVIGNY ST SAUVEUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.052789, + 47.322222 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD1662", + "ref": "FR*SOD*S*AVTD*16*6*_*_", + "name": "STATION AVIA - PLACE DU 30 OCTOBRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.052789, + 47.322222 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD1661", + "ref": "FR*SOD*S*AVTD*16*6*_*_", + "name": "STATION AVIA - PLACE DU 30 OCTOBRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.718141, + 45.914132 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD1811", + "ref": "FR*SOD*S*AVTD*18*1*_*_", + "name": "AIRE DE PASSY LE FAYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630486, + 45.577675 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD2011", + "ref": "FR*SOD*S*AVTD*20*1*_*_", + "name": "AIRE DE ROMAGNIEU", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.567375, + 47.244513 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD2412", + "ref": "FR*SOD*S*AVTD*24*1*_*_", + "name": "STATION AVIA - GARAGE PAJOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.567375, + 47.244513 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD2411", + "ref": "FR*SOD*S*AVTD*24*1*_*_", + "name": "STATION AVIA - GARAGE PAJOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497206, + 47.977395 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref:EU:EVSE": "FRTDAPAVTD1211", + "ref": "FR*SOD*S*AVTD*12*1*_*_", + "name": "AIRE DE MONTIGNY LE ROI", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.165527, + 46.639141 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1081", + "ref": "FR*SOD*S*SORE*14*1*_*_", + "name": "VOUILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.272319, + 46.57058 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1101", + "ref": "FR*SOD*S*SORE*12*1*_*_", + "name": "VOUNEUIL SOUS BIARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.262716, + 46.425949 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1071", + "ref": "FR*SOD*S*SORE*13*1*_*_", + "name": "VIVONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.262716, + 46.425949 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1072", + "ref": "FR*SOD*S*SORE*13*1*_*_", + "name": "VIVONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.165527, + 46.639141 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1082", + "ref": "FR*SOD*S*SORE*14*1*_*_", + "name": "VOUILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53584, + 46.77338 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0141", + "ref": "FR*SOD*S*SORE*17*1*_*_", + "name": "CENON SUR VIENNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.766259, + 46.738468 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0791", + "ref": "FR*SOD*S*SORE*15*1*_*_", + "name": "PLEUMARTIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.766259, + 46.738468 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0792", + "ref": "FR*SOD*S*SORE*15*1*_*_", + "name": "PLEUMARTIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.569575, + 46.681641 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0102", + "ref": "FR*SOD*S*SORE*16*1*_*_", + "name": "BONNEUIL-MATOURS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.569575, + 46.681641 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0101", + "ref": "FR*SOD*S*SORE*16*1*_*_", + "name": "BONNEUIL-MATOURS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.880162, + 46.431427 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0712", + "ref": "FR*SOD*S*SORE*11*1*_*_", + "name": "MONTMORILLON STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.272319, + 46.57058 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1102", + "ref": "FR*SOD*S*SORE*12*1*_*_", + "name": "VOUNEUIL SOUS BIARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26676, + 46.534034 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0402", + "ref": "FR*SOD*S*SORE*9*1*_*_", + "name": "FONTAINE-LE-COMTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.880162, + 46.431427 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0711", + "ref": "FR*SOD*S*SORE*11*1*_*_", + "name": "MONTMORILLON STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.114799, + 46.428599 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0592", + "ref": "FR*SOD*S*SORE*10*1*_*_", + "name": "LUSIGNAN INTERMARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.114799, + 46.428599 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0591", + "ref": "FR*SOD*S*SORE*10*1*_*_", + "name": "LUSIGNAN INTERMARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26676, + 46.534034 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0401", + "ref": "FR*SOD*S*SORE*9*1*_*_", + "name": "FONTAINE-LE-COMTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.369494, + 46.479771 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0512", + "ref": "FR*SOD*S*SORE*8*1*_*_", + "name": "ROCHES PREMARIE ANDILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.369494, + 46.479771 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0511", + "ref": "FR*SOD*S*SORE*8*1*_*_", + "name": "ROCHES PREMARIE ANDILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.877009, + 46.43351 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0701", + "ref": "FR*SOD*S*SORE*7*1*_*_", + "name": "MONTMORILLON POLE EMPLOI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-11-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.877009, + 46.43351 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0702", + "ref": "FR*SOD*S*SORE*7*1*_*_", + "name": "MONTMORILLON POLE EMPLOI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-11-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.523241, + 46.478479 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0392", + "ref": "FR*SOD*S*SORE*6*1*_*_", + "name": "FLEURE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.523241, + 46.478479 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0391", + "ref": "FR*SOD*S*SORE*6*1*_*_", + "name": "FLEURE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-10-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48267, + 46.76305 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0752", + "ref": "FR*SOD*S*SORE*18*1*_*_", + "name": "NAINTRE BIBLIOTHEQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53584, + 46.77338 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0142", + "ref": "FR*SOD*S*SORE*17*1*_*_", + "name": "CENON SUR VIENNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5452, + 46.818611 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0202", + "ref": "FR*SOD*S*SORE*60*1*_*_", + "name": "CHATELLERAULT BLOSSAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48267, + 46.76305 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0751", + "ref": "FR*SOD*S*SORE*18*1*_*_", + "name": "NAINTRE BIBLIOTHEQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.63465, + 46.508862 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1022", + "ref": "FR*SOD*S*SORE*19*1*_*_", + "name": "VALDIVIENNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.84278, + 46.67931 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0911", + "ref": "FR*SOD*S*SORE*65*1*_*_", + "name": "SAINT-PIERRE DE MAILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.46523, + 46.570751 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0981", + "ref": "FR*SOD*S*SORE*66*1*_*_", + "name": "SEVRES-ANXAUMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.46523, + 46.570751 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0982", + "ref": "FR*SOD*S*SORE*66*1*_*_", + "name": "SEVRES-ANXAUMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61404, + 46.77956 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0971", + "ref": "FR*SOD*S*SORE*67*1*_*_", + "name": "SENILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61404, + 46.77956 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0972", + "ref": "FR*SOD*S*SORE*67*1*_*_", + "name": "SENILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.21484, + 46.424809 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0622", + "ref": "FR*SOD*S*SORE*68*1*_*_", + "name": "MARIGNY-CHEMEREAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.21484, + 46.424809 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0621", + "ref": "FR*SOD*S*SORE*68*1*_*_", + "name": "MARIGNY-CHEMEREAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16584, + 46.444359 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0352", + "ref": "FR*SOD*S*SORE*69*1*_*_", + "name": "CLOUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16584, + 46.444359 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0351", + "ref": "FR*SOD*S*SORE*69*1*_*_", + "name": "CLOUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18271, + 46.307259 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0361", + "ref": "FR*SOD*S*SORE*70*1*_*_", + "name": "COUHE-VERAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18271, + 46.307259 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0362", + "ref": "FR*SOD*S*SORE*70*1*_*_", + "name": "COUHE-VERAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09176, + 46.840988 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0841", + "ref": "FR*SOD*S*SORE*71*1*_*_", + "name": "SAINT-JEAN DE SAUVES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09176, + 46.840988 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0842", + "ref": "FR*SOD*S*SORE*71*1*_*_", + "name": "SAINT-JEAN DE SAUVES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64467, + 46.56812 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0281", + "ref": "FR*SOD*S*SORE*72*1*_*_", + "name": "CHAUVIGNY BANFORA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64467, + 46.56812 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0282", + "ref": "FR*SOD*S*SORE*72*1*_*_", + "name": "CHAUVIGNY BANFORA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5978, + 46.435719 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0532", + "ref": "FR*SOD*S*SORE*73*1*_*_", + "name": "LHOMMAIZE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5978, + 46.435719 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0531", + "ref": "FR*SOD*S*SORE*73*1*_*_", + "name": "LHOMMAIZE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40692, + 46.142899 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0172", + "ref": "FR*SOD*S*SORE*74*1*_*_", + "name": "CHARROUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40692, + 46.142899 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0171", + "ref": "FR*SOD*S*SORE*74*1*_*_", + "name": "CHARROUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.306536, + 46.730267 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1031", + "ref": "FR*SOD*S*SORE*75*1*_*_", + "name": "VENDEUVRE DU POITOU ZA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.306536, + 46.730267 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1032", + "ref": "FR*SOD*S*SORE*75*1*_*_", + "name": "VENDEUVRE DU POITOU ZA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29635, + 46.14706 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0341", + "ref": "FR*SOD*S*SORE*76*1*_*_", + "name": "CIVRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29635, + 46.14706 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0342", + "ref": "FR*SOD*S*SORE*76*1*_*_", + "name": "CIVRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.33276, + 46.519119 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0552", + "ref": "FR*SOD*S*SORE*77*1*_*_", + "name": "LIGUGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.33276, + 46.519119 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0551", + "ref": "FR*SOD*S*SORE*77*1*_*_", + "name": "LIGUGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18378, + 46.790241 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1142", + "ref": "FR*SOD*S*SORE*78*1*_*_", + "name": "MIREBEAU MAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18378, + 46.790241 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1141", + "ref": "FR*SOD*S*SORE*78*1*_*_", + "name": "MIREBEAU MAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.84278, + 46.67931 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0912", + "ref": "FR*SOD*S*SORE*65*1*_*_", + "name": "SAINT-PIERRE DE MAILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49724, + 46.5597 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0852", + "ref": "FR*SOD*S*SORE*64*1*_*_", + "name": "SAINT-JULIEN LARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49724, + 46.5597 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0851", + "ref": "FR*SOD*S*SORE*64*1*_*_", + "name": "SAINT-JULIEN LARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22979, + 46.610401 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0811", + "ref": "FR*SOD*S*SORE*56*1*_*_", + "name": "QUINCAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-07-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.175706, + 46.675926 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1062", + "ref": "FR*SOD*S*SORE*50*1*_*_", + "name": "VILLIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.427324, + 46.258898 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0181", + "ref": "FR*SOD*S*SORE*51*1*_*_", + "name": "CHATEAU-GARNIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.427324, + 46.258898 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0182", + "ref": "FR*SOD*S*SORE*51*1*_*_", + "name": "CHATEAU-GARNIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.545471, + 46.390884 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0862", + "ref": "FR*SOD*S*SORE*52*1*_*_", + "name": "SAINT-LAURENT DE JOURDES ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.545471, + 46.390884 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0861", + "ref": "FR*SOD*S*SORE*52*1*_*_", + "name": "SAINT-LAURENT DE JOURDES ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31542, + 46.485222 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0441", + "ref": "FR*SOD*S*SORE*53*1*_*_", + "name": "ITEUIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31542, + 46.485222 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0442", + "ref": "FR*SOD*S*SORE*53*1*_*_", + "name": "ITEUIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.160335, + 46.701389 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0492", + "ref": "FR*SOD*S*SORE*54*1*_*_", + "name": "LE ROCHEREAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.160335, + 46.701389 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0491", + "ref": "FR*SOD*S*SORE*54*1*_*_", + "name": "LE ROCHEREAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09682, + 46.758801 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0381", + "ref": "FR*SOD*S*SORE*55*1*_*_", + "name": "CUHON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-07-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09682, + 46.758801 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0382", + "ref": "FR*SOD*S*SORE*55*1*_*_", + "name": "CUHON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-07-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22979, + 46.610401 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0812", + "ref": "FR*SOD*S*SORE*56*1*_*_", + "name": "QUINCAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-07-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00364, + 46.661129 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0151", + "ref": "FR*SOD*S*SORE*57*1*_*_", + "name": "CHALANDRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31243, + 46.41752 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0192", + "ref": "FR*SOD*S*SORE*63*1*_*_", + "name": "CHATEAU-LARCHER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00364, + 46.661129 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0152", + "ref": "FR*SOD*S*SORE*57*1*_*_", + "name": "CHALANDRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61114, + 46.361571 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0111", + "ref": "FR*SOD*S*SORE*58*1*_*_", + "name": "BOURESSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61114, + 46.361571 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0112", + "ref": "FR*SOD*S*SORE*58*1*_*_", + "name": "BOURESSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.54894, + 46.818298 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0211", + "ref": "FR*SOD*S*SORE*59*1*_*_", + "name": "CHATELLERAULT GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.54894, + 46.818298 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0212", + "ref": "FR*SOD*S*SORE*59*1*_*_", + "name": "CHATELLERAULT GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5452, + 46.818611 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0201", + "ref": "FR*SOD*S*SORE*60*1*_*_", + "name": "CHATELLERAULT BLOSSAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.305724, + 46.57666 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0081", + "ref": "FR*SOD*S*SORE*5*1*_*_", + "name": "BIARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66512, + 46.444469 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0332", + "ref": "FR*SOD*S*SORE*61*1*_*_", + "name": "CIVAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66512, + 46.444469 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0331", + "ref": "FR*SOD*S*SORE*61*1*_*_", + "name": "CIVAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.51656, + 46.172569 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0651", + "ref": "FR*SOD*S*SORE*62*1*_*_", + "name": "MAUPREVOIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.51656, + 46.172569 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0652", + "ref": "FR*SOD*S*SORE*62*1*_*_", + "name": "MAUPREVOIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31243, + 46.41752 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0191", + "ref": "FR*SOD*S*SORE*63*1*_*_", + "name": "CHATEAU-LARCHER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.34213, + 46.549568 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1201", + "ref": "FR*SOD*S*SORE*79*1*_*_", + "name": "SAINT-BENOIT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.34213, + 46.549568 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1202", + "ref": "FR*SOD*S*SORE*79*1*_*_", + "name": "SAINT-BENOIT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.921262, + 46.551029 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1051", + "ref": "FR*SOD*S*SORE*49*1*_*_", + "name": "VILLEMORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57314, + 46.115108 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0801", + "ref": "FR*SOD*S*SORE*26*1*_*_", + "name": "PRESSAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65243, + 46.673271 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0042", + "ref": "FR*SOD*S*SORE*32*1*_*_", + "name": "ARCHIGNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60268, + 46.60733 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0092", + "ref": "FR*SOD*S*SORE*31*1*_*_", + "name": "BONNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60268, + 46.60733 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0091", + "ref": "FR*SOD*S*SORE*31*1*_*_", + "name": "BONNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.228739, + 46.645546 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0321", + "ref": "FR*SOD*S*SORE*30*1*_*_", + "name": "CISSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.228739, + 46.645546 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0322", + "ref": "FR*SOD*S*SORE*30*1*_*_", + "name": "CISSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67396, + 46.230862 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0501", + "ref": "FR*SOD*S*SORE*29*1*_*_", + "name": "LE VIGEANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67396, + 46.230862 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0502", + "ref": "FR*SOD*S*SORE*29*1*_*_", + "name": "LE VIGEANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.52613, + 46.275951 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1012", + "ref": "FR*SOD*S*SORE*28*1*_*_", + "name": "USSON-DU-POITOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.52613, + 46.275951 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1011", + "ref": "FR*SOD*S*SORE*28*1*_*_", + "name": "USSON-DU-POITOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42395, + 46.439945 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0421", + "ref": "FR*SOD*S*SORE*27*1*_*_", + "name": "GIZAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42395, + 46.439945 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0422", + "ref": "FR*SOD*S*SORE*27*1*_*_", + "name": "GIZAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57314, + 46.115108 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0802", + "ref": "FR*SOD*S*SORE*26*1*_*_", + "name": "PRESSAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17276, + 46.81292 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0312", + "ref": "FR*SOD*S*SORE*25*1*_*_", + "name": "CHOUPPES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.686995, + 46.189831 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0681", + "ref": "FR*SOD*S*SORE*33*1*_*_", + "name": "MILLAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17276, + 46.81292 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0311", + "ref": "FR*SOD*S*SORE*25*1*_*_", + "name": "CHOUPPES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0177, + 47.063301 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0522", + "ref": "FR*SOD*S*SORE*24*1*_*_", + "name": "LES TROIS MOUTIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0177, + 47.063301 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0521", + "ref": "FR*SOD*S*SORE*24*1*_*_", + "name": "LES TROIS MOUTIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.04111, + 46.42062 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0832", + "ref": "FR*SOD*S*SORE*23*1*_*_", + "name": "ROUILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.04111, + 46.42062 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0831", + "ref": "FR*SOD*S*SORE*23*1*_*_", + "name": "ROUILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.185004, + 46.48457 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0371", + "ref": "FR*SOD*S*SORE*22*1*_*_", + "name": "COULOMBIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.185004, + 46.48457 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0372", + "ref": "FR*SOD*S*SORE*22*1*_*_", + "name": "COULOMBIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4882, + 46.761219 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0761", + "ref": "FR*SOD*S*SORE*21*1*_*_", + "name": "NAINTRE PAUL ELUARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4882, + 46.761219 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0762", + "ref": "FR*SOD*S*SORE*21*1*_*_", + "name": "NAINTRE PAUL ELUARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57998, + 46.75684 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0051", + "ref": "FR*SOD*S*SORE*20*1*_*_", + "name": "AVAILLES EN CHATELLERAULT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57998, + 46.75684 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0052", + "ref": "FR*SOD*S*SORE*20*1*_*_", + "name": "AVAILLES EN CHATELLERAULT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.63465, + 46.508862 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1021", + "ref": "FR*SOD*S*SORE*19*1*_*_", + "name": "VALDIVIENNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65243, + 46.673271 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0041", + "ref": "FR*SOD*S*SORE*32*1*_*_", + "name": "ARCHIGNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.686995, + 46.189831 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0682", + "ref": "FR*SOD*S*SORE*33*1*_*_", + "name": "MILLAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.122311, + 46.435253 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0582", + "ref": "FR*SOD*S*SORE*48*1*_*_", + "name": "LUSIGNAN CENTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.042778, + 46.466946 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0472", + "ref": "FR*SOD*S*SORE*41*1*_*_", + "name": "LA TRIMOUILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.122311, + 46.435253 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0581", + "ref": "FR*SOD*S*SORE*48*1*_*_", + "name": "LUSIGNAN CENTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.233299, + 46.117443 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0891", + "ref": "FR*SOD*S*SORE*47*1*_*_", + "name": "SAINT-MACOUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.233299, + 46.117443 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0892", + "ref": "FR*SOD*S*SORE*47*1*_*_", + "name": "SAINT-MACOUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.060184, + 46.916531 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0641", + "ref": "FR*SOD*S*SORE*46*1*_*_", + "name": "MARTAIZE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.060184, + 46.916531 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0642", + "ref": "FR*SOD*S*SORE*46*1*_*_", + "name": "MARTAIZE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.050749, + 46.562309 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0071", + "ref": "FR*SOD*S*SORE*45*1*_*_", + "name": "BENASSAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.050749, + 46.562309 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0072", + "ref": "FR*SOD*S*SORE*45*1*_*_", + "name": "BENASSAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.340932, + 46.396202 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0632", + "ref": "FR*SOD*S*SORE*44*1*_*_", + "name": "MARNAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.340932, + 46.396202 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0631", + "ref": "FR*SOD*S*SORE*44*1*_*_", + "name": "MARNAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.311, + 46.158501 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0951", + "ref": "FR*SOD*S*SORE*42*1*_*_", + "name": "SAVIGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.311, + 46.158501 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0952", + "ref": "FR*SOD*S*SORE*42*1*_*_", + "name": "SAVIGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.042778, + 46.466946 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0471", + "ref": "FR*SOD*S*SORE*41*1*_*_", + "name": "LA TRIMOUILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.484916, + 46.757252 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1122", + "ref": "FR*SOD*S*SORE*40*1*_*_", + "name": "NAINTRE INTERMARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.994391, + 46.435724 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0881", + "ref": "FR*SOD*S*SORE*34*1*_*_", + "name": "SAINT-LEOMER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.484916, + 46.757252 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1121", + "ref": "FR*SOD*S*SORE*40*1*_*_", + "name": "NAINTRE INTERMARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.454083, + 46.483223 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0772", + "ref": "FR*SOD*S*SORE*39*1*_*_", + "name": "NIEUIL L’ESPOIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.454083, + 46.483223 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0771", + "ref": "FR*SOD*S*SORE*39*1*_*_", + "name": "NIEUIL L’ESPOIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59284, + 46.410831 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1041", + "ref": "FR*SOD*S*SORE*38*1*_*_", + "name": "VERRIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59284, + 46.410831 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1042", + "ref": "FR*SOD*S*SORE*38*1*_*_", + "name": "VERRIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72538, + 46.40226 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0601", + "ref": "FR*SOD*S*SORE*37*1*_*_", + "name": "LUSSAC-LES-CHATEAUX CENTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72538, + 46.40226 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0602", + "ref": "FR*SOD*S*SORE*37*1*_*_", + "name": "LUSSAC-LES-CHATEAUX CENTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62974, + 46.563229 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0251", + "ref": "FR*SOD*S*SORE*36*1*_*_", + "name": "CHAUVIGNY PEURON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62974, + 46.563229 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0252", + "ref": "FR*SOD*S*SORE*36*1*_*_", + "name": "CHAUVIGNY PEURON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.79966, + 46.258148 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0011", + "ref": "FR*SOD*S*SORE*35*1*_*_", + "name": "ADRIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.79966, + 46.258148 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0012", + "ref": "FR*SOD*S*SORE*35*1*_*_", + "name": "ADRIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.994391, + 46.435724 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0882", + "ref": "FR*SOD*S*SORE*34*1*_*_", + "name": "SAINT-LEOMER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.305724, + 46.57666 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0082", + "ref": "FR*SOD*S*SORE*5*1*_*_", + "name": "BIARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.280732, + 46.737652 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0292", + "ref": "FR*SOD*S*SORE*123*1*_*_", + "name": "CHENECHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.413897, + 46.541466 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0661", + "ref": "FR*SOD*S*SORE*4*1*_*_", + "name": "MIGNALOUX-BEAUVOIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-10-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02363, + 47.108528 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0742", + "ref": "FR*SOD*S*SORE*94*1*_*_", + "name": "MORTON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.25833, + 46.717381 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1271", + "ref": "FR*SOD*S*SORE*102*1*_*_", + "name": "CHABOURNAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.043703, + 47.071266 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0871", + "ref": "FR*SOD*S*SORE*101*1*_*_", + "name": "SAINT-LEGER DE MONTBRILLAIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.043703, + 47.071266 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0872", + "ref": "FR*SOD*S*SORE*101*1*_*_", + "name": "SAINT-LEGER DE MONTBRILLAIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40516, + 46.66909 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1212", + "ref": "FR*SOD*S*SORE*100*1*_*_", + "name": "SAINT-GEORGES LES BX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40516, + 46.66909 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1211", + "ref": "FR*SOD*S*SORE*100*1*_*_", + "name": "SAINT-GEORGES LES BX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62647, + 46.80711 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0932", + "ref": "FR*SOD*S*SORE*99*1*_*_", + "name": "SAINT-SAUVEUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62647, + 46.80711 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0931", + "ref": "FR*SOD*S*SORE*99*1*_*_", + "name": "SAINT-SAUVEUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07669, + 46.618771 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0482", + "ref": "FR*SOD*S*SORE*98*1*_*_", + "name": "LATILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07669, + 46.618771 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0481", + "ref": "FR*SOD*S*SORE*98*1*_*_", + "name": "LATILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65501, + 46.727718 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0302", + "ref": "FR*SOD*S*SORE*97*1*_*_", + "name": "CHENEVELLES ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65501, + 46.727718 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0301", + "ref": "FR*SOD*S*SORE*97*1*_*_", + "name": "CHENEVELLES ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32491, + 46.31971 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0162", + "ref": "FR*SOD*S*SORE*96*1*_*_", + "name": "CHAMPAGNE SAINT-HILAIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32491, + 46.31971 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0161", + "ref": "FR*SOD*S*SORE*96*1*_*_", + "name": "CHAMPAGNE SAINT-HILAIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.77655, + 46.50507 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1132", + "ref": "FR*SOD*S*SORE*95*1*_*_", + "name": "LEIGNES SUR FONTAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.77655, + 46.50507 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1131", + "ref": "FR*SOD*S*SORE*95*1*_*_", + "name": "LEIGNES SUR FONTAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.25833, + 46.717381 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1272", + "ref": "FR*SOD*S*SORE*102*1*_*_", + "name": "CHABOURNAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49537, + 46.32872 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1191", + "ref": "FR*SOD*S*SORE*103*1*_*_", + "name": "SAINT-SECONDIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49537, + 46.32872 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1192", + "ref": "FR*SOD*S*SORE*103*1*_*_", + "name": "SAINT-SECONDIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.869694, + 46.425816 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0722", + "ref": "FR*SOD*S*SORE*108*1*_*_", + "name": "MONTMORILLON CENTRE ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.56652, + 46.876129 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0432", + "ref": "FR*SOD*S*SORE*111*1*_*_", + "name": "INGRANDES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.246051, + 46.687889 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1231", + "ref": "FR*SOD*S*SORE*110*1*_*_", + "name": "NEUVILLE DE POITOU ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.246051, + 46.687889 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1232", + "ref": "FR*SOD*S*SORE*110*1*_*_", + "name": "NEUVILLE DE POITOU ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.28431, + 46.869717 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0962", + "ref": "FR*SOD*S*SORE*109*1*_*_", + "name": "SAVIGNY-SOUS-FAYE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.28431, + 46.869717 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0961", + "ref": "FR*SOD*S*SORE*109*1*_*_", + "name": "SAVIGNY-SOUS-FAYE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.869694, + 46.425816 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0721", + "ref": "FR*SOD*S*SORE*108*1*_*_", + "name": "MONTMORILLON CENTRE ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36394, + 46.655102 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1252", + "ref": "FR*SOD*S*SORE*107*1*_*_", + "name": "CHASSENEUIL DU POITOU - SDIS ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05509, + 46.35754 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0921", + "ref": "FR*SOD*S*SORE*104*1*_*_", + "name": "SAINT-SAUVANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36394, + 46.655102 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1251", + "ref": "FR*SOD*S*SORE*107*1*_*_", + "name": "CHASSENEUIL DU POITOU - SDIS ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.28977, + 46.243118 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1302", + "ref": "FR*SOD*S*SORE*106*1*_*_", + "name": "ROMAGNE VALLEE DES SINGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.28977, + 46.243118 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1301", + "ref": "FR*SOD*S*SORE*106*1*_*_", + "name": "ROMAGNE VALLEE DES SINGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30311, + 46.270481 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0821", + "ref": "FR*SOD*S*SORE*105*1*_*_", + "name": "ROMAGNE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30311, + 46.270481 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0822", + "ref": "FR*SOD*S*SORE*105*1*_*_", + "name": "ROMAGNE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05509, + 46.35754 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0922", + "ref": "FR*SOD*S*SORE*104*1*_*_", + "name": "SAINT-SAUVANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02363, + 47.108528 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0741", + "ref": "FR*SOD*S*SORE*94*1*_*_", + "name": "MORTON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01791, + 46.806728 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0462", + "ref": "FR*SOD*S*SORE*93*1*_*_", + "name": "LA GRIMAUDIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.112316, + 46.945148 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0031", + "ref": "FR*SOD*S*SORE*112*1*_*_", + "name": "ANGLIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01791, + 46.806728 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0461", + "ref": "FR*SOD*S*SORE*93*1*_*_", + "name": "LA GRIMAUDIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08266, + 47.010231 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0562", + "ref": "FR*SOD*S*SORE*83*1*_*_", + "name": "LOUDUN MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08266, + 47.010231 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0561", + "ref": "FR*SOD*S*SORE*83*1*_*_", + "name": "LOUDUN MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.41207, + 46.37738 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0901", + "ref": "FR*SOD*S*SORE*82*1*_*_", + "name": "SAINT-MAURICE LA CLOUERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.41207, + 46.37738 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0902", + "ref": "FR*SOD*S*SORE*82*1*_*_", + "name": "SAINT-MAURICE LA CLOUERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08608, + 47.00618 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0572", + "ref": "FR*SOD*S*SORE*81*1*_*_", + "name": "LOUDUN PORTE DE MIREBEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08608, + 47.00618 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0571", + "ref": "FR*SOD*S*SORE*81*1*_*_", + "name": "LOUDUN PORTE DE MIREBEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88642, + 46.694561 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0021", + "ref": "FR*SOD*S*SORE*80*1*_*_", + "name": "ANGLES SUR LANGLIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88642, + 46.694561 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0022", + "ref": "FR*SOD*S*SORE*80*1*_*_", + "name": "ANGLES SUR LANGLIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.175706, + 46.675926 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1061", + "ref": "FR*SOD*S*SORE*50*1*_*_", + "name": "VILLIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.311133, + 46.619541 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0671", + "ref": "FR*SOD*S*SORE*3*1*_*_", + "name": "MIGNE-AUXANCES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.311133, + 46.619541 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0672", + "ref": "FR*SOD*S*SORE*3*1*_*_", + "name": "MIGNE-AUXANCES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.350191, + 46.511269 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0991", + "ref": "FR*SOD*S*SORE*2*1*_*_", + "name": "SMARVES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.350191, + 46.511269 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0992", + "ref": "FR*SOD*S*SORE*2*1*_*_", + "name": "SMARVES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371421, + 46.569134 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0002", + "ref": "FR*SOD*S*SORE*1*1*_*_", + "name": "SOREGIES - 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371421, + 46.569134 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0001", + "ref": "FR*SOD*S*SORE*1*1*_*_", + "name": "SOREGIES - 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35242, + 46.598221 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0122", + "ref": "FR*SOD*S*SORE*84*1*_*_", + "name": "BUXEROLLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35242, + 46.598221 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0121", + "ref": "FR*SOD*S*SORE*84*1*_*_", + "name": "BUXEROLLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18065, + 46.78656 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1151", + "ref": "FR*SOD*S*SORE*85*1*_*_", + "name": "MIREBEAU POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.87585, + 46.377151 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1161", + "ref": "FR*SOD*S*SORE*89*1*_*_", + "name": "SAULGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01987, + 46.880989 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0692", + "ref": "FR*SOD*S*SORE*92*1*_*_", + "name": "MONCONTOUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01987, + 46.880989 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0691", + "ref": "FR*SOD*S*SORE*92*1*_*_", + "name": "MONCONTOUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47077, + 46.22636 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0452", + "ref": "FR*SOD*S*SORE*91*1*_*_", + "name": "JOUSSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47077, + 46.22636 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0451", + "ref": "FR*SOD*S*SORE*91*1*_*_", + "name": "JOUSSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37658, + 46.55698 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1242", + "ref": "FR*SOD*S*SORE*90*1*_*_", + "name": "MIGNALOUX-BEAUVOIR LE VERGER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37658, + 46.55698 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1241", + "ref": "FR*SOD*S*SORE*90*1*_*_", + "name": "MIGNALOUX-BEAUVOIR LE VERGER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.87585, + 46.377151 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1162", + "ref": "FR*SOD*S*SORE*89*1*_*_", + "name": "SAULGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18065, + 46.78656 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1152", + "ref": "FR*SOD*S*SORE*85*1*_*_", + "name": "MIREBEAU POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07623, + 46.66011 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0062", + "ref": "FR*SOD*S*SORE*88*1*_*_", + "name": "AYRON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07623, + 46.66011 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0061", + "ref": "FR*SOD*S*SORE*88*1*_*_", + "name": "AYRON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.41466, + 46.508591 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0781", + "ref": "FR*SOD*S*SORE*87*1*_*_", + "name": "NOUAILLE-MAUPERTUIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.41466, + 46.508591 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0782", + "ref": "FR*SOD*S*SORE*87*1*_*_", + "name": "NOUAILLE-MAUPERTUIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18734, + 46.42672 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0132", + "ref": "FR*SOD*S*SORE*86*1*_*_", + "name": "CELLE LEVESCAULT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18734, + 46.42672 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0131", + "ref": "FR*SOD*S*SORE*86*1*_*_", + "name": "CELLE LEVESCAULT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.56652, + 46.876129 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0431", + "ref": "FR*SOD*S*SORE*111*1*_*_", + "name": "INGRANDES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.112316, + 46.945148 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0032", + "ref": "FR*SOD*S*SORE*112*1*_*_", + "name": "ANGLIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.413897, + 46.541466 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0662", + "ref": "FR*SOD*S*SORE*4*1*_*_", + "name": "MIGNALOUX-BEAUVOIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-10-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.393296, + 46.357182 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1291", + "ref": "FR*SOD*S*SORE*131*1*_*_", + "name": "MAGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.34631, + 46.61766 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1431", + "ref": "FR*SOD*S*SORE*142*1*_*_", + "name": "POITIERS REPUBLIQUE HPC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3464, + 46.617687 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1422", + "ref": "FR*SOD*S*SORE*141*1*_*_", + "name": "POITIERS REPUBLIQUE 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3464, + 46.617687 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1421", + "ref": "FR*SOD*S*SORE*141*1*_*_", + "name": "POITIERS REPUBLIQUE 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371776, + 46.56869 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1402", + "ref": "FR*SOD*S*SORE*140*1*_*_", + "name": "SOREGIES-2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371776, + 46.56869 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1401", + "ref": "FR*SOD*S*SORE*140*1*_*_", + "name": "SOREGIES-2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64476, + 46.56827 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1411", + "ref": "FR*SOD*S*SORE*139*1*_*_", + "name": "CHAUVIGNY HPC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.439859, + 46.731194 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1391", + "ref": "FR*SOD*S*SORE*138*1*_*_", + "name": "BEAUMONT HPC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.115935, + 46.429119 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1381", + "ref": "FR*SOD*S*SORE*137*1*_*_", + "name": "LUSIGNAN HPC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3707, + 46.57145 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1371", + "ref": "FR*SOD*S*SORE*136*1*_*_", + "name": "REBEILLEAU HPC 2", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.369971, + 46.571165 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1361", + "ref": "FR*SOD*S*SORE*135*1*_*_", + "name": "REBEILLEAU HPC 1", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37065, + 46.5714 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1352", + "ref": "FR*SOD*S*SORE*134*1*_*_", + "name": "REBEILLEAU 3", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37065, + 46.5714 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1351", + "ref": "FR*SOD*S*SORE*134*1*_*_", + "name": "REBEILLEAU 3", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.810447, + 46.490733 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1341", + "ref": "FR*SOD*S*SORE*133*1*_*_", + "name": "PINDRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.810447, + 46.490733 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1342", + "ref": "FR*SOD*S*SORE*133*1*_*_", + "name": "PINDRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.21306, + 46.91925 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0731", + "ref": "FR*SOD*S*SORE*132*1*_*_", + "name": "MONTS SUR GUESNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.360187, + 46.661125 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1442", + "ref": "FR*SOD*S*SORE*143*1*_*_", + "name": "CHASSENEUIL TELEPORT 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.360187, + 46.661125 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1441", + "ref": "FR*SOD*S*SORE*143*1*_*_", + "name": "CHASSENEUIL TELEPORT 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.725185, + 46.402252 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1451", + "ref": "FR*SOD*S*SORE*144*1*_*_", + "name": "LUSSAC QC50", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.198011, + 46.357932 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1491", + "ref": "FR*SOD*S*SORE*151*1*_*_", + "name": "PAYRE QC50", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163327, + 46.20657 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSORE15511", + "ref": "FR*SOD*S*SORE*155*1*_*_", + "name": "CHAUNAY QC50", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.311309, + 46.160084 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSORE15411", + "ref": "FR*SOD*S*SORE*154*1*_*_", + "name": "SAVIGNE INTERMARCHE QC50", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.210527, + 46.920493 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1542", + "ref": "FR*SOD*S*SORE*153*1*_*_", + "name": "MONTS SUR GUESNES MEMORIAL 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.210527, + 46.920493 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1541", + "ref": "FR*SOD*S*SORE*153*1*_*_", + "name": "MONTS SUR GUESNES MEMORIAL 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.210555, + 46.92054 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1532", + "ref": "FR*SOD*S*SORE*152*1*_*_", + "name": "MONTS SUR GUESNES MEMORIAL 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.210555, + 46.92054 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1531", + "ref": "FR*SOD*S*SORE*152*1*_*_", + "name": "MONTS SUR GUESNES MEMORIAL 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30007, + 46.54829 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1522", + "ref": "FR*SOD*S*SORE*150*1*_*_", + "name": "POITIERS SUD 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197363, + 46.358393 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1502", + "ref": "FR*SOD*S*SORE*145*2*_*_", + "name": "PAYRE 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30007, + 46.54829 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1521", + "ref": "FR*SOD*S*SORE*150*1*_*_", + "name": "POITIERS SUD 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30007, + 46.54829 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1511", + "ref": "FR*SOD*S*SORE*149*1*_*_", + "name": "POITIERS SUD HPC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 46.64537 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1461", + "ref": "FR*SOD*S*SORE*148*1*_*_", + "name": "VOUILLE BEAUREGARD QC50", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08608, + 47.00618 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1471", + "ref": "FR*SOD*S*SORE*147*1*_*_", + "name": "LOUDUN PORTE DE MIREBEAU QC50", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.54263, + 46.83623 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1481", + "ref": "FR*SOD*S*SORE*146*1*_*_", + "name": "CHATELLERAULT NORD QC50", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197363, + 46.358393 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1501", + "ref": "FR*SOD*S*SORE*145*2*_*_", + "name": "PAYRE 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.21306, + 46.91925 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0732", + "ref": "FR*SOD*S*SORE*132*1*_*_", + "name": "MONTS SUR GUESNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.393296, + 46.357182 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1292", + "ref": "FR*SOD*S*SORE*131*1*_*_", + "name": "MAGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197537, + 46.569061 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1261", + "ref": "FR*SOD*S*SORE*113*1*_*_", + "name": "BERUGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5426, + 46.8363 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0242", + "ref": "FR*SOD*S*SORE*130*1*_*_", + "name": "CHATELLERAULT NORD ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.309254, + 46.735638 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1181", + "ref": "FR*SOD*S*SORE*120*1*_*_", + "name": "VENDEUVRE DU POITOU BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.309254, + 46.735638 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1182", + "ref": "FR*SOD*S*SORE*120*1*_*_", + "name": "VENDEUVRE DU POITOU BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18175, + 46.64537 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1091", + "ref": "FR*SOD*S*SORE*119*1*_*_", + "name": "VOUILLE BEAUREGARD ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18175, + 46.64537 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1092", + "ref": "FR*SOD*S*SORE*119*1*_*_", + "name": "VOUILLE BEAUREGARD ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.122411, + 46.422009 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1001", + "ref": "FR*SOD*S*SORE*118*1*_*_", + "name": "THOLLET ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.122411, + 46.422009 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1002", + "ref": "FR*SOD*S*SORE*118*1*_*_", + "name": "THOLLET ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.81115, + 46.786449 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1282", + "ref": "FR*SOD*S*SORE*117*1*_*_", + "name": "LA ROCHE-POSAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.81115, + 46.786449 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1281", + "ref": "FR*SOD*S*SORE*117*1*_*_", + "name": "LA ROCHE-POSAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53507, + 46.81348 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0232", + "ref": "FR*SOD*S*SORE*116*1*_*_", + "name": "CHATELLERAULT - MANUFACTURE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53507, + 46.81348 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0231", + "ref": "FR*SOD*S*SORE*116*1*_*_", + "name": "CHATELLERAULT - MANUFACTURE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53227, + 46.813271 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0222", + "ref": "FR*SOD*S*SORE*115*1*_*_", + "name": "CHATELLERAULT - CHATEAUNEUF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53227, + 46.813271 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0221", + "ref": "FR*SOD*S*SORE*115*1*_*_", + "name": "CHATELLERAULT - CHATEAUNEUF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.43986, + 46.731178 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1312", + "ref": "FR*SOD*S*SORE*114*1*_*_", + "name": "BEAUMONT SAINT-CYR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.43986, + 46.731178 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1311", + "ref": "FR*SOD*S*SORE*114*1*_*_", + "name": "BEAUMONT SAINT-CYR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197537, + 46.569061 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1262", + "ref": "FR*SOD*S*SORE*113*1*_*_", + "name": "BERUGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.646528, + 46.573013 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0261", + "ref": "FR*SOD*S*SORE*121*1*_*_", + "name": "CHAUVIGNY CITE MEDIEVALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.646528, + 46.573013 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0262", + "ref": "FR*SOD*S*SORE*121*1*_*_", + "name": "CHAUVIGNY CITE MEDIEVALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.642613, + 46.565388 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0272", + "ref": "FR*SOD*S*SORE*122*1*_*_", + "name": "CHAUVIGNY GYMNASE LATHUS ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.705291, + 46.759583 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1172", + "ref": "FR*SOD*S*SORE*127*1*_*_", + "name": "LEIGNE LES BOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5426, + 46.8363 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0241", + "ref": "FR*SOD*S*SORE*130*1*_*_", + "name": "CHATELLERAULT NORD ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.534952, + 46.776592 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1331", + "ref": "FR*SOD*S*SORE*129*1*_*_", + "name": "CENON FENWICK ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.534952, + 46.776592 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1332", + "ref": "FR*SOD*S*SORE*129*1*_*_", + "name": "CENON FENWICK ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.096326, + 46.71077 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1111", + "ref": "FR*SOD*S*SORE*128*1*_*_", + "name": "VOUZAILLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.096326, + 46.71077 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1112", + "ref": "FR*SOD*S*SORE*128*1*_*_", + "name": "VOUZAILLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.705291, + 46.759583 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1171", + "ref": "FR*SOD*S*SORE*127*1*_*_", + "name": "LEIGNE LES BOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26777, + 46.43398 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1222", + "ref": "FR*SOD*S*SORE*126*1*_*_", + "name": "VIVONNE CURIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.642613, + 46.565388 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0271", + "ref": "FR*SOD*S*SORE*122*1*_*_", + "name": "CHAUVIGNY GYMNASE LATHUS ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26777, + 46.43398 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1221", + "ref": "FR*SOD*S*SORE*126*1*_*_", + "name": "VIVONNE CURIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.86389, + 46.56596 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0941", + "ref": "FR*SOD*S*SORE*125*1*_*_", + "name": "SAINT-SAVIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.86389, + 46.56596 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0942", + "ref": "FR*SOD*S*SORE*125*1*_*_", + "name": "SAINT-SAVIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60611, + 46.93734 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1322", + "ref": "FR*SOD*S*SORE*124*1*_*_", + "name": "DANGE SAINT-ROMAIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60611, + 46.93734 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1321", + "ref": "FR*SOD*S*SORE*124*1*_*_", + "name": "DANGE SAINT-ROMAIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.280732, + 46.737652 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB0291", + "ref": "FR*SOD*S*SORE*123*1*_*_", + "name": "CHENECHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.921262, + 46.551029 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref:EU:EVSE": "FRS86PSOREB1052", + "ref": "FR*SOD*S*SORE*49*1*_*_", + "name": "VILLEMORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851691, + 45.757006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8411", + "ref": "FR*SOD*S*LYON*84*1*_*_", + "name": "LY314 - PAUL BERT - GARIBALDI", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.976542, + 45.772192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3611", + "ref": "FR*SOD*S*LYON*36*1*_*_", + "name": "DEC02 - ESPLANADE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83156, + 45.84807 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON721", + "ref": "FR*SOD*S*LYON*7*2*_*_", + "name": "CZM01 - RUE GABRIEL PERI", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.955587, + 45.769151 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON811", + "ref": "FR*SOD*S*LYON*8*1*_*_", + "name": "DEC01 - TOBOGGAN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.955587, + 45.769151 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON812", + "ref": "FR*SOD*S*LYON*8*1*_*_", + "name": "DEC01 - TOBOGGAN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.955587, + 45.769151 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON821", + "ref": "FR*SOD*S*LYON*8*2*_*_", + "name": "DEC01 - TOBOGGAN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.770547, + 45.760144 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON922", + "ref": "FR*SOD*S*LYON*9*2*_*_", + "name": "TDL03 - ATRIUM - AVENUE DES COSMOS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.770547, + 45.760144 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON921", + "ref": "FR*SOD*S*LYON*9*2*_*_", + "name": "TDL03 - ATRIUM - AVENUE DES COSMOS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.770547, + 45.760144 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON911", + "ref": "FR*SOD*S*LYON*9*1*_*_", + "name": "TDL03 - ATRIUM - AVENUE DES COSMOS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.770547, + 45.760144 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON912", + "ref": "FR*SOD*S*LYON*9*1*_*_", + "name": "TDL03 - ATRIUM - AVENUE DES COSMOS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.781649, + 45.774545 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1022", + "ref": "FR*SOD*S*LYON*10*2*_*_", + "name": "ECY03 - RUE AUGUSTE TRAMIER", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.781649, + 45.774545 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1021", + "ref": "FR*SOD*S*LYON*10*2*_*_", + "name": "ECY03 - RUE AUGUSTE TRAMIER", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.781649, + 45.774545 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1011", + "ref": "FR*SOD*S*LYON*10*1*_*_", + "name": "ECY03 - RUE AUGUSTE TRAMIER", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.781649, + 45.774545 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1012", + "ref": "FR*SOD*S*LYON*10*1*_*_", + "name": "ECY03 - RUE AUGUSTE TRAMIER", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872508, + 45.822366 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1122", + "ref": "FR*SOD*S*LYON*11*2*_*_", + "name": "SAC01 - PLACE DU MARCHE - BOULEVARD CASTELLANE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872508, + 45.822366 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1111", + "ref": "FR*SOD*S*LYON*11*1*_*_", + "name": "SAC01 - PLACE DU MARCHE - BOULEVARD CASTELLANE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872508, + 45.822366 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1112", + "ref": "FR*SOD*S*LYON*11*1*_*_", + "name": "SAC01 - PLACE DU MARCHE - BOULEVARD CASTELLANE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872508, + 45.822366 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1121", + "ref": "FR*SOD*S*LYON*11*2*_*_", + "name": "SAC01 - PLACE DU MARCHE - BOULEVARD CASTELLANE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884666, + 45.696632 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1211", + "ref": "FR*SOD*S*LYON*12*1*_*_", + "name": "VEN04 - MARCEL HOUEL - HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884666, + 45.696632 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1221", + "ref": "FR*SOD*S*LYON*12*2*_*_", + "name": "VEN04 - MARCEL HOUEL - HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.955587, + 45.769151 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON822", + "ref": "FR*SOD*S*LYON*8*2*_*_", + "name": "DEC01 - TOBOGGAN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83156, + 45.84807 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON711", + "ref": "FR*SOD*S*LYON*7*1*_*_", + "name": "CZM01 - RUE GABRIEL PERI", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884666, + 45.696632 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1212", + "ref": "FR*SOD*S*LYON*12*1*_*_", + "name": "VEN04 - MARCEL HOUEL - HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83156, + 45.84807 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON712", + "ref": "FR*SOD*S*LYON*7*1*_*_", + "name": "CZM01 - RUE GABRIEL PERI", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.919721, + 45.742366 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON322", + "ref": "FR*SOD*S*LYON*3*2*_*_", + "name": "BRN02 - AVENUE PIERRE BROSSOLETTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.919721, + 45.742366 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON311", + "ref": "FR*SOD*S*LYON*3*1*_*_", + "name": "BRN02 - AVENUE PIERRE BROSSOLETTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.919721, + 45.742366 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON312", + "ref": "FR*SOD*S*LYON*3*1*_*_", + "name": "BRN02 - AVENUE PIERRE BROSSOLETTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.919721, + 45.742366 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON321", + "ref": "FR*SOD*S*LYON*3*2*_*_", + "name": "BRN02 - AVENUE PIERRE BROSSOLETTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.795381, + 45.652114 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON422", + "ref": "FR*SOD*S*LYON*4*2*_*_", + "name": "CHY01 - PARKING MALPAS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.795381, + 45.652114 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON412", + "ref": "FR*SOD*S*LYON*4*1*_*_", + "name": "CHY01 - PARKING MALPAS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.795381, + 45.652114 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON411", + "ref": "FR*SOD*S*LYON*4*1*_*_", + "name": "CHY01 - PARKING MALPAS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.795381, + 45.652114 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON421", + "ref": "FR*SOD*S*LYON*4*2*_*_", + "name": "CHY01 - PARKING MALPAS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.969988, + 45.737828 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON511", + "ref": "FR*SOD*S*LYON*5*1*_*_", + "name": "CHA02 - CHEMIN DE LAFRIQUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.969988, + 45.737828 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON512", + "ref": "FR*SOD*S*LYON*5*1*_*_", + "name": "CHA02 - CHEMIN DE LAFRIQUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.969988, + 45.737828 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON521", + "ref": "FR*SOD*S*LYON*5*2*_*_", + "name": "CHA02 - CHEMIN DE LAFRIQUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.969988, + 45.737828 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON522", + "ref": "FR*SOD*S*LYON*5*2*_*_", + "name": "CHA02 - CHEMIN DE LAFRIQUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894663, + 45.664925 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON611", + "ref": "FR*SOD*S*LYON*6*1*_*_", + "name": "CRB02 - RUE DES FRENES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894663, + 45.664925 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON612", + "ref": "FR*SOD*S*LYON*6*1*_*_", + "name": "CRB02 - RUE DES FRENES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894663, + 45.664925 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON622", + "ref": "FR*SOD*S*LYON*6*2*_*_", + "name": "CRB02 - RUE DES FRENES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894663, + 45.664925 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON621", + "ref": "FR*SOD*S*LYON*6*2*_*_", + "name": "CRB02 - RUE DES FRENES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83156, + 45.84807 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON722", + "ref": "FR*SOD*S*LYON*7*2*_*_", + "name": "CZM01 - RUE GABRIEL PERI", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884666, + 45.696632 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1222", + "ref": "FR*SOD*S*LYON*12*2*_*_", + "name": "VEN04 - MARCEL HOUEL - HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.789628, + 45.609585 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1311", + "ref": "FR*SOD*S*LYON*13*1*_*_", + "name": "GRI01 - AVENUE JEAN ESTRAGNAT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.817802, + 45.742484 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2312", + "ref": "FR*SOD*S*LYON*23*1*_*_", + "name": "LY206 - DENUZIERE - CONFLUENCE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.957743, + 45.664807 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1822", + "ref": "FR*SOD*S*LYON*18*2*_*_", + "name": "MIS01 - LA HALLE DU MARCHE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.957743, + 45.664807 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1812", + "ref": "FR*SOD*S*LYON*18*1*_*_", + "name": "MIS01 - LA HALLE DU MARCHE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89177, + 45.697485 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1912", + "ref": "FR*SOD*S*LYON*19*1*_*_", + "name": "VEN05 - JACQUES DUCLOS - STADE LAURENT GUERIN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89177, + 45.697485 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1922", + "ref": "FR*SOD*S*LYON*19*2*_*_", + "name": "VEN05 - JACQUES DUCLOS - STADE LAURENT GUERIN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89177, + 45.697485 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1911", + "ref": "FR*SOD*S*LYON*19*1*_*_", + "name": "VEN05 - JACQUES DUCLOS - STADE LAURENT GUERIN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89177, + 45.697485 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1921", + "ref": "FR*SOD*S*LYON*19*2*_*_", + "name": "VEN05 - JACQUES DUCLOS - STADE LAURENT GUERIN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834654, + 45.840823 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2022", + "ref": "FR*SOD*S*LYON*20*2*_*_", + "name": "ROS01 - MAIRIE - QUAI PIERRE DUPONT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834654, + 45.840823 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2012", + "ref": "FR*SOD*S*LYON*20*1*_*_", + "name": "ROS01 - MAIRIE - QUAI PIERRE DUPONT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834654, + 45.840823 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2011", + "ref": "FR*SOD*S*LYON*20*1*_*_", + "name": "ROS01 - MAIRIE - QUAI PIERRE DUPONT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834654, + 45.840823 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2021", + "ref": "FR*SOD*S*LYON*20*2*_*_", + "name": "ROS01 - MAIRIE - QUAI PIERRE DUPONT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.777065, + 45.913791 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2122", + "ref": "FR*SOD*S*LYON*21*2*_*_", + "name": "QUI01 - PARKING ROUTE DE CHASSELAY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.777065, + 45.913791 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2121", + "ref": "FR*SOD*S*LYON*21*2*_*_", + "name": "QUI01 - PARKING ROUTE DE CHASSELAY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.777065, + 45.913791 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2112", + "ref": "FR*SOD*S*LYON*21*1*_*_", + "name": "QUI01 - PARKING ROUTE DE CHASSELAY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.777065, + 45.913791 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2111", + "ref": "FR*SOD*S*LYON*21*1*_*_", + "name": "QUI01 - PARKING ROUTE DE CHASSELAY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863299, + 45.726635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2222", + "ref": "FR*SOD*S*LYON*22*2*_*_", + "name": "VEN01 - AVENUE VIVIANI", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863299, + 45.726635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2211", + "ref": "FR*SOD*S*LYON*22*1*_*_", + "name": "VEN01 - AVENUE VIVIANI", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863299, + 45.726635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2212", + "ref": "FR*SOD*S*LYON*22*1*_*_", + "name": "VEN01 - AVENUE VIVIANI", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863299, + 45.726635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2221", + "ref": "FR*SOD*S*LYON*22*2*_*_", + "name": "VEN01 - AVENUE VIVIANI", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.957743, + 45.664807 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1821", + "ref": "FR*SOD*S*LYON*18*2*_*_", + "name": "MIS01 - LA HALLE DU MARCHE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.957743, + 45.664807 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1811", + "ref": "FR*SOD*S*LYON*18*1*_*_", + "name": "MIS01 - LA HALLE DU MARCHE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.789628, + 45.609585 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1322", + "ref": "FR*SOD*S*LYON*13*2*_*_", + "name": "GRI01 - AVENUE JEAN ESTRAGNAT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.009728, + 45.767571 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1712", + "ref": "FR*SOD*S*LYON*17*1*_*_", + "name": "MEY02 - RUE JEAN-LOUIS BARRAULT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.789628, + 45.609585 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1312", + "ref": "FR*SOD*S*LYON*13*1*_*_", + "name": "GRI01 - AVENUE JEAN ESTRAGNAT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.789628, + 45.609585 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1321", + "ref": "FR*SOD*S*LYON*13*2*_*_", + "name": "GRI01 - AVENUE JEAN ESTRAGNAT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.878329, + 45.832194 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1411", + "ref": "FR*SOD*S*LYON*14*1*_*_", + "name": "SAV01 - MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.878329, + 45.832194 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1421", + "ref": "FR*SOD*S*LYON*14*2*_*_", + "name": "SAV01 - MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.878329, + 45.832194 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1422", + "ref": "FR*SOD*S*LYON*14*2*_*_", + "name": "SAV01 - MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.878329, + 45.832194 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1412", + "ref": "FR*SOD*S*LYON*14*1*_*_", + "name": "SAV01 - MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.048532, + 45.795544 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1511", + "ref": "FR*SOD*S*LYON*15*1*_*_", + "name": "JOG01 - BOULEVARD LOUIS PRADEL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.048532, + 45.795544 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1512", + "ref": "FR*SOD*S*LYON*15*1*_*_", + "name": "JOG01 - BOULEVARD LOUIS PRADEL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.048532, + 45.795544 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1521", + "ref": "FR*SOD*S*LYON*15*2*_*_", + "name": "JOG01 - BOULEVARD LOUIS PRADEL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.048532, + 45.795544 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1522", + "ref": "FR*SOD*S*LYON*15*2*_*_", + "name": "JOG01 - BOULEVARD LOUIS PRADEL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.803939, + 45.692093 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1621", + "ref": "FR*SOD*S*LYON*16*2*_*_", + "name": "SGL02 - AVENUE ERNEST AUBOYER", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.803939, + 45.692093 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1612", + "ref": "FR*SOD*S*LYON*16*1*_*_", + "name": "SGL02 - AVENUE ERNEST AUBOYER", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.803939, + 45.692093 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1622", + "ref": "FR*SOD*S*LYON*16*2*_*_", + "name": "SGL02 - AVENUE ERNEST AUBOYER", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.803939, + 45.692093 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1611", + "ref": "FR*SOD*S*LYON*16*1*_*_", + "name": "SGL02 - AVENUE ERNEST AUBOYER", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.009728, + 45.767571 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1722", + "ref": "FR*SOD*S*LYON*17*2*_*_", + "name": "MEY02 - RUE JEAN-LOUIS BARRAULT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.009728, + 45.767571 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1721", + "ref": "FR*SOD*S*LYON*17*2*_*_", + "name": "MEY02 - RUE JEAN-LOUIS BARRAULT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.009728, + 45.767571 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON1711", + "ref": "FR*SOD*S*LYON*17*1*_*_", + "name": "MEY02 - RUE JEAN-LOUIS BARRAULT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.725522, + 45.746018 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON212", + "ref": "FR*SOD*S*LYON*2*1*_*_", + "name": "CRA01 - PARKING CURTIL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.725522, + 45.746018 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON211", + "ref": "FR*SOD*S*LYON*2*1*_*_", + "name": "CRA01 - PARKING CURTIL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.725522, + 45.746018 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON221", + "ref": "FR*SOD*S*LYON*2*2*_*_", + "name": "CRA01 - PARKING CURTIL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854637, + 45.788587 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8511", + "ref": "FR*SOD*S*LYON*85*1*_*_", + "name": "CAL06 - SAINT CLAIR", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851691, + 45.757006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8421", + "ref": "FR*SOD*S*LYON*84*2*_*_", + "name": "LY314 - PAUL BERT - GARIBALDI", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851691, + 45.757006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8441", + "ref": "FR*SOD*S*LYON*84*4*_*_", + "name": "LY314 - PAUL BERT - GARIBALDI", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827657, + 45.755746 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8321", + "ref": "FR*SOD*S*LYON*83*2*_*_", + "name": "LY201 - ANTOINE VOLLON", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827657, + 45.755746 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8341", + "ref": "FR*SOD*S*LYON*83*4*_*_", + "name": "LY201 - ANTOINE VOLLON", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827657, + 45.755746 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8311", + "ref": "FR*SOD*S*LYON*83*1*_*_", + "name": "LY201 - ANTOINE VOLLON", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827657, + 45.755746 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8331", + "ref": "FR*SOD*S*LYON*83*3*_*_", + "name": "LY201 - ANTOINE VOLLON", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.858266, + 45.767701 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8231", + "ref": "FR*SOD*S*LYON*82*3*_*_", + "name": "LY603 - BROTTEAUX", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.858266, + 45.767701 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8211", + "ref": "FR*SOD*S*LYON*82*1*_*_", + "name": "LY603 - BROTTEAUX", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.858266, + 45.767701 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8241", + "ref": "FR*SOD*S*LYON*82*4*_*_", + "name": "LY603 - BROTTEAUX", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.858266, + 45.767701 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8221", + "ref": "FR*SOD*S*LYON*82*2*_*_", + "name": "LY603 - BROTTEAUX", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.848397, + 45.763361 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8141", + "ref": "FR*SOD*S*LYON*81*4*_*_", + "name": "LY304 - DUGUESCLIN - LES HALLES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.848397, + 45.763361 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8131", + "ref": "FR*SOD*S*LYON*81*3*_*_", + "name": "LY304 - DUGUESCLIN - LES HALLES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.848397, + 45.763361 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8121", + "ref": "FR*SOD*S*LYON*81*2*_*_", + "name": "LY304 - DUGUESCLIN - LES HALLES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.848397, + 45.763361 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8111", + "ref": "FR*SOD*S*LYON*81*1*_*_", + "name": "LY304 - DUGUESCLIN - LES HALLES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.841962, + 45.762921 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8041", + "ref": "FR*SOD*S*LYON*80*4*_*_", + "name": "LY302 - LIBERTE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.841962, + 45.762921 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8011", + "ref": "FR*SOD*S*LYON*80*1*_*_", + "name": "LY302 - LIBERTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.841962, + 45.762921 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8021", + "ref": "FR*SOD*S*LYON*80*2*_*_", + "name": "LY302 - LIBERTE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851691, + 45.757006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8431", + "ref": "FR*SOD*S*LYON*84*3*_*_", + "name": "LY314 - PAUL BERT - GARIBALDI", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854637, + 45.788587 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8521", + "ref": "FR*SOD*S*LYON*85*2*_*_", + "name": "CAL06 - SAINT CLAIR", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.725522, + 45.746018 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON222", + "ref": "FR*SOD*S*LYON*2*2*_*_", + "name": "CRA01 - PARKING CURTIL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854637, + 45.788587 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8531", + "ref": "FR*SOD*S*LYON*85*3*_*_", + "name": "CAL06 - SAINT CLAIR", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834451, + 45.754859 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8941", + "ref": "FR*SOD*S*LYON*89*4*_*_", + "name": "LY203 - BELLECOUR - CHARITE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834451, + 45.754859 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8911", + "ref": "FR*SOD*S*LYON*89*1*_*_", + "name": "LY203 - BELLECOUR - CHARITE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834451, + 45.754859 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8921", + "ref": "FR*SOD*S*LYON*89*2*_*_", + "name": "LY203 - BELLECOUR - CHARITE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834451, + 45.754859 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8931", + "ref": "FR*SOD*S*LYON*89*3*_*_", + "name": "LY203 - BELLECOUR - CHARITE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84858, + 45.771588 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8841", + "ref": "FR*SOD*S*LYON*88*4*_*_", + "name": "LY606 - BOILEAU - MONTGOLFIER", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84858, + 45.771588 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8811", + "ref": "FR*SOD*S*LYON*88*1*_*_", + "name": "LY606 - BOILEAU - MONTGOLFIER", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84858, + 45.771588 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8821", + "ref": "FR*SOD*S*LYON*88*2*_*_", + "name": "LY606 - BOILEAU - MONTGOLFIER", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84858, + 45.771588 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8831", + "ref": "FR*SOD*S*LYON*88*3*_*_", + "name": "LY606 - BOILEAU - MONTGOLFIER", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836853, + 45.749838 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8721", + "ref": "FR*SOD*S*LYON*87*2*_*_", + "name": "LY713 - CHEVREUL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836853, + 45.749838 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8731", + "ref": "FR*SOD*S*LYON*87*3*_*_", + "name": "LY713 - CHEVREUL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836853, + 45.749838 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8741", + "ref": "FR*SOD*S*LYON*87*4*_*_", + "name": "LY713 - CHEVREUL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836853, + 45.749838 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8711", + "ref": "FR*SOD*S*LYON*87*1*_*_", + "name": "LY713 - CHEVREUL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765806, + 45.784019 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8621", + "ref": "FR*SOD*S*LYON*86*2*_*_", + "name": "ECY01 - CAMPUS LYON OUEST", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765806, + 45.784019 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8631", + "ref": "FR*SOD*S*LYON*86*3*_*_", + "name": "ECY01 - CAMPUS LYON OUEST", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765806, + 45.784019 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8641", + "ref": "FR*SOD*S*LYON*86*4*_*_", + "name": "ECY01 - CAMPUS LYON OUEST", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765806, + 45.784019 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8611", + "ref": "FR*SOD*S*LYON*86*1*_*_", + "name": "ECY01 - CAMPUS LYON OUEST", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854637, + 45.788587 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8541", + "ref": "FR*SOD*S*LYON*85*4*_*_", + "name": "CAL06 - SAINT CLAIR", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.841962, + 45.762921 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON8031", + "ref": "FR*SOD*S*LYON*80*3*_*_", + "name": "LY302 - LIBERTE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842903, + 45.768929 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7921", + "ref": "FR*SOD*S*LYON*79*2*_*_", + "name": "LY605 - FOCH - LYAUTEY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842903, + 45.768929 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7911", + "ref": "FR*SOD*S*LYON*79*1*_*_", + "name": "LY605 - FOCH - LYAUTEY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842903, + 45.768929 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7941", + "ref": "FR*SOD*S*LYON*79*4*_*_", + "name": "LY605 - FOCH - LYAUTEY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.919892, + 45.777519 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7441", + "ref": "FR*SOD*S*LYON*74*4*_*_", + "name": "VAV02 - HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863521, + 45.756307 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7341", + "ref": "FR*SOD*S*LYON*73*4*_*_", + "name": "LY315 - AVENUE LACASSAGNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863521, + 45.756307 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7321", + "ref": "FR*SOD*S*LYON*73*2*_*_", + "name": "LY315 - AVENUE LACASSAGNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863521, + 45.756307 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7311", + "ref": "FR*SOD*S*LYON*73*1*_*_", + "name": "LY315 - AVENUE LACASSAGNE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863521, + 45.756307 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7331", + "ref": "FR*SOD*S*LYON*73*3*_*_", + "name": "LY315 - AVENUE LACASSAGNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851272, + 45.745548 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7221", + "ref": "FR*SOD*S*LYON*72*2*_*_", + "name": "LY710 - SERGENT BLANDAN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851272, + 45.745548 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7211", + "ref": "FR*SOD*S*LYON*72*1*_*_", + "name": "LY710 - SERGENT BLANDAN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851272, + 45.745548 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7231", + "ref": "FR*SOD*S*LYON*72*3*_*_", + "name": "LY710 - SERGENT BLANDAN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851272, + 45.745548 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7241", + "ref": "FR*SOD*S*LYON*72*4*_*_", + "name": "LY710 - SERGENT BLANDAN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.800152, + 45.776037 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7011", + "ref": "FR*SOD*S*LYON*70*1*_*_", + "name": "LY905 - MARIETTON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.800152, + 45.776037 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7012", + "ref": "FR*SOD*S*LYON*70*1*_*_", + "name": "LY905 - MARIETTON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.952119, + 45.69574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6921", + "ref": "FR*SOD*S*LYON*69*2*_*_", + "name": "SPR05 - MENIVAL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.952119, + 45.69574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6911", + "ref": "FR*SOD*S*LYON*69*1*_*_", + "name": "SPR05 - MENIVAL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842099, + 45.817736 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON121", + "ref": "FR*SOD*S*LYON*1*2*_*_", + "name": "CLM01 - RUE CESAR PAULET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842099, + 45.817736 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON111", + "ref": "FR*SOD*S*LYON*1*1*_*_", + "name": "CLM01 - RUE CESAR PAULET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842099, + 45.817736 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON112", + "ref": "FR*SOD*S*LYON*1*1*_*_", + "name": "CLM01 - RUE CESAR PAULET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842099, + 45.817736 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON122", + "ref": "FR*SOD*S*LYON*1*2*_*_", + "name": "CLM01 - RUE CESAR PAULET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.919892, + 45.777519 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7411", + "ref": "FR*SOD*S*LYON*74*1*_*_", + "name": "VAV02 - HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.919892, + 45.777519 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7431", + "ref": "FR*SOD*S*LYON*74*3*_*_", + "name": "VAV02 - HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.919892, + 45.777519 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7421", + "ref": "FR*SOD*S*LYON*74*2*_*_", + "name": "VAV02 - HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828203, + 45.765606 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7741", + "ref": "FR*SOD*S*LYON*77*4*_*_", + "name": "LY501 - VIEUX- LYON - SAINT-PAUL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842903, + 45.768929 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7931", + "ref": "FR*SOD*S*LYON*79*3*_*_", + "name": "LY605 - FOCH - LYAUTEY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84453, + 45.7661 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7841", + "ref": "FR*SOD*S*LYON*78*4*_*_", + "name": "LY602 - EDGAR QUINET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84453, + 45.7661 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7831", + "ref": "FR*SOD*S*LYON*78*3*_*_", + "name": "LY602 - EDGAR QUINET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84453, + 45.7661 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7821", + "ref": "FR*SOD*S*LYON*78*2*_*_", + "name": "LY602 - EDGAR QUINET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84453, + 45.7661 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7811", + "ref": "FR*SOD*S*LYON*78*1*_*_", + "name": "LY602 - EDGAR QUINET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828203, + 45.765606 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7711", + "ref": "FR*SOD*S*LYON*77*1*_*_", + "name": "LY501 - VIEUX- LYON - SAINT-PAUL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828203, + 45.765606 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7721", + "ref": "FR*SOD*S*LYON*77*2*_*_", + "name": "LY501 - VIEUX- LYON - SAINT-PAUL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828203, + 45.765606 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7731", + "ref": "FR*SOD*S*LYON*77*3*_*_", + "name": "LY501 - VIEUX- LYON - SAINT-PAUL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834116, + 45.78694 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7531", + "ref": "FR*SOD*S*LYON*75*3*_*_", + "name": "CAL02 - CUIRE - RUE COSTE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845349, + 45.750243 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7641", + "ref": "FR*SOD*S*LYON*76*4*_*_", + "name": "LY701 - THIBAUDIERE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845349, + 45.750243 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7631", + "ref": "FR*SOD*S*LYON*76*3*_*_", + "name": "LY701 - THIBAUDIERE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845349, + 45.750243 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7611", + "ref": "FR*SOD*S*LYON*76*1*_*_", + "name": "LY701 - THIBAUDIERE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845349, + 45.750243 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7621", + "ref": "FR*SOD*S*LYON*76*2*_*_", + "name": "LY701 - THIBAUDIERE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834116, + 45.78694 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7521", + "ref": "FR*SOD*S*LYON*75*2*_*_", + "name": "CAL02 - CUIRE - RUE COSTE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834116, + 45.78694 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7541", + "ref": "FR*SOD*S*LYON*75*4*_*_", + "name": "CAL02 - CUIRE - RUE COSTE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834116, + 45.78694 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON7511", + "ref": "FR*SOD*S*LYON*75*1*_*_", + "name": "CAL02 - CUIRE - RUE COSTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.817802, + 45.742484 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2311", + "ref": "FR*SOD*S*LYON*23*1*_*_", + "name": "LY206 - DENUZIERE - CONFLUENCE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.817802, + 45.742484 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2322", + "ref": "FR*SOD*S*LYON*23*2*_*_", + "name": "LY206 - DENUZIERE - CONFLUENCE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.952119, + 45.69574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6912", + "ref": "FR*SOD*S*LYON*69*1*_*_", + "name": "SPR05 - MENIVAL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838506, + 45.877467 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4912", + "ref": "FR*SOD*S*LYON*49*1*_*_", + "name": "NEU01 - CENTRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79816, + 45.715749 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5011", + "ref": "FR*SOD*S*LYON*50*1*_*_", + "name": "OUL01 - FRANCISQUE JOMARD", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79816, + 45.715749 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5012", + "ref": "FR*SOD*S*LYON*50*1*_*_", + "name": "OUL01 - FRANCISQUE JOMARD", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79816, + 45.715749 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5022", + "ref": "FR*SOD*S*LYON*50*2*_*_", + "name": "OUL01 - FRANCISQUE JOMARD", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79816, + 45.715749 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5021", + "ref": "FR*SOD*S*LYON*50*2*_*_", + "name": "OUL01 - FRANCISQUE JOMARD", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.806887, + 45.713032 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5112", + "ref": "FR*SOD*S*LYON*51*1*_*_", + "name": "OUL02 - CENTRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.806887, + 45.713032 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5122", + "ref": "FR*SOD*S*LYON*51*2*_*_", + "name": "OUL02 - CENTRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.806887, + 45.713032 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5111", + "ref": "FR*SOD*S*LYON*51*1*_*_", + "name": "OUL02 - CENTRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.806887, + 45.713032 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5121", + "ref": "FR*SOD*S*LYON*51*2*_*_", + "name": "OUL02 - CENTRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765452, + 45.735576 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5222", + "ref": "FR*SOD*S*LYON*52*2*_*_", + "name": "FRC02 - MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765452, + 45.735576 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5221", + "ref": "FR*SOD*S*LYON*52*2*_*_", + "name": "FRC02 - MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765452, + 45.735576 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5212", + "ref": "FR*SOD*S*LYON*52*1*_*_", + "name": "FRC02 - MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765452, + 45.735576 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5211", + "ref": "FR*SOD*S*LYON*52*1*_*_", + "name": "FRC02 - MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.819514, + 45.755467 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5311", + "ref": "FR*SOD*S*LYON*53*1*_*_", + "name": "LY502 - PLACE DE LABBE LARUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.819514, + 45.755467 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5322", + "ref": "FR*SOD*S*LYON*53*2*_*_", + "name": "LY502 - PLACE DE LABBE LARUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.819514, + 45.755467 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5321", + "ref": "FR*SOD*S*LYON*53*2*_*_", + "name": "LY502 - PLACE DE LABBE LARUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.819514, + 45.755467 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5312", + "ref": "FR*SOD*S*LYON*53*1*_*_", + "name": "LY502 - PLACE DE LABBE LARUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.778237, + 45.760804 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5422", + "ref": "FR*SOD*S*LYON*54*2*_*_", + "name": "TDL02 - HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838506, + 45.877467 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4921", + "ref": "FR*SOD*S*LYON*49*2*_*_", + "name": "NEU01 - CENTRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838506, + 45.877467 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4922", + "ref": "FR*SOD*S*LYON*49*2*_*_", + "name": "NEU01 - CENTRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.778237, + 45.760804 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5412", + "ref": "FR*SOD*S*LYON*54*1*_*_", + "name": "TDL02 - HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838506, + 45.877467 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4911", + "ref": "FR*SOD*S*LYON*49*1*_*_", + "name": "NEU01 - CENTRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888112, + 45.720002 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4412", + "ref": "FR*SOD*S*LYON*44*1*_*_", + "name": "VEN07 - PARILLY - METRO", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.850108, + 45.666275 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4512", + "ref": "FR*SOD*S*LYON*45*1*_*_", + "name": "FEZ01 - LES RAZES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.850108, + 45.666275 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4521", + "ref": "FR*SOD*S*LYON*45*2*_*_", + "name": "FEZ01 - LES RAZES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.850108, + 45.666275 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4511", + "ref": "FR*SOD*S*LYON*45*1*_*_", + "name": "FEZ01 - LES RAZES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.850108, + 45.666275 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4522", + "ref": "FR*SOD*S*LYON*45*2*_*_", + "name": "FEZ01 - LES RAZES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.771318, + 45.816332 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4611", + "ref": "FR*SOD*S*LYON*46*1*_*_", + "name": "LIM01 - ZAC DU PUY DOR", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.771318, + 45.816332 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4612", + "ref": "FR*SOD*S*LYON*46*1*_*_", + "name": "LIM01 - ZAC DU PUY DOR", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.771318, + 45.816332 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4621", + "ref": "FR*SOD*S*LYON*46*2*_*_", + "name": "LIM01 - ZAC DU PUY DOR", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.771318, + 45.816332 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4622", + "ref": "FR*SOD*S*LYON*46*2*_*_", + "name": "LIM01 - ZAC DU PUY DOR", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.773797, + 45.738293 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4711", + "ref": "FR*SOD*S*LYON*47*1*_*_", + "name": "FRC01 - PLACE DE LEUROPE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.773797, + 45.738293 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4712", + "ref": "FR*SOD*S*LYON*47*1*_*_", + "name": "FRC01 - PLACE DE LEUROPE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.773797, + 45.738293 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4721", + "ref": "FR*SOD*S*LYON*47*2*_*_", + "name": "FRC01 - PLACE DE LEUROPE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.773797, + 45.738293 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4722", + "ref": "FR*SOD*S*LYON*47*2*_*_", + "name": "FRC01 - PLACE DE LEUROPE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852093, + 45.737324 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4811", + "ref": "FR*SOD*S*LYON*48*1*_*_", + "name": "LY807 - GRAND TROU", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852093, + 45.737324 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4821", + "ref": "FR*SOD*S*LYON*48*2*_*_", + "name": "LY807 - GRAND TROU", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852093, + 45.737324 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4822", + "ref": "FR*SOD*S*LYON*48*2*_*_", + "name": "LY807 - GRAND TROU", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852093, + 45.737324 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4812", + "ref": "FR*SOD*S*LYON*48*1*_*_", + "name": "LY807 - GRAND TROU", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.778237, + 45.760804 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5421", + "ref": "FR*SOD*S*LYON*54*2*_*_", + "name": "TDL02 - HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.778237, + 45.760804 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5411", + "ref": "FR*SOD*S*LYON*54*1*_*_", + "name": "TDL02 - HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.817802, + 45.742484 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2321", + "ref": "FR*SOD*S*LYON*23*2*_*_", + "name": "LY206 - DENUZIERE - CONFLUENCE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849492, + 45.794353 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6121", + "ref": "FR*SOD*S*LYON*61*2*_*_", + "name": "CAL03 - MONTESSUY - GUTENBERG", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849492, + 45.794353 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6112", + "ref": "FR*SOD*S*LYON*61*1*_*_", + "name": "CAL03 - MONTESSUY - GUTENBERG", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849492, + 45.794353 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6122", + "ref": "FR*SOD*S*LYON*61*2*_*_", + "name": "CAL03 - MONTESSUY - GUTENBERG", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.859705, + 45.779157 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6211", + "ref": "FR*SOD*S*LYON*62*1*_*_", + "name": "VIL02 - TETE DOR - STALINGRAD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.859705, + 45.779157 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6212", + "ref": "FR*SOD*S*LYON*62*1*_*_", + "name": "VIL02 - TETE DOR - STALINGRAD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.760909, + 45.8205 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6312", + "ref": "FR*SOD*S*LYON*63*1*_*_", + "name": "DAR01 - M6 - PORTE DE LYON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.760909, + 45.8205 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6311", + "ref": "FR*SOD*S*LYON*63*1*_*_", + "name": "DAR01 - M6 - PORTE DE LYON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.957432, + 45.679845 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6411", + "ref": "FR*SOD*S*LYON*64*1*_*_", + "name": "MIS02 - ROCADE EST - D318", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.957432, + 45.679845 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6412", + "ref": "FR*SOD*S*LYON*64*1*_*_", + "name": "MIS02 - ROCADE EST - D318", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.936937, + 45.74728 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6511", + "ref": "FR*SOD*S*LYON*65*1*_*_", + "name": "DEC03 - EUREXPO - SEPT CHEMINS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.936937, + 45.74728 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6512", + "ref": "FR*SOD*S*LYON*65*1*_*_", + "name": "DEC03 - EUREXPO - SEPT CHEMINS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852532, + 45.706235 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6712", + "ref": "FR*SOD*S*LYON*67*1*_*_", + "name": "SFS01 - CENTRE-GARE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852532, + 45.706235 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6722", + "ref": "FR*SOD*S*LYON*67*2*_*_", + "name": "SFS01 - CENTRE-GARE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852532, + 45.706235 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6711", + "ref": "FR*SOD*S*LYON*67*1*_*_", + "name": "SFS01 - CENTRE-GARE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852532, + 45.706235 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6721", + "ref": "FR*SOD*S*LYON*67*2*_*_", + "name": "SFS01 - CENTRE-GARE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.940114, + 45.692814 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6811", + "ref": "FR*SOD*S*LYON*68*1*_*_", + "name": "SPR06 - PARKING HENRI MARECHAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.940114, + 45.692814 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6821", + "ref": "FR*SOD*S*LYON*68*2*_*_", + "name": "SPR06 - PARKING HENRI MARECHAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.940114, + 45.692814 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6812", + "ref": "FR*SOD*S*LYON*68*1*_*_", + "name": "SPR06 - PARKING HENRI MARECHAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849492, + 45.794353 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6111", + "ref": "FR*SOD*S*LYON*61*1*_*_", + "name": "CAL03 - MONTESSUY - GUTENBERG", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.855184, + 45.694556 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6021", + "ref": "FR*SOD*S*LYON*60*2*_*_", + "name": "SFS03 - CLOCHETTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78582, + 45.78257 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5511", + "ref": "FR*SOD*S*LYON*55*1*_*_", + "name": "ECY02 - CENTRE SPORTIF", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.855184, + 45.694556 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6012", + "ref": "FR*SOD*S*LYON*60*1*_*_", + "name": "SFS03 - CLOCHETTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78582, + 45.78257 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5512", + "ref": "FR*SOD*S*LYON*55*1*_*_", + "name": "ECY02 - CENTRE SPORTIF", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78582, + 45.78257 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5522", + "ref": "FR*SOD*S*LYON*55*2*_*_", + "name": "ECY02 - CENTRE SPORTIF", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78582, + 45.78257 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5521", + "ref": "FR*SOD*S*LYON*55*2*_*_", + "name": "ECY02 - CENTRE SPORTIF", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.926708, + 45.718133 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5622", + "ref": "FR*SOD*S*LYON*56*2*_*_", + "name": "SPR02 - PORTE DES ALPES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.926708, + 45.718133 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5611", + "ref": "FR*SOD*S*LYON*56*1*_*_", + "name": "SPR02 - PORTE DES ALPES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.926708, + 45.718133 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5621", + "ref": "FR*SOD*S*LYON*56*2*_*_", + "name": "SPR02 - PORTE DES ALPES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.926708, + 45.718133 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5612", + "ref": "FR*SOD*S*LYON*56*1*_*_", + "name": "SPR02 - PORTE DES ALPES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.949094, + 45.69125 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5722", + "ref": "FR*SOD*S*LYON*57*2*_*_", + "name": "SPR08 - BEL AIR", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.949094, + 45.69125 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5711", + "ref": "FR*SOD*S*LYON*57*1*_*_", + "name": "SPR08 - BEL AIR", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.949094, + 45.69125 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5712", + "ref": "FR*SOD*S*LYON*57*1*_*_", + "name": "SPR08 - BEL AIR", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.949094, + 45.69125 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5721", + "ref": "FR*SOD*S*LYON*57*2*_*_", + "name": "SPR08 - BEL AIR", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.928949, + 45.78576 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5811", + "ref": "FR*SOD*S*LYON*58*1*_*_", + "name": "VAV03 - EGLISE DU VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.928949, + 45.78576 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5812", + "ref": "FR*SOD*S*LYON*58*1*_*_", + "name": "VAV03 - EGLISE DU VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986585, + 45.771356 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5911", + "ref": "FR*SOD*S*LYON*59*1*_*_", + "name": "MEY04 - ROCADE EST", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986585, + 45.771356 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON5912", + "ref": "FR*SOD*S*LYON*59*1*_*_", + "name": "MEY04 - ROCADE EST", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.855184, + 45.694556 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6011", + "ref": "FR*SOD*S*LYON*60*1*_*_", + "name": "SFS03 - CLOCHETTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.855184, + 45.694556 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6022", + "ref": "FR*SOD*S*LYON*60*2*_*_", + "name": "SFS03 - CLOCHETTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888112, + 45.720002 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4421", + "ref": "FR*SOD*S*LYON*44*2*_*_", + "name": "VEN07 - PARILLY - METRO", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888112, + 45.720002 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4411", + "ref": "FR*SOD*S*LYON*44*1*_*_", + "name": "VEN07 - PARILLY - METRO", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888112, + 45.720002 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4422", + "ref": "FR*SOD*S*LYON*44*2*_*_", + "name": "VEN07 - PARILLY - METRO", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.812139, + 45.648403 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2821", + "ref": "FR*SOD*S*LYON*28*2*_*_", + "name": "VER01 - ROUTE DE LYON", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.734441, + 45.785288 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2911", + "ref": "FR*SOD*S*LYON*29*1*_*_", + "name": "CHB01 - PLACE MARSONNAT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.734441, + 45.785288 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2921", + "ref": "FR*SOD*S*LYON*29*2*_*_", + "name": "CHB01 - PLACE MARSONNAT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.734441, + 45.785288 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2912", + "ref": "FR*SOD*S*LYON*29*1*_*_", + "name": "CHB01 - PLACE MARSONNAT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.850437, + 45.754512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3011", + "ref": "FR*SOD*S*LYON*30*1*_*_", + "name": "LY307 - RUE DARMENIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.850437, + 45.754512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3022", + "ref": "FR*SOD*S*LYON*30*2*_*_", + "name": "LY307 - RUE DARMENIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.850437, + 45.754512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3012", + "ref": "FR*SOD*S*LYON*30*1*_*_", + "name": "LY307 - RUE DARMENIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.850437, + 45.754512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3021", + "ref": "FR*SOD*S*LYON*30*2*_*_", + "name": "LY307 - RUE DARMENIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85484, + 45.75291 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3122", + "ref": "FR*SOD*S*LYON*31*2*_*_", + "name": "LY308 - PLACE BIR-HAKEIM", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85484, + 45.75291 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3111", + "ref": "FR*SOD*S*LYON*31*1*_*_", + "name": "LY308 - PLACE BIR-HAKEIM", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85484, + 45.75291 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3121", + "ref": "FR*SOD*S*LYON*31*2*_*_", + "name": "LY308 - PLACE BIR-HAKEIM", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85484, + 45.75291 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3112", + "ref": "FR*SOD*S*LYON*31*1*_*_", + "name": "LY308 - PLACE BIR-HAKEIM", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872527, + 45.852635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3212", + "ref": "FR*SOD*S*LYON*32*1*_*_", + "name": "CAF01 - MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872527, + 45.852635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3222", + "ref": "FR*SOD*S*LYON*32*2*_*_", + "name": "CAF01 - MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872527, + 45.852635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3221", + "ref": "FR*SOD*S*LYON*32*2*_*_", + "name": "CAF01 - MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872527, + 45.852635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3211", + "ref": "FR*SOD*S*LYON*32*1*_*_", + "name": "CAF01 - MAIRIE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.797656, + 45.786609 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3311", + "ref": "FR*SOD*S*LYON*33*1*_*_", + "name": "LY904 - ANDREI SAKHAROV", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.797656, + 45.786609 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3321", + "ref": "FR*SOD*S*LYON*33*2*_*_", + "name": "LY904 - ANDREI SAKHAROV", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.734441, + 45.785288 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2922", + "ref": "FR*SOD*S*LYON*29*2*_*_", + "name": "CHB01 - PLACE MARSONNAT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.812139, + 45.648403 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2812", + "ref": "FR*SOD*S*LYON*28*1*_*_", + "name": "VER01 - ROUTE DE LYON", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.789977, + 45.786734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4311", + "ref": "FR*SOD*S*LYON*43*1*_*_", + "name": "LY902 - AVENUE ROSA PARKS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.812139, + 45.648403 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2822", + "ref": "FR*SOD*S*LYON*28*2*_*_", + "name": "VER01 - ROUTE DE LYON", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.782994, + 45.754439 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2421", + "ref": "FR*SOD*S*LYON*24*2*_*_", + "name": "LY504 - JOLIOT CURIE - LES BATTIERES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.782994, + 45.754439 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2412", + "ref": "FR*SOD*S*LYON*24*1*_*_", + "name": "LY504 - JOLIOT CURIE - LES BATTIERES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.782994, + 45.754439 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2411", + "ref": "FR*SOD*S*LYON*24*1*_*_", + "name": "LY504 - JOLIOT CURIE - LES BATTIERES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.782994, + 45.754439 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2422", + "ref": "FR*SOD*S*LYON*24*2*_*_", + "name": "LY504 - JOLIOT CURIE - LES BATTIERES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876832, + 45.72893 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2521", + "ref": "FR*SOD*S*LYON*25*2*_*_", + "name": "LY805 - AVENUE PAUL SANTY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876832, + 45.72893 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2511", + "ref": "FR*SOD*S*LYON*25*1*_*_", + "name": "LY805 - AVENUE PAUL SANTY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876832, + 45.72893 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2522", + "ref": "FR*SOD*S*LYON*25*2*_*_", + "name": "LY805 - AVENUE PAUL SANTY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876832, + 45.72893 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2512", + "ref": "FR*SOD*S*LYON*25*1*_*_", + "name": "LY805 - AVENUE PAUL SANTY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.722615, + 45.758426 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2621", + "ref": "FR*SOD*S*LYON*26*2*_*_", + "name": "SGE01 - AVENUE MARCEL MERIEUX", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.722615, + 45.758426 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2611", + "ref": "FR*SOD*S*LYON*26*1*_*_", + "name": "SGE01 - AVENUE MARCEL MERIEUX", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.722615, + 45.758426 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2612", + "ref": "FR*SOD*S*LYON*26*1*_*_", + "name": "SGE01 - AVENUE MARCEL MERIEUX", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.722615, + 45.758426 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2622", + "ref": "FR*SOD*S*LYON*26*2*_*_", + "name": "SGE01 - AVENUE MARCEL MERIEUX", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872156, + 45.696395 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2722", + "ref": "FR*SOD*S*LYON*27*2*_*_", + "name": "VEN03 - VENISSY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872156, + 45.696395 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2711", + "ref": "FR*SOD*S*LYON*27*1*_*_", + "name": "VEN03 - VENISSY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872156, + 45.696395 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2721", + "ref": "FR*SOD*S*LYON*27*2*_*_", + "name": "VEN03 - VENISSY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872156, + 45.696395 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2712", + "ref": "FR*SOD*S*LYON*27*1*_*_", + "name": "VEN03 - VENISSY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.812139, + 45.648403 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON2811", + "ref": "FR*SOD*S*LYON*28*1*_*_", + "name": "VER01 - ROUTE DE LYON", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.797656, + 45.786609 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3322", + "ref": "FR*SOD*S*LYON*33*2*_*_", + "name": "LY904 - ANDREI SAKHAROV", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.797656, + 45.786609 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3312", + "ref": "FR*SOD*S*LYON*33*1*_*_", + "name": "LY904 - ANDREI SAKHAROV", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.900704, + 45.817578 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3421", + "ref": "FR*SOD*S*LYON*34*2*_*_", + "name": "RIL02 - MARIA CASARES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.900704, + 45.817578 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3422", + "ref": "FR*SOD*S*LYON*34*2*_*_", + "name": "RIL02 - MARIA CASARES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.853851, + 45.725868 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3921", + "ref": "FR*SOD*S*LYON*39*2*_*_", + "name": "LY809 - SAINT JEAN DE DIEU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.853851, + 45.725868 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3922", + "ref": "FR*SOD*S*LYON*39*2*_*_", + "name": "LY809 - SAINT JEAN DE DIEU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.003734, + 45.767058 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4022", + "ref": "FR*SOD*S*LYON*40*2*_*_", + "name": "MEY03 - CENTRE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.003734, + 45.767058 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4021", + "ref": "FR*SOD*S*LYON*40*2*_*_", + "name": "MEY03 - CENTRE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.003734, + 45.767058 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4012", + "ref": "FR*SOD*S*LYON*40*1*_*_", + "name": "MEY03 - CENTRE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.003734, + 45.767058 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4011", + "ref": "FR*SOD*S*LYON*40*1*_*_", + "name": "MEY03 - CENTRE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755318, + 45.765054 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4122", + "ref": "FR*SOD*S*LYON*41*2*_*_", + "name": "TDL04 - STADE DU SAUZE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755318, + 45.765054 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4111", + "ref": "FR*SOD*S*LYON*41*1*_*_", + "name": "TDL04 - STADE DU SAUZE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755318, + 45.765054 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4112", + "ref": "FR*SOD*S*LYON*41*1*_*_", + "name": "TDL04 - STADE DU SAUZE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755318, + 45.765054 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4121", + "ref": "FR*SOD*S*LYON*41*2*_*_", + "name": "TDL04 - STADE DU SAUZE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.035817, + 45.770299 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4211", + "ref": "FR*SOD*S*LYON*42*1*_*_", + "name": "JOG02 - ZI MEYZIEU-JONAGE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.035817, + 45.770299 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4221", + "ref": "FR*SOD*S*LYON*42*2*_*_", + "name": "JOG02 - ZI MEYZIEU-JONAGE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.035817, + 45.770299 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4222", + "ref": "FR*SOD*S*LYON*42*2*_*_", + "name": "JOG02 - ZI MEYZIEU-JONAGE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.035817, + 45.770299 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4212", + "ref": "FR*SOD*S*LYON*42*1*_*_", + "name": "JOG02 - ZI MEYZIEU-JONAGE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.789977, + 45.786734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4322", + "ref": "FR*SOD*S*LYON*43*2*_*_", + "name": "LY902 - AVENUE ROSA PARKS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.789977, + 45.786734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4312", + "ref": "FR*SOD*S*LYON*43*1*_*_", + "name": "LY902 - AVENUE ROSA PARKS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.789977, + 45.786734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON4321", + "ref": "FR*SOD*S*LYON*43*2*_*_", + "name": "LY902 - AVENUE ROSA PARKS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.853851, + 45.725868 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3912", + "ref": "FR*SOD*S*LYON*39*1*_*_", + "name": "LY809 - SAINT JEAN DE DIEU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.853851, + 45.725868 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3911", + "ref": "FR*SOD*S*LYON*39*1*_*_", + "name": "LY809 - SAINT JEAN DE DIEU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.919312, + 45.726701 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3821", + "ref": "FR*SOD*S*LYON*38*2*_*_", + "name": "BRN03 - PARKING DE LESPACE ALBERT CAMUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.976542, + 45.772192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3612", + "ref": "FR*SOD*S*LYON*36*1*_*_", + "name": "DEC02 - ESPLANADE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.900704, + 45.817578 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3411", + "ref": "FR*SOD*S*LYON*34*1*_*_", + "name": "RIL02 - MARIA CASARES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.900704, + 45.817578 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3412", + "ref": "FR*SOD*S*LYON*34*1*_*_", + "name": "RIL02 - MARIA CASARES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.901374, + 45.705336 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3521", + "ref": "FR*SOD*S*LYON*35*2*_*_", + "name": "SPR04 - CITE BERLIET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.901374, + 45.705336 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3511", + "ref": "FR*SOD*S*LYON*35*1*_*_", + "name": "SPR04 - CITE BERLIET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.901374, + 45.705336 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3512", + "ref": "FR*SOD*S*LYON*35*1*_*_", + "name": "SPR04 - CITE BERLIET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.901374, + 45.705336 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3522", + "ref": "FR*SOD*S*LYON*35*2*_*_", + "name": "SPR04 - CITE BERLIET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.952119, + 45.69574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6922", + "ref": "FR*SOD*S*LYON*69*2*_*_", + "name": "SPR05 - MENIVAL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.976542, + 45.772192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3622", + "ref": "FR*SOD*S*LYON*36*2*_*_", + "name": "DEC02 - ESPLANADE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.919312, + 45.726701 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3811", + "ref": "FR*SOD*S*LYON*38*1*_*_", + "name": "BRN03 - PARKING DE LESPACE ALBERT CAMUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.976542, + 45.772192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3621", + "ref": "FR*SOD*S*LYON*36*2*_*_", + "name": "DEC02 - ESPLANADE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.837835, + 45.737199 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3712", + "ref": "FR*SOD*S*LYON*37*1*_*_", + "name": "LY702 - JEAN JAURES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.837835, + 45.737199 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3711", + "ref": "FR*SOD*S*LYON*37*1*_*_", + "name": "LY702 - JEAN JAURES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.837835, + 45.737199 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3721", + "ref": "FR*SOD*S*LYON*37*2*_*_", + "name": "LY702 - JEAN JAURES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.837835, + 45.737199 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3722", + "ref": "FR*SOD*S*LYON*37*2*_*_", + "name": "LY702 - JEAN JAURES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.919312, + 45.726701 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3812", + "ref": "FR*SOD*S*LYON*38*1*_*_", + "name": "BRN03 - PARKING DE LESPACE ALBERT CAMUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.919312, + 45.726701 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON3822", + "ref": "FR*SOD*S*LYON*38*2*_*_", + "name": "BRN03 - PARKING DE LESPACE ALBERT CAMUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.826636, + 45.731668 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9011", + "ref": "FR*SOD*S*LYON*90*1*_*_", + "name": "LY703 - HALLE TONY GARNIER", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.826636, + 45.731668 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9041", + "ref": "FR*SOD*S*LYON*90*4*_*_", + "name": "LY703 - HALLE TONY GARNIER", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.826636, + 45.731668 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9021", + "ref": "FR*SOD*S*LYON*90*2*_*_", + "name": "LY703 - HALLE TONY GARNIER", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.881616, + 45.770826 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15712", + "ref": "FR*SOD*S*LYON*157*1*_*_", + "name": "VIL05 - GRATTE-CIEL - BRANLY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.844746, + 45.835363 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15611", + "ref": "FR*SOD*S*LYON*156*1*_*_", + "name": "FOS01 - MAIRIE DE FONTAINES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.844746, + 45.835363 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15621", + "ref": "FR*SOD*S*LYON*156*2*_*_", + "name": "FOS01 - MAIRIE DE FONTAINES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.844746, + 45.835363 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15622", + "ref": "FR*SOD*S*LYON*156*2*_*_", + "name": "FOS01 - MAIRIE DE FONTAINES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.844746, + 45.835363 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15612", + "ref": "FR*SOD*S*LYON*156*1*_*_", + "name": "FOS01 - MAIRIE DE FONTAINES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.794226, + 45.692455 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15521", + "ref": "FR*SOD*S*LYON*155*2*_*_", + "name": "SGL01 - PARKING DU 11 NOVEMBRE 1918", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.794226, + 45.692455 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15511", + "ref": "FR*SOD*S*LYON*155*1*_*_", + "name": "SGL01 - PARKING DU 11 NOVEMBRE 1918", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.794226, + 45.692455 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15512", + "ref": "FR*SOD*S*LYON*155*1*_*_", + "name": "SGL01 - PARKING DU 11 NOVEMBRE 1918", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.794226, + 45.692455 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15522", + "ref": "FR*SOD*S*LYON*155*2*_*_", + "name": "SGL01 - PARKING DU 11 NOVEMBRE 1918", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.768391, + 45.583926 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15412", + "ref": "FR*SOD*S*LYON*154*1*_*_", + "name": "GIV01 - PARKING PREVERT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.768391, + 45.583926 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15421", + "ref": "FR*SOD*S*LYON*154*2*_*_", + "name": "GIV01 - PARKING PREVERT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.768391, + 45.583926 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15411", + "ref": "FR*SOD*S*LYON*154*1*_*_", + "name": "GIV01 - PARKING PREVERT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.768391, + 45.583926 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15422", + "ref": "FR*SOD*S*LYON*154*2*_*_", + "name": "GIV01 - PARKING PREVERT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842062, + 45.639385 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15311", + "ref": "FR*SOD*S*LYON*153*1*_*_", + "name": "SOL01 - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842062, + 45.639385 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15312", + "ref": "FR*SOD*S*LYON*153*1*_*_", + "name": "SOL01 - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.803614, + 45.88337 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15212", + "ref": "FR*SOD*S*LYON*152*1*_*_", + "name": "SGM01 - MENDILLONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.803614, + 45.88337 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15211", + "ref": "FR*SOD*S*LYON*152*1*_*_", + "name": "SGM01 - MENDILLONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.798611, + 45.747098 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15112", + "ref": "FR*SOD*S*LYON*151*1*_*_", + "name": "SFL01 - FOCH - PROVINCES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.881616, + 45.770826 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15721", + "ref": "FR*SOD*S*LYON*157*2*_*_", + "name": "VIL05 - GRATTE-CIEL - BRANLY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.881616, + 45.770826 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15711", + "ref": "FR*SOD*S*LYON*157*1*_*_", + "name": "VIL05 - GRATTE-CIEL - BRANLY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825499, + 45.70403 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15012", + "ref": "FR*SOD*S*LYON*150*1*_*_", + "name": "PBE01 - RUE LUCIE AUBRAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.881616, + 45.770826 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15722", + "ref": "FR*SOD*S*LYON*157*2*_*_", + "name": "VIL05 - GRATTE-CIEL - BRANLY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.841473, + 45.759943 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16331", + "ref": "FR*SOD*S*LYON*163*3*_*_", + "name": "LY313 - SERVIENT - PREFECTURE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854351, + 45.763032 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16221", + "ref": "FR*SOD*S*LYON*162*2*_*_", + "name": "LY301 - PART-DIEU - DERUELLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854351, + 45.763032 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16231", + "ref": "FR*SOD*S*LYON*162*3*_*_", + "name": "LY301 - PART-DIEU - DERUELLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854351, + 45.763032 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16241", + "ref": "FR*SOD*S*LYON*162*4*_*_", + "name": "LY301 - PART-DIEU - DERUELLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854351, + 45.763032 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16211", + "ref": "FR*SOD*S*LYON*162*1*_*_", + "name": "LY301 - PART-DIEU - DERUELLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.879203, + 45.782509 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16121", + "ref": "FR*SOD*S*LYON*161*2*_*_", + "name": "VIL12 - INSA - EINSTEIN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.879203, + 45.782509 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16131", + "ref": "FR*SOD*S*LYON*161*3*_*_", + "name": "VIL12 - INSA - EINSTEIN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.879203, + 45.782509 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16141", + "ref": "FR*SOD*S*LYON*161*4*_*_", + "name": "VIL12 - INSA - EINSTEIN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.879203, + 45.782509 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16111", + "ref": "FR*SOD*S*LYON*161*1*_*_", + "name": "VIL12 - INSA - EINSTEIN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.767208, + 45.751773 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16011", + "ref": "FR*SOD*S*LYON*160*1*_*_", + "name": "TDL01 - ALAI - CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.767208, + 45.751773 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16012", + "ref": "FR*SOD*S*LYON*160*1*_*_", + "name": "TDL01 - ALAI - CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.829716, + 45.688457 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15911", + "ref": "FR*SOD*S*LYON*159*1*_*_", + "name": "IRY02 - GARE DYVOURS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.829716, + 45.688457 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15912", + "ref": "FR*SOD*S*LYON*159*1*_*_", + "name": "IRY02 - GARE DYVOURS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888936, + 45.760216 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15812", + "ref": "FR*SOD*S*LYON*158*1*_*_", + "name": "VIL13 - GRANDCLEMENT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888936, + 45.760216 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15822", + "ref": "FR*SOD*S*LYON*158*2*_*_", + "name": "VIL13 - GRANDCLEMENT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888936, + 45.760216 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15811", + "ref": "FR*SOD*S*LYON*158*1*_*_", + "name": "VIL13 - GRANDCLEMENT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888936, + 45.760216 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15821", + "ref": "FR*SOD*S*LYON*158*2*_*_", + "name": "VIL13 - GRANDCLEMENT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.798611, + 45.747098 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15111", + "ref": "FR*SOD*S*LYON*151*1*_*_", + "name": "SFL01 - FOCH - PROVINCES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825499, + 45.70403 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON15011", + "ref": "FR*SOD*S*LYON*150*1*_*_", + "name": "PBE01 - RUE LUCIE AUBRAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.826636, + 45.731668 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9031", + "ref": "FR*SOD*S*LYON*90*3*_*_", + "name": "LY703 - HALLE TONY GARNIER", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.969977, + 45.72577 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14212", + "ref": "FR*SOD*S*LYON*142*1*_*_", + "name": "CHA01 - ZI CHASSIEU - ROCADE EST", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863155, + 45.82162 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14111", + "ref": "FR*SOD*S*LYON*141*1*_*_", + "name": "FOS02 - MARRONNIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884058, + 45.804627 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14012", + "ref": "FR*SOD*S*LYON*140*1*_*_", + "name": "RIL03 - ROUTE DE GENEVE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884058, + 45.804627 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14011", + "ref": "FR*SOD*S*LYON*140*1*_*_", + "name": "RIL03 - ROUTE DE GENEVE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89595, + 45.821754 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13912", + "ref": "FR*SOD*S*LYON*139*1*_*_", + "name": "RIL01 - FLEURY SALIGNAT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89595, + 45.821754 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13911", + "ref": "FR*SOD*S*LYON*139*1*_*_", + "name": "RIL01 - FLEURY SALIGNAT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862851, + 45.880164 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13812", + "ref": "FR*SOD*S*LYON*138*1*_*_", + "name": "MOT01 - RUE DES MAURES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862851, + 45.880164 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13811", + "ref": "FR*SOD*S*LYON*138*1*_*_", + "name": "MOT01 - RUE DES MAURES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.808221, + 45.727861 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13712", + "ref": "FR*SOD*S*LYON*137*1*_*_", + "name": "LAM01 - BASTERO - CENTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.808221, + 45.727861 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13711", + "ref": "FR*SOD*S*LYON*137*1*_*_", + "name": "LAM01 - BASTERO - CENTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.820283, + 45.869805 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13611", + "ref": "FR*SOD*S*LYON*136*1*_*_", + "name": "CRM01 - ROUTE DES MONTS DOR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.820283, + 45.869805 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13612", + "ref": "FR*SOD*S*LYON*136*1*_*_", + "name": "CRM01 - ROUTE DES MONTS DOR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.831712, + 45.864387 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13512", + "ref": "FR*SOD*S*LYON*135*1*_*_", + "name": "ALY01 - CENTRE-BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.831712, + 45.864387 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13511", + "ref": "FR*SOD*S*LYON*135*1*_*_", + "name": "ALY01 - CENTRE-BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86727, + 45.774074 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13411", + "ref": "FR*SOD*S*LYON*134*1*_*_", + "name": "VIL06 - WILSON - TONKIN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86727, + 45.774074 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13421", + "ref": "FR*SOD*S*LYON*134*2*_*_", + "name": "VIL06 - WILSON - TONKIN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86727, + 45.774074 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13412", + "ref": "FR*SOD*S*LYON*134*1*_*_", + "name": "VIL06 - WILSON - TONKIN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86727, + 45.774074 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13422", + "ref": "FR*SOD*S*LYON*134*2*_*_", + "name": "VIL06 - WILSON - TONKIN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863155, + 45.82162 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14112", + "ref": "FR*SOD*S*LYON*141*1*_*_", + "name": "FOS02 - MARRONNIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.969977, + 45.72577 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14211", + "ref": "FR*SOD*S*LYON*142*1*_*_", + "name": "CHA01 - ZI CHASSIEU - ROCADE EST", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.716219, + 45.814521 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14912", + "ref": "FR*SOD*S*LYON*149*1*_*_", + "name": "LTS01 - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.815252, + 45.729335 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14311", + "ref": "FR*SOD*S*LYON*143*1*_*_", + "name": "LAM02 - M7 - CONFLUENCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.716219, + 45.814521 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14911", + "ref": "FR*SOD*S*LYON*149*1*_*_", + "name": "LTS01 - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.824257, + 45.67015 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14812", + "ref": "FR*SOD*S*LYON*148*1*_*_", + "name": "IRY01 - AVENUE JEAN GOTAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.824257, + 45.67015 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14811", + "ref": "FR*SOD*S*LYON*148*1*_*_", + "name": "IRY01 - AVENUE JEAN GOTAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84524, + 45.862377 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14712", + "ref": "FR*SOD*S*LYON*147*1*_*_", + "name": "FLS01 - CENTRE-BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84524, + 45.862377 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14711", + "ref": "FR*SOD*S*LYON*147*1*_*_", + "name": "FLS01 - CENTRE-BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.887705, + 45.730192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14611", + "ref": "FR*SOD*S*LYON*146*1*_*_", + "name": "BRN07 - MERMOZ-PINEL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.887705, + 45.730192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14621", + "ref": "FR*SOD*S*LYON*146*2*_*_", + "name": "BRN07 - MERMOZ-PINEL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.887705, + 45.730192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14622", + "ref": "FR*SOD*S*LYON*146*2*_*_", + "name": "BRN07 - MERMOZ-PINEL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.887705, + 45.730192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14612", + "ref": "FR*SOD*S*LYON*146*1*_*_", + "name": "BRN07 - MERMOZ-PINEL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.887876, + 45.730238 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14522", + "ref": "FR*SOD*S*LYON*145*2*_*_", + "name": "BRN06 - MERMOZ-PINEL - CHARGE ULTRA-RAPIDE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.887876, + 45.730238 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14511", + "ref": "FR*SOD*S*LYON*145*1*_*_", + "name": "BRN06 - MERMOZ-PINEL - CHARGE ULTRA-RAPIDE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.887876, + 45.730238 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14521", + "ref": "FR*SOD*S*LYON*145*2*_*_", + "name": "BRN06 - MERMOZ-PINEL - CHARGE ULTRA-RAPIDE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.898679, + 45.762188 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14411", + "ref": "FR*SOD*S*LYON*144*1*_*_", + "name": "VIL04 - REGUILLON", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.898679, + 45.762188 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14421", + "ref": "FR*SOD*S*LYON*144*2*_*_", + "name": "VIL04 - REGUILLON", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.898679, + 45.762188 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14412", + "ref": "FR*SOD*S*LYON*144*1*_*_", + "name": "VIL04 - REGUILLON", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.898679, + 45.762188 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14422", + "ref": "FR*SOD*S*LYON*144*2*_*_", + "name": "VIL04 - REGUILLON", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.815252, + 45.729335 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON14312", + "ref": "FR*SOD*S*LYON*143*1*_*_", + "name": "LAM02 - M7 - CONFLUENCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.841473, + 45.759943 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16341", + "ref": "FR*SOD*S*LYON*163*4*_*_", + "name": "LY313 - SERVIENT - PREFECTURE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.841473, + 45.759943 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16311", + "ref": "FR*SOD*S*LYON*163*1*_*_", + "name": "LY313 - SERVIENT - PREFECTURE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.841473, + 45.759943 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16321", + "ref": "FR*SOD*S*LYON*163*2*_*_", + "name": "LY313 - SERVIENT - PREFECTURE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822612, + 45.835806 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18212", + "ref": "FR*SOD*S*LYON*182*1*_*_", + "name": "SRM01 - ROUTE DU MONT THOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849126, + 45.832428 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18111", + "ref": "FR*SOD*S*LYON*181*1*_*_", + "name": "FOS03 - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83123, + 45.744922 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18011", + "ref": "FR*SOD*S*LYON*180*1*_*_", + "name": "LY709 - GENERAL LECLERC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83123, + 45.744922 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18012", + "ref": "FR*SOD*S*LYON*180*1*_*_", + "name": "LY709 - GENERAL LECLERC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.844451, + 45.746092 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17911", + "ref": "FR*SOD*S*LYON*179*1*_*_", + "name": "LY708 - JEAN MACE - SAINT-LAZARE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.844451, + 45.746092 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17912", + "ref": "FR*SOD*S*LYON*179*1*_*_", + "name": "LY708 - JEAN MACE - SAINT-LAZARE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.857939, + 45.757145 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17812", + "ref": "FR*SOD*S*LYON*178*1*_*_", + "name": "LY321 - PART-DIEU OUEST", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.857939, + 45.757145 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17811", + "ref": "FR*SOD*S*LYON*178*1*_*_", + "name": "LY321 - PART-DIEU OUEST", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.923888, + 45.765487 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17712", + "ref": "FR*SOD*S*LYON*177*1*_*_", + "name": "VAV06 - CARRE DE SOIE - BOHLEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.923888, + 45.765487 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17711", + "ref": "FR*SOD*S*LYON*177*1*_*_", + "name": "VAV06 - CARRE DE SOIE - BOHLEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.806765, + 45.770418 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17622", + "ref": "FR*SOD*S*LYON*176*2*_*_", + "name": "LY906 - PLACE JEAN MONNET - LECLAIR", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.806765, + 45.770418 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17621", + "ref": "FR*SOD*S*LYON*176*2*_*_", + "name": "LY906 - PLACE JEAN MONNET - LECLAIR", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.806765, + 45.770418 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17612", + "ref": "FR*SOD*S*LYON*176*1*_*_", + "name": "LY906 - PLACE JEAN MONNET - LECLAIR", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.806765, + 45.770418 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17611", + "ref": "FR*SOD*S*LYON*176*1*_*_", + "name": "LY906 - PLACE JEAN MONNET - LECLAIR", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872684, + 45.755436 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17521", + "ref": "FR*SOD*S*LYON*175*2*_*_", + "name": "LY322 - SAINT-EUSEBE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872684, + 45.755436 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17522", + "ref": "FR*SOD*S*LYON*175*2*_*_", + "name": "LY322 - SAINT-EUSEBE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872684, + 45.755436 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17512", + "ref": "FR*SOD*S*LYON*175*1*_*_", + "name": "LY322 - SAINT-EUSEBE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872684, + 45.755436 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17511", + "ref": "FR*SOD*S*LYON*175*1*_*_", + "name": "LY322 - SAINT-EUSEBE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849126, + 45.832428 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18112", + "ref": "FR*SOD*S*LYON*181*1*_*_", + "name": "FOS03 - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822612, + 45.835806 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18211", + "ref": "FR*SOD*S*LYON*182*1*_*_", + "name": "SRM01 - ROUTE DU MONT THOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.830579, + 45.726871 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16421", + "ref": "FR*SOD*S*LYON*164*2*_*_", + "name": "LY712 - GERLAND", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77209, + 45.837597 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18312", + "ref": "FR*SOD*S*LYON*183*1*_*_", + "name": "LIM02 - VALANTIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.928076, + 45.757096 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON19122", + "ref": "FR*SOD*S*LYON*191*2*_*_", + "name": "VAV08 - JOSEPH BLEIN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.928076, + 45.757096 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON19112", + "ref": "FR*SOD*S*LYON*191*1*_*_", + "name": "VAV08 - JOSEPH BLEIN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.928076, + 45.757096 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON19121", + "ref": "FR*SOD*S*LYON*191*2*_*_", + "name": "VAV08 - JOSEPH BLEIN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.928076, + 45.757096 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON19111", + "ref": "FR*SOD*S*LYON*191*1*_*_", + "name": "VAV08 - JOSEPH BLEIN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.858032, + 45.749022 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18722", + "ref": "FR*SOD*S*LYON*187*2*_*_", + "name": "LY711 - MANUFACTURE DES TABACS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.858032, + 45.749022 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18711", + "ref": "FR*SOD*S*LYON*187*1*_*_", + "name": "LY711 - MANUFACTURE DES TABACS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.858032, + 45.749022 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18721", + "ref": "FR*SOD*S*LYON*187*2*_*_", + "name": "LY711 - MANUFACTURE DES TABACS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.858032, + 45.749022 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18712", + "ref": "FR*SOD*S*LYON*187*1*_*_", + "name": "LY711 - MANUFACTURE DES TABACS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.743303, + 45.864479 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18612", + "ref": "FR*SOD*S*LYON*186*1*_*_", + "name": "LIS01 - CENTRE-BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.743303, + 45.864479 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18611", + "ref": "FR*SOD*S*LYON*186*1*_*_", + "name": "LIS01 - CENTRE-BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862654, + 45.733704 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18512", + "ref": "FR*SOD*S*LYON*185*1*_*_", + "name": "LY811 - ETATS-UNIS - LYCEE LUMIERE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862654, + 45.733704 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18511", + "ref": "FR*SOD*S*LYON*185*1*_*_", + "name": "LY811 - ETATS-UNIS - LYCEE LUMIERE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.777584, + 45.581722 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18412", + "ref": "FR*SOD*S*LYON*184*1*_*_", + "name": "GIV02 - VERRERIES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.777584, + 45.581722 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18411", + "ref": "FR*SOD*S*LYON*184*1*_*_", + "name": "GIV02 - VERRERIES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.777584, + 45.581722 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18422", + "ref": "FR*SOD*S*LYON*184*2*_*_", + "name": "GIV02 - VERRERIES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.777584, + 45.581722 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18421", + "ref": "FR*SOD*S*LYON*184*2*_*_", + "name": "GIV02 - VERRERIES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77209, + 45.837597 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON18311", + "ref": "FR*SOD*S*LYON*183*1*_*_", + "name": "LIM02 - VALANTIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76991, + 45.60042 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17412", + "ref": "FR*SOD*S*LYON*174*1*_*_", + "name": "GIV04 - PARC DES SPORTS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76991, + 45.60042 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17421", + "ref": "FR*SOD*S*LYON*174*2*_*_", + "name": "GIV04 - PARC DES SPORTS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76991, + 45.60042 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17411", + "ref": "FR*SOD*S*LYON*174*1*_*_", + "name": "GIV04 - PARC DES SPORTS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76991, + 45.60042 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17422", + "ref": "FR*SOD*S*LYON*174*2*_*_", + "name": "GIV04 - PARC DES SPORTS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884842, + 45.737533 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16821", + "ref": "FR*SOD*S*LYON*168*2*_*_", + "name": "LY804 - LAENNEC - BLANCHET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884842, + 45.737533 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16812", + "ref": "FR*SOD*S*LYON*168*1*_*_", + "name": "LY804 - LAENNEC - BLANCHET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884842, + 45.737533 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16811", + "ref": "FR*SOD*S*LYON*168*1*_*_", + "name": "LY804 - LAENNEC - BLANCHET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884842, + 45.737533 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16822", + "ref": "FR*SOD*S*LYON*168*2*_*_", + "name": "LY804 - LAENNEC - BLANCHET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81184, + 45.784265 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16711", + "ref": "FR*SOD*S*LYON*167*1*_*_", + "name": "LY907 - VAISE - DUPORT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81184, + 45.784265 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16721", + "ref": "FR*SOD*S*LYON*167*2*_*_", + "name": "LY907 - VAISE - DUPORT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81184, + 45.784265 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16722", + "ref": "FR*SOD*S*LYON*167*2*_*_", + "name": "LY907 - VAISE - DUPORT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81184, + 45.784265 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16712", + "ref": "FR*SOD*S*LYON*167*1*_*_", + "name": "LY907 - VAISE - DUPORT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863127, + 45.758517 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16612", + "ref": "FR*SOD*S*LYON*166*1*_*_", + "name": "LY320 - PART-DIEU EST", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863127, + 45.758517 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16611", + "ref": "FR*SOD*S*LYON*166*1*_*_", + "name": "LY320 - PART-DIEU EST", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.793958, + 45.793681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16531", + "ref": "FR*SOD*S*LYON*165*3*_*_", + "name": "CHM01 - LANESSAN SUD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.793958, + 45.793681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16521", + "ref": "FR*SOD*S*LYON*165*2*_*_", + "name": "CHM01 - LANESSAN SUD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.793958, + 45.793681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16541", + "ref": "FR*SOD*S*LYON*165*4*_*_", + "name": "CHM01 - LANESSAN SUD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.793958, + 45.793681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16511", + "ref": "FR*SOD*S*LYON*165*1*_*_", + "name": "CHM01 - LANESSAN SUD", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.830579, + 45.726871 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16441", + "ref": "FR*SOD*S*LYON*164*4*_*_", + "name": "LY712 - GERLAND", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.830579, + 45.726871 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16411", + "ref": "FR*SOD*S*LYON*164*1*_*_", + "name": "LY712 - GERLAND", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.830579, + 45.726871 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16431", + "ref": "FR*SOD*S*LYON*164*3*_*_", + "name": "LY712 - GERLAND", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88827, + 45.774634 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16912", + "ref": "FR*SOD*S*LYON*169*1*_*_", + "name": "VIL08 - CHATEAU GAILLARD - FORT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88827, + 45.774634 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16921", + "ref": "FR*SOD*S*LYON*169*2*_*_", + "name": "VIL08 - CHATEAU GAILLARD - FORT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88827, + 45.774634 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16911", + "ref": "FR*SOD*S*LYON*169*1*_*_", + "name": "VIL08 - CHATEAU GAILLARD - FORT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.850495, + 45.765502 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17212", + "ref": "FR*SOD*S*LYON*172*1*_*_", + "name": "LY608 - VAUBAN - GARIBALDI", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.875101, + 45.76973 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17321", + "ref": "FR*SOD*S*LYON*173*2*_*_", + "name": "VIL01 - GRATTE-CIEL - DEDIEU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.875101, + 45.76973 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17311", + "ref": "FR*SOD*S*LYON*173*1*_*_", + "name": "VIL01 - GRATTE-CIEL - DEDIEU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.875101, + 45.76973 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17322", + "ref": "FR*SOD*S*LYON*173*2*_*_", + "name": "VIL01 - GRATTE-CIEL - DEDIEU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.875101, + 45.76973 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17312", + "ref": "FR*SOD*S*LYON*173*1*_*_", + "name": "VIL01 - GRATTE-CIEL - DEDIEU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.850495, + 45.765502 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17211", + "ref": "FR*SOD*S*LYON*172*1*_*_", + "name": "LY608 - VAUBAN - GARIBALDI", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.850495, + 45.765502 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17222", + "ref": "FR*SOD*S*LYON*172*2*_*_", + "name": "LY608 - VAUBAN - GARIBALDI", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.850495, + 45.765502 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17221", + "ref": "FR*SOD*S*LYON*172*2*_*_", + "name": "LY608 - VAUBAN - GARIBALDI", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.813275, + 45.757816 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17122", + "ref": "FR*SOD*S*LYON*171*2*_*_", + "name": "LY505 - PLACE DE TRION - CHOULANS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88827, + 45.774634 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON16922", + "ref": "FR*SOD*S*LYON*169*2*_*_", + "name": "VIL08 - CHATEAU GAILLARD - FORT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.813275, + 45.757816 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17112", + "ref": "FR*SOD*S*LYON*171*1*_*_", + "name": "LY505 - PLACE DE TRION - CHOULANS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.813275, + 45.757816 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17111", + "ref": "FR*SOD*S*LYON*171*1*_*_", + "name": "LY505 - PLACE DE TRION - CHOULANS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.813275, + 45.757816 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17121", + "ref": "FR*SOD*S*LYON*171*2*_*_", + "name": "LY505 - PLACE DE TRION - CHOULANS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.887676, + 45.817008 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17022", + "ref": "FR*SOD*S*LYON*170*2*_*_", + "name": "RIL04 - CENTRE AQUATIQUE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.887676, + 45.817008 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17012", + "ref": "FR*SOD*S*LYON*170*1*_*_", + "name": "RIL04 - CENTRE AQUATIQUE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.887676, + 45.817008 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17011", + "ref": "FR*SOD*S*LYON*170*1*_*_", + "name": "RIL04 - CENTRE AQUATIQUE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.887676, + 45.817008 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON17021", + "ref": "FR*SOD*S*LYON*170*2*_*_", + "name": "RIL04 - CENTRE AQUATIQUE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873976, + 45.77919 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13312", + "ref": "FR*SOD*S*LYON*133*1*_*_", + "name": "VIL03 - LA DOUA", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873976, + 45.77919 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13322", + "ref": "FR*SOD*S*LYON*133*2*_*_", + "name": "VIL03 - LA DOUA", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873976, + 45.77919 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13311", + "ref": "FR*SOD*S*LYON*133*1*_*_", + "name": "VIL03 - LA DOUA", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.896494, + 45.7483 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10721", + "ref": "FR*SOD*S*LYON*107*2*_*_", + "name": "LY311 - PINEL - HOPITAUX EST", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84352, + 45.746565 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10621", + "ref": "FR*SOD*S*LYON*106*2*_*_", + "name": "LY706 - JEAN MACE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84352, + 45.746565 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10611", + "ref": "FR*SOD*S*LYON*106*1*_*_", + "name": "LY706 - JEAN MACE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84352, + 45.746565 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10641", + "ref": "FR*SOD*S*LYON*106*4*_*_", + "name": "LY706 - JEAN MACE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84352, + 45.746565 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10631", + "ref": "FR*SOD*S*LYON*106*3*_*_", + "name": "LY706 - JEAN MACE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.804307, + 45.777167 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10521", + "ref": "FR*SOD*S*LYON*105*2*_*_", + "name": "LY901 - TISSOT - BOURGOGNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.804307, + 45.777167 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10531", + "ref": "FR*SOD*S*LYON*105*3*_*_", + "name": "LY901 - TISSOT - BOURGOGNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.804307, + 45.777167 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10541", + "ref": "FR*SOD*S*LYON*105*4*_*_", + "name": "LY901 - TISSOT - BOURGOGNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.804307, + 45.777167 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10511", + "ref": "FR*SOD*S*LYON*105*1*_*_", + "name": "LY901 - TISSOT - BOURGOGNE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.868093, + 45.752512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10421", + "ref": "FR*SOD*S*LYON*104*2*_*_", + "name": "LY306 - DAUPHINE - LACASSAGNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.868093, + 45.752512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10441", + "ref": "FR*SOD*S*LYON*104*4*_*_", + "name": "LY306 - DAUPHINE - LACASSAGNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.868093, + 45.752512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10431", + "ref": "FR*SOD*S*LYON*104*3*_*_", + "name": "LY306 - DAUPHINE - LACASSAGNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.868093, + 45.752512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10411", + "ref": "FR*SOD*S*LYON*104*1*_*_", + "name": "LY306 - DAUPHINE - LACASSAGNE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.853004, + 45.772218 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10321", + "ref": "FR*SOD*S*LYON*103*2*_*_", + "name": "LY607 - MONTGOLFIER", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.853004, + 45.772218 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10331", + "ref": "FR*SOD*S*LYON*103*3*_*_", + "name": "LY607 - MONTGOLFIER", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.853004, + 45.772218 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10341", + "ref": "FR*SOD*S*LYON*103*4*_*_", + "name": "LY607 - MONTGOLFIER", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.853004, + 45.772218 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10311", + "ref": "FR*SOD*S*LYON*103*1*_*_", + "name": "LY607 - MONTGOLFIER", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838031, + 45.752824 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10231", + "ref": "FR*SOD*S*LYON*102*3*_*_", + "name": "LY705 - QUAI CLAUDE BERNARD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.896494, + 45.7483 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10711", + "ref": "FR*SOD*S*LYON*107*1*_*_", + "name": "LY311 - PINEL - HOPITAUX EST", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.896494, + 45.7483 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10731", + "ref": "FR*SOD*S*LYON*107*3*_*_", + "name": "LY311 - PINEL - HOPITAUX EST", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.797609, + 45.74192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11221", + "ref": "FR*SOD*S*LYON*112*2*_*_", + "name": "SFL02 - JARROSSON", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.896494, + 45.7483 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10741", + "ref": "FR*SOD*S*LYON*107*4*_*_", + "name": "LY311 - PINEL - HOPITAUX EST", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.797609, + 45.74192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11211", + "ref": "FR*SOD*S*LYON*112*1*_*_", + "name": "SFL02 - JARROSSON", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88493, + 45.754568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11121", + "ref": "FR*SOD*S*LYON*111*2*_*_", + "name": "VIL15 - RECONNAISSANCE - BALZAC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88493, + 45.754568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11131", + "ref": "FR*SOD*S*LYON*111*3*_*_", + "name": "VIL15 - RECONNAISSANCE - BALZAC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88493, + 45.754568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11141", + "ref": "FR*SOD*S*LYON*111*4*_*_", + "name": "VIL15 - RECONNAISSANCE - BALZAC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88493, + 45.754568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11111", + "ref": "FR*SOD*S*LYON*111*1*_*_", + "name": "VIL15 - RECONNAISSANCE - BALZAC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874061, + 45.763164 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11041", + "ref": "FR*SOD*S*LYON*110*4*_*_", + "name": "VIL09 - TOTEM", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874061, + 45.763164 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11011", + "ref": "FR*SOD*S*LYON*110*1*_*_", + "name": "VIL09 - TOTEM", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874061, + 45.763164 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11031", + "ref": "FR*SOD*S*LYON*110*3*_*_", + "name": "VIL09 - TOTEM", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874061, + 45.763164 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11021", + "ref": "FR*SOD*S*LYON*110*2*_*_", + "name": "VIL09 - TOTEM", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88884, + 45.768693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10911", + "ref": "FR*SOD*S*LYON*109*1*_*_", + "name": "VIL07 - FLACHET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88884, + 45.768693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10921", + "ref": "FR*SOD*S*LYON*109*2*_*_", + "name": "VIL07 - FLACHET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88884, + 45.768693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10931", + "ref": "FR*SOD*S*LYON*109*3*_*_", + "name": "VIL07 - FLACHET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88884, + 45.768693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10941", + "ref": "FR*SOD*S*LYON*109*4*_*_", + "name": "VIL07 - FLACHET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.861625, + 45.758607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10821", + "ref": "FR*SOD*S*LYON*108*2*_*_", + "name": "LY316 - VILLETTE - POMPIDOU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.861625, + 45.758607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10831", + "ref": "FR*SOD*S*LYON*108*3*_*_", + "name": "LY316 - VILLETTE - POMPIDOU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.861625, + 45.758607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10841", + "ref": "FR*SOD*S*LYON*108*4*_*_", + "name": "LY316 - VILLETTE - POMPIDOU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.861625, + 45.758607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10811", + "ref": "FR*SOD*S*LYON*108*1*_*_", + "name": "LY316 - VILLETTE - POMPIDOU", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838031, + 45.752824 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10211", + "ref": "FR*SOD*S*LYON*102*1*_*_", + "name": "LY705 - QUAI CLAUDE BERNARD", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838031, + 45.752824 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10221", + "ref": "FR*SOD*S*LYON*102*2*_*_", + "name": "LY705 - QUAI CLAUDE BERNARD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838031, + 45.752824 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10241", + "ref": "FR*SOD*S*LYON*102*4*_*_", + "name": "LY705 - QUAI CLAUDE BERNARD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.886463, + 45.749462 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10111", + "ref": "FR*SOD*S*LYON*101*1*_*_", + "name": "LY305 - MONTCHAT - CHATEAU", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854293, + 45.844635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9512", + "ref": "FR*SOD*S*LYON*95*1*_*_", + "name": "FSM01 - CENTRE-BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.918049, + 45.736845 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9412", + "ref": "FR*SOD*S*LYON*94*1*_*_", + "name": "BRN04 - CURIAL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.918049, + 45.736845 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9422", + "ref": "FR*SOD*S*LYON*94*2*_*_", + "name": "BRN04 - CURIAL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.918049, + 45.736845 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9421", + "ref": "FR*SOD*S*LYON*94*2*_*_", + "name": "BRN04 - CURIAL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.918049, + 45.736845 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9411", + "ref": "FR*SOD*S*LYON*94*1*_*_", + "name": "BRN04 - CURIAL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83371, + 45.743645 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9321", + "ref": "FR*SOD*S*LYON*93*2*_*_", + "name": "LY704 - QUARTIER GENERAL FRERE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83371, + 45.743645 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9322", + "ref": "FR*SOD*S*LYON*93*2*_*_", + "name": "LY704 - QUARTIER GENERAL FRERE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83371, + 45.743645 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9312", + "ref": "FR*SOD*S*LYON*93*1*_*_", + "name": "LY704 - QUARTIER GENERAL FRERE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83371, + 45.743645 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9311", + "ref": "FR*SOD*S*LYON*93*1*_*_", + "name": "LY704 - QUARTIER GENERAL FRERE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.837599, + 45.769459 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9231", + "ref": "FR*SOD*S*LYON*92*3*_*_", + "name": "LY104 - PLACE TOLOZAN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.837599, + 45.769459 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9221", + "ref": "FR*SOD*S*LYON*92*2*_*_", + "name": "LY104 - PLACE TOLOZAN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.837599, + 45.769459 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9241", + "ref": "FR*SOD*S*LYON*92*4*_*_", + "name": "LY104 - PLACE TOLOZAN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.837599, + 45.769459 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9211", + "ref": "FR*SOD*S*LYON*92*1*_*_", + "name": "LY104 - PLACE TOLOZAN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82572, + 45.771705 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9131", + "ref": "FR*SOD*S*LYON*91*3*_*_", + "name": "LY103 - ORNANO - CHARTREUX", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82572, + 45.771705 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9121", + "ref": "FR*SOD*S*LYON*91*2*_*_", + "name": "LY103 - ORNANO - CHARTREUX", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82572, + 45.771705 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9141", + "ref": "FR*SOD*S*LYON*91*4*_*_", + "name": "LY103 - ORNANO - CHARTREUX", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82572, + 45.771705 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9111", + "ref": "FR*SOD*S*LYON*91*1*_*_", + "name": "LY103 - ORNANO - CHARTREUX", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854293, + 45.844635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9511", + "ref": "FR*SOD*S*LYON*95*1*_*_", + "name": "FSM01 - CENTRE-BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.799631, + 45.853939 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9612", + "ref": "FR*SOD*S*LYON*96*1*_*_", + "name": "POM01 - MUSEE AMPERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.799631, + 45.853939 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9611", + "ref": "FR*SOD*S*LYON*96*1*_*_", + "name": "POM01 - MUSEE AMPERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.868584, + 45.762465 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9931", + "ref": "FR*SOD*S*LYON*99*3*_*_", + "name": "LY309 - PATINOIRE BARABAN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.886463, + 45.749462 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10121", + "ref": "FR*SOD*S*LYON*101*2*_*_", + "name": "LY305 - MONTCHAT - CHATEAU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.886463, + 45.749462 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10131", + "ref": "FR*SOD*S*LYON*101*3*_*_", + "name": "LY305 - MONTCHAT - CHATEAU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.886463, + 45.749462 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10141", + "ref": "FR*SOD*S*LYON*101*4*_*_", + "name": "LY305 - MONTCHAT - CHATEAU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.835647, + 45.73064 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10021", + "ref": "FR*SOD*S*LYON*100*2*_*_", + "name": "LY707 - DEBOURG", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.835647, + 45.73064 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10031", + "ref": "FR*SOD*S*LYON*100*3*_*_", + "name": "LY707 - DEBOURG", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.835647, + 45.73064 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10041", + "ref": "FR*SOD*S*LYON*100*4*_*_", + "name": "LY707 - DEBOURG", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.835647, + 45.73064 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON10011", + "ref": "FR*SOD*S*LYON*100*1*_*_", + "name": "LY707 - DEBOURG", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.868584, + 45.762465 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9941", + "ref": "FR*SOD*S*LYON*99*4*_*_", + "name": "LY309 - PATINOIRE BARABAN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.798111, + 45.809992 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9711", + "ref": "FR*SOD*S*LYON*97*1*_*_", + "name": "SDM01 - CENTRE-BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.868584, + 45.762465 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9921", + "ref": "FR*SOD*S*LYON*99*2*_*_", + "name": "LY309 - PATINOIRE BARABAN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.868584, + 45.762465 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9911", + "ref": "FR*SOD*S*LYON*99*1*_*_", + "name": "LY309 - PATINOIRE BARABAN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.904544, + 45.746765 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9822", + "ref": "FR*SOD*S*LYON*98*2*_*_", + "name": "BRN05 - HOPITAUX EST", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.904544, + 45.746765 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9811", + "ref": "FR*SOD*S*LYON*98*1*_*_", + "name": "BRN05 - HOPITAUX EST", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.904544, + 45.746765 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9821", + "ref": "FR*SOD*S*LYON*98*2*_*_", + "name": "BRN05 - HOPITAUX EST", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.904544, + 45.746765 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9812", + "ref": "FR*SOD*S*LYON*98*1*_*_", + "name": "BRN05 - HOPITAUX EST", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.798111, + 45.809992 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON9712", + "ref": "FR*SOD*S*LYON*97*1*_*_", + "name": "SDM01 - CENTRE-BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.797609, + 45.74192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11231", + "ref": "FR*SOD*S*LYON*112*3*_*_", + "name": "SFL02 - JARROSSON", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.797609, + 45.74192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11241", + "ref": "FR*SOD*S*LYON*112*4*_*_", + "name": "SFL02 - JARROSSON", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873976, + 45.77919 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13321", + "ref": "FR*SOD*S*LYON*133*2*_*_", + "name": "VIL03 - LA DOUA", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849277, + 45.761843 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12821", + "ref": "FR*SOD*S*LYON*128*2*_*_", + "name": "LY317 - BONNEL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827238, + 45.7516 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12721", + "ref": "FR*SOD*S*LYON*127*2*_*_", + "name": "LY202 - PLACE CARNOT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827238, + 45.7516 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12711", + "ref": "FR*SOD*S*LYON*127*1*_*_", + "name": "LY202 - PLACE CARNOT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827238, + 45.7516 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12731", + "ref": "FR*SOD*S*LYON*127*3*_*_", + "name": "LY202 - PLACE CARNOT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81272, + 45.773218 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12641", + "ref": "FR*SOD*S*LYON*126*4*_*_", + "name": "LY401 - QUAI JOSEPH GILLET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81272, + 45.773218 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12621", + "ref": "FR*SOD*S*LYON*126*2*_*_", + "name": "LY401 - QUAI JOSEPH GILLET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81272, + 45.773218 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12631", + "ref": "FR*SOD*S*LYON*126*3*_*_", + "name": "LY401 - QUAI JOSEPH GILLET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81272, + 45.773218 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12611", + "ref": "FR*SOD*S*LYON*126*1*_*_", + "name": "LY401 - QUAI JOSEPH GILLET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834249, + 45.781436 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12531", + "ref": "FR*SOD*S*LYON*125*3*_*_", + "name": "LY409 - HOPITAL CROIX-ROUSSE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834249, + 45.781436 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12541", + "ref": "FR*SOD*S*LYON*125*4*_*_", + "name": "LY409 - HOPITAL CROIX-ROUSSE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834249, + 45.781436 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12521", + "ref": "FR*SOD*S*LYON*125*2*_*_", + "name": "LY409 - HOPITAL CROIX-ROUSSE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834249, + 45.781436 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12511", + "ref": "FR*SOD*S*LYON*125*1*_*_", + "name": "LY409 - HOPITAL CROIX-ROUSSE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.715171, + 45.786008 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12412", + "ref": "FR*SOD*S*LYON*124*1*_*_", + "name": "MCY01 - LACROIX-LAVAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.715171, + 45.786008 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12411", + "ref": "FR*SOD*S*LYON*124*1*_*_", + "name": "MCY01 - LACROIX-LAVAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.715171, + 45.786008 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12422", + "ref": "FR*SOD*S*LYON*124*2*_*_", + "name": "MCY01 - LACROIX-LAVAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.715171, + 45.786008 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12421", + "ref": "FR*SOD*S*LYON*124*2*_*_", + "name": "MCY01 - LACROIX-LAVAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.814177, + 45.788793 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12321", + "ref": "FR*SOD*S*LYON*123*2*_*_", + "name": "LY903 - INDUSTRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.814177, + 45.788793 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12311", + "ref": "FR*SOD*S*LYON*123*1*_*_", + "name": "LY903 - INDUSTRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827238, + 45.7516 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12741", + "ref": "FR*SOD*S*LYON*127*4*_*_", + "name": "LY202 - PLACE CARNOT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849277, + 45.761843 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12831", + "ref": "FR*SOD*S*LYON*128*3*_*_", + "name": "LY317 - BONNEL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.859324, + 45.774643 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11331", + "ref": "FR*SOD*S*LYON*113*3*_*_", + "name": "VIL16 - CHAPLIN - STALINGRAD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849277, + 45.761843 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12811", + "ref": "FR*SOD*S*LYON*128*1*_*_", + "name": "LY317 - BONNEL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849443, + 45.753338 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13221", + "ref": "FR*SOD*S*LYON*132*2*_*_", + "name": "LY310 - ARISTIDE BRIAND", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849443, + 45.753338 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13222", + "ref": "FR*SOD*S*LYON*132*2*_*_", + "name": "LY310 - ARISTIDE BRIAND", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849443, + 45.753338 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13212", + "ref": "FR*SOD*S*LYON*132*1*_*_", + "name": "LY310 - ARISTIDE BRIAND", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849443, + 45.753338 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13211", + "ref": "FR*SOD*S*LYON*132*1*_*_", + "name": "LY310 - ARISTIDE BRIAND", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82456, + 45.746524 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13122", + "ref": "FR*SOD*S*LYON*131*2*_*_", + "name": "LY205 - PERRACHE SUD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82456, + 45.746524 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13112", + "ref": "FR*SOD*S*LYON*131*1*_*_", + "name": "LY205 - PERRACHE SUD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82456, + 45.746524 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13121", + "ref": "FR*SOD*S*LYON*131*2*_*_", + "name": "LY205 - PERRACHE SUD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82456, + 45.746524 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13111", + "ref": "FR*SOD*S*LYON*131*1*_*_", + "name": "LY205 - PERRACHE SUD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.814662, + 45.717164 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13012", + "ref": "FR*SOD*S*LYON*130*1*_*_", + "name": "OUL03 - GARE DOULLINS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.814662, + 45.717164 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13021", + "ref": "FR*SOD*S*LYON*130*2*_*_", + "name": "OUL03 - GARE DOULLINS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.814662, + 45.717164 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13022", + "ref": "FR*SOD*S*LYON*130*2*_*_", + "name": "OUL03 - GARE DOULLINS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.814662, + 45.717164 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON13011", + "ref": "FR*SOD*S*LYON*130*1*_*_", + "name": "OUL03 - GARE DOULLINS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.909035, + 45.734346 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12912", + "ref": "FR*SOD*S*LYON*129*1*_*_", + "name": "BRN01 - HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.909035, + 45.734346 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12922", + "ref": "FR*SOD*S*LYON*129*2*_*_", + "name": "BRN01 - HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.909035, + 45.734346 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12911", + "ref": "FR*SOD*S*LYON*129*1*_*_", + "name": "BRN01 - HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.909035, + 45.734346 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12921", + "ref": "FR*SOD*S*LYON*129*2*_*_", + "name": "BRN01 - HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849277, + 45.761843 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12841", + "ref": "FR*SOD*S*LYON*128*4*_*_", + "name": "LY317 - BONNEL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.814177, + 45.788793 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12312", + "ref": "FR*SOD*S*LYON*123*1*_*_", + "name": "LY903 - INDUSTRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.814177, + 45.788793 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12322", + "ref": "FR*SOD*S*LYON*123*2*_*_", + "name": "LY903 - INDUSTRIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.875958, + 45.742985 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12212", + "ref": "FR*SOD*S*LYON*122*1*_*_", + "name": "LY808 - GRANGE BLANCHE - BULLUKIAN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.875958, + 45.742985 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12222", + "ref": "FR*SOD*S*LYON*122*2*_*_", + "name": "LY808 - GRANGE BLANCHE - BULLUKIAN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85112, + 45.766396 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11741", + "ref": "FR*SOD*S*LYON*117*4*_*_", + "name": "LY601 - GARIBALDI - BUGEAUD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85112, + 45.766396 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11711", + "ref": "FR*SOD*S*LYON*117*1*_*_", + "name": "LY601 - GARIBALDI - BUGEAUD", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828562, + 45.777419 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11621", + "ref": "FR*SOD*S*LYON*116*2*_*_", + "name": "LY404 - BOULEVARD DES CANUTS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828562, + 45.777419 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11641", + "ref": "FR*SOD*S*LYON*116*4*_*_", + "name": "LY404 - BOULEVARD DES CANUTS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828562, + 45.777419 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11611", + "ref": "FR*SOD*S*LYON*116*1*_*_", + "name": "LY404 - BOULEVARD DES CANUTS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828562, + 45.777419 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11631", + "ref": "FR*SOD*S*LYON*116*3*_*_", + "name": "LY404 - BOULEVARD DES CANUTS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.819801, + 45.775426 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11521", + "ref": "FR*SOD*S*LYON*115*2*_*_", + "name": "LY402 - RUE BONY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.819801, + 45.775426 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11531", + "ref": "FR*SOD*S*LYON*115*3*_*_", + "name": "LY402 - RUE BONY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.819801, + 45.775426 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11541", + "ref": "FR*SOD*S*LYON*115*4*_*_", + "name": "LY402 - RUE BONY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.819801, + 45.775426 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11511", + "ref": "FR*SOD*S*LYON*115*1*_*_", + "name": "LY402 - RUE BONY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845828, + 45.758995 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11441", + "ref": "FR*SOD*S*LYON*114*4*_*_", + "name": "LY303 - SAXE - PLACE GUICHARD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845828, + 45.758995 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11431", + "ref": "FR*SOD*S*LYON*114*3*_*_", + "name": "LY303 - SAXE - PLACE GUICHARD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845828, + 45.758995 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11421", + "ref": "FR*SOD*S*LYON*114*2*_*_", + "name": "LY303 - SAXE - PLACE GUICHARD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845828, + 45.758995 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11411", + "ref": "FR*SOD*S*LYON*114*1*_*_", + "name": "LY303 - SAXE - PLACE GUICHARD", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.859324, + 45.774643 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11321", + "ref": "FR*SOD*S*LYON*113*2*_*_", + "name": "VIL16 - CHAPLIN - STALINGRAD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.859324, + 45.774643 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11341", + "ref": "FR*SOD*S*LYON*113*4*_*_", + "name": "VIL16 - CHAPLIN - STALINGRAD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.859324, + 45.774643 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11311", + "ref": "FR*SOD*S*LYON*113*1*_*_", + "name": "VIL16 - CHAPLIN - STALINGRAD", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85112, + 45.766396 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11721", + "ref": "FR*SOD*S*LYON*117*2*_*_", + "name": "LY601 - GARIBALDI - BUGEAUD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85112, + 45.766396 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11731", + "ref": "FR*SOD*S*LYON*117*3*_*_", + "name": "LY601 - GARIBALDI - BUGEAUD", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84435, + 45.797818 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11822", + "ref": "FR*SOD*S*LYON*118*2*_*_", + "name": "CAL05 - HOTEL DE VILLE - RADIANT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87067, + 45.735055 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12012", + "ref": "FR*SOD*S*LYON*120*1*_*_", + "name": "LY801 - MAISON DE LA DANSE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.875958, + 45.742985 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12221", + "ref": "FR*SOD*S*LYON*122*2*_*_", + "name": "LY808 - GRANGE BLANCHE - BULLUKIAN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.875958, + 45.742985 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12211", + "ref": "FR*SOD*S*LYON*122*1*_*_", + "name": "LY808 - GRANGE BLANCHE - BULLUKIAN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.860316, + 45.742073 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12122", + "ref": "FR*SOD*S*LYON*121*2*_*_", + "name": "LY806 - BERLIET - EPARGNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.860316, + 45.742073 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12112", + "ref": "FR*SOD*S*LYON*121*1*_*_", + "name": "LY806 - BERLIET - EPARGNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.860316, + 45.742073 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12121", + "ref": "FR*SOD*S*LYON*121*2*_*_", + "name": "LY806 - BERLIET - EPARGNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.860316, + 45.742073 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12111", + "ref": "FR*SOD*S*LYON*121*1*_*_", + "name": "LY806 - BERLIET - EPARGNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87067, + 45.735055 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12022", + "ref": "FR*SOD*S*LYON*120*2*_*_", + "name": "LY801 - MAISON DE LA DANSE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87067, + 45.735055 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12021", + "ref": "FR*SOD*S*LYON*120*2*_*_", + "name": "LY801 - MAISON DE LA DANSE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84435, + 45.797818 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11812", + "ref": "FR*SOD*S*LYON*118*1*_*_", + "name": "CAL05 - HOTEL DE VILLE - RADIANT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87067, + 45.735055 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON12011", + "ref": "FR*SOD*S*LYON*120*1*_*_", + "name": "LY801 - MAISON DE LA DANSE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.801467, + 45.756093 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11922", + "ref": "FR*SOD*S*LYON*119*2*_*_", + "name": "LY503 - POINT DU JOUR", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.801467, + 45.756093 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11911", + "ref": "FR*SOD*S*LYON*119*1*_*_", + "name": "LY503 - POINT DU JOUR", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.801467, + 45.756093 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11921", + "ref": "FR*SOD*S*LYON*119*2*_*_", + "name": "LY503 - POINT DU JOUR", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.801467, + 45.756093 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11912", + "ref": "FR*SOD*S*LYON*119*1*_*_", + "name": "LY503 - POINT DU JOUR", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84435, + 45.797818 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11811", + "ref": "FR*SOD*S*LYON*118*1*_*_", + "name": "CAL05 - HOTEL DE VILLE - RADIANT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84435, + 45.797818 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON11821", + "ref": "FR*SOD*S*LYON*118*2*_*_", + "name": "CAL05 - HOTEL DE VILLE - RADIANT", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.940114, + 45.692814 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref:EU:EVSE": "FRGLYPLYON6822", + "ref": "FR*SOD*S*LYON*68*2*_*_", + "name": "SPR06 - PARKING HENRI MARECHAL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.127841, + 43.663607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB111", + "ref": "FR*SOD*S*UNIB*1*1*_*_", + "name": "POLYGONE RIVIERA P1", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.127841, + 43.663607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB161", + "ref": "FR*SOD*S*UNIB*1*6*_*_", + "name": "POLYGONE RIVIERA P1", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218646, + 48.780477 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2761", + "ref": "FR*SOD*S*UNIB*27*6*_*_", + "name": "VELIZY 2 - PKG P11 NIVEAU M", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.547032, + 48.616655 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1841", + "ref": "FR*SOD*S*UNIB*18*4*_*_", + "name": "CARRE SENART", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.547032, + 48.616655 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1832", + "ref": "FR*SOD*S*UNIB*18*3*_*_", + "name": "CARRE SENART", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.547032, + 48.616655 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1851", + "ref": "FR*SOD*S*UNIB*18*5*_*_", + "name": "CARRE SENART", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.547032, + 48.616655 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1862", + "ref": "FR*SOD*S*UNIB*18*6*_*_", + "name": "CARRE SENART", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.547032, + 48.616655 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1811", + "ref": "FR*SOD*S*UNIB*18*1*_*_", + "name": "CARRE SENART", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.547032, + 48.616655 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1812", + "ref": "FR*SOD*S*UNIB*18*1*_*_", + "name": "CARRE SENART", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.547032, + 48.616655 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1852", + "ref": "FR*SOD*S*UNIB*18*5*_*_", + "name": "CARRE SENART", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.547032, + 48.616655 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1831", + "ref": "FR*SOD*S*UNIB*18*3*_*_", + "name": "CARRE SENART", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.547032, + 48.616655 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1861", + "ref": "FR*SOD*S*UNIB*18*6*_*_", + "name": "CARRE SENART", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221231, + 48.779686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1932", + "ref": "FR*SOD*S*UNIB*19*3*_*_", + "name": "VELIZY 2 - PKG AERIEN P12", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221231, + 48.779686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1961", + "ref": "FR*SOD*S*UNIB*19*6*_*_", + "name": "VELIZY 2 - PKG AERIEN P12", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221231, + 48.779686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1911", + "ref": "FR*SOD*S*UNIB*19*1*_*_", + "name": "VELIZY 2 - PKG AERIEN P12", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221231, + 48.779686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1912", + "ref": "FR*SOD*S*UNIB*19*1*_*_", + "name": "VELIZY 2 - PKG AERIEN P12", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221231, + 48.779686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1962", + "ref": "FR*SOD*S*UNIB*19*6*_*_", + "name": "VELIZY 2 - PKG AERIEN P12", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221231, + 48.779686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1921", + "ref": "FR*SOD*S*UNIB*19*2*_*_", + "name": "VELIZY 2 - PKG AERIEN P12", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221231, + 48.779686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1922", + "ref": "FR*SOD*S*UNIB*19*2*_*_", + "name": "VELIZY 2 - PKG AERIEN P12", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221231, + 48.779686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1952", + "ref": "FR*SOD*S*UNIB*19*5*_*_", + "name": "VELIZY 2 - PKG AERIEN P12", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.547032, + 48.616655 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1822", + "ref": "FR*SOD*S*UNIB*18*2*_*_", + "name": "CARRE SENART", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.547032, + 48.616655 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1821", + "ref": "FR*SOD*S*UNIB*18*2*_*_", + "name": "CARRE SENART", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1712", + "ref": "FR*SOD*S*UNIB*17*1*_*_", + "name": "AEROVILLE - TOKYO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1512", + "ref": "FR*SOD*S*UNIB*15*1*_*_", + "name": "AEROVILLE - NORDIC CHIC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1312", + "ref": "FR*SOD*S*UNIB*13*1*_*_", + "name": "AEROVILLE - AFRICA LODGE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1321", + "ref": "FR*SOD*S*UNIB*13*2*_*_", + "name": "AEROVILLE - AFRICA LODGE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1421", + "ref": "FR*SOD*S*UNIB*14*2*_*_", + "name": "AEROVILLE - BALI MARKET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1412", + "ref": "FR*SOD*S*UNIB*14*1*_*_", + "name": "AEROVILLE - BALI MARKET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1411", + "ref": "FR*SOD*S*UNIB*14*1*_*_", + "name": "AEROVILLE - BALI MARKET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1422", + "ref": "FR*SOD*S*UNIB*14*2*_*_", + "name": "AEROVILLE - BALI MARKET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1521", + "ref": "FR*SOD*S*UNIB*15*2*_*_", + "name": "AEROVILLE - NORDIC CHIC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1511", + "ref": "FR*SOD*S*UNIB*15*1*_*_", + "name": "AEROVILLE - NORDIC CHIC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1711", + "ref": "FR*SOD*S*UNIB*17*1*_*_", + "name": "AEROVILLE - TOKYO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1522", + "ref": "FR*SOD*S*UNIB*15*2*_*_", + "name": "AEROVILLE - NORDIC CHIC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1622", + "ref": "FR*SOD*S*UNIB*16*2*_*_", + "name": "AEROVILLE - TERMINAL COOK", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1621", + "ref": "FR*SOD*S*UNIB*16*2*_*_", + "name": "AEROVILLE - TERMINAL COOK", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1632", + "ref": "FR*SOD*S*UNIB*16*3*_*_", + "name": "AEROVILLE - TERMINAL COOK", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1611", + "ref": "FR*SOD*S*UNIB*16*1*_*_", + "name": "AEROVILLE - TERMINAL COOK", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1612", + "ref": "FR*SOD*S*UNIB*16*1*_*_", + "name": "AEROVILLE - TERMINAL COOK", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1631", + "ref": "FR*SOD*S*UNIB*16*3*_*_", + "name": "AEROVILLE - TERMINAL COOK", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221231, + 48.779686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1931", + "ref": "FR*SOD*S*UNIB*19*3*_*_", + "name": "VELIZY 2 - PKG AERIEN P12", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221231, + 48.779686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1941", + "ref": "FR*SOD*S*UNIB*19*4*_*_", + "name": "VELIZY 2 - PKG AERIEN P12", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221231, + 48.779686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1942", + "ref": "FR*SOD*S*UNIB*19*4*_*_", + "name": "VELIZY 2 - PKG AERIEN P12", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050151, + 47.35747 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2511", + "ref": "FR*SOD*S*UNIB*25*1*_*_", + "name": "TOISON DOR - PKG SOUS COMMERCE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.130846, + 50.617912 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2311", + "ref": "FR*SOD*S*UNIB*23*1*_*_", + "name": "VILLENEUVE 2 - PKG COMMERCANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.130846, + 50.617912 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2312", + "ref": "FR*SOD*S*UNIB*23*1*_*_", + "name": "VILLENEUVE 2 - PKG COMMERCANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050151, + 47.35747 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2411", + "ref": "FR*SOD*S*UNIB*24*1*_*_", + "name": "TOISON DOR - ZONE 1", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050151, + 47.35747 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2412", + "ref": "FR*SOD*S*UNIB*24*1*_*_", + "name": "TOISON DOR - ZONE 1", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050151, + 47.35747 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2422", + "ref": "FR*SOD*S*UNIB*24*2*_*_", + "name": "TOISON DOR - ZONE 1", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050151, + 47.35747 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2421", + "ref": "FR*SOD*S*UNIB*24*2*_*_", + "name": "TOISON DOR - ZONE 1", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050151, + 47.35747 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2521", + "ref": "FR*SOD*S*UNIB*25*2*_*_", + "name": "TOISON DOR - PKG SOUS COMMERCE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050151, + 47.35747 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2512", + "ref": "FR*SOD*S*UNIB*25*1*_*_", + "name": "TOISON DOR - PKG SOUS COMMERCE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.128357, + 50.617613 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2212", + "ref": "FR*SOD*S*UNIB*22*1*_*_", + "name": "VILLENEUVE 2 - PKG NIV0", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050151, + 47.35747 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2522", + "ref": "FR*SOD*S*UNIB*25*2*_*_", + "name": "TOISON DOR - PKG SOUS COMMERCE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.049248, + 47.355949 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2611", + "ref": "FR*SOD*S*UNIB*26*1*_*_", + "name": "TOISON DOR - PARKING EXTENSION", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.049248, + 47.355949 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2621", + "ref": "FR*SOD*S*UNIB*26*2*_*_", + "name": "TOISON DOR - PARKING EXTENSION", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.049248, + 47.355949 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2612", + "ref": "FR*SOD*S*UNIB*26*1*_*_", + "name": "TOISON DOR - PARKING EXTENSION", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.049248, + 47.355949 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2622", + "ref": "FR*SOD*S*UNIB*26*2*_*_", + "name": "TOISON DOR - PARKING EXTENSION", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218646, + 48.780477 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2713", + "ref": "FR*SOD*S*UNIB*27*1*_*_", + "name": "VELIZY 2 - PKG P11 NIVEAU M", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218646, + 48.780477 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2711", + "ref": "FR*SOD*S*UNIB*27*1*_*_", + "name": "VELIZY 2 - PKG P11 NIVEAU M", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.128357, + 50.617613 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2232", + "ref": "FR*SOD*S*UNIB*22*3*_*_", + "name": "VILLENEUVE 2 - PKG NIV0", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.128357, + 50.617613 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2221", + "ref": "FR*SOD*S*UNIB*22*2*_*_", + "name": "VILLENEUVE 2 - PKG NIV0", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221231, + 48.779686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1951", + "ref": "FR*SOD*S*UNIB*19*5*_*_", + "name": "VELIZY 2 - PKG AERIEN P12", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220011, + 48.780345 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2012", + "ref": "FR*SOD*S*UNIB*20*1*_*_", + "name": "VELIZY 2 - PKG P2 NIVEAU 0", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220011, + 48.780345 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2031", + "ref": "FR*SOD*S*UNIB*20*3*_*_", + "name": "VELIZY 2 - PKG P2 NIVEAU 0", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220011, + 48.780345 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2011", + "ref": "FR*SOD*S*UNIB*20*1*_*_", + "name": "VELIZY 2 - PKG P2 NIVEAU 0", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220011, + 48.780345 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2042", + "ref": "FR*SOD*S*UNIB*20*4*_*_", + "name": "VELIZY 2 - PKG P2 NIVEAU 0", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220011, + 48.780345 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2022", + "ref": "FR*SOD*S*UNIB*20*2*_*_", + "name": "VELIZY 2 - PKG P2 NIVEAU 0", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220011, + 48.780345 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2041", + "ref": "FR*SOD*S*UNIB*20*4*_*_", + "name": "VELIZY 2 - PKG P2 NIVEAU 0", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220011, + 48.780345 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2021", + "ref": "FR*SOD*S*UNIB*20*2*_*_", + "name": "VELIZY 2 - PKG P2 NIVEAU 0", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220011, + 48.780345 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2032", + "ref": "FR*SOD*S*UNIB*20*3*_*_", + "name": "VELIZY 2 - PKG P2 NIVEAU 0", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -4557,6 +288015,40 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.128357, + 50.617613 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2241", + "ref": "FR*SOD*S*UNIB*22*4*_*_", + "name": "VILLENEUVE 2 - PKG NIV0", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -4659,6 +288151,528842 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.128357, + 50.617613 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2231", + "ref": "FR*SOD*S*UNIB*22*3*_*_", + "name": "VILLENEUVE 2 - PKG NIV0", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.128357, + 50.617613 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2242", + "ref": "FR*SOD*S*UNIB*22*4*_*_", + "name": "VILLENEUVE 2 - PKG NIV0", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.128357, + 50.617613 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2211", + "ref": "FR*SOD*S*UNIB*22*1*_*_", + "name": "VILLENEUVE 2 - PKG NIV0", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.128357, + 50.617613 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2222", + "ref": "FR*SOD*S*UNIB*22*2*_*_", + "name": "VILLENEUVE 2 - PKG NIV0", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1311", + "ref": "FR*SOD*S*UNIB*13*1*_*_", + "name": "AEROVILLE - AFRICA LODGE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1322", + "ref": "FR*SOD*S*UNIB*13*2*_*_", + "name": "AEROVILLE - AFRICA LODGE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.816392, + 45.740684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB12121", + "ref": "FR*SOD*S*UNIB*12*12*_*_", + "name": "CONFLUENCE - PKG N+1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.118916, + 48.827492 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB521", + "ref": "FR*SOD*S*UNIB*5*2*_*_", + "name": "PARLY STATION 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.127841, + 43.663607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB421", + "ref": "FR*SOD*S*UNIB*4*2*_*_", + "name": "POLYGONE RIVIERA P3", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.127841, + 43.663607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB451", + "ref": "FR*SOD*S*UNIB*4*5*_*_", + "name": "POLYGONE RIVIERA P3", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.118916, + 48.827492 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB531", + "ref": "FR*SOD*S*UNIB*5*3*_*_", + "name": "PARLY STATION 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.118916, + 48.827492 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB552", + "ref": "FR*SOD*S*UNIB*5*5*_*_", + "name": "PARLY STATION 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.118916, + 48.827492 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB511", + "ref": "FR*SOD*S*UNIB*5*1*_*_", + "name": "PARLY STATION 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.118916, + 48.827492 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB512", + "ref": "FR*SOD*S*UNIB*5*1*_*_", + "name": "PARLY STATION 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.118916, + 48.827492 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB532", + "ref": "FR*SOD*S*UNIB*5*3*_*_", + "name": "PARLY STATION 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.118916, + 48.827492 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB551", + "ref": "FR*SOD*S*UNIB*5*5*_*_", + "name": "PARLY STATION 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.127841, + 43.663607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB411", + "ref": "FR*SOD*S*UNIB*4*1*_*_", + "name": "POLYGONE RIVIERA P3", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.118916, + 48.827492 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB542", + "ref": "FR*SOD*S*UNIB*5*4*_*_", + "name": "PARLY STATION 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.118916, + 48.827492 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB541", + "ref": "FR*SOD*S*UNIB*5*4*_*_", + "name": "PARLY STATION 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.118916, + 48.827492 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB522", + "ref": "FR*SOD*S*UNIB*5*2*_*_", + "name": "PARLY STATION 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114096, + 48.828905 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB6122", + "ref": "FR*SOD*S*UNIB*6*12*_*_", + "name": "PARLY STATION 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114096, + 48.828905 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB6111", + "ref": "FR*SOD*S*UNIB*6*11*_*_", + "name": "PARLY STATION 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114096, + 48.828905 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB6131", + "ref": "FR*SOD*S*UNIB*6*13*_*_", + "name": "PARLY STATION 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114096, + 48.828905 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB6121", + "ref": "FR*SOD*S*UNIB*6*12*_*_", + "name": "PARLY STATION 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.127841, + 43.663607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB441", + "ref": "FR*SOD*S*UNIB*4*4*_*_", + "name": "POLYGONE RIVIERA P3", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.127841, + 43.663607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB431", + "ref": "FR*SOD*S*UNIB*4*3*_*_", + "name": "POLYGONE RIVIERA P3", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114096, + 48.828905 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB6112", + "ref": "FR*SOD*S*UNIB*6*11*_*_", + "name": "PARLY STATION 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.678767, + 48.082481 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB211", + "ref": "FR*SOD*S*UNIB*2*1*_*_", + "name": "RENNES ALMA - PKG VERT", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.127841, + 43.663607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB121", + "ref": "FR*SOD*S*UNIB*1*2*_*_", + "name": "POLYGONE RIVIERA P1", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.127841, + 43.663607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB141", + "ref": "FR*SOD*S*UNIB*1*4*_*_", + "name": "POLYGONE RIVIERA P1", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.127841, + 43.663607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB131", + "ref": "FR*SOD*S*UNIB*1*3*_*_", + "name": "POLYGONE RIVIERA P1", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.127841, + 43.663607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB151", + "ref": "FR*SOD*S*UNIB*1*5*_*_", + "name": "POLYGONE RIVIERA P1", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.678767, + 48.082481 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB231", + "ref": "FR*SOD*S*UNIB*2*3*_*_", + "name": "RENNES ALMA - PKG VERT", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.678767, + 48.082481 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB232", + "ref": "FR*SOD*S*UNIB*2*3*_*_", + "name": "RENNES ALMA - PKG VERT", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.678767, + 48.082481 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB242", + "ref": "FR*SOD*S*UNIB*2*4*_*_", + "name": "RENNES ALMA - PKG VERT", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.678767, + 48.082481 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB222", + "ref": "FR*SOD*S*UNIB*2*2*_*_", + "name": "RENNES ALMA - PKG VERT", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.127841, + 43.663607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB461", + "ref": "FR*SOD*S*UNIB*4*6*_*_", + "name": "POLYGONE RIVIERA P3", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.678767, + 48.082481 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB212", + "ref": "FR*SOD*S*UNIB*2*1*_*_", + "name": "RENNES ALMA - PKG VERT", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.678767, + 48.082481 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB221", + "ref": "FR*SOD*S*UNIB*2*2*_*_", + "name": "RENNES ALMA - PKG VERT", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.678767, + 48.082481 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB241", + "ref": "FR*SOD*S*UNIB*2*4*_*_", + "name": "RENNES ALMA - PKG VERT", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67655, + 48.082588 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB312", + "ref": "FR*SOD*S*UNIB*3*1*_*_", + "name": "RENNES ALMA - PKG ORANGE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67655, + 48.082588 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB321", + "ref": "FR*SOD*S*UNIB*3*2*_*_", + "name": "RENNES ALMA - PKG ORANGE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67655, + 48.082588 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB322", + "ref": "FR*SOD*S*UNIB*3*2*_*_", + "name": "RENNES ALMA - PKG ORANGE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67655, + 48.082588 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB311", + "ref": "FR*SOD*S*UNIB*3*1*_*_", + "name": "RENNES ALMA - PKG ORANGE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114096, + 48.828905 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB6101", + "ref": "FR*SOD*S*UNIB*6*10*_*_", + "name": "PARLY STATION 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114096, + 48.828905 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB6102", + "ref": "FR*SOD*S*UNIB*6*10*_*_", + "name": "PARLY STATION 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.816392, + 45.740684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1271", + "ref": "FR*SOD*S*UNIB*12*7*_*_", + "name": "CONFLUENCE - PKG N+1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.815993, + 45.74089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1022", + "ref": "FR*SOD*S*UNIB*10*2*_*_", + "name": "CONFLUENCE - PKG N-1", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856448, + 45.762271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB921", + "ref": "FR*SOD*S*UNIB*9*2*_*_", + "name": "LYON PART DIEU 2", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856448, + 45.762271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB931", + "ref": "FR*SOD*S*UNIB*9*3*_*_", + "name": "LYON PART DIEU 2", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.815993, + 45.74089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1081", + "ref": "FR*SOD*S*UNIB*10*8*_*_", + "name": "CONFLUENCE - PKG N-1", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.815993, + 45.74089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1032", + "ref": "FR*SOD*S*UNIB*10*3*_*_", + "name": "CONFLUENCE - PKG N-1", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.815993, + 45.74089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1012", + "ref": "FR*SOD*S*UNIB*10*1*_*_", + "name": "CONFLUENCE - PKG N-1", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.815993, + 45.74089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1071", + "ref": "FR*SOD*S*UNIB*10*7*_*_", + "name": "CONFLUENCE - PKG N-1", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.815993, + 45.74089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1021", + "ref": "FR*SOD*S*UNIB*10*2*_*_", + "name": "CONFLUENCE - PKG N-1", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.815993, + 45.74089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1031", + "ref": "FR*SOD*S*UNIB*10*3*_*_", + "name": "CONFLUENCE - PKG N-1", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856448, + 45.762271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB951", + "ref": "FR*SOD*S*UNIB*9*5*_*_", + "name": "LYON PART DIEU 2", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.815993, + 45.74089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1011", + "ref": "FR*SOD*S*UNIB*10*1*_*_", + "name": "CONFLUENCE - PKG N-1", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.815993, + 45.74089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1091", + "ref": "FR*SOD*S*UNIB*10*9*_*_", + "name": "CONFLUENCE - PKG N-1", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.816054, + 45.740844 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1121", + "ref": "FR*SOD*S*UNIB*11*2*_*_", + "name": "CONFLUENCE - PKG N0M", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.816392, + 45.740684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB12101", + "ref": "FR*SOD*S*UNIB*12*10*_*_", + "name": "CONFLUENCE - PKG N+1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.816392, + 45.740684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1291", + "ref": "FR*SOD*S*UNIB*12*9*_*_", + "name": "CONFLUENCE - PKG N+1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.816392, + 45.740684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1281", + "ref": "FR*SOD*S*UNIB*12*8*_*_", + "name": "CONFLUENCE - PKG N+1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.816392, + 45.740684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB12111", + "ref": "FR*SOD*S*UNIB*12*11*_*_", + "name": "CONFLUENCE - PKG N+1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856448, + 45.762271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB941", + "ref": "FR*SOD*S*UNIB*9*4*_*_", + "name": "LYON PART DIEU 2", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856448, + 45.762271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB971", + "ref": "FR*SOD*S*UNIB*9*7*_*_", + "name": "LYON PART DIEU 2", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114096, + 48.828905 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB6132", + "ref": "FR*SOD*S*UNIB*6*13*_*_", + "name": "PARLY STATION 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856386, + 45.761895 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB831", + "ref": "FR*SOD*S*UNIB*8*3*_*_", + "name": "LYON PART DIEU 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114096, + 48.828905 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB6142", + "ref": "FR*SOD*S*UNIB*6*14*_*_", + "name": "PARLY STATION 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114096, + 48.828905 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB6141", + "ref": "FR*SOD*S*UNIB*6*14*_*_", + "name": "PARLY STATION 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856386, + 45.761895 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB891", + "ref": "FR*SOD*S*UNIB*8*9*_*_", + "name": "LYON PART DIEU 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856386, + 45.761895 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB811", + "ref": "FR*SOD*S*UNIB*8*1*_*_", + "name": "LYON PART DIEU 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856386, + 45.761895 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB851", + "ref": "FR*SOD*S*UNIB*8*5*_*_", + "name": "LYON PART DIEU 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856386, + 45.761895 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB821", + "ref": "FR*SOD*S*UNIB*8*2*_*_", + "name": "LYON PART DIEU 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856386, + 45.761895 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB871", + "ref": "FR*SOD*S*UNIB*8*7*_*_", + "name": "LYON PART DIEU 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856386, + 45.761895 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB881", + "ref": "FR*SOD*S*UNIB*8*8*_*_", + "name": "LYON PART DIEU 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856448, + 45.762271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB9111", + "ref": "FR*SOD*S*UNIB*9*11*_*_", + "name": "LYON PART DIEU 2", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856386, + 45.761895 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB841", + "ref": "FR*SOD*S*UNIB*8*4*_*_", + "name": "LYON PART DIEU 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856386, + 45.761895 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB8101", + "ref": "FR*SOD*S*UNIB*8*10*_*_", + "name": "LYON PART DIEU 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856386, + 45.761895 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB861", + "ref": "FR*SOD*S*UNIB*8*6*_*_", + "name": "LYON PART DIEU 1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856448, + 45.762271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB911", + "ref": "FR*SOD*S*UNIB*9*1*_*_", + "name": "LYON PART DIEU 2", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856448, + 45.762271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB991", + "ref": "FR*SOD*S*UNIB*9*9*_*_", + "name": "LYON PART DIEU 2", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856448, + 45.762271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB961", + "ref": "FR*SOD*S*UNIB*9*6*_*_", + "name": "LYON PART DIEU 2", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856448, + 45.762271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB981", + "ref": "FR*SOD*S*UNIB*9*8*_*_", + "name": "LYON PART DIEU 2", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218646, + 48.780477 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2723", + "ref": "FR*SOD*S*UNIB*27*2*_*_", + "name": "VELIZY 2 - PKG P11 NIVEAU M", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.547032, + 48.616655 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB1842", + "ref": "FR*SOD*S*UNIB*18*4*_*_", + "name": "CARRE SENART", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218646, + 48.780477 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2722", + "ref": "FR*SOD*S*UNIB*27*2*_*_", + "name": "VELIZY 2 - PKG P11 NIVEAU M", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322007, + 48.838574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB32101", + "ref": "FR*SOD*S*UNIB*32*10*_*_", + "name": "GAITE - SS02-2", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB34151", + "ref": "FR*SOD*S*UNIB*34*15*_*_", + "name": "GAITE - SS04", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB34131", + "ref": "FR*SOD*S*UNIB*34*13*_*_", + "name": "GAITE - SS04", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB34181", + "ref": "FR*SOD*S*UNIB*34*18*_*_", + "name": "GAITE - SS04", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB34141", + "ref": "FR*SOD*S*UNIB*34*14*_*_", + "name": "GAITE - SS04", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB34111", + "ref": "FR*SOD*S*UNIB*34*11*_*_", + "name": "GAITE - SS04", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3391", + "ref": "FR*SOD*S*UNIB*33*9*_*_", + "name": "GAITE - SS03", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB33111", + "ref": "FR*SOD*S*UNIB*33*11*_*_", + "name": "GAITE - SS03", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB33101", + "ref": "FR*SOD*S*UNIB*33*10*_*_", + "name": "GAITE - SS03", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3371", + "ref": "FR*SOD*S*UNIB*33*7*_*_", + "name": "GAITE - SS03", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB33121", + "ref": "FR*SOD*S*UNIB*33*12*_*_", + "name": "GAITE - SS03", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3351", + "ref": "FR*SOD*S*UNIB*33*5*_*_", + "name": "GAITE - SS03", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3321", + "ref": "FR*SOD*S*UNIB*33*2*_*_", + "name": "GAITE - SS03", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB33131", + "ref": "FR*SOD*S*UNIB*33*13*_*_", + "name": "GAITE - SS03", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3341", + "ref": "FR*SOD*S*UNIB*33*4*_*_", + "name": "GAITE - SS03", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3381", + "ref": "FR*SOD*S*UNIB*33*8*_*_", + "name": "GAITE - SS03", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3361", + "ref": "FR*SOD*S*UNIB*33*6*_*_", + "name": "GAITE - SS03", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB33151", + "ref": "FR*SOD*S*UNIB*33*15*_*_", + "name": "GAITE - SS03", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3331", + "ref": "FR*SOD*S*UNIB*33*3*_*_", + "name": "GAITE - SS03", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB33141", + "ref": "FR*SOD*S*UNIB*33*14*_*_", + "name": "GAITE - SS03", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322007, + 48.838574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3271", + "ref": "FR*SOD*S*UNIB*32*7*_*_", + "name": "GAITE - SS02-2", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322007, + 48.838574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB32111", + "ref": "FR*SOD*S*UNIB*32*11*_*_", + "name": "GAITE - SS02-2", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322007, + 48.838574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3251", + "ref": "FR*SOD*S*UNIB*32*5*_*_", + "name": "GAITE - SS02-2", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322007, + 48.838574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB32121", + "ref": "FR*SOD*S*UNIB*32*12*_*_", + "name": "GAITE - SS02-2", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322007, + 48.838574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3211", + "ref": "FR*SOD*S*UNIB*32*1*_*_", + "name": "GAITE - SS02-2", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322007, + 48.838574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3221", + "ref": "FR*SOD*S*UNIB*32*2*_*_", + "name": "GAITE - SS02-2", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB34171", + "ref": "FR*SOD*S*UNIB*34*17*_*_", + "name": "GAITE - SS04", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB34101", + "ref": "FR*SOD*S*UNIB*34*10*_*_", + "name": "GAITE - SS04", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB34121", + "ref": "FR*SOD*S*UNIB*34*12*_*_", + "name": "GAITE - SS04", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB36191", + "ref": "FR*SOD*S*UNIB*36*19*_*_", + "name": "GAITE - SS06", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218646, + 48.780477 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2752", + "ref": "FR*SOD*S*UNIB*27*5*_*_", + "name": "VELIZY 2 - PKG P11 NIVEAU M", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3681", + "ref": "FR*SOD*S*UNIB*36*8*_*_", + "name": "GAITE - SS06", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3691", + "ref": "FR*SOD*S*UNIB*36*9*_*_", + "name": "GAITE - SS06", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB36141", + "ref": "FR*SOD*S*UNIB*36*14*_*_", + "name": "GAITE - SS06", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB36161", + "ref": "FR*SOD*S*UNIB*36*16*_*_", + "name": "GAITE - SS06", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB36121", + "ref": "FR*SOD*S*UNIB*36*12*_*_", + "name": "GAITE - SS06", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB36171", + "ref": "FR*SOD*S*UNIB*36*17*_*_", + "name": "GAITE - SS06", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB36131", + "ref": "FR*SOD*S*UNIB*36*13*_*_", + "name": "GAITE - SS06", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB36151", + "ref": "FR*SOD*S*UNIB*36*15*_*_", + "name": "GAITE - SS06", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB36181", + "ref": "FR*SOD*S*UNIB*36*18*_*_", + "name": "GAITE - SS06", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB36111", + "ref": "FR*SOD*S*UNIB*36*11*_*_", + "name": "GAITE - SS06", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB35201", + "ref": "FR*SOD*S*UNIB*35*20*_*_", + "name": "GAITE - SS05", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB35251", + "ref": "FR*SOD*S*UNIB*35*25*_*_", + "name": "GAITE - SS05", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB35271", + "ref": "FR*SOD*S*UNIB*35*27*_*_", + "name": "GAITE - SS05", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB35281", + "ref": "FR*SOD*S*UNIB*35*28*_*_", + "name": "GAITE - SS05", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB35231", + "ref": "FR*SOD*S*UNIB*35*23*_*_", + "name": "GAITE - SS05", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB35241", + "ref": "FR*SOD*S*UNIB*35*24*_*_", + "name": "GAITE - SS05", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB35261", + "ref": "FR*SOD*S*UNIB*35*26*_*_", + "name": "GAITE - SS05", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB35181", + "ref": "FR*SOD*S*UNIB*35*18*_*_", + "name": "GAITE - SS05", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB35191", + "ref": "FR*SOD*S*UNIB*35*19*_*_", + "name": "GAITE - SS05", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB35171", + "ref": "FR*SOD*S*UNIB*35*17*_*_", + "name": "GAITE - SS05", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB35211", + "ref": "FR*SOD*S*UNIB*35*21*_*_", + "name": "GAITE - SS05", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB35151", + "ref": "FR*SOD*S*UNIB*35*15*_*_", + "name": "GAITE - SS05", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB35221", + "ref": "FR*SOD*S*UNIB*35*22*_*_", + "name": "GAITE - SS05", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322007, + 48.838574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3241", + "ref": "FR*SOD*S*UNIB*32*4*_*_", + "name": "GAITE - SS02-2", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB34161", + "ref": "FR*SOD*S*UNIB*34*16*_*_", + "name": "GAITE - SS04", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3022", + "ref": "FR*SOD*S*UNIB*30*2*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.346176, + 48.861996 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2941", + "ref": "FR*SOD*S*UNIB*29*4*_*_", + "name": "LES HALLES - PARKING UNIBAIL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3041", + "ref": "FR*SOD*S*UNIB*30*4*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3011", + "ref": "FR*SOD*S*UNIB*30*1*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3021", + "ref": "FR*SOD*S*UNIB*30*2*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3042", + "ref": "FR*SOD*S*UNIB*30*4*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3012", + "ref": "FR*SOD*S*UNIB*30*1*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3072", + "ref": "FR*SOD*S*UNIB*30*7*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3032", + "ref": "FR*SOD*S*UNIB*30*3*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3052", + "ref": "FR*SOD*S*UNIB*30*5*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3081", + "ref": "FR*SOD*S*UNIB*30*8*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3092", + "ref": "FR*SOD*S*UNIB*30*9*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.346176, + 48.861996 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2931", + "ref": "FR*SOD*S*UNIB*29*3*_*_", + "name": "LES HALLES - PARKING UNIBAIL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.346176, + 48.861996 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2911", + "ref": "FR*SOD*S*UNIB*29*1*_*_", + "name": "LES HALLES - PARKING UNIBAIL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3062", + "ref": "FR*SOD*S*UNIB*30*6*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.346176, + 48.861996 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2921", + "ref": "FR*SOD*S*UNIB*29*2*_*_", + "name": "LES HALLES - PARKING UNIBAIL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218646, + 48.780477 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2732", + "ref": "FR*SOD*S*UNIB*27*3*_*_", + "name": "VELIZY 2 - PKG P11 NIVEAU M", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218646, + 48.780477 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2762", + "ref": "FR*SOD*S*UNIB*27*6*_*_", + "name": "VELIZY 2 - PKG P11 NIVEAU M", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218646, + 48.780477 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2731", + "ref": "FR*SOD*S*UNIB*27*3*_*_", + "name": "VELIZY 2 - PKG P11 NIVEAU M", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218646, + 48.780477 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2724", + "ref": "FR*SOD*S*UNIB*27*2*_*_", + "name": "VELIZY 2 - PKG P11 NIVEAU M", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322007, + 48.838574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3291", + "ref": "FR*SOD*S*UNIB*32*9*_*_", + "name": "GAITE - SS02-2", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218646, + 48.780477 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2714", + "ref": "FR*SOD*S*UNIB*27*1*_*_", + "name": "VELIZY 2 - PKG P11 NIVEAU M", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218646, + 48.780477 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2751", + "ref": "FR*SOD*S*UNIB*27*5*_*_", + "name": "VELIZY 2 - PKG P11 NIVEAU M", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218646, + 48.780477 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2721", + "ref": "FR*SOD*S*UNIB*27*2*_*_", + "name": "VELIZY 2 - PKG P11 NIVEAU M", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218646, + 48.780477 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2741", + "ref": "FR*SOD*S*UNIB*27*4*_*_", + "name": "VELIZY 2 - PKG P11 NIVEAU M", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218646, + 48.780477 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2742", + "ref": "FR*SOD*S*UNIB*27*4*_*_", + "name": "VELIZY 2 - PKG P11 NIVEAU M", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB30102", + "ref": "FR*SOD*S*UNIB*30*10*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3082", + "ref": "FR*SOD*S*UNIB*30*8*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3061", + "ref": "FR*SOD*S*UNIB*30*6*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB31121", + "ref": "FR*SOD*S*UNIB*31*12*_*_", + "name": "GAITE - SS02-1", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322007, + 48.838574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB32131", + "ref": "FR*SOD*S*UNIB*32*13*_*_", + "name": "GAITE - SS02-2", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322007, + 48.838574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3261", + "ref": "FR*SOD*S*UNIB*32*6*_*_", + "name": "GAITE - SS02-2", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322007, + 48.838574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3231", + "ref": "FR*SOD*S*UNIB*32*3*_*_", + "name": "GAITE - SS02-2", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322007, + 48.838574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3281", + "ref": "FR*SOD*S*UNIB*32*8*_*_", + "name": "GAITE - SS02-2", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3181", + "ref": "FR*SOD*S*UNIB*31*8*_*_", + "name": "GAITE - SS02-1", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3191", + "ref": "FR*SOD*S*UNIB*31*9*_*_", + "name": "GAITE - SS02-1", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3131", + "ref": "FR*SOD*S*UNIB*31*3*_*_", + "name": "GAITE - SS02-1", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3161", + "ref": "FR*SOD*S*UNIB*31*6*_*_", + "name": "GAITE - SS02-1", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3141", + "ref": "FR*SOD*S*UNIB*31*4*_*_", + "name": "GAITE - SS02-1", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB30101", + "ref": "FR*SOD*S*UNIB*30*10*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3151", + "ref": "FR*SOD*S*UNIB*31*5*_*_", + "name": "GAITE - SS02-1", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB31131", + "ref": "FR*SOD*S*UNIB*31*13*_*_", + "name": "GAITE - SS02-1", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB31111", + "ref": "FR*SOD*S*UNIB*31*11*_*_", + "name": "GAITE - SS02-1", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3111", + "ref": "FR*SOD*S*UNIB*31*1*_*_", + "name": "GAITE - SS02-1", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3121", + "ref": "FR*SOD*S*UNIB*31*2*_*_", + "name": "GAITE - SS02-1", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB31101", + "ref": "FR*SOD*S*UNIB*31*10*_*_", + "name": "GAITE - SS02-1", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3051", + "ref": "FR*SOD*S*UNIB*30*5*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3071", + "ref": "FR*SOD*S*UNIB*30*7*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3031", + "ref": "FR*SOD*S*UNIB*30*3*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218646, + 48.780477 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB2712", + "ref": "FR*SOD*S*UNIB*27*1*_*_", + "name": "VELIZY 2 - PKG P11 NIVEAU M", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB30111", + "ref": "FR*SOD*S*UNIB*30*11*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322582, + 48.837734 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3171", + "ref": "FR*SOD*S*UNIB*31*7*_*_", + "name": "GAITE - SS02-1", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB3091", + "ref": "FR*SOD*S*UNIB*30*9*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref:EU:EVSE": "FRURWPUNIB30112", + "ref": "FR*SOD*S*UNIB*30*11*_*_", + "name": "ROSNY", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR452", + "ref": "FR*SOD*S*LVPR*4*5*_*_", + "name": "PARKING SO OUEST - CANTON 34", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297554, + 48.892754 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR322", + "ref": "FR*SOD*S*LVPR*3*2*_*_", + "name": "PARKING SO OUEST - CANTON 33", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR411", + "ref": "FR*SOD*S*LVPR*4*1*_*_", + "name": "PARKING SO OUEST - CANTON 34", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR472", + "ref": "FR*SOD*S*LVPR*4*7*_*_", + "name": "PARKING SO OUEST - CANTON 34", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297554, + 48.892754 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR381", + "ref": "FR*SOD*S*LVPR*3*8*_*_", + "name": "PARKING SO OUEST - CANTON 33", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR422", + "ref": "FR*SOD*S*LVPR*4*2*_*_", + "name": "PARKING SO OUEST - CANTON 34", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR421", + "ref": "FR*SOD*S*LVPR*4*2*_*_", + "name": "PARKING SO OUEST - CANTON 34", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR431", + "ref": "FR*SOD*S*LVPR*4*3*_*_", + "name": "PARKING SO OUEST - CANTON 34", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR462", + "ref": "FR*SOD*S*LVPR*4*6*_*_", + "name": "PARKING SO OUEST - CANTON 34", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297554, + 48.892754 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR321", + "ref": "FR*SOD*S*LVPR*3*2*_*_", + "name": "PARKING SO OUEST - CANTON 33", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29821, + 48.893001 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR672", + "ref": "FR*SOD*S*LVPR*6*7*_*_", + "name": "PARKING SO OUEST - CANTON 35", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297554, + 48.892754 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR382", + "ref": "FR*SOD*S*LVPR*3*8*_*_", + "name": "PARKING SO OUEST - CANTON 33", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297554, + 48.892754 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR371", + "ref": "FR*SOD*S*LVPR*3*7*_*_", + "name": "PARKING SO OUEST - CANTON 33", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297554, + 48.892754 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR372", + "ref": "FR*SOD*S*LVPR*3*7*_*_", + "name": "PARKING SO OUEST - CANTON 33", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297554, + 48.892754 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR332", + "ref": "FR*SOD*S*LVPR*3*3*_*_", + "name": "PARKING SO OUEST - CANTON 33", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297554, + 48.892754 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR331", + "ref": "FR*SOD*S*LVPR*3*3*_*_", + "name": "PARKING SO OUEST - CANTON 33", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297554, + 48.892754 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR311", + "ref": "FR*SOD*S*LVPR*3*1*_*_", + "name": "PARKING SO OUEST - CANTON 33", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297554, + 48.892754 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR312", + "ref": "FR*SOD*S*LVPR*3*1*_*_", + "name": "PARKING SO OUEST - CANTON 33", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR251", + "ref": "FR*SOD*S*LVPR*2*5*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR241", + "ref": "FR*SOD*S*LVPR*2*4*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR492", + "ref": "FR*SOD*S*LVPR*4*9*_*_", + "name": "PARKING SO OUEST - CANTON 34", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR211", + "ref": "FR*SOD*S*LVPR*2*1*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR482", + "ref": "FR*SOD*S*LVPR*4*8*_*_", + "name": "PARKING SO OUEST - CANTON 34", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29821, + 48.893001 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR661", + "ref": "FR*SOD*S*LVPR*6*6*_*_", + "name": "PARKING SO OUEST - CANTON 35", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR441", + "ref": "FR*SOD*S*LVPR*4*4*_*_", + "name": "PARKING SO OUEST - CANTON 34", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297241, + 48.893006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR532", + "ref": "FR*SOD*S*LVPR*5*3*_*_", + "name": "PARKING SO OUEST - CANTON 31", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2121", + "ref": "FR*SOD*S*LVPR*2*12*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29821, + 48.893001 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR671", + "ref": "FR*SOD*S*LVPR*6*7*_*_", + "name": "PARKING SO OUEST - CANTON 35", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29821, + 48.893001 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR652", + "ref": "FR*SOD*S*LVPR*6*5*_*_", + "name": "PARKING SO OUEST - CANTON 35", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29821, + 48.893001 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR651", + "ref": "FR*SOD*S*LVPR*6*5*_*_", + "name": "PARKING SO OUEST - CANTON 35", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29821, + 48.893001 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR682", + "ref": "FR*SOD*S*LVPR*6*8*_*_", + "name": "PARKING SO OUEST - CANTON 35", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29821, + 48.893001 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR681", + "ref": "FR*SOD*S*LVPR*6*8*_*_", + "name": "PARKING SO OUEST - CANTON 35", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29821, + 48.893001 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR662", + "ref": "FR*SOD*S*LVPR*6*6*_*_", + "name": "PARKING SO OUEST - CANTON 35", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297241, + 48.893006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR521", + "ref": "FR*SOD*S*LVPR*5*2*_*_", + "name": "PARKING SO OUEST - CANTON 31", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297241, + 48.893006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR522", + "ref": "FR*SOD*S*LVPR*5*2*_*_", + "name": "PARKING SO OUEST - CANTON 31", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297241, + 48.893006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR541", + "ref": "FR*SOD*S*LVPR*5*4*_*_", + "name": "PARKING SO OUEST - CANTON 31", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR491", + "ref": "FR*SOD*S*LVPR*4*9*_*_", + "name": "PARKING SO OUEST - CANTON 34", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297241, + 48.893006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR511", + "ref": "FR*SOD*S*LVPR*5*1*_*_", + "name": "PARKING SO OUEST - CANTON 31", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297241, + 48.893006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR542", + "ref": "FR*SOD*S*LVPR*5*4*_*_", + "name": "PARKING SO OUEST - CANTON 31", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297241, + 48.893006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR531", + "ref": "FR*SOD*S*LVPR*5*3*_*_", + "name": "PARKING SO OUEST - CANTON 31", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297241, + 48.893006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR512", + "ref": "FR*SOD*S*LVPR*5*1*_*_", + "name": "PARKING SO OUEST - CANTON 31", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR461", + "ref": "FR*SOD*S*LVPR*4*6*_*_", + "name": "PARKING SO OUEST - CANTON 34", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR471", + "ref": "FR*SOD*S*LVPR*4*7*_*_", + "name": "PARKING SO OUEST - CANTON 34", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR441", + "ref": "FR*SOD*S*LVPR*4*4*_*_", + "name": "PARKING SO OUEST - CANTON 34", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR451", + "ref": "FR*SOD*S*LVPR*4*5*_*_", + "name": "PARKING SO OUEST - CANTON 34", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR481", + "ref": "FR*SOD*S*LVPR*4*8*_*_", + "name": "PARKING SO OUEST - CANTON 34", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2171", + "ref": "FR*SOD*S*LVPR*2*17*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2162", + "ref": "FR*SOD*S*LVPR*2*16*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2202", + "ref": "FR*SOD*S*LVPR*2*20*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR261", + "ref": "FR*SOD*S*LVPR*2*6*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR262", + "ref": "FR*SOD*S*LVPR*2*6*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2161", + "ref": "FR*SOD*S*LVPR*2*16*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR272", + "ref": "FR*SOD*S*LVPR*2*7*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2132", + "ref": "FR*SOD*S*LVPR*2*13*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2101", + "ref": "FR*SOD*S*LVPR*2*10*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR291", + "ref": "FR*SOD*S*LVPR*2*9*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2151", + "ref": "FR*SOD*S*LVPR*2*15*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2192", + "ref": "FR*SOD*S*LVPR*2*19*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR242", + "ref": "FR*SOD*S*LVPR*2*4*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR281", + "ref": "FR*SOD*S*LVPR*2*8*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288618, + 48.897964 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR131", + "ref": "FR*SOD*S*LVPR*1*3*_*_", + "name": "JULES GUESDE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288618, + 48.897964 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR112", + "ref": "FR*SOD*S*LVPR*1*1*_*_", + "name": "JULES GUESDE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288618, + 48.897964 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR121", + "ref": "FR*SOD*S*LVPR*1*2*_*_", + "name": "JULES GUESDE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288618, + 48.897964 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR111", + "ref": "FR*SOD*S*LVPR*1*1*_*_", + "name": "JULES GUESDE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288618, + 48.897964 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR122", + "ref": "FR*SOD*S*LVPR*1*2*_*_", + "name": "JULES GUESDE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288618, + 48.897964 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR142", + "ref": "FR*SOD*S*LVPR*1*4*_*_", + "name": "JULES GUESDE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288618, + 48.897964 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR141", + "ref": "FR*SOD*S*LVPR*1*4*_*_", + "name": "JULES GUESDE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2201", + "ref": "FR*SOD*S*LVPR*2*20*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2182", + "ref": "FR*SOD*S*LVPR*2*18*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288618, + 48.897964 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR132", + "ref": "FR*SOD*S*LVPR*1*3*_*_", + "name": "JULES GUESDE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR221", + "ref": "FR*SOD*S*LVPR*2*2*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2141", + "ref": "FR*SOD*S*LVPR*2*14*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR231", + "ref": "FR*SOD*S*LVPR*2*3*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2131", + "ref": "FR*SOD*S*LVPR*2*13*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2111", + "ref": "FR*SOD*S*LVPR*2*11*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR271", + "ref": "FR*SOD*S*LVPR*2*7*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR222", + "ref": "FR*SOD*S*LVPR*2*2*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR212", + "ref": "FR*SOD*S*LVPR*2*1*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2102", + "ref": "FR*SOD*S*LVPR*2*10*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2191", + "ref": "FR*SOD*S*LVPR*2*19*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR282", + "ref": "FR*SOD*S*LVPR*2*8*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR252", + "ref": "FR*SOD*S*LVPR*2*5*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2142", + "ref": "FR*SOD*S*LVPR*2*14*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2172", + "ref": "FR*SOD*S*LVPR*2*17*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2152", + "ref": "FR*SOD*S*LVPR*2*15*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2122", + "ref": "FR*SOD*S*LVPR*2*12*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2181", + "ref": "FR*SOD*S*LVPR*2*18*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR2112", + "ref": "FR*SOD*S*LVPR*2*11*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR292", + "ref": "FR*SOD*S*LVPR*2*9*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref:EU:EVSE": "FROTHPLVPR232", + "ref": "FR*SOD*S*LVPR*2*3*_*_", + "name": "PARKING - GARE", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.032646, + 45.932699 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871111", + "ref": "FR*SOD*S*MB87*11*1*_*_", + "name": "ORADOUR SUR GLANE - PLACE DE LEUROPE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.032646, + 45.932699 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871112", + "ref": "FR*SOD*S*MB87*11*1*_*_", + "name": "ORADOUR SUR GLANE - PLACE DE LEUROPE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.818752, + 45.82435 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871211", + "ref": "FR*SOD*S*MB87*12*1*_*_", + "name": "ROCHECHOUART - PARKING DU MOULIN DU PUY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.818752, + 45.82435 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871212", + "ref": "FR*SOD*S*MB87*12*1*_*_", + "name": "ROCHECHOUART - PARKING DU MOULIN DU PUY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.493325, + 45.838198 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871413", + "ref": "FR*SOD*S*MB87*14*1*_*_", + "name": "SAINT LEONARD DE NOBLAT - PLACE DU CHAMPS DE MARS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.371627, + 46.107802 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB873911", + "ref": "FR*SOD*S*MB87*39*1*_*_", + "name": "BESSINES-SUR-GARTEMPE - RUE DES GRANDS JARDINS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.371627, + 46.107802 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB873913", + "ref": "FR*SOD*S*MB87*39*1*_*_", + "name": "BESSINES-SUR-GARTEMPE - RUE DES GRANDS JARDINS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.171203, + 45.959326 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB873311", + "ref": "FR*SOD*S*MB87*33*1*_*_", + "name": "SAINT-JOUVENT - AIRE DE COVOITURAGE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.957497, + 45.77086 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB873411", + "ref": "FR*SOD*S*MB87*34*1*_*_", + "name": "SAINT-LAURENT-SUR-GORRE - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.957497, + 45.77086 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB873421", + "ref": "FR*SOD*S*MB87*34*2*_*_", + "name": "SAINT-LAURENT-SUR-GORRE - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.171203, + 45.959326 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB873313", + "ref": "FR*SOD*S*MB87*33*1*_*_", + "name": "SAINT-JOUVENT - AIRE DE COVOITURAGE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.171203, + 45.959326 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB873312", + "ref": "FR*SOD*S*MB87*33*1*_*_", + "name": "SAINT-JOUVENT - AIRE DE COVOITURAGE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.035591, + 45.895108 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB873212", + "ref": "FR*SOD*S*MB87*32*1*_*_", + "name": "SAINT-VICTURNIEN - CROIX DE LAVERGNE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.035591, + 45.895108 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB873213", + "ref": "FR*SOD*S*MB87*32*1*_*_", + "name": "SAINT-VICTURNIEN - CROIX DE LAVERGNE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.205753, + 45.518624 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871012", + "ref": "FR*SOD*S*MB87*10*1*_*_", + "name": "SAINT YRIEIX LA PERCHE - GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.035591, + 45.895108 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB873211", + "ref": "FR*SOD*S*MB87*32*1*_*_", + "name": "SAINT-VICTURNIEN - CROIX DE LAVERGNE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.205753, + 45.518624 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871011", + "ref": "FR*SOD*S*MB87*10*1*_*_", + "name": "SAINT YRIEIX LA PERCHE - GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.145703, + 45.79672 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87511", + "ref": "FR*SOD*S*MB87*5*1*_*_", + "name": "AIXE SUR VIENNE - GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.202405, + 45.509842 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87911", + "ref": "FR*SOD*S*MB87*9*1*_*_", + "name": "SAINT YRIEIX LA PERCHE - PLACE DE LA NATION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.137518, + 45.797558 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87412", + "ref": "FR*SOD*S*MB87*4*1*_*_", + "name": "AIXE SUR VIENNE - PLACE GUILLAUME LEMAISTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919616, + 46.108853 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB873112", + "ref": "FR*SOD*S*MB87*31*1*_*_", + "name": "VAL-DISSOIRE - AVENUE DE BELLAC", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.605933, + 45.713124 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87211", + "ref": "FR*SOD*S*MB87*2*1*_*_", + "name": "CHATEAUNEUF LA FORET - PLACE DU 8 MAI 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.605933, + 45.713124 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87212", + "ref": "FR*SOD*S*MB87*2*1*_*_", + "name": "CHATEAUNEUF LA FORET - PLACE DU 8 MAI 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.077636, + 46.217588 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87312", + "ref": "FR*SOD*S*MB87*3*1*_*_", + "name": "LE DORAT - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.077636, + 46.217588 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87311", + "ref": "FR*SOD*S*MB87*3*1*_*_", + "name": "LE DORAT - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.137518, + 45.797558 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87411", + "ref": "FR*SOD*S*MB87*4*1*_*_", + "name": "AIXE SUR VIENNE - PLACE GUILLAUME LEMAISTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.145703, + 45.79672 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87512", + "ref": "FR*SOD*S*MB87*5*1*_*_", + "name": "AIXE SUR VIENNE - GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.202405, + 45.509842 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87912", + "ref": "FR*SOD*S*MB87*9*1*_*_", + "name": "SAINT YRIEIX LA PERCHE - PLACE DE LA NATION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.400478, + 45.95831 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87611", + "ref": "FR*SOD*S*MB87*6*1*_*_", + "name": "AMBAZAC - PLACE DU 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.400478, + 45.95831 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87612", + "ref": "FR*SOD*S*MB87*6*1*_*_", + "name": "AMBAZAC - PLACE DU 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.406172, + 45.953075 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87711", + "ref": "FR*SOD*S*MB87*7*1*_*_", + "name": "AMBAZAC - GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.406172, + 45.953075 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87712", + "ref": "FR*SOD*S*MB87*7*1*_*_", + "name": "AMBAZAC - GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.369671, + 46.109403 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87812", + "ref": "FR*SOD*S*MB87*8*1*_*_", + "name": "BESSINES SUR GARTEMPE - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.369671, + 46.109403 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87811", + "ref": "FR*SOD*S*MB87*8*1*_*_", + "name": "BESSINES SUR GARTEMPE - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919616, + 46.108853 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB873111", + "ref": "FR*SOD*S*MB87*31*1*_*_", + "name": "VAL-DISSOIRE - AVENUE DE BELLAC", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.204664, + 45.778378 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872111", + "ref": "FR*SOD*S*MB87*21*1*_*_", + "name": "BOSMIE LAIGUILLE - RUE JEAN FERRAT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919616, + 46.108853 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB873113", + "ref": "FR*SOD*S*MB87*31*1*_*_", + "name": "VAL-DISSOIRE - AVENUE DE BELLAC", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.081701, + 46.131688 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB873013", + "ref": "FR*SOD*S*MB87*30*1*_*_", + "name": "BLANZAC - ETANG DE ROUFFIGNAC", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.480057, + 46.048822 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872011", + "ref": "FR*SOD*S*MB87*20*1*_*_", + "name": "SAINT SULPICE LAURIERE - PLACE DU 8 MAI 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.480057, + 46.048822 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872012", + "ref": "FR*SOD*S*MB87*20*1*_*_", + "name": "SAINT SULPICE LAURIERE - PLACE DU 8 MAI 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431829, + 45.749293 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871911", + "ref": "FR*SOD*S*MB87*19*1*_*_", + "name": "SAINT PAUL - PARKING DE LA SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431829, + 45.749293 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871912", + "ref": "FR*SOD*S*MB87*19*1*_*_", + "name": "SAINT PAUL - PARKING DE LA SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.585948, + 45.628803 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871812", + "ref": "FR*SOD*S*MB87*18*1*_*_", + "name": "LA CROISILLE SUR BRIANCE - PARVIS COLONEL BELTRAME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.585948, + 45.628803 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871811", + "ref": "FR*SOD*S*MB87*18*1*_*_", + "name": "LA CROISILLE SUR BRIANCE - PARVIS COLONEL BELTRAME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.298979, + 46.034289 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871712", + "ref": "FR*SOD*S*MB87*17*1*_*_", + "name": "RAZES - MAISON DU LAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.298979, + 46.034289 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871711", + "ref": "FR*SOD*S*MB87*17*1*_*_", + "name": "RAZES - MAISON DU LAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.979587, + 45.651697 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871511", + "ref": "FR*SOD*S*MB87*15*1*_*_", + "name": "CHALUS - PLACE DU CHAMP DE FOIRE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.979587, + 45.651697 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871513", + "ref": "FR*SOD*S*MB87*15*1*_*_", + "name": "CHALUS - PLACE DU CHAMP DE FOIRE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.979587, + 45.651697 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871512", + "ref": "FR*SOD*S*MB87*15*1*_*_", + "name": "CHALUS - PLACE DU CHAMP DE FOIRE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.371627, + 46.107802 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB873912", + "ref": "FR*SOD*S*MB87*39*1*_*_", + "name": "BESSINES-SUR-GARTEMPE - RUE DES GRANDS JARDINS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.050832, + 46.120257 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87112", + "ref": "FR*SOD*S*MB87*1*1*_*_", + "name": "BELLAC - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.493325, + 45.838198 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871412", + "ref": "FR*SOD*S*MB87*14*1*_*_", + "name": "SAINT LEONARD DE NOBLAT - PLACE DU CHAMPS DE MARS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.493325, + 45.838198 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB871411", + "ref": "FR*SOD*S*MB87*14*1*_*_", + "name": "SAINT LEONARD DE NOBLAT - PLACE DU CHAMPS DE MARS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.204664, + 45.778378 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872112", + "ref": "FR*SOD*S*MB87*21*1*_*_", + "name": "BOSMIE LAIGUILLE - RUE JEAN FERRAT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.167078, + 46.214915 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872212", + "ref": "FR*SOD*S*MB87*22*1*_*_", + "name": "MAGNAC LAVAL - PLACE DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.167078, + 46.214915 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872211", + "ref": "FR*SOD*S*MB87*22*1*_*_", + "name": "MAGNAC LAVAL - PLACE DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.27651, + 46.134059 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872711", + "ref": "FR*SOD*S*MB87*27*1*_*_", + "name": "CHATEAUPONSAC - PLACE XAVIER MAZURIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.081701, + 46.131688 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB873013", + "ref": "FR*SOD*S*MB87*30*1*_*_", + "name": "BLANZAC - ETANG DE ROUFFIGNAC", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.081701, + 46.131688 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB873013", + "ref": "FR*SOD*S*MB87*30*1*_*_", + "name": "BLANZAC - ETANG DE ROUFFIGNAC", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.90363, + 46.235341 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872911", + "ref": "FR*SOD*S*MB87*29*1*_*_", + "name": "VAL-DOIRE-ET-GARTEMPE - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.90363, + 46.235341 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872912", + "ref": "FR*SOD*S*MB87*29*1*_*_", + "name": "VAL-DOIRE-ET-GARTEMPE - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.274174, + 46.134473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872811", + "ref": "FR*SOD*S*MB87*28*1*_*_", + "name": "CHATEAUPONSAC - PARKING AVENUE DE LORRAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.274174, + 46.134473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872812", + "ref": "FR*SOD*S*MB87*28*1*_*_", + "name": "CHATEAUPONSAC - PARKING AVENUE DE LORRAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.27651, + 46.134059 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872712", + "ref": "FR*SOD*S*MB87*27*1*_*_", + "name": "CHATEAUPONSAC - PLACE XAVIER MAZURIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.494731, + 45.615384 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872311", + "ref": "FR*SOD*S*MB87*23*1*_*_", + "name": "SAINT-GERMAIN-LES-BELLES - PLACE DU 8 MAI 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.046631, + 45.991007 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872612", + "ref": "FR*SOD*S*MB87*26*1*_*_", + "name": "CIEUX - PLACE DU 8 MAI 1945", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34537, + 46.033722 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872511", + "ref": "FR*SOD*S*MB87*25*1*_*_", + "name": "RAZES - PLACE ANDRE DUFRAISSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34537, + 46.033722 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872512", + "ref": "FR*SOD*S*MB87*25*1*_*_", + "name": "RAZES - PLACE ANDRE DUFRAISSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.330306, + 45.875523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872411", + "ref": "FR*SOD*S*MB87*24*1*_*_", + "name": "SAINT-PRIEST-TAURION - ESPLANADE DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.330306, + 45.875523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872412", + "ref": "FR*SOD*S*MB87*24*1*_*_", + "name": "SAINT-PRIEST-TAURION - ESPLANADE DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.494731, + 45.615384 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB872312", + "ref": "FR*SOD*S*MB87*23*1*_*_", + "name": "SAINT-GERMAIN-LES-BELLES - PLACE DU 8 MAI 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.050832, + 46.120257 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref:EU:EVSE": "FRS87PMB87111", + "ref": "FR*SOD*S*MB87*1*1*_*_", + "name": "BELLAC - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.829526, + 43.999862 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15812", + "ref": "FR*SOD*S*WIIZ*158*1*_*_", + "name": "GUILLAUMES - PARKING PLACE DES COMBATTANTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.688753, + 43.455993 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21011", + "ref": "FR*SOD*S*WIIZ*210*1*_*_", + "name": "PUGET SUR ARGENS - PARKING ESPACE VICTOR HUGO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.007235, + 43.640324 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7611", + "ref": "FR*SOD*S*WIIZ*76*1*_*_", + "name": "VALBONNE PARKING HOTEL DE VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.094443, + 43.627628 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7011", + "ref": "FR*SOD*S*WIIZ*70*1*_*_", + "name": "BIOT PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.094443, + 43.627628 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7012", + "ref": "FR*SOD*S*WIIZ*70*1*_*_", + "name": "BIOT PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.099003, + 43.685253 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7111", + "ref": "FR*SOD*S*WIIZ*71*1*_*_", + "name": "LA COLLE-SUR-LOUP - STADE DE FOOTBALL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.099003, + 43.685253 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7112", + "ref": "FR*SOD*S*WIIZ*71*1*_*_", + "name": "LA COLLE-SUR-LOUP - STADE DE FOOTBALL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.106864, + 43.686066 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7212", + "ref": "FR*SOD*S*WIIZ*72*1*_*_", + "name": "LA COLLE-SUR-LOUP - PARKING STRAPUTICARI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.106864, + 43.686066 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7211", + "ref": "FR*SOD*S*WIIZ*72*1*_*_", + "name": "LA COLLE-SUR-LOUP - PARKING STRAPUTICARI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.045228, + 43.624069 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7311", + "ref": "FR*SOD*S*WIIZ*73*1*_*_", + "name": "VALBONNE PARKING GARBEJAIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.045228, + 43.624069 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7312", + "ref": "FR*SOD*S*WIIZ*73*1*_*_", + "name": "VALBONNE PARKING GARBEJAIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.007241, + 43.642086 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7412", + "ref": "FR*SOD*S*WIIZ*74*1*_*_", + "name": "VALBONNE PARKING VALIS BONNA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.007241, + 43.642086 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7411", + "ref": "FR*SOD*S*WIIZ*74*1*_*_", + "name": "VALBONNE PARKING VALIS BONNA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.039275, + 43.621956 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7512", + "ref": "FR*SOD*S*WIIZ*75*1*_*_", + "name": "VALBONNE PLACE BERMOND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.039275, + 43.621956 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7511", + "ref": "FR*SOD*S*WIIZ*75*1*_*_", + "name": "VALBONNE PLACE BERMOND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.007235, + 43.640324 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7612", + "ref": "FR*SOD*S*WIIZ*76*1*_*_", + "name": "VALBONNE PARKING HOTEL DE VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.944397, + 43.487486 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11512", + "ref": "FR*SOD*S*WIIZ*115*1*_*_", + "name": "THEOULE-SUR-MER PARKING VERT BISSON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.875867, + 43.655693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7712", + "ref": "FR*SOD*S*WIIZ*77*1*_*_", + "name": "CABRIS PARKING DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.875867, + 43.655693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7711", + "ref": "FR*SOD*S*WIIZ*77*1*_*_", + "name": "CABRIS PARKING DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.863265, + 43.888893 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7812", + "ref": "FR*SOD*S*WIIZ*78*1*_*_", + "name": "COLLONGUES PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.863265, + 43.888893 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7811", + "ref": "FR*SOD*S*WIIZ*78*1*_*_", + "name": "COLLONGUES PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.929529, + 43.592361 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7911", + "ref": "FR*SOD*S*WIIZ*79*1*_*_", + "name": "PEGOMAS PARKING LOGIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.929529, + 43.592361 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7912", + "ref": "FR*SOD*S*WIIZ*79*1*_*_", + "name": "PEGOMAS PARKING LOGIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.875872, + 43.639107 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8011", + "ref": "FR*SOD*S*WIIZ*80*1*_*_", + "name": "PEYMEINADE PARKING ST MARC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.875872, + 43.639107 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8012", + "ref": "FR*SOD*S*WIIZ*80*1*_*_", + "name": "PEYMEINADE PARKING ST MARC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.847364, + 43.700356 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8111", + "ref": "FR*SOD*S*WIIZ*81*1*_*_", + "name": "SAINT-VALLIER-DE-THIEY - PARKING ESPACE DU THIEY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.847364, + 43.700356 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8112", + "ref": "FR*SOD*S*WIIZ*81*1*_*_", + "name": "SAINT-VALLIER-DE-THIEY - PARKING ESPACE DU THIEY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.979139, + 43.547508 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8212", + "ref": "FR*SOD*S*WIIZ*82*1*_*_", + "name": "CANNES PARKING CORREIA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.979139, + 43.547508 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8211", + "ref": "FR*SOD*S*WIIZ*82*1*_*_", + "name": "CANNES PARKING CORREIA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.120866, + 43.578243 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6911", + "ref": "FR*SOD*S*WIIZ*69*1*_*_", + "name": "ANTIBES PARKING FOCH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.120866, + 43.578243 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6912", + "ref": "FR*SOD*S*WIIZ*69*1*_*_", + "name": "ANTIBES PARKING FOCH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12197, + 43.600079 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6812", + "ref": "FR*SOD*S*WIIZ*68*1*_*_", + "name": "ANTIBES PARKING GARBERO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12197, + 43.600079 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6811", + "ref": "FR*SOD*S*WIIZ*68*1*_*_", + "name": "ANTIBES PARKING GARBERO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.072232, + 43.564846 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5511", + "ref": "FR*SOD*S*WIIZ*55*1*_*_", + "name": "VALLAURIS PARKING PLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.077683, + 43.571644 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5612", + "ref": "FR*SOD*S*WIIZ*56*1*_*_", + "name": "VALLAURIS PARKING ALLINEI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.077683, + 43.571644 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5611", + "ref": "FR*SOD*S*WIIZ*56*1*_*_", + "name": "VALLAURIS PARKING ALLINEI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.073825, + 43.569656 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5711", + "ref": "FR*SOD*S*WIIZ*57*1*_*_", + "name": "VALLAURIS PARKING LOUCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.073825, + 43.569656 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5712", + "ref": "FR*SOD*S*WIIZ*57*1*_*_", + "name": "VALLAURIS PARKING LOUCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04891, + 43.665592 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5811", + "ref": "FR*SOD*S*WIIZ*58*1*_*_", + "name": "ROQUEFORT - PARKING CENTRE VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04891, + 43.665592 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5812", + "ref": "FR*SOD*S*WIIZ*58*1*_*_", + "name": "ROQUEFORT - PARKING CENTRE VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.043364, + 43.668011 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5912", + "ref": "FR*SOD*S*WIIZ*59*1*_*_", + "name": "ROQUEFORT - PARKING INTERMARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.043364, + 43.668011 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5911", + "ref": "FR*SOD*S*WIIZ*59*1*_*_", + "name": "ROQUEFORT - PARKING INTERMARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.926369, + 43.654064 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6012", + "ref": "FR*SOD*S*WIIZ*60*1*_*_", + "name": "GRASSE PARKING GARE SNCF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.926369, + 43.654064 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6011", + "ref": "FR*SOD*S*WIIZ*60*1*_*_", + "name": "GRASSE PARKING GARE SNCF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.944208, + 43.654076 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6211", + "ref": "FR*SOD*S*WIIZ*62*1*_*_", + "name": "GRASSE PARKING GIRATOIRE DU MOULIN DE BRUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.944208, + 43.654076 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6212", + "ref": "FR*SOD*S*WIIZ*62*1*_*_", + "name": "GRASSE PARKING GIRATOIRE DU MOULIN DE BRUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.911085, + 43.639103 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6411", + "ref": "FR*SOD*S*WIIZ*64*1*_*_", + "name": "GRASSE PARKING LA CHESNAIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.911085, + 43.639103 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6412", + "ref": "FR*SOD*S*WIIZ*64*1*_*_", + "name": "GRASSE PARKING LA CHESNAIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.936605, + 43.640907 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6511", + "ref": "FR*SOD*S*WIIZ*65*1*_*_", + "name": "GRASSE PARKING ALAMBIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.936605, + 43.640907 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6512", + "ref": "FR*SOD*S*WIIZ*65*1*_*_", + "name": "GRASSE PARKING ALAMBIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.973192, + 43.620224 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6621", + "ref": "FR*SOD*S*WIIZ*66*2*_*_", + "name": "MOUANS SARTOUX PARKING DE LA GARE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.973192, + 43.620224 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6611", + "ref": "FR*SOD*S*WIIZ*66*1*_*_", + "name": "MOUANS SARTOUX PARKING DE LA GARE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.973192, + 43.620224 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6612", + "ref": "FR*SOD*S*WIIZ*66*1*_*_", + "name": "MOUANS SARTOUX PARKING DE LA GARE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.973192, + 43.620224 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6622", + "ref": "FR*SOD*S*WIIZ*66*2*_*_", + "name": "MOUANS SARTOUX PARKING DE LA GARE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.971394, + 43.61684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6722", + "ref": "FR*SOD*S*WIIZ*67*2*_*_", + "name": "MOUANS SARTOUX PARKING DU PARC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.971394, + 43.61684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6712", + "ref": "FR*SOD*S*WIIZ*67*1*_*_", + "name": "MOUANS SARTOUX PARKING DU PARC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.971394, + 43.61684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6721", + "ref": "FR*SOD*S*WIIZ*67*2*_*_", + "name": "MOUANS SARTOUX PARKING DU PARC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.971394, + 43.61684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6711", + "ref": "FR*SOD*S*WIIZ*67*1*_*_", + "name": "MOUANS SARTOUX PARKING DU PARC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016371, + 43.577526 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8312", + "ref": "FR*SOD*S*WIIZ*83*1*_*_", + "name": "LE CANNET PARKING DES MOULIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016371, + 43.577526 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8311", + "ref": "FR*SOD*S*WIIZ*83*1*_*_", + "name": "LE CANNET PARKING DES MOULIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01581, + 43.569206 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8412", + "ref": "FR*SOD*S*WIIZ*84*1*_*_", + "name": "LE CANNET PARKING GRIGNAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.005276, + 43.570099 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10011", + "ref": "FR*SOD*S*WIIZ*100*1*_*_", + "name": "LE CANNET - PARKING ROCHEVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.096315, + 43.628653 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10112", + "ref": "FR*SOD*S*WIIZ*101*1*_*_", + "name": "BIOT PARKING BACHETTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.096315, + 43.628653 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10111", + "ref": "FR*SOD*S*WIIZ*101*1*_*_", + "name": "BIOT PARKING BACHETTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.096315, + 43.628653 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10122", + "ref": "FR*SOD*S*WIIZ*101*2*_*_", + "name": "BIOT PARKING BACHETTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.096315, + 43.628653 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10121", + "ref": "FR*SOD*S*WIIZ*101*2*_*_", + "name": "BIOT PARKING BACHETTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.091817, + 43.595834 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10211", + "ref": "FR*SOD*S*WIIZ*102*1*_*_", + "name": "PARKING MARTYRS DE LA RESISTANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.091817, + 43.595834 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10212", + "ref": "FR*SOD*S*WIIZ*102*1*_*_", + "name": "PARKING MARTYRS DE LA RESISTANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.948066, + 43.567243 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10321", + "ref": "FR*SOD*S*WIIZ*103*2*_*_", + "name": "MANDELIEU-LA NAPOULE - PARKING MERMOZ 2", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.948066, + 43.567243 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10312", + "ref": "FR*SOD*S*WIIZ*103*1*_*_", + "name": "MANDELIEU-LA NAPOULE - PARKING MERMOZ 1", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.948066, + 43.567243 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10322", + "ref": "FR*SOD*S*WIIZ*103*2*_*_", + "name": "MANDELIEU-LA NAPOULE - PARKING MERMOZ 2", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.948066, + 43.567243 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10311", + "ref": "FR*SOD*S*WIIZ*103*1*_*_", + "name": "MANDELIEU-LA NAPOULE - PARKING MERMOZ 1", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.021575, + 43.575086 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10621", + "ref": "FR*SOD*S*WIIZ*106*2*_*_", + "name": "LE CANNET PARKING VAL DAZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.021575, + 43.575086 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10611", + "ref": "FR*SOD*S*WIIZ*106*1*_*_", + "name": "LE CANNET PARKING VAL DAZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.922162, + 43.655693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10711", + "ref": "FR*SOD*S*WIIZ*107*1*_*_", + "name": "GRASSE PARKING AVENUE CARNOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.922162, + 43.655693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10712", + "ref": "FR*SOD*S*WIIZ*107*1*_*_", + "name": "GRASSE PARKING AVENUE CARNOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.118111, + 43.589299 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10911", + "ref": "FR*SOD*S*WIIZ*109*1*_*_", + "name": "ANTIBES PARKING JULES GREC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.118111, + 43.589299 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10912", + "ref": "FR*SOD*S*WIIZ*109*1*_*_", + "name": "ANTIBES PARKING JULES GREC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.025539, + 43.553686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11011", + "ref": "FR*SOD*S*WIIZ*110*1*_*_", + "name": "CANNES PARKING LORRAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.025539, + 43.553686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11012", + "ref": "FR*SOD*S*WIIZ*110*1*_*_", + "name": "CANNES PARKING LORRAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.032011, + 43.548501 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11111", + "ref": "FR*SOD*S*WIIZ*111*1*_*_", + "name": "CANNES PARKING VAUTRIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.032011, + 43.548501 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11112", + "ref": "FR*SOD*S*WIIZ*111*1*_*_", + "name": "CANNES PARKING VAUTRIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.038457, + 43.543026 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11212", + "ref": "FR*SOD*S*WIIZ*112*1*_*_", + "name": "CANNES PARKING LERINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.038457, + 43.543026 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11211", + "ref": "FR*SOD*S*WIIZ*112*1*_*_", + "name": "CANNES PARKING LERINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.941249, + 43.52533 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11311", + "ref": "FR*SOD*S*WIIZ*113*1*_*_", + "name": "MANDELIEU-LA NAPOULE - PARKING CHANTIER NAVAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.941249, + 43.52533 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11312", + "ref": "FR*SOD*S*WIIZ*113*1*_*_", + "name": "MANDELIEU-LA NAPOULE - PARKING CHANTIER NAVAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.939465, + 43.521552 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11412", + "ref": "FR*SOD*S*WIIZ*114*1*_*_", + "name": "MANDELIEU-LA NAPOULE - PARKING BALCONS DAZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.005276, + 43.570099 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10012", + "ref": "FR*SOD*S*WIIZ*100*1*_*_", + "name": "LE CANNET - PARKING ROCHEVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.133592, + 43.628931 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9911", + "ref": "FR*SOD*S*WIIZ*99*1*_*_", + "name": "VILLENEUVE-LOUBET - PARKING GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01581, + 43.569206 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8411", + "ref": "FR*SOD*S*WIIZ*84*1*_*_", + "name": "LE CANNET PARKING GRIGNAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.133592, + 43.628931 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9912", + "ref": "FR*SOD*S*WIIZ*99*1*_*_", + "name": "VILLENEUVE-LOUBET - PARKING GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.998012, + 43.577129 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8512", + "ref": "FR*SOD*S*WIIZ*85*1*_*_", + "name": "LE CANNET PARKING LES LENTISQUES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.998012, + 43.577129 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8511", + "ref": "FR*SOD*S*WIIZ*85*1*_*_", + "name": "LE CANNET PARKING LES LENTISQUES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.006267, + 43.576397 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8612", + "ref": "FR*SOD*S*WIIZ*86*1*_*_", + "name": "LE CANNET PARKING STADE JEANPIERRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.006267, + 43.576397 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8611", + "ref": "FR*SOD*S*WIIZ*86*1*_*_", + "name": "LE CANNET PARKING STADE JEANPIERRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.968254, + 43.566551 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8711", + "ref": "FR*SOD*S*WIIZ*87*1*_*_", + "name": "LE CANNET PARKING MAIRIE ANNEXE LES PARADISIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.018548, + 43.575386 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8812", + "ref": "FR*SOD*S*WIIZ*88*1*_*_", + "name": "LE CANNET PARKING RUE DES ORANGERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.018548, + 43.575386 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8811", + "ref": "FR*SOD*S*WIIZ*88*1*_*_", + "name": "LE CANNET PARKING RUE DES ORANGERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.993788, + 43.569118 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8912", + "ref": "FR*SOD*S*WIIZ*89*1*_*_", + "name": "LE CANNET PARKING BUFFON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.993788, + 43.569118 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8911", + "ref": "FR*SOD*S*WIIZ*89*1*_*_", + "name": "LE CANNET PARKING BUFFON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.873651, + 43.638214 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9011", + "ref": "FR*SOD*S*WIIZ*90*1*_*_", + "name": "PEYMEINADE PARKING COMPLEXE SPORTIF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.873651, + 43.638214 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9012", + "ref": "FR*SOD*S*WIIZ*90*1*_*_", + "name": "PEYMEINADE PARKING COMPLEXE SPORTIF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.793363, + 43.650307 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9111", + "ref": "FR*SOD*S*WIIZ*91*1*_*_", + "name": "SAINT-CEZAIRE-SUR-SIAGNE - PARKING CHEMIN DE LA CHAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.793363, + 43.650307 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9112", + "ref": "FR*SOD*S*WIIZ*91*1*_*_", + "name": "SAINT-CEZAIRE-SUR-SIAGNE - PARKING CHEMIN DE LA CHAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.946316, + 43.550246 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9221", + "ref": "FR*SOD*S*WIIZ*92*2*_*_", + "name": "MANDELIEU-LA NAPOULE - ROND-POINT DE LA CANARDIERE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.946316, + 43.550246 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9212", + "ref": "FR*SOD*S*WIIZ*92*1*_*_", + "name": "MANDELIEU-LA NAPOULE - ROND-POINT DE LA CANARDIERE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.946316, + 43.550246 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9222", + "ref": "FR*SOD*S*WIIZ*92*2*_*_", + "name": "MANDELIEU-LA NAPOULE - ROND-POINT DE LA CANARDIERE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.946316, + 43.550246 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9211", + "ref": "FR*SOD*S*WIIZ*92*1*_*_", + "name": "MANDELIEU-LA NAPOULE - ROND-POINT DE LA CANARDIERE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.932883, + 43.620566 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9312", + "ref": "FR*SOD*S*WIIZ*93*1*_*_", + "name": "GRASSE - PARKING HOPITAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.932883, + 43.620566 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9311", + "ref": "FR*SOD*S*WIIZ*93*1*_*_", + "name": "GRASSE - PARKING HOPITAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.892531, + 43.64505 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9411", + "ref": "FR*SOD*S*WIIZ*94*1*_*_", + "name": "PEYMEINADE - PARKING CO-VOITURAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.892531, + 43.64505 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9412", + "ref": "FR*SOD*S*WIIZ*94*1*_*_", + "name": "PEYMEINADE - PARKING CO-VOITURAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.984026, + 43.568851 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9712", + "ref": "FR*SOD*S*WIIZ*97*1*_*_", + "name": "LE CANNET - PARKING PALESTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.984026, + 43.568851 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9711", + "ref": "FR*SOD*S*WIIZ*97*1*_*_", + "name": "LE CANNET - PARKING PALESTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.054662, + 43.62566 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9811", + "ref": "FR*SOD*S*WIIZ*98*1*_*_", + "name": "VALBONNE - PARKING NAUTIPOLIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.054662, + 43.62566 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9812", + "ref": "FR*SOD*S*WIIZ*98*1*_*_", + "name": "VALBONNE - PARKING NAUTIPOLIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.072232, + 43.564846 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5512", + "ref": "FR*SOD*S*WIIZ*55*1*_*_", + "name": "VALLAURIS PARKING PLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.056048, + 43.57943 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5411", + "ref": "FR*SOD*S*WIIZ*54*1*_*_", + "name": "VALLAURIS PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.056048, + 43.57943 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5412", + "ref": "FR*SOD*S*WIIZ*54*1*_*_", + "name": "VALLAURIS PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.912976, + 43.639542 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1312", + "ref": "FR*SOD*S*WIIZ*13*1*_*_", + "name": "GRASSE PARKING PLACE FREDERIC MISTRAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.920752, + 43.657753 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1411", + "ref": "FR*SOD*S*WIIZ*14*1*_*_", + "name": "GRASSE PARKING RUE DE LANCIEN PALAIS DE JUSTICE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.920752, + 43.657753 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1412", + "ref": "FR*SOD*S*WIIZ*14*1*_*_", + "name": "GRASSE PARKING RUE DE LANCIEN PALAIS DE JUSTICE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.927089, + 43.656872 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1511", + "ref": "FR*SOD*S*WIIZ*15*1*_*_", + "name": "GRASSE PARKING SALLE OMNISPORTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.927089, + 43.656872 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1512", + "ref": "FR*SOD*S*WIIZ*15*1*_*_", + "name": "GRASSE PARKING SALLE OMNISPORTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.932813, + 43.637276 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1612", + "ref": "FR*SOD*S*WIIZ*16*1*_*_", + "name": "GRASSE STADE PERDIGON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.932813, + 43.637276 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1611", + "ref": "FR*SOD*S*WIIZ*16*1*_*_", + "name": "GRASSE STADE PERDIGON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.947942, + 43.580189 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1712", + "ref": "FR*SOD*S*WIIZ*17*1*_*_", + "name": "LA ROQUETTE SUR SIAGNE PARKING ST JEAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.947942, + 43.580189 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1711", + "ref": "FR*SOD*S*WIIZ*17*1*_*_", + "name": "LA ROQUETTE SUR SIAGNE PARKING ST JEAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.002274, + 43.550552 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1811", + "ref": "FR*SOD*S*WIIZ*18*1*_*_", + "name": "CANNES PARKING PICAUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.002274, + 43.550552 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1812", + "ref": "FR*SOD*S*WIIZ*18*1*_*_", + "name": "CANNES PARKING PICAUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.074646, + 43.61813 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1921", + "ref": "FR*SOD*S*WIIZ*19*2*_*_", + "name": "BIOT PARKING ST PHILIPPE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.074646, + 43.61813 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1911", + "ref": "FR*SOD*S*WIIZ*19*1*_*_", + "name": "BIOT PARKING ST PHILIPPE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.074646, + 43.61813 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1922", + "ref": "FR*SOD*S*WIIZ*19*2*_*_", + "name": "BIOT PARKING ST PHILIPPE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.074646, + 43.61813 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1912", + "ref": "FR*SOD*S*WIIZ*19*1*_*_", + "name": "BIOT PARKING ST PHILIPPE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.913658, + 43.607716 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2011", + "ref": "FR*SOD*S*WIIZ*20*1*_*_", + "name": "AURIBEAU-SUR-SIAGNE PARKING DU BAYLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.913658, + 43.607716 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2012", + "ref": "FR*SOD*S*WIIZ*20*1*_*_", + "name": "AURIBEAU-SUR-SIAGNE PARKING DU BAYLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.920399, + 43.656429 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2112", + "ref": "FR*SOD*S*WIIZ*21*1*_*_", + "name": "GRASSE PARKING PLACE DU COURS HONORE CRESP", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.920399, + 43.656429 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2111", + "ref": "FR*SOD*S*WIIZ*21*1*_*_", + "name": "GRASSE PARKING PLACE DU COURS HONORE CRESP", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.958667, + 43.64222 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2212", + "ref": "FR*SOD*S*WIIZ*22*1*_*_", + "name": "GRASSE PARKING PLACE STE HELENE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.958667, + 43.64222 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2211", + "ref": "FR*SOD*S*WIIZ*22*1*_*_", + "name": "GRASSE PARKING PLACE STE HELENE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.842196, + 43.629398 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2311", + "ref": "FR*SOD*S*WIIZ*23*1*_*_", + "name": "LE TIGNET PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.842196, + 43.629398 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2312", + "ref": "FR*SOD*S*WIIZ*23*1*_*_", + "name": "LE TIGNET PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.030538, + 43.54903 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2412", + "ref": "FR*SOD*S*WIIZ*24*1*_*_", + "name": "CANNES PARKING LATOUR MAUBOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.030538, + 43.54903 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2411", + "ref": "FR*SOD*S*WIIZ*24*1*_*_", + "name": "CANNES PARKING LATOUR MAUBOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.856857, + 43.647991 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2511", + "ref": "FR*SOD*S*WIIZ*25*1*_*_", + "name": "SPERACEDES - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.912976, + 43.639542 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1311", + "ref": "FR*SOD*S*WIIZ*13*1*_*_", + "name": "GRASSE PARKING PLACE FREDERIC MISTRAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.952294, + 43.632511 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1211", + "ref": "FR*SOD*S*WIIZ*12*1*_*_", + "name": "GRASSE STADE DE LA PAOUTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.941274, + 43.547829 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2612", + "ref": "FR*SOD*S*WIIZ*26*1*_*_", + "name": "MANDELIEU-LA NAPOULE - PARKING BEGUIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.952294, + 43.632511 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1212", + "ref": "FR*SOD*S*WIIZ*12*1*_*_", + "name": "GRASSE STADE DE LA PAOUTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.688753, + 43.455993 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21012", + "ref": "FR*SOD*S*WIIZ*210*1*_*_", + "name": "PUGET SUR ARGENS - PARKING ESPACE VICTOR HUGO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01392, + 43.5569 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ112", + "ref": "FR*SOD*S*WIIZ*1*1*_*_", + "name": "CANNES PARKING SAINT LOUIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01392, + 43.5569 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ111", + "ref": "FR*SOD*S*WIIZ*1*1*_*_", + "name": "CANNES PARKING SAINT LOUIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.120677, + 43.580116 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ211", + "ref": "FR*SOD*S*WIIZ*2*1*_*_", + "name": "ANTIBES PLACE GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.120677, + 43.580116 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ212", + "ref": "FR*SOD*S*WIIZ*2*1*_*_", + "name": "ANTIBES PLACE GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92641, + 43.594131 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ311", + "ref": "FR*SOD*S*WIIZ*3*1*_*_", + "name": "PEGOMAS PARKING PARCHOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92641, + 43.594131 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ312", + "ref": "FR*SOD*S*WIIZ*3*1*_*_", + "name": "PEGOMAS PARKING PARCHOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.10996, + 43.568874 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ412", + "ref": "FR*SOD*S*WIIZ*4*1*_*_", + "name": "ANTIBES PARKING MAUPASSANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.10996, + 43.568874 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ411", + "ref": "FR*SOD*S*WIIZ*4*1*_*_", + "name": "ANTIBES PARKING MAUPASSANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.053818, + 43.575954 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ512", + "ref": "FR*SOD*S*WIIZ*5*1*_*_", + "name": "VALLAURIS PARKING STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.053818, + 43.575954 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ511", + "ref": "FR*SOD*S*WIIZ*5*1*_*_", + "name": "VALLAURIS PARKING STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.005574, + 43.562817 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ612", + "ref": "FR*SOD*S*WIIZ*6*1*_*_", + "name": "CANNES PARKING BROUSAILLES HOPITAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.005574, + 43.562817 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ611", + "ref": "FR*SOD*S*WIIZ*6*1*_*_", + "name": "CANNES PARKING BROUSAILLES HOPITAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.985467, + 43.667213 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ712", + "ref": "FR*SOD*S*WIIZ*7*1*_*_", + "name": "OPIO PARKING CENTRE COMMERCIAL FONT NEUVE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.985467, + 43.667213 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ711", + "ref": "FR*SOD*S*WIIZ*7*1*_*_", + "name": "OPIO PARKING CENTRE COMMERCIAL FONT NEUVE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.006912, + 43.549686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ812", + "ref": "FR*SOD*S*WIIZ*8*1*_*_", + "name": "CANNES SQUARE MISTRAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.006912, + 43.549686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ811", + "ref": "FR*SOD*S*WIIZ*8*1*_*_", + "name": "CANNES SQUARE MISTRAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.008748, + 43.551323 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ912", + "ref": "FR*SOD*S*WIIZ*9*1*_*_", + "name": "CANNES PARKING ST DIZIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.008748, + 43.551323 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ911", + "ref": "FR*SOD*S*WIIZ*9*1*_*_", + "name": "CANNES PARKING ST DIZIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.123361, + 43.583973 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1011", + "ref": "FR*SOD*S*WIIZ*10*1*_*_", + "name": "ANTIBES PARKING ST ROCH", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.123361, + 43.583973 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1012", + "ref": "FR*SOD*S*WIIZ*10*1*_*_", + "name": "ANTIBES PARKING ST ROCH", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.123361, + 43.583973 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1021", + "ref": "FR*SOD*S*WIIZ*10*2*_*_", + "name": "ANTIBES PARKING ST ROCH", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.123361, + 43.583973 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1022", + "ref": "FR*SOD*S*WIIZ*10*2*_*_", + "name": "ANTIBES PARKING ST ROCH", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.076204, + 43.605541 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1112", + "ref": "FR*SOD*S*WIIZ*11*1*_*_", + "name": "ANTIBES AZUR ARENA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.076204, + 43.605541 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1111", + "ref": "FR*SOD*S*WIIZ*11*1*_*_", + "name": "ANTIBES AZUR ARENA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.856857, + 43.647991 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2512", + "ref": "FR*SOD*S*WIIZ*25*1*_*_", + "name": "SPERACEDES - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.941274, + 43.547829 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2611", + "ref": "FR*SOD*S*WIIZ*26*1*_*_", + "name": "MANDELIEU-LA NAPOULE - PARKING BEGUIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.120687, + 43.658474 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5311", + "ref": "FR*SOD*S*WIIZ*53*1*_*_", + "name": "VILLENEUVE-LOUBET - PARKING GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.939531, + 43.505989 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4111", + "ref": "FR*SOD*S*WIIZ*41*1*_*_", + "name": "THEOULE PARKING PLACE GENERAL BERTRAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.934108, + 43.485077 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4211", + "ref": "FR*SOD*S*WIIZ*42*1*_*_", + "name": "THEOULE PORT DE LA FIGUEIRETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.934108, + 43.485077 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4212", + "ref": "FR*SOD*S*WIIZ*42*1*_*_", + "name": "THEOULE PORT DE LA FIGUEIRETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.966343, + 43.54985 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4312", + "ref": "FR*SOD*S*WIIZ*43*1*_*_", + "name": "CANNES CONTRE ALLEE FRANCIS TONNER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.966343, + 43.54985 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4311", + "ref": "FR*SOD*S*WIIZ*43*1*_*_", + "name": "CANNES CONTRE ALLEE FRANCIS TONNER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.997377, + 43.60107 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4411", + "ref": "FR*SOD*S*WIIZ*44*1*_*_", + "name": "MOUGINS PARKING DU MOULIN DE LA CROIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.997377, + 43.60107 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4412", + "ref": "FR*SOD*S*WIIZ*44*1*_*_", + "name": "MOUGINS PARKING DU MOULIN DE LA CROIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.037986, + 43.587605 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4512", + "ref": "FR*SOD*S*WIIZ*45*1*_*_", + "name": "MOUGINS CENTRE SPORTIF DE MOUGINS LE HAUT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.037986, + 43.587605 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4511", + "ref": "FR*SOD*S*WIIZ*45*1*_*_", + "name": "MOUGINS CENTRE SPORTIF DE MOUGINS LE HAUT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.98771, + 43.604153 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4612", + "ref": "FR*SOD*S*WIIZ*46*1*_*_", + "name": "MOUGINS PARKING CC TOURNAMY 700", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.98771, + 43.604153 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4611", + "ref": "FR*SOD*S*WIIZ*46*1*_*_", + "name": "MOUGINS PARKING CC TOURNAMY 700", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.015534, + 43.609589 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4712", + "ref": "FR*SOD*S*WIIZ*47*1*_*_", + "name": "MOUGINS PARKING SALLE OMNISPORTS DU FONT DE LORME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.015534, + 43.609589 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4711", + "ref": "FR*SOD*S*WIIZ*47*1*_*_", + "name": "MOUGINS PARKING SALLE OMNISPORTS DU FONT DE LORME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.998574, + 43.580826 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4812", + "ref": "FR*SOD*S*WIIZ*48*1*_*_", + "name": "MOUGINS PARKING PISCINE DES CAMPELIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.998574, + 43.580826 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4811", + "ref": "FR*SOD*S*WIIZ*48*1*_*_", + "name": "MOUGINS PARKING PISCINE DES CAMPELIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.943561, + 43.796143 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4912", + "ref": "FR*SOD*S*WIIZ*49*1*_*_", + "name": "GREOLIERES PARKING FAISSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.943561, + 43.796143 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4911", + "ref": "FR*SOD*S*WIIZ*49*1*_*_", + "name": "GREOLIERES PARKING FAISSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.063297, + 43.718616 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5012", + "ref": "FR*SOD*S*WIIZ*50*1*_*_", + "name": "TOURRETTES-SUR-LOUP - PARKING DE LA MADELEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.063297, + 43.718616 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5011", + "ref": "FR*SOD*S*WIIZ*50*1*_*_", + "name": "TOURRETTES-SUR-LOUP - PARKING DE LA MADELEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12692, + 43.656189 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5122", + "ref": "FR*SOD*S*WIIZ*51*2*_*_", + "name": "VILLENEUVE-LOUBET - PARKING MEDIATHEQUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12692, + 43.656189 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5111", + "ref": "FR*SOD*S*WIIZ*51*1*_*_", + "name": "VILLENEUVE-LOUBET - PARKING MEDIATHEQUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12692, + 43.656189 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5112", + "ref": "FR*SOD*S*WIIZ*51*1*_*_", + "name": "VILLENEUVE-LOUBET - PARKING MEDIATHEQUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12692, + 43.656189 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5121", + "ref": "FR*SOD*S*WIIZ*51*2*_*_", + "name": "VILLENEUVE-LOUBET - PARKING MEDIATHEQUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.139475, + 43.637203 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5211", + "ref": "FR*SOD*S*WIIZ*52*1*_*_", + "name": "VILLENEUVE-LOUBET - PARKING FIGHIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.139475, + 43.637203 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5212", + "ref": "FR*SOD*S*WIIZ*52*1*_*_", + "name": "VILLENEUVE-LOUBET - PARKING FIGHIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.120687, + 43.658474 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5312", + "ref": "FR*SOD*S*WIIZ*53*1*_*_", + "name": "VILLENEUVE-LOUBET - PARKING GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.939531, + 43.505989 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4112", + "ref": "FR*SOD*S*WIIZ*41*1*_*_", + "name": "THEOULE PARKING PLACE GENERAL BERTRAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.022205, + 43.554817 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4011", + "ref": "FR*SOD*S*WIIZ*40*1*_*_", + "name": "CANNES PARKING BRAILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.945192, + 43.534256 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2712", + "ref": "FR*SOD*S*WIIZ*27*1*_*_", + "name": "MANDELIEU-LA NAPOULE - PARKING ROBINSON THEATRE DE VERDURE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.022205, + 43.554817 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4012", + "ref": "FR*SOD*S*WIIZ*40*1*_*_", + "name": "CANNES PARKING BRAILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.945192, + 43.534256 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2711", + "ref": "FR*SOD*S*WIIZ*27*1*_*_", + "name": "MANDELIEU-LA NAPOULE - PARKING ROBINSON THEATRE DE VERDURE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.793374, + 43.728943 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2811", + "ref": "FR*SOD*S*WIIZ*28*1*_*_", + "name": "ESCRAGNOLLES PARKING SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.793374, + 43.728943 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2812", + "ref": "FR*SOD*S*WIIZ*28*1*_*_", + "name": "ESCRAGNOLLES PARKING SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.858089, + 43.843212 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2911", + "ref": "FR*SOD*S*WIIZ*29*1*_*_", + "name": "LE MAS PARKING COUVERT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.858089, + 43.843212 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2912", + "ref": "FR*SOD*S*WIIZ*29*1*_*_", + "name": "LE MAS PARKING COUVERT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.728566, + 43.846939 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3011", + "ref": "FR*SOD*S*WIIZ*30*1*_*_", + "name": "SAINT-AUBAN PARKING RELAIS DE SERVICES PUBLICS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.728566, + 43.846939 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3012", + "ref": "FR*SOD*S*WIIZ*30*1*_*_", + "name": "SAINT-AUBAN PARKING RELAIS DE SERVICES PUBLICS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.703947, + 43.773846 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3112", + "ref": "FR*SOD*S*WIIZ*31*1*_*_", + "name": "SERANON PARKING PLACE JOSEPH REBUFFEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.703947, + 43.773846 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3111", + "ref": "FR*SOD*S*WIIZ*31*1*_*_", + "name": "SERANON PARKING PLACE JOSEPH REBUFFEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.122704, + 43.825058 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3211", + "ref": "FR*SOD*S*WIIZ*32*1*_*_", + "name": "BOUYON PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.122704, + 43.825058 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3212", + "ref": "FR*SOD*S*WIIZ*32*1*_*_", + "name": "BOUYON PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.989127, + 43.701473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3311", + "ref": "FR*SOD*S*WIIZ*33*1*_*_", + "name": "BAR SUR LOUP PARKING PLACE DE LA TOUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.989127, + 43.701473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3312", + "ref": "FR*SOD*S*WIIZ*33*1*_*_", + "name": "BAR SUR LOUP PARKING PLACE DE LA TOUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.807771, + 43.799503 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3411", + "ref": "FR*SOD*S*WIIZ*34*1*_*_", + "name": "ANDON LAC DE THORENC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.807771, + 43.799503 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3412", + "ref": "FR*SOD*S*WIIZ*34*1*_*_", + "name": "ANDON LAC DE THORENC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.731209, + 43.77903 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3511", + "ref": "FR*SOD*S*WIIZ*35*1*_*_", + "name": "CAILLE PARKING DE LA MOULIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.731209, + 43.77903 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3512", + "ref": "FR*SOD*S*WIIZ*35*1*_*_", + "name": "CAILLE PARKING DE LA MOULIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.977588, + 43.720795 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3612", + "ref": "FR*SOD*S*WIIZ*36*1*_*_", + "name": "GOURDON VILLAGE - PARKING DE LA FERRAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.977588, + 43.720795 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3611", + "ref": "FR*SOD*S*WIIZ*36*1*_*_", + "name": "GOURDON VILLAGE - PARKING DE LA FERRAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.972588, + 43.680862 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3712", + "ref": "FR*SOD*S*WIIZ*37*1*_*_", + "name": "CHATEAUNEUF-GRASSE PARKING PLACE DES PINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.972588, + 43.680862 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3711", + "ref": "FR*SOD*S*WIIZ*37*1*_*_", + "name": "CHATEAUNEUF-GRASSE PARKING PLACE DES PINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.005572, + 43.674377 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3812", + "ref": "FR*SOD*S*WIIZ*38*1*_*_", + "name": "LE ROURET PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.005572, + 43.674377 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3811", + "ref": "FR*SOD*S*WIIZ*38*1*_*_", + "name": "LE ROURET PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.971852, + 43.54916 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3912", + "ref": "FR*SOD*S*WIIZ*39*1*_*_", + "name": "CANNES PARKING NEGRIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.971852, + 43.54916 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3911", + "ref": "FR*SOD*S*WIIZ*39*1*_*_", + "name": "CANNES PARKING NEGRIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.939465, + 43.521552 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11411", + "ref": "FR*SOD*S*WIIZ*114*1*_*_", + "name": "MANDELIEU-LA NAPOULE - PARKING BALCONS DAZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.968254, + 43.566551 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8712", + "ref": "FR*SOD*S*WIIZ*87*1*_*_", + "name": "LE CANNET PARKING MAIRIE ANNEXE LES PARADISIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.944397, + 43.487486 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11511", + "ref": "FR*SOD*S*WIIZ*115*1*_*_", + "name": "THEOULE-SUR-MER PARKING VERT BISSON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.808597, + 43.416224 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22612", + "ref": "FR*SOD*S*WIIZ*226*1*_*_", + "name": "SAINT-RAPHAEL - PARKING BOULAURIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.938977, + 43.545788 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19021", + "ref": "FR*SOD*S*WIIZ*190*2*_*_", + "name": "MANDELIEU-LA NAPOULE - PARKING PLACE DE FRANCE", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.003423, + 43.590169 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ23212", + "ref": "FR*SOD*S*WIIZ*232*1*_*_", + "name": "MOUGINS - PARKING DES OISEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.003423, + 43.590169 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ23211", + "ref": "FR*SOD*S*WIIZ*232*1*_*_", + "name": "MOUGINS - PARKING DES OISEAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04193, + 43.794887 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ23112", + "ref": "FR*SOD*S*WIIZ*231*1*_*_", + "name": "COURSEGOULES - PARKING DU COLOMBIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04193, + 43.794887 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ23111", + "ref": "FR*SOD*S*WIIZ*231*1*_*_", + "name": "COURSEGOULES - PARKING DU COLOMBIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.769688, + 43.426157 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ23012", + "ref": "FR*SOD*S*WIIZ*230*1*_*_", + "name": "SAINT-RAPHAEL - PARKING RENE GAUTIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.769688, + 43.426157 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ23011", + "ref": "FR*SOD*S*WIIZ*230*1*_*_", + "name": "SAINT-RAPHAEL - PARKING RENE GAUTIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.991493, + 43.573036 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22912", + "ref": "FR*SOD*S*WIIZ*229*1*_*_", + "name": "LE CANNET - PARKING CANEOPOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.991493, + 43.573036 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22911", + "ref": "FR*SOD*S*WIIZ*229*1*_*_", + "name": "LE CANNET - PARKING CANEOPOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.986055, + 43.598635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22812", + "ref": "FR*SOD*S*WIIZ*228*1*_*_", + "name": "PARKING DU VAL DE MOUGINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.986055, + 43.598635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22811", + "ref": "FR*SOD*S*WIIZ*228*1*_*_", + "name": "PARKING DU VAL DE MOUGINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.808597, + 43.416224 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22611", + "ref": "FR*SOD*S*WIIZ*226*1*_*_", + "name": "SAINT-RAPHAEL - PARKING BOULAURIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.775273, + 43.429654 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22511", + "ref": "FR*SOD*S*WIIZ*225*1*_*_", + "name": "SAINT-RAPHAEL - PARKING XV CORPS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.125003, + 43.942747 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17411", + "ref": "FR*SOD*S*WIIZ*174*1*_*_", + "name": "MASSOINS - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.775273, + 43.429654 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22512", + "ref": "FR*SOD*S*WIIZ*225*1*_*_", + "name": "SAINT-RAPHAEL - PARKING XV CORPS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.770335, + 43.425128 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22411", + "ref": "FR*SOD*S*WIIZ*224*1*_*_", + "name": "SAINT-RAPHAEL - PARKING GABRIEL PERI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.770335, + 43.425128 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22412", + "ref": "FR*SOD*S*WIIZ*224*1*_*_", + "name": "SAINT-RAPHAEL - PARKING GABRIEL PERI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.770057, + 43.426121 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22312", + "ref": "FR*SOD*S*WIIZ*223*1*_*_", + "name": "SAINT-RAPHAEL - RUE LEON ISNARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.770057, + 43.426121 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22311", + "ref": "FR*SOD*S*WIIZ*223*1*_*_", + "name": "SAINT-RAPHAEL - RUE LEON ISNARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.766603, + 43.424876 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22211", + "ref": "FR*SOD*S*WIIZ*222*1*_*_", + "name": "SAINT-RAPHAEL - PLACE DORTOLAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.030741, + 43.624772 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11611", + "ref": "FR*SOD*S*WIIZ*116*1*_*_", + "name": "ANTIBES - CASA GENETS - PUBLIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.778844, + 43.414773 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22112", + "ref": "FR*SOD*S*WIIZ*221*1*_*_", + "name": "SAINT-RAPHAEL - PARKING PLACE DES COMMERCES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.778844, + 43.414773 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22111", + "ref": "FR*SOD*S*WIIZ*221*1*_*_", + "name": "SAINT-RAPHAEL - PARKING PLACE DES COMMERCES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.780578, + 43.413416 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22011", + "ref": "FR*SOD*S*WIIZ*220*1*_*_", + "name": "SAINT-RAPHAEL - PARKING DE LA CAPITAINERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.780578, + 43.413416 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22012", + "ref": "FR*SOD*S*WIIZ*220*1*_*_", + "name": "SAINT-RAPHAEL - PARKING DE LA CAPITAINERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84497, + 43.417625 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21912", + "ref": "FR*SOD*S*WIIZ*219*1*_*_", + "name": "SAINT-RAPHAEL - PARKING DU DEBARQUEMENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.938977, + 43.545788 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19051", + "ref": "FR*SOD*S*WIIZ*190*5*_*_", + "name": "MANDELIEU-LA NAPOULE - PARKING PLACE DE FRANCE", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.938977, + 43.545788 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19041", + "ref": "FR*SOD*S*WIIZ*190*4*_*_", + "name": "MANDELIEU-LA NAPOULE - PARKING PLACE DE FRANCE", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.938977, + 43.545788 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19031", + "ref": "FR*SOD*S*WIIZ*190*3*_*_", + "name": "MANDELIEU-LA NAPOULE - PARKING PLACE DE FRANCE", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.021517, + 43.570407 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ18911", + "ref": "FR*SOD*S*WIIZ*189*1*_*_", + "name": "LE CANNET PARKING BASTIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.914737, + 43.858005 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17511", + "ref": "FR*SOD*S*WIIZ*175*1*_*_", + "name": "AIGLUN - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.914737, + 43.858005 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17512", + "ref": "FR*SOD*S*WIIZ*175*1*_*_", + "name": "AIGLUN - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.964126, + 43.873123 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17611", + "ref": "FR*SOD*S*WIIZ*176*1*_*_", + "name": "SIGALE - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.964126, + 43.873123 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17612", + "ref": "FR*SOD*S*WIIZ*176*1*_*_", + "name": "SIGALE - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.031442, + 43.978437 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17712", + "ref": "FR*SOD*S*WIIZ*177*1*_*_", + "name": "THIERY - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.031442, + 43.978437 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17711", + "ref": "FR*SOD*S*WIIZ*177*1*_*_", + "name": "THIERY - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.091959, + 43.863651 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17811", + "ref": "FR*SOD*S*WIIZ*178*1*_*_", + "name": "PIERREFEU - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.091959, + 43.863651 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17812", + "ref": "FR*SOD*S*WIIZ*178*1*_*_", + "name": "PIERREFEU - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.082716, + 43.874919 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17911", + "ref": "FR*SOD*S*WIIZ*179*1*_*_", + "name": "PIERREFEU - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.082716, + 43.874919 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17912", + "ref": "FR*SOD*S*WIIZ*179*1*_*_", + "name": "PIERREFEU - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.004788, + 43.874341 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ18011", + "ref": "FR*SOD*S*WIIZ*180*1*_*_", + "name": "ROQUESTERON - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.004788, + 43.874341 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ18012", + "ref": "FR*SOD*S*WIIZ*180*1*_*_", + "name": "ROQUESTERON - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.982924, + 43.909768 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ18111", + "ref": "FR*SOD*S*WIIZ*181*1*_*_", + "name": "SAINT ANTONIN - PARKING STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.982924, + 43.909768 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ18112", + "ref": "FR*SOD*S*WIIZ*181*1*_*_", + "name": "SAINT ANTONIN - PARKING STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.947498, + 43.927462 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ18212", + "ref": "FR*SOD*S*WIIZ*182*1*_*_", + "name": "LA PENNE - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.947498, + 43.927462 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ18211", + "ref": "FR*SOD*S*WIIZ*182*1*_*_", + "name": "LA PENNE - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.112363, + 43.901386 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ18312", + "ref": "FR*SOD*S*WIIZ*183*1*_*_", + "name": "TOUDON - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.112363, + 43.901386 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ18311", + "ref": "FR*SOD*S*WIIZ*183*1*_*_", + "name": "TOUDON - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.156247, + 43.881513 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ18511", + "ref": "FR*SOD*S*WIIZ*185*1*_*_", + "name": "REVEST LES ROCHES - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.156247, + 43.881513 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ18512", + "ref": "FR*SOD*S*WIIZ*185*1*_*_", + "name": "REVEST LES ROCHES - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.961662, + 43.542004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ18712", + "ref": "FR*SOD*S*WIIZ*187*1*_*_", + "name": "CANNES - PARKING RD POINT ROMANO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.961662, + 43.542004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ18711", + "ref": "FR*SOD*S*WIIZ*187*1*_*_", + "name": "CANNES - PARKING RD POINT ROMANO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.998693, + 43.574724 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ18811", + "ref": "FR*SOD*S*WIIZ*188*1*_*_", + "name": "LE CANNET PARKING DES FADES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.998693, + 43.574724 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ18812", + "ref": "FR*SOD*S*WIIZ*188*1*_*_", + "name": "LE CANNET PARKING DES FADES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.021517, + 43.570407 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ18912", + "ref": "FR*SOD*S*WIIZ*189*1*_*_", + "name": "LE CANNET PARKING BASTIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84497, + 43.417625 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21911", + "ref": "FR*SOD*S*WIIZ*219*1*_*_", + "name": "SAINT-RAPHAEL - PARKING DU DEBARQUEMENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.857109, + 43.432224 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21811", + "ref": "FR*SOD*S*WIIZ*218*1*_*_", + "name": "SAINT-RAPHAEL - PARKING PHARMACIE DAGAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.857109, + 43.432224 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21812", + "ref": "FR*SOD*S*WIIZ*218*1*_*_", + "name": "SAINT-RAPHAEL - PARKING PHARMACIE DAGAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.909623, + 43.60133 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19412", + "ref": "FR*SOD*S*WIIZ*194*1*_*_", + "name": "AURIBEAU-SUR-SIAGNE - PARKING MALLET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.815823, + 43.650382 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19512", + "ref": "FR*SOD*S*WIIZ*195*1*_*_", + "name": "SAINT-CEZAIRE-SUR-SIAGNE - PARKING CO-VOITURAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.142079, + 43.641144 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19611", + "ref": "FR*SOD*S*WIIZ*196*1*_*_", + "name": "VILLENEUVE-LOUBET - PARKING ALLEE DE LA PLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.142079, + 43.641144 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19612", + "ref": "FR*SOD*S*WIIZ*196*1*_*_", + "name": "VILLENEUVE-LOUBET - PARKING ALLEE DE LA PLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.111563, + 43.571381 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19711", + "ref": "FR*SOD*S*WIIZ*197*1*_*_", + "name": "ANTIBES - PARKING COURBET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.111563, + 43.571381 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19712", + "ref": "FR*SOD*S*WIIZ*197*1*_*_", + "name": "ANTIBES - PARKING COURBET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.067558, + 43.564065 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19811", + "ref": "FR*SOD*S*WIIZ*198*1*_*_", + "name": "VALLAURIS - PARKING PONT DE LAUBE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.067558, + 43.564065 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19812", + "ref": "FR*SOD*S*WIIZ*198*1*_*_", + "name": "VALLAURIS - PARKING PONT DE LAUBE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.067345, + 43.597408 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19912", + "ref": "FR*SOD*S*WIIZ*199*1*_*_", + "name": "ANTIBES - PARKING SEMBOULES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.067345, + 43.597408 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19911", + "ref": "FR*SOD*S*WIIZ*199*1*_*_", + "name": "ANTIBES - PARKING SEMBOULES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.088415, + 43.576122 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ20012", + "ref": "FR*SOD*S*WIIZ*200*1*_*_", + "name": "ANTIBES - PARKING ST MAYMES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.088415, + 43.576122 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ20011", + "ref": "FR*SOD*S*WIIZ*200*1*_*_", + "name": "ANTIBES - PARKING ST MAYMES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.752546, + 43.427411 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ20111", + "ref": "FR*SOD*S*WIIZ*201*1*_*_", + "name": "FREJUS - PARKING SCHWEITZER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.752546, + 43.427411 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ20112", + "ref": "FR*SOD*S*WIIZ*201*1*_*_", + "name": "FREJUS - PARKING SCHWEITZER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.721648, + 43.386678 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ20311", + "ref": "FR*SOD*S*WIIZ*203*1*_*_", + "name": "FREJUS - BOULEVARD HONORE DE BALZAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.721648, + 43.386678 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ20312", + "ref": "FR*SOD*S*WIIZ*203*1*_*_", + "name": "FREJUS - BOULEVARD HONORE DE BALZAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.746812, + 43.419192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ20411", + "ref": "FR*SOD*S*WIIZ*204*1*_*_", + "name": "FREJUS - PARKING SQUARE ROLAND GARROS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.746812, + 43.419192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ20412", + "ref": "FR*SOD*S*WIIZ*204*1*_*_", + "name": "FREJUS - PARKING SQUARE ROLAND GARROS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.746812, + 43.419192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ20421", + "ref": "FR*SOD*S*WIIZ*204*2*_*_", + "name": "FREJUS - PARKING SQUARE ROLAND GARROS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.746812, + 43.419192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ20422", + "ref": "FR*SOD*S*WIIZ*204*2*_*_", + "name": "FREJUS - PARKING SQUARE ROLAND GARROS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.686872, + 43.453096 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ20611", + "ref": "FR*SOD*S*WIIZ*206*1*_*_", + "name": "PUGET SUR ARGENS - PARKING DE PROVENCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.686872, + 43.453096 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ20612", + "ref": "FR*SOD*S*WIIZ*206*1*_*_", + "name": "PUGET SUR ARGENS - PARKING DE PROVENCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.683534, + 43.45656 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ20712", + "ref": "FR*SOD*S*WIIZ*207*1*_*_", + "name": "PUGET SUR ARGENS - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.683534, + 43.45656 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ20711", + "ref": "FR*SOD*S*WIIZ*207*1*_*_", + "name": "PUGET SUR ARGENS - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.686489, + 43.456775 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ20812", + "ref": "FR*SOD*S*WIIZ*208*1*_*_", + "name": "PUGET SUR ARGENS - PARKING DES HARKIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.686489, + 43.456775 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ20811", + "ref": "FR*SOD*S*WIIZ*208*1*_*_", + "name": "PUGET SUR ARGENS - PARKING DES HARKIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.815823, + 43.650382 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19511", + "ref": "FR*SOD*S*WIIZ*195*1*_*_", + "name": "SAINT-CEZAIRE-SUR-SIAGNE - PARKING CO-VOITURAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.909623, + 43.60133 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19411", + "ref": "FR*SOD*S*WIIZ*194*1*_*_", + "name": "AURIBEAU-SUR-SIAGNE - PARKING MALLET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.870301, + 43.431219 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21711", + "ref": "FR*SOD*S*WIIZ*217*1*_*_", + "name": "SAINT-RAPHAEL - PARKING BASTIDE DAGAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.923529, + 43.660826 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19311", + "ref": "FR*SOD*S*WIIZ*193*1*_*_", + "name": "GRASSE - PARKING NOTRE DAME DES FLEURS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.870301, + 43.431219 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21712", + "ref": "FR*SOD*S*WIIZ*217*1*_*_", + "name": "SAINT-RAPHAEL - PARKING BASTIDE DAGAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.769099, + 43.427591 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21612", + "ref": "FR*SOD*S*WIIZ*216*1*_*_", + "name": "SAINT-RAPHAEL - PARKING EUGENE FELIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.769099, + 43.427591 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21611", + "ref": "FR*SOD*S*WIIZ*216*1*_*_", + "name": "SAINT-RAPHAEL - PARKING EUGENE FELIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.771648, + 43.423766 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21512", + "ref": "FR*SOD*S*WIIZ*215*1*_*_", + "name": "SAINT-RAPHAEL - PARKING LAMARTINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.771648, + 43.423766 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21511", + "ref": "FR*SOD*S*WIIZ*215*1*_*_", + "name": "SAINT-RAPHAEL - PARKING LAMARTINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.689706, + 43.342153 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21412", + "ref": "FR*SOD*S*WIIZ*214*1*_*_", + "name": "ROQUEBRUNE-SUR-ARGENS - PARKING TOTAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.689706, + 43.342153 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21411", + "ref": "FR*SOD*S*WIIZ*214*1*_*_", + "name": "ROQUEBRUNE-SUR-ARGENS - PARKING TOTAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63861, + 43.445696 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21311", + "ref": "FR*SOD*S*WIIZ*213*1*_*_", + "name": "ROQUEBRUNE-SUR-ARGENS - PARKING DES DOUANES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63861, + 43.445696 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21312", + "ref": "FR*SOD*S*WIIZ*213*1*_*_", + "name": "ROQUEBRUNE-SUR-ARGENS - PARKING DES DOUANES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.694257, + 43.341849 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21212", + "ref": "FR*SOD*S*WIIZ*212*1*_*_", + "name": "ROQUEBRUNE-SUR-ARGENS - PARKING ISSAMBRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.694257, + 43.341849 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21211", + "ref": "FR*SOD*S*WIIZ*212*1*_*_", + "name": "ROQUEBRUNE-SUR-ARGENS - PARKING ISSAMBRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.646478, + 43.499395 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21111", + "ref": "FR*SOD*S*WIIZ*211*1*_*_", + "name": "ROQUEBRUNE-SUR-ARGENS - PARKING BOUVERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.646478, + 43.499395 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ21112", + "ref": "FR*SOD*S*WIIZ*211*1*_*_", + "name": "ROQUEBRUNE-SUR-ARGENS - PARKING BOUVERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.938977, + 43.545788 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19011", + "ref": "FR*SOD*S*WIIZ*190*1*_*_", + "name": "MANDELIEU-LA NAPOULE - PARKING PLACE DE FRANCE", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.954072, + 43.782424 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19112", + "ref": "FR*SOD*S*WIIZ*191*1*_*_", + "name": "CIPIERES - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.954072, + 43.782424 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19111", + "ref": "FR*SOD*S*WIIZ*191*1*_*_", + "name": "CIPIERES - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.822841, + 43.890183 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19211", + "ref": "FR*SOD*S*WIIZ*192*1*_*_", + "name": "AMIRAT - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.822841, + 43.890183 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19212", + "ref": "FR*SOD*S*WIIZ*192*1*_*_", + "name": "AMIRAT - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.923529, + 43.660826 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19341", + "ref": "FR*SOD*S*WIIZ*193*4*_*_", + "name": "GRASSE - PARKING NOTRE DAME DES FLEURS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.923529, + 43.660826 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19322", + "ref": "FR*SOD*S*WIIZ*193*2*_*_", + "name": "GRASSE - PARKING NOTRE DAME DES FLEURS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.923529, + 43.660826 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19332", + "ref": "FR*SOD*S*WIIZ*193*3*_*_", + "name": "GRASSE - PARKING NOTRE DAME DES FLEURS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.923529, + 43.660826 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19321", + "ref": "FR*SOD*S*WIIZ*193*2*_*_", + "name": "GRASSE - PARKING NOTRE DAME DES FLEURS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.923529, + 43.660826 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19312", + "ref": "FR*SOD*S*WIIZ*193*1*_*_", + "name": "GRASSE - PARKING NOTRE DAME DES FLEURS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.923529, + 43.660826 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19342", + "ref": "FR*SOD*S*WIIZ*193*4*_*_", + "name": "GRASSE - PARKING NOTRE DAME DES FLEURS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.923529, + 43.660826 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ19331", + "ref": "FR*SOD*S*WIIZ*193*3*_*_", + "name": "GRASSE - PARKING NOTRE DAME DES FLEURS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.125003, + 43.942747 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17412", + "ref": "FR*SOD*S*WIIZ*174*1*_*_", + "name": "MASSOINS - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.766603, + 43.424876 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ22212", + "ref": "FR*SOD*S*WIIZ*222*1*_*_", + "name": "SAINT-RAPHAEL - PLACE DORTOLAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.009405, + 43.948198 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17311", + "ref": "FR*SOD*S*WIIZ*173*1*_*_", + "name": "TOUET-SUR-VAR - PARKING EN OUVRAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.040892, + 43.589903 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13411", + "ref": "FR*SOD*S*WIIZ*134*1*_*_", + "name": "MOUGINS PARKING PETITE COLLINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.969609, + 43.621304 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13051", + "ref": "FR*SOD*S*WIIZ*130*5*_*_", + "name": "MOUANS SARTOUX - PARKING P+R", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.969609, + 43.621304 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13091", + "ref": "FR*SOD*S*WIIZ*130*9*_*_", + "name": "MOUANS SARTOUX - PARKING P+R", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.969609, + 43.621304 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13071", + "ref": "FR*SOD*S*WIIZ*130*7*_*_", + "name": "MOUANS SARTOUX - PARKING P+R", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.969609, + 43.621304 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13061", + "ref": "FR*SOD*S*WIIZ*130*6*_*_", + "name": "MOUANS SARTOUX - PARKING P+R", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.111934, + 43.570758 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13111", + "ref": "FR*SOD*S*WIIZ*131*1*_*_", + "name": "ANTIBES PARKING JUAN GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.111934, + 43.570758 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13112", + "ref": "FR*SOD*S*WIIZ*131*1*_*_", + "name": "ANTIBES PARKING JUAN GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.101737, + 43.571659 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13212", + "ref": "FR*SOD*S*WIIZ*132*1*_*_", + "name": "ANTIBES - PARKING DULYS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.101737, + 43.571659 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13211", + "ref": "FR*SOD*S*WIIZ*132*1*_*_", + "name": "ANTIBES - PARKING DULYS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.074897, + 43.618336 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13311", + "ref": "FR*SOD*S*WIIZ*133*1*_*_", + "name": "BIOT PARKING ROUMANILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.074897, + 43.618336 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13312", + "ref": "FR*SOD*S*WIIZ*133*1*_*_", + "name": "BIOT PARKING ROUMANILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.040892, + 43.589903 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13412", + "ref": "FR*SOD*S*WIIZ*134*1*_*_", + "name": "MOUGINS PARKING PETITE COLLINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.953956, + 43.5519 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13511", + "ref": "FR*SOD*S*WIIZ*135*1*_*_", + "name": "CANNES - AEROPORT MANDELIEU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.927584, + 43.653981 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12911", + "ref": "FR*SOD*S*WIIZ*129*1*_*_", + "name": "GRASSE - PARKING P+R GARE DE GRASSE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.953956, + 43.5519 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13512", + "ref": "FR*SOD*S*WIIZ*135*1*_*_", + "name": "CANNES - AEROPORT MANDELIEU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.997921, + 43.583708 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13711", + "ref": "FR*SOD*S*WIIZ*137*1*_*_", + "name": "MOUGINS - PARKING SCENE 55", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.997921, + 43.583708 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13712", + "ref": "FR*SOD*S*WIIZ*137*1*_*_", + "name": "MOUGINS - PARKING SCENE 55", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.108882, + 43.583317 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13812", + "ref": "FR*SOD*S*WIIZ*138*1*_*_", + "name": "ANTIBES PARKING ROI SOLEIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.108882, + 43.583317 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13811", + "ref": "FR*SOD*S*WIIZ*138*1*_*_", + "name": "ANTIBES PARKING ROI SOLEIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.09906, + 43.589162 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13912", + "ref": "FR*SOD*S*WIIZ*139*1*_*_", + "name": "ANTIBES PARKING RABIAC ESTAGNOL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.09906, + 43.589162 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13911", + "ref": "FR*SOD*S*WIIZ*139*1*_*_", + "name": "ANTIBES PARKING RABIAC ESTAGNOL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.051729, + 43.622951 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14011", + "ref": "FR*SOD*S*WIIZ*140*1*_*_", + "name": "VALBONNE PARKING DOJO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.051729, + 43.622951 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14012", + "ref": "FR*SOD*S*WIIZ*140*1*_*_", + "name": "VALBONNE PARKING DOJO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.954077, + 43.597811 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14111", + "ref": "FR*SOD*S*WIIZ*141*1*_*_", + "name": "LA ROQUETTE SUR SIAGNE PARKING COEUR ST GEORGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.954077, + 43.597811 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14112", + "ref": "FR*SOD*S*WIIZ*141*1*_*_", + "name": "LA ROQUETTE SUR SIAGNE PARKING COEUR ST GEORGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.969609, + 43.621304 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13081", + "ref": "FR*SOD*S*WIIZ*130*8*_*_", + "name": "MOUANS SARTOUX - PARKING P+R", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.927584, + 43.653981 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12922", + "ref": "FR*SOD*S*WIIZ*129*2*_*_", + "name": "GRASSE - PARKING P+R GARE DE GRASSE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.03597, + 43.5397 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14211", + "ref": "FR*SOD*S*WIIZ*142*1*_*_", + "name": "CANNES - PARKING REINE ASTRID", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.125101, + 43.573163 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12512", + "ref": "FR*SOD*S*WIIZ*125*1*_*_", + "name": "ANTIBES - PARKING PLAGE DU PONTEIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.030741, + 43.624772 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11612", + "ref": "FR*SOD*S*WIIZ*116*1*_*_", + "name": "ANTIBES - CASA GENETS - PUBLIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.97701, + 43.643076 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12012", + "ref": "FR*SOD*S*WIIZ*120*1*_*_", + "name": "GRASSE - PARKING PLASCASSIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.97701, + 43.643076 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12011", + "ref": "FR*SOD*S*WIIZ*120*1*_*_", + "name": "GRASSE - PARKING PLASCASSIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.955042, + 43.607211 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12112", + "ref": "FR*SOD*S*WIIZ*121*1*_*_", + "name": "MOUANS SARTOUX - PARKING ZI ARGILE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.955042, + 43.607211 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12121", + "ref": "FR*SOD*S*WIIZ*121*2*_*_", + "name": "MOUANS SARTOUX - PARKING ZI ARGILE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.009405, + 43.948198 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17312", + "ref": "FR*SOD*S*WIIZ*173*1*_*_", + "name": "TOUET-SUR-VAR - PARKING EN OUVRAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.955042, + 43.607211 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12111", + "ref": "FR*SOD*S*WIIZ*121*1*_*_", + "name": "MOUANS SARTOUX - PARKING ZI ARGILE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92296, + 43.651211 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12211", + "ref": "FR*SOD*S*WIIZ*122*1*_*_", + "name": "GRASSE PARKING SQUARE DES DIABLES BLEUS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92296, + 43.651211 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12212", + "ref": "FR*SOD*S*WIIZ*122*1*_*_", + "name": "GRASSE PARKING SQUARE DES DIABLES BLEUS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.000926, + 43.549382 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12312", + "ref": "FR*SOD*S*WIIZ*123*1*_*_", + "name": "CANNES PARKING LIEGEARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.000926, + 43.549382 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12311", + "ref": "FR*SOD*S*WIIZ*123*1*_*_", + "name": "CANNES PARKING LIEGEARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.125101, + 43.573163 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12511", + "ref": "FR*SOD*S*WIIZ*125*1*_*_", + "name": "ANTIBES - PARKING PLAGE DU PONTEIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.927584, + 43.653981 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12921", + "ref": "FR*SOD*S*WIIZ*129*2*_*_", + "name": "GRASSE - PARKING P+R GARE DE GRASSE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.959911, + 43.5515 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12611", + "ref": "FR*SOD*S*WIIZ*126*1*_*_", + "name": "CANNES - PARKING BASTIDE ROUGE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.959911, + 43.5515 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12622", + "ref": "FR*SOD*S*WIIZ*126*2*_*_", + "name": "CANNES - PARKING BASTIDE ROUGE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.959911, + 43.5515 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12642", + "ref": "FR*SOD*S*WIIZ*126*4*_*_", + "name": "CANNES - PARKING BASTIDE ROUGE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.959911, + 43.5515 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12641", + "ref": "FR*SOD*S*WIIZ*126*4*_*_", + "name": "CANNES - PARKING BASTIDE ROUGE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.959911, + 43.5515 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12632", + "ref": "FR*SOD*S*WIIZ*126*3*_*_", + "name": "CANNES - PARKING BASTIDE ROUGE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.959911, + 43.5515 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12612", + "ref": "FR*SOD*S*WIIZ*126*1*_*_", + "name": "CANNES - PARKING BASTIDE ROUGE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.959911, + 43.5515 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12621", + "ref": "FR*SOD*S*WIIZ*126*2*_*_", + "name": "CANNES - PARKING BASTIDE ROUGE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.959911, + 43.5515 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12631", + "ref": "FR*SOD*S*WIIZ*126*3*_*_", + "name": "CANNES - PARKING BASTIDE ROUGE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.121963, + 43.70119 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12811", + "ref": "FR*SOD*S*WIIZ*128*1*_*_", + "name": "ST PAUL DE VENCE - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.121963, + 43.70119 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12812", + "ref": "FR*SOD*S*WIIZ*128*1*_*_", + "name": "ST PAUL DE VENCE - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.927584, + 43.653981 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12912", + "ref": "FR*SOD*S*WIIZ*129*1*_*_", + "name": "GRASSE - PARKING P+R GARE DE GRASSE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.03597, + 43.5397 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14212", + "ref": "FR*SOD*S*WIIZ*142*1*_*_", + "name": "CANNES - PARKING REINE ASTRID", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.955042, + 43.607211 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12122", + "ref": "FR*SOD*S*WIIZ*121*2*_*_", + "name": "MOUANS SARTOUX - PARKING ZI ARGILE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.096915, + 43.937045 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17112", + "ref": "FR*SOD*S*WIIZ*171*1*_*_", + "name": "VILLARS-SUR-VAR - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.895762, + 43.955964 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ16312", + "ref": "FR*SOD*S*WIIZ*163*1*_*_", + "name": "PUGET THENIERS - PARKING EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.761461, + 44.142858 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15511", + "ref": "FR*SOD*S*WIIZ*155*1*_*_", + "name": "SAINT-MARTIN-DENTRAUNES - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.761461, + 44.142858 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15512", + "ref": "FR*SOD*S*WIIZ*155*1*_*_", + "name": "SAINT-MARTIN-DENTRAUNES - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.854609, + 44.089531 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15711", + "ref": "FR*SOD*S*WIIZ*157*1*_*_", + "name": "GUILLAUMES - PARKING PLACE NAPOLEON 3", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.854609, + 44.089531 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15712", + "ref": "FR*SOD*S*WIIZ*157*1*_*_", + "name": "GUILLAUMES - PARKING PLACE NAPOLEON 3", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.829526, + 43.999862 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15811", + "ref": "FR*SOD*S*WIIZ*158*1*_*_", + "name": "GUILLAUMES - PARKING PLACE DES COMBATTANTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.835645, + 44.087471 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15912", + "ref": "FR*SOD*S*WIIZ*159*1*_*_", + "name": "SAUZE - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.835645, + 44.087471 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15911", + "ref": "FR*SOD*S*WIIZ*159*1*_*_", + "name": "SAUZE - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.906609, + 44.116352 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ16011", + "ref": "FR*SOD*S*WIIZ*160*1*_*_", + "name": "PEONE - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.906609, + 44.116352 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ16012", + "ref": "FR*SOD*S*WIIZ*160*1*_*_", + "name": "PEONE - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81205, + 44.026512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ16112", + "ref": "FR*SOD*S*WIIZ*161*1*_*_", + "name": "DALUIS - PARKING GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81205, + 44.026512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ16111", + "ref": "FR*SOD*S*WIIZ*161*1*_*_", + "name": "DALUIS - PARKING GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.895762, + 43.955964 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ16311", + "ref": "FR*SOD*S*WIIZ*163*1*_*_", + "name": "PUGET THENIERS - PARKING EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.096915, + 43.937045 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17111", + "ref": "FR*SOD*S*WIIZ*171*1*_*_", + "name": "VILLARS-SUR-VAR - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.892666, + 43.955574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ16411", + "ref": "FR*SOD*S*WIIZ*164*1*_*_", + "name": "PUGET THENIERS - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.892666, + 43.955574 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ16412", + "ref": "FR*SOD*S*WIIZ*164*1*_*_", + "name": "PUGET THENIERS - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.990858, + 43.989648 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ16512", + "ref": "FR*SOD*S*WIIZ*165*1*_*_", + "name": "RIGAUD - PARKING CIMETIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.990858, + 43.989648 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ16511", + "ref": "FR*SOD*S*WIIZ*165*1*_*_", + "name": "RIGAUD - PARKING CIMETIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016601, + 43.995534 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ16612", + "ref": "FR*SOD*S*WIIZ*166*1*_*_", + "name": "LIEUCHE - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016601, + 43.995534 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ16611", + "ref": "FR*SOD*S*WIIZ*166*1*_*_", + "name": "LIEUCHE - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035057, + 44.032071 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ16711", + "ref": "FR*SOD*S*WIIZ*167*1*_*_", + "name": "PIERLAS - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035057, + 44.032071 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ16712", + "ref": "FR*SOD*S*WIIZ*167*1*_*_", + "name": "PIERLAS - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.989727, + 44.094825 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ16811", + "ref": "FR*SOD*S*WIIZ*168*1*_*_", + "name": "BEUIL - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.989727, + 44.094825 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ16812", + "ref": "FR*SOD*S*WIIZ*168*1*_*_", + "name": "BEUIL - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.095503, + 43.936102 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17011", + "ref": "FR*SOD*S*WIIZ*170*1*_*_", + "name": "VILLARS SUR VAR - PARKING BAS VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.853837, + 44.08881 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15412", + "ref": "FR*SOD*S*WIIZ*154*1*_*_", + "name": "ENTRAUNES - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.853837, + 44.08881 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15411", + "ref": "FR*SOD*S*WIIZ*154*1*_*_", + "name": "ENTRAUNES - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.725537, + 43.848226 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15312", + "ref": "FR*SOD*S*WIIZ*153*1*_*_", + "name": "SAINT AUBAN - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.725537, + 43.848226 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15311", + "ref": "FR*SOD*S*WIIZ*153*1*_*_", + "name": "SAINT AUBAN - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.008847, + 43.947858 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17212", + "ref": "FR*SOD*S*WIIZ*172*1*_*_", + "name": "TOUET-SUR-VAR - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.03772, + 43.53673 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14311", + "ref": "FR*SOD*S*WIIZ*143*1*_*_", + "name": "CANNES PARKING PALM BEACH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.03772, + 43.53673 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14312", + "ref": "FR*SOD*S*WIIZ*143*1*_*_", + "name": "CANNES PARKING PALM BEACH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.022008, + 43.560735 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14411", + "ref": "FR*SOD*S*WIIZ*144*1*_*_", + "name": "CANNES - PARKING MIGNO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.022008, + 43.560735 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14412", + "ref": "FR*SOD*S*WIIZ*144*1*_*_", + "name": "CANNES - PARKING MIGNO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.044712, + 43.623628 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14711", + "ref": "FR*SOD*S*WIIZ*147*1*_*_", + "name": "VALBONNE - ROUTE DES DOLINES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.008847, + 43.947858 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17211", + "ref": "FR*SOD*S*WIIZ*172*1*_*_", + "name": "TOUET-SUR-VAR - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.044712, + 43.623628 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14712", + "ref": "FR*SOD*S*WIIZ*147*1*_*_", + "name": "VALBONNE - ROUTE DES DOLINES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.935367, + 44.091897 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14812", + "ref": "FR*SOD*S*WIIZ*148*1*_*_", + "name": "VALBERG - PISCINE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.935367, + 44.091897 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14811", + "ref": "FR*SOD*S*WIIZ*148*1*_*_", + "name": "VALBERG - PISCINE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.935367, + 44.091897 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14821", + "ref": "FR*SOD*S*WIIZ*148*2*_*_", + "name": "VALBERG - PISCINE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.935367, + 44.091897 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14822", + "ref": "FR*SOD*S*WIIZ*148*2*_*_", + "name": "VALBERG - PISCINE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.928848, + 44.095253 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14912", + "ref": "FR*SOD*S*WIIZ*149*1*_*_", + "name": "VALBERG - FRONT DE NEIGE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.928848, + 44.095253 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14921", + "ref": "FR*SOD*S*WIIZ*149*2*_*_", + "name": "VALBERG - FRONT DE NEIGE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.928848, + 44.095253 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14922", + "ref": "FR*SOD*S*WIIZ*149*2*_*_", + "name": "VALBERG - FRONT DE NEIGE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.928848, + 44.095253 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ14911", + "ref": "FR*SOD*S*WIIZ*149*1*_*_", + "name": "VALBERG - FRONT DE NEIGE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.952573, + 44.109989 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15011", + "ref": "FR*SOD*S*WIIZ*150*1*_*_", + "name": "VALBERG - GOLF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.952573, + 44.109989 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15012", + "ref": "FR*SOD*S*WIIZ*150*1*_*_", + "name": "VALBERG - GOLF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12429, + 43.589499 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15111", + "ref": "FR*SOD*S*WIIZ*151*1*_*_", + "name": "ANTIBES - PARKING FORT CARRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12429, + 43.589499 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15112", + "ref": "FR*SOD*S*WIIZ*151*1*_*_", + "name": "ANTIBES - PARKING FORT CARRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.802294, + 43.865682 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15211", + "ref": "FR*SOD*S*WIIZ*152*1*_*_", + "name": "GARS - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.802294, + 43.865682 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ15212", + "ref": "FR*SOD*S*WIIZ*152*1*_*_", + "name": "GARS - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.095503, + 43.936102 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ17012", + "ref": "FR*SOD*S*WIIZ*170*1*_*_", + "name": "VILLARS SUR VAR - PARKING BAS VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.111309, + 50.665473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "411207012", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIXT", + "ref:EU:EVSE": "FROTHPOTHR15421", + "ref": "FR*SOD*S*OTHR*154*2*_*_", + "name": "SIXT MARCQ-EN-BAROEUL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.111309, + 50.665473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "411207012", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIXT", + "ref:EU:EVSE": "FROTHPOTHR15411", + "ref": "FR*SOD*S*OTHR*154*1*_*_", + "name": "SIXT MARCQ-EN-BAROEUL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.111309, + 50.665473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "411207012", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIXT", + "ref:EU:EVSE": "FROTHPOTHR15431", + "ref": "FR*SOD*S*OTHR*154*3*_*_", + "name": "SIXT MARCQ-EN-BAROEUL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.111309, + 50.665473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "411207012", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIXT", + "ref:EU:EVSE": "FROTHPOTHR15441", + "ref": "FR*SOD*S*OTHR*154*4*_*_", + "name": "SIXT MARCQ-EN-BAROEUL", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.381578, + 45.397149 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192712", + "ref": "FR*SOD*S*MB19*27*1*_*_", + "name": "ARNAC POMPADOUR - PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.570625, + 45.442994 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193111", + "ref": "FR*SOD*S*MB19*31*1*_*_", + "name": "UZERCHE - AVENUE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.523637, + 45.10095 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193612", + "ref": "FR*SOD*S*MB19*36*1*_*_", + "name": "NOAILLES - PLACE CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.523637, + 45.10095 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193611", + "ref": "FR*SOD*S*MB19*36*1*_*_", + "name": "NOAILLES - PLACE CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.495816, + 45.051969 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193512", + "ref": "FR*SOD*S*MB19*35*1*_*_", + "name": "NESPOULS - LA CROIX BLANCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.495816, + 45.051969 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193511", + "ref": "FR*SOD*S*MB19*35*1*_*_", + "name": "NESPOULS - LA CROIX BLANCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.520462, + 45.541127 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193411", + "ref": "FR*SOD*S*MB19*34*1*_*_", + "name": "MASSERET- PLACE MARCEL CHAMPEIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.520462, + 45.541127 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193412", + "ref": "FR*SOD*S*MB19*34*1*_*_", + "name": "MASSERET- PLACE MARCEL CHAMPEIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.872822, + 45.367584 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193312", + "ref": "FR*SOD*S*MB19*33*1*_*_", + "name": "CORREZE - ROUTE DU VIMBELLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.872822, + 45.367584 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193311", + "ref": "FR*SOD*S*MB19*33*1*_*_", + "name": "CORREZE - ROUTE DU VIMBELLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.563502, + 45.424296 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193212", + "ref": "FR*SOD*S*MB19*32*1*_*_", + "name": "UZERCHE - PLACE DE LA LIBERATION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.563502, + 45.424296 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193211", + "ref": "FR*SOD*S*MB19*32*1*_*_", + "name": "UZERCHE - PLACE DE LA LIBERATION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.570625, + 45.442994 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193112", + "ref": "FR*SOD*S*MB19*31*1*_*_", + "name": "UZERCHE - AVENUE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.581699, + 45.22832 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193712", + "ref": "FR*SOD*S*MB19*37*1*_*_", + "name": "SAINTE FEREOLE - AVENUE DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.562014, + 45.426246 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193011", + "ref": "FR*SOD*S*MB19*30*1*_*_", + "name": "UZERCHE - ALLEE DE LA PAPETRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.562014, + 45.426246 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193012", + "ref": "FR*SOD*S*MB19*30*1*_*_", + "name": "UZERCHE - ALLEE DE LA PAPETRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.770483, + 45.264992 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192951", + "ref": "FR*SOD*S*MB19*29*5*_*_", + "name": "TULLE - PARKING QUAI GABRIEL PERI", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.770483, + 45.264992 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192961", + "ref": "FR*SOD*S*MB19*29*6*_*_", + "name": "TULLE - PARKING QUAI GABRIEL PERI", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.770483, + 45.264992 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192931", + "ref": "FR*SOD*S*MB19*29*3*_*_", + "name": "TULLE - PARKING QUAI GABRIEL PERI", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.770483, + 45.264992 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192921", + "ref": "FR*SOD*S*MB19*29*2*_*_", + "name": "TULLE - PARKING QUAI GABRIEL PERI", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.770483, + 45.264992 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192941", + "ref": "FR*SOD*S*MB19*29*4*_*_", + "name": "TULLE - PARKING QUAI GABRIEL PERI", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.770483, + 45.264992 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192911", + "ref": "FR*SOD*S*MB19*29*1*_*_", + "name": "TULLE - PARKING QUAI GABRIEL PERI", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430912, + 45.09254 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192812", + "ref": "FR*SOD*S*MB19*28*1*_*_", + "name": "SAINT CERNIN DE LARCHE - RUE DE LETANG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430912, + 45.09254 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192811", + "ref": "FR*SOD*S*MB19*28*1*_*_", + "name": "SAINT CERNIN DE LARCHE - RUE DE LETANG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.581699, + 45.22832 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193711", + "ref": "FR*SOD*S*MB19*37*1*_*_", + "name": "SAINTE FEREOLE - AVENUE DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.475894, + 45.257628 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193812", + "ref": "FR*SOD*S*MB19*38*1*_*_", + "name": "ALLASSAC - PLACE ALLEGRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.475894, + 45.257628 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193811", + "ref": "FR*SOD*S*MB19*38*1*_*_", + "name": "ALLASSAC - PLACE ALLEGRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545809, + 45.222671 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB194411", + "ref": "FR*SOD*S*MB19*44*1*_*_", + "name": "DONZENAC - PARKING POINT DE VUE DE TRAVASSAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.544331, + 45.164748 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB195111", + "ref": "FR*SOD*S*MB19*51*1*_*_", + "name": "BRIVE - PARKING PARC DES EXPOSITIONS DES 3 PROVINCES - 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.544331, + 45.164748 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB195112", + "ref": "FR*SOD*S*MB19*51*1*_*_", + "name": "BRIVE - PARKING PARC DES EXPOSITIONS DES 3 PROVINCES - 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.542987, + 45.164994 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB195011", + "ref": "FR*SOD*S*MB19*50*1*_*_", + "name": "BRIVE - PARKING PARC DES EXPOSITIONS DES 3 PROVINCES - 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.542987, + 45.164994 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB195012", + "ref": "FR*SOD*S*MB19*50*1*_*_", + "name": "BRIVE - PARKING PARC DES EXPOSITIONS DES 3 PROVINCES - 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.950778, + 45.291775 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB194812", + "ref": "FR*SOD*S*MB19*48*1*_*_", + "name": "CLERGOUX - DOMAINE DE SEDIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.950778, + 45.291775 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB194811", + "ref": "FR*SOD*S*MB19*48*1*_*_", + "name": "CLERGOUX - DOMAINE DE SEDIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.670771, + 45.17567 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB194712", + "ref": "FR*SOD*S*MB19*47*1*_*_", + "name": "AUBAZINES - LE LAVOIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.670771, + 45.17567 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB194711", + "ref": "FR*SOD*S*MB19*47*1*_*_", + "name": "AUBAZINES - LE LAVOIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.489849, + 45.0419 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB194612", + "ref": "FR*SOD*S*MB19*46*1*_*_", + "name": "NESPOULS - PARKING DE LAEROPORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.489849, + 45.0419 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB194611", + "ref": "FR*SOD*S*MB19*46*1*_*_", + "name": "NESPOULS - PARKING DE LAEROPORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545809, + 45.222671 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB194412", + "ref": "FR*SOD*S*MB19*44*1*_*_", + "name": "DONZENAC - PARKING POINT DE VUE DE TRAVASSAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.478655, + 45.148654 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB195211", + "ref": "FR*SOD*S*MB19*52*1*_*_", + "name": "BRIVE - POLE D’ECHANGES MULTIMODAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.457247, + 45.181659 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB194311", + "ref": "FR*SOD*S*MB19*43*1*_*_", + "name": "VARETZ - ROUTE DE ROLAND GARROS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.457247, + 45.181659 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB194312", + "ref": "FR*SOD*S*MB19*43*1*_*_", + "name": "VARETZ - ROUTE DE ROLAND GARROS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.507493, + 45.187074 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB194212", + "ref": "FR*SOD*S*MB19*42*1*_*_", + "name": "USSAC - ZC LA CROIX DE PATAUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.507493, + 45.187074 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB194211", + "ref": "FR*SOD*S*MB19*42*1*_*_", + "name": "USSAC - ZC LA CROIX DE PATAUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.580087, + 45.053508 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB194112", + "ref": "FR*SOD*S*MB19*41*1*_*_", + "name": "TURENNE - AVENUE DU SENATEUR LABROUSSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.580087, + 45.053508 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB194111", + "ref": "FR*SOD*S*MB19*41*1*_*_", + "name": "TURENNE - AVENUE DU SENATEUR LABROUSSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.851616, + 45.302048 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB194011", + "ref": "FR*SOD*S*MB19*40*1*_*_", + "name": "GIMEL-LES-CASCADES - LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.851616, + 45.302048 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB194012", + "ref": "FR*SOD*S*MB19*40*1*_*_", + "name": "GIMEL-LES-CASCADES - LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.941229, + 45.405899 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193912", + "ref": "FR*SOD*S*MB19*39*1*_*_", + "name": "SARRAN - PARKING MUSEE DU PRESIDENT JACQUES CHIRAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.941229, + 45.405899 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB193911", + "ref": "FR*SOD*S*MB19*39*1*_*_", + "name": "SARRAN - PARKING MUSEE DU PRESIDENT JACQUES CHIRAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.381578, + 45.397149 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192711", + "ref": "FR*SOD*S*MB19*27*1*_*_", + "name": "ARNAC POMPADOUR - PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.032484, + 45.272957 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19912", + "ref": "FR*SOD*S*MB19*9*1*_*_", + "name": "MARCILLAC LA CROISILLE - PLACE DOCTEUR RAOUL PEUCH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114273, + 45.392636 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192612", + "ref": "FR*SOD*S*MB19*26*1*_*_", + "name": "MOUSTIER VENTADOUR - LA CHANSELVE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114273, + 45.392636 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192611", + "ref": "FR*SOD*S*MB19*26*1*_*_", + "name": "MOUSTIER VENTADOUR - LA CHANSELVE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.032484, + 45.272957 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19911", + "ref": "FR*SOD*S*MB19*9*1*_*_", + "name": "MARCILLAC LA CROISILLE - PLACE DOCTEUR RAOUL PEUCH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.671406, + 45.056961 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19812", + "ref": "FR*SOD*S*MB19*8*1*_*_", + "name": "MEYSSAC - AIRE DE COVOITURAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.671406, + 45.056961 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19811", + "ref": "FR*SOD*S*MB19*8*1*_*_", + "name": "MEYSSAC - AIRE DE COVOITURAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.402562, + 45.442391 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19712", + "ref": "FR*SOD*S*MB19*7*1*_*_", + "name": "LUBERSAC - AVENUE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.402562, + 45.442391 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19711", + "ref": "FR*SOD*S*MB19*7*1*_*_", + "name": "LUBERSAC - AVENUE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.939504, + 45.094104 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19612", + "ref": "FR*SOD*S*MB19*6*1*_*_", + "name": "ARGENTAT - PLACE BAD-KOENIG", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.939504, + 45.094104 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19611", + "ref": "FR*SOD*S*MB19*6*1*_*_", + "name": "ARGENTAT - PLACE BAD-KOENIG", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.409911, + 45.264425 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19521", + "ref": "FR*SOD*S*MB19*5*2*_*_", + "name": "OBJAT - PLACE CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.409911, + 45.264425 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19522", + "ref": "FR*SOD*S*MB19*5*2*_*_", + "name": "OBJAT - PLACE CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.794784, + 45.535733 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19421", + "ref": "FR*SOD*S*MB19*4*2*_*_", + "name": "TREIGNAC - PLACE DES PENITENTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.794784, + 45.535733 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19422", + "ref": "FR*SOD*S*MB19*4*2*_*_", + "name": "TREIGNAC - PLACE DES PENITENTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8365, + 44.9785 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19321", + "ref": "FR*SOD*S*MB19*3*2*_*_", + "name": "BEAULIEU SUR DORDOGNE - PLACE DU CHAMP DE MARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8365, + 44.9785 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19322", + "ref": "FR*SOD*S*MB19*3*2*_*_", + "name": "BEAULIEU SUR DORDOGNE - PLACE DU CHAMP DE MARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.325366, + 45.248766 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19222", + "ref": "FR*SOD*S*MB19*2*2*_*_", + "name": "AYEN - 19 ROUTE DU SOULET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.325366, + 45.248766 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19221", + "ref": "FR*SOD*S*MB19*2*2*_*_", + "name": "AYEN - 19 ROUTE DU SOULET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.489812, + 45.041874 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19121", + "ref": "FR*SOD*S*MB19*1*2*_*_", + "name": "NESPOULS - PARKING AEROPORT BRIVE – VALLEE DE LA DORDOGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.489812, + 45.041874 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB19122", + "ref": "FR*SOD*S*MB19*1*2*_*_", + "name": "NESPOULS - PARKING AEROPORT BRIVE – VALLEE DE LA DORDOGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.534797, + 45.162929 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB195311", + "ref": "FR*SOD*S*MB19*53*1*_*_", + "name": "BRIVE - HALLE BRASSENS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.533348, + 45.156801 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB195411", + "ref": "FR*SOD*S*MB19*54*1*_*_", + "name": "BRIVE - PLACE THIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.533348, + 45.156801 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB195412", + "ref": "FR*SOD*S*MB19*54*1*_*_", + "name": "BRIVE - PLACE THIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.533704, + 45.159655 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB195611", + "ref": "FR*SOD*S*MB19*56*1*_*_", + "name": "BRIVE - MAIRIE DE BRIVE-LA-GAILLARDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.533704, + 45.159655 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB195612", + "ref": "FR*SOD*S*MB19*56*1*_*_", + "name": "BRIVE - MAIRIE DE BRIVE-LA-GAILLARDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.534797, + 45.162929 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB195312", + "ref": "FR*SOD*S*MB19*53*1*_*_", + "name": "BRIVE - HALLE BRASSENS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.72254, + 45.581782 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191011", + "ref": "FR*SOD*S*MB19*10*1*_*_", + "name": "CHAMBERET - ROUTE DES MONEDIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.72254, + 45.581782 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191012", + "ref": "FR*SOD*S*MB19*10*1*_*_", + "name": "CHAMBERET - ROUTE DES MONEDIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046184, + 45.405044 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191111", + "ref": "FR*SOD*S*MB19*11*1*_*_", + "name": "EGLETONS - AVENUE CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.767277, + 45.313928 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191711", + "ref": "FR*SOD*S*MB19*17*1*_*_", + "name": "NAVES - RUE GUSTAVE VIDALIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.98696, + 44.983314 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192311", + "ref": "FR*SOD*S*MB19*23*1*_*_", + "name": "CAMPS - SAINT MATHURIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.98696, + 44.983314 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192312", + "ref": "FR*SOD*S*MB19*23*1*_*_", + "name": "CAMPS - SAINT MATHURIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.52392, + 45.227944 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192212", + "ref": "FR*SOD*S*MB19*22*1*_*_", + "name": "DONZENAC - AVENUE JEAN CHICOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.52392, + 45.227944 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192211", + "ref": "FR*SOD*S*MB19*22*1*_*_", + "name": "DONZENAC - AVENUE JEAN CHICOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.635647, + 45.273307 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192111", + "ref": "FR*SOD*S*MB19*21*1*_*_", + "name": "SAINT GERMAIN LES VERGNES - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.635647, + 45.273307 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192112", + "ref": "FR*SOD*S*MB19*21*1*_*_", + "name": "SAINT GERMAIN LES VERGNES - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.759414, + 45.257594 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192011", + "ref": "FR*SOD*S*MB19*20*1*_*_", + "name": "TULLE - AVENUE LUCIEN SAMPEIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.759414, + 45.257594 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB192012", + "ref": "FR*SOD*S*MB19*20*1*_*_", + "name": "TULLE - AVENUE LUCIEN SAMPEIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.595673, + 45.177941 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191812", + "ref": "FR*SOD*S*MB19*18*1*_*_", + "name": "MALEMORT - RD1089 ROUTE DE TULLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.595673, + 45.177941 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191811", + "ref": "FR*SOD*S*MB19*18*1*_*_", + "name": "MALEMORT - RD1089 ROUTE DE TULLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.767277, + 45.313928 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191712", + "ref": "FR*SOD*S*MB19*17*1*_*_", + "name": "NAVES - RUE GUSTAVE VIDALIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046184, + 45.405044 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191112", + "ref": "FR*SOD*S*MB19*11*1*_*_", + "name": "EGLETONS - AVENUE CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.566751, + 45.427326 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191612", + "ref": "FR*SOD*S*MB19*16*1*_*_", + "name": "UZERCHE - CHEMIN DES LEZES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.566751, + 45.427326 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191611", + "ref": "FR*SOD*S*MB19*16*1*_*_", + "name": "UZERCHE - CHEMIN DES LEZES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.713402, + 45.366442 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191512", + "ref": "FR*SOD*S*MB19*15*1*_*_", + "name": "SEILHAC - PLACE DE LHORLOGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.713402, + 45.366442 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191511", + "ref": "FR*SOD*S*MB19*15*1*_*_", + "name": "SEILHAC - PLACE DE LHORLOGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.724899, + 45.125055 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191412", + "ref": "FR*SOD*S*MB19*14*1*_*_", + "name": "BEYNAT - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.724899, + 45.125055 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191411", + "ref": "FR*SOD*S*MB19*14*1*_*_", + "name": "BEYNAT - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.563527, + 45.170076 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191311", + "ref": "FR*SOD*S*MB19*13*1*_*_", + "name": "MALEMORT - RUE JEAN JAURES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.563527, + 45.170076 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191312", + "ref": "FR*SOD*S*MB19*13*1*_*_", + "name": "MALEMORT - RUE JEAN JAURES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.414614, + 45.121961 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191211", + "ref": "FR*SOD*S*MB19*12*1*_*_", + "name": "LARCHE - PLACE DOCTEUR RENE JAUBERTIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.414614, + 45.121961 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB191212", + "ref": "FR*SOD*S*MB19*12*1*_*_", + "name": "LARCHE - PLACE DOCTEUR RENE JAUBERTIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.478655, + 45.148654 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref:EU:EVSE": "FRS19PMB195212", + "ref": "FR*SOD*S*MB19*52*1*_*_", + "name": "BRIVE - POLE D’ECHANGES MULTIMODAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.389289, + 45.739451 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165912", + "ref": "FR*SOD*S*MB16*59*1*_*_", + "name": "LA ROCHEFOUCAULD-EN-ANGOUMOIS - PARKING SALLE DES FETES - LA ROCHEFOUCAULD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.082316, + 45.69619 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162412", + "ref": "FR*SOD*S*MB16*24*1*_*_", + "name": "MERIGNAC - IMPASSE DES CADUCEES - POLE MEDICAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.447453, + 45.820853 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167014", + "ref": "FR*SOD*S*MB16*70*1*_*_", + "name": "CHASSENEUIL SUR BONNIEURE - PARKING DES TILLEULS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.049567, + 45.624888 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166812", + "ref": "FR*SOD*S*MB16*68*1*_*_", + "name": "NERSAC - PARKING RUE DE LISLE DESPAGNAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.673057, + 46.004187 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166911", + "ref": "FR*SOD*S*MB16*69*1*_*_", + "name": "CONFOLENS - PARKING DU LYCEE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.673057, + 46.004187 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166913", + "ref": "FR*SOD*S*MB16*69*1*_*_", + "name": "CONFOLENS - PARKING DU LYCEE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.673057, + 46.004187 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166914", + "ref": "FR*SOD*S*MB16*69*1*_*_", + "name": "CONFOLENS - PARKING DU LYCEE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.673057, + 46.004187 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166912", + "ref": "FR*SOD*S*MB16*69*1*_*_", + "name": "CONFOLENS - PARKING DU LYCEE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.447453, + 45.820853 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167013", + "ref": "FR*SOD*S*MB16*70*1*_*_", + "name": "CHASSENEUIL SUR BONNIEURE - PARKING DES TILLEULS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.447453, + 45.820853 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167011", + "ref": "FR*SOD*S*MB16*70*1*_*_", + "name": "CHASSENEUIL SUR BONNIEURE - PARKING DES TILLEULS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.447453, + 45.820853 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167012", + "ref": "FR*SOD*S*MB16*70*1*_*_", + "name": "CHASSENEUIL SUR BONNIEURE - PARKING DES TILLEULS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.174088, + 45.681636 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166712", + "ref": "FR*SOD*S*MB16*67*1*_*_", + "name": "JARNAC - PLACE JEAN JAURES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197685, + 46.028155 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167121", + "ref": "FR*SOD*S*MB16*71*2*_*_", + "name": "RUFFEC - PARKING DES AMBASSADEURS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197685, + 46.028155 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167111", + "ref": "FR*SOD*S*MB16*71*1*_*_", + "name": "RUFFEC - PARKING DES AMBASSADEURS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.850099, + 46.003008 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167211", + "ref": "FR*SOD*S*MB16*72*1*_*_", + "name": "SAINT CHRISTOPHE - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.850099, + 46.003008 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167212", + "ref": "FR*SOD*S*MB16*72*1*_*_", + "name": "SAINT CHRISTOPHE - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.153052, + 45.470035 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167312", + "ref": "FR*SOD*S*MB16*73*1*_*_", + "name": "BARBEZIEUX-SAINT HILAIRE - AVENUE NELSON MANDELA", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.153052, + 45.470035 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167314", + "ref": "FR*SOD*S*MB16*73*1*_*_", + "name": "BARBEZIEUX-SAINT HILAIRE - AVENUE NELSON MANDELA", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.153052, + 45.470035 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167311", + "ref": "FR*SOD*S*MB16*73*1*_*_", + "name": "BARBEZIEUX-SAINT HILAIRE - AVENUE NELSON MANDELA", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.049567, + 45.624888 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166811", + "ref": "FR*SOD*S*MB16*68*1*_*_", + "name": "NERSAC - PARKING RUE DE LISLE DESPAGNAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.174088, + 45.681636 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166711", + "ref": "FR*SOD*S*MB16*67*1*_*_", + "name": "JARNAC - PLACE JEAN JAURES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.674923, + 45.88549 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161811", + "ref": "FR*SOD*S*MB16*18*1*_*_", + "name": "EXIDEUIL SUR VIENNE - PLACE DE LA SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197387, + 45.662282 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166212", + "ref": "FR*SOD*S*MB16*62*1*_*_", + "name": "LISLE DESPAGNAC - PARKING RUE ANATOLE FRANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.035488, + 45.272907 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165811", + "ref": "FR*SOD*S*MB16*58*1*_*_", + "name": "CHALAIS - CHEZ FAGNARD - AIRE DE COVOITURAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.035488, + 45.272907 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165812", + "ref": "FR*SOD*S*MB16*58*1*_*_", + "name": "CHALAIS - CHEZ FAGNARD - AIRE DE COVOITURAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.389289, + 45.739451 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165911", + "ref": "FR*SOD*S*MB16*59*1*_*_", + "name": "LA ROCHEFOUCAULD-EN-ANGOUMOIS - PARKING SALLE DES FETES - LA ROCHEFOUCAULD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.057746, + 45.600461 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166011", + "ref": "FR*SOD*S*MB16*60*1*_*_", + "name": "CHATEAUNEUF SUR CHARENTE - PLACE DU VIEUX MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.057746, + 45.600461 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166012", + "ref": "FR*SOD*S*MB16*60*1*_*_", + "name": "CHATEAUNEUF SUR CHARENTE - PLACE DU VIEUX MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.053886, + 45.599658 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166112", + "ref": "FR*SOD*S*MB16*61*1*_*_", + "name": "CHATEAUNEUF SUR CHARENTE - PARKING DE LA PAIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.053886, + 45.599658 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166111", + "ref": "FR*SOD*S*MB16*61*1*_*_", + "name": "CHATEAUNEUF SUR CHARENTE - PARKING DE LA PAIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197387, + 45.662282 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166211", + "ref": "FR*SOD*S*MB16*62*1*_*_", + "name": "LISLE DESPAGNAC - PARKING RUE ANATOLE FRANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.250935, + 45.622856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166612", + "ref": "FR*SOD*S*MB16*66*1*_*_", + "name": "GARAT - PARKING SAINTE-CATHERINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.142347, + 45.644203 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166311", + "ref": "FR*SOD*S*MB16*63*1*_*_", + "name": "SAINT MEME LES CARRIERES - ROUTE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.142347, + 45.644203 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166312", + "ref": "FR*SOD*S*MB16*63*1*_*_", + "name": "SAINT MEME LES CARRIERES - ROUTE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.158672, + 45.737022 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166411", + "ref": "FR*SOD*S*MB16*64*1*_*_", + "name": "SIGOGNE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.158672, + 45.737022 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166412", + "ref": "FR*SOD*S*MB16*64*1*_*_", + "name": "SIGOGNE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.093416, + 45.736952 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166512", + "ref": "FR*SOD*S*MB16*65*1*_*_", + "name": "VAUX ROUILLAC - PARKING SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.093416, + 45.736952 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166511", + "ref": "FR*SOD*S*MB16*65*1*_*_", + "name": "VAUX ROUILLAC - PARKING SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.250935, + 45.622856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB166611", + "ref": "FR*SOD*S*MB16*66*1*_*_", + "name": "GARAT - PARKING SAINTE-CATHERINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.153052, + 45.470035 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167313", + "ref": "FR*SOD*S*MB16*73*1*_*_", + "name": "BARBEZIEUX-SAINT HILAIRE - AVENUE NELSON MANDELA", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.154645, + 45.585627 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167411", + "ref": "FR*SOD*S*MB16*74*1*_*_", + "name": "VOEUIL ET GIGET - ROUTE DE TORSAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.154645, + 45.585627 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167412", + "ref": "FR*SOD*S*MB16*74*1*_*_", + "name": "VOEUIL ET GIGET - ROUTE DE TORSAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.153031, + 45.473186 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16512", + "ref": "FR*SOD*S*MB16*5*1*_*_", + "name": "BARBEZIEUX-SAINT HILAIRE - PARKING JEAN MONNET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.116474, + 45.953819 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16911", + "ref": "FR*SOD*S*MB16*9*1*_*_", + "name": "CHARME - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71928, + 45.874187 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16811", + "ref": "FR*SOD*S*MB16*8*1*_*_", + "name": "CHABANAIS - PLACE COLBERT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71928, + 45.874187 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16812", + "ref": "FR*SOD*S*MB16*8*1*_*_", + "name": "CHABANAIS - PLACE COLBERT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.044549, + 45.331318 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16711", + "ref": "FR*SOD*S*MB16*7*1*_*_", + "name": "BROSSAC - PARKING SALLES DE FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.044549, + 45.331318 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16712", + "ref": "FR*SOD*S*MB16*7*1*_*_", + "name": "BROSSAC - PARKING SALLES DE FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.158139, + 45.470455 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16612", + "ref": "FR*SOD*S*MB16*6*1*_*_", + "name": "BARBEZIEUX-SAINT HILAIRE - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.158139, + 45.470455 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16611", + "ref": "FR*SOD*S*MB16*6*1*_*_", + "name": "BARBEZIEUX-SAINT HILAIRE - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.153031, + 45.473186 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16511", + "ref": "FR*SOD*S*MB16*5*1*_*_", + "name": "BARBEZIEUX-SAINT HILAIRE - PARKING JEAN MONNET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.228827, + 45.678441 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167512", + "ref": "FR*SOD*S*MB16*75*1*_*_", + "name": "RUELLE SUR TOUVRE- PLACE AUGUSTE ROYER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.158627, + 45.472511 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16412", + "ref": "FR*SOD*S*MB16*4*1*_*_", + "name": "BARBEZIEUX-SAINT HILAIRE - AVENUE DU 14 JUILLET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.158627, + 45.472511 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16411", + "ref": "FR*SOD*S*MB16*4*1*_*_", + "name": "BARBEZIEUX-SAINT HILAIRE - AVENUE DU 14 JUILLET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.512917, + 46.026398 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16312", + "ref": "FR*SOD*S*MB16*3*1*_*_", + "name": "ALLOUE - RUE EMILE BELLY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.512917, + 46.026398 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16311", + "ref": "FR*SOD*S*MB16*3*1*_*_", + "name": "ALLOUE - RUE EMILE BELLY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.028132, + 45.894077 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16212", + "ref": "FR*SOD*S*MB16*2*1*_*_", + "name": "AIGRE - VILLEJESUS - PLACE DE LGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.028132, + 45.894077 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16211", + "ref": "FR*SOD*S*MB16*2*1*_*_", + "name": "AIGRE - VILLEJESUS - PLACE DE LGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.010372, + 45.893837 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16112", + "ref": "FR*SOD*S*MB16*1*1*_*_", + "name": "AIGRE - PLACE DE LHOTEL DE VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.116474, + 45.953819 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16912", + "ref": "FR*SOD*S*MB16*9*1*_*_", + "name": "CHARME - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.455497, + 45.822887 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161012", + "ref": "FR*SOD*S*MB16*10*1*_*_", + "name": "CHASSENEUIL SUR BONNIEURE - PARKING DU GYMNASE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.455497, + 45.822887 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161011", + "ref": "FR*SOD*S*MB16*10*1*_*_", + "name": "CHASSENEUIL SUR BONNIEURE - PARKING DU GYMNASE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.448823, + 45.824127 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161112", + "ref": "FR*SOD*S*MB16*11*1*_*_", + "name": "CHASSENEUIL SUR BONNIEURE - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.228827, + 45.678441 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167511", + "ref": "FR*SOD*S*MB16*75*1*_*_", + "name": "RUELLE SUR TOUVRE- PLACE AUGUSTE ROYER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.050373, + 45.599652 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167611", + "ref": "FR*SOD*S*MB16*76*1*_*_", + "name": "CHATEAUNEUF SUR CHARENTE - PLACE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.050373, + 45.599652 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB167612", + "ref": "FR*SOD*S*MB16*76*1*_*_", + "name": "CHATEAUNEUF SUR CHARENTE - PLACE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.782702, + 45.894882 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161712", + "ref": "FR*SOD*S*MB16*17*1*_*_", + "name": "ETAGNAC - PARKING DE LA SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.277132, + 45.557682 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161611", + "ref": "FR*SOD*S*MB16*16*1*_*_", + "name": "DIGNAC - PARKING COMMUNAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.277132, + 45.557682 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161612", + "ref": "FR*SOD*S*MB16*16*1*_*_", + "name": "DIGNAC - PARKING COMMUNAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.134252, + 45.987717 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161512", + "ref": "FR*SOD*S*MB16*15*1*_*_", + "name": "COURCOME - PLACE DE LANCIENNE MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.134252, + 45.987717 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161511", + "ref": "FR*SOD*S*MB16*15*1*_*_", + "name": "COURCOME - PLACE DE LANCIENNE MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.668719, + 46.019272 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161411", + "ref": "FR*SOD*S*MB16*14*1*_*_", + "name": "CONFOLENS - PLACE MAURICE CROISLEBOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.668719, + 46.019272 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161412", + "ref": "FR*SOD*S*MB16*14*1*_*_", + "name": "CONFOLENS - PLACE MAURICE CROISLEBOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.673548, + 46.015385 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161312", + "ref": "FR*SOD*S*MB16*13*1*_*_", + "name": "CONFOLENS - PLACE DES MARRONNIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.673548, + 46.015385 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161311", + "ref": "FR*SOD*S*MB16*13*1*_*_", + "name": "CONFOLENS - PLACE DES MARRONNIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.452225, + 45.824615 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161212", + "ref": "FR*SOD*S*MB16*12*1*_*_", + "name": "CHASSENEUIL SUR BONNIEURE - PLACE DU CHAMP DE MARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.452225, + 45.824615 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161211", + "ref": "FR*SOD*S*MB16*12*1*_*_", + "name": "CHASSENEUIL SUR BONNIEURE - PLACE DU CHAMP DE MARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.448823, + 45.824127 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161111", + "ref": "FR*SOD*S*MB16*11*1*_*_", + "name": "CHASSENEUIL SUR BONNIEURE - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.500211, + 45.665909 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165711", + "ref": "FR*SOD*S*MB16*57*1*_*_", + "name": "MONTBRON - PARKING COMMUNAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.500211, + 45.665909 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165712", + "ref": "FR*SOD*S*MB16*57*1*_*_", + "name": "MONTBRON - PARKING COMMUNAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.276775, + 45.48212 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165612", + "ref": "FR*SOD*S*MB16*56*1*_*_", + "name": "VILLEBOIS-LAVALETTE - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.742937, + 45.828297 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163211", + "ref": "FR*SOD*S*MB16*32*1*_*_", + "name": "PRESSIGNAC - PARKING MULTIPLE RURAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13251, + 45.398552 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162812", + "ref": "FR*SOD*S*MB16*28*1*_*_", + "name": "MONTMOREAU - PARKING DE LA TUDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.897107, + 45.983635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162912", + "ref": "FR*SOD*S*MB16*29*1*_*_", + "name": "MONTROLLET - PLACE BEAULIEU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.897107, + 45.983635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162911", + "ref": "FR*SOD*S*MB16*29*1*_*_", + "name": "MONTROLLET - PLACE BEAULIEU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.123815, + 45.553669 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163012", + "ref": "FR*SOD*S*MB16*30*1*_*_", + "name": "MOUTHIERS SUR BOEME - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.123815, + 45.553669 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163011", + "ref": "FR*SOD*S*MB16*30*1*_*_", + "name": "MOUTHIERS SUR BOEME - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.784798, + 46.121174 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163112", + "ref": "FR*SOD*S*MB16*31*1*_*_", + "name": "ORADOUR-FANAIS - PARKING DE LA SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.784798, + 46.121174 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163111", + "ref": "FR*SOD*S*MB16*31*1*_*_", + "name": "ORADOUR-FANAIS - PARKING DE LA SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.742937, + 45.828297 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163212", + "ref": "FR*SOD*S*MB16*32*1*_*_", + "name": "PRESSIGNAC - PARKING MULTIPLE RURAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.007294, + 45.953514 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163712", + "ref": "FR*SOD*S*MB16*37*1*_*_", + "name": "SAINT FRAIGNE - ALLEE DES JARDINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.064496, + 45.774048 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163312", + "ref": "FR*SOD*S*MB16*33*1*_*_", + "name": "ROUILLAC - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.064496, + 45.774048 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163311", + "ref": "FR*SOD*S*MB16*33*1*_*_", + "name": "ROUILLAC - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.065062, + 45.775581 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163412", + "ref": "FR*SOD*S*MB16*34*1*_*_", + "name": "ROUILLAC - PLACE THIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.065062, + 45.775581 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163411", + "ref": "FR*SOD*S*MB16*34*1*_*_", + "name": "ROUILLAC - PLACE THIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.140125, + 45.804214 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163512", + "ref": "FR*SOD*S*MB16*35*1*_*_", + "name": "SAINT AMANT DE BOIXE - ZONE DEMPLOI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.140125, + 45.804214 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163511", + "ref": "FR*SOD*S*MB16*35*1*_*_", + "name": "SAINT AMANT DE BOIXE - ZONE DEMPLOI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.466107, + 45.894127 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163611", + "ref": "FR*SOD*S*MB16*36*1*_*_", + "name": "SAINT CLAUD - PLACE SADI CARNOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13251, + 45.398552 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162811", + "ref": "FR*SOD*S*MB16*28*1*_*_", + "name": "MONTMOREAU - PARKING DE LA TUDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.142127, + 45.450443 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162711", + "ref": "FR*SOD*S*MB16*27*1*_*_", + "name": "MONTMOREAU - PARKING DE AIGNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.142127, + 45.450443 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162712", + "ref": "FR*SOD*S*MB16*27*1*_*_", + "name": "MONTMOREAU - PARKING DE AIGNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130669, + 45.397438 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162612", + "ref": "FR*SOD*S*MB16*26*1*_*_", + "name": "MONTMOREAU - AVENUE HENRI DUNANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.109904, + 45.887856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161912", + "ref": "FR*SOD*S*MB16*19*1*_*_", + "name": "LUXE - PLACE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.109904, + 45.887856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161911", + "ref": "FR*SOD*S*MB16*19*1*_*_", + "name": "LUXE - PLACE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.177472, + 45.852036 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162011", + "ref": "FR*SOD*S*MB16*20*1*_*_", + "name": "MAINE DE BOIXE - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.177472, + 45.852036 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162012", + "ref": "FR*SOD*S*MB16*20*1*_*_", + "name": "MAINE DE BOIXE - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.178614, + 45.875145 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162112", + "ref": "FR*SOD*S*MB16*21*1*_*_", + "name": "MANSLE - PLACE DE LEUROPE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.178614, + 45.875145 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162111", + "ref": "FR*SOD*S*MB16*21*1*_*_", + "name": "MANSLE - PLACE DE LEUROPE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.443896, + 45.611801 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162212", + "ref": "FR*SOD*S*MB16*22*1*_*_", + "name": "MARTHON - PLACE DU PIGEONNIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.443896, + 45.611801 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162211", + "ref": "FR*SOD*S*MB16*22*1*_*_", + "name": "MARTHON - PLACE DU PIGEONNIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.652945, + 45.779949 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162311", + "ref": "FR*SOD*S*MB16*23*1*_*_", + "name": "MASSIGNAC - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.652945, + 45.779949 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162312", + "ref": "FR*SOD*S*MB16*23*1*_*_", + "name": "MASSIGNAC - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.782702, + 45.894882 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161711", + "ref": "FR*SOD*S*MB16*17*1*_*_", + "name": "ETAGNAC - PARKING DE LA SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.082316, + 45.69619 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162411", + "ref": "FR*SOD*S*MB16*24*1*_*_", + "name": "MERIGNAC - IMPASSE DES CADUCEES - POLE MEDICAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.551885, + 45.777496 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162511", + "ref": "FR*SOD*S*MB16*25*1*_*_", + "name": "MONTEMBOEUF - PLACE LAURENT PRAT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.551885, + 45.777496 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162512", + "ref": "FR*SOD*S*MB16*25*1*_*_", + "name": "MONTEMBOEUF - PLACE LAURENT PRAT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130669, + 45.397438 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB162611", + "ref": "FR*SOD*S*MB16*26*1*_*_", + "name": "MONTMOREAU - AVENUE HENRI DUNANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.466107, + 45.894127 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163612", + "ref": "FR*SOD*S*MB16*36*1*_*_", + "name": "SAINT CLAUD - PLACE SADI CARNOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.007294, + 45.953514 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163711", + "ref": "FR*SOD*S*MB16*37*1*_*_", + "name": "SAINT FRAIGNE - ALLEE DES JARDINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.276775, + 45.48212 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165611", + "ref": "FR*SOD*S*MB16*56*1*_*_", + "name": "VILLEBOIS-LAVALETTE - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.360679, + 45.737043 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165111", + "ref": "FR*SOD*S*MB16*51*1*_*_", + "name": "LA ROCHEFOUCAULD-EN-ANGOUMOIS - PLACE GERARD VANDEPUTTE - SAINT PROJET-SAINT CONSTANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23647, + 45.383097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164811", + "ref": "FR*SOD*S*MB16*48*1*_*_", + "name": "BAIGNES-SAINTE RADEGONDE - PARKING MAIRIE - RAMPE SAINT NICOLAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23647, + 45.383097 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164812", + "ref": "FR*SOD*S*MB16*48*1*_*_", + "name": "BAIGNES-SAINTE RADEGONDE - PARKING MAIRIE - RAMPE SAINT NICOLAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.043452, + 45.271091 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164911", + "ref": "FR*SOD*S*MB16*49*1*_*_", + "name": "CHALAIS - AVENUE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.043452, + 45.271091 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164912", + "ref": "FR*SOD*S*MB16*49*1*_*_", + "name": "CHALAIS - AVENUE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.174193, + 45.678883 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165012", + "ref": "FR*SOD*S*MB16*50*1*_*_", + "name": "JARNAC - PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.174193, + 45.678883 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165011", + "ref": "FR*SOD*S*MB16*50*1*_*_", + "name": "JARNAC - PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.360679, + 45.737043 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165112", + "ref": "FR*SOD*S*MB16*51*1*_*_", + "name": "LA ROCHEFOUCAULD-EN-ANGOUMOIS - PLACE GERARD VANDEPUTTE - SAINT PROJET-SAINT CONSTANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.124428, + 45.782601 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165212", + "ref": "FR*SOD*S*MB16*52*1*_*_", + "name": "MONTIGNAC-CHARENTE - PARKING DES ALBIZIAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.250624, + 45.312988 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163812", + "ref": "FR*SOD*S*MB16*38*1*_*_", + "name": "SAINT SEVERIN - PARKING DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.124428, + 45.782601 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165211", + "ref": "FR*SOD*S*MB16*52*1*_*_", + "name": "MONTIGNAC-CHARENTE - PARKING DES ALBIZIAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.411413, + 45.992661 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165311", + "ref": "FR*SOD*S*MB16*53*1*_*_", + "name": "CHAMPAGNE-MOUTON - PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.411413, + 45.992661 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165312", + "ref": "FR*SOD*S*MB16*53*1*_*_", + "name": "CHAMPAGNE-MOUTON - PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.074098, + 45.814956 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165412", + "ref": "FR*SOD*S*MB16*54*1*_*_", + "name": "VOUHARTE - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.074098, + 45.814956 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165411", + "ref": "FR*SOD*S*MB16*54*1*_*_", + "name": "VOUHARTE - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22732, + 45.982833 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165511", + "ref": "FR*SOD*S*MB16*55*1*_*_", + "name": "VERTEUIL-SUR-CHARENTE - PARKING RUE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22732, + 45.982833 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB165512", + "ref": "FR*SOD*S*MB16*55*1*_*_", + "name": "VERTEUIL-SUR-CHARENTE - PARKING RUE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.169304, + 45.271808 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164711", + "ref": "FR*SOD*S*MB16*47*1*_*_", + "name": "AUBETERRE-SUR-DRONNE - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.169304, + 45.271808 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164712", + "ref": "FR*SOD*S*MB16*47*1*_*_", + "name": "AUBETERRE-SUR-DRONNE - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.646388, + 45.993485 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164611", + "ref": "FR*SOD*S*MB16*46*1*_*_", + "name": "ANSAC-SUR-VIENNE - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.646388, + 45.993485 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164612", + "ref": "FR*SOD*S*MB16*46*1*_*_", + "name": "ANSAC-SUR-VIENNE - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.250624, + 45.312988 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163811", + "ref": "FR*SOD*S*MB16*38*1*_*_", + "name": "SAINT SEVERIN - PARKING DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.162199, + 45.959202 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163911", + "ref": "FR*SOD*S*MB16*39*1*_*_", + "name": "SALLES DE VILLEFAGNAN - PLACE COMMUNALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.162199, + 45.959202 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB163912", + "ref": "FR*SOD*S*MB16*39*1*_*_", + "name": "SALLES DE VILLEFAGNAN - PLACE COMMUNALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.582232, + 45.886162 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164011", + "ref": "FR*SOD*S*MB16*40*1*_*_", + "name": "TERRES-DE-HAUTE-CHARENTE - ROUMAZIERES-LOUBERT - PARKING DU MARCHE COUVERT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.582232, + 45.886162 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164012", + "ref": "FR*SOD*S*MB16*40*1*_*_", + "name": "TERRES-DE-HAUTE-CHARENTE - ROUMAZIERES-LOUBERT - PARKING DU MARCHE COUVERT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.307256, + 45.887142 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164111", + "ref": "FR*SOD*S*MB16*41*1*_*_", + "name": "VALENCE - PIECE DU PONT LE BOURG RD 739 ROUTE DE MANSLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.307256, + 45.887142 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164112", + "ref": "FR*SOD*S*MB16*41*1*_*_", + "name": "VALENCE - PIECE DU PONT LE BOURG RD 739 ROUTE DE MANSLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.127878, + 45.760067 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164211", + "ref": "FR*SOD*S*MB16*42*1*_*_", + "name": "VARS - PARKING DES COLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.127878, + 45.760067 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164212", + "ref": "FR*SOD*S*MB16*42*1*_*_", + "name": "VARS - PARKING DES COLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.122785, + 45.762363 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164311", + "ref": "FR*SOD*S*MB16*43*1*_*_", + "name": "VARS - PLACE DU PILORI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.122785, + 45.762363 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164312", + "ref": "FR*SOD*S*MB16*43*1*_*_", + "name": "VARS - PLACE DU PILORI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.106897, + 45.882244 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164411", + "ref": "FR*SOD*S*MB16*44*1*_*_", + "name": "VERDILLE - RUE DE LOCEAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.106897, + 45.882244 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164412", + "ref": "FR*SOD*S*MB16*44*1*_*_", + "name": "VERDILLE - RUE DE LOCEAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.033299, + 45.476361 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164511", + "ref": "FR*SOD*S*MB16*45*1*_*_", + "name": "COTEAUX DU BLANZACAIS - PARKING DU CINEMA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.033299, + 45.476361 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB164512", + "ref": "FR*SOD*S*MB16*45*1*_*_", + "name": "COTEAUX DU BLANZACAIS - PARKING DU CINEMA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.010372, + 45.893837 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB16111", + "ref": "FR*SOD*S*MB16*1*1*_*_", + "name": "AIGRE - PLACE DE LHOTEL DE VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.674923, + 45.88549 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref:EU:EVSE": "FRS16PMB161812", + "ref": "FR*SOD*S*MB16*18*1*_*_", + "name": "EXIDEUIL SUR VIENNE - PLACE DE LA SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.512033, + 43.500191 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64612", + "ref": "FR*SOD*S*MB64*6*1*_*_", + "name": "ANGLET - PLAINE DU MAHARIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.446297, + 43.339203 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645211", + "ref": "FR*SOD*S*MB64*52*1*_*_", + "name": "ESPELETTE - PARKING JAUREGUIA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.350787, + 43.265263 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643711", + "ref": "FR*SOD*S*MB64*37*1*_*_", + "name": "BIDARRAY - PARKING ARTETXEA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59103, + 43.437927 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643811", + "ref": "FR*SOD*S*MB64*38*1*_*_", + "name": "BIDART - PARKING DU LAVOIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59103, + 43.437927 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643812", + "ref": "FR*SOD*S*MB64*38*1*_*_", + "name": "BIDART - PARKING DU LAVOIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.398105, + 43.302116 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643911", + "ref": "FR*SOD*S*MB64*39*1*_*_", + "name": "BILLERE - ALLEE MONTESQUIEU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.398105, + 43.302116 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643912", + "ref": "FR*SOD*S*MB64*39*1*_*_", + "name": "BILLERE - ALLEE MONTESQUIEU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.384321, + 43.31488 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644011", + "ref": "FR*SOD*S*MB64*40*1*_*_", + "name": "BILLERE - AVENUE DU TONKIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.384321, + 43.31488 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644012", + "ref": "FR*SOD*S*MB64*40*1*_*_", + "name": "BILLERE - AVENUE DU TONKIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.352839, + 43.288059 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644112", + "ref": "FR*SOD*S*MB64*41*1*_*_", + "name": "BIZANOS - RUE GEORGES CLEMENCEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.352839, + 43.288059 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644111", + "ref": "FR*SOD*S*MB64*41*1*_*_", + "name": "BIZANOS - RUE GEORGES CLEMENCEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.281022, + 43.234398 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644211", + "ref": "FR*SOD*S*MB64*42*1*_*_", + "name": "BORDES - RTE DE LOURDES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.281022, + 43.234398 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644212", + "ref": "FR*SOD*S*MB64*42*1*_*_", + "name": "BORDES - RTE DE LOURDES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.362168, + 43.220955 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644312", + "ref": "FR*SOD*S*MB64*43*1*_*_", + "name": "BOSDARROS - ROUTE DU VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.362168, + 43.220955 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644311", + "ref": "FR*SOD*S*MB64*43*1*_*_", + "name": "BOSDARROS - ROUTE DU VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.490235, + 43.523514 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644412", + "ref": "FR*SOD*S*MB64*44*1*_*_", + "name": "BOUCAU - PLACE SEMARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.490235, + 43.523514 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644411", + "ref": "FR*SOD*S*MB64*44*1*_*_", + "name": "BOUCAU - PLACE SEMARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.400397, + 43.360764 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644511", + "ref": "FR*SOD*S*MB64*45*1*_*_", + "name": "CAMBO - PLACE SORHAINDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.400397, + 43.360764 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644512", + "ref": "FR*SOD*S*MB64*45*1*_*_", + "name": "CAMBO - PLACE SORHAINDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.400544, + 43.360828 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644612", + "ref": "FR*SOD*S*MB64*46*1*_*_", + "name": "CAMBO LES BAINS - PLACE SORHAINDE BORNE 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.400544, + 43.360828 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644611", + "ref": "FR*SOD*S*MB64*46*1*_*_", + "name": "CAMBO LES BAINS - PLACE SORHAINDE BORNE 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.013904, + 43.375095 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644711", + "ref": "FR*SOD*S*MB64*47*1*_*_", + "name": "CASTEIDE DOAT - RUE SIMIN PALAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.013904, + 43.375095 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644712", + "ref": "FR*SOD*S*MB64*47*1*_*_", + "name": "CASTEIDE DOAT - RUE SIMIN PALAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.877405, + 43.231102 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644812", + "ref": "FR*SOD*S*MB64*48*1*_*_", + "name": "CHERAUTE - AVENUE DU GENERAL CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.877405, + 43.231102 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644811", + "ref": "FR*SOD*S*MB64*48*1*_*_", + "name": "CHERAUTE - AVENUE DU GENERAL CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.665693, + 43.382233 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644911", + "ref": "FR*SOD*S*MB64*49*1*_*_", + "name": "CIBOURE - PARKING MARINELA - AVENUE FRANCOIS MITERRAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.665693, + 43.382233 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB644912", + "ref": "FR*SOD*S*MB64*49*1*_*_", + "name": "CIBOURE - PARKING MARINELA - AVENUE FRANCOIS MITERRAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.242255, + 43.181904 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645011", + "ref": "FR*SOD*S*MB64*50*1*_*_", + "name": "COARRAZE - RUE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.242255, + 43.181904 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645012", + "ref": "FR*SOD*S*MB64*50*1*_*_", + "name": "COARRAZE - RUE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510176, + 43.361061 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645112", + "ref": "FR*SOD*S*MB64*51*1*_*_", + "name": "DENGUIN - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510176, + 43.361061 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645111", + "ref": "FR*SOD*S*MB64*51*1*_*_", + "name": "DENGUIN - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.350787, + 43.265263 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643712", + "ref": "FR*SOD*S*MB64*37*1*_*_", + "name": "BIDARRAY - PARKING ARTETXEA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.138647, + 43.483562 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643611", + "ref": "FR*SOD*S*MB64*36*1*_*_", + "name": "BIDACHE - ALLEE CORISANDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.138647, + 43.483562 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643612", + "ref": "FR*SOD*S*MB64*36*1*_*_", + "name": "BIDACHE - ALLEE CORISANDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.470652, + 43.491817 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642811", + "ref": "FR*SOD*S*MB64*28*1*_*_", + "name": "BAYONNE - SQUARE LEO POUZAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.509453, + 43.446564 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642112", + "ref": "FR*SOD*S*MB64*21*1*_*_", + "name": "BASSUSSARY - PLACE BARTHELEMY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498578, + 43.479191 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642212", + "ref": "FR*SOD*S*MB64*22*1*_*_", + "name": "BAYONNE - POLO BEYRIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498578, + 43.479191 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642211", + "ref": "FR*SOD*S*MB64*22*1*_*_", + "name": "BAYONNE - POLO BEYRIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.466206, + 43.494068 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642311", + "ref": "FR*SOD*S*MB64*23*1*_*_", + "name": "BAYONNE - PLACE ALBRET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.466206, + 43.494068 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642312", + "ref": "FR*SOD*S*MB64*23*1*_*_", + "name": "BAYONNE - PLACE ALBRET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.455062, + 43.499332 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642412", + "ref": "FR*SOD*S*MB64*24*1*_*_", + "name": "BAYONNE - PLACE DES GASCONS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.455062, + 43.499332 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642411", + "ref": "FR*SOD*S*MB64*24*1*_*_", + "name": "BAYONNE - PLACE DES GASCONS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.472567, + 43.495884 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642512", + "ref": "FR*SOD*S*MB64*25*1*_*_", + "name": "BAYONNE - QUAI DE LESSEPS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.472567, + 43.495884 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642511", + "ref": "FR*SOD*S*MB64*25*1*_*_", + "name": "BAYONNE - QUAI DE LESSEPS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.477648, + 43.493511 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642611", + "ref": "FR*SOD*S*MB64*26*1*_*_", + "name": "BAYONNE - RUE JULES LABAT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.477648, + 43.493511 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642612", + "ref": "FR*SOD*S*MB64*26*1*_*_", + "name": "BAYONNE - RUE JULES LABAT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.479587, + 43.480652 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642711", + "ref": "FR*SOD*S*MB64*27*1*_*_", + "name": "BAYONNE - RUE LASSEGUETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.479587, + 43.480652 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642712", + "ref": "FR*SOD*S*MB64*27*1*_*_", + "name": "BAYONNE - RUE LASSEGUETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.470652, + 43.491817 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642812", + "ref": "FR*SOD*S*MB64*28*1*_*_", + "name": "BAYONNE - SQUARE LEO POUZAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.548945, + 43.486942 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643511", + "ref": "FR*SOD*S*MB64*35*1*_*_", + "name": "BIARRITZ - RUE RAOUL FOLLEREAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.601011, + 43.00021 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642912", + "ref": "FR*SOD*S*MB64*29*1*_*_", + "name": "BEDOUS - RUE GAMBETTA PARKING NORD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.601011, + 43.00021 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642911", + "ref": "FR*SOD*S*MB64*29*1*_*_", + "name": "BEDOUS - RUE GAMBETTA PARKING NORD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.213154, + 43.191563 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643011", + "ref": "FR*SOD*S*MB64*30*1*_*_", + "name": "BENEJACQ - IMPASSE DE LA FONTAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.213154, + 43.191563 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643012", + "ref": "FR*SOD*S*MB64*30*1*_*_", + "name": "BENEJACQ - IMPASSE DE LA FONTAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.565975, + 43.476482 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643112", + "ref": "FR*SOD*S*MB64*31*1*_*_", + "name": "BIARRITZ - PARKING BEAURIVAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.565975, + 43.476482 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643111", + "ref": "FR*SOD*S*MB64*31*1*_*_", + "name": "BIARRITZ - PARKING BEAURIVAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.554001, + 43.477989 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643212", + "ref": "FR*SOD*S*MB64*32*1*_*_", + "name": "BIARRITZ - PARKING FLOQUET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.554001, + 43.477989 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643211", + "ref": "FR*SOD*S*MB64*32*1*_*_", + "name": "BIARRITZ - PARKING FLOQUET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.563354, + 43.480667 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643311", + "ref": "FR*SOD*S*MB64*33*1*_*_", + "name": "BIARRITZ - PARKING GAMBETTA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.563354, + 43.480667 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643312", + "ref": "FR*SOD*S*MB64*33*1*_*_", + "name": "BIARRITZ - PARKING GAMBETTA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.546907, + 43.477184 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643412", + "ref": "FR*SOD*S*MB64*34*1*_*_", + "name": "BIARRITZ - RUE AUGUSTA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.546907, + 43.477184 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643411", + "ref": "FR*SOD*S*MB64*34*1*_*_", + "name": "BIARRITZ - RUE AUGUSTA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.548945, + 43.486942 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB643512", + "ref": "FR*SOD*S*MB64*35*1*_*_", + "name": "BIARRITZ - RUE RAOUL FOLLEREAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.446297, + 43.339203 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645212", + "ref": "FR*SOD*S*MB64*52*1*_*_", + "name": "ESPELETTE - PARKING JAUREGUIA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.163053, + 43.245216 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645311", + "ref": "FR*SOD*S*MB64*53*1*_*_", + "name": "ESPOEY - ROUTE DE LOURDES TENNIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.20519, + 43.474678 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642011", + "ref": "FR*SOD*S*MB64*20*1*_*_", + "name": "BARDOS - PARKING DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.163053, + 43.245216 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645312", + "ref": "FR*SOD*S*MB64*53*1*_*_", + "name": "ESPOEY - ROUTE DE LOURDES TENNIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.428099, + 42.987434 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647011", + "ref": "FR*SOD*S*MB64*70*1*_*_", + "name": "LARUNS - PARKING MEDIATHEQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.428099, + 42.987434 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647012", + "ref": "FR*SOD*S*MB64*70*1*_*_", + "name": "LARUNS - PARKING MEDIATHEQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.478445, + 43.222603 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647111", + "ref": "FR*SOD*S*MB64*71*1*_*_", + "name": "LASSEUBE - CHEMIN DU MOUROU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.478445, + 43.222603 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647112", + "ref": "FR*SOD*S*MB64*71*1*_*_", + "name": "LASSEUBE - CHEMIN DU MOUROU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.112355, + 43.449062 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647212", + "ref": "FR*SOD*S*MB64*72*1*_*_", + "name": "LEMBEYE - PLACE MARCADIEU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.112355, + 43.449062 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647211", + "ref": "FR*SOD*S*MB64*72*1*_*_", + "name": "LEMBEYE - PLACE MARCADIEU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.397803, + 43.323635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647311", + "ref": "FR*SOD*S*MB64*73*1*_*_", + "name": "LONS - AVENUE DU MOULIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.397803, + 43.323635 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647312", + "ref": "FR*SOD*S*MB64*73*1*_*_", + "name": "LONS - AVENUE DU MOULIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.392011, + 43.324577 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647412", + "ref": "FR*SOD*S*MB64*74*1*_*_", + "name": "LONS - MAIL DE COUBERTIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.392011, + 43.324577 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647411", + "ref": "FR*SOD*S*MB64*74*1*_*_", + "name": "LONS - MAIL DE COUBERTIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.350442, + 43.316139 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647512", + "ref": "FR*SOD*S*MB64*75*1*_*_", + "name": "LOUHOSSOA - PARKING DE LECOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.350442, + 43.316139 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647511", + "ref": "FR*SOD*S*MB64*75*1*_*_", + "name": "LOUHOSSOA - PARKING DE LECOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8925, + 43.22081 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647612", + "ref": "FR*SOD*S*MB64*76*1*_*_", + "name": "MAULEON - PARKING DU JEU DE PAUME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8925, + 43.22081 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647611", + "ref": "FR*SOD*S*MB64*76*1*_*_", + "name": "MAULEON - PARKING DU JEU DE PAUME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355827, + 43.279404 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647712", + "ref": "FR*SOD*S*MB64*77*1*_*_", + "name": "MAZERES LEZONS - RUE DU GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355827, + 43.279404 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647711", + "ref": "FR*SOD*S*MB64*77*1*_*_", + "name": "MAZERES LEZONS - RUE DU GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.470634, + 43.445972 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647811", + "ref": "FR*SOD*S*MB64*78*1*_*_", + "name": "MAZEROLLES - ROUTE DE ARZACQ D32", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.470634, + 43.445972 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647812", + "ref": "FR*SOD*S*MB64*78*1*_*_", + "name": "MAZEROLLES - ROUTE DE ARZACQ D32", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.579099, + 43.322563 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647911", + "ref": "FR*SOD*S*MB64*79*1*_*_", + "name": "MONEIN - JARDIN PUBLIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.579099, + 43.322563 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB647912", + "ref": "FR*SOD*S*MB64*79*1*_*_", + "name": "MONEIN - JARDIN PUBLIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.348866, + 43.369244 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648011", + "ref": "FR*SOD*S*MB64*80*1*_*_", + "name": "MONTARDON - CHEMIN LANOTS PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.348866, + 43.369244 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648012", + "ref": "FR*SOD*S*MB64*80*1*_*_", + "name": "MONTARDON - CHEMIN LANOTS PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.199239, + 43.12558 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648112", + "ref": "FR*SOD*S*MB64*81*1*_*_", + "name": "MONTAUT - RUE DES ANNETTES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.199239, + 43.12558 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648111", + "ref": "FR*SOD*S*MB64*81*1*_*_", + "name": "MONTAUT - RUE DES ANNETTES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25093, + 43.339058 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648211", + "ref": "FR*SOD*S*MB64*82*1*_*_", + "name": "MORLAAS - PARKING COMMUNAUTE DE COMMUNES DU NORD-EST BEARN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25093, + 43.339058 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648212", + "ref": "FR*SOD*S*MB64*82*1*_*_", + "name": "MORLAAS - PARKING COMMUNAUTE DE COMMUNES DU NORD-EST BEARN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.264224, + 43.344501 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648312", + "ref": "FR*SOD*S*MB64*83*1*_*_", + "name": "MORLAAS - PLACE DE LA TOUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.264224, + 43.344501 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648311", + "ref": "FR*SOD*S*MB64*83*1*_*_", + "name": "MORLAAS - PLACE DE LA TOUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.420695, + 43.468288 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648412", + "ref": "FR*SOD*S*MB64*84*1*_*_", + "name": "MOUGUERRE - PARKING HAITZ ONDO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.093103, + 43.230892 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646911", + "ref": "FR*SOD*S*MB64*69*1*_*_", + "name": "LARCEVEAU - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.093103, + 43.230892 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646912", + "ref": "FR*SOD*S*MB64*69*1*_*_", + "name": "LARCEVEAU - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.386753, + 43.487186 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646811", + "ref": "FR*SOD*S*MB64*68*1*_*_", + "name": "LAHONCE - PLACE DES COMMERCES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.244016, + 43.306767 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646012", + "ref": "FR*SOD*S*MB64*60*1*_*_", + "name": "HELETTE - PARKING D645 MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.387803, + 43.231609 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645411", + "ref": "FR*SOD*S*MB64*54*1*_*_", + "name": "GAN - RUE LOUIS BIDAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.387803, + 43.231609 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645412", + "ref": "FR*SOD*S*MB64*54*1*_*_", + "name": "GAN - RUE LOUIS BIDAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273733, + 43.558586 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645511", + "ref": "FR*SOD*S*MB64*55*1*_*_", + "name": "GARLIN - PLACE MARCADIEU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273733, + 43.558586 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645512", + "ref": "FR*SOD*S*MB64*55*1*_*_", + "name": "GARLIN - PLACE MARCADIEU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.370771, + 43.285103 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645612", + "ref": "FR*SOD*S*MB64*56*1*_*_", + "name": "GELOS - SQUARE EDOUARD HERRIOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.370771, + 43.285103 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645611", + "ref": "FR*SOD*S*MB64*56*1*_*_", + "name": "GELOS - SQUARE EDOUARD HERRIOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.052827, + 43.252918 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645712", + "ref": "FR*SOD*S*MB64*57*1*_*_", + "name": "GER - PARKING SALLE POLYVALENTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.052827, + 43.252918 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645711", + "ref": "FR*SOD*S*MB64*57*1*_*_", + "name": "GER - PARKING SALLE POLYVALENTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.608876, + 43.424664 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645812", + "ref": "FR*SOD*S*MB64*58*1*_*_", + "name": "GUETHARY - PARKING DU FRONTON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.608876, + 43.424664 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645811", + "ref": "FR*SOD*S*MB64*58*1*_*_", + "name": "GUETHARY - PARKING DU FRONTON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.303562, + 43.385555 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645912", + "ref": "FR*SOD*S*MB64*59*1*_*_", + "name": "HASPARREN - PLACE HARANA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.303562, + 43.385555 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB645911", + "ref": "FR*SOD*S*MB64*59*1*_*_", + "name": "HASPARREN - PLACE HARANA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.244016, + 43.306767 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646011", + "ref": "FR*SOD*S*MB64*60*1*_*_", + "name": "HELETTE - PARKING D645 MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.781185, + 43.368279 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646111", + "ref": "FR*SOD*S*MB64*61*1*_*_", + "name": "HENDAYE - QUAI DE LA FLORIDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.386753, + 43.487186 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646812", + "ref": "FR*SOD*S*MB64*68*1*_*_", + "name": "LAHONCE - PLACE DES COMMERCES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.781185, + 43.368279 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646112", + "ref": "FR*SOD*S*MB64*61*1*_*_", + "name": "HENDAYE - QUAI DE LA FLORIDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772589, + 43.346947 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646212", + "ref": "FR*SOD*S*MB64*62*1*_*_", + "name": "HENDAYE - RUE LEKUEDER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772589, + 43.346947 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646211", + "ref": "FR*SOD*S*MB64*62*1*_*_", + "name": "HENDAYE - RUE LEKUEDER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.428592, + 43.388065 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646311", + "ref": "FR*SOD*S*MB64*63*1*_*_", + "name": "JATXOU - PLACE DES SPORTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.428592, + 43.388065 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646312", + "ref": "FR*SOD*S*MB64*63*1*_*_", + "name": "JATXOU - PLACE DES SPORTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.391359, + 43.285931 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646412", + "ref": "FR*SOD*S*MB64*64*1*_*_", + "name": "JURANCON - RUE LOUIS BARTHOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.391359, + 43.285931 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646411", + "ref": "FR*SOD*S*MB64*64*1*_*_", + "name": "JURANCON - RUE LOUIS BARTHOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.256211, + 43.429482 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646511", + "ref": "FR*SOD*S*MB64*65*1*_*_", + "name": "LA BASTIDE DE CLAIRENCE - PARKING RD10", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.256211, + 43.429482 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646512", + "ref": "FR*SOD*S*MB64*65*1*_*_", + "name": "LA BASTIDE DE CLAIRENCE - PARKING RD10", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.850575, + 43.381123 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646611", + "ref": "FR*SOD*S*MB64*66*1*_*_", + "name": "LAAS - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.850575, + 43.381123 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646612", + "ref": "FR*SOD*S*MB64*66*1*_*_", + "name": "LAAS - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.616958, + 43.411995 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646711", + "ref": "FR*SOD*S*MB64*67*1*_*_", + "name": "LACQ - CHEMIN DU MOULIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.616958, + 43.411995 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB646712", + "ref": "FR*SOD*S*MB64*67*1*_*_", + "name": "LACQ - CHEMIN DU MOULIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.509453, + 43.446564 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642111", + "ref": "FR*SOD*S*MB64*21*1*_*_", + "name": "BASSUSSARY - PLACE BARTHELEMY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.20519, + 43.474678 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB642012", + "ref": "FR*SOD*S*MB64*20*1*_*_", + "name": "BARDOS - PARKING DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.512033, + 43.500191 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64611", + "ref": "FR*SOD*S*MB64*6*1*_*_", + "name": "ANGLET - PLAINE DU MAHARIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.03606, + 43.328079 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410912", + "ref": "FR*SOD*S*MB64*109*1*_*_", + "name": "SAINT PALAIS - RUE JEAN URRUTY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.298317, + 43.234406 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649411", + "ref": "FR*SOD*S*MB64*94*1*_*_", + "name": "OSSES - PARKING POCHE A EAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.268858, + 43.284081 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649511", + "ref": "FR*SOD*S*MB64*95*1*_*_", + "name": "OUSSE - RUE DES PYRENEES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.268858, + 43.284081 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649512", + "ref": "FR*SOD*S*MB64*95*1*_*_", + "name": "OUSSE - RUE DES PYRENEES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.354209, + 43.295143 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649612", + "ref": "FR*SOD*S*MB64*96*1*_*_", + "name": "PAU - AVENUE NITOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.354209, + 43.295143 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649611", + "ref": "FR*SOD*S*MB64*96*1*_*_", + "name": "PAU - AVENUE NITOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.366184, + 43.332508 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649712", + "ref": "FR*SOD*S*MB64*97*1*_*_", + "name": "PAU - PARKING ZENITH 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.366184, + 43.332508 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649711", + "ref": "FR*SOD*S*MB64*97*1*_*_", + "name": "PAU - PARKING ZENITH 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.366184, + 43.332508 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649811", + "ref": "FR*SOD*S*MB64*98*1*_*_", + "name": "PAU - PARKING ZENITH 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.366184, + 43.332508 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649812", + "ref": "FR*SOD*S*MB64*98*1*_*_", + "name": "PAU - PARKING ZENITH 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.370207, + 43.302959 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649911", + "ref": "FR*SOD*S*MB64*99*1*_*_", + "name": "PAU - PLACE DU FOIRAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.370207, + 43.302959 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649912", + "ref": "FR*SOD*S*MB64*99*1*_*_", + "name": "PAU - PLACE DU FOIRAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365129, + 43.310795 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410011", + "ref": "FR*SOD*S*MB64*100*1*_*_", + "name": "PAU - RUE LAVOISIER CENTRE KENNEDY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365129, + 43.310795 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410012", + "ref": "FR*SOD*S*MB64*100*1*_*_", + "name": "PAU - RUE LAVOISIER CENTRE KENNEDY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.478742, + 43.346134 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410112", + "ref": "FR*SOD*S*MB64*101*1*_*_", + "name": "POEY DE LESCAR - ZONE PRINCIPALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.478742, + 43.346134 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410111", + "ref": "FR*SOD*S*MB64*101*1*_*_", + "name": "POEY DE LESCAR - ZONE PRINCIPALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.113234, + 43.184776 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410212", + "ref": "FR*SOD*S*MB64*102*1*_*_", + "name": "PONTACQ - RUE DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.113234, + 43.184776 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410211", + "ref": "FR*SOD*S*MB64*102*1*_*_", + "name": "PONTACQ - RUE DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.550943, + 43.432129 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64711", + "ref": "FR*SOD*S*MB64*7*1*_*_", + "name": "ARBONNES - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.915612, + 43.526646 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410311", + "ref": "FR*SOD*S*MB64*103*1*_*_", + "name": "PUYOO - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30609, + 43.378071 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410411", + "ref": "FR*SOD*S*MB64*104*1*_*_", + "name": "SAINT CASTIN - ROUTE DE MAUCOR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30609, + 43.378071 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410412", + "ref": "FR*SOD*S*MB64*104*1*_*_", + "name": "SAINT CASTIN - ROUTE DE MAUCOR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.340355, + 43.178417 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410512", + "ref": "FR*SOD*S*MB64*105*1*_*_", + "name": "SAINT ETIENNE DE BAIGORRY - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.340355, + 43.178417 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410511", + "ref": "FR*SOD*S*MB64*105*1*_*_", + "name": "SAINT ETIENNE DE BAIGORRY - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.658076, + 43.387047 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410611", + "ref": "FR*SOD*S*MB64*106*1*_*_", + "name": "SAINT JEAN DE LUZ - PARKING DES PYRENEES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.658076, + 43.387047 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410612", + "ref": "FR*SOD*S*MB64*106*1*_*_", + "name": "SAINT JEAN DE LUZ - PARKING DES PYRENEES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.661432, + 43.385006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410711", + "ref": "FR*SOD*S*MB64*107*1*_*_", + "name": "SAINT JEAN DE LUZ - PARKING URDAZURI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.661432, + 43.385006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410712", + "ref": "FR*SOD*S*MB64*107*1*_*_", + "name": "SAINT JEAN DE LUZ - PARKING URDAZURI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.233588, + 43.165531 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410811", + "ref": "FR*SOD*S*MB64*108*1*_*_", + "name": "SAINT JEAN PIED DE PORT - PARKING JAI ALAI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.233588, + 43.165531 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410812", + "ref": "FR*SOD*S*MB64*108*1*_*_", + "name": "SAINT JEAN PIED DE PORT - PARKING JAI ALAI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.298317, + 43.234406 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649412", + "ref": "FR*SOD*S*MB64*94*1*_*_", + "name": "OSSES - PARKING POCHE A EAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77348, + 43.487251 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649312", + "ref": "FR*SOD*S*MB64*93*1*_*_", + "name": "ORTHEZ - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77348, + 43.487251 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649311", + "ref": "FR*SOD*S*MB64*93*1*_*_", + "name": "ORTHEZ - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.630113, + 43.370914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648511", + "ref": "FR*SOD*S*MB64*85*1*_*_", + "name": "MOURENX - BOULEVARD DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52123, + 43.526859 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64511", + "ref": "FR*SOD*S*MB64*5*1*_*_", + "name": "ANGLET - PARKING IZADIA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52123, + 43.526859 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64512", + "ref": "FR*SOD*S*MB64*5*1*_*_", + "name": "ANGLET - PARKING IZADIA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.515348, + 43.482128 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64411", + "ref": "FR*SOD*S*MB64*4*1*_*_", + "name": "ANGLET - PARKING SERVICE TECHNIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.515348, + 43.482128 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64412", + "ref": "FR*SOD*S*MB64*4*1*_*_", + "name": "ANGLET - PARKING SERVICE TECHNIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51197, + 43.48389 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64312", + "ref": "FR*SOD*S*MB64*3*1*_*_", + "name": "ANGLET - PARKING QUINTAOU", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51197, + 43.48389 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64331", + "ref": "FR*SOD*S*MB64*3*3*_*_", + "name": "ANGLET - PARKING QUINTAOU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51197, + 43.48389 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64311", + "ref": "FR*SOD*S*MB64*3*1*_*_", + "name": "ANGLET - PARKING QUINTAOU", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51197, + 43.48389 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64332", + "ref": "FR*SOD*S*MB64*3*3*_*_", + "name": "ANGLET - PARKING QUINTAOU", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.528599, + 43.49427 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64212", + "ref": "FR*SOD*S*MB64*2*1*_*_", + "name": "ANGLET - PARKING PAUL COURBIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.528599, + 43.49427 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64211", + "ref": "FR*SOD*S*MB64*2*1*_*_", + "name": "ANGLET - PARKING PAUL COURBIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.542654, + 43.499855 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64112", + "ref": "FR*SOD*S*MB64*1*1*_*_", + "name": "ANGLET - PARKING DES DAUPHINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.542654, + 43.499855 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64111", + "ref": "FR*SOD*S*MB64*1*1*_*_", + "name": "ANGLET - PARKING DES DAUPHINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.420695, + 43.468288 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648411", + "ref": "FR*SOD*S*MB64*84*1*_*_", + "name": "MOUGUERRE - PARKING HAITZ ONDO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.630113, + 43.370914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648512", + "ref": "FR*SOD*S*MB64*85*1*_*_", + "name": "MOURENX - BOULEVARD DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77197, + 43.48888 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649212", + "ref": "FR*SOD*S*MB64*92*1*_*_", + "name": "ORTHEZ - PLACE BROSSERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.342253, + 43.415913 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648612", + "ref": "FR*SOD*S*MB64*86*1*_*_", + "name": "NAVAILLES ANGOS - RUE DU BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.342253, + 43.415913 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648611", + "ref": "FR*SOD*S*MB64*86*1*_*_", + "name": "NAVAILLES ANGOS - RUE DU BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.760931, + 43.323807 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648712", + "ref": "FR*SOD*S*MB64*87*1*_*_", + "name": "NAVARRENX - PLACE DU FOIRAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.760931, + 43.323807 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648711", + "ref": "FR*SOD*S*MB64*87*1*_*_", + "name": "NAVARRENX - PLACE DU FOIRAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260889, + 43.178398 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648811", + "ref": "FR*SOD*S*MB64*88*1*_*_", + "name": "NAY - PLACE DU 8 MAI 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260889, + 43.178398 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648812", + "ref": "FR*SOD*S*MB64*88*1*_*_", + "name": "NAY - PLACE DU 8 MAI 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502143, + 43.153542 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648911", + "ref": "FR*SOD*S*MB64*89*1*_*_", + "name": "OGEU LES BAINS - AVENUE DE PAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502143, + 43.153542 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB648912", + "ref": "FR*SOD*S*MB64*89*1*_*_", + "name": "OGEU LES BAINS - AVENUE DE PAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604778, + 43.193943 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649012", + "ref": "FR*SOD*S*MB64*90*1*_*_", + "name": "OLORON SAINTE MARIE - PLACE G. CLEMENCEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604778, + 43.193943 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649011", + "ref": "FR*SOD*S*MB64*90*1*_*_", + "name": "OLORON SAINTE MARIE - PLACE G. CLEMENCEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.612117, + 43.194351 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649111", + "ref": "FR*SOD*S*MB64*91*1*_*_", + "name": "OLORON SAINTE MARIE - PARKING DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.612117, + 43.194351 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649112", + "ref": "FR*SOD*S*MB64*91*1*_*_", + "name": "OLORON SAINTE MARIE - PARKING DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77197, + 43.48888 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB649211", + "ref": "FR*SOD*S*MB64*92*1*_*_", + "name": "ORTHEZ - PLACE BROSSERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.03606, + 43.328079 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410911", + "ref": "FR*SOD*S*MB64*109*1*_*_", + "name": "SAINT PALAIS - RUE JEAN URRUTY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.549645, + 43.353794 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411011", + "ref": "FR*SOD*S*MB64*110*1*_*_", + "name": "SAINT PEE SUR NIVELLE - PLACE PRINCIPALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25735, + 43.142101 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641912", + "ref": "FR*SOD*S*MB64*19*1*_*_", + "name": "ASSON - AVENUE DES PYRENEES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.549645, + 43.353794 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411012", + "ref": "FR*SOD*S*MB64*110*1*_*_", + "name": "SAINT PEE SUR NIVELLE - PLACE PRINCIPALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3265, + 43.325056 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412711", + "ref": "FR*SOD*S*MB64*127*1*_*_", + "name": "PAU - RUE THOMAS EDISON", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.651662, + 43.433836 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412812", + "ref": "FR*SOD*S*MB64*128*1*_*_", + "name": "MONT - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.651662, + 43.433836 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412811", + "ref": "FR*SOD*S*MB64*128*1*_*_", + "name": "MONT - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.586527, + 43.444202 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412912", + "ref": "FR*SOD*S*MB64*129*1*_*_", + "name": "BIDART – PLAGE ERRETEGIA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.586527, + 43.444202 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412911", + "ref": "FR*SOD*S*MB64*129*1*_*_", + "name": "BIDART – PLAGE ERRETEGIA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.550943, + 43.432129 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64712", + "ref": "FR*SOD*S*MB64*7*1*_*_", + "name": "ARBONNES - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.506672, + 43.334591 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64812", + "ref": "FR*SOD*S*MB64*8*1*_*_", + "name": "ARBUS - PLACE MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.506672, + 43.334591 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64811", + "ref": "FR*SOD*S*MB64*8*1*_*_", + "name": "ARBUS - PLACE MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.522298, + 43.437332 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64912", + "ref": "FR*SOD*S*MB64*9*1*_*_", + "name": "ARCANGUES - PARKING DU TRINQUET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.522298, + 43.437332 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB64911", + "ref": "FR*SOD*S*MB64*9*1*_*_", + "name": "ARCANGUES - PARKING DU TRINQUET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.689243, + 43.260807 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641011", + "ref": "FR*SOD*S*MB64*10*1*_*_", + "name": "AREN - RUE CARRERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.689243, + 43.260807 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641012", + "ref": "FR*SOD*S*MB64*10*1*_*_", + "name": "AREN - RUE CARRERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.715234, + 43.095051 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641111", + "ref": "FR*SOD*S*MB64*11*1*_*_", + "name": "ARETTE - ROUTE DISSOR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.715234, + 43.095051 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641112", + "ref": "FR*SOD*S*MB64*11*1*_*_", + "name": "ARETTE - ROUTE DISSOR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.744628, + 42.977497 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641212", + "ref": "FR*SOD*S*MB64*12*1*_*_", + "name": "ARETTE LA PIERRE SAINT MARTIN - PARKING OFFICE DE TOURISME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.744628, + 42.977497 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641211", + "ref": "FR*SOD*S*MB64*12*1*_*_", + "name": "ARETTE LA PIERRE SAINT MARTIN - PARKING OFFICE DE TOURISME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.615299, + 43.464344 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641312", + "ref": "FR*SOD*S*MB64*13*1*_*_", + "name": "ARTHEZ DE BEARN - PLACE DU PALAIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.615299, + 43.464344 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641311", + "ref": "FR*SOD*S*MB64*13*1*_*_", + "name": "ARTHEZ DE BEARN - PLACE DU PALAIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.249037, + 43.275677 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641411", + "ref": "FR*SOD*S*MB64*14*1*_*_", + "name": "ARTIGUELOUTAN - RUE DE LA VALLEE DE LOUSSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.249037, + 43.275677 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641412", + "ref": "FR*SOD*S*MB64*14*1*_*_", + "name": "ARTIGUELOUTAN - RUE DE LA VALLEE DE LOUSSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.475503, + 43.31702 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641511", + "ref": "FR*SOD*S*MB64*15*1*_*_", + "name": "ARTIGUELOUVE - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.475503, + 43.31702 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641512", + "ref": "FR*SOD*S*MB64*15*1*_*_", + "name": "ARTIGUELOUVE - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.429515, + 43.103352 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641611", + "ref": "FR*SOD*S*MB64*16*1*_*_", + "name": "ARUDY - RUE DES ECOLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.429515, + 43.103352 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641612", + "ref": "FR*SOD*S*MB64*16*1*_*_", + "name": "ARUDY - RUE DES ECOLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.410083, + 43.534473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641712", + "ref": "FR*SOD*S*MB64*17*1*_*_", + "name": "ARZACQ - PLACE MARCADIEU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.410083, + 43.534473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641711", + "ref": "FR*SOD*S*MB64*17*1*_*_", + "name": "ARZACQ - PLACE MARCADIEU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.618273, + 43.345978 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641811", + "ref": "FR*SOD*S*MB64*18*1*_*_", + "name": "ASCAIN - PARKING XURIO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.618273, + 43.345978 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641812", + "ref": "FR*SOD*S*MB64*18*1*_*_", + "name": "ASCAIN - PARKING XURIO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25735, + 43.142101 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB641911", + "ref": "FR*SOD*S*MB64*19*1*_*_", + "name": "ASSON - AVENUE DES PYRENEES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.454603, + 43.436344 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412611", + "ref": "FR*SOD*S*MB64*126*1*_*_", + "name": "VILLEFRANQUE - CHEMIN BAHUNENIA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.454603, + 43.436344 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412612", + "ref": "FR*SOD*S*MB64*126*1*_*_", + "name": "VILLEFRANQUE - CHEMIN BAHUNENIA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.432928, + 43.39959 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412512", + "ref": "FR*SOD*S*MB64*125*1*_*_", + "name": "UZEIN - PLACE DE LA MUSIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.377164, + 43.379723 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411712", + "ref": "FR*SOD*S*MB64*117*1*_*_", + "name": "SERRES CASTET - CHEMIN DE LIBEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.458963, + 43.47879 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411111", + "ref": "FR*SOD*S*MB64*111*1*_*_", + "name": "SAINT PIERRE DIRUBE - PARKING DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.458963, + 43.47879 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411112", + "ref": "FR*SOD*S*MB64*111*1*_*_", + "name": "SAINT PIERRE DIRUBE - PARKING DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9301, + 43.472912 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411211", + "ref": "FR*SOD*S*MB64*112*1*_*_", + "name": "SALIES DE BEARN - PARKING DU CASINO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9301, + 43.472912 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411212", + "ref": "FR*SOD*S*MB64*112*1*_*_", + "name": "SALIES DE BEARN - PARKING DU CASINO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.579401, + 43.313419 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411312", + "ref": "FR*SOD*S*MB64*113*1*_*_", + "name": "SARE - PARKING ANNEXE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.579401, + 43.313419 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411311", + "ref": "FR*SOD*S*MB64*113*1*_*_", + "name": "SARE - PARKING ANNEXE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67319, + 43.551067 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411412", + "ref": "FR*SOD*S*MB64*114*1*_*_", + "name": "SAULT DE NAVAILLES - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67319, + 43.551067 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411411", + "ref": "FR*SOD*S*MB64*114*1*_*_", + "name": "SAULT DE NAVAILLES - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.386747, + 43.403503 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411512", + "ref": "FR*SOD*S*MB64*115*1*_*_", + "name": "SAUVAGNON - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.386747, + 43.403503 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411511", + "ref": "FR*SOD*S*MB64*115*1*_*_", + "name": "SAUVAGNON - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.940464, + 43.400017 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411611", + "ref": "FR*SOD*S*MB64*116*1*_*_", + "name": "SAUVETERRE - RUE PASTEUR RENNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.940464, + 43.400017 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411612", + "ref": "FR*SOD*S*MB64*116*1*_*_", + "name": "SAUVETERRE - RUE PASTEUR RENNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.377164, + 43.379723 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411711", + "ref": "FR*SOD*S*MB64*117*1*_*_", + "name": "SERRES CASTET - CHEMIN DE LIBEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.189169, + 43.266113 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411811", + "ref": "FR*SOD*S*MB64*118*1*_*_", + "name": "SOUMOULOU - RD817 PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.432928, + 43.39959 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412511", + "ref": "FR*SOD*S*MB64*125*1*_*_", + "name": "UZEIN - PLACE DE LA MUSIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.189169, + 43.266113 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411812", + "ref": "FR*SOD*S*MB64*118*1*_*_", + "name": "SOUMOULOU - RD817 PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.864163, + 43.116352 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411911", + "ref": "FR*SOD*S*MB64*119*1*_*_", + "name": "TARDETS - PARKING DU LAVOIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.864163, + 43.116352 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6411912", + "ref": "FR*SOD*S*MB64*119*1*_*_", + "name": "TARDETS - PARKING DU LAVOIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.336469, + 43.485744 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412011", + "ref": "FR*SOD*S*MB64*120*1*_*_", + "name": "URCUIT - PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.336469, + 43.485744 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412012", + "ref": "FR*SOD*S*MB64*120*1*_*_", + "name": "URCUIT - PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.697669, + 43.363674 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412112", + "ref": "FR*SOD*S*MB64*121*1*_*_", + "name": "URRUGNE - PARKING DABBADIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.697669, + 43.363674 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412111", + "ref": "FR*SOD*S*MB64*121*1*_*_", + "name": "URRUGNE - PARKING DABBADIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.698865, + 43.360786 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412212", + "ref": "FR*SOD*S*MB64*122*1*_*_", + "name": "URRUGNE - PARKING OSASUNA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.698865, + 43.360786 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412211", + "ref": "FR*SOD*S*MB64*122*1*_*_", + "name": "URRUGNE - PARKING OSASUNA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.292284, + 43.494446 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412312", + "ref": "FR*SOD*S*MB64*123*1*_*_", + "name": "URT - PLACE DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.292284, + 43.494446 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412311", + "ref": "FR*SOD*S*MB64*123*1*_*_", + "name": "URT - PLACE DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.455624, + 43.397102 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412411", + "ref": "FR*SOD*S*MB64*124*1*_*_", + "name": "USTARITZ - PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.455624, + 43.397102 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6412412", + "ref": "FR*SOD*S*MB64*124*1*_*_", + "name": "USTARITZ - PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.915612, + 43.526646 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref:EU:EVSE": "FRS64PMB6410312", + "ref": "FR*SOD*S*MB64*103*1*_*_", + "name": "PUYOO - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.675936, + 46.244125 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5812", + "ref": "FR*SOD*S*SYDR*58*1*_*_", + "name": "JULLIE - PARKING CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.720659, + 45.985401 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5312", + "ref": "FR*SOD*S*SYDR*53*1*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PARKING GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.536185, + 45.642682 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6212", + "ref": "FR*SOD*S*SYDR*62*1*_*_", + "name": "SAINT-MARTIN-EN-HAUT - PARKING VILLAGE VACANCES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825081, + 45.628819 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7011", + "ref": "FR*SOD*S*SYDR*70*1*_*_", + "name": "SEREZIN-DU-RHONE - PARKING ECOLE LA FONTAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825081, + 45.628819 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7012", + "ref": "FR*SOD*S*SYDR*70*1*_*_", + "name": "SEREZIN-DU-RHONE - PARKING ECOLE LA FONTAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.489594, + 45.293211 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6911", + "ref": "FR*SOD*S*SYDR*69*1*_*_", + "name": "MORNANT - PARKING GYMNASE GRANGE DODIEU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.489594, + 45.293211 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6912", + "ref": "FR*SOD*S*SYDR*69*1*_*_", + "name": "MORNANT - PARKING GYMNASE GRANGE DODIEU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.575699, + 45.907782 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6811", + "ref": "FR*SOD*S*SYDR*68*1*_*_", + "name": "LEGNY - LES PONTS TARRETS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.646585, + 46.087432 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6712", + "ref": "FR*SOD*S*SYDR*67*1*_*_", + "name": "ODENAS - PLACE 8 MAI 1945", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.646585, + 46.087432 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6713", + "ref": "FR*SOD*S*SYDR*67*1*_*_", + "name": "ODENAS - PLACE 8 MAI 1945", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.646585, + 46.087432 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6711", + "ref": "FR*SOD*S*SYDR*67*1*_*_", + "name": "ODENAS - PLACE 8 MAI 1945", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.714888, + 45.859648 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6622", + "ref": "FR*SOD*S*SYDR*66*2*_*_", + "name": "CIVRIEUX-DAZERGUES - PKG GYMNASE / RD16", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.714888, + 45.859648 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6621", + "ref": "FR*SOD*S*SYDR*66*2*_*_", + "name": "CIVRIEUX-DAZERGUES - PKG GYMNASE / RD16", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.669453, + 45.965676 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6512", + "ref": "FR*SOD*S*SYDR*65*1*_*_", + "name": "LIERGUES - PORTE DES PIERRES DOREES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.669453, + 45.965676 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6511", + "ref": "FR*SOD*S*SYDR*65*1*_*_", + "name": "LIERGUES - PORTE DES PIERRES DOREES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.717496, + 45.986943 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6461", + "ref": "FR*SOD*S*SYDR*64*6*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PARKING CHASSET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.717496, + 45.986943 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6481", + "ref": "FR*SOD*S*SYDR*64*8*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PARKING CHASSET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.717496, + 45.986943 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6451", + "ref": "FR*SOD*S*SYDR*64*5*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PARKING CHASSET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.717496, + 45.986943 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6471", + "ref": "FR*SOD*S*SYDR*64*7*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PARKING CHASSET", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.71603, + 45.99157 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6371", + "ref": "FR*SOD*S*SYDR*63*7*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PARKING BOIRON", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.71603, + 45.99157 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6361", + "ref": "FR*SOD*S*SYDR*63*6*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PARKING BOIRON", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.71603, + 45.99157 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6381", + "ref": "FR*SOD*S*SYDR*63*8*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PARKING BOIRON", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.777867, + 45.479026 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7113", + "ref": "FR*SOD*S*SYDR*71*1*_*_", + "name": "TUPIN-ET-SEMONS - PARKING RD16", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.777867, + 45.479026 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7112", + "ref": "FR*SOD*S*SYDR*71*1*_*_", + "name": "TUPIN-ET-SEMONS - PARKING RD16", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.777867, + 45.479026 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7111", + "ref": "FR*SOD*S*SYDR*71*1*_*_", + "name": "TUPIN-ET-SEMONS - PARKING RD16", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.072008, + 45.712338 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7611", + "ref": "FR*SOD*S*SYDR*76*1*_*_", + "name": "COLOMBIER SAUGNIEU - PARKING CCEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.557323, + 46.027767 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR8111", + "ref": "FR*SOD*S*SYDR*81*1*_*_", + "name": "ST CYR LE CHATOUX - PARKING CIMETIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.720225, + 46.212433 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7912", + "ref": "FR*SOD*S*SYDR*79*1*_*_", + "name": "CHENAS - PARKING CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.720225, + 46.212433 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7911", + "ref": "FR*SOD*S*SYDR*79*1*_*_", + "name": "CHENAS - PARKING CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.551768, + 45.776551 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7811", + "ref": "FR*SOD*S*SYDR*78*1*_*_", + "name": "BESSENAY - PARKING LE PRADO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.551768, + 45.776551 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7812", + "ref": "FR*SOD*S*SYDR*78*1*_*_", + "name": "BESSENAY - PARKING LE PRADO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.607217, + 45.91693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7712", + "ref": "FR*SOD*S*SYDR*77*1*_*_", + "name": "BAGNOLS - PARKING ECOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.607217, + 45.91693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7711", + "ref": "FR*SOD*S*SYDR*77*1*_*_", + "name": "BAGNOLS - PARKING ECOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.072008, + 45.712338 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7612", + "ref": "FR*SOD*S*SYDR*76*1*_*_", + "name": "COLOMBIER SAUGNIEU - PARKING CCEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401897, + 46.22657 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7512", + "ref": "FR*SOD*S*SYDR*75*1*_*_", + "name": "ST CLEMENT DE VERS - LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.028857, + 45.691996 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7211", + "ref": "FR*SOD*S*SYDR*72*1*_*_", + "name": "SAINT-BONNET-DE-MURE - PARKING FORGERON", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401897, + 46.22657 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7511", + "ref": "FR*SOD*S*SYDR*75*1*_*_", + "name": "ST CLEMENT DE VERS - LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.720416, + 45.988316 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7411", + "ref": "FR*SOD*S*SYDR*74*1*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PARKING MEDIATHEQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.720416, + 45.988316 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7412", + "ref": "FR*SOD*S*SYDR*74*1*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PARKING MEDIATHEQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.714729, + 45.989853 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7313", + "ref": "FR*SOD*S*SYDR*73*1*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PARKING HERON", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.714729, + 45.989853 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7311", + "ref": "FR*SOD*S*SYDR*73*1*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PARKING HERON", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.714729, + 45.989853 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7312", + "ref": "FR*SOD*S*SYDR*73*1*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PARKING HERON", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.028857, + 45.691996 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7213", + "ref": "FR*SOD*S*SYDR*72*1*_*_", + "name": "SAINT-BONNET-DE-MURE - PARKING FORGERON", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.028857, + 45.691996 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR7212", + "ref": "FR*SOD*S*SYDR*72*1*_*_", + "name": "SAINT-BONNET-DE-MURE - PARKING FORGERON", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.71603, + 45.99157 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6351", + "ref": "FR*SOD*S*SYDR*63*5*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PARKING BOIRON", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.536185, + 45.642682 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6211", + "ref": "FR*SOD*S*SYDR*62*1*_*_", + "name": "SAINT-MARTIN-EN-HAUT - PARKING VILLAGE VACANCES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.934166, + 45.626426 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR8212", + "ref": "FR*SOD*S*SYDR*82*1*_*_", + "name": "CHAPONNAY - PARKING RESISTANCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.634883, + 46.040888 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6112", + "ref": "FR*SOD*S*SYDR*61*1*_*_", + "name": "SALLES-ARBUISSONNAS-EN-BEAUJOLAIS - PARKING DE LA VOUTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.752542, + 46.108371 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4912", + "ref": "FR*SOD*S*SYDR*49*1*_*_", + "name": "BELLEVILLE-EN-BEAUJOLAIS - RUE DE LA REPUBLIQUE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.752542, + 46.108371 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4913", + "ref": "FR*SOD*S*SYDR*49*1*_*_", + "name": "BELLEVILLE-EN-BEAUJOLAIS - RUE DE LA REPUBLIQUE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.714179, + 45.836536 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4812", + "ref": "FR*SOD*S*SYDR*48*1*_*_", + "name": "DOMMARTIN - LA FERME DU PROST", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.714179, + 45.836536 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4811", + "ref": "FR*SOD*S*SYDR*48*1*_*_", + "name": "DOMMARTIN - LA FERME DU PROST", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711515, + 45.877443 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4712", + "ref": "FR*SOD*S*SYDR*47*1*_*_", + "name": "CHAZAY DAZERGUES - VARENNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711515, + 45.877443 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4711", + "ref": "FR*SOD*S*SYDR*47*1*_*_", + "name": "CHAZAY DAZERGUES - VARENNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.821907, + 45.495687 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4611", + "ref": "FR*SOD*S*SYDR*46*1*_*_", + "name": "AMPUIS - RUE DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.821907, + 45.495687 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4612", + "ref": "FR*SOD*S*SYDR*46*1*_*_", + "name": "AMPUIS - RUE DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.536011, + 46.207105 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4512", + "ref": "FR*SOD*S*SYDR*45*1*_*_", + "name": "MONSOLS - COL DE CRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.536011, + 46.207105 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4511", + "ref": "FR*SOD*S*SYDR*45*1*_*_", + "name": "MONSOLS - COL DE CRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.587281, + 46.153978 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4411", + "ref": "FR*SOD*S*SYDR*44*1*_*_", + "name": "BEAUJEU - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.587281, + 46.153978 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4412", + "ref": "FR*SOD*S*SYDR*44*1*_*_", + "name": "BEAUJEU - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.729213, + 46.111418 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4311", + "ref": "FR*SOD*S*SYDR*43*1*_*_", + "name": "BELLEVILLE-EN-BEAUJOLAIS - PARKING GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.729213, + 46.111418 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4312", + "ref": "FR*SOD*S*SYDR*43*1*_*_", + "name": "BELLEVILLE-EN-BEAUJOLAIS - PARKING GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.751429, + 46.104656 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4212", + "ref": "FR*SOD*S*SYDR*42*1*_*_", + "name": "BELLEVILLE-EN-BEAUJOLAIS - PARKING COVOITURAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.751429, + 46.104656 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4211", + "ref": "FR*SOD*S*SYDR*42*1*_*_", + "name": "BELLEVILLE-EN-BEAUJOLAIS - PARKING COVOITURAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.673493, + 45.620682 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4111", + "ref": "FR*SOD*S*SYDR*41*1*_*_", + "name": "MORNANT - PARKING DU SOUVENIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.673493, + 45.620682 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4112", + "ref": "FR*SOD*S*SYDR*41*1*_*_", + "name": "MORNANT - PARKING DU SOUVENIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.563659, + 45.657817 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4012", + "ref": "FR*SOD*S*SYDR*40*1*_*_", + "name": "SAINT-MARTIN-EN-HAUT - PARKING CHEMIN DU PARC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.752542, + 46.108371 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4911", + "ref": "FR*SOD*S*SYDR*49*1*_*_", + "name": "BELLEVILLE-EN-BEAUJOLAIS - RUE DE LA REPUBLIQUE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.661321, + 45.819686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5012", + "ref": "FR*SOD*S*SYDR*50*1*_*_", + "name": "LENTILLY - PARKING EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.661321, + 45.819686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5011", + "ref": "FR*SOD*S*SYDR*50*1*_*_", + "name": "LENTILLY - PARKING EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.708909, + 45.990444 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5612", + "ref": "FR*SOD*S*SYDR*56*1*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - SAINT EXUPERY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.634883, + 46.040888 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6111", + "ref": "FR*SOD*S*SYDR*61*1*_*_", + "name": "SALLES-ARBUISSONNAS-EN-BEAUJOLAIS - PARKING DE LA VOUTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.714003, + 45.987794 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6011", + "ref": "FR*SOD*S*SYDR*60*1*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PLACE DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.714003, + 45.987794 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR6012", + "ref": "FR*SOD*S*SYDR*60*1*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PLACE DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.622554, + 45.826259 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5911", + "ref": "FR*SOD*S*SYDR*59*1*_*_", + "name": "EVEUX - PLACE DU LAVOIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.622554, + 45.826259 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5912", + "ref": "FR*SOD*S*SYDR*59*1*_*_", + "name": "EVEUX - PLACE DU LAVOIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.675936, + 46.244125 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5811", + "ref": "FR*SOD*S*SYDR*58*1*_*_", + "name": "JULLIE - PARKING CENTRE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.573233, + 46.111426 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5712", + "ref": "FR*SOD*S*SYDR*57*1*_*_", + "name": "MARCHAMPT - PLACE DU MOULIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.573233, + 46.111426 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5711", + "ref": "FR*SOD*S*SYDR*57*1*_*_", + "name": "MARCHAMPT - PLACE DU MOULIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.708909, + 45.990444 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5611", + "ref": "FR*SOD*S*SYDR*56*1*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - SAINT EXUPERY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.71428, + 45.834577 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5111", + "ref": "FR*SOD*S*SYDR*51*1*_*_", + "name": "DOMMARTIN - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.126468, + 45.716651 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5512", + "ref": "FR*SOD*S*SYDR*55*1*_*_", + "name": "COLOMBIER-SAUGNIEU - PARKING MEDIATHEQUE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.126468, + 45.716651 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5511", + "ref": "FR*SOD*S*SYDR*55*1*_*_", + "name": "COLOMBIER-SAUGNIEU - PARKING MEDIATHEQUE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.714825, + 45.994463 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5411", + "ref": "FR*SOD*S*SYDR*54*1*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PARKING BALLOFFET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.714825, + 45.994463 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5412", + "ref": "FR*SOD*S*SYDR*54*1*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PARKING BALLOFFET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.720659, + 45.985401 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5311", + "ref": "FR*SOD*S*SYDR*53*1*_*_", + "name": "VILLEFRANCHE-SUR-SAONE - PARKING GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.584402, + 45.852788 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5212", + "ref": "FR*SOD*S*SYDR*52*1*_*_", + "name": "BULLY - TARDIVIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.584402, + 45.852788 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5211", + "ref": "FR*SOD*S*SYDR*52*1*_*_", + "name": "BULLY - TARDIVIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.71428, + 45.834577 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR5112", + "ref": "FR*SOD*S*SYDR*51*1*_*_", + "name": "DOMMARTIN - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.934166, + 45.626426 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR8211", + "ref": "FR*SOD*S*SYDR*82*1*_*_", + "name": "CHAPONNAY - PARKING RESISTANCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.557323, + 46.027767 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR8112", + "ref": "FR*SOD*S*SYDR*81*1*_*_", + "name": "ST CYR LE CHATOUX - PARKING CIMETIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.764807, + 45.461143 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2512", + "ref": "FR*SOD*S*SYDR*25*1*_*_", + "name": "CONDRIEU - RUE DE LINDUSTRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.998177, + 45.734077 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2011", + "ref": "FR*SOD*S*SYDR*20*1*_*_", + "name": "GENAS - RUE DE LEGALITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.743134, + 45.889597 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2111", + "ref": "FR*SOD*S*SYDR*21*1*_*_", + "name": "LES CHERES - PARKING CENTRE-VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.705451, + 46.024601 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2211", + "ref": "FR*SOD*S*SYDR*22*1*_*_", + "name": "ARNAS - PLACE DES SARMENTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.705451, + 46.024601 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2212", + "ref": "FR*SOD*S*SYDR*22*1*_*_", + "name": "ARNAS - PLACE DES SARMENTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.871368, + 45.621003 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2312", + "ref": "FR*SOD*S*SYDR*23*1*_*_", + "name": "SIMANDRES - PARKING CANTINE SCOLAIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.871368, + 45.621003 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2311", + "ref": "FR*SOD*S*SYDR*23*1*_*_", + "name": "SIMANDRES - PARKING CANTINE SCOLAIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.573959, + 45.90671 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2411", + "ref": "FR*SOD*S*SYDR*24*1*_*_", + "name": "LEGNY - PARKING RD 338", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.573959, + 45.90671 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2412", + "ref": "FR*SOD*S*SYDR*24*1*_*_", + "name": "LEGNY - PARKING RD 338", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82279, + 45.628326 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR511", + "ref": "FR*SOD*S*SYDR*5*1*_*_", + "name": "SEREZIN-DU-RHONE - PARKING ESPACE JEAN MONNET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.764807, + 45.461143 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2511", + "ref": "FR*SOD*S*SYDR*25*1*_*_", + "name": "CONDRIEU - RUE DE LINDUSTRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.112423, + 45.711155 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2611", + "ref": "FR*SOD*S*SYDR*26*1*_*_", + "name": "COLOMBIER-SAUGNIEU - PARKING DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.112423, + 45.711155 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2612", + "ref": "FR*SOD*S*SYDR*26*1*_*_", + "name": "COLOMBIER-SAUGNIEU - PARKING DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.935313, + 45.627002 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2711", + "ref": "FR*SOD*S*SYDR*27*1*_*_", + "name": "CHAPONNAY - PARKING 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82279, + 45.628326 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR512", + "ref": "FR*SOD*S*SYDR*5*1*_*_", + "name": "SEREZIN-DU-RHONE - PARKING ESPACE JEAN MONNET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.935313, + 45.627002 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2712", + "ref": "FR*SOD*S*SYDR*27*1*_*_", + "name": "CHAPONNAY - PARKING 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80452, + 45.564159 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2812", + "ref": "FR*SOD*S*SYDR*28*1*_*_", + "name": "LOIRE-SUR-RHONE - PARKING DE LANCIENNE GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80452, + 45.564159 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2811", + "ref": "FR*SOD*S*SYDR*28*1*_*_", + "name": "LOIRE-SUR-RHONE - PARKING DE LANCIENNE GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.696621, + 45.988154 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2912", + "ref": "FR*SOD*S*SYDR*29*1*_*_", + "name": "GLEIZE - PARKING DU RY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.696621, + 45.988154 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2911", + "ref": "FR*SOD*S*SYDR*29*1*_*_", + "name": "GLEIZE - PARKING DU RY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.010678, + 45.644385 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3012", + "ref": "FR*SOD*S*SYDR*30*1*_*_", + "name": "SAINT-PIERRE-DE-CHANDIEU - PLACE CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.010678, + 45.644385 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3011", + "ref": "FR*SOD*S*SYDR*30*1*_*_", + "name": "SAINT-PIERRE-DE-CHANDIEU - PLACE CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.698285, + 46.191549 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3112", + "ref": "FR*SOD*S*SYDR*31*1*_*_", + "name": "FLEURIE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.698285, + 46.191549 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3111", + "ref": "FR*SOD*S*SYDR*31*1*_*_", + "name": "FLEURIE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86562, + 45.524907 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3211", + "ref": "FR*SOD*S*SYDR*32*1*_*_", + "name": "SAINTE-COLOMBE - RUE DES PETITS JARDINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86562, + 45.524907 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3212", + "ref": "FR*SOD*S*SYDR*32*1*_*_", + "name": "SAINTE-COLOMBE - RUE DES PETITS JARDINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.111309, + 45.713004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3312", + "ref": "FR*SOD*S*SYDR*33*1*_*_", + "name": "COLOMBIER-SAUGNIEU - PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.743134, + 45.889597 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2112", + "ref": "FR*SOD*S*SYDR*21*1*_*_", + "name": "LES CHERES - PARKING CENTRE-VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.998177, + 45.734077 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR2012", + "ref": "FR*SOD*S*SYDR*20*1*_*_", + "name": "GENAS - RUE DE LEGALITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.066882, + 45.75491 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3411", + "ref": "FR*SOD*S*SYDR*34*1*_*_", + "name": "PUSIGNAN - RUE DE LEGALITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.083837, + 45.801292 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1912", + "ref": "FR*SOD*S*SYDR*19*1*_*_", + "name": "JONS - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.463119, + 45.739716 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR811", + "ref": "FR*SOD*S*SYDR*8*1*_*_", + "name": "SAINT-LAURENT-DE-CHAMOUSSET - PARKING DU CENTRE 2000", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.463119, + 45.739716 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR812", + "ref": "FR*SOD*S*SYDR*8*1*_*_", + "name": "SAINT-LAURENT-DE-CHAMOUSSET - PARKING DU CENTRE 2000", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.712088, + 45.858566 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR912", + "ref": "FR*SOD*S*SYDR*9*1*_*_", + "name": "CIVRIEUX-DAZERGUES - RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.712088, + 45.858566 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR911", + "ref": "FR*SOD*S*SYDR*9*1*_*_", + "name": "CIVRIEUX-DAZERGUES - RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.700996, + 45.898624 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1011", + "ref": "FR*SOD*S*SYDR*10*1*_*_", + "name": "MORANCE - PARKING ABRI BUS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.700996, + 45.898624 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1012", + "ref": "FR*SOD*S*SYDR*10*1*_*_", + "name": "MORANCE - PARKING ABRI BUS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.789865, + 45.483864 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1112", + "ref": "FR*SOD*S*SYDR*11*1*_*_", + "name": "TUPIN-ET-SEMONS - PARKING 24 ROUTE DE LYON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.789865, + 45.483864 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1111", + "ref": "FR*SOD*S*SYDR*11*1*_*_", + "name": "TUPIN-ET-SEMONS - PARKING 24 ROUTE DE LYON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.456113, + 45.633003 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR611", + "ref": "FR*SOD*S*SYDR*6*1*_*_", + "name": "SAINT-SYMPHORIEN-SUR-COISE - PLACE DE VERDUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.649969, + 46.066545 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1211", + "ref": "FR*SOD*S*SYDR*12*1*_*_", + "name": "SAINT-ETIENNE-DES-OULLIERES - PLACE DU MONUMENT AUX MORTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.649969, + 46.066545 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1212", + "ref": "FR*SOD*S*SYDR*12*1*_*_", + "name": "SAINT-ETIENNE-DES-OULLIERES - PLACE DU MONUMENT AUX MORTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.717011, + 45.935984 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1311", + "ref": "FR*SOD*S*SYDR*13*1*_*_", + "name": "ANSE - MAIRIE-AVENUE DE BRIANNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.717011, + 45.935984 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1312", + "ref": "FR*SOD*S*SYDR*13*1*_*_", + "name": "ANSE - MAIRIE-AVENUE DE BRIANNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050034, + 45.686693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1411", + "ref": "FR*SOD*S*SYDR*14*1*_*_", + "name": "SAINT-LAURENT-DE-MURE - PARKING FOOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050034, + 45.686693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1412", + "ref": "FR*SOD*S*SYDR*14*1*_*_", + "name": "SAINT-LAURENT-DE-MURE - PARKING FOOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.015578, + 45.73785 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1512", + "ref": "FR*SOD*S*SYDR*15*1*_*_", + "name": "GENAS - PARKING ROYBET-MINJAT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.015578, + 45.73785 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1511", + "ref": "FR*SOD*S*SYDR*15*1*_*_", + "name": "GENAS - PARKING ROYBET-MINJAT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.728839, + 45.871845 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1611", + "ref": "FR*SOD*S*SYDR*16*1*_*_", + "name": "MARCILLY-DAZERGUES - PARKING RESTAURANT SCOLAIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.456113, + 45.633003 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR612", + "ref": "FR*SOD*S*SYDR*6*1*_*_", + "name": "SAINT-SYMPHORIEN-SUR-COISE - PLACE DE VERDUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.728839, + 45.871845 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1612", + "ref": "FR*SOD*S*SYDR*16*1*_*_", + "name": "MARCILLY-DAZERGUES - PARKING RESTAURANT SCOLAIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.030031, + 45.69374 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1712", + "ref": "FR*SOD*S*SYDR*17*1*_*_", + "name": "SAINT-BONNET-DE-MURE - PLACE JOANNES MARIUS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.030031, + 45.69374 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1711", + "ref": "FR*SOD*S*SYDR*17*1*_*_", + "name": "SAINT-BONNET-DE-MURE - PLACE JOANNES MARIUS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.985571, + 45.654184 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1811", + "ref": "FR*SOD*S*SYDR*18*1*_*_", + "name": "TOUSSIEU - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.985571, + 45.654184 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1812", + "ref": "FR*SOD*S*SYDR*18*1*_*_", + "name": "TOUSSIEU - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.083837, + 45.801292 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR1911", + "ref": "FR*SOD*S*SYDR*19*1*_*_", + "name": "JONS - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.111309, + 45.713004 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3311", + "ref": "FR*SOD*S*SYDR*33*1*_*_", + "name": "COLOMBIER-SAUGNIEU - PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.066882, + 45.75491 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3412", + "ref": "FR*SOD*S*SYDR*34*1*_*_", + "name": "PUSIGNAN - RUE DE LEGALITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.685948, + 45.639919 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR712", + "ref": "FR*SOD*S*SYDR*7*1*_*_", + "name": "SAINT-LAURENT-DAGNY - PARKING JONAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.563659, + 45.657817 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR4011", + "ref": "FR*SOD*S*SYDR*40*1*_*_", + "name": "SAINT-MARTIN-EN-HAUT - PARKING CHEMIN DU PARC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.748752, + 45.50388 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR111", + "ref": "FR*SOD*S*SYDR*1*1*_*_", + "name": "LES HAIES - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.584769, + 45.922797 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3512", + "ref": "FR*SOD*S*SYDR*35*1*_*_", + "name": "VAL DOINGT- PARKING DES TOURRIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.466701, + 45.791375 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR212", + "ref": "FR*SOD*S*SYDR*2*1*_*_", + "name": "MONTROTTIER - PLACE DE LA DIME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.466701, + 45.791375 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR211", + "ref": "FR*SOD*S*SYDR*2*1*_*_", + "name": "MONTROTTIER - PLACE DE LA DIME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.810038, + 45.487663 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR312", + "ref": "FR*SOD*S*SYDR*3*1*_*_", + "name": "AMPUIS - PARKING MAISON MEDICAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.810038, + 45.487663 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR311", + "ref": "FR*SOD*S*SYDR*3*1*_*_", + "name": "AMPUIS - PARKING MAISON MEDICAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.718215, + 45.551842 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR411", + "ref": "FR*SOD*S*SYDR*4*1*_*_", + "name": "ECHALAS - PARKING DU GYMNASE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.718215, + 45.551842 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR412", + "ref": "FR*SOD*S*SYDR*4*1*_*_", + "name": "ECHALAS - PARKING DU GYMNASE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.748752, + 45.50388 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR112", + "ref": "FR*SOD*S*SYDR*1*1*_*_", + "name": "LES HAIES - PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.91325, + 45.619856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3912", + "ref": "FR*SOD*S*SYDR*39*1*_*_", + "name": "MARENNES - PLACE DU CHAMP DE MARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.701152, + 45.676796 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3812", + "ref": "FR*SOD*S*SYDR*38*1*_*_", + "name": "SOUCIEU-EN-JARREST - PARKING LA FLETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.91325, + 45.619856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3911", + "ref": "FR*SOD*S*SYDR*39*1*_*_", + "name": "MARENNES - PLACE DU CHAMP DE MARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.584769, + 45.922797 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3511", + "ref": "FR*SOD*S*SYDR*35*1*_*_", + "name": "VAL DOINGT- PARKING DES TOURRIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.680341, + 46.160492 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3612", + "ref": "FR*SOD*S*SYDR*36*1*_*_", + "name": "VILLIE-MORGON - BOULEVARD DU PARC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.680341, + 46.160492 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3611", + "ref": "FR*SOD*S*SYDR*36*1*_*_", + "name": "VILLIE-MORGON - BOULEVARD DU PARC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.68011, + 45.855128 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3712", + "ref": "FR*SOD*S*SYDR*37*1*_*_", + "name": "LOZANNE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.68011, + 45.855128 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3711", + "ref": "FR*SOD*S*SYDR*37*1*_*_", + "name": "LOZANNE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.685948, + 45.639919 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR711", + "ref": "FR*SOD*S*SYDR*7*1*_*_", + "name": "SAINT-LAURENT-DAGNY - PARKING JONAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.701152, + 45.676796 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref:EU:EVSE": "FRS69PSYDR3811", + "ref": "FR*SOD*S*SYDR*38*1*_*_", + "name": "SOUCIEU-EN-JARREST - PARKING LA FLETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8501, + 44.361 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "433704889", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA PICOTY", + "ref:EU:EVSE": "FRPA1PAVPT212", + "ref": "FR*SOD*S*AVPT*2*1*_*_", + "name": "AIRE DE PORTE DES LANDES EST", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.85208, + 44.36182 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "433704889", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA PICOTY", + "ref:EU:EVSE": "FRPA1PAVPT112", + "ref": "FR*SOD*S*AVPT*1*1*_*_", + "name": "AIRE DE PORTE DES LANDES OUEST", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.85208, + 44.36182 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "433704889", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA PICOTY", + "ref:EU:EVSE": "FRPA1PAVPT111", + "ref": "FR*SOD*S*AVPT*1*1*_*_", + "name": "AIRE DE PORTE DES LANDES OUEST", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.456431, + 45.622261 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "433704889", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA PICOTY", + "ref:EU:EVSE": "FRPA1PAVPT321", + "ref": "FR*SOD*S*AVPT*3*2*_*_", + "name": "AIRE DE CHAVANON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.509783, + 47.309481 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "433704889", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA PICOTY", + "ref:EU:EVSE": "FRPA1PAVPT411", + "ref": "FR*SOD*S*AVPT*4*1*_*_", + "name": "AIRE DES JARDINS DE VILLANDRY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319254, + 49.320532 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "433704889", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA PICOTY", + "ref:EU:EVSE": "FRPA1PAVPT511", + "ref": "FR*SOD*S*AVPT*5*1*_*_", + "name": "AIRE DE BEUZEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046351, + 50.528935 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "433704889", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA PICOTY", + "ref:EU:EVSE": "FRPA1PAVPT711", + "ref": "FR*SOD*S*AVPT*7*1*_*_", + "name": "AIRE DE PHALEMPIN EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.090126, + 43.939368 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "433704889", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA PICOTY", + "ref:EU:EVSE": "FRPA1PAVPT811", + "ref": "FR*SOD*S*AVPT*8*1*_*_", + "name": "AIRE DE LOCEAN OUEST", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.090126, + 43.939368 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "433704889", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA PICOTY", + "ref:EU:EVSE": "FRPA1PAVPT812", + "ref": "FR*SOD*S*AVPT*8*1*_*_", + "name": "AIRE DE LOCEAN OUEST", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8501, + 44.361 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "433704889", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA PICOTY", + "ref:EU:EVSE": "FRPA1PAVPT211", + "ref": "FR*SOD*S*AVPT*2*1*_*_", + "name": "AIRE DE PORTE DES LANDES EST", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.779958, + 45.195217 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413711", + "ref": "FR*SOD*S*MB24*137*1*_*_", + "name": "TRELISSAC - PLACE NAPOLEON MAGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.365045, + 45.346584 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414011", + "ref": "FR*SOD*S*MB24*140*1*_*_", + "name": "VERTEILLAC - PARKING DES VIEUX METIERS - LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.365045, + 45.346584 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414012", + "ref": "FR*SOD*S*MB24*140*1*_*_", + "name": "VERTEILLAC - PARKING DES VIEUX METIERS - LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.101924, + 44.850285 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413812", + "ref": "FR*SOD*S*MB24*138*1*_*_", + "name": "VELINES - ZONE DES REAUX - FACE A LA PHARMACIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.101924, + 44.850285 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413811", + "ref": "FR*SOD*S*MB24*138*1*_*_", + "name": "VELINES - ZONE DES REAUX - FACE A LA PHARMACIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.056962, + 45.270565 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413511", + "ref": "FR*SOD*S*MB24*135*1*_*_", + "name": "TOURTOIRAC - PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.779958, + 45.195217 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413712", + "ref": "FR*SOD*S*MB24*137*1*_*_", + "name": "TRELISSAC - PLACE NAPOLEON MAGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73867, + 45.196922 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413611", + "ref": "FR*SOD*S*MB24*136*1*_*_", + "name": "TRELISSAC - PARKING AVENUE GEORGES POMPIDOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73867, + 45.196922 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413612", + "ref": "FR*SOD*S*MB24*136*1*_*_", + "name": "TRELISSAC - PARKING AVENUE GEORGES POMPIDOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.165397, + 44.834118 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414112", + "ref": "FR*SOD*S*MB24*141*1*_*_", + "name": "VEZAC - PLACE REGIS MAGNOL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.056962, + 45.270565 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413512", + "ref": "FR*SOD*S*MB24*135*1*_*_", + "name": "TOURTOIRAC - PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.165397, + 44.834118 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414111", + "ref": "FR*SOD*S*MB24*141*1*_*_", + "name": "VEZAC - PLACE REGIS MAGNOL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.057228, + 44.946789 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414411", + "ref": "FR*SOD*S*MB24*144*1*_*_", + "name": "VILLEFRANCHE DE LONCHAT - RUE BUGEAUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.539875, + 45.021866 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414211", + "ref": "FR*SOD*S*MB24*142*1*_*_", + "name": "VILLAMBLARD - AVENUE EDOUARD DEPUY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.539875, + 45.021866 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414212", + "ref": "FR*SOD*S*MB24*142*1*_*_", + "name": "VILLAMBLARD - AVENUE EDOUARD DEPUY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.756159, + 45.420197 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414312", + "ref": "FR*SOD*S*MB24*143*1*_*_", + "name": "VILLARS - PARKING CIMETIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.756159, + 45.420197 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414311", + "ref": "FR*SOD*S*MB24*143*1*_*_", + "name": "VILLARS - PARKING CIMETIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.057228, + 44.946789 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414412", + "ref": "FR*SOD*S*MB24*144*1*_*_", + "name": "VILLEFRANCHE DE LONCHAT - RUE BUGEAUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.080201, + 44.629173 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414512", + "ref": "FR*SOD*S*MB24*145*1*_*_", + "name": "VILLEFRANCHE DU PERIGORD - PLACE DU  19 MARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.080201, + 44.629173 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414511", + "ref": "FR*SOD*S*MB24*145*1*_*_", + "name": "VILLEFRANCHE DU PERIGORD - PLACE DU  19 MARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.503334, + 44.870893 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414612", + "ref": "FR*SOD*S*MB24*146*1*_*_", + "name": "BERGERAC - AIRE DE COVOITURAGE - POMBONNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.662087, + 45.532616 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247311", + "ref": "FR*SOD*S*MB24*73*1*_*_", + "name": "NONTRON - BOULEVARD GAMBETTA PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.228201, + 45.129517 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245411", + "ref": "FR*SOD*S*MB24*54*1*_*_", + "name": "LE LARDIN - PLACE HENI FAURE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.468953, + 45.101334 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247212", + "ref": "FR*SOD*S*MB24*72*1*_*_", + "name": "NEUVIC - PLACE DU CHAPDAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.468953, + 45.101334 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247211", + "ref": "FR*SOD*S*MB24*72*1*_*_", + "name": "NEUVIC - PLACE DU CHAPDAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.503334, + 44.870893 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414611", + "ref": "FR*SOD*S*MB24*146*1*_*_", + "name": "BERGERAC - AIRE DE COVOITURAGE - POMBONNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88787, + 44.88431 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2416011", + "ref": "FR*SOD*S*MB24*160*1*_*_", + "name": "LIMEUIL - RUE DU PORT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.503334, + 44.870893 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414611", + "ref": "FR*SOD*S*MB24*146*1*_*_", + "name": "BERGERAC - AIRE DE COVOITURAGE - POMBONNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.12589, + 45.29469 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415421", + "ref": "FR*SOD*S*MB24*154*2*_*_", + "name": "CHERVEIX-CUBAS - PLACE GOUMONDIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.526451, + 45.146795 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415112", + "ref": "FR*SOD*S*MB24*151*1*_*_", + "name": "SAINT ASTIER - PLACE DU 19 MARS 62", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.526451, + 45.146795 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415111", + "ref": "FR*SOD*S*MB24*151*1*_*_", + "name": "SAINT ASTIER - PLACE DU 19 MARS 62", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.526451, + 45.146795 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415112", + "ref": "FR*SOD*S*MB24*151*1*_*_", + "name": "SAINT ASTIER - PLACE DU 19 MARS 62", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.708895, + 45.186926 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415211", + "ref": "FR*SOD*S*MB24*152*1*_*_", + "name": "PERIGUEUX - RUE DENIS PAPIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.708895, + 45.186926 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415212", + "ref": "FR*SOD*S*MB24*152*1*_*_", + "name": "PERIGUEUX - RUE DENIS PAPIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68774, + 45.24278 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415322", + "ref": "FR*SOD*S*MB24*153*2*_*_", + "name": "CHATEAU LEVEQUE - ROUTE DE ROYER", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68774, + 45.24278 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415321", + "ref": "FR*SOD*S*MB24*153*2*_*_", + "name": "CHATEAU LEVEQUE - ROUTE DE ROYER", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.12589, + 45.29469 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415422", + "ref": "FR*SOD*S*MB24*154*2*_*_", + "name": "CHERVEIX-CUBAS - PLACE GOUMONDIE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.924316, + 45.420927 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415011", + "ref": "FR*SOD*S*MB24*150*1*_*_", + "name": "THIVIERS - PLACE DE LA LIBERATION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74053, + 44.83758 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415521", + "ref": "FR*SOD*S*MB24*155*2*_*_", + "name": "LALINDE - IMPASSE DU BASSIN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74053, + 44.83758 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415522", + "ref": "FR*SOD*S*MB24*155*2*_*_", + "name": "LALINDE - IMPASSE DU BASSIN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.81836, + 45.54399 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415621", + "ref": "FR*SOD*S*MB24*156*2*_*_", + "name": "SAINT-SAUD-LACOUSSIERE - PLACE DU CHAMP DE FOIRE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.81836, + 45.54399 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415622", + "ref": "FR*SOD*S*MB24*156*2*_*_", + "name": "SAINT-SAUD-LACOUSSIERE - PLACE DU CHAMP DE FOIRE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.27914, + 45.16059 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415811", + "ref": "FR*SOD*S*MB24*158*1*_*_", + "name": "LA JEMAYE-PONTEYRAUD - ETANG LA JEMAYE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.27914, + 45.16059 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415812", + "ref": "FR*SOD*S*MB24*158*1*_*_", + "name": "LA JEMAYE-PONTEYRAUD - ETANG LA JEMAYE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67401, + 45.58997 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415912", + "ref": "FR*SOD*S*MB24*159*1*_*_", + "name": "SAINT-ESTEPHE - GRAND ETANG", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.526451, + 45.146795 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415111", + "ref": "FR*SOD*S*MB24*151*1*_*_", + "name": "SAINT ASTIER - PLACE DU 19 MARS 62", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.924316, + 45.420927 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415011", + "ref": "FR*SOD*S*MB24*150*1*_*_", + "name": "THIVIERS - PLACE DE LA LIBERATION", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.503334, + 44.870893 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414612", + "ref": "FR*SOD*S*MB24*146*1*_*_", + "name": "BERGERAC - AIRE DE COVOITURAGE - POMBONNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88787, + 44.88431 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2416012", + "ref": "FR*SOD*S*MB24*160*1*_*_", + "name": "LIMEUIL - RUE DU PORT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67401, + 45.58997 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415911", + "ref": "FR*SOD*S*MB24*159*1*_*_", + "name": "SAINT-ESTEPHE - GRAND ETANG", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.688412, + 45.157291 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414712", + "ref": "FR*SOD*S*MB24*147*1*_*_", + "name": "COULOUNIEIX CHAMIERS - PLACE YVES PERON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.46317, + 44.73729 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2416212", + "ref": "FR*SOD*S*MB24*162*1*_*_", + "name": "SINGLERYAC - PEYRICHOUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.46317, + 44.73729 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2416211", + "ref": "FR*SOD*S*MB24*162*1*_*_", + "name": "SINGLERYAC - PEYRICHOUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.55972, + 45.56986 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2416112", + "ref": "FR*SOD*S*MB24*161*1*_*_", + "name": "JAVERLHAC-ET-LA-CHAPELLE-SAINT-ROBERT - PLACE DU 8 MAI 1945", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.496523, + 45.253567 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413412", + "ref": "FR*SOD*S*MB24*134*1*_*_", + "name": "TOCANE SAINT APRE - PLACE DES TILLEULS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.55972, + 45.56986 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2416111", + "ref": "FR*SOD*S*MB24*161*1*_*_", + "name": "JAVERLHAC-ET-LA-CHAPELLE-SAINT-ROBERT - PLACE DU 8 MAI 1945", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.688412, + 45.157291 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414712", + "ref": "FR*SOD*S*MB24*147*1*_*_", + "name": "COULOUNIEIX CHAMIERS - PLACE YVES PERON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.924316, + 45.420927 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415012", + "ref": "FR*SOD*S*MB24*150*1*_*_", + "name": "THIVIERS - PLACE DE LA LIBERATION", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.688412, + 45.157291 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414711", + "ref": "FR*SOD*S*MB24*147*1*_*_", + "name": "COULOUNIEIX CHAMIERS - PLACE YVES PERON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.688412, + 45.157291 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414711", + "ref": "FR*SOD*S*MB24*147*1*_*_", + "name": "COULOUNIEIX CHAMIERS - PLACE YVES PERON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.380141, + 45.481873 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414912", + "ref": "FR*SOD*S*MB24*149*1*_*_", + "name": "LA ROCHEBEAUCOURT - PARKING BASCULE - RUE DE RIBERAC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.380141, + 45.481873 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414911", + "ref": "FR*SOD*S*MB24*149*1*_*_", + "name": "LA ROCHEBEAUCOURT - PARKING BASCULE - RUE DE RIBERAC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.380141, + 45.481873 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414912", + "ref": "FR*SOD*S*MB24*149*1*_*_", + "name": "LA ROCHEBEAUCOURT - PARKING BASCULE - RUE DE RIBERAC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.380141, + 45.481873 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2414911", + "ref": "FR*SOD*S*MB24*149*1*_*_", + "name": "LA ROCHEBEAUCOURT - PARKING BASCULE - RUE DE RIBERAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.924316, + 45.420927 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2415012", + "ref": "FR*SOD*S*MB24*150*1*_*_", + "name": "THIVIERS - PLACE DE LA LIBERATION", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.496523, + 45.253567 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413411", + "ref": "FR*SOD*S*MB24*134*1*_*_", + "name": "TOCANE SAINT APRE - PLACE DES TILLEULS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.662087, + 45.532616 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247312", + "ref": "FR*SOD*S*MB24*73*1*_*_", + "name": "NONTRON - BOULEVARD GAMBETTA PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.920901, + 45.413513 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413311", + "ref": "FR*SOD*S*MB24*133*1*_*_", + "name": "THIVIERS - PLACE JEAN PAUL SARTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.86671, + 44.943237 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410011", + "ref": "FR*SOD*S*MB24*100*1*_*_", + "name": "SAINT AVIT DE VIALARD - PARKING SALLES DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.089969, + 45.011402 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411111", + "ref": "FR*SOD*S*MB24*111*1*_*_", + "name": "SAINT LEON SUR VEZERE - LE BOURG - PARKING CAMPING CARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.089969, + 45.011402 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411112", + "ref": "FR*SOD*S*MB24*111*1*_*_", + "name": "SAINT LEON SUR VEZERE - LE BOURG - PARKING CAMPING CARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.262063, + 44.745258 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411212", + "ref": "FR*SOD*S*MB24*112*1*_*_", + "name": "SAINT MARTIAL DE NABIRAT - PARKING MULTIPLE RURAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.262063, + 44.745258 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411211", + "ref": "FR*SOD*S*MB24*112*1*_*_", + "name": "SAINT MARTIAL DE NABIRAT - PARKING MULTIPLE RURAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.748864, + 45.492863 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411311", + "ref": "FR*SOD*S*MB24*113*1*_*_", + "name": "SAINT PARDOUX LA RIVIERE - PLACE DU 8 MAI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.748864, + 45.492863 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411312", + "ref": "FR*SOD*S*MB24*113*1*_*_", + "name": "SAINT PARDOUX LA RIVIERE - PLACE DU 8 MAI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.392442, + 45.201721 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411412", + "ref": "FR*SOD*S*MB24*114*1*_*_", + "name": "SAINT SULPICE DE ROUMAGNAC - PARKING LE DONZAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.392442, + 45.201721 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411411", + "ref": "FR*SOD*S*MB24*114*1*_*_", + "name": "SAINT SULPICE DE ROUMAGNAC - PARKING LE DONZAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.809715, + 44.946423 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411512", + "ref": "FR*SOD*S*MB24*115*1*_*_", + "name": "SAINTE ALVERE - PARKING AVENUE JULES FERRY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.809715, + 44.946423 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411511", + "ref": "FR*SOD*S*MB24*115*1*_*_", + "name": "SAINTE ALVERE - PARKING AVENUE JULES FERRY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.323247, + 44.974308 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411611", + "ref": "FR*SOD*S*MB24*116*1*_*_", + "name": "SALIGNAC EYVIGUES - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.323247, + 44.974308 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411612", + "ref": "FR*SOD*S*MB24*116*1*_*_", + "name": "SALIGNAC EYVIGUES - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.217427, + 44.880421 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411712", + "ref": "FR*SOD*S*MB24*117*1*_*_", + "name": "SARLAT LA CANEDA - AVENUE ARISTIDE BRIAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.217427, + 44.880421 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411711", + "ref": "FR*SOD*S*MB24*117*1*_*_", + "name": "SARLAT LA CANEDA - AVENUE ARISTIDE BRIAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.214353, + 44.883865 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411812", + "ref": "FR*SOD*S*MB24*118*1*_*_", + "name": "SARLAT LA CANEDA - PLACE DE LA LIBERATION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.791827, + 45.151276 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411011", + "ref": "FR*SOD*S*MB24*110*1*_*_", + "name": "SAINT LAURENT SUR MANOIRE BOULAZAC ISLE MANOIRE - ZADU GRAND FRONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.791827, + 45.151276 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411012", + "ref": "FR*SOD*S*MB24*110*1*_*_", + "name": "SAINT LAURENT SUR MANOIRE BOULAZAC ISLE MANOIRE - ZADU GRAND FRONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.794854, + 45.148567 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410912", + "ref": "FR*SOD*S*MB24*109*1*_*_", + "name": "SAINT LAURENT SUR MANOIRE BOULAZAC ISLE MANOIRE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.044134, + 44.868401 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410412", + "ref": "FR*SOD*S*MB24*104*1*_*_", + "name": "SAINT CYPRIEN - PLACE MACKENHEIM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.652252, + 44.842113 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410112", + "ref": "FR*SOD*S*MB24*101*1*_*_", + "name": "SAINT CAPRAISE DE LALINDE - D660 - AIR DE CAMPINGS CARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.652252, + 44.842113 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410111", + "ref": "FR*SOD*S*MB24*101*1*_*_", + "name": "SAINT CAPRAISE DE LALINDE - D660 - AIR DE CAMPINGS CARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.600149, + 45.417603 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410211", + "ref": "FR*SOD*S*MB24*102*1*_*_", + "name": "SAINT CREPIN DE RICHEMONT - PLACE DU FOIRAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.600149, + 45.417603 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410212", + "ref": "FR*SOD*S*MB24*102*1*_*_", + "name": "SAINT CREPIN DE RICHEMONT - PLACE DU FOIRAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.042477, + 44.865112 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410311", + "ref": "FR*SOD*S*MB24*103*1*_*_", + "name": "SAINT CYPRIEN - AVENUE DE SARLAT PARKING COMCOM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.042477, + 44.865112 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410312", + "ref": "FR*SOD*S*MB24*103*1*_*_", + "name": "SAINT CYPRIEN - AVENUE DE SARLAT PARKING COMCOM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.044134, + 44.868401 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410411", + "ref": "FR*SOD*S*MB24*104*1*_*_", + "name": "SAINT CYPRIEN - PLACE MACKENHEIM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.794854, + 45.148567 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410911", + "ref": "FR*SOD*S*MB24*109*1*_*_", + "name": "SAINT LAURENT SUR MANOIRE BOULAZAC ISLE MANOIRE - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.253506, + 44.993977 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410612", + "ref": "FR*SOD*S*MB24*106*1*_*_", + "name": "SAINT GENIES - PLACE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.253506, + 44.993977 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410611", + "ref": "FR*SOD*S*MB24*106*1*_*_", + "name": "SAINT GENIES - PLACE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.840611, + 45.419838 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410711", + "ref": "FR*SOD*S*MB24*107*1*_*_", + "name": "SAINT JEAN DE COLE - PARKING TENNIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.840611, + 45.419838 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410712", + "ref": "FR*SOD*S*MB24*107*1*_*_", + "name": "SAINT JEAN DE COLE - PARKING TENNIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.363911, + 44.860176 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410812", + "ref": "FR*SOD*S*MB24*108*1*_*_", + "name": "SAINT JULIEN DE LAMPON - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.363911, + 44.860176 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410811", + "ref": "FR*SOD*S*MB24*108*1*_*_", + "name": "SAINT JULIEN DE LAMPON - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.214353, + 44.883865 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411811", + "ref": "FR*SOD*S*MB24*118*1*_*_", + "name": "SARLAT LA CANEDA - PLACE DE LA LIBERATION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.217389, + 44.892673 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411911", + "ref": "FR*SOD*S*MB24*119*1*_*_", + "name": "SARLAT LA CANEDA - PLACE DES CORDELIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.217389, + 44.892673 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2411912", + "ref": "FR*SOD*S*MB24*119*1*_*_", + "name": "SARLAT LA CANEDA - PLACE DES CORDELIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.661303, + 45.187424 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245912", + "ref": "FR*SOD*S*MB24*59*1*_*_", + "name": "MARSAC SUR LISLE - IMPASSE DU VIEUX MOULIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.490578, + 44.793633 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246211", + "ref": "FR*SOD*S*MB24*62*1*_*_", + "name": "MONBAZILLAC - PARKING RESTAURANT SEMILLION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.490578, + 44.793633 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246212", + "ref": "FR*SOD*S*MB24*62*1*_*_", + "name": "MONBAZILLAC - PARKING RESTAURANT SEMILLION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.909665, + 44.992535 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246112", + "ref": "FR*SOD*S*MB24*61*1*_*_", + "name": "MAUZENS MIREMONT - PARKING DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.909665, + 44.992535 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246111", + "ref": "FR*SOD*S*MB24*61*1*_*_", + "name": "MAUZENS MIREMONT - PARKING DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659777, + 45.184494 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246012", + "ref": "FR*SOD*S*MB24*60*1*_*_", + "name": "MARSAC SUR LISLE - PLACE DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659777, + 45.184494 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246011", + "ref": "FR*SOD*S*MB24*60*1*_*_", + "name": "MARSAC SUR LISLE - PLACE DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.661303, + 45.187424 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245911", + "ref": "FR*SOD*S*MB24*59*1*_*_", + "name": "MARSAC SUR LISLE - IMPASSE DU VIEUX MOULIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.895054, + 44.682358 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246311", + "ref": "FR*SOD*S*MB24*63*1*_*_", + "name": "MONPAZIER - PLACE DU FOIRAIL NORD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.451196, + 45.451656 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245811", + "ref": "FR*SOD*S*MB24*58*1*_*_", + "name": "MAREUIL - PLACE DE LA FELIBRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.451196, + 45.451656 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245812", + "ref": "FR*SOD*S*MB24*58*1*_*_", + "name": "MAREUIL - PLACE DE LA FELIBRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.018297, + 44.934868 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245611", + "ref": "FR*SOD*S*MB24*56*1*_*_", + "name": "LES EYZIES DE TAYAC SIREUIL - PARKING AVENUE DE LA FORGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.018297, + 44.934868 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245612", + "ref": "FR*SOD*S*MB24*56*1*_*_", + "name": "LES EYZIES DE TAYAC SIREUIL - PARKING AVENUE DE LA FORGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.011215, + 44.938702 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245512", + "ref": "FR*SOD*S*MB24*55*1*_*_", + "name": "LES EYZIES DE TAYAC SIREUIL - AVENUE DE LE PREHISTOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.011215, + 44.938702 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245511", + "ref": "FR*SOD*S*MB24*55*1*_*_", + "name": "LES EYZIES DE TAYAC SIREUIL - AVENUE DE LE PREHISTOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.895054, + 44.682358 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246312", + "ref": "FR*SOD*S*MB24*63*1*_*_", + "name": "MONPAZIER - PLACE DU FOIRAIL NORD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.065287, + 44.852802 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246411", + "ref": "FR*SOD*S*MB24*64*1*_*_", + "name": "MONTCARET - PLACE TOURNIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21282, + 44.892532 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412011", + "ref": "FR*SOD*S*MB24*120*1*_*_", + "name": "SARLAT LA CANEDA - PLACE DU MARCHE AUX NOIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163076, + 45.009335 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246911", + "ref": "FR*SOD*S*MB24*69*1*_*_", + "name": "MONTPON MENESTEROL - PLACE GAMBETTA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21282, + 44.892532 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412012", + "ref": "FR*SOD*S*MB24*120*1*_*_", + "name": "SARLAT LA CANEDA - PLACE DU MARCHE AUX NOIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.873653, + 45.235855 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412112", + "ref": "FR*SOD*S*MB24*121*1*_*_", + "name": "SARLIAC SUR LISLE - PARKING RUE DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.873653, + 45.235855 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412111", + "ref": "FR*SOD*S*MB24*121*1*_*_", + "name": "SARLIAC SUR LISLE - PARKING RUE DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.470814, + 45.09845 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247111", + "ref": "FR*SOD*S*MB24*71*1*_*_", + "name": "NEUVIC - PARKING CENTRE MULTIMEDIA RUE DES FRERES POUGET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.352734, + 45.033329 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247012", + "ref": "FR*SOD*S*MB24*70*1*_*_", + "name": "MUSSIDAN - RUE RAYMOND VILLECHANOUX - PARKING DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.352734, + 45.033329 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247011", + "ref": "FR*SOD*S*MB24*70*1*_*_", + "name": "MUSSIDAN - RUE RAYMOND VILLECHANOUX - PARKING DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163076, + 45.009335 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246912", + "ref": "FR*SOD*S*MB24*69*1*_*_", + "name": "MONTPON MENESTEROL - PLACE GAMBETTA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.065287, + 44.852802 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246412", + "ref": "FR*SOD*S*MB24*64*1*_*_", + "name": "MONTCARET - PLACE TOURNIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.165742, + 45.009018 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246811", + "ref": "FR*SOD*S*MB24*68*1*_*_", + "name": "MONTPON MENESTEROL - PLACE DU FOIRAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.165742, + 45.009018 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246812", + "ref": "FR*SOD*S*MB24*68*1*_*_", + "name": "MONTPON MENESTEROL - PLACE DU FOIRAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.165569, + 45.060806 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246611", + "ref": "FR*SOD*S*MB24*66*1*_*_", + "name": "MONTIGNAC - PARKING LASCAUX - D704E1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.165569, + 45.060806 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246612", + "ref": "FR*SOD*S*MB24*66*1*_*_", + "name": "MONTIGNAC - PARKING LASCAUX - D704E1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.151401, + 45.055424 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246511", + "ref": "FR*SOD*S*MB24*65*1*_*_", + "name": "MONTIGNAC - D706 - ZONE COMMERCIALE LACOSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.151401, + 45.055424 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB246512", + "ref": "FR*SOD*S*MB24*65*1*_*_", + "name": "MONTIGNAC - D706 - ZONE COMMERCIALE LACOSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.86671, + 44.943237 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2410012", + "ref": "FR*SOD*S*MB24*100*1*_*_", + "name": "SAINT AVIT DE VIALARD - PARKING SALLES DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.135192, + 45.20187 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249911", + "ref": "FR*SOD*S*MB24*99*1*_*_", + "name": "SAINT AULAYE PUYMANGOU - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.920901, + 45.413513 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413312", + "ref": "FR*SOD*S*MB24*133*1*_*_", + "name": "THIVIERS - PLACE JEAN PAUL SARTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.135192, + 45.20187 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249912", + "ref": "FR*SOD*S*MB24*99*1*_*_", + "name": "SAINT AULAYE PUYMANGOU - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.408764, + 44.75695 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412311", + "ref": "FR*SOD*S*MB24*123*1*_*_", + "name": "SIGOULES - PARKING ROUTE DE PERTHUS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.408764, + 44.75695 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412312", + "ref": "FR*SOD*S*MB24*123*1*_*_", + "name": "SIGOULES - PARKING ROUTE DE PERTHUS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.918521, + 45.275173 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412211", + "ref": "FR*SOD*S*MB24*122*1*_*_", + "name": "SAVIGNAC LES EGLISES - PLACE DU 19 MARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.228201, + 45.129517 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245412", + "ref": "FR*SOD*S*MB24*54*1*_*_", + "name": "LE LARDIN - PLACE HENI FAURE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.470814, + 45.09845 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247112", + "ref": "FR*SOD*S*MB24*71*1*_*_", + "name": "NEUVIC - PARKING CENTRE MULTIMEDIA RUE DES FRERES POUGET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.918521, + 45.275173 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412212", + "ref": "FR*SOD*S*MB24*122*1*_*_", + "name": "SAVIGNAC LES EGLISES - PLACE DU 19 MARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.664768, + 45.528957 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247411", + "ref": "FR*SOD*S*MB24*74*1*_*_", + "name": "NONTRON - IMPASSE NOTRE DAME PARKING ST SAUVER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.724982, + 45.176006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247511", + "ref": "FR*SOD*S*MB24*75*1*_*_", + "name": "NOTRE DAME DE SANILHAC - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.724982, + 45.176006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247512", + "ref": "FR*SOD*S*MB24*75*1*_*_", + "name": "NOTRE DAME DE SANILHAC - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.715628, + 45.121777 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247612", + "ref": "FR*SOD*S*MB24*76*1*_*_", + "name": "NOTRE DAME DE SANILHAC - PLACE DU 19 MARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.715628, + 45.121777 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247611", + "ref": "FR*SOD*S*MB24*76*1*_*_", + "name": "NOTRE DAME DE SANILHAC - PLACE DU 19 MARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.217378, + 45.400749 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247711", + "ref": "FR*SOD*S*MB24*77*1*_*_", + "name": "PAYZAC - PLACE DE LA POSTE ESPACE JP TIMBAUT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.217378, + 45.400749 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247712", + "ref": "FR*SOD*S*MB24*77*1*_*_", + "name": "PAYZAC - PLACE DE LA POSTE ESPACE JP TIMBAUT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.722759, + 45.187054 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247812", + "ref": "FR*SOD*S*MB24*78*1*_*_", + "name": "PERIGUEUX - ALLEE DE TOURNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.722759, + 45.187054 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247811", + "ref": "FR*SOD*S*MB24*78*1*_*_", + "name": "PERIGUEUX - ALLEE DE TOURNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.987989, + 44.823059 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412411", + "ref": "FR*SOD*S*MB24*124*1*_*_", + "name": "SIORAC EN PERIGORD - ZONE COMMERCIALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.987989, + 44.823059 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412412", + "ref": "FR*SOD*S*MB24*124*1*_*_", + "name": "SIORAC EN PERIGORD - ZONE COMMERCIALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.872856, + 45.305759 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412511", + "ref": "FR*SOD*S*MB24*125*1*_*_", + "name": "SORGES-ET-LIGUEUX-EN-PERIGORD - PLACE JEAN DANIEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.298838, + 45.129875 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412912", + "ref": "FR*SOD*S*MB24*129*1*_*_", + "name": "TERRASSON - PLACE MARCEL PAUL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919114, + 45.41589 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413212", + "ref": "FR*SOD*S*MB24*132*1*_*_", + "name": "THIVIERS - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919114, + 45.41589 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413211", + "ref": "FR*SOD*S*MB24*132*1*_*_", + "name": "THIVIERS - PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06972, + 45.140911 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413111", + "ref": "FR*SOD*S*MB24*131*1*_*_", + "name": "THENON - RD 6089 - PARKING GENDARMERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06972, + 45.140911 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413112", + "ref": "FR*SOD*S*MB24*131*1*_*_", + "name": "THENON - RD 6089 - PARKING GENDARMERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.297951, + 45.132473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413012", + "ref": "FR*SOD*S*MB24*130*1*_*_", + "name": "TERRASSON - PLACE YVAN DELBOS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.297951, + 45.132473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2413011", + "ref": "FR*SOD*S*MB24*130*1*_*_", + "name": "TERRASSON - PLACE YVAN DELBOS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.298838, + 45.129875 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412911", + "ref": "FR*SOD*S*MB24*129*1*_*_", + "name": "TERRASSON - PLACE MARCEL PAUL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.872856, + 45.305759 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412512", + "ref": "FR*SOD*S*MB24*125*1*_*_", + "name": "SORGES-ET-LIGUEUX-EN-PERIGORD - PLACE JEAN DANIEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.302298, + 45.126183 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412812", + "ref": "FR*SOD*S*MB24*128*1*_*_", + "name": "TERRASSON - PARKING JEANNE DARC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.302298, + 45.126183 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412811", + "ref": "FR*SOD*S*MB24*128*1*_*_", + "name": "TERRASSON - PARKING JEANNE DARC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15009, + 44.966335 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412711", + "ref": "FR*SOD*S*MB24*127*1*_*_", + "name": "TAMNIES - PLACE SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15009, + 44.966335 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412712", + "ref": "FR*SOD*S*MB24*127*1*_*_", + "name": "TAMNIES - PLACE SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.391331, + 45.050846 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412611", + "ref": "FR*SOD*S*MB24*126*1*_*_", + "name": "SOURZAC - PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.391331, + 45.050846 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB2412612", + "ref": "FR*SOD*S*MB24*126*1*_*_", + "name": "SOURZAC - PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.724807, + 45.179817 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247912", + "ref": "FR*SOD*S*MB24*79*1*_*_", + "name": "PERIGUEUX - COURS SAINT GEORGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.724807, + 45.179817 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247911", + "ref": "FR*SOD*S*MB24*79*1*_*_", + "name": "PERIGUEUX - COURS SAINT GEORGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.730312, + 45.192043 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB248112", + "ref": "FR*SOD*S*MB24*81*1*_*_", + "name": "PERIGUEUX - PARKING DU CENTRE HOSPITALIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.012185, + 44.786625 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249511", + "ref": "FR*SOD*S*MB24*95*1*_*_", + "name": "SAGELAT - AUBERGE DE LA NAUZE PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339009, + 45.248264 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249211", + "ref": "FR*SOD*S*MB24*92*1*_*_", + "name": "RIBERAC - PLACE GENERAL DE GAULE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339009, + 45.248264 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249212", + "ref": "FR*SOD*S*MB24*92*1*_*_", + "name": "RIBERAC - PLACE GENERAL DE GAULE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.337888, + 45.249092 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249311", + "ref": "FR*SOD*S*MB24*93*1*_*_", + "name": "RIBERAC - PLACE PRADEAU DEBONNIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.337888, + 45.249092 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249312", + "ref": "FR*SOD*S*MB24*93*1*_*_", + "name": "RIBERAC - PLACE PRADEAU DEBONNIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.977736, + 45.047359 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249412", + "ref": "FR*SOD*S*MB24*94*1*_*_", + "name": "ROUFFIGNAC SAINT CERNIN DE REILHAC - PLACE 31 MARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.977736, + 45.047359 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249411", + "ref": "FR*SOD*S*MB24*94*1*_*_", + "name": "ROUFFIGNAC SAINT CERNIN DE REILHAC - PLACE 31 MARS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.012185, + 44.786625 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249512", + "ref": "FR*SOD*S*MB24*95*1*_*_", + "name": "SAGELAT - AUBERGE DE LA NAUZE PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.600758, + 45.164207 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249111", + "ref": "FR*SOD*S*MB24*91*1*_*_", + "name": "RAZAC SUR LISLE - PLACE ROGER GAUTHIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24543, + 45.063183 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249611", + "ref": "FR*SOD*S*MB24*96*1*_*_", + "name": "SAINT AMAND DE COLY - PLACE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24543, + 45.063183 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249612", + "ref": "FR*SOD*S*MB24*96*1*_*_", + "name": "SAINT AMAND DE COLY - PLACE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.154022, + 44.845245 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249712", + "ref": "FR*SOD*S*MB24*97*1*_*_", + "name": "SAINT ANTOINE DE BREUILH - LE BOURG PLACE DE LA HALLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.154022, + 44.845245 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249711", + "ref": "FR*SOD*S*MB24*97*1*_*_", + "name": "SAINT ANTOINE DE BREUILH - LE BOURG PLACE DE LA HALLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.527508, + 45.144791 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249812", + "ref": "FR*SOD*S*MB24*98*1*_*_", + "name": "SAINT ASTIER - RUE AMIRAL COURBET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.527508, + 45.144791 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249811", + "ref": "FR*SOD*S*MB24*98*1*_*_", + "name": "SAINT ASTIER - RUE AMIRAL COURBET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.600758, + 45.164207 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249112", + "ref": "FR*SOD*S*MB24*91*1*_*_", + "name": "RAZAC SUR LISLE - PLACE ROGER GAUTHIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.285507, + 44.803474 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249012", + "ref": "FR*SOD*S*MB24*90*1*_*_", + "name": "RAZAC DE SAUSSIGNAC - LE BOURG - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.730312, + 45.192043 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB248111", + "ref": "FR*SOD*S*MB24*81*1*_*_", + "name": "PERIGUEUX - PARKING DU CENTRE HOSPITALIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68793, + 45.624321 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB248611", + "ref": "FR*SOD*S*MB24*86*1*_*_", + "name": "PIEGUT PLUVIERS - RUE DES ALLIES PLACE DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.711979, + 45.180084 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB248212", + "ref": "FR*SOD*S*MB24*82*1*_*_", + "name": "PERIGUEUX - PARKING RUE 26EME REGIMENT DINFANTERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.711979, + 45.180084 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB248211", + "ref": "FR*SOD*S*MB24*82*1*_*_", + "name": "PERIGUEUX - PARKING RUE 26EME REGIMENT DINFANTERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.715532, + 45.184345 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB248411", + "ref": "FR*SOD*S*MB24*84*1*_*_", + "name": "PERIGUEUX - RUE WILSON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.715532, + 45.184345 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB248412", + "ref": "FR*SOD*S*MB24*84*1*_*_", + "name": "PERIGUEUX - RUE WILSON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.058212, + 44.995899 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB248511", + "ref": "FR*SOD*S*MB24*85*1*_*_", + "name": "PEYZAC LE MOUSTIER - D6 - PARKING SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.058212, + 44.995899 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB248512", + "ref": "FR*SOD*S*MB24*85*1*_*_", + "name": "PEYZAC LE MOUSTIER - D6 - PARKING SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68793, + 45.624321 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB248612", + "ref": "FR*SOD*S*MB24*86*1*_*_", + "name": "PIEGUT PLUVIERS - RUE DES ALLIES PLACE DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.285507, + 44.803474 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB249011", + "ref": "FR*SOD*S*MB24*90*1*_*_", + "name": "RAZAC DE SAUSSIGNAC - LE BOURG - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.417831, + 44.779984 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB248711", + "ref": "FR*SOD*S*MB24*87*1*_*_", + "name": "POMPORT - PARKING SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.417831, + 44.779984 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB248712", + "ref": "FR*SOD*S*MB24*87*1*_*_", + "name": "POMPORT - PARKING SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.210743, + 44.84433 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB248812", + "ref": "FR*SOD*S*MB24*88*1*_*_", + "name": "PORT SAINTE FOY ET PONCHAPT - PLACE DU 8 MAI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.210743, + 44.84433 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB248811", + "ref": "FR*SOD*S*MB24*88*1*_*_", + "name": "PORT SAINTE FOY ET PONCHAPT - PLACE DU 8 MAI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.400406, + 44.854721 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB248912", + "ref": "FR*SOD*S*MB24*89*1*_*_", + "name": "PRIGONRIEUX - RUE DU 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.400406, + 44.854721 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB248911", + "ref": "FR*SOD*S*MB24*89*1*_*_", + "name": "PRIGONRIEUX - RUE DU 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.664768, + 45.528957 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB247412", + "ref": "FR*SOD*S*MB24*74*1*_*_", + "name": "NONTRON - IMPASSE NOTRE DAME PARKING ST SAUVER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.912535, + 44.845737 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245312", + "ref": "FR*SOD*S*MB24*53*1*_*_", + "name": "LE BUISSON DE CADOUIN - PLACE MIANNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.926937, + 44.916542 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245212", + "ref": "FR*SOD*S*MB24*52*1*_*_", + "name": "LE BUGUE - PLACE LEOPOLD SALME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.488127, + 44.857044 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB24712", + "ref": "FR*SOD*S*MB24*7*1*_*_", + "name": "BERGERAC - GARE DE BERGERAC PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.203975, + 44.798595 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242312", + "ref": "FR*SOD*S*MB24*23*1*_*_", + "name": "CENAC - ROUTE DE ST MARTIAL D46", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.698037, + 45.392223 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242411", + "ref": "FR*SOD*S*MB24*24*1*_*_", + "name": "CHAMPAGNAC DE BELAIR - PARKING AVENUE CHARLES SERRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.698037, + 45.392223 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242412", + "ref": "FR*SOD*S*MB24*24*1*_*_", + "name": "CHAMPAGNAC DE BELAIR - PARKING AVENUE CHARLES SERRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.743226, + 45.204578 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242511", + "ref": "FR*SOD*S*MB24*25*1*_*_", + "name": "CHAMPCEVINEL - AQUACAP", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.743226, + 45.204578 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242512", + "ref": "FR*SOD*S*MB24*25*1*_*_", + "name": "CHAMPCEVINEL - AQUACAP", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.727561, + 45.216908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242612", + "ref": "FR*SOD*S*MB24*26*1*_*_", + "name": "CHAMPCEVINEL - RUE LOUIS ARAGON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.727561, + 45.216908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242611", + "ref": "FR*SOD*S*MB24*26*1*_*_", + "name": "CHAMPCEVINEL - RUE LOUIS ARAGON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.666067, + 45.205341 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242711", + "ref": "FR*SOD*S*MB24*27*1*_*_", + "name": "CHANCELADE - PARKING MAIRIE RUE ANDRE MAUROIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.666067, + 45.205341 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242712", + "ref": "FR*SOD*S*MB24*27*1*_*_", + "name": "CHANCELADE - PARKING MAIRIE RUE ANDRE MAUROIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.704716, + 45.364296 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242811", + "ref": "FR*SOD*S*MB24*28*1*_*_", + "name": "CONDAT SUR TRINCOU - MADEMOISELLE DESSERT - PARKING ADMINISTRATIF - AVANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.704716, + 45.364296 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242812", + "ref": "FR*SOD*S*MB24*28*1*_*_", + "name": "CONDAT SUR TRINCOU - MADEMOISELLE DESSERT - PARKING ADMINISTRATIF - AVANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.703903, + 45.36301 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242912", + "ref": "FR*SOD*S*MB24*29*1*_*_", + "name": "CONDAT SUR TRINCOU - MADEMOISELLE DESSERT - PARKING DU PERSONNEL - ARRIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.703903, + 45.36301 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242911", + "ref": "FR*SOD*S*MB24*29*1*_*_", + "name": "CONDAT SUR TRINCOU - MADEMOISELLE DESSERT - PARKING DU PERSONNEL - ARRIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.232004, + 45.118351 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243012", + "ref": "FR*SOD*S*MB24*30*1*_*_", + "name": "CONDAT SUR VEZERE - PLACE DES ECOLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.232004, + 45.118351 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243011", + "ref": "FR*SOD*S*MB24*30*1*_*_", + "name": "CONDAT SUR VEZERE - PLACE DES ECOLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.689566, + 45.19173 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243112", + "ref": "FR*SOD*S*MB24*31*1*_*_", + "name": "COULOUNIEIX CHAMIERS - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.689566, + 45.19173 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243111", + "ref": "FR*SOD*S*MB24*31*1*_*_", + "name": "COULOUNIEIX CHAMIERS - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48543, + 44.849667 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241011", + "ref": "FR*SOD*S*MB24*10*1*_*_", + "name": "BERGERAC - RUE CANDILLAC MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48543, + 44.849667 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241012", + "ref": "FR*SOD*S*MB24*10*1*_*_", + "name": "BERGERAC - RUE CANDILLAC MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.482518, + 44.853123 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB24912", + "ref": "FR*SOD*S*MB24*9*1*_*_", + "name": "BERGERAC - RUE MOUNEY SULLY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.482518, + 44.853123 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB24911", + "ref": "FR*SOD*S*MB24*9*1*_*_", + "name": "BERGERAC - RUE MOUNEY SULLY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.487476, + 44.85006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB24812", + "ref": "FR*SOD*S*MB24*8*1*_*_", + "name": "BERGERAC - PLACE DU FOIRAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.487476, + 44.85006 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB24811", + "ref": "FR*SOD*S*MB24*8*1*_*_", + "name": "BERGERAC - PLACE DU FOIRAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.203975, + 44.798595 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242311", + "ref": "FR*SOD*S*MB24*23*1*_*_", + "name": "CENAC - ROUTE DE ST MARTIAL D46", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.433106, + 44.882481 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242212", + "ref": "FR*SOD*S*MB24*22*1*_*_", + "name": "CAZOULES - PLACE DALSACE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.433106, + 44.882481 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242211", + "ref": "FR*SOD*S*MB24*22*1*_*_", + "name": "CAZOULES - PLACE DALSACE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589328, + 45.321854 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241611", + "ref": "FR*SOD*S*MB24*16*1*_*_", + "name": "BOURDEILLES - LE PARC PLACE DU FOIRAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.912535, + 44.845737 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245311", + "ref": "FR*SOD*S*MB24*53*1*_*_", + "name": "LE BUISSON DE CADOUIN - PLACE MIANNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.075685, + 44.939213 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242011", + "ref": "FR*SOD*S*MB24*20*1*_*_", + "name": "CARSAC DE GURSON - BASE DE LOISIRS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.926937, + 44.916542 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245211", + "ref": "FR*SOD*S*MB24*52*1*_*_", + "name": "LE BUGUE - PLACE LEOPOLD SALME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.563419, + 44.935707 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241912", + "ref": "FR*SOD*S*MB24*19*1*_*_", + "name": "CAMPSEGRET - PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.563419, + 44.935707 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241911", + "ref": "FR*SOD*S*MB24*19*1*_*_", + "name": "CAMPSEGRET - PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.648179, + 45.36924 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241811", + "ref": "FR*SOD*S*MB24*18*1*_*_", + "name": "BRANTOME - CHEMIN DU VERT GALANT PARKING DES RECLUS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.648179, + 45.36924 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241812", + "ref": "FR*SOD*S*MB24*18*1*_*_", + "name": "BRANTOME - CHEMIN DU VERT GALANT PARKING DES RECLUS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.647709, + 45.36491 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241712", + "ref": "FR*SOD*S*MB24*17*1*_*_", + "name": "BRANTOME - BOULEVARD CHARLEMAGNE PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.647709, + 45.36491 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241711", + "ref": "FR*SOD*S*MB24*17*1*_*_", + "name": "BRANTOME - BOULEVARD CHARLEMAGNE PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589328, + 45.321854 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241612", + "ref": "FR*SOD*S*MB24*16*1*_*_", + "name": "BOURDEILLES - LE PARC PLACE DU FOIRAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.526162, + 44.75946 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241511", + "ref": "FR*SOD*S*MB24*15*1*_*_", + "name": "BOUNIAGUES - PARKING N21", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.152277, + 44.813114 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242112", + "ref": "FR*SOD*S*MB24*21*1*_*_", + "name": "CASTELNAUD LA CHAPELLE - TOURNEPIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.526162, + 44.75946 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241512", + "ref": "FR*SOD*S*MB24*15*1*_*_", + "name": "BOUNIAGUES - PARKING N21", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.75831, + 45.181854 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241411", + "ref": "FR*SOD*S*MB24*14*1*_*_", + "name": "BOULAZAC - PLACE MANDELA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.75831, + 45.181854 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241412", + "ref": "FR*SOD*S*MB24*14*1*_*_", + "name": "BOULAZAC - PLACE MANDELA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.763094, + 45.182499 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241311", + "ref": "FR*SOD*S*MB24*13*1*_*_", + "name": "BOULAZAC - AVENUE DE LAGORA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.763094, + 45.182499 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241312", + "ref": "FR*SOD*S*MB24*13*1*_*_", + "name": "BOULAZAC - AVENUE DE LAGORA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.870593, + 44.630783 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241212", + "ref": "FR*SOD*S*MB24*12*1*_*_", + "name": "BIRON - PARKING BELLEVUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.870593, + 44.630783 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241211", + "ref": "FR*SOD*S*MB24*12*1*_*_", + "name": "BIRON - PARKING BELLEVUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.150119, + 44.839417 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241111", + "ref": "FR*SOD*S*MB24*11*1*_*_", + "name": "BEYNAC ET CAZENAC - PLACE DALSACE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.150119, + 44.839417 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB241112", + "ref": "FR*SOD*S*MB24*11*1*_*_", + "name": "BEYNAC ET CAZENAC - PLACE DALSACE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.075685, + 44.939213 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242012", + "ref": "FR*SOD*S*MB24*20*1*_*_", + "name": "CARSAC DE GURSON - BASE DE LOISIRS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.488127, + 44.857044 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB24711", + "ref": "FR*SOD*S*MB24*7*1*_*_", + "name": "BERGERAC - GARE DE BERGERAC PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.152277, + 44.813114 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB242111", + "ref": "FR*SOD*S*MB24*21*1*_*_", + "name": "CASTELNAUD LA CHAPELLE - TOURNEPIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.006493, + 44.777496 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB24611", + "ref": "FR*SOD*S*MB24*6*1*_*_", + "name": "BELVES - ESPLANADE DE LA BRECHE PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.011073, + 45.150936 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244612", + "ref": "FR*SOD*S*MB24*46*1*_*_", + "name": "LA ROCHE CHALAIS - PLACE DE LETOILE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608055, + 44.730904 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244111", + "ref": "FR*SOD*S*MB24*41*1*_*_", + "name": "ISSIGEAC - D14 - PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608055, + 44.730904 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244112", + "ref": "FR*SOD*S*MB24*41*1*_*_", + "name": "ISSIGEAC - D14 - PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.060931, + 45.493061 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244211", + "ref": "FR*SOD*S*MB24*42*1*_*_", + "name": "JUMILHAC - PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.060931, + 45.493061 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244212", + "ref": "FR*SOD*S*MB24*42*1*_*_", + "name": "JUMILHAC - PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.976027, + 45.539673 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244312", + "ref": "FR*SOD*S*MB24*43*1*_*_", + "name": "LA COQUILLE - PLACE BOYER DE LA VEYSSIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.976027, + 45.539673 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244311", + "ref": "FR*SOD*S*MB24*43*1*_*_", + "name": "LA COQUILLE - PLACE BOYER DE LA VEYSSIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.375686, + 44.867256 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244411", + "ref": "FR*SOD*S*MB24*44*1*_*_", + "name": "LA FORCE - PARKING AVENUE DES DUCS DE LA FORCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.375686, + 44.867256 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244412", + "ref": "FR*SOD*S*MB24*44*1*_*_", + "name": "LA FORCE - PARKING AVENUE DES DUCS DE LA FORCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.375426, + 44.868919 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244512", + "ref": "FR*SOD*S*MB24*45*1*_*_", + "name": "LA FORCE - RUE DE LA LIBERATION - PARKING ESPACE SOCIO-CULTUREL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.011073, + 45.150936 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244611", + "ref": "FR*SOD*S*MB24*46*1*_*_", + "name": "LA ROCHE CHALAIS - PLACE DE LETOILE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18357, + 44.825272 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244711", + "ref": "FR*SOD*S*MB24*47*1*_*_", + "name": "LA ROQUE-GAGEAC - PLACE DU 8 MAI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.145795, + 45.258835 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244011", + "ref": "FR*SOD*S*MB24*40*1*_*_", + "name": "HAUTEFORT - RUE BERTRAND DE BORN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18357, + 44.825272 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244712", + "ref": "FR*SOD*S*MB24*47*1*_*_", + "name": "LA ROQUE-GAGEAC - PLACE DU 8 MAI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.724749, + 44.835953 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244812", + "ref": "FR*SOD*S*MB24*48*1*_*_", + "name": "LALINDE - AVENUE JEAN MOULIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.724749, + 44.835953 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244811", + "ref": "FR*SOD*S*MB24*48*1*_*_", + "name": "LALINDE - AVENUE JEAN MOULIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.382402, + 44.842258 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244912", + "ref": "FR*SOD*S*MB24*49*1*_*_", + "name": "LAMONZIE SAINT MARTIN - PARKING AVENUE DE BERGERAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.382402, + 44.842258 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244911", + "ref": "FR*SOD*S*MB24*49*1*_*_", + "name": "LAMONZIE SAINT MARTIN - PARKING AVENUE DE BERGERAC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.140332, + 45.392262 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245012", + "ref": "FR*SOD*S*MB24*50*1*_*_", + "name": "LANOUAILLE - RUE DU PONT LASVEYRAS PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.006493, + 44.777496 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB24612", + "ref": "FR*SOD*S*MB24*6*1*_*_", + "name": "BELVES - ESPLANADE DE LA BRECHE PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.926065, + 44.922066 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245111", + "ref": "FR*SOD*S*MB24*51*1*_*_", + "name": "LE BUGUE - PLACE DE PRE SAINT LOUIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.926065, + 44.922066 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245112", + "ref": "FR*SOD*S*MB24*51*1*_*_", + "name": "LE BUGUE - PLACE DE PRE SAINT LOUIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.140332, + 45.392262 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB245011", + "ref": "FR*SOD*S*MB24*50*1*_*_", + "name": "LANOUAILLE - RUE DU PONT LASVEYRAS PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.145795, + 45.258835 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244012", + "ref": "FR*SOD*S*MB24*40*1*_*_", + "name": "HAUTEFORT - RUE BERTRAND DE BORN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.375426, + 44.868919 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB244511", + "ref": "FR*SOD*S*MB24*45*1*_*_", + "name": "LA FORCE - RUE DE LA LIBERATION - PARKING ESPACE SOCIO-CULTUREL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2907, + 44.820824 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243911", + "ref": "FR*SOD*S*MB24*39*1*_*_", + "name": "GROLEJAC - PARKING ZONE COMMERCIALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21471, + 44.803703 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243412", + "ref": "FR*SOD*S*MB24*34*1*_*_", + "name": "DOMME - LESPLANADE PARKING - RUE DU REPOS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.815406, + 45.192722 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB24411", + "ref": "FR*SOD*S*MB24*4*1*_*_", + "name": "BASSILLAC ET AUBEROCHE - RUE JACQUES PREVERT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.815406, + 45.192722 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB24412", + "ref": "FR*SOD*S*MB24*4*1*_*_", + "name": "BASSILLAC ET AUBEROCHE - RUE JACQUES PREVERT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2907, + 44.820824 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243912", + "ref": "FR*SOD*S*MB24*39*1*_*_", + "name": "GROLEJAC - PARKING ZONE COMMERCIALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.768692, + 44.767879 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB24511", + "ref": "FR*SOD*S*MB24*5*1*_*_", + "name": "BEAUMONT DU PERIGORD - PLACE DE LA HALLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.947273, + 44.879646 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB24311", + "ref": "FR*SOD*S*MB24*3*1*_*_", + "name": "AUDRIX - LE BOURG PARKING PISCINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.947273, + 44.879646 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB24312", + "ref": "FR*SOD*S*MB24*3*1*_*_", + "name": "AUDRIX - LE BOURG PARKING PISCINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.167167, + 45.412544 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB24212", + "ref": "FR*SOD*S*MB24*2*1*_*_", + "name": "ANGOISSE - ROUFFIAC - BASE LOISIRS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.568117, + 44.8554 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243212", + "ref": "FR*SOD*S*MB24*32*1*_*_", + "name": "CREYSSE - PLACE DE LA CREYSSETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.568117, + 44.8554 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243211", + "ref": "FR*SOD*S*MB24*32*1*_*_", + "name": "CREYSSE - PLACE DE LA CREYSSETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.937528, + 45.222622 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243312", + "ref": "FR*SOD*S*MB24*33*1*_*_", + "name": "CUBJAC - PLACE DU 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.937528, + 45.222622 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243311", + "ref": "FR*SOD*S*MB24*33*1*_*_", + "name": "CUBJAC - PLACE DU 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.167167, + 45.412544 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB24211", + "ref": "FR*SOD*S*MB24*2*1*_*_", + "name": "ANGOISSE - ROUFFIAC - BASE LOISIRS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.331995, + 44.836281 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243812", + "ref": "FR*SOD*S*MB24*38*1*_*_", + "name": "GARDONNE - RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.400101, + 44.666527 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243612", + "ref": "FR*SOD*S*MB24*36*1*_*_", + "name": "EYMET - PARKING PARK RELAIS - DEPARTEMENTAL 18", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.331995, + 44.836281 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243811", + "ref": "FR*SOD*S*MB24*38*1*_*_", + "name": "GARDONNE - RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21471, + 44.803703 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243411", + "ref": "FR*SOD*S*MB24*34*1*_*_", + "name": "DOMME - LESPLANADE PARKING - RUE DU REPOS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.642597, + 44.790836 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243712", + "ref": "FR*SOD*S*MB24*37*1*_*_", + "name": "FAUX - D22 - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.642597, + 44.790836 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243711", + "ref": "FR*SOD*S*MB24*37*1*_*_", + "name": "FAUX - D22 - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.768692, + 44.767879 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB24512", + "ref": "FR*SOD*S*MB24*5*1*_*_", + "name": "BEAUMONT DU PERIGORD - PLACE DE LA HALLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.400101, + 44.666527 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243611", + "ref": "FR*SOD*S*MB24*36*1*_*_", + "name": "EYMET - PARKING PARK RELAIS - DEPARTEMENTAL 18", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.051004, + 45.336727 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243512", + "ref": "FR*SOD*S*MB24*35*1*_*_", + "name": "EXCIDEUIL - PLACE A.MOULINIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.051004, + 45.336727 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref:EU:EVSE": "FRS24PMB243511", + "ref": "FR*SOD*S*MB24*35*1*_*_", + "name": "EXCIDEUIL - PLACE A.MOULINIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.766528, + 48.722111 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1812", + "ref": "FR*SOD*S*RMBT*18*1*_*_", + "name": "SAINT LEGER EN YVELINES - PARKING DE LA SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.990366, + 48.578239 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2212", + "ref": "FR*SOD*S*RMBT*22*1*_*_", + "name": "LONGVILLERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.766528, + 48.722111 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1811", + "ref": "FR*SOD*S*RMBT*18*1*_*_", + "name": "SAINT LEGER EN YVELINES - PARKING DE LA SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.768139, + 48.720886 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1912", + "ref": "FR*SOD*S*RMBT*19*1*_*_", + "name": "SAINT LEGER EN YVELINES - PARKING DU PLAN DEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.768139, + 48.720886 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1911", + "ref": "FR*SOD*S*RMBT*19*1*_*_", + "name": "SAINT LEGER EN YVELINES - PARKING DU PLAN DEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.818773, + 48.645462 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2012", + "ref": "FR*SOD*S*RMBT*20*1*_*_", + "name": "RAMBOUILLET - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.778462, + 48.578293 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1711", + "ref": "FR*SOD*S*RMBT*17*1*_*_", + "name": "ORPHIN - PARKING PRES DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.818773, + 48.645462 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2011", + "ref": "FR*SOD*S*RMBT*20*1*_*_", + "name": "RAMBOUILLET - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.986778, + 48.583527 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2112", + "ref": "FR*SOD*S*RMBT*21*1*_*_", + "name": "ROCHEFORT EN YVELINES - PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.986778, + 48.583527 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2111", + "ref": "FR*SOD*S*RMBT*21*1*_*_", + "name": "ROCHEFORT EN YVELINES - PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.990366, + 48.578239 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2211", + "ref": "FR*SOD*S*RMBT*22*1*_*_", + "name": "LONGVILLERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.778462, + 48.578293 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1712", + "ref": "FR*SOD*S*RMBT*17*1*_*_", + "name": "ORPHIN - PARKING PRES DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8545, + 48.694752 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2711", + "ref": "FR*SOD*S*RMBT*27*1*_*_", + "name": "LE PERRAY EN YVELINES- MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.912787, + 48.553249 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2311", + "ref": "FR*SOD*S*RMBT*23*1*_*_", + "name": "PONTHEVRARD - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.912787, + 48.553249 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2312", + "ref": "FR*SOD*S*RMBT*23*1*_*_", + "name": "PONTHEVRARD - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9375, + 48.572861 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2411", + "ref": "FR*SOD*S*RMBT*24*1*_*_", + "name": "SAINT ARNOULT - PLACE JEAN MOULIN A", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9375, + 48.572861 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2412", + "ref": "FR*SOD*S*RMBT*24*1*_*_", + "name": "SAINT ARNOULT - PLACE JEAN MOULIN A", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9375, + 48.572861 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2511", + "ref": "FR*SOD*S*RMBT*25*1*_*_", + "name": "SAINT ARNOULT - PLACE JEAN MOULIN B", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9375, + 48.572861 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2512", + "ref": "FR*SOD*S*RMBT*25*1*_*_", + "name": "SAINT ARNOULT - PLACE JEAN MOULIN B", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.877333, + 48.576057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2611", + "ref": "FR*SOD*S*RMBT*26*1*_*_", + "name": "SONCHAMP - ECOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.877333, + 48.576057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2612", + "ref": "FR*SOD*S*RMBT*26*1*_*_", + "name": "SONCHAMP - ECOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8545, + 48.694752 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2712", + "ref": "FR*SOD*S*RMBT*27*1*_*_", + "name": "LE PERRAY EN YVELINES- MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.893833, + 48.718861 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2811", + "ref": "FR*SOD*S*RMBT*28*1*_*_", + "name": "LES ESSARTS LE ROI- PLACE DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.893833, + 48.718861 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2812", + "ref": "FR*SOD*S*RMBT*28*1*_*_", + "name": "LES ESSARTS LE ROI- PLACE DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.729444, + 48.588638 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1612", + "ref": "FR*SOD*S*RMBT*16*1*_*_", + "name": "EMANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.771222, + 48.638779 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2912", + "ref": "FR*SOD*S*RMBT*29*1*_*_", + "name": "GAZERAN - RUE DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.729444, + 48.588638 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1611", + "ref": "FR*SOD*S*RMBT*16*1*_*_", + "name": "EMANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.757398, + 48.677654 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT411", + "ref": "FR*SOD*S*RMBT*4*1*_*_", + "name": "POIGNY LA FORET - PARKING DE LA SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.682583, + 48.624279 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1512", + "ref": "FR*SOD*S*RMBT*15*1*_*_", + "name": "RAIZEUX - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.942056, + 48.571835 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT712", + "ref": "FR*SOD*S*RMBT*7*1*_*_", + "name": "SAINT ARNOULT - PARKING DU CONSERVATOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.855722, + 48.693527 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3012", + "ref": "FR*SOD*S*RMBT*30*1*_*_", + "name": "LE PERRAY EN YVELINES - AVENUE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.687804, + 48.650483 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT111", + "ref": "FR*SOD*S*RMBT*1*1*_*_", + "name": "HERMERAY - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.687804, + 48.650483 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT112", + "ref": "FR*SOD*S*RMBT*1*1*_*_", + "name": "HERMERAY - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.774694, + 48.6362 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT212", + "ref": "FR*SOD*S*RMBT*2*1*_*_", + "name": "GAZERAN - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.774694, + 48.6362 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT211", + "ref": "FR*SOD*S*RMBT*2*1*_*_", + "name": "GAZERAN - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.822078, + 48.649048 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT311", + "ref": "FR*SOD*S*RMBT*3*1*_*_", + "name": "RAMBOUILLET - PATENOTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.822078, + 48.649048 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT312", + "ref": "FR*SOD*S*RMBT*3*1*_*_", + "name": "RAMBOUILLET - PATENOTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.757398, + 48.677654 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT412", + "ref": "FR*SOD*S*RMBT*4*1*_*_", + "name": "POIGNY LA FORET - PARKING DE LA SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.887639, + 48.700056 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT511", + "ref": "FR*SOD*S*RMBT*5*1*_*_", + "name": "AUFFARGIS - MAIRIE PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.887639, + 48.700056 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT512", + "ref": "FR*SOD*S*RMBT*5*1*_*_", + "name": "AUFFARGIS - MAIRIE PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.887639, + 48.700056 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT611", + "ref": "FR*SOD*S*RMBT*6*1*_*_", + "name": "AUFFARGIS - FOYER RURAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.887639, + 48.700056 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT612", + "ref": "FR*SOD*S*RMBT*6*1*_*_", + "name": "AUFFARGIS - FOYER RURAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.942056, + 48.571835 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT711", + "ref": "FR*SOD*S*RMBT*7*1*_*_", + "name": "SAINT ARNOULT - PARKING DU CONSERVATOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.954833, + 48.639778 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT811", + "ref": "FR*SOD*S*RMBT*8*1*_*_", + "name": "LA CELLE LES BORDES - PARKING SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.682583, + 48.624279 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1511", + "ref": "FR*SOD*S*RMBT*15*1*_*_", + "name": "RAIZEUX - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.954833, + 48.639778 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT812", + "ref": "FR*SOD*S*RMBT*8*1*_*_", + "name": "LA CELLE LES BORDES - PARKING SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.028, + 48.616028 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT912", + "ref": "FR*SOD*S*RMBT*9*1*_*_", + "name": "BONNELLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.028, + 48.616028 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT911", + "ref": "FR*SOD*S*RMBT*9*1*_*_", + "name": "BONNELLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00075, + 48.621056 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1011", + "ref": "FR*SOD*S*RMBT*10*1*_*_", + "name": "BULLION - PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00075, + 48.621056 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1012", + "ref": "FR*SOD*S*RMBT*10*1*_*_", + "name": "BULLION - PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.909889, + 48.612 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1111", + "ref": "FR*SOD*S*RMBT*11*1*_*_", + "name": "CLAIREFONTAINE EN YVELINES - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.909889, + 48.612 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1112", + "ref": "FR*SOD*S*RMBT*11*1*_*_", + "name": "CLAIREFONTAINE EN YVELINES - MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.830751, + 48.644615 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1211", + "ref": "FR*SOD*S*RMBT*12*1*_*_", + "name": "RAMBOUILLET - GARE SNCF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.830751, + 48.644615 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1212", + "ref": "FR*SOD*S*RMBT*12*1*_*_", + "name": "RAMBOUILLET - GARE SNCF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.97425, + 48.674915 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1311", + "ref": "FR*SOD*S*RMBT*13*1*_*_", + "name": "CERNAY LA VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.97425, + 48.674915 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1312", + "ref": "FR*SOD*S*RMBT*13*1*_*_", + "name": "CERNAY LA VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.811028, + 48.586834 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1411", + "ref": "FR*SOD*S*RMBT*14*1*_*_", + "name": "ORCEMONT MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.811028, + 48.586834 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT1412", + "ref": "FR*SOD*S*RMBT*14*1*_*_", + "name": "ORCEMONT MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.771222, + 48.638779 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT2911", + "ref": "FR*SOD*S*RMBT*29*1*_*_", + "name": "GAZERAN - RUE DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.870972, + 48.492584 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3511", + "ref": "FR*SOD*S*RMBT*35*1*_*_", + "name": "BOINVILLE-LE-GAILLARD - SALLE POLYVALENTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.855722, + 48.693527 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3011", + "ref": "FR*SOD*S*RMBT*30*1*_*_", + "name": "LE PERRAY EN YVELINES - AVENUE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.870972, + 48.492584 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3512", + "ref": "FR*SOD*S*RMBT*35*1*_*_", + "name": "BOINVILLE-LE-GAILLARD - SALLE POLYVALENTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.73275, + 48.620556 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3112", + "ref": "FR*SOD*S*RMBT*31*1*_*_", + "name": "SAINT HILARION - PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.876861, + 48.666058 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3812", + "ref": "FR*SOD*S*RMBT*38*1*_*_", + "name": "VIEILLE-EGLISE- ROUTE DE RAMBOUILLET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.835139, + 48.635139 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3712", + "ref": "FR*SOD*S*RMBT*37*1*_*_", + "name": "RAMBOUILLET - PISCINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.835139, + 48.635139 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3711", + "ref": "FR*SOD*S*RMBT*37*1*_*_", + "name": "RAMBOUILLET - PISCINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.876806, + 48.462891 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3612", + "ref": "FR*SOD*S*RMBT*36*1*_*_", + "name": "PARAY-DOUAVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.876806, + 48.462891 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3611", + "ref": "FR*SOD*S*RMBT*36*1*_*_", + "name": "PARAY-DOUAVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.876861, + 48.666058 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3811", + "ref": "FR*SOD*S*RMBT*38*1*_*_", + "name": "VIEILLE-EGLISE- ROUTE DE RAMBOUILLET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.857833, + 48.691528 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3411", + "ref": "FR*SOD*S*RMBT*34*1*_*_", + "name": "LE PERRAY EN YVELINES - PARKING RUE DU PLANIT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.825583, + 48.624027 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3312", + "ref": "FR*SOD*S*RMBT*33*1*_*_", + "name": "GAZERAN - ZAC BEL AIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.825583, + 48.624027 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3311", + "ref": "FR*SOD*S*RMBT*33*1*_*_", + "name": "GAZERAN - ZAC BEL AIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.648667, + 48.681057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3212", + "ref": "FR*SOD*S*RMBT*32*1*_*_", + "name": "LA BOISSIERE ECOLE - ECOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.648667, + 48.681057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3211", + "ref": "FR*SOD*S*RMBT*32*1*_*_", + "name": "LA BOISSIERE ECOLE - ECOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.857833, + 48.691528 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3412", + "ref": "FR*SOD*S*RMBT*34*1*_*_", + "name": "LE PERRAY EN YVELINES - PARKING RUE DU PLANIT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.73275, + 48.620556 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref:EU:EVSE": "FRA05PRMBT3111", + "ref": "FR*SOD*S*RMBT*31*1*_*_", + "name": "SAINT HILARION - PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.392465, + 43.283473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP2912", + "ref": "FR*SOD*S*MAMP*29*1*_*_", + "name": "IZIVIA | MARSEILLE 06 - RUE MENPENTI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.466939, + 43.360151 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP3412", + "ref": "FR*SOD*S*MAMP*34*1*_*_", + "name": "IZIVIA | PLAN-DE-CUQUES - LA MONTADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.466939, + 43.360151 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP3411", + "ref": "FR*SOD*S*MAMP*34*1*_*_", + "name": "IZIVIA | PLAN-DE-CUQUES - LA MONTADE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.378812, + 43.34764 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP3112", + "ref": "FR*SOD*S*MAMP*31*1*_*_", + "name": "IZIVIA | MARSEILLE 14 - CHEMIN DU FONTAINIEU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.378812, + 43.34764 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP3111", + "ref": "FR*SOD*S*MAMP*31*1*_*_", + "name": "IZIVIA | MARSEILLE 14 - CHEMIN DU FONTAINIEU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.369238, + 43.401226 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP3012", + "ref": "FR*SOD*S*MAMP*30*1*_*_", + "name": "IZIVIA | SEPTEMES-LES-VALLONS - BOULEVARD ANTOINE VABRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.359208, + 43.28286 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP2712", + "ref": "FR*SOD*S*MAMP*27*1*_*_", + "name": "IZIVIA | MARSEILLE 07 - RENE SEYSSAUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.392465, + 43.283473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP2911", + "ref": "FR*SOD*S*MAMP*29*1*_*_", + "name": "IZIVIA | MARSEILLE 06 - RUE MENPENTI", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.359208, + 43.28286 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP2711", + "ref": "FR*SOD*S*MAMP*27*1*_*_", + "name": "IZIVIA | MARSEILLE 07 - RENE SEYSSAUD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4351, + 43.311065 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP2112", + "ref": "FR*SOD*S*MAMP*21*1*_*_", + "name": "IZIVIA | MARSEILLE 12 - AVENUE DE LA PETITE SUISSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4351, + 43.311065 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP2111", + "ref": "FR*SOD*S*MAMP*21*1*_*_", + "name": "IZIVIA | MARSEILLE 12 - AVENUE DE LA PETITE SUISSE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410341, + 43.272064 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP2011", + "ref": "FR*SOD*S*MAMP*20*1*_*_", + "name": "IZIVIA | MARSEILLE 09 - BOULEVARD ROMAIN ROLLAND", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.391018, + 43.24751 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP3511", + "ref": "FR*SOD*S*MAMP*35*1*_*_", + "name": "IZIVIA | MARSEILLE 08 - AVENUE ELSA TRIOLET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.391018, + 43.24751 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP3512", + "ref": "FR*SOD*S*MAMP*35*1*_*_", + "name": "IZIVIA | MARSEILLE 08 - AVENUE ELSA TRIOLET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356974, + 43.354063 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP4112", + "ref": "FR*SOD*S*MAMP*41*1*_*_", + "name": "IZIVIA | MARSEILLE 15 - AVENUE DE LA VISTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404042, + 43.296462 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP3612", + "ref": "FR*SOD*S*MAMP*36*1*_*_", + "name": "IZIVIA | MARSEILLE 04 - BOULEVARD BOISSON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404042, + 43.296462 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP3611", + "ref": "FR*SOD*S*MAMP*36*1*_*_", + "name": "IZIVIA | MARSEILLE 04 - BOULEVARD BOISSON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.31658, + 43.35928 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP3711", + "ref": "FR*SOD*S*MAMP*37*1*_*_", + "name": "IZIVIA | MARSEILLE 16 - PLAGE DE LESTAQUE - MASTER", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.31658, + 43.35928 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP3712", + "ref": "FR*SOD*S*MAMP*37*1*_*_", + "name": "IZIVIA | MARSEILLE 16 - PLAGE DE LESTAQUE - MASTER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.419599, + 43.302329 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP4011", + "ref": "FR*SOD*S*MAMP*40*1*_*_", + "name": "IZIVIA | MARSEILLE 12 - RUE GUSTAVE SALICIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.419599, + 43.302329 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP4012", + "ref": "FR*SOD*S*MAMP*40*1*_*_", + "name": "IZIVIA | MARSEILLE 12 - RUE GUSTAVE SALICIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.392652, + 43.263914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1912", + "ref": "FR*SOD*S*MAMP*19*1*_*_", + "name": "IZIVIA | MARSEILLE 08 - AVENUE DE MAZARGUES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356974, + 43.354063 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP4111", + "ref": "FR*SOD*S*MAMP*41*1*_*_", + "name": "IZIVIA | MARSEILLE 15 - AVENUE DE LA VISTE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.390964, + 43.289144 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP4212", + "ref": "FR*SOD*S*MAMP*42*1*_*_", + "name": "IZIVIA | MARSEILLE 05 - RUE FERNAND PAURIOL MASTER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.390964, + 43.289144 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP4211", + "ref": "FR*SOD*S*MAMP*42*1*_*_", + "name": "IZIVIA | MARSEILLE 05 - RUE FERNAND PAURIOL MASTER", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.375423, + 43.28474 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP4312", + "ref": "FR*SOD*S*MAMP*43*1*_*_", + "name": "IZIVIA | MARSEILLE 06 - BOULEVARD PAUL DOUMER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.375423, + 43.28474 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP4311", + "ref": "FR*SOD*S*MAMP*43*1*_*_", + "name": "IZIVIA | MARSEILLE 06 - BOULEVARD PAUL DOUMER", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.390964, + 43.289144 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP4512", + "ref": "FR*SOD*S*MAMP*45*1*_*_", + "name": "IZIVIA | MARSEILLE 05 - RUE FERNAND PAURIOL SATELITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.390964, + 43.289144 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP4511", + "ref": "FR*SOD*S*MAMP*45*1*_*_", + "name": "IZIVIA | MARSEILLE 05 - RUE FERNAND PAURIOL SATELITE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410341, + 43.272064 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP2012", + "ref": "FR*SOD*S*MAMP*20*1*_*_", + "name": "IZIVIA | MARSEILLE 09 - BOULEVARD ROMAIN ROLLAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.369238, + 43.401226 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP3011", + "ref": "FR*SOD*S*MAMP*30*1*_*_", + "name": "IZIVIA | SEPTEMES-LES-VALLONS - BOULEVARD ANTOINE VABRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.392652, + 43.263914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1911", + "ref": "FR*SOD*S*MAMP*19*1*_*_", + "name": "IZIVIA | MARSEILLE 08 - AVENUE DE MAZARGUES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.385708, + 43.271343 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP621", + "ref": "FR*SOD*S*MAMP*6*2*_*_", + "name": "IZIVIA | MARSEILLE 08 - DUMONT DURVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.436696, + 43.230377 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1122", + "ref": "FR*SOD*S*MAMP*11*2*_*_", + "name": "IZIVIA | MARSEILLE 09 - AVENUE DE LUMINY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.412999, + 43.232758 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1012", + "ref": "FR*SOD*S*MAMP*10*1*_*_", + "name": "IZIVIA | MARSEILLE 09 - CHEMIN DE MORGIOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.412999, + 43.232758 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1011", + "ref": "FR*SOD*S*MAMP*10*1*_*_", + "name": "IZIVIA | MARSEILLE 09 - CHEMIN DE MORGIOU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.46368, + 43.344786 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP921", + "ref": "FR*SOD*S*MAMP*9*2*_*_", + "name": "IZIVIA | PLAN-DE-CUQUES - AVENUE PLEIN SUD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.31663, + 43.35941 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1811", + "ref": "FR*SOD*S*MAMP*18*1*_*_", + "name": "IZIVIA | MARSEILLE 16 - PLAGE DE LESTAQUE SATELITE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.629119, + 43.294115 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP722", + "ref": "FR*SOD*S*MAMP*7*2*_*_", + "name": "IZIVIA | GEMENOS - BOULEVARD VESSIOT - PARKING DES GRANGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.629119, + 43.294115 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP721", + "ref": "FR*SOD*S*MAMP*7*2*_*_", + "name": "IZIVIA | GEMENOS - BOULEVARD VESSIOT - PARKING DES GRANGES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465206, + 43.345215 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP521", + "ref": "FR*SOD*S*MAMP*5*2*_*_", + "name": "IZIVIA | PLAN-DE-CUQUES - BOULEVARD DE LA RESISTANCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.418975, + 43.295209 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1211", + "ref": "FR*SOD*S*MAMP*12*1*_*_", + "name": "IZIVIA | MARSEILLE 12 - CHEMIN DE SAINT JEAN DU DESERT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465206, + 43.345215 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP522", + "ref": "FR*SOD*S*MAMP*5*2*_*_", + "name": "IZIVIA | PLAN-DE-CUQUES - BOULEVARD DE LA RESISTANCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.386217, + 43.293338 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP411", + "ref": "FR*SOD*S*MAMP*4*1*_*_", + "name": "IZIVIA | MARSEILLE 06 - RUE DES 3 FRERES BARTHELEMY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.386217, + 43.293338 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP412", + "ref": "FR*SOD*S*MAMP*4*1*_*_", + "name": "IZIVIA | MARSEILLE 06 - RUE DES 3 FRERES BARTHELEMY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.631226, + 43.213632 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP321", + "ref": "FR*SOD*S*MAMP*3*2*_*_", + "name": "IZIVIA | CEYRESTE - PLACE DES HEROS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.631226, + 43.213632 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP322", + "ref": "FR*SOD*S*MAMP*3*2*_*_", + "name": "IZIVIA | CEYRESTE - PLACE DES HEROS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.376535, + 43.316873 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP211", + "ref": "FR*SOD*S*MAMP*2*1*_*_", + "name": "IZIVIA | MARSEILLE 03 - RUE AUPHAN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.376535, + 43.316873 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP212", + "ref": "FR*SOD*S*MAMP*2*1*_*_", + "name": "IZIVIA | MARSEILLE 03 - RUE AUPHAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.436696, + 43.230377 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1121", + "ref": "FR*SOD*S*MAMP*11*2*_*_", + "name": "IZIVIA | MARSEILLE 09 - AVENUE DE LUMINY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.46368, + 43.344786 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP922", + "ref": "FR*SOD*S*MAMP*9*2*_*_", + "name": "IZIVIA | PLAN-DE-CUQUES - AVENUE PLEIN SUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.358982, + 43.34878 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1711", + "ref": "FR*SOD*S*MAMP*17*1*_*_", + "name": "IZIVIA | MARSEILLE 15 - AVENUE DE SAINT LOUIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.418975, + 43.295209 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1212", + "ref": "FR*SOD*S*MAMP*12*1*_*_", + "name": "IZIVIA | MARSEILLE 12 - CHEMIN DE SAINT JEAN DU DESERT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.31663, + 43.35941 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1812", + "ref": "FR*SOD*S*MAMP*18*1*_*_", + "name": "IZIVIA | MARSEILLE 16 - PLAGE DE LESTAQUE SATELITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.358982, + 43.34878 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1712", + "ref": "FR*SOD*S*MAMP*17*1*_*_", + "name": "IZIVIA | MARSEILLE 15 - AVENUE DE SAINT LOUIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.477612, + 43.351743 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1511", + "ref": "FR*SOD*S*MAMP*15*1*_*_", + "name": "IZIVIA | ALLAUCH - AV. SALVADOR ALLENDE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.477612, + 43.351743 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1512", + "ref": "FR*SOD*S*MAMP*15*1*_*_", + "name": "IZIVIA | ALLAUCH - AV. SALVADOR ALLENDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.378603, + 43.281329 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1411", + "ref": "FR*SOD*S*MAMP*14*1*_*_", + "name": "IZIVIA | MARSEILLE 06 - RUE DE BRETEUIL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.378603, + 43.281329 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1412", + "ref": "FR*SOD*S*MAMP*14*1*_*_", + "name": "IZIVIA | MARSEILLE 06 - RUE DE BRETEUIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.19051, + 43.431608 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1311", + "ref": "FR*SOD*S*MAMP*13*1*_*_", + "name": "IZIVIA | MARIGNANE - PLACE COMTE DE GRASSE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.19051, + 43.431608 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP1312", + "ref": "FR*SOD*S*MAMP*13*1*_*_", + "name": "IZIVIA | MARIGNANE - PLACE COMTE DE GRASSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.385708, + 43.271343 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref:EU:EVSE": "FRIZMPMAMP622", + "ref": "FR*SOD*S*MAMP*6*2*_*_", + "name": "IZIVIA | MARSEILLE 08 - DUMONT DURVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.145565, + 45.535069 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref:EU:EVSE": "FRSDGPMBDG312", + "ref": "FR*SOD*S*MBDG*3*1*_*_", + "name": "MEYMAC PORROTS - PLACE DES PORROTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.290458, + 45.387565 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref:EU:EVSE": "FRSDGPMBDG112", + "ref": "FR*SOD*S*MBDG*1*1*_*_", + "name": "NEUVIC PLAGE - ROUTE DE LA PLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.312163, + 45.549453 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref:EU:EVSE": "FRSDGPMBDG731", + "ref": "FR*SOD*S*MBDG*7*3*_*_", + "name": "USSEL - PLACE MARCEL PAGNOL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.312163, + 45.549453 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref:EU:EVSE": "FRSDGPMBDG732", + "ref": "FR*SOD*S*MBDG*7*3*_*_", + "name": "USSEL - PLACE MARCEL PAGNOL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.926255, + 45.598333 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref:EU:EVSE": "FRSDGPMBDG611", + "ref": "FR*SOD*S*MBDG*6*1*_*_", + "name": "BUGEAT - RUE DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.926255, + 45.598333 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref:EU:EVSE": "FRSDGPMBDG612", + "ref": "FR*SOD*S*MBDG*6*1*_*_", + "name": "BUGEAT - RUE DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.451322, + 45.66523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref:EU:EVSE": "FRSDGPMBDG512", + "ref": "FR*SOD*S*MBDG*5*1*_*_", + "name": "EYGURANDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.451322, + 45.66523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref:EU:EVSE": "FRSDGPMBDG511", + "ref": "FR*SOD*S*MBDG*5*1*_*_", + "name": "EYGURANDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.145565, + 45.535069 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref:EU:EVSE": "FRSDGPMBDG311", + "ref": "FR*SOD*S*MBDG*3*1*_*_", + "name": "MEYMAC PORROTS - PLACE DES PORROTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271105, + 45.382999 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref:EU:EVSE": "FRSDGPMBDG212", + "ref": "FR*SOD*S*MBDG*2*1*_*_", + "name": "NEUVIC VILLE - PLACE HENRI QUEUILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271105, + 45.382999 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref:EU:EVSE": "FRSDGPMBDG211", + "ref": "FR*SOD*S*MBDG*2*1*_*_", + "name": "NEUVIC VILLE - PLACE HENRI QUEUILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.290458, + 45.387565 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref:EU:EVSE": "FRSDGPMBDG111", + "ref": "FR*SOD*S*MBDG*1*1*_*_", + "name": "NEUVIC PLAGE - ROUTE DE LA PLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552876, + 49.072469 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref:EU:EVSE": "FRSPSPSHEL1521", + "ref": "FR*SOD*S*SHEL*15*2*_*_", + "name": "AIRE DE VEMARS EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.064884, + 48.974332 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref:EU:EVSE": "FRSPSPSHEL1411", + "ref": "FR*SOD*S*SHEL*14*1*_*_", + "name": "AIRE DE KESKASTEL OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.937306, + 45.359277 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref:EU:EVSE": "FRSPSPSHEL311", + "ref": "FR*SOD*S*SHEL*3*1*_*_", + "name": "AIRE DE LA CORREZE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.81278, + 45.856003 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref:EU:EVSE": "FRSPSPSHEL1011", + "ref": "FR*SOD*S*SHEL*10*1*_*_", + "name": "AIRE DU HAUT FOREZ NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.273755, + 45.337849 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref:EU:EVSE": "FRSPSPSHEL411", + "ref": "FR*SOD*S*SHEL*4*1*_*_", + "name": "AIRE DE LAFAYETTE LORLANGES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.717265, + 48.538636 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref:EU:EVSE": "FRSPSPSHEL1211", + "ref": "FR*SOD*S*SHEL*12*1*_*_", + "name": "AIRE DE OSTWALD OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.154907, + 45.682211 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref:EU:EVSE": "FRSPSPSHEL1111", + "ref": "FR*SOD*S*SHEL*11*1*_*_", + "name": "AIRE DE LA PLAINE DU FOREZ OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.855139, + 48.275634 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref:EU:EVSE": "FRSPSPSHEL1311", + "ref": "FR*SOD*S*SHEL*13*1*_*_", + "name": "AIRE DE LA PLAINE DE BEAUCE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.812358, + 45.855017 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref:EU:EVSE": "FRSPSPSHEL911", + "ref": "FR*SOD*S*SHEL*9*1*_*_", + "name": "AIRE DU HAUT FOREZ SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.855781, + 48.270983 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref:EU:EVSE": "FRSPSPSHEL711", + "ref": "FR*SOD*S*SHEL*7*1*_*_", + "name": "AIRE DE VAL NEUVY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.344201, + 43.361123 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref:EU:EVSE": "FRSPSPSHEL111", + "ref": "FR*SOD*S*SHEL*1*1*_*_", + "name": "AIRE DE BEZIERS MONTBLANC NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.347042, + 43.35903 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref:EU:EVSE": "FRSPSPSHEL211", + "ref": "FR*SOD*S*SHEL*2*1*_*_", + "name": "AIRE DE BEZIERS MONTBLANC SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.090055, + 43.937192 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref:EU:EVSE": "FRSPSPSHEL511", + "ref": "FR*SOD*S*SHEL*5*1*_*_", + "name": "AIRE DE LOCEAN EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.770166, + 48.57303 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "537527145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ZENPARK", + "ref:EU:EVSE": "FROTHPOTHR13361", + "ref": "FR*SOD*S*OTHR*133*6*_*_", + "name": "PARKING DANUBE VERT - STRASBOURG", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.770166, + 48.57303 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "537527145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ZENPARK", + "ref:EU:EVSE": "FROTHPOTHR13351", + "ref": "FR*SOD*S*OTHR*133*5*_*_", + "name": "PARKING DANUBE VERT - STRASBOURG", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.770166, + 48.57303 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "537527145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ZENPARK", + "ref:EU:EVSE": "FROTHPOTHR13331", + "ref": "FR*SOD*S*OTHR*133*3*_*_", + "name": "PARKING DANUBE VERT - STRASBOURG", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.770166, + 48.57303 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "537527145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ZENPARK", + "ref:EU:EVSE": "FROTHPOTHR13321", + "ref": "FR*SOD*S*OTHR*133*2*_*_", + "name": "PARKING DANUBE VERT - STRASBOURG", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.770166, + 48.57303 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "537527145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ZENPARK", + "ref:EU:EVSE": "FROTHPOTHR13311", + "ref": "FR*SOD*S*OTHR*133*1*_*_", + "name": "PARKING DANUBE VERT - STRASBOURG", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.770166, + 48.57303 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "537527145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ZENPARK", + "ref:EU:EVSE": "FROTHPOTHR13341", + "ref": "FR*SOD*S*OTHR*133*4*_*_", + "name": "PARKING DANUBE VERT - STRASBOURG", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38847, + 47.920399 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PURNMJP", + "ref": "", + "name": "Ploërmel - Parc d'activités de Ronsouze", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-21", + "note": "", + "source:date": "2015-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38847, + 47.920399 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PURNMJP", + "ref": "", + "name": "Ploërmel - Parc d'activités de Ronsouze", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-21", + "note": "", + "source:date": "2015-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0849722, + 47.2945556 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTI8PEKPXSF", + "ref": "", + "name": "Locmaria - 56 Rue Argentré du Plessis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-05-02", + "note": "", + "source:date": "2019-05-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15921, + 47.349146 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHFVGTE", + "ref": "", + "name": "Le palais - Les Glacis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-07-19", + "note": "", + "source:date": "2018-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.763716, + 47.716287 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPQFPGY", + "ref": "", + "name": "Meucon - Route de Vannes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-07-20", + "note": "", + "source:date": "2018-07-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.433201, + 47.994416 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGVDKQE", + "ref": "", + "name": "Meslan - Rue de Beg er Lann", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-30", + "note": "", + "source:date": "2016-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.433201, + 47.994416 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGVDKQE", + "ref": "", + "name": "Meslan - Rue de Beg er Lann", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-30", + "note": "", + "source:date": "2016-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.235664, + 47.735956 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PQKXRZR", + "ref": "", + "name": "Merlevenez - Rue du Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-04", + "note": "", + "source:date": "2017-01-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.235664, + 47.735956 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PQKXRZR", + "ref": "", + "name": "Merlevenez - Rue du Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-04", + "note": "", + "source:date": "2017-01-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.462695, + 48.139513 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTZEPFV", + "ref": "", + "name": "Ménéac - Place du Plessis de Genedan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-07", + "note": "", + "source:date": "2016-12-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.462695, + 48.139513 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTZEPFV", + "ref": "", + "name": "Ménéac - Place du Plessis de Genedan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-07", + "note": "", + "source:date": "2016-12-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.110099, + 47.979188 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFWUXXF", + "ref": "", + "name": "Melrand - Rue Saint Laurent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-22", + "note": "", + "source:date": "2016-12-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.110099, + 47.979188 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFWUXXF", + "ref": "", + "name": "Melrand - Rue Saint Laurent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-22", + "note": "", + "source:date": "2016-12-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.282737, + 48.082356 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPMKMGS", + "ref": "", + "name": "Mauron - Rue du 19 Mars 1962", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-06-14", + "note": "", + "source:date": "2017-06-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.282737, + 48.082356 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPMKMGS", + "ref": "", + "name": "Mauron - Rue du 19 Mars 1962", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-06-14", + "note": "", + "source:date": "2017-06-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.305132, + 47.529508 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZFRNAW", + "ref": "", + "name": "Marzan - Aire de Marzan", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-08-29", + "note": "", + "source:date": "2017-08-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.305132, + 47.529508 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZFRNAW", + "ref": "", + "name": "Marzan - Aire de Marzan", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-08-29", + "note": "", + "source:date": "2017-08-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.384419, + 47.809912 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTZEHVV", + "ref": "", + "name": "Malestroit - Place du Docteur Jean Queinnec", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-16", + "note": "", + "source:date": "2017-05-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.384419, + 47.809912 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTZEHVV", + "ref": "", + "name": "Malestroit - Place du Docteur Jean Queinnec", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-16", + "note": "", + "source:date": "2017-05-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38363, + 47.810723 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEUTTDT", + "ref": "", + "name": "Malestroit - Place du Docteur Jean Queinnec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-09", + "note": "", + "source:date": "2016-09-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38363, + 47.810723 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEUTTDT", + "ref": "", + "name": "Malestroit - Place du Docteur Jean Queinnec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-09", + "note": "", + "source:date": "2016-09-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.29572, + 47.676634 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PUWNFHN", + "ref": "", + "name": "Malansac - Rue des Forges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-02", + "note": "", + "source:date": "2016-12-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.29572, + 47.676634 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PUWNFHN", + "ref": "", + "name": "Malansac - Rue des Forges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-02", + "note": "", + "source:date": "2016-12-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.373377, + 47.731763 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNFGWPG", + "ref": "", + "name": "Lorient - Rue Raymond du Rallier du Baty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-04", + "note": "", + "source:date": "2017-01-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.373377, + 47.731763 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNFGWPG", + "ref": "", + "name": "Lorient - Rue Raymond du Rallier du Baty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-04", + "note": "", + "source:date": "2017-01-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.401963, + 47.766652 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PJXKJUW", + "ref": "", + "name": "Lorient - Rue Müller", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-20", + "note": "", + "source:date": "2016-10-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.401963, + 47.766652 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PJXKJUW", + "ref": "", + "name": "Lorient - Rue Müller", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-20", + "note": "", + "source:date": "2016-10-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.382552, + 47.736239 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PDXRKQV", + "ref": "", + "name": "Lorient - Rue Moïse Le Bihan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-08-28", + "note": "", + "source:date": "2017-08-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.382552, + 47.736239 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PDXRKQV", + "ref": "", + "name": "Lorient - Rue Moïse Le Bihan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-08-28", + "note": "", + "source:date": "2017-08-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.393552, + 47.739971 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PBEDFUJ", + "ref": "", + "name": "Lorient - Rue Maurice Thorez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-12", + "note": "", + "source:date": "2016-09-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.393552, + 47.739971 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PBEDFUJ", + "ref": "", + "name": "Lorient - Rue Maurice Thorez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-12", + "note": "", + "source:date": "2016-09-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.763716, + 47.716287 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPQFPGY", + "ref": "", + "name": "Meucon - Route de Vannes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-07-20", + "note": "", + "source:date": "2018-07-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.52498182745563, + 48.0526854834355 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLXYAI8QKSC", + "ref": "", + "name": "Mohon - Parking du bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-27", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.52498182745563, + 48.0526854834355 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLXYAI8QKSC", + "ref": "", + "name": "Mohon - Parking du bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-27", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.219651, + 47.713374 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PMYDKMD", + "ref": "", + "name": "Peillac - Rue de la Citée des Fleurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-01", + "note": "", + "source:date": "2016-12-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.649047, + 47.629187 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PDREUCR", + "ref": "", + "name": "Theix-noyalo - Rue de Treffléan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-06", + "note": "", + "source:date": "2016-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.591434, + 47.792627 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PANVVBU", + "ref": "", + "name": "Trédion - Place Saint Christophe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-05", + "note": "", + "source:date": "2016-10-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.591434, + 47.792627 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PANVVBU", + "ref": "", + "name": "Trédion - Place Saint Christophe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-05", + "note": "", + "source:date": "2016-10-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.614167, + 47.682369 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PASJVEZ", + "ref": "", + "name": "Treffléan - Rue du Dévehat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-24", + "note": "", + "source:date": "2017-11-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.614167, + 47.682369 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PASJVEZ", + "ref": "", + "name": "Treffléan - Rue du Dévehat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-24", + "note": "", + "source:date": "2017-11-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.422678, + 47.866851 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PMNEHHV", + "ref": "", + "name": "Val d'oust - Place de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-08-24", + "note": "", + "source:date": "2018-08-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.422678, + 47.866851 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PMNEHHV", + "ref": "", + "name": "Val d'oust - Place de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-08-24", + "note": "", + "source:date": "2018-08-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.730633, + 47.658564 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PVZHEMA", + "ref": "", + "name": "Vannes - Avenue Général Délestraint", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-12", + "note": "", + "source:date": "2016-09-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.730633, + 47.658564 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PVZHEMA", + "ref": "", + "name": "Vannes - Avenue Général Délestraint", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-12", + "note": "", + "source:date": "2016-09-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.78023, + 47.632566 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCVJQYU", + "ref": "", + "name": "Vannes - Avenue Maréchal Juin Maréchal de France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-14", + "note": "", + "source:date": "2016-10-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.78023, + 47.632566 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCVJQYU", + "ref": "", + "name": "Vannes - Avenue Maréchal Juin Maréchal de France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-14", + "note": "", + "source:date": "2016-10-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.219651, + 47.713374 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PMYDKMD", + "ref": "", + "name": "Peillac - Rue de la Citée des Fleurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-01", + "note": "", + "source:date": "2016-12-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.358157, + 47.580334 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWDVXQA", + "ref": "", + "name": "Péaule - Place Saint Gaudence", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-28", + "note": "", + "source:date": "2016-10-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.681072, + 47.742514 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEKCQMR", + "ref": "", + "name": "Monterblanc - Place Anne de Bretagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-06", + "note": "", + "source:date": "2016-12-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.358157, + 47.580334 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWDVXQA", + "ref": "", + "name": "Péaule - Place Saint Gaudence", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-28", + "note": "", + "source:date": "2016-10-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.879812, + 48.067092 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLNEXBM", + "ref": "", + "name": "Noyal-pontivy - Avenue de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-30", + "note": "", + "source:date": "2016-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.879812, + 48.067092 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLNEXBM", + "ref": "", + "name": "Noyal-pontivy - Avenue de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-30", + "note": "", + "source:date": "2016-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.457083, + 47.592389 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PMEFKNE", + "ref": "", + "name": "Noyal-muzillac - Rue du Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-09", + "note": "", + "source:date": "2016-09-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.457083, + 47.592389 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PMEFKNE", + "ref": "", + "name": "Noyal-muzillac - Rue du Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-09", + "note": "", + "source:date": "2016-09-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.482977, + 47.555619 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTGSHMS", + "ref": "", + "name": "Muzillac - Place du Vieux Couvent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-04", + "note": "", + "source:date": "2016-11-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.482977, + 47.555619 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTGSHMS", + "ref": "", + "name": "Muzillac - Place du Vieux Couvent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-04", + "note": "", + "source:date": "2016-11-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.833536, + 47.855722 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCNAHPN", + "ref": "", + "name": "Moustoir-ac - Rue de la Maillette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-07", + "note": "", + "source:date": "2016-12-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.833536, + 47.855722 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCNAHPN", + "ref": "", + "name": "Moustoir-ac - Rue de la Maillette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-07", + "note": "", + "source:date": "2016-12-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.819318, + 47.91868 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PATFEQY", + "ref": "", + "name": "Moréac - Place de la Résistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-26", + "note": "", + "source:date": "2016-09-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.819318, + 47.91868 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PATFEQY", + "ref": "", + "name": "Moréac - Place de la Résistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-26", + "note": "", + "source:date": "2016-09-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.681072, + 47.742514 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEKCQMR", + "ref": "", + "name": "Monterblanc - Place Anne de Bretagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-06", + "note": "", + "source:date": "2016-12-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.37854, + 47.762901 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PBUGKFT", + "ref": "", + "name": "Lorient - Rue Léo Lagrange", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-07-16", + "note": "", + "source:date": "2020-07-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.37854, + 47.762901 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PBUGKFT", + "ref": "", + "name": "Lorient - Rue Léo Lagrange", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-07-16", + "note": "", + "source:date": "2020-07-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.368187, + 47.746835 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PAPALYU", + "ref": "", + "name": "Lorient - Rue Jean le Coutaller", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-08-29", + "note": "", + "source:date": "2017-08-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0849722, + 47.2945556 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTI8PEKPXSF", + "ref": "", + "name": "Locmaria - 56 Rue Argentré du Plessis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-05-02", + "note": "", + "source:date": "2019-05-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.104075, + 47.710186 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PUNJRKT", + "ref": "", + "name": "Locoal-mendon - Rue de Kroas Er Bleu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-04", + "note": "", + "source:date": "2016-11-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.104075, + 47.710186 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PUNJRKT", + "ref": "", + "name": "Locoal-mendon - Rue de Kroas Er Bleu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-04", + "note": "", + "source:date": "2016-11-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.34326909091439, + 47.7237299482431 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PVA14FOL0VC", + "ref": "", + "name": "Locmiquélic - Parking du centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-03-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.34326909091439, + 47.7237299482431 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PVA14FOL0VC", + "ref": "", + "name": "Locmiquélic - Parking du centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-03-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.829046, + 47.881531 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPTAZYC", + "ref": "", + "name": "Locminé - Rue Maréchal Leclerc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-21", + "note": "", + "source:date": "2016-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.829046, + 47.881531 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPTAZYC", + "ref": "", + "name": "Locminé - Rue Maréchal Leclerc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-21", + "note": "", + "source:date": "2016-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.837508, + 47.888933 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGFVWQZ", + "ref": "", + "name": "Locminé - Place Joseph Richard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-21", + "note": "", + "source:date": "2016-12-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.837508, + 47.888933 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGFVWQZ", + "ref": "", + "name": "Locminé - Place Joseph Richard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-21", + "note": "", + "source:date": "2016-12-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.943775, + 47.568076 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PQDNNRD", + "ref": "", + "name": "Locmariaquer - Parking Wilson", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-22", + "note": "", + "source:date": "2016-11-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.943775, + 47.568076 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PQDNNRD", + "ref": "", + "name": "Locmariaquer - Parking Wilson", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-22", + "note": "", + "source:date": "2016-11-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.787496, + 47.756393 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PSPXABC", + "ref": "", + "name": "Locmaria-grand-champ - Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-26", + "note": "", + "source:date": "2016-09-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.787496, + 47.756393 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PSPXABC", + "ref": "", + "name": "Locmaria-grand-champ - Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-26", + "note": "", + "source:date": "2016-09-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.188811, + 48.070927 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPYLBEV", + "ref": "", + "name": "Locmalo - Rue Jean Le Bris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-15", + "note": "", + "source:date": "2016-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76628, + 47.758191 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHDBBKQ", + "ref": "", + "name": "Locqueltas - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-07-06", + "note": "", + "source:date": "2018-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.188811, + 48.070927 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPYLBEV", + "ref": "", + "name": "Locmalo - Rue Jean Le Bris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-15", + "note": "", + "source:date": "2016-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.526434, + 47.862029 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXBEWHF", + "ref": "", + "name": "Lizio - Rue du souvenir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-14", + "note": "", + "source:date": "2016-12-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.526434, + 47.862029 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXBEWHF", + "ref": "", + "name": "Lizio - Rue du souvenir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-14", + "note": "", + "source:date": "2016-12-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.353597, + 47.636525 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYHQTBN", + "ref": "", + "name": "Limerzel - Place de L'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-12", + "note": "", + "source:date": "2016-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.353597, + 47.636525 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYHQTBN", + "ref": "", + "name": "Limerzel - Place de L'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-12", + "note": "", + "source:date": "2016-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.271274, + 48.036786 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRAGKJL", + "ref": "", + "name": "Lignol - Place Corentin Le Floch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-24", + "note": "", + "source:date": "2017-11-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.271274, + 48.036786 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRAGKJL", + "ref": "", + "name": "Lignol - Place Corentin Le Floch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-24", + "note": "", + "source:date": "2017-11-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.212803, + 47.739021 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PULLLGP", + "ref": "", + "name": "Les fougerêts - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-05", + "note": "", + "source:date": "2016-10-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.212803, + 47.739021 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PULLLGP", + "ref": "", + "name": "Les fougerêts - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-05", + "note": "", + "source:date": "2016-10-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.648074, + 47.525771 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGQ6RXOGQR9", + "ref": "", + "name": "Le tour-du-parc - Parking Cimetière Place des 4 Frères le Blouch", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-06-10", + "note": "", + "source:date": "2020-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1861944, + 47.36075 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PBD9SBFG89K", + "ref": "", + "name": "Le palais - Port-Collen", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-07-12", + "note": "", + "source:date": "2019-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1861944, + 47.36075 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PBD9SBFG89K", + "ref": "", + "name": "Le palais - Port-Collen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-07-12", + "note": "", + "source:date": "2019-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76628, + 47.758191 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHDBBKQ", + "ref": "", + "name": "Locqueltas - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-07-06", + "note": "", + "source:date": "2018-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.365966, + 47.735396 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWCCSFT", + "ref": "", + "name": "Lorient - Avenue de la Perrière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-08-05", + "note": "", + "source:date": "2016-08-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.368187, + 47.746835 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PAPALYU", + "ref": "", + "name": "Lorient - Rue Jean le Coutaller", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-08-29", + "note": "", + "source:date": "2017-08-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36632778285274, + 47.7542447078472 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PD1AOYXWWDU", + "ref": "", + "name": "Lorient - Parvis Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-07-17", + "note": "BORNE AUTOPARTAGE", + "source:date": "2023-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.387461, + 47.742671 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYDWRKB", + "ref": "", + "name": "Lorient - Rue de Lanveur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-30", + "note": "", + "source:date": "2016-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.387461, + 47.742671 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYDWRKB", + "ref": "", + "name": "Lorient - Rue de Lanveur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-30", + "note": "", + "source:date": "2016-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.385916, + 47.761289 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWZXSRJ", + "ref": "", + "name": "Lorient - Place de La Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-06-23", + "note": "", + "source:date": "2017-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.385916, + 47.761289 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWZXSRJ", + "ref": "", + "name": "Lorient - Place de La Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-06-23", + "note": "", + "source:date": "2017-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.356266, + 47.746452 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRYVAMD", + "ref": "", + "name": "Lorient - Place d'Armes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-30", + "note": "", + "source:date": "2017-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.356266, + 47.746452 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRYVAMD", + "ref": "", + "name": "Lorient - Place d'Armes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-30", + "note": "", + "source:date": "2017-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.356266, + 47.746452 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRYVAMD", + "ref": "", + "name": "Lorient - Place d'Armes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-30", + "note": "", + "source:date": "2017-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.356266, + 47.746452 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRYVAMD", + "ref": "", + "name": "Lorient - Place d'Armes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-30", + "note": "", + "source:date": "2017-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.360043, + 47.749039 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWUMDJK", + "ref": "", + "name": "Lorient - Place Anatole Le Braz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-19", + "note": "", + "source:date": "2016-10-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.360043, + 47.749039 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWUMDJK", + "ref": "", + "name": "Lorient - Place Anatole Le Braz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-19", + "note": "", + "source:date": "2016-10-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.361121, + 47.74982 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYPKBZP", + "ref": "", + "name": "Lorient - Place Alsace Lorraine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-19", + "note": "", + "source:date": "2016-10-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.361121, + 47.74982 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYPKBZP", + "ref": "", + "name": "Lorient - Place Alsace Lorraine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-19", + "note": "", + "source:date": "2016-10-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36632778285274, + 47.7542447078472 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PD1AOYXWWDU", + "ref": "", + "name": "Lorient - Parvis Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-07-17", + "note": "BORNE AUTOPARTAGE", + "source:date": "2023-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.365966, + 47.735396 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWCCSFT", + "ref": "", + "name": "Lorient - Avenue de la Perrière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-08-05", + "note": "", + "source:date": "2016-08-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36687356916206, + 47.7541104118167 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PIQBKMPJAIG", + "ref": "", + "name": "Lorient - Parking gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-20", + "note": "", + "source:date": "2023-07-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36687356916206, + 47.7541104118167 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PIQBKMPJAIG", + "ref": "", + "name": "Lorient - Parking gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-20", + "note": "", + "source:date": "2023-07-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.37788, + 47.75316 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PKHNUDJ", + "ref": "", + "name": "Lorient - Lorient Découverte Rue de Villeneuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-22", + "note": "", + "source:date": "2016-11-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.37788, + 47.75316 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PKHNUDJ", + "ref": "", + "name": "Lorient - Lorient Découverte Rue de Villeneuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-22", + "note": "", + "source:date": "2016-11-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.362195, + 47.753665 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZRNMMN", + "ref": "", + "name": "Lorient - Cours Louis de Chazelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-09-29", + "note": "", + "source:date": "2017-09-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.362195, + 47.753665 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZRNMMN", + "ref": "", + "name": "Lorient - Cours Louis de Chazelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-09-29", + "note": "", + "source:date": "2017-09-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36581, + 47.748922 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYVPZUN", + "ref": "", + "name": "Lorient - Boulevard Leclerc - Parking Hôtel De Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-19", + "note": "", + "source:date": "2016-10-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36581, + 47.748922 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYVPZUN", + "ref": "", + "name": "Lorient - Boulevard Leclerc - Parking Hôtel De Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-19", + "note": "", + "source:date": "2016-10-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.364871, + 47.751861 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZTUAMX", + "ref": "", + "name": "Lorient - Boulevard du Maréchal Joffre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-14", + "note": "", + "source:date": "2016-10-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.364871, + 47.751861 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZTUAMX", + "ref": "", + "name": "Lorient - Boulevard du Maréchal Joffre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-14", + "note": "", + "source:date": "2016-10-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.359602, + 47.730545 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTCSBVD", + "ref": "", + "name": "Lorient - Boulevard Abbé Louis le Cam", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-24", + "note": "", + "source:date": "2017-11-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.359602, + 47.730545 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTCSBVD", + "ref": "", + "name": "Lorient - Boulevard Abbé Louis le Cam", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-24", + "note": "", + "source:date": "2017-11-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.649047, + 47.629187 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PDREUCR", + "ref": "", + "name": "Theix-noyalo - Rue de Treffléan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-06", + "note": "", + "source:date": "2016-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.629431, + 47.579263 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHLLWEY", + "ref": "", + "name": "Surzur - Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-04", + "note": "", + "source:date": "2016-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.629431, + 47.579263 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHLLWEY", + "ref": "", + "name": "Surzur - Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-04", + "note": "", + "source:date": "2016-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.121657, + 47.481743 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PATFAFZ", + "ref": "", + "name": "Quiberon - Place Varquez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-04", + "note": "", + "source:date": "2016-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.965144, + 48.071378 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCYYADE", + "ref": "", + "name": "Pontivy - Quai des Récollets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-22", + "note": "", + "source:date": "2016-12-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.965144, + 48.071378 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCYYADE", + "ref": "", + "name": "Pontivy - Quai des Récollets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-22", + "note": "", + "source:date": "2016-12-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.357774, + 47.707941 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PVVLALM", + "ref": "", + "name": "Port-louis - Rue de la Brèche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-08", + "note": "", + "source:date": "2016-09-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.357774, + 47.707941 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PVVLALM", + "ref": "", + "name": "Port-louis - Rue de la Brèche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-08", + "note": "", + "source:date": "2016-09-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.410638, + 48.060595 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PSAMTCM", + "ref": "", + "name": "Priziac - Rue du Bel Air", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-27", + "note": "", + "source:date": "2017-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.410638, + 48.060595 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PSAMTCM", + "ref": "", + "name": "Priziac - Rue du Bel Air", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-27", + "note": "", + "source:date": "2017-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.449763, + 47.681789 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLEVJXJ", + "ref": "", + "name": "Questembert - Avenue de la Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-30", + "note": "", + "source:date": "2016-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.449763, + 47.681789 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLEVJXJ", + "ref": "", + "name": "Questembert - Avenue de la Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-30", + "note": "", + "source:date": "2016-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.452043, + 47.660195 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PVMWQEJ", + "ref": "", + "name": "Questembert - Place Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-28", + "note": "", + "source:date": "2016-06-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.452043, + 47.660195 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PVMWQEJ", + "ref": "", + "name": "Questembert - Place Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-28", + "note": "", + "source:date": "2016-06-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.41565, + 47.790313 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLYQNFS", + "ref": "", + "name": "Quéven - Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-12", + "note": "", + "source:date": "2016-10-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.41565, + 47.790313 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLYQNFS", + "ref": "", + "name": "Quéven - Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-12", + "note": "", + "source:date": "2016-10-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.121657, + 47.481743 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PATFAFZ", + "ref": "", + "name": "Quiberon - Place Varquez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-04", + "note": "", + "source:date": "2016-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.966614, + 48.064974 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PADZEDJ", + "ref": "", + "name": "Pontivy - Place Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-04", + "note": "", + "source:date": "2016-11-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.10414118509687, + 47.4874178836587 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCWX3CAM47B", + "ref": "", + "name": "Quiberon - Port Haliguen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-06-14", + "note": "", + "source:date": "2022-12-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.10414118509687, + 47.4874178836587 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCWX3CAM47B", + "ref": "", + "name": "Quiberon - Port Haliguen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-06-14", + "note": "", + "source:date": "2022-12-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.135324, + 47.906071 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHTGWJF", + "ref": "", + "name": "Quistinic - Rue de la Résistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-09-06", + "note": "", + "source:date": "2017-09-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.135324, + 47.906071 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHTGWJF", + "ref": "", + "name": "Quistinic - Rue de la Résistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-09-06", + "note": "", + "source:date": "2017-09-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.713993, + 47.961865 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPDYFKZ", + "ref": "", + "name": "Radenac - Rue Anne de Bretagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-07", + "note": "", + "source:date": "2016-12-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.713993, + 47.961865 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPDYFKZ", + "ref": "", + "name": "Radenac - Rue Anne de Bretagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-07", + "note": "", + "source:date": "2016-12-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.310304, + 47.712149 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEETZMB", + "ref": "", + "name": "Riantec - Rue Le Gloahec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-07-21", + "note": "", + "source:date": "2016-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.310304, + 47.712149 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEETZMB", + "ref": "", + "name": "Riantec - Rue Le Gloahec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-07-21", + "note": "", + "source:date": "2016-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.101493, + 47.631023 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PESZPPD", + "ref": "", + "name": "Rieux - Rue de la Briqueterie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-06", + "note": "", + "source:date": "2016-12-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.101493, + 47.631023 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PESZPPD", + "ref": "", + "name": "Rieux - Rue de la Briqueterie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-06", + "note": "", + "source:date": "2016-12-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.752332, + 48.068001 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PMWDFEN", + "ref": "", + "name": "Rohan - Rue de Kerentree", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-28", + "note": "", + "source:date": "2016-11-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.752332, + 48.068001 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PMWDFEN", + "ref": "", + "name": "Rohan - Rue de Kerentree", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-28", + "note": "", + "source:date": "2016-11-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.966614, + 48.064974 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PADZEDJ", + "ref": "", + "name": "Pontivy - Place Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-04", + "note": "", + "source:date": "2016-11-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9684577690378, + 48.0700414667807 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PBTK4GPLMA5", + "ref": "", + "name": "Pontivy - Parking Jégourel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-22", + "note": "", + "source:date": "2023-03-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.717093, + 48.126648 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGBVXDN", + "ref": "", + "name": "Roudouallec - Rue Nicolas Le Grand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-07", + "note": "", + "source:date": "2016-11-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.065024, + 47.981275 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWHRADG", + "ref": "", + "name": "Pluméliau-bieuzy - Place Ernest le Moine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-02", + "note": "", + "source:date": "2016-12-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.336528, + 47.917212 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRJBZTG", + "ref": "", + "name": "Plouay - Rue Hélène Le Chaton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-30", + "note": "", + "source:date": "2016-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.336528, + 47.917212 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRJBZTG", + "ref": "", + "name": "Plouay - Rue Hélène Le Chaton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-30", + "note": "", + "source:date": "2016-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.915687, + 47.653088 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PUPKBXY", + "ref": "", + "name": "Plougoumelen - Rue des Chaumières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-04", + "note": "", + "source:date": "2016-11-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.915687, + 47.653088 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PUPKBXY", + "ref": "", + "name": "Plougoumelen - Rue des Chaumières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-04", + "note": "", + "source:date": "2016-11-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.112396, + 47.599028 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZGBPNA", + "ref": "", + "name": "Plouharnel - Rue du Tramway", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-16", + "note": "", + "source:date": "2017-05-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.112396, + 47.599028 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZGBPNA", + "ref": "", + "name": "Plouharnel - Rue du Tramway", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-16", + "note": "", + "source:date": "2017-05-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.251559, + 47.696366 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHWGLVR", + "ref": "", + "name": "Plouhinec - Rue des Roseaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-07-13", + "note": "", + "source:date": "2016-07-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.251559, + 47.696366 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHWGLVR", + "ref": "", + "name": "Plouhinec - Rue des Roseaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-07-13", + "note": "", + "source:date": "2016-07-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.389359, + 48.145256 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PQQYWJL", + "ref": "", + "name": "Plouray - Rue d'Elle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-03", + "note": "", + "source:date": "2016-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.389359, + 48.145256 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PQQYWJL", + "ref": "", + "name": "Plouray - Rue d'Elle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-03", + "note": "", + "source:date": "2016-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.641815, + 47.838044 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGJHPTX", + "ref": "", + "name": "Plumelec - Rue des Martyrs de la Résistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-09", + "note": "", + "source:date": "2016-12-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.641815, + 47.838044 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGJHPTX", + "ref": "", + "name": "Plumelec - Rue des Martyrs de la Résistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-09", + "note": "", + "source:date": "2016-12-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.065024, + 47.981275 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWHRADG", + "ref": "", + "name": "Pluméliau-bieuzy - Place Ernest le Moine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-02", + "note": "", + "source:date": "2016-12-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9684577690378, + 48.0700414667807 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PBTK4GPLMA5", + "ref": "", + "name": "Pontivy - Parking Jégourel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-22", + "note": "", + "source:date": "2023-03-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.972268, + 47.957695 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PUXSADP", + "ref": "", + "name": "Pluméliau-bieuzy - Rue de la Ferrière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-19", + "note": "", + "source:date": "2017-01-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.972268, + 47.957695 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PUXSADP", + "ref": "", + "name": "Pluméliau-bieuzy - Rue de la Ferrière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-19", + "note": "", + "source:date": "2017-01-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.886022, + 47.861432 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNBPTPB", + "ref": "", + "name": "Plumelin - Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-07", + "note": "", + "source:date": "2016-12-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.886022, + 47.861432 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNBPTPB", + "ref": "", + "name": "Plumelin - Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-07", + "note": "", + "source:date": "2016-12-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95916, + 47.673607 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTLKZQJ", + "ref": "", + "name": "Pluneret - Rue Marie Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-04", + "note": "", + "source:date": "2016-11-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95916, + 47.673607 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTLKZQJ", + "ref": "", + "name": "Pluneret - Rue Marie Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-04", + "note": "", + "source:date": "2016-11-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.009248, + 47.777566 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PURGRZH", + "ref": "", + "name": "Pluvigner - Place Saint Michel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-16", + "note": "", + "source:date": "2017-05-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.009248, + 47.777566 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PURGRZH", + "ref": "", + "name": "Pluvigner - Place Saint Michel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-16", + "note": "", + "source:date": "2017-05-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.399863, + 47.833423 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEFEJZZ", + "ref": "", + "name": "Pont-scorff - Rue Théophile Guyomar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-27", + "note": "", + "source:date": "2016-09-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.399863, + 47.833423 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEFEJZZ", + "ref": "", + "name": "Pont-scorff - Rue Théophile Guyomar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-27", + "note": "", + "source:date": "2016-09-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95376, + 48.054001 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PJSEDAA", + "ref": "", + "name": "Pontivy - Avenue des cités unies", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2014-03-18", + "note": "", + "source:date": "2014-03-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95376, + 48.054001 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PJSEDAA", + "ref": "", + "name": "Pontivy - Avenue des cités unies", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2014-03-18", + "note": "", + "source:date": "2014-03-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.717093, + 48.126648 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGBVXDN", + "ref": "", + "name": "Roudouallec - Rue Nicolas Le Grand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-07", + "note": "", + "source:date": "2016-11-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.282708, + 47.819758 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRTQNMD", + "ref": "", + "name": "Ruffiac - Place de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-21", + "note": "", + "source:date": "2017-11-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.570696, + 47.675299 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCHEKHW", + "ref": "", + "name": "Sulniac - 7 rue René Cassin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-05", + "note": "", + "source:date": "2016-10-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.769914, + 47.525 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWFEDWU", + "ref": "", + "name": "Sarzeau - Rue Père Marie Joseph Coudrin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-07", + "note": "", + "source:date": "2016-09-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.131924, + 47.520606 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHUSQJB", + "ref": "", + "name": "Saint-pierre-quiberon - Rue Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-22", + "note": "", + "source:date": "2016-12-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.34054, + 48.09947 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCHQQTM", + "ref": "", + "name": "Saint-tugdual - Route de l'Abbaye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-07-26", + "note": "", + "source:date": "2018-07-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.34054, + 48.09947 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCHQQTM", + "ref": "", + "name": "Saint-tugdual - Route de l'Abbaye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-07-26", + "note": "", + "source:date": "2018-07-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.950392, + 47.703906 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWMRUPK", + "ref": "", + "name": "Sainte-anne-d'auray - Rue de Vannes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-28", + "note": "", + "source:date": "2016-06-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.950392, + 47.703906 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWMRUPK", + "ref": "", + "name": "Sainte-anne-d'auray - Rue de Vannes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-28", + "note": "", + "source:date": "2016-06-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1275, + 48.1642 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PBGPYPT", + "ref": "", + "name": "Sainte-brigitte - Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-06-28", + "note": "", + "source:date": "2017-06-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1275, + 48.1642 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PBGPYPT", + "ref": "", + "name": "Sainte-brigitte - Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-06-28", + "note": "", + "source:date": "2017-06-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76105177805124, + 47.5275250709627 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLLI2WDITY2FS8E", + "ref": "", + "name": "Sarzeau - Rue Adrien Regent", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2000-01-01", + "note": "", + "source:date": "2023-07-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76105177805124, + 47.5275250709627 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLLI2WDITY2FS8E", + "ref": "", + "name": "Sarzeau - Rue Adrien Regent", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2000-01-01", + "note": "", + "source:date": "2023-07-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76127088823087, + 47.5274203638255 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLLI2Z8CZS2PEU6", + "ref": "", + "name": "Sarzeau - Rue Adrien Régent (rapide)", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76127088823087, + 47.5274203638255 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLLI2Z8CZS2PEU6", + "ref": "", + "name": "Sarzeau - Rue Adrien Régent (rapide)", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.769914, + 47.525 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWFEDWU", + "ref": "", + "name": "Sarzeau - Rue Père Marie Joseph Coudrin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-07", + "note": "", + "source:date": "2016-09-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.776055, + 47.522153 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWMNCFY", + "ref": "", + "name": "Sarzeau - Rue Raymond Marcellin - PEM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-21", + "note": "", + "source:date": "2017-11-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.000351, + 47.586732 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTTMTLH", + "ref": "", + "name": "Saint-philibert - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-07-13", + "note": "", + "source:date": "2016-07-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.776055, + 47.522153 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWMNCFY", + "ref": "", + "name": "Sarzeau - Rue Raymond Marcellin - PEM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-21", + "note": "", + "source:date": "2017-11-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.721365, + 47.54681 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PVCVTUT", + "ref": "", + "name": "Sarzeau - Saint Colombier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-30", + "note": "", + "source:date": "2016-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.721365, + 47.54681 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PVCVTUT", + "ref": "", + "name": "Sarzeau - Saint Colombier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-30", + "note": "", + "source:date": "2016-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2206389, + 47.3759444 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCGGCRTEPRZ", + "ref": "", + "name": "Sauzon - Le Cardinal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-01-21", + "note": "", + "source:date": "2020-01-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2206389, + 47.3759444 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCGGCRTEPRZ", + "ref": "", + "name": "Sauzon - Le Cardinal", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-01-21", + "note": "", + "source:date": "2020-01-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2229723, + 47.3683056 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56POTFVUHHRFE", + "ref": "", + "name": "Sauzon - Pen Prad", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-05-02", + "note": "", + "source:date": "2019-05-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2229723, + 47.3683056 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56POTFVUHHRFE", + "ref": "", + "name": "Sauzon - Pen Prad", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-05-02", + "note": "", + "source:date": "2019-05-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.736666, + 47.618809 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTJTDLE", + "ref": "", + "name": "Séné - Place Foresti", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-07-22", + "note": "", + "source:date": "2016-07-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.736666, + 47.618809 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTJTDLE", + "ref": "", + "name": "Séné - Place Foresti", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-07-22", + "note": "", + "source:date": "2016-07-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.507532, + 47.82212 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PQDCXYC", + "ref": "", + "name": "Sérent - Rue Général de Kerhué", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-12", + "note": "", + "source:date": "2016-09-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.507532, + 47.82212 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PQDCXYC", + "ref": "", + "name": "Sérent - Rue Général de Kerhué", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-12", + "note": "", + "source:date": "2016-09-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.570696, + 47.675299 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCHEKHW", + "ref": "", + "name": "Sulniac - 7 rue René Cassin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-05", + "note": "", + "source:date": "2016-10-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.131924, + 47.520606 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHUSQJB", + "ref": "", + "name": "Saint-pierre-quiberon - Rue Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-22", + "note": "", + "source:date": "2016-12-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.000351, + 47.586732 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTTMTLH", + "ref": "", + "name": "Saint-philibert - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-07-13", + "note": "", + "source:date": "2016-07-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.282708, + 47.819758 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRTQNMD", + "ref": "", + "name": "Ruffiac - Place de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-21", + "note": "", + "source:date": "2017-11-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82046, + 48.12327 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEKGZCS", + "ref": "", + "name": "Saint-gonnery - Place Pierre Anne Beurel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-08-13", + "note": "", + "source:date": "2016-08-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.723772, + 47.911114 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRZFTLA", + "ref": "", + "name": "Saint-allouestre - Parking Salle Polyvalente", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-09", + "note": "", + "source:date": "2016-12-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.723772, + 47.911114 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRZFTLA", + "ref": "", + "name": "Saint-allouestre - Parking Salle Polyvalente", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-09", + "note": "", + "source:date": "2016-12-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.737215, + 47.690303 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHGDFBF", + "ref": "", + "name": "Saint-avé - Rue 5 Août 1954", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-13", + "note": "", + "source:date": "2016-10-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.737215, + 47.690303 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHGDFBF", + "ref": "", + "name": "Saint-avé - Rue 5 Août 1954", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-13", + "note": "", + "source:date": "2016-10-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04573, + 47.92571 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNDWAGL", + "ref": "", + "name": "Saint-barthélemy - Rue de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-14", + "note": "", + "source:date": "2016-12-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04573, + 47.92571 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNDWAGL", + "ref": "", + "name": "Saint-barthélemy - Rue de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-14", + "note": "", + "source:date": "2016-12-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.153323, + 47.544915 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PDWXWZJ", + "ref": "", + "name": "Saint-dolay - Rue de Coueslan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-01", + "note": "", + "source:date": "2016-12-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.153323, + 47.544915 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PDWXWZJ", + "ref": "", + "name": "Saint-dolay - Rue de Coueslan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-01", + "note": "", + "source:date": "2016-12-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.890817, + 48.107927 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXKAKPT", + "ref": "", + "name": "Saint-gérand - Rue de la Croix Macé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-06-28", + "note": "", + "source:date": "2017-06-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.890817, + 48.107927 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXKAKPT", + "ref": "", + "name": "Saint-gérand - Rue de la Croix Macé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-06-28", + "note": "", + "source:date": "2017-06-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.833298, + 47.50187 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PQJSQBM", + "ref": "", + "name": "Saint-gildas-de-rhuys - Rue Saint Goustan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-07-13", + "note": "", + "source:date": "2016-07-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.833298, + 47.50187 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PQJSQBM", + "ref": "", + "name": "Saint-gildas-de-rhuys - Rue Saint Goustan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-07-13", + "note": "", + "source:date": "2016-07-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82046, + 48.12327 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEKGZCS", + "ref": "", + "name": "Saint-gonnery - Place Pierre Anne Beurel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-08-13", + "note": "", + "source:date": "2016-08-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.106252, + 47.667242 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PSKSKQS", + "ref": "", + "name": "Saint-perreux - Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-08-03", + "note": "", + "source:date": "2016-08-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38561913884387, + 47.9266217574649 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PSGQGARWR3K", + "ref": "", + "name": "Ploermel - Réhumpol, proximité futur lycée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-05", + "note": "", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.279209, + 47.725984 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHFJGYG", + "ref": "", + "name": "Saint-gravé - Parking route de Saint Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-24", + "note": "", + "source:date": "2017-11-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.279209, + 47.725984 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHFJGYG", + "ref": "", + "name": "Saint-gravé - Parking route de Saint Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-24", + "note": "", + "source:date": "2017-11-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.723187, + 47.844376 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHRLQKX", + "ref": "", + "name": "Saint-jean-brévelay - Rue des Genêts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-18", + "note": "", + "source:date": "2016-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.723187, + 47.844376 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHRLQKX", + "ref": "", + "name": "Saint-jean-brévelay - Rue des Genêts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-18", + "note": "", + "source:date": "2016-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.47243, + 48.014049 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PQRHCVG", + "ref": "", + "name": "Saint-malo-des-trois-fontaines - Avenue Porhoët", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-06-28", + "note": "", + "source:date": "2017-06-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.47243, + 48.014049 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PQRHCVG", + "ref": "", + "name": "Saint-malo-des-trois-fontaines - Avenue Porhoët", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-06-28", + "note": "", + "source:date": "2017-06-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.418437, + 47.803188 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PMCYRPV", + "ref": "", + "name": "Saint-marcel - Rue de la Bouie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-05", + "note": "", + "source:date": "2016-10-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.418437, + 47.803188 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PMCYRPV", + "ref": "", + "name": "Saint-marcel - Rue de la Bouie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-05", + "note": "", + "source:date": "2016-10-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.650631, + 47.703143 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZSCHEU", + "ref": "", + "name": "Saint-nolff - Place Saint Mayeuil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-05", + "note": "", + "source:date": "2016-10-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.650631, + 47.703143 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZSCHEU", + "ref": "", + "name": "Saint-nolff - Place Saint Mayeuil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-05", + "note": "", + "source:date": "2016-10-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.106252, + 47.667242 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PSKSKQS", + "ref": "", + "name": "Saint-perreux - Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-08-03", + "note": "", + "source:date": "2016-08-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15921, + 47.349146 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHFVGTE", + "ref": "", + "name": "Le palais - Les Glacis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-07-19", + "note": "", + "source:date": "2018-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.648074, + 47.525771 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGQ6RXOGQR9", + "ref": "", + "name": "Le tour-du-parc - Parking Cimetière Place des 4 Frères le Blouch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-06-10", + "note": "", + "source:date": "2020-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15679787965018, + 47.3472517670383 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPWIHLJMHAB", + "ref": "", + "name": "Le palais - 9-13 Place de L Hôtel de ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-05-02", + "note": "", + "source:date": "2022-07-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.167758, + 47.67557 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPSZCJC", + "ref": "", + "name": "Belz - Avenue Général de Gaulle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-08-29", + "note": "", + "source:date": "2017-08-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01283, + 47.896999 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCNWQDX", + "ref": "", + "name": "Baud - Zone d'activites de Ty Er Douar", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-24", + "note": "", + "source:date": "2017-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01283, + 47.896999 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCNWQDX", + "ref": "", + "name": "Baud - Zone d'activites de Ty Er Douar", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-24", + "note": "", + "source:date": "2017-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.018244, + 47.874823 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PUUDAHB", + "ref": "", + "name": "Baud - Rue du pont clas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-09", + "note": "", + "source:date": "2016-11-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.018244, + 47.874823 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PUUDAHB", + "ref": "", + "name": "Baud - Rue du pont clas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-09", + "note": "", + "source:date": "2016-11-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.86303026029825, + 47.6014170979096 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWFJUNQY8TV", + "ref": "", + "name": "Baden - Parking Port Blanc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-29", + "note": "", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.86303026029825, + 47.6014170979096 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWFJUNQY8TV", + "ref": "", + "name": "Baden - Parking Port Blanc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-29", + "note": "", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.91851626989541, + 47.618330149684 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYLFQUA", + "ref": "", + "name": "Baden - Chemin du Vrancial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-04", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.91851626989541, + 47.618330149684 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYLFQUA", + "ref": "", + "name": "Baden - Chemin du Vrancial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-04", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.989563, + 47.666459 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFLENKG", + "ref": "", + "name": "Auray - Rue du Four Mollet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-12", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.989563, + 47.666459 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFLENKG", + "ref": "", + "name": "Auray - Rue du Four Mollet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-12", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.008414, + 47.670334 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGKP4F0ALTF", + "ref": "", + "name": "Auray - Parking Porte Océane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-10-06", + "note": "", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.008414, + 47.670334 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGKP4F0ALTF", + "ref": "", + "name": "Auray - Parking Porte Océane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-10-06", + "note": "", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98203, + 47.668615 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZJSCSE", + "ref": "", + "name": "Auray - Parking Kériolet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-12", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98203, + 47.668615 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZJSCSE", + "ref": "", + "name": "Auray - Parking Kériolet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-12", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.281177, + 47.919083 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEGQHWV", + "ref": "", + "name": "Augan - Rue du Verger", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-23", + "note": "", + "source:date": "2016-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.281177, + 47.919083 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEGQHWV", + "ref": "", + "name": "Augan - Rue du Verger", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-23", + "note": "", + "source:date": "2016-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.894551, + 47.542052 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEUEZBT", + "ref": "", + "name": "Arzon - Quai des Cabestans - Le port du Crouesty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-07-20", + "note": "", + "source:date": "2018-07-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.894551, + 47.542052 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEUEZBT", + "ref": "", + "name": "Arzon - Quai des Cabestans - Le port du Crouesty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-07-20", + "note": "", + "source:date": "2018-07-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.891044, + 47.549741 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYEHCXH", + "ref": "", + "name": "Arzon - Parking Maison des Associations", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-16", + "note": "", + "source:date": "2017-05-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.891044, + 47.549741 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYEHCXH", + "ref": "", + "name": "Arzon - Parking Maison des Associations", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-16", + "note": "", + "source:date": "2017-05-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.379785, + 47.50075 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PQJ6QKLM4O5", + "ref": "", + "name": "Arzal - Parking Port d'Arzal", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-09-07", + "note": "", + "source:date": "2019-09-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.379785, + 47.50075 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PQJ6QKLM4O5", + "ref": "", + "name": "Arzal - Parking Port d'Arzal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-09-07", + "note": "", + "source:date": "2019-09-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.40121, + 47.534599 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFPKPDC", + "ref": "", + "name": "Arzal - Parc d'activité de l'estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-21", + "note": "", + "source:date": "2015-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.40121, + 47.534599 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFPKPDC", + "ref": "", + "name": "Arzal - Parc d'activité de l'estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-21", + "note": "", + "source:date": "2015-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.83016002077974, + 47.61487027016 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLDQXAG", + "ref": "", + "name": "Arradon - Rue de la Carrière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-17", + "note": "", + "source:date": "2022-11-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.167758, + 47.67557 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPSZCJC", + "ref": "", + "name": "Belz - Avenue Général de Gaulle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-08-29", + "note": "", + "source:date": "2017-08-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.393807, + 47.995538 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZMMMWQ", + "ref": "", + "name": "Berné - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-09", + "note": "", + "source:date": "2016-12-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.336729, + 47.887598 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZCZYVW", + "ref": "", + "name": "Cléguer - Kerchopine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-06-12", + "note": "", + "source:date": "2018-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.393807, + 47.995538 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZMMMWQ", + "ref": "", + "name": "Berné - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-09", + "note": "", + "source:date": "2016-12-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.341557, + 47.810829 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PUXWAZX", + "ref": "", + "name": "Caudan - Place du Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-02", + "note": "", + "source:date": "2016-11-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.07873, + 47.5846 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCLYHGY", + "ref": "", + "name": "Carnac - Place de la Chapelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-06", + "note": "", + "source:date": "2016-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.07873, + 47.5846 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCLYHGY", + "ref": "", + "name": "Carnac - Place de la Chapelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-06", + "note": "", + "source:date": "2016-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0778143, + 47.57026302 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PUT10PKNXV9", + "ref": "", + "name": "Carnac - Boulevard de la plage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-08-01", + "note": "", + "source:date": "2019-08-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0778143, + 47.57026302 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PUT10PKNXV9", + "ref": "", + "name": "Carnac - Boulevard de la plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-08-01", + "note": "", + "source:date": "2019-08-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.133332, + 47.817804 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEKLYRW", + "ref": "", + "name": "Carentoir - Rue Abbé de La Vallière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-18", + "note": "", + "source:date": "2016-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15679787965018, + 47.3472517670383 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPWIHLJMHAB", + "ref": "", + "name": "Le palais - 9-13 Place de L Hôtel de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-05-02", + "note": "", + "source:date": "2022-07-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.000257, + 47.848171 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PJRXYXK", + "ref": "", + "name": "Camors - Rue du Vieux Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-26", + "note": "", + "source:date": "2016-09-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.000257, + 47.848171 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PJRXYXK", + "ref": "", + "name": "Camors - Rue du Vieux Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-26", + "note": "", + "source:date": "2016-09-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.397549, + 47.480774 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYFURSC", + "ref": "", + "name": "Camoël - Rue Paul Ladmirault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-13", + "note": "", + "source:date": "2017-01-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.397549, + 47.480774 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYFURSC", + "ref": "", + "name": "Camoël - Rue Paul Ladmirault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-13", + "note": "", + "source:date": "2017-01-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.322814, + 47.875616 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PDDQTSB", + "ref": "", + "name": "Calan - Rue Marc Le Floch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-22", + "note": "", + "source:date": "2016-12-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.322814, + 47.875616 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PDDQTSB", + "ref": "", + "name": "Calan - Rue Marc Le Floch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-22", + "note": "", + "source:date": "2016-12-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.285431, + 47.630798 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXJVQBA", + "ref": "", + "name": "Caden - Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-14", + "note": "", + "source:date": "2016-12-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.285431, + 47.630798 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXJVQBA", + "ref": "", + "name": "Caden - Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-14", + "note": "", + "source:date": "2016-12-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.173147, + 47.964535 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZVHKXW", + "ref": "", + "name": "Bubry - Place de Macroom", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-09", + "note": "", + "source:date": "2017-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.173147, + 47.964535 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZVHKXW", + "ref": "", + "name": "Bubry - Place de Macroom", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-09", + "note": "", + "source:date": "2017-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.686605, + 48.061611 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXLMBLJ", + "ref": "", + "name": "Bréhan - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-19", + "note": "", + "source:date": "2016-12-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.686605, + 48.061611 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXLMBLJ", + "ref": "", + "name": "Bréhan - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-19", + "note": "", + "source:date": "2016-12-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.999055, + 47.720345 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRRSVSJ", + "ref": "", + "name": "Brech - Rue du Pont Douar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-23", + "note": "", + "source:date": "2016-09-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.999055, + 47.720345 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRRSVSJ", + "ref": "", + "name": "Brech - Rue du Pont Douar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-23", + "note": "", + "source:date": "2016-09-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.948935, + 47.638886 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZSBMZW", + "ref": "", + "name": "Bono - Rue Ferdinand Ardonin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-28", + "note": "", + "source:date": "2016-09-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.948935, + 47.638886 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZSBMZW", + "ref": "", + "name": "Bono - Rue Ferdinand Ardonin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-28", + "note": "", + "source:date": "2016-09-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.771008, + 47.880847 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PJFWBRE", + "ref": "", + "name": "Bignan - Rue comte de Lanjuinais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-07-26", + "note": "", + "source:date": "2017-07-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.771008, + 47.880847 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PJFWBRE", + "ref": "", + "name": "Bignan - Rue comte de Lanjuinais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-07-26", + "note": "", + "source:date": "2017-07-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.83016002077974, + 47.61487027016 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLDQXAG", + "ref": "", + "name": "Arradon - Rue de la Carrière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-17", + "note": "", + "source:date": "2022-11-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82373725796509, + 47.6269066197669 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNEDQCA", + "ref": "", + "name": "Arradon - Plessis d'Arradon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-07-20", + "note": "", + "source:date": "2022-12-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82373725796509, + 47.6269066197669 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNEDQCA", + "ref": "", + "name": "Arradon - Plessis d'Arradon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-07-20", + "note": "", + "source:date": "2022-12-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.163514, + 47.637975 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFCQHSR", + "ref": "", + "name": "Allaire - Rue Le Mauff", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-16", + "note": "", + "source:date": "2017-05-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.79624, + 47.660678 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPTMTEE", + "ref": "", + "name": "Ploeren - Parking relais - proximité route nationale", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-08-29", + "note": "", + "source:date": "2017-08-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.79624, + 47.660678 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPTMTEE", + "ref": "", + "name": "Ploeren - Parking relais - proximité route nationale", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-08-29", + "note": "", + "source:date": "2017-08-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.45439663305045, + 47.7033830419759 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZWSHUHFMQW", + "ref": "", + "name": "Ploemeur - Place Kermabon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-05", + "note": "", + "source:date": "2022-12-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.45439663305045, + 47.7033830419759 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZWSHUHFMQW", + "ref": "", + "name": "Ploemeur - Place Kermabon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-05", + "note": "", + "source:date": "2022-12-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.427366, + 47.734611 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEVRKJN", + "ref": "", + "name": "Ploemeur - Place Anne de Bretagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-07", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.427366, + 47.734611 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEVRKJN", + "ref": "", + "name": "Ploemeur - Place Anne de Bretagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-07", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.432524, + 47.702308 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCURVAL", + "ref": "", + "name": "Ploemeur - Lomener - Place Patrick Bihan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-07", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.432524, + 47.702308 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCURVAL", + "ref": "", + "name": "Ploemeur - Lomener - Place Patrick Bihan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-07", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.4989, + 47.7342 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PJEAFVZ", + "ref": "", + "name": "Ploemeur - Boulevard de l'Océan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-26", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.4989, + 47.7342 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PJEAFVZ", + "ref": "", + "name": "Ploemeur - Boulevard de l'Océan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-26", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.426771, + 47.736924 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXQMKFJ", + "ref": "", + "name": "Ploemeur - Allée Laurent Esvan - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-07-20", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.426771, + 47.736924 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXQMKFJ", + "ref": "", + "name": "Ploemeur - Allée Laurent Esvan - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-07-20", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.070389, + 47.65296 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRWCLSX", + "ref": "", + "name": "Ploemel - Rue du Lenno", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-29", + "note": "", + "source:date": "2016-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.070389, + 47.65296 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRWCLSX", + "ref": "", + "name": "Ploemel - Rue du Lenno", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-29", + "note": "", + "source:date": "2016-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.684955, + 47.98792 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCETTJG", + "ref": "", + "name": "Pleugriffet - Rue Anne de Bretagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-27", + "note": "", + "source:date": "2016-06-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.684955, + 47.98792 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCETTJG", + "ref": "", + "name": "Pleugriffet - Rue Anne de Bretagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-27", + "note": "", + "source:date": "2016-06-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.376077, + 47.758092 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLMHCBG", + "ref": "", + "name": "Pleucadeuc - Rue Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-15", + "note": "", + "source:date": "2016-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.376077, + 47.758092 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLMHCBG", + "ref": "", + "name": "Pleucadeuc - Rue Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-15", + "note": "", + "source:date": "2016-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.804416, + 47.697468 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLTFJPE", + "ref": "", + "name": "Plescop - Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-08-31", + "note": "", + "source:date": "2016-08-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.804416, + 47.697468 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLTFJPE", + "ref": "", + "name": "Plescop - Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-08-31", + "note": "", + "source:date": "2016-08-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.689778, + 47.778166 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPCHBYA", + "ref": "", + "name": "Plaudren - Rue Georges Cadoudal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-26", + "note": "", + "source:date": "2016-09-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.689778, + 47.778166 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPCHBYA", + "ref": "", + "name": "Plaudren - Rue Georges Cadoudal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-26", + "note": "", + "source:date": "2016-09-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.470933, + 47.482122 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPWZCTQ", + "ref": "", + "name": "Pénestin - Boulevard de l'Océan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-06", + "note": "", + "source:date": "2016-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.470933, + 47.482122 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPWZCTQ", + "ref": "", + "name": "Pénestin - Boulevard de l'Océan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-06", + "note": "", + "source:date": "2016-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38561913884387, + 47.9266217574649 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PSGQGARWR3K", + "ref": "", + "name": "Ploermel - Réhumpol, proximité futur lycée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-05", + "note": "", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.869326, + 47.655716 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFDWQJB", + "ref": "", + "name": "Ploeren - Rue des Deux Moulins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-20", + "note": "", + "source:date": "2016-09-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.869326, + 47.655716 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFDWQJB", + "ref": "", + "name": "Ploeren - Rue des Deux Moulins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-20", + "note": "", + "source:date": "2016-09-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.788282, + 47.651531 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZFUQTJ", + "ref": "", + "name": "Vannes - Rue Tamara de Lempicka", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-20", + "note": "", + "source:date": "2016-10-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.788496, + 47.670475 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PBJXJWS", + "ref": "", + "name": "Vannes - Rue Anita Conti", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-24", + "note": "", + "source:date": "2017-11-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.163514, + 47.637975 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFCQHSR", + "ref": "", + "name": "Allaire - Rue Le Mauff", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-16", + "note": "", + "source:date": "2017-05-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.770689, + 47.645533 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNAKFKG", + "ref": "", + "name": "Vannes - Avenue Winston Churchill", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-14", + "note": "", + "source:date": "2016-10-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.763805, + 47.65884 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PJZDKPB", + "ref": "", + "name": "Vannes - Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-13", + "note": "", + "source:date": "2016-10-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.763805, + 47.65884 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PJZDKPB", + "ref": "", + "name": "Vannes - Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-13", + "note": "", + "source:date": "2016-10-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.759406, + 47.656324 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNRXSYF", + "ref": "", + "name": "Vannes - Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-16", + "note": "", + "source:date": "2017-11-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.759406, + 47.656324 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNRXSYF", + "ref": "", + "name": "Vannes - Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-16", + "note": "", + "source:date": "2017-11-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.753999, + 47.658649 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNNRVKY", + "ref": "", + "name": "Vannes - Place Générale de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-16", + "note": "", + "source:date": "2017-11-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.753999, + 47.658649 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNNRVKY", + "ref": "", + "name": "Vannes - Place Générale de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-16", + "note": "", + "source:date": "2017-11-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7308, + 47.6654 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPTJEBK", + "ref": "", + "name": "Vannes - Rue Alain Gerbault", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-06-12", + "note": "", + "source:date": "2020-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7308, + 47.6654 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPTJEBK", + "ref": "", + "name": "Vannes - Rue Alain Gerbault", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-06-12", + "note": "", + "source:date": "2020-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.788496, + 47.670475 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PBJXJWS", + "ref": "", + "name": "Vannes - Rue Anita Conti", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-24", + "note": "", + "source:date": "2017-11-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76399, + 47.63785 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGRGKRU", + "ref": "", + "name": "Vannes - Rue Daniel Gilard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-13", + "note": "", + "source:date": "2016-10-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.788282, + 47.651531 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZFUQTJ", + "ref": "", + "name": "Vannes - Rue Tamara de Lempicka", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-20", + "note": "", + "source:date": "2016-10-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76399, + 47.63785 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGRGKRU", + "ref": "", + "name": "Vannes - Rue Daniel Gilard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-13", + "note": "", + "source:date": "2016-10-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.804662, + 47.657587 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWUANHC", + "ref": "", + "name": "Vannes - Rue de Luscanen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-08", + "note": "", + "source:date": "2016-06-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.804662, + 47.657587 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWUANHC", + "ref": "", + "name": "Vannes - Rue de Luscanen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-08", + "note": "", + "source:date": "2016-06-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.754891, + 47.642143 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTLSDKV", + "ref": "", + "name": "Vannes - Rue du Commerce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-10-13", + "note": "", + "source:date": "2017-10-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.754891, + 47.642143 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTLSDKV", + "ref": "", + "name": "Vannes - Rue du Commerce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-10-13", + "note": "", + "source:date": "2017-10-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.768083, + 47.670911 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWRRLPV", + "ref": "", + "name": "Vannes - Rue Henri Matisse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-08-04", + "note": "", + "source:date": "2016-08-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.768083, + 47.670911 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PWRRLPV", + "ref": "", + "name": "Vannes - Rue Henri Matisse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-08-04", + "note": "", + "source:date": "2016-08-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.755181, + 47.650702 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGWMRND", + "ref": "", + "name": "Vannes - Rue Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-23", + "note": "", + "source:date": "2016-09-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.755181, + 47.650702 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGWMRND", + "ref": "", + "name": "Vannes - Rue Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-23", + "note": "", + "source:date": "2016-09-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.772154, + 47.658028 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPVGAUH", + "ref": "", + "name": "Vannes - Rue Jean Marie Bécel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-07", + "note": "", + "source:date": "2016-10-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.772154, + 47.658028 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPVGAUH", + "ref": "", + "name": "Vannes - Rue Jean Marie Bécel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-07", + "note": "", + "source:date": "2016-10-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.341557, + 47.810829 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PUXWAZX", + "ref": "", + "name": "Caudan - Place du Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-02", + "note": "", + "source:date": "2016-11-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.133332, + 47.817804 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEKLYRW", + "ref": "", + "name": "Carentoir - Rue Abbé de La Vallière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-18", + "note": "", + "source:date": "2016-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.336729, + 47.887598 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZCZYVW", + "ref": "", + "name": "Cléguer - Kerchopine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-06-12", + "note": "", + "source:date": "2018-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.84862890173862, + 47.5921152831321 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLWQYYRAB2F", + "ref": "", + "name": "Ile-aux-moines - Kerscot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-06-20", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.076174, + 47.748351 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZMJPKM", + "ref": "", + "name": "Landaul - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-14", + "note": "", + "source:date": "2016-12-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.076174, + 47.748351 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZMJPKM", + "ref": "", + "name": "Landaul - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-14", + "note": "", + "source:date": "2016-12-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.54198, + 47.688679 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PSWHNTH", + "ref": "", + "name": "La vraie-croix - Rue du Tostal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-01", + "note": "", + "source:date": "2016-12-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.54198, + 47.688679 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PSWHNTH", + "ref": "", + "name": "La vraie-croix - Rue du Tostal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-01", + "note": "", + "source:date": "2016-12-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.029185, + 47.589297 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEPRULV", + "ref": "", + "name": "La trinité-sur-mer - Cours des Quais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-07-13", + "note": "", + "source:date": "2016-07-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.029185, + 47.589297 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PEPRULV", + "ref": "", + "name": "La trinité-sur-mer - Cours des Quais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-07-13", + "note": "", + "source:date": "2016-07-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.545212, + 48.097286 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLJKNWD", + "ref": "", + "name": "La trinité-porhoët - Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-11", + "note": "", + "source:date": "2017-01-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.545212, + 48.097286 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLJKNWD", + "ref": "", + "name": "La trinité-porhoët - Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-11", + "note": "", + "source:date": "2017-01-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.29707, + 47.517403 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLYBRMC", + "ref": "", + "name": "La roche-bernard - Place du Dôme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-06", + "note": "", + "source:date": "2016-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.29707, + 47.517403 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLYBRMC", + "ref": "", + "name": "La roche-bernard - Place du Dôme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-06", + "note": "", + "source:date": "2016-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.134335, + 47.76628 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFYJMNZ", + "ref": "", + "name": "La gacilly - Rue de l'Hôtel de ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-08-29", + "note": "", + "source:date": "2017-08-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.134335, + 47.76628 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFYJMNZ", + "ref": "", + "name": "La gacilly - Rue de l'Hôtel de ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-08-29", + "note": "", + "source:date": "2017-08-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.240835, + 47.764089 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PMNFMWG", + "ref": "", + "name": "Kervignac - Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-05-27", + "note": "", + "source:date": "2016-05-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.240835, + 47.764089 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PMNFMWG", + "ref": "", + "name": "Kervignac - Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-05-27", + "note": "", + "source:date": "2016-05-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.318491, + 48.007954 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYVXMZJ", + "ref": "", + "name": "Kernascléden - Rue des Rohan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-09", + "note": "", + "source:date": "2016-12-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.318491, + 48.007954 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYVXMZJ", + "ref": "", + "name": "Kernascléden - Rue des Rohan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-09", + "note": "", + "source:date": "2016-12-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.812224, + 47.817567 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGEPWPS", + "ref": "", + "name": "Colpo - Rue Nationale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-11", + "note": "", + "source:date": "2017-01-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.54946112322054, + 47.9537301035597 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PAVMWS0NNYA", + "ref": "", + "name": "Josselin - Place Georges Lamour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2000-01-01", + "note": "", + "source:date": "2023-03-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.546018, + 47.954125 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLBRBBU", + "ref": "", + "name": "Josselin - Place d'Alzey", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-16", + "note": "", + "source:date": "2017-05-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.546018, + 47.954125 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLBRBBU", + "ref": "", + "name": "Josselin - Place d'Alzey", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-16", + "note": "", + "source:date": "2017-05-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.248809, + 47.827935 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PBJDCGG", + "ref": "", + "name": "Inzinzac-lochrist - Rue du Blavet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-03-22", + "note": "", + "source:date": "2017-03-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.248809, + 47.827935 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PBJDCGG", + "ref": "", + "name": "Inzinzac-lochrist - Rue du Blavet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-03-22", + "note": "", + "source:date": "2017-03-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.28161, + 47.977818 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLQHUAW", + "ref": "", + "name": "Inguiniel - Place François Jaffré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-08", + "note": "", + "source:date": "2016-12-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.28161, + 47.977818 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLQHUAW", + "ref": "", + "name": "Inguiniel - Place François Jaffré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-08", + "note": "", + "source:date": "2016-12-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.84862890173862, + 47.5921152831321 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLWQYYRAB2F", + "ref": "", + "name": "Ile-aux-moines - Kerscot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-06-20", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.120444, + 47.761657 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PSSHGWX", + "ref": "", + "name": "Landévant - 3 Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-12", + "note": "", + "source:date": "2016-10-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.120444, + 47.761657 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PSSHGWX", + "ref": "", + "name": "Landévant - 3 Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-12", + "note": "", + "source:date": "2016-10-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.349639, + 47.763304 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRUZCWL", + "ref": "", + "name": "Lanester - Avenue françois Billoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-07", + "note": "", + "source:date": "2016-09-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.385595, + 47.706284 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNE1A8MI3RW", + "ref": "", + "name": "Larmor-plage - Place Kerpape", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-03-01", + "note": "", + "source:date": "2020-03-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.154, + 47.3446389 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYCX0MN1QXX", + "ref": "", + "name": "Le palais - 2 Rue des Remparts", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-10-02", + "note": "", + "source:date": "2019-10-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.154, + 47.3446389 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYCX0MN1QXX", + "ref": "", + "name": "Le palais - 2 Rue des Remparts", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-10-02", + "note": "", + "source:date": "2019-10-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.154, + 47.3446389 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYCX0MN1QXX", + "ref": "", + "name": "Le palais - 2 Rue des Remparts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-10-02", + "note": "", + "source:date": "2019-10-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.154, + 47.3446389 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYCX0MN1QXX", + "ref": "", + "name": "Le palais - 2 Rue des Remparts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-10-02", + "note": "", + "source:date": "2019-10-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15478, + 47.3464444 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCVA0LBMFFS", + "ref": "", + "name": "Le palais - 2 Avenue Carnot", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-05-02", + "note": "", + "source:date": "2019-05-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15478, + 47.3464444 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCVA0LBMFFS", + "ref": "", + "name": "Le palais - 2 Avenue Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-05-02", + "note": "", + "source:date": "2019-05-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.48967, + 48.030602 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PVEYPEA", + "ref": "", + "name": "Le faouët - Rue des écoles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2014-06-30", + "note": "", + "source:date": "2014-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.48967, + 48.030602 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PVEYPEA", + "ref": "", + "name": "Le faouët - Rue des écoles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2014-06-30", + "note": "", + "source:date": "2014-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.499354, + 48.032159 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHGVJHQ", + "ref": "", + "name": "Le faouët - Rue Cours Carré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-03", + "note": "", + "source:date": "2016-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.499354, + 48.032159 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHGVJHQ", + "ref": "", + "name": "Le faouët - Rue Cours Carré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-03", + "note": "", + "source:date": "2016-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.385595, + 47.706284 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNE1A8MI3RW", + "ref": "", + "name": "Larmor-plage - Place Kerpape", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-03-01", + "note": "", + "source:date": "2020-03-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.382645, + 47.706029 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56POXD9WRDSZQ", + "ref": "", + "name": "Larmor-plage - Place de l'Eglise", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-03-01", + "note": "", + "source:date": "2020-03-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.349639, + 47.763304 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRUZCWL", + "ref": "", + "name": "Lanester - Avenue françois Billoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-07", + "note": "", + "source:date": "2016-09-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.382645, + 47.706029 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56POXD9WRDSZQ", + "ref": "", + "name": "Larmor-plage - Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-03-01", + "note": "", + "source:date": "2020-03-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.384561, + 47.70391 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PAAVVNR", + "ref": "", + "name": "Larmor-plage - Boulevard de Port Maria", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-08-18", + "note": "", + "source:date": "2016-08-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.384561, + 47.70391 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PAAVVNR", + "ref": "", + "name": "Larmor-plage - Boulevard de Port Maria", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-08-18", + "note": "", + "source:date": "2016-08-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.261518, + 47.889343 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFFTJZD", + "ref": "", + "name": "Lanvaudan - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-12", + "note": "", + "source:date": "2016-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.261518, + 47.889343 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFFTJZD", + "ref": "", + "name": "Lanvaudan - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-12", + "note": "", + "source:date": "2016-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.159671, + 47.834239 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXAEEUR", + "ref": "", + "name": "Languidic - Place Joseph Guillerme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-05-27", + "note": "", + "source:date": "2016-05-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.159671, + 47.834239 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXAEEUR", + "ref": "", + "name": "Languidic - Place Joseph Guillerme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-05-27", + "note": "", + "source:date": "2016-05-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.491434, + 48.103788 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PAAYULB", + "ref": "", + "name": "Langonnet - Place Morvan Leiz Breizh", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-09", + "note": "", + "source:date": "2016-12-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.491434, + 48.103788 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PAAYULB", + "ref": "", + "name": "Langonnet - Place Morvan Leiz Breizh", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-09", + "note": "", + "source:date": "2016-12-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.341074, + 47.774319 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PDNSWQT", + "ref": "", + "name": "Lanester - Rue Youri Gagarine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-07-26", + "note": "", + "source:date": "2017-07-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.341074, + 47.774319 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PDNSWQT", + "ref": "", + "name": "Lanester - Rue Youri Gagarine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-07-26", + "note": "", + "source:date": "2017-07-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.84862890173862, + 47.5921152831321 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLWQYYRAB2F", + "ref": "", + "name": "Ile-aux-moines - Kerscot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-06-20", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.54946112322054, + 47.9537301035597 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PAVMWS0NNYA", + "ref": "", + "name": "Josselin - Place Georges Lamour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2000-01-01", + "note": "", + "source:date": "2023-03-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.84862890173862, + 47.5921152831321 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLWQYYRAB2F", + "ref": "", + "name": "Ile-aux-moines - Kerscot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-06-20", + "note": "", + "source:date": "2023-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20436, + 47.657677 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXZZHAR", + "ref": "", + "name": "Étel - Ruelle des Champs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-02", + "note": "", + "source:date": "2016-12-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.842664, + 47.758084 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXAYSUU", + "ref": "", + "name": "Grand-champ - Rue de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-12", + "note": "", + "source:date": "2016-10-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.600977, + 48.141016 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCYTRZG", + "ref": "", + "name": "Gourin - Place Général de Gaulle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-06-09", + "note": "", + "source:date": "2017-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.600977, + 48.141016 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCYTRZG", + "ref": "", + "name": "Gourin - Place Général de Gaulle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-06-09", + "note": "", + "source:date": "2017-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.442704, + 47.803108 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PMYZLMIBAEA", + "ref": "", + "name": "Gestel - Rue de Quéven", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-03-21", + "note": "", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.442704, + 47.803108 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PMYZLMIBAEA", + "ref": "", + "name": "Gestel - Rue de Quéven", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-03-21", + "note": "", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.344105, + 47.48098 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPPYXVZ", + "ref": "", + "name": "Férel - Rue du Pré de la Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-04", + "note": "", + "source:date": "2016-11-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.344105, + 47.48098 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPPYXVZ", + "ref": "", + "name": "Férel - Rue du Pré de la Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-04", + "note": "", + "source:date": "2016-11-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.852219, + 47.601017 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPREPCWAOME", + "ref": "", + "name": "Île-aux-moines - Embarcadère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-01-12", + "note": "", + "source:date": "2021-01-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.8311430135182, + 47.9891560944795 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFOSGTWNEUZ", + "ref": "", + "name": "Évellys - Proximité médiathèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2000-01-01", + "note": "Rue à sens unique à l'heure actuelle", + "source:date": "2023-07-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20436, + 47.657677 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXZZHAR", + "ref": "", + "name": "Étel - Ruelle des Champs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-12-02", + "note": "", + "source:date": "2016-12-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.770689, + 47.645533 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNAKFKG", + "ref": "", + "name": "Vannes - Avenue Winston Churchill", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-14", + "note": "", + "source:date": "2016-10-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.156938, + 47.641144 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZCGGHS", + "ref": "", + "name": "Erdeven - Place Saint Märgen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-06", + "note": "", + "source:date": "2016-09-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.448803, + 47.641507 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRNFCWQ", + "ref": "", + "name": "Groix - Parking Port Tudy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-06-21", + "note": "", + "source:date": "2017-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.156938, + 47.641144 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PZCGGHS", + "ref": "", + "name": "Erdeven - Place Saint Märgen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-06", + "note": "", + "source:date": "2016-09-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.590841, + 47.7337 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHJHXYP", + "ref": "", + "name": "Elven - Rue Sainte Anne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-21", + "note": "", + "source:date": "2016-10-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.590841, + 47.7337 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PHJHXYP", + "ref": "", + "name": "Elven - Rue Sainte Anne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-21", + "note": "", + "source:date": "2016-10-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5899562431288, + 47.7311983193366 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLYFYJOBRX4", + "ref": "", + "name": "Elven - Rue Robert de la Noé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-03-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5899562431288, + 47.7311983193366 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLYFYJOBRX4", + "ref": "", + "name": "Elven - Rue Robert de la Noé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-03-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.581612, + 47.517901 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLJZLHJ", + "ref": "", + "name": "Damgan - Boulevard de l'Océan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-08-29", + "note": "", + "source:date": "2016-08-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.581612, + 47.517901 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLJZLHJ", + "ref": "", + "name": "Damgan - Boulevard de l'Océan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-08-29", + "note": "", + "source:date": "2016-08-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00082862377166, + 47.6173830049512 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PCGJZHNOXXN", + "ref": "", + "name": "Crach - Parking Saint Thuriau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-01-13", + "note": "", + "source:date": "2020-01-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10467, + 47.74654 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYBMHAN", + "ref": "", + "name": "Cournon - Rue de l'Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-08-24", + "note": "", + "source:date": "2018-08-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10467, + 47.74654 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PYBMHAN", + "ref": "", + "name": "Cournon - Rue de l'Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-08-24", + "note": "", + "source:date": "2018-08-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.812224, + 47.817567 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGEPWPS", + "ref": "", + "name": "Colpo - Rue Nationale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-01-11", + "note": "", + "source:date": "2017-01-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.842664, + 47.758084 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXAYSUU", + "ref": "", + "name": "Grand-champ - Rue de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-12", + "note": "", + "source:date": "2016-10-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.8311430135182, + 47.9891560944795 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFOSGTWNEUZ", + "ref": "", + "name": "Évellys - Proximité médiathèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2000-01-01", + "note": "Rue à sens unique à l'heure actuelle", + "source:date": "2023-07-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.448803, + 47.641507 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PRNFCWQ", + "ref": "", + "name": "Groix - Parking Port Tudy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-06-21", + "note": "", + "source:date": "2017-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.092245, + 48.028073 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNCDSEP", + "ref": "", + "name": "Guern - Rue de la Vallée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-03", + "note": "", + "source:date": "2016-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.852219, + 47.601017 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PPREPCWAOME", + "ref": "", + "name": "Île-aux-moines - Embarcadère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-01-12", + "note": "", + "source:date": "2021-01-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.276149, + 47.804724 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLPZGQN", + "ref": "", + "name": "Hennebont - Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-06", + "note": "", + "source:date": "2016-09-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.276149, + 47.804724 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLPZGQN", + "ref": "", + "name": "Hennebont - Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-06", + "note": "", + "source:date": "2016-09-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.563301, + 47.93859 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTAVUZX", + "ref": "", + "name": "Guégon - Rue des Rosiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-29", + "note": "", + "source:date": "2016-09-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.6447748899666, + 48.048179763944 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PK2YQ7NB5P1", + "ref": "", + "name": "Guiscriff - Place Centrale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.403894, + 48.043441 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNWTLJV", + "ref": "", + "name": "Guilliers - Place Glaharon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-07", + "note": "", + "source:date": "2016-10-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.403894, + 48.043441 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNWTLJV", + "ref": "", + "name": "Guilliers - Place Glaharon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-07", + "note": "", + "source:date": "2016-10-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.526174, + 47.772376 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFZXXAW", + "ref": "", + "name": "Guidel - Route de Kerbrest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-30", + "note": "", + "source:date": "2016-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.526174, + 47.772376 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFZXXAW", + "ref": "", + "name": "Guidel - Route de Kerbrest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-30", + "note": "", + "source:date": "2016-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.493116, + 47.792624 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXNARGA", + "ref": "", + "name": "Guidel - Place le Montagner", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-30", + "note": "", + "source:date": "2016-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.493116, + 47.792624 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXNARGA", + "ref": "", + "name": "Guidel - Place le Montagner", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-30", + "note": "", + "source:date": "2016-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.6447748899666, + 48.048179763944 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PK2YQ7NB5P1", + "ref": "", + "name": "Guiscriff - Place Centrale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.641356, + 47.891521 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFSRMLH", + "ref": "", + "name": "Guéhenno - Parking Rue Nationale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-10-13", + "note": "", + "source:date": "2017-10-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.092245, + 48.028073 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PNCDSEP", + "ref": "", + "name": "Guern - Rue de la Vallée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-11-03", + "note": "", + "source:date": "2016-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.127943, + 47.930239 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXPBPBH", + "ref": "", + "name": "Guer - Zone d'activité du Val Coric", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-21", + "note": "", + "source:date": "2016-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.127943, + 47.930239 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PXPBPBH", + "ref": "", + "name": "Guer - Zone d'activité du Val Coric", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-06-21", + "note": "", + "source:date": "2016-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.123399, + 47.905937 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTHSFCS", + "ref": "", + "name": "Guer - Place de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-12", + "note": "", + "source:date": "2016-10-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.123399, + 47.905937 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTHSFCS", + "ref": "", + "name": "Guer - Place de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-12", + "note": "", + "source:date": "2016-10-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.976864, + 47.908288 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGTDFXE", + "ref": "", + "name": "Guénin - Rue de Maneguen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-21", + "note": "", + "source:date": "2017-11-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.976864, + 47.908288 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PGTDFXE", + "ref": "", + "name": "Guénin - Rue de Maneguen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-21", + "note": "", + "source:date": "2017-11-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.207056, + 48.066944 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLQPFQW", + "ref": "", + "name": "Guémené-sur-scorff - Rue du Condé", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-16", + "note": "", + "source:date": "2017-05-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.207056, + 48.066944 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PLQPFQW", + "ref": "", + "name": "Guémené-sur-scorff - Rue du Condé", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-16", + "note": "", + "source:date": "2017-05-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.641356, + 47.891521 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PFSRMLH", + "ref": "", + "name": "Guéhenno - Parking Rue Nationale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-10-13", + "note": "", + "source:date": "2017-10-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.563301, + 47.93859 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "ref:EU:EVSE": "FRS56PTAVUZX", + "ref": "", + "name": "Guégon - Rue des Rosiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-09-29", + "note": "", + "source:date": "2016-09-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21293391, + 43.59465073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWC1AKJFZH5", + "ref": "WC1AKJFZH5", + "name": "Castres, Comptoir Commercial du Languedoc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.49386651, + 45.17546501 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHDIHBPSJPW", + "ref": "HDIHBPSJPW", + "name": "Commune de Valmeinier, Esplanade des Islettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90503399, + 50.39211132 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZMNFG2WGSB", + "ref": "ZMNFG2WGSB", + "name": "Rouvroy, Place Roger Salengro", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.49386651, + 45.17546501 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHDIHBPSJPW", + "ref": "HDIHBPSJPW", + "name": "Commune de Valmeinier, Esplanade des Islettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90503399, + 50.39211132 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZMNFG2WGSB", + "ref": "ZMNFG2WGSB", + "name": "Rouvroy, Place Roger Salengro", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90753401, + 50.40535504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAC3YJH6PA", + "ref": "VAC3YJH6PA", + "name": "Rouvroy, Place Tamboise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90753401, + 50.40535504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAC3YJH6PA", + "ref": "VAC3YJH6PA", + "name": "Rouvroy, Place Tamboise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12649837, + 48.92939691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNVU3GGF8HX", + "ref": "NVU3GGF8HX", + "name": "Rimsdorf, rue principale", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259541, + 43.597814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBPNWOVXD2R", + "ref": "BPNWOVXD2R", + "name": "Castres, CCL av. Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212832, + 43.59482 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWC1AKJFZH5", + "ref": "WC1AKJFZH5", + "name": "Castres, Comptoir Commercial du Languedoc", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.899912, + 48.387296 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGQZHCENVFB", + "ref": "GQZHCENVFB", + "name": "La Grande Paroisse, Rue de la Garenne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212832, + 43.59482 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWC1AKJFZH5", + "ref": "WC1AKJFZH5", + "name": "Castres, Comptoir Commercial du Languedoc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259541, + 43.597814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBPNWOVXD2R", + "ref": "BPNWOVXD2R", + "name": "Castres, CCL av. Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212832, + 43.59482 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWC1AKJFZH5", + "ref": "WC1AKJFZH5", + "name": "Castres, Comptoir Commercial du Languedoc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92319429, + 45.52570952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSKJMEF5WR", + "ref": "VSKJMEF5WR", + "name": "Pont-Evêque, Rue du Champ de Course", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92319429, + 45.52570952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSKJMEF5WR", + "ref": "VSKJMEF5WR", + "name": "Pont-Evêque, Rue du Champ de Course", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.899912, + 48.387296 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGQZHCENVFB", + "ref": "GQZHCENVFB", + "name": "La Grande Paroisse, Rue de la Garenne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.07743485, + 45.15738978 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHROA3L4NBG", + "ref": "HROA3L4NBG", + "name": "Vaujany, CR Basse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.07743485, + 45.15738978 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHROA3L4NBG", + "ref": "HROA3L4NBG", + "name": "Vaujany, CR Basse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12649837, + 48.92939691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNVU3GGF8HX", + "ref": "NVU3GGF8HX", + "name": "Rimsdorf, rue principale", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12649837, + 48.92939691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNVU3GGF8HX", + "ref": "NVU3GGF8HX", + "name": "Rimsdorf, rue principale", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR3XWXLIQVP", + "ref": "R3XWXLIQVP", + "name": "E. Leclerc, Orvault Parking Aérien", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09757818, + 48.33466413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLX3M7GUQLZ", + "ref": "LX3M7GUQLZ", + "name": "Puzieux, Rue de Spatiel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.498815, + 48.537752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC8ZUDPSMZR", + "ref": "C8ZUDPSMZR", + "name": "Molsheim, Gare", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.34955611, + 45.8983228 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZSVN0XKFV", + "ref": "UZSVN0XKFV", + "name": "Lagnieu, Allée Guy de La Verpillière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.34955083, + 45.89835266 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZSVN0XKFV", + "ref": "UZSVN0XKFV", + "name": "Lagnieu, Allée Guy de La Verpillière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11726363, + 46.95470032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXXHDK2JIDV", + "ref": "XXHDK2JIDV", + "name": "Commune de Levier, Parking Douet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11726363, + 46.95470032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXXHDK2JIDV", + "ref": "XXHDK2JIDV", + "name": "Commune de Levier, Parking Douet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.30002918, + 49.0986626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSTO3YTK15", + "ref": "WSTO3YTK15", + "name": "Marsilly, 15B rue Principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.30002918, + 49.0986626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSTO3YTK15", + "ref": "WSTO3YTK15", + "name": "Marsilly, 15B rue Principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.498815, + 48.537752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC8ZUDPSMZR", + "ref": "C8ZUDPSMZR", + "name": "Molsheim, Gare", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.498815, + 48.537752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC8ZUDPSMZR", + "ref": "C8ZUDPSMZR", + "name": "Molsheim, Gare", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.498815, + 48.537752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC8ZUDPSMZR", + "ref": "C8ZUDPSMZR", + "name": "Molsheim, Gare", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.498815, + 48.537752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC8ZUDPSMZR", + "ref": "C8ZUDPSMZR", + "name": "Molsheim, Gare", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09757818, + 48.33466413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLX3M7GUQLZ", + "ref": "LX3M7GUQLZ", + "name": "Puzieux, Rue de Spatiel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.498815, + 48.537752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC8ZUDPSMZR", + "ref": "C8ZUDPSMZR", + "name": "Molsheim, Gare", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35406181, + 49.08576759 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLT9KFZGHYY", + "ref": "LT9KFZGHYY", + "name": "Pange, parking mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93247, + 43.5894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQENWKTMZCF", + "ref": "QENWKTMZCF", + "name": "Lattes, Concession Diamant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35406181, + 49.08576759 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLT9KFZGHYY", + "ref": "LT9KFZGHYY", + "name": "Pange, parking mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.30014679, + 49.04953011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEJBKFGAQ96", + "ref": "EJBKFGAQ96", + "name": "Commune de Petit-Réderching, Rue de la Gare", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.30014679, + 49.04953011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEJBKFGAQ96", + "ref": "EJBKFGAQ96", + "name": "Commune de Petit-Réderching, Rue de la Gare", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.30014679, + 49.04953011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEJBKFGAQ96", + "ref": "EJBKFGAQ96", + "name": "Commune de Petit-Réderching, Rue de la Gare", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.30014679, + 49.04953011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEJBKFGAQ96", + "ref": "EJBKFGAQ96", + "name": "Commune de Petit-Réderching, Rue de la Gare", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.30014679, + 49.04953011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEJBKFGAQ96", + "ref": "EJBKFGAQ96", + "name": "Commune de Petit-Réderching, Rue de la Gare", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93247, + 43.5894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQENWKTMZCF", + "ref": "QENWKTMZCF", + "name": "Lattes, Concession Diamant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.36811, + 49.2043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PNSVAFV", + "ref": "NSVAFV", + "name": "Oulchy-le-Château, Potel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93247, + 43.5894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQENWKTMZCF", + "ref": "QENWKTMZCF", + "name": "Lattes, Concession Diamant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62777, + 49.8986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PVUFZHX", + "ref": "VUFZHX", + "name": "Guise, Lesur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.01524, + 49.6965 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSZPKRV", + "ref": "SZPKRV", + "name": "Montcornet, Rue Neuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62777, + 49.8986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PVUFZHX", + "ref": "VUFZHX", + "name": "Guise, Lesur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8985553, + 49.5669167 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PYLWMERYTIJ", + "ref": "YLWMERYTIJ", + "name": "Sissonne, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.90333, + 49.8328 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PAYRAGX", + "ref": "AYRAGX", + "name": "Vervins, Hôpital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.01524, + 49.6965 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSZPKRV", + "ref": "SZPKRV", + "name": "Montcornet, Rue Neuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8985553, + 49.5669167 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PYLWMERYTIJ", + "ref": "YLWMERYTIJ", + "name": "Sissonne, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.335, + 49.3587 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PVDJSBC", + "ref": "VDJSBC", + "name": "Belleu, Beaulieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31164, + 49.3814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQTNYBQ", + "ref": "QTNYBQ", + "name": "Soissons, Avenue de Compiégne au cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31164, + 49.3814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQTNYBQ", + "ref": "QTNYBQ", + "name": "Soissons, Avenue de Compiégne au cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11831, + 49.4071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PWKRRKN", + "ref": "WKRRKN", + "name": "Vic-sur-Aisne, Saint Jean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.24542, + 49.7334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSXKPDJ", + "ref": "SXKPDJ", + "name": "Montescourt-Lizerolles, Victoire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.91678, + 49.9735 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PZWFLZY", + "ref": "ZWFLZY", + "name": "La Capelle, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25383, + 49.6405 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PUKHFNX", + "ref": "UKHFNX", + "name": "Viry-Noureuil, ZAC Les Terrages", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25383, + 49.6405 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PUKHFNX", + "ref": "UKHFNX", + "name": "Viry-Noureuil, ZAC Les Terrages", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.38132, + 49.5948 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58C7C8DAA8451", + "ref": "58c7c8daa8451", + "name": "Saint-Gobain, Place Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.24542, + 49.7334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSXKPDJ", + "ref": "SXKPDJ", + "name": "Montescourt-Lizerolles, Victoire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.48756, + 49.8394 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PKBWFSH", + "ref": "KBWFSH", + "name": "Origny-Sainte-Benoite, Place Jean Mermoz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29575, + 49.8397 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PFTRQMO3IQ3", + "ref": "FTRQMO3IQ3", + "name": "Saint-Quentin Gare 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32714, + 49.383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PEZJMRB", + "ref": "EZJMRB", + "name": "Soissons, Quinquet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39139, + 49.0662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PXUTMPU", + "ref": "XUTMPU", + "name": "Château-Thierry, Centre aquatique", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.22083, + 49.6128 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PRRHVFY", + "ref": "RRHVFY", + "name": "Chauny, Remparts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32809, + 49.3858 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PNAQYGM", + "ref": "NAQYGM", + "name": "Soissons, Centre Culturel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11831, + 49.4071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PWKRRKN", + "ref": "WKRRKN", + "name": "Vic-sur-Aisne, Saint Jean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32277, + 48.9656 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PUFFXNG", + "ref": "UFFXNG", + "name": "Nogent-l'Artaud, Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32809, + 49.3858 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PNAQYGM", + "ref": "NAQYGM", + "name": "Soissons, Centre Culturel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.335, + 49.3587 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PVDJSBC", + "ref": "VDJSBC", + "name": "Belleu, Beaulieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08169, + 49.2414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PNZNXLT", + "ref": "NZNXLT", + "name": "Villers-Cotterêts, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93247, + 43.5894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQENWKTMZCF", + "ref": "QENWKTMZCF", + "name": "Lattes, Concession Diamant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.965054, + 48.632276 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJZIKVQJBF8T4", + "ref": "LLJZIKVQJBF8T4", + "name": "Hattigny, atelier Municipal", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.65554508, + 49.99203596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PBELLEUSETP", + "ref": "belleusetp", + "name": "Etreux, Port fluvial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53182, + 49.3415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PRZFESC", + "ref": "RZFESC", + "name": "Braine, Place Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08169, + 49.2414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PNZNXLT", + "ref": "NZNXLT", + "name": "Villers-Cotterêts, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08842, + 49.2538 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PCEKNKB", + "ref": "CEKNKB", + "name": "Villers-Cotterêts, Gendarmerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08842, + 49.2538 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PCEKNKB", + "ref": "CEKNKB", + "name": "Villers-Cotterêts, Gendarmerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28589, + 48.977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PCHARLYMORL", + "ref": "Charlymorl", + "name": "Charly-sur-Marne, Morlot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28611, + 49.8481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PZGGRYJ", + "ref": "ZGGRYJ", + "name": "Saint-Quentin, Parking de la Criée", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32148, + 49.3821 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PYHXCZZ", + "ref": "YHXCZZ", + "name": "Soissons, Place Saint-Christophe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30527, + 49.3807 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PACFGRT", + "ref": "ACFGRT", + "name": "Soissons, Parking Quartier Maupas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32148, + 49.3821 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PYHXCZZ", + "ref": "YHXCZZ", + "name": "Soissons, Place Saint-Christophe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.91678, + 49.9735 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PZWFLZY", + "ref": "ZWFLZY", + "name": "La Capelle, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.33263, + 49.3874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PYHKZDC", + "ref": "YHKZDC", + "name": "Soissons, Avenue de Coucy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28611, + 49.8481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PZGGRYJ", + "ref": "ZGGRYJ", + "name": "Saint-Quentin, Parking de la Criée", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96797, + 49.4363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PVXETMU", + "ref": "VXETMU", + "name": "Guignicourt, Rue de Proviseux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.33663, + 49.3886 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PJBDYVD", + "ref": "JBDYVD", + "name": "Soissons, Avenue de Laon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32714, + 49.383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PEZJMRB", + "ref": "EZJMRB", + "name": "Soissons, Quinquet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31632, + 49.3645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58DE4A4BDF840", + "ref": "58de4a4bdf840", + "name": "Soissons, Corbusier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25982, + 49.1706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PZSXCNB", + "ref": "ZSXCNB", + "name": "Neuilly-Saint-Front, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29915, + 49.3799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMERCINBAINS", + "ref": "Mercinbains", + "name": "Mercin-et-Vaux, Bains-du-Lac", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11368547, + 49.4032033 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PFRHDSL", + "ref": "FRHDSL", + "name": "Vic-sur-Aisne, Rue du Général Maunoury", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29915, + 49.3799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMERCINBAINS", + "ref": "Mercinbains", + "name": "Mercin-et-Vaux, Bains-du-Lac", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.44305, + 48.8956 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PEPINEBOISPAR", + "ref": "epineboispar", + "name": "L'Epine-aux-Bois, Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30645, + 49.3746 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58DE4AE5AAABB", + "ref": "58de4ae5aaabb", + "name": "Soissons, Place Lino Ventura", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30645, + 49.3746 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58DE4AE5AAABB", + "ref": "58de4ae5aaabb", + "name": "Soissons, Place Lino Ventura", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.44305, + 48.8956 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PEPINEBOISPAR", + "ref": "epineboispar", + "name": "L'Epine-aux-Bois, Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3263, + 49.3816 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PUZGRQP", + "ref": "UZGRQP", + "name": "Soissons, Beffroi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.22083, + 49.6128 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PRRHVFY", + "ref": "RRHVFY", + "name": "Chauny, Remparts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12904419, + 49.70972449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PGAWKEX", + "ref": "GAWKEX", + "name": "Rozoy-sur-Serre, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12904419, + 49.70972449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PGAWKEX", + "ref": "GAWKEX", + "name": "Rozoy-sur-Serre, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32161, + 49.3776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P5899A3D83D245", + "ref": "5899a3d83d245", + "name": "Soissons, Bd Jeanne d'Arc (centre radio)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3223, + 49.3859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58AEB7222DB0F", + "ref": "58aeb7222db0f", + "name": "Soissons, Mairie (parking Q. Deviolaine)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3223, + 49.3859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58AEB7222DB0F", + "ref": "58aeb7222db0f", + "name": "Soissons, Mairie (parking Q. Deviolaine)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6158, + 49.6079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PYQDHZG", + "ref": "YQDHZG", + "name": "Aulnois-sous-Laon, Place Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6518, + 49.5675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PFSGKWN", + "ref": "FSGKWN", + "name": "Laon, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.33663, + 49.3886 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PJBDYVD", + "ref": "JBDYVD", + "name": "Soissons, Avenue de Laon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31577, + 49.3761 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PCMVVUZ", + "ref": "CMVVUZ", + "name": "Soissons, Avenue de Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32626, + 49.3776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PKDKQWE", + "ref": "KDKQWE", + "name": "Soissons, Place Dauphine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14828, + 49.3892 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMVQUQH", + "ref": "MVQUQH", + "name": "Ressons-le-Long, Ecoquartier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32161, + 49.3776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P5899A3D83D245", + "ref": "5899a3d83d245", + "name": "Soissons, Bd Jeanne d'Arc (centre radio)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.63055, + 49.8988 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PRBQMXU", + "ref": "RBQMXU", + "name": "Guise, UTAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.451062, + 49.989362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PLLJ2MJF702J9PW", + "ref": "LLJ2MJF702J9PW", + "name": "Bohain-en-Vermandois, Rue Paulin Pecqueux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.374131, + 49.029846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PCMGEBPEBGY", + "ref": "CMGEBPEBGY", + "name": "Essômes-sur-Marne, Rue du Jeu d'Arc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41583, + 49.9463 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PEGHFWA", + "ref": "EGHFWA", + "name": "Fresnoy-le-Grand, Parking Cavalier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.451062, + 49.989362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PLLJ2MJF702J9PW", + "ref": "LLJ2MJF702J9PW", + "name": "Bohain-en-Vermandois, Rue Paulin Pecqueux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.36856, + 49.6619 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PRUDGAA", + "ref": "RUDGAA", + "name": "La Fère, UTAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6158, + 49.6079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PYQDHZG", + "ref": "YQDHZG", + "name": "Aulnois-sous-Laon, Place Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.63055, + 49.8988 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PRBQMXU", + "ref": "RBQMXU", + "name": "Guise, UTAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.36856, + 49.6619 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PRUDGAA", + "ref": "RUDGAA", + "name": "La Fère, UTAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32638, + 49.3943 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PAYHWSZ", + "ref": "AYHWSZ", + "name": "Soissons, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29831, + 49.8406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSCMZBN", + "ref": "SCMZBN", + "name": "Saint-Quentin Gare 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29575, + 49.8397 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PFTRQMO3IQ3", + "ref": "FTRQMO3IQ3", + "name": "Saint-Quentin Gare 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08333333, + 49.91444444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PTREUU2CJ9Q", + "ref": "TREUU2CJ9Q", + "name": "Hirson, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29831, + 49.8406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSCMZBN", + "ref": "SCMZBN", + "name": "Saint-Quentin Gare 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32848, + 49.3846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PVCYCFG", + "ref": "VCYCFG", + "name": "Soissons, Bibliothèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32651, + 49.3792 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PGBJVJY", + "ref": "GBJVJY", + "name": "Soissons, Square Bonnenfant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12694, + 49.372487 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PDICCAMLZZA", + "ref": "DICCAMLZZA", + "name": "Dizy-le-Gros, Rue Principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.60313, + 49.55677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PLAONFOCH", + "ref": "laonfoch", + "name": "Laon, Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11404, + 49.3983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMONLENGAR", + "ref": "Monlengar", + "name": "Montigny-Lengrain, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39139, + 49.0662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PXUTMPU", + "ref": "XUTMPU", + "name": "Château-Thierry, Centre aquatique", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32651, + 49.3792 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PGBJVJY", + "ref": "GBJVJY", + "name": "Soissons, Square Bonnenfant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39553, + 49.3902 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PUGWUQK", + "ref": "UGWUQK", + "name": "Bucy-le-Long, Place du 29 août 1944", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.64527, + 49.9055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PUXWQPQ", + "ref": "UXWQPQ", + "name": "Guise, ZAC Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.44043, + 49.3845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQAYSJE", + "ref": "QAYSJE", + "name": "Missy-sur-Aisne, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39553, + 49.3902 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PUGWUQK", + "ref": "UGWUQK", + "name": "Bucy-le-Long, Place du 29 août 1944", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.44043, + 49.3845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQAYSJE", + "ref": "QAYSJE", + "name": "Missy-sur-Aisne, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32277, + 48.9656 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PUFFXNG", + "ref": "UFFXNG", + "name": "Nogent-l'Artaud, Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.36727, + 48.9898 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P589D8A780A12E", + "ref": "589d8a780a12e", + "name": "Chézy-sur-Marne, St-Fiacre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31577, + 49.3761 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PCMVVUZ", + "ref": "CMVVUZ", + "name": "Soissons, Avenue de Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11404, + 49.3983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMONLENGAR", + "ref": "Monlengar", + "name": "Montigny-Lengrain, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32106, + 49.3804 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58AEB617AD8C4", + "ref": "58aeb617ad8c4", + "name": "Soissons - Bd Jeanne d'Arc (école)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96797, + 49.4363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PVXETMU", + "ref": "VXETMU", + "name": "Guignicourt, Rue de Proviseux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.36727, + 48.9898 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P589D8A780A12E", + "ref": "589d8a780a12e", + "name": "Chézy-sur-Marne, St-Fiacre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5945, + 49.5764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PLAONBESNY", + "ref": "laonbesny", + "name": "Laon, Besny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29519, + 49.8596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PZRAUNU", + "ref": "ZRAUNU", + "name": "Saint-Quentin, Place de la Citoyenneté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29519, + 49.8596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PZRAUNU", + "ref": "ZRAUNU", + "name": "Saint-Quentin, Place de la Citoyenneté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12694, + 49.372487 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PDICCAMLZZA", + "ref": "DICCAMLZZA", + "name": "Dizy-le-Gros, Rue Principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.15, + 49.8775 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58AEB47A92E48", + "ref": "58aeb47a92e48", + "name": "Vermand, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30091, + 49.8338 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PZFEUKM", + "ref": "ZFEUKM", + "name": "Saint-Quentin, Camille Guérin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3263, + 49.3816 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PUZGRQP", + "ref": "UZGRQP", + "name": "Soissons, Beffroi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6518, + 49.5675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PFSGKWN", + "ref": "FSGKWN", + "name": "Laon, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.22555, + 49.7561 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58AEB3ECE5680", + "ref": "58aeb3ece5680", + "name": "Clastres, Château d'eau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.69635, + 50.0074 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PKCCJFU", + "ref": "KCCJFU", + "name": "Boué, Cyrille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53182, + 49.3415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PRZFESC", + "ref": "RZFESC", + "name": "Braine, Place Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.52155, + 49.0611 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMEZYMOUMEDIC", + "ref": "mezymoumedic", + "name": "Mézy-Moulins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.89959, + 49.4032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMDBAEJ", + "ref": "MDBAEJ", + "name": "Berry-au-Bac, Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305503, + 49.869838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPHZOEZONW", + "ref": "NPHZOEZONW", + "name": "Amiens, Crédit Agricole Brie Picardie", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.965007, + 49.065371 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVU508T5OVZ", + "ref": "VU508T5OVZ", + "name": "Dizy, Avenue du général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.965007, + 49.065371 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVU508T5OVZ", + "ref": "VU508T5OVZ", + "name": "Dizy, Avenue du général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.40102222, + 49.14844108 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGCQHR8X8AM", + "ref": "GCQHR8X8AM", + "name": "Buffalo Verdun, Avenue de Metz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.40102222, + 49.14844108 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGCQHR8X8AM", + "ref": "GCQHR8X8AM", + "name": "Buffalo Verdun, Avenue de Metz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.07420562, + 48.7357212 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIYRXKDVGXP", + "ref": "IYRXKDVGXP", + "name": "Sarrebourg, Impasse du Général de Maud Huy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.07420562, + 48.7357212 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIYRXKDVGXP", + "ref": "IYRXKDVGXP", + "name": "Sarrebourg, Impasse du Général de Maud Huy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69625, + 49.205 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQVDTM", + "ref": "FQVDTM", + "name": "Creutzwald, Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69625, + 49.205 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQVDTM", + "ref": "FQVDTM", + "name": "Creutzwald, Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69625, + 49.205 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQVDTM", + "ref": "FQVDTM", + "name": "Creutzwald, Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69625, + 49.205 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQVDTM", + "ref": "FQVDTM", + "name": "Creutzwald, Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11827, + 45.7597 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKAYLQU8CEK", + "ref": "KAYLQU8CEK", + "name": "Aubière, Résidence des Cézeaux", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11827, + 45.7597 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKAYLQU8CEK", + "ref": "KAYLQU8CEK", + "name": "Aubière, Résidence des Cézeaux", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11827, + 45.7597 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKAYLQU8CEK", + "ref": "KAYLQU8CEK", + "name": "Aubière, Résidence des Cézeaux", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11827, + 45.7597 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKAYLQU8CEK", + "ref": "KAYLQU8CEK", + "name": "Aubière, Résidence des Cézeaux", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08703, + 45.7644 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOOBA6QV", + "ref": "JSQOOBA6QV", + "name": "Clermont-Ferrand, Résidence Crous", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08703, + 45.7644 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOOBA6QV", + "ref": "JSQOOBA6QV", + "name": "Clermont-Ferrand, Résidence Crous", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08703, + 45.7644 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOOBA6QV", + "ref": "JSQOOBA6QV", + "name": "Clermont-Ferrand, Résidence Crous", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08703, + 45.7644 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOOBA6QV", + "ref": "JSQOOBA6QV", + "name": "Clermont-Ferrand, Résidence Crous", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08703, + 45.7644 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOOBA6QV", + "ref": "JSQOOBA6QV", + "name": "Clermont-Ferrand, Résidence Crous", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08703, + 45.7644 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOOBA6QV", + "ref": "JSQOOBA6QV", + "name": "Clermont-Ferrand, Résidence Crous", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58976, + 46.3306 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTMRU6GQRN3", + "ref": "TMRU6GQRN3", + "name": "Montluçon, Résidence Crous", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58976, + 46.3306 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTMRU6GQRN3", + "ref": "TMRU6GQRN3", + "name": "Montluçon, Résidence Crous", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305503, + 49.869838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPHZOEZONW", + "ref": "NPHZOEZONW", + "name": "Amiens, Crédit Agricole Brie Picardie", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305503, + 49.869838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPHZOEZONW", + "ref": "NPHZOEZONW", + "name": "Amiens, Crédit Agricole Brie Picardie", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305503, + 49.869838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPHZOEZONW", + "ref": "NPHZOEZONW", + "name": "Amiens, Crédit Agricole Brie Picardie", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462643, + 44.917315 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWJAIJ1IBFG", + "ref": "WJAIJ1IBFG", + "name": "Aurillac, Cournil Automobiles", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462643, + 44.917315 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWJAIJ1IBFG", + "ref": "WJAIJ1IBFG", + "name": "Aurillac, Cournil Automobiles", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462643, + 44.917315 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWJAIJ1IBFG", + "ref": "WJAIJ1IBFG", + "name": "Aurillac, Cournil Automobiles", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.830157, + 48.897452 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POJUCCZEVLA", + "ref": "OJUCCZEVLA", + "name": "Condé Sainte Libiaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4906, + -20.8901 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMMGYMF", + "ref": "MMGYMF", + "name": "Saint-Denis, Renault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4906, + -20.8901 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMMGYMF", + "ref": "MMGYMF", + "name": "Saint-Denis, Renault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3183, + -20.9455 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRLWJHC", + "ref": "RLWJHC", + "name": "Le Port, Renault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4906, + -20.8901 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMMGYMF", + "ref": "MMGYMF", + "name": "Saint-Denis, Renault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4602, + -21.3343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNCRPQ", + "ref": "LNCRPQ", + "name": "Saint-Pierre, Renault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4602, + -21.3343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNCRPQ", + "ref": "LNCRPQ", + "name": "Saint-Pierre, Renault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4602, + -21.3343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNCRPQ", + "ref": "LNCRPQ", + "name": "Saint-Pierre, Renault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3183, + -20.9455 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRLWJHC", + "ref": "RLWJHC", + "name": "Le Port, Renault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4602, + -21.3343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNCRPQ", + "ref": "LNCRPQ", + "name": "Saint-Pierre, Renault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4906, + -20.8901 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMMGYMF", + "ref": "MMGYMF", + "name": "Saint-Denis, Renault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.26599292, + -21.0141679 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPIPHPE34WD", + "ref": "PIPHPE34WD", + "name": "Saint-Paul, Renault", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.830157, + 48.897452 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POJUCCZEVLA", + "ref": "OJUCCZEVLA", + "name": "Condé Sainte Libiaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.83507, + 47.9626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCZKSFL", + "ref": "CZKSFL", + "name": "Cornimont, Rue du Daval", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.027209, + 46.890697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PANX5XTRANK", + "ref": "ANX5XTRANK", + "name": "Verdun-sur-le-Doubs, Avenue du Président Borgeot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.027209, + 46.890697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PANX5XTRANK", + "ref": "ANX5XTRANK", + "name": "Verdun-sur-le-Doubs, Avenue du Président Borgeot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.027209, + 46.890697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PANX5XTRANK", + "ref": "ANX5XTRANK", + "name": "Verdun-sur-le-Doubs, Avenue du Président Borgeot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.027209, + 46.890697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PANX5XTRANK", + "ref": "ANX5XTRANK", + "name": "Verdun-sur-le-Doubs, Avenue du Président Borgeot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81495946, + 46.47176608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYAYRFJMR2U", + "ref": "YAYRFJMR2U", + "name": "Gamm Vert Lugny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81495946, + 46.47176608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYAYRFJMR2U", + "ref": "YAYRFJMR2U", + "name": "Gamm Vert Lugny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81495946, + 46.47176608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYAYRFJMR2U", + "ref": "YAYRFJMR2U", + "name": "Gamm Vert Lugny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81495946, + 46.47176608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYAYRFJMR2U", + "ref": "YAYRFJMR2U", + "name": "Gamm Vert Lugny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.83507, + 47.9626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCZKSFL", + "ref": "CZKSFL", + "name": "Cornimont, Rue du Daval", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.83507, + 47.9626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCZKSFL", + "ref": "CZKSFL", + "name": "Cornimont, Rue du Daval", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.83507, + 47.9626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCZKSFL", + "ref": "CZKSFL", + "name": "Cornimont, Rue du Daval", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305503, + 49.869838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPHZOEZONW", + "ref": "NPHZOEZONW", + "name": "Amiens, Crédit Agricole Brie Picardie", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305503, + 49.869838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPHZOEZONW", + "ref": "NPHZOEZONW", + "name": "Amiens, Crédit Agricole Brie Picardie", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39148, + 49.0662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PXUTMPU", + "ref": "XUTMPU", + "name": "Château-Thierry, Centre aquatique", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305503, + 49.869838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPHZOEZONW", + "ref": "NPHZOEZONW", + "name": "Amiens, Crédit Agricole Brie Picardie", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50235, + 44.870304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMU4VEED0OF", + "ref": "MU4VEED0OF", + "name": "Artigues-près-Bordeaux, DBF Autos", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50235, + 44.870304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMU4VEED0OF", + "ref": "MU4VEED0OF", + "name": "Artigues-près-Bordeaux, DBF Autos", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50235, + 44.870304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMU4VEED0OF", + "ref": "MU4VEED0OF", + "name": "Artigues-près-Bordeaux, DBF Autos", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.686231, + 44.82537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDFR9ZCDQ6F", + "ref": "DFR9ZCDQ6F", + "name": "Mérignac, DBF Autos", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.686231, + 44.82537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDFR9ZCDQ6F", + "ref": "DFR9ZCDQ6F", + "name": "Mérignac, DBF Autos", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.686231, + 44.82537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDFR9ZCDQ6F", + "ref": "DFR9ZCDQ6F", + "name": "Mérignac, DBF Autos", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.686231, + 44.82537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDFR9ZCDQ6F", + "ref": "DFR9ZCDQ6F", + "name": "Mérignac, DBF Autos", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.686231, + 44.82537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDFR9ZCDQ6F", + "ref": "DFR9ZCDQ6F", + "name": "Mérignac, DBF Autos", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.686231, + 44.82537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDFR9ZCDQ6F", + "ref": "DFR9ZCDQ6F", + "name": "Mérignac, DBF Autos", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32626, + 49.3776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PKDKQWE", + "ref": "KDKQWE", + "name": "Soissons, Place Dauphine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.47162, + 49.4336 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PRTQZUX", + "ref": "RTQZUX", + "name": "Sancy-les-Cheminots, Lucient Busquet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.47162, + 49.4336 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PRTQZUX", + "ref": "RTQZUX", + "name": "Sancy-les-Cheminots, Lucient Busquet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.374131, + 49.029846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PCMGEBPEBGY", + "ref": "CMGEBPEBGY", + "name": "Essômes-sur-Marne, Rue du Jeu d'Arc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.89959, + 49.4032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMDBAEJ", + "ref": "MDBAEJ", + "name": "Berry-au-Bac, Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07527, + 49.9272 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58B6D74CCC142", + "ref": "58b6d74ccc142", + "name": "Hirson, Maréchal Joffre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07527, + 49.9272 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58B6D74CCC142", + "ref": "58b6d74ccc142", + "name": "Hirson, Maréchal Joffre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.52155, + 49.0611 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMEZYMOUMEDIC", + "ref": "mezymoumedic", + "name": "Mézy-Moulins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41583, + 49.9463 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PEGHFWA", + "ref": "EGHFWA", + "name": "Fresnoy-le-Grand, Parking Cavalier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.90333, + 49.8328 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PAYRAGX", + "ref": "AYRAGX", + "name": "Vervins, Hôpital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11368547, + 49.4032033 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PFRHDSL", + "ref": "FRHDSL", + "name": "Vic-sur-Aisne, Rue du Général Maunoury", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5945, + 49.5764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PLAONBESNY", + "ref": "laonbesny", + "name": "Laon, Besny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.15, + 49.8775 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58AEB47A92E48", + "ref": "58aeb47a92e48", + "name": "Vermand, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14828, + 49.3892 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMVQUQH", + "ref": "MVQUQH", + "name": "Ressons-le-Long, Ecoquartier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39148, + 49.0662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PXUTMPU", + "ref": "XUTMPU", + "name": "Château-Thierry, Centre aquatique", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.65554508, + 49.99203596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PBELLEUSETP", + "ref": "belleusetp", + "name": "Etreux, Port fluvial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50235, + 44.870304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMU4VEED0OF", + "ref": "MU4VEED0OF", + "name": "Artigues-près-Bordeaux, DBF Autos", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50235, + 44.870304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMU4VEED0OF", + "ref": "MU4VEED0OF", + "name": "Artigues-près-Bordeaux, DBF Autos", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50235, + 44.870304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMU4VEED0OF", + "ref": "MU4VEED0OF", + "name": "Artigues-près-Bordeaux, DBF Autos", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12051, + 49.4342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBLXZFV", + "ref": "BLXZFV", + "name": "Crédit Agricole Beauvais", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305503, + 49.869838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPHZOEZONW", + "ref": "NPHZOEZONW", + "name": "Amiens, Crédit Agricole Brie Picardie", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305503, + 49.869838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPHZOEZONW", + "ref": "NPHZOEZONW", + "name": "Amiens, Crédit Agricole Brie Picardie", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305503, + 49.869838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPHZOEZONW", + "ref": "NPHZOEZONW", + "name": "Amiens, Crédit Agricole Brie Picardie", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305503, + 49.869838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPHZOEZONW", + "ref": "NPHZOEZONW", + "name": "Amiens, Crédit Agricole Brie Picardie", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305503, + 49.869838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPHZOEZONW", + "ref": "NPHZOEZONW", + "name": "Amiens, Crédit Agricole Brie Picardie", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305503, + 49.869838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPHZOEZONW", + "ref": "NPHZOEZONW", + "name": "Amiens, Crédit Agricole Brie Picardie", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305503, + 49.869838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPHZOEZONW", + "ref": "NPHZOEZONW", + "name": "Amiens, Crédit Agricole Brie Picardie", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12051, + 49.4342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBLXZFV", + "ref": "BLXZFV", + "name": "Crédit Agricole Beauvais", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12051, + 49.4342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBLXZFV", + "ref": "BLXZFV", + "name": "Crédit Agricole Beauvais", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12051, + 49.4342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBLXZFV", + "ref": "BLXZFV", + "name": "Crédit Agricole Beauvais", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12051, + 49.4342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBLXZFV", + "ref": "BLXZFV", + "name": "Crédit Agricole Beauvais", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12051, + 49.4342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBLXZFV", + "ref": "BLXZFV", + "name": "Crédit Agricole Beauvais", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50235, + 44.870304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMU4VEED0OF", + "ref": "MU4VEED0OF", + "name": "Artigues-près-Bordeaux, DBF Autos", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12051, + 49.4342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBLXZFV", + "ref": "BLXZFV", + "name": "Crédit Agricole Beauvais", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39063, + 43.3298 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAVERDERIE", + "ref": "laverderie", + "name": "Lons, La Verderie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39063, + 43.3298 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAVERDERIE", + "ref": "laverderie", + "name": "Lons, La Verderie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14008141, + 45.75966262 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPMW0TWM1G9", + "ref": "PMW0TWM1G9", + "name": "Clermont-Ferrand, Cuisine Plus", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14008141, + 45.75966262 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPMW0TWM1G9", + "ref": "PMW0TWM1G9", + "name": "Clermont-Ferrand, Cuisine Plus", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353198, + 49.005547 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIJOXVXWV0B", + "ref": "IJOXVXWV0B", + "name": "Saint-Brice-sous-Forêt, Cuisinella", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71672171, + 48.61277374 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMU6UKE1DGT", + "ref": "MU6UKE1DGT", + "name": "Schiltigheim, Avenue de L'Europe", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56197322, + 44.77498471 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGFGWISRUKV", + "ref": "GFGWISRUKV", + "name": "Villenave-d'Ornon, Cycles et Nature", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.96942499, + 45.73287192 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJXC0KVN9L", + "ref": "RJXC0KVN9L", + "name": "Chassieu, D2 Finance", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.96942499, + 45.73287192 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJXC0KVN9L", + "ref": "RJXC0KVN9L", + "name": "Chassieu, D2 Finance", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50235, + 44.870304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMU4VEED0OF", + "ref": "MU4VEED0OF", + "name": "Artigues-près-Bordeaux, DBF Autos", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96558337, + 48.63213926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJZI2PFA147ER", + "ref": "LLJZI2PFA147ER", + "name": "Hattigny, Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.889706, + 43.985588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQORNYNAFT", + "ref": "BQORNYNAFT", + "name": "Sorgues, Clinique ELSAN-Fontvert", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96558337, + 48.63213926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJZI2PFA147ER", + "ref": "LLJZI2PFA147ER", + "name": "Hattigny, Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29266, + 45.511079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO6N2OWJJ7V", + "ref": "O6N2OWJJ7V", + "name": "Les Pradeaux, Château La Grange Fort", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27657, + 43.1215 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCVWVHT", + "ref": "CVWVHT", + "name": "Château Léoube, Plage", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.29015886, + 43.12237719 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZQCFW", + "ref": "KZQCFW", + "name": "Château Léoube, Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27657, + 43.1215 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCVWVHT", + "ref": "CVWVHT", + "name": "Château Léoube, Plage", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27657, + 43.1215 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCVWVHT", + "ref": "CVWVHT", + "name": "Château Léoube, Plage", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27657, + 43.1215 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCVWVHT", + "ref": "CVWVHT", + "name": "Château Léoube, Plage", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6321366, + 44.98545202 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM9KFBBOZNC", + "ref": "M9KFBBOZNC", + "name": "Ludon-Médoc, Château Paloumey", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6321366, + 44.98545202 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM9KFBBOZNC", + "ref": "M9KFBBOZNC", + "name": "Ludon-Médoc, Château Paloumey", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6321366, + 44.98545202 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM9KFBBOZNC", + "ref": "M9KFBBOZNC", + "name": "Ludon-Médoc, Château Paloumey", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6321366, + 44.98545202 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM9KFBBOZNC", + "ref": "M9KFBBOZNC", + "name": "Ludon-Médoc, Château Paloumey", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.682521, + 47.282556 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYK0VLSICY", + "ref": "LYK0VLSICY", + "name": "Montbazon, Château d'Artigny", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.682521, + 47.282556 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYK0VLSICY", + "ref": "LYK0VLSICY", + "name": "Montbazon, Château d'Artigny", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27743151, + 43.52549132 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPQQFEQWKFX", + "ref": "PQQFEQWKFX", + "name": "Saint-Antonin-du-Var, Château de la Mentone", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27743151, + 43.52549132 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPQQFEQWKFX", + "ref": "PQQFEQWKFX", + "name": "Saint-Antonin-du-Var, Château de la Mentone", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32263738, + 47.10276877 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLMTM4TSXD", + "ref": "LLMTM4TSXD", + "name": "Lémeré, rue du Château", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32263738, + 47.10276877 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLMTM4TSXD", + "ref": "LLMTM4TSXD", + "name": "Lémeré, rue du Château", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.61950401, + 43.51944269 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVICY36RAPV", + "ref": "VICY36RAPV", + "name": "Le Muy, Château du Rouët", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.61950401, + 43.51944269 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVICY36RAPV", + "ref": "VICY36RAPV", + "name": "Le Muy, Château du Rouët", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.724497, + 48.830065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POZK2ET0HLL", + "ref": "OZK2ET0HLL", + "name": "Châteauform Behoust, 1 Rue du Nid de Geai", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.724497, + 48.830065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POZK2ET0HLL", + "ref": "OZK2ET0HLL", + "name": "Châteauform Behoust, 1 Rue du Nid de Geai", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.724497, + 48.830065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POZK2ET0HLL", + "ref": "OZK2ET0HLL", + "name": "Châteauform Behoust, 1 Rue du Nid de Geai", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.724497, + 48.830065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POZK2ET0HLL", + "ref": "OZK2ET0HLL", + "name": "Châteauform Behoust, 1 Rue du Nid de Geai", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.724497, + 48.830065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POZK2ET0HLL", + "ref": "OZK2ET0HLL", + "name": "Châteauform Behoust, 1 Rue du Nid de Geai", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.724497, + 48.830065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POZK2ET0HLL", + "ref": "OZK2ET0HLL", + "name": "Châteauform Behoust, 1 Rue du Nid de Geai", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81603256, + 49.53538899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJA7BNPMKOY", + "ref": "JA7BNPMKOY", + "name": "Élincourt-Sainte-Marguerite, Chateauform Bellinglise", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81603256, + 49.53538899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJA7BNPMKOY", + "ref": "JA7BNPMKOY", + "name": "Élincourt-Sainte-Marguerite, Chateauform Bellinglise", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.29015886, + 43.12237719 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZQCFW", + "ref": "KZQCFW", + "name": "Château Léoube, Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29266, + 45.511079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO6N2OWJJ7V", + "ref": "O6N2OWJJ7V", + "name": "Les Pradeaux, Château La Grange Fort", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28882, + 48.177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZQZYL", + "ref": "KZQZYL", + "name": "Centre commercial Sens Sud, Av Jean Delpech", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.14673436, + 42.97724425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUUJVT7GFB3", + "ref": "UUJVT7GFB3", + "name": "Saint-Girons, Logis Château Beauregard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28882, + 48.177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZQZYL", + "ref": "KZQZYL", + "name": "Centre commercial Sens Sud, Av Jean Delpech", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29063, + 48.1747 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUXYEWT", + "ref": "UXYEWT", + "name": "Centre commercial Sens Sud, Rue Michel Delmas", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.271643, + 46.184467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFRG66VW9M5", + "ref": "FRG66VW9M5", + "name": "Vétraz-Monthoux, Allée des Chênes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.271643, + 46.184467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFRG66VW9M5", + "ref": "FRG66VW9M5", + "name": "Vétraz-Monthoux, Allée des Chênes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.809147, + 45.575564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVXU4WVABPH", + "ref": "VXU4WVABPH", + "name": "Le Mont Dore, Ceres Immobilier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.809147, + 45.575564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVXU4WVABPH", + "ref": "VXU4WVABPH", + "name": "Le Mont Dore, Ceres Immobilier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.809147, + 45.575564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVXU4WVABPH", + "ref": "VXU4WVABPH", + "name": "Le Mont Dore, Ceres Immobilier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.809147, + 45.575564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVXU4WVABPH", + "ref": "VXU4WVABPH", + "name": "Le Mont Dore, Ceres Immobilier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.01062108, + 43.14269076 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUAYALWREG0", + "ref": "UAYALWREG0", + "name": "La Valette-du-Var, Autoroute 57, Esso La Bigue", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.01062108, + 43.14269076 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUAYALWREG0", + "ref": "UAYALWREG0", + "name": "La Valette-du-Var, Autoroute 57, Esso La Bigue", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40326, + 48.0762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUXMNDN", + "ref": "UXMNDN", + "name": "Certie, Rue de Mulhouse", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40326, + 48.0762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUXMNDN", + "ref": "UXMNDN", + "name": "Certie, Rue de Mulhouse", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40326, + 48.0762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUXMNDN", + "ref": "UXMNDN", + "name": "Certie, Rue de Mulhouse", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56040181, + 45.53511035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PABYE1D2DBH", + "ref": "ABYE1D2DBH", + "name": "Les Abrets en Dauphiné, Chaboud Automobiles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56040181, + 45.53511035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PABYE1D2DBH", + "ref": "ABYE1D2DBH", + "name": "Les Abrets en Dauphiné, Chaboud Automobiles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0404563, + 49.26611328 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCUCLV63JAV", + "ref": "CUCLV63JAV", + "name": "Reims, rue Gosset", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0404563, + 49.26611328 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCUCLV63JAV", + "ref": "CUCLV63JAV", + "name": "Reims, rue Gosset", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0404563, + 49.26611328 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCUCLV63JAV", + "ref": "CUCLV63JAV", + "name": "Reims, rue Gosset", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0404563, + 49.26611328 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCUCLV63JAV", + "ref": "CUCLV63JAV", + "name": "Reims, rue Gosset", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.108198, + 49.158216 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIWYM8S6XDY4C", + "ref": "LLIWYM8S6XDY4C", + "name": "Mailly Champagne, Rue de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.108198, + 49.158216 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIWYM8S6XDY4C", + "ref": "LLIWYM8S6XDY4C", + "name": "Mailly Champagne, Rue de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.858976, + 48.745802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTCBPDHC3FI", + "ref": "TCBPDHC3FI", + "name": "Languimberg, Chez Michèle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.86193856, + 43.57953074 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXXDLS2JO5O", + "ref": "XXDLS2JO5O", + "name": "Montpellier, Rue Patrice Lumumba", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.86193856, + 43.57953074 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXXDLS2JO5O", + "ref": "XXDLS2JO5O", + "name": "Montpellier, Rue Patrice Lumumba", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.14673436, + 42.97724425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUUJVT7GFB3", + "ref": "UUJVT7GFB3", + "name": "Saint-Girons, Logis Château Beauregard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81603256, + 49.53538899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJA7BNPMKOY", + "ref": "JA7BNPMKOY", + "name": "Élincourt-Sainte-Marguerite, Chateauform Bellinglise", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81603256, + 49.53538899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJA7BNPMKOY", + "ref": "JA7BNPMKOY", + "name": "Élincourt-Sainte-Marguerite, Chateauform Bellinglise", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52042378, + 48.46516894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODFHLRKA2C", + "ref": "ODFHLRKA2C", + "name": "Châteauform Cély-en-Bière, Route de Saint Germain", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52042378, + 48.46516894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODFHLRKA2C", + "ref": "ODFHLRKA2C", + "name": "Châteauform Cély-en-Bière, Route de Saint Germain", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87393582, + 48.77668255 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBMGYU8HPTS", + "ref": "BMGYU8HPTS", + "name": "Châteauform Le Domaine du Tremblay, 2 Place de l'Eglise", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87393582, + 48.77668255 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBMGYU8HPTS", + "ref": "BMGYU8HPTS", + "name": "Châteauform Le Domaine du Tremblay, 2 Place de l'Eglise", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36895993, + 49.26749752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POO9RLIGTXI", + "ref": "OO9RLIGTXI", + "name": "Châteauform Le Grand Mello, Route de Clermont", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36895993, + 49.26749752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POO9RLIGTXI", + "ref": "OO9RLIGTXI", + "name": "Châteauform Le Grand Mello, Route de Clermont", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36895993, + 49.26749752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POO9RLIGTXI", + "ref": "OO9RLIGTXI", + "name": "Châteauform Le Grand Mello, Route de Clermont", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36895993, + 49.26749752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POO9RLIGTXI", + "ref": "OO9RLIGTXI", + "name": "Châteauform Le Grand Mello, Route de Clermont", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36895993, + 49.26749752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POO9RLIGTXI", + "ref": "OO9RLIGTXI", + "name": "Châteauform Le Grand Mello, Route de Clermont", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36895993, + 49.26749752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POO9RLIGTXI", + "ref": "OO9RLIGTXI", + "name": "Châteauform Le Grand Mello, Route de Clermont", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36895993, + 49.26749752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POO9RLIGTXI", + "ref": "OO9RLIGTXI", + "name": "Châteauform Le Grand Mello, Route de Clermont", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.558292, + 48.53687 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRQQJRQFCA0", + "ref": "RQQJRQFCA0", + "name": "Seine-Port, Châteauform Les Berges de Seine", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.558292, + 48.53687 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRQQJRQFCA0", + "ref": "RQQJRQFCA0", + "name": "Seine-Port, Châteauform Les Berges de Seine", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.558292, + 48.53687 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRQQJRQFCA0", + "ref": "RQQJRQFCA0", + "name": "Seine-Port, Châteauform Les Berges de Seine", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.558292, + 48.53687 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRQQJRQFCA0", + "ref": "RQQJRQFCA0", + "name": "Seine-Port, Châteauform Les Berges de Seine", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.558292, + 48.53687 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRQQJRQFCA0", + "ref": "RQQJRQFCA0", + "name": "Seine-Port, Châteauform Les Berges de Seine", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.558292, + 48.53687 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRQQJRQFCA0", + "ref": "RQQJRQFCA0", + "name": "Seine-Port, Châteauform Les Berges de Seine", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.558292, + 48.53687 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRQQJRQFCA0", + "ref": "RQQJRQFCA0", + "name": "Seine-Port, Châteauform Les Berges de Seine", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.558292, + 48.53687 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRQQJRQFCA0", + "ref": "RQQJRQFCA0", + "name": "Seine-Port, Châteauform Les Berges de Seine", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83342382, + 48.75577145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJYUU2PWTSK", + "ref": "JYUU2PWTSK", + "name": "Châteauform Les Mesnuls, Grande Rue", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83342382, + 48.75577145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJYUU2PWTSK", + "ref": "JYUU2PWTSK", + "name": "Châteauform Les Mesnuls, Grande Rue", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83342382, + 48.75577145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJYUU2PWTSK", + "ref": "JYUU2PWTSK", + "name": "Châteauform Les Mesnuls, Grande Rue", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83342382, + 48.75577145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJYUU2PWTSK", + "ref": "JYUU2PWTSK", + "name": "Châteauform Les Mesnuls, Grande Rue", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83342382, + 48.75577145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJYUU2PWTSK", + "ref": "JYUU2PWTSK", + "name": "Châteauform Les Mesnuls, Grande Rue", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83342382, + 48.75577145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJYUU2PWTSK", + "ref": "JYUU2PWTSK", + "name": "Châteauform Les Mesnuls, Grande Rue", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83342382, + 48.75577145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJYUU2PWTSK", + "ref": "JYUU2PWTSK", + "name": "Châteauform Les Mesnuls, Grande Rue", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83342382, + 48.75577145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJYUU2PWTSK", + "ref": "JYUU2PWTSK", + "name": "Châteauform Les Mesnuls, Grande Rue", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87393582, + 48.77668255 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBMGYU8HPTS", + "ref": "BMGYU8HPTS", + "name": "Châteauform Le Domaine du Tremblay, 2 Place de l'Eglise", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87393582, + 48.77668255 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBMGYU8HPTS", + "ref": "BMGYU8HPTS", + "name": "Châteauform Le Domaine du Tremblay, 2 Place de l'Eglise", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31350109, + 49.35824221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBU0VIGCDAQ", + "ref": "BU0VIGCDAQ", + "name": "Thury sous Clermont, Châteauform Fillerval", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.000974, + 48.579952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO0NVYCD3RW", + "ref": "O0NVYCD3RW", + "name": "Châteauform de Rochefort, Route de la Bâte", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52042378, + 48.46516894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODFHLRKA2C", + "ref": "ODFHLRKA2C", + "name": "Châteauform Cély-en-Bière, Route de Saint Germain", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52042378, + 48.46516894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODFHLRKA2C", + "ref": "ODFHLRKA2C", + "name": "Châteauform Cély-en-Bière, Route de Saint Germain", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52042378, + 48.46516894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODFHLRKA2C", + "ref": "ODFHLRKA2C", + "name": "Châteauform Cély-en-Bière, Route de Saint Germain", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52042378, + 48.46516894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODFHLRKA2C", + "ref": "ODFHLRKA2C", + "name": "Châteauform Cély-en-Bière, Route de Saint Germain", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52042378, + 48.46516894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODFHLRKA2C", + "ref": "ODFHLRKA2C", + "name": "Châteauform Cély-en-Bière, Route de Saint Germain", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52042378, + 48.46516894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODFHLRKA2C", + "ref": "ODFHLRKA2C", + "name": "Châteauform Cély-en-Bière, Route de Saint Germain", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.505337, + 45.903621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEI9OT5GBAB", + "ref": "EI9OT5GBAB", + "name": "Vindry-sur-Turdine, Chateauform Dareize", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.505337, + 45.903621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEI9OT5GBAB", + "ref": "EI9OT5GBAB", + "name": "Vindry-sur-Turdine, Chateauform Dareize", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.505337, + 45.903621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEI9OT5GBAB", + "ref": "EI9OT5GBAB", + "name": "Vindry-sur-Turdine, Chateauform Dareize", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.505337, + 45.903621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEI9OT5GBAB", + "ref": "EI9OT5GBAB", + "name": "Vindry-sur-Turdine, Chateauform Dareize", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.000974, + 48.579952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO0NVYCD3RW", + "ref": "O0NVYCD3RW", + "name": "Châteauform de Rochefort, Route de la Bâte", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.000974, + 48.579952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO0NVYCD3RW", + "ref": "O0NVYCD3RW", + "name": "Châteauform de Rochefort, Route de la Bâte", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31350109, + 49.35824221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBU0VIGCDAQ", + "ref": "BU0VIGCDAQ", + "name": "Thury sous Clermont, Châteauform Fillerval", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.000974, + 48.579952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO0NVYCD3RW", + "ref": "O0NVYCD3RW", + "name": "Châteauform de Rochefort, Route de la Bâte", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.000974, + 48.579952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO0NVYCD3RW", + "ref": "O0NVYCD3RW", + "name": "Châteauform de Rochefort, Route de la Bâte", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.000974, + 48.579952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO0NVYCD3RW", + "ref": "O0NVYCD3RW", + "name": "Châteauform de Rochefort, Route de la Bâte", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52744, + 45.589545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYLCU4JWUCU", + "ref": "YLCU4JWUCU", + "name": "Châteauform Faverges de la Tour, 1 rue de la Rolandière", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52744, + 45.589545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYLCU4JWUCU", + "ref": "YLCU4JWUCU", + "name": "Châteauform Faverges de la Tour, 1 rue de la Rolandière", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52744, + 45.589545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYLCU4JWUCU", + "ref": "YLCU4JWUCU", + "name": "Châteauform Faverges de la Tour, 1 rue de la Rolandière", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52744, + 45.589545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYLCU4JWUCU", + "ref": "YLCU4JWUCU", + "name": "Châteauform Faverges de la Tour, 1 rue de la Rolandière", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31350109, + 49.35824221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBU0VIGCDAQ", + "ref": "BU0VIGCDAQ", + "name": "Thury sous Clermont, Châteauform Fillerval", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31350109, + 49.35824221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBU0VIGCDAQ", + "ref": "BU0VIGCDAQ", + "name": "Thury sous Clermont, Châteauform Fillerval", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31350109, + 49.35824221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBU0VIGCDAQ", + "ref": "BU0VIGCDAQ", + "name": "Thury sous Clermont, Châteauform Fillerval", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31350109, + 49.35824221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBU0VIGCDAQ", + "ref": "BU0VIGCDAQ", + "name": "Thury sous Clermont, Châteauform Fillerval", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29063, + 48.1747 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUXYEWT", + "ref": "UXYEWT", + "name": "Centre commercial Sens Sud, Rue Michel Delmas", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29063, + 48.1747 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUXYEWT", + "ref": "UXYEWT", + "name": "Centre commercial Sens Sud, Rue Michel Delmas", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.21714864, + 50.56614475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGLDMBPSEF", + "ref": "AGLDMBPSEF", + "name": "Commune de Cysoing, Place de la République", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.26173312, + 50.89170991 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVDRSZH3ZTA", + "ref": "VDRSZH3ZTA", + "name": "Zellik, Sphere Business Park, Doornveld 165", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99683523, + 49.78908132 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKVSPKBVOHL", + "ref": "KVSPKBVOHL", + "name": "Bacqueville-en-Caux, Route d'Ablemont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58012, + 45.9221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQLHACIPCL", + "ref": "BQLHACIPCL", + "name": "Val d'Oingt, Carrefour Contact", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58012, + 45.9221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQLHACIPCL", + "ref": "BQLHACIPCL", + "name": "Val d'Oingt, Carrefour Contact", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58012, + 45.9221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQLHACIPCL", + "ref": "BQLHACIPCL", + "name": "Val d'Oingt, Carrefour Contact", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58012, + 45.9221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQLHACIPCL", + "ref": "BQLHACIPCL", + "name": "Val d'Oingt, Carrefour Contact", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.17175276, + 45.67069922 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ5Y2M4CFKZ", + "ref": "Q5Y2M4CFKZ", + "name": "Veyre-Monton, Carrefour Contact", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.17175276, + 45.67069922 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ5Y2M4CFKZ", + "ref": "Q5Y2M4CFKZ", + "name": "Veyre-Monton, Carrefour Contact", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7202101, + 45.93848209 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEVMYWOAM15", + "ref": "EVMYWOAM15", + "name": "Anse, Carrefour Market", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3592665, + 43.13645127 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC2SCCZDTFI", + "ref": "C2SCCZDTFI", + "name": "Le Lavandou, Avenue du Maréchal Juin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3592665, + 43.13645127 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC2SCCZDTFI", + "ref": "C2SCCZDTFI", + "name": "Le Lavandou, Avenue du Maréchal Juin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3592665, + 43.13645127 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC2SCCZDTFI", + "ref": "C2SCCZDTFI", + "name": "Le Lavandou, Avenue du Maréchal Juin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3592665, + 43.13645127 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC2SCCZDTFI", + "ref": "C2SCCZDTFI", + "name": "Le Lavandou, Avenue du Maréchal Juin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.57660808, + 45.90715877 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVTOBODIIAL", + "ref": "VTOBODIIAL", + "name": "Legny, Carrefour Market", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.33412213, + 47.91795631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCKGRBBWBK", + "ref": "JCKGRBBWBK", + "name": "Plouay, Carrefour", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.33412213, + 47.91795631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCKGRBBWBK", + "ref": "JCKGRBBWBK", + "name": "Plouay, Carrefour", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.33412213, + 47.91795631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCKGRBBWBK", + "ref": "JCKGRBBWBK", + "name": "Plouay, Carrefour", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.33412213, + 47.91795631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCKGRBBWBK", + "ref": "JCKGRBBWBK", + "name": "Plouay, Carrefour", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.07849, + 46.1648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBIJ5VAY56V", + "ref": "BIJ5VAY56V", + "name": "Décines, Carrosserie Palmieri", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9563, + 45.0508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZWMI4CXHPK", + "ref": "ZWMI4CXHPK", + "name": "Carrosserie Saint-Germain-Laprade", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9563, + 45.0508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZWMI4CXHPK", + "ref": "ZWMI4CXHPK", + "name": "Carrosserie Saint-Germain-Laprade", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08890496, + 46.13001802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYDSRQVHDQ", + "ref": "LYDSRQVHDQ", + "name": "Casino Saint-Julien, Route d'Annecy", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08890496, + 46.13001802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYDSRQVHDQ", + "ref": "LYDSRQVHDQ", + "name": "Casino Saint-Julien, Route d'Annecy", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08890496, + 46.13001802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYDSRQVHDQ", + "ref": "LYDSRQVHDQ", + "name": "Casino Saint-Julien, Route d'Annecy", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08890496, + 46.13001802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYDSRQVHDQ", + "ref": "LYDSRQVHDQ", + "name": "Casino Saint-Julien, Route d'Annecy", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08890496, + 46.13001802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYDSRQVHDQ", + "ref": "LYDSRQVHDQ", + "name": "Casino Saint-Julien, Route d'Annecy", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99683523, + 49.78908132 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKVSPKBVOHL", + "ref": "KVSPKBVOHL", + "name": "Bacqueville-en-Caux, Route d'Ablemont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388285, + 47.107203 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQVV3WJXNY7", + "ref": "QVV3WJXNY7", + "name": "Saint-Doulchard, Rue des Pieds Blancs", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29063, + 48.1747 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUXYEWT", + "ref": "UXYEWT", + "name": "Centre commercial Sens Sud, Rue Michel Delmas", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388285, + 47.107203 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQVV3WJXNY7", + "ref": "QVV3WJXNY7", + "name": "Saint-Doulchard, Rue des Pieds Blancs", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.386764, + 46.347566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFJFZXU8ENZ", + "ref": "FJFZXU8ENZ", + "name": "La Tranche-sur-Mer, Camping du Jard", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.386764, + 46.347566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFJFZXU8ENZ", + "ref": "FJFZXU8ENZ", + "name": "La Tranche-sur-Mer, Camping du Jard", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.386764, + 46.347566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFJFZXU8ENZ", + "ref": "FJFZXU8ENZ", + "name": "La Tranche-sur-Mer, Camping du Jard", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.035199, + 42.70705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZV5TCKN6XS", + "ref": "ZV5TCKN6XS", + "name": "Canet-en-Roussillon, Camping Le Brasilia 2", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.035199, + 42.70705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZV5TCKN6XS", + "ref": "ZV5TCKN6XS", + "name": "Canet-en-Roussillon, Camping Le Brasilia 2", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.035199, + 42.70705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZV5TCKN6XS", + "ref": "ZV5TCKN6XS", + "name": "Canet-en-Roussillon, Camping Le Brasilia 2", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.035199, + 42.70705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZV5TCKN6XS", + "ref": "ZV5TCKN6XS", + "name": "Canet-en-Roussillon, Camping Le Brasilia 2", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.96462164, + 42.57587349 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFD7OZRUY0H", + "ref": "FD7OZRUY0H", + "name": "Palau-del-Vidre, Avenue Joliot Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.96462164, + 42.57587349 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFD7OZRUY0H", + "ref": "FD7OZRUY0H", + "name": "Palau-del-Vidre, Avenue Joliot Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.825951, + 46.666772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGL2UG1CLGJ", + "ref": "GL2UG1CLGJ", + "name": "L'Aiguillon-sur-Vie, Camping le Parc de la Grève", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716798, + 44.4296686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHZABK7HN5Y", + "ref": "HZABK7HN5Y", + "name": "Biscarrosse, Camping les Écureuils", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716798, + 44.4296686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHZABK7HN5Y", + "ref": "HZABK7HN5Y", + "name": "Biscarrosse, Camping les Écureuils", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3746474, + 46.03818528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMP20MASWWU", + "ref": "MP20MASWWU", + "name": "Saint-Denis-D'Oléron, Boulevard D'Antioche", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3746474, + 46.03818528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMP20MASWWU", + "ref": "MP20MASWWU", + "name": "Saint-Denis-D'Oléron, Boulevard D'Antioche", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3746474, + 46.03818528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMP20MASWWU", + "ref": "MP20MASWWU", + "name": "Saint-Denis-D'Oléron, Boulevard D'Antioche", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3746474, + 46.03818528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMP20MASWWU", + "ref": "MP20MASWWU", + "name": "Saint-Denis-D'Oléron, Boulevard D'Antioche", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3746474, + 46.03818528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMP20MASWWU", + "ref": "MP20MASWWU", + "name": "Saint-Denis-D'Oléron, Boulevard D'Antioche", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3746474, + 46.03818528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMP20MASWWU", + "ref": "MP20MASWWU", + "name": "Saint-Denis-D'Oléron, Boulevard D'Antioche", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3746474, + 46.03818528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMP20MASWWU", + "ref": "MP20MASWWU", + "name": "Saint-Denis-D'Oléron, Boulevard D'Antioche", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87713341, + 45.70846066 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAAWKPFVNSO", + "ref": "AAWKPFVNSO", + "name": "Venissieux, Car'dom Sud", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26163316, + 48.92738723 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTCIIETN158", + "ref": "TCIIETN158", + "name": "Colombes, Résidence l'Envol", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.06852562, + 48.75189522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAV6FY1L0OW", + "ref": "AV6FY1L0OW", + "name": "Sarrebourg, Rue de Sarreguemines", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.06852562, + 48.75189522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAV6FY1L0OW", + "ref": "AV6FY1L0OW", + "name": "Sarrebourg, Rue de Sarreguemines", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.06852562, + 48.75189522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAV6FY1L0OW", + "ref": "AV6FY1L0OW", + "name": "Sarrebourg, Rue de Sarreguemines", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.06852562, + 48.75189522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAV6FY1L0OW", + "ref": "AV6FY1L0OW", + "name": "Sarrebourg, Rue de Sarreguemines", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08890496, + 46.13001802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYDSRQVHDQ", + "ref": "LYDSRQVHDQ", + "name": "Casino Saint-Julien, Route d'Annecy", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08890496, + 46.13001802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYDSRQVHDQ", + "ref": "LYDSRQVHDQ", + "name": "Casino Saint-Julien, Route d'Annecy", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08890496, + 46.13001802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYDSRQVHDQ", + "ref": "LYDSRQVHDQ", + "name": "Casino Saint-Julien, Route d'Annecy", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852455, + 45.502186 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQMAE8C3MB", + "ref": "YQMAE8C3MB", + "name": "Vienne, Central Autos", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5002, + -20.8906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCZWNSB", + "ref": "CZWNSB", + "name": "Sainte-Clotilde, Centre Commercial Grand Nord", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5002, + -20.8906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCZWNSB", + "ref": "CZWNSB", + "name": "Sainte-Clotilde, Centre Commercial Grand Nord", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.471785, + -21.327415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6DAT3JJ7M", + "ref": "L6DAT3JJ7M", + "name": "Saint Pierre, Centre Commercial Grand Sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.471785, + -21.327415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6DAT3JJ7M", + "ref": "L6DAT3JJ7M", + "name": "Saint Pierre, Centre Commercial Grand Sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4001393, + 44.89506938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCORSVFNDDL", + "ref": "CORSVFNDDL", + "name": "Aurillac, Centre Commercial La Sablière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4001393, + 44.89506938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCORSVFNDDL", + "ref": "CORSVFNDDL", + "name": "Aurillac, Centre Commercial La Sablière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4001393, + 44.89506938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCORSVFNDDL", + "ref": "CORSVFNDDL", + "name": "Aurillac, Centre Commercial La Sablière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4001393, + 44.89506938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCORSVFNDDL", + "ref": "CORSVFNDDL", + "name": "Aurillac, Centre Commercial La Sablière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4001393, + 44.89506938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCORSVFNDDL", + "ref": "CORSVFNDDL", + "name": "Aurillac, Centre Commercial La Sablière", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4001393, + 44.89506938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCORSVFNDDL", + "ref": "CORSVFNDDL", + "name": "Aurillac, Centre Commercial La Sablière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.23202423, + 46.18073298 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCDWU9FOQUI", + "ref": "CDWU9FOQUI", + "name": "Étrembières, Centre Commercial", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.23202423, + 46.18073298 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCDWU9FOQUI", + "ref": "CDWU9FOQUI", + "name": "Étrembières, Centre Commercial", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.23202423, + 46.18073298 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCDWU9FOQUI", + "ref": "CDWU9FOQUI", + "name": "Étrembières, Centre Commercial", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.23202423, + 46.18073298 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCDWU9FOQUI", + "ref": "CDWU9FOQUI", + "name": "Étrembières, Centre Commercial", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43459013, + 44.92637035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQALUCBHTJR", + "ref": "QALUCBHTJR", + "name": "Aurillac, Avenue de la République", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43459013, + 44.92637035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQALUCBHTJR", + "ref": "QALUCBHTJR", + "name": "Aurillac, Avenue de la République", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43459013, + 44.92637035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQALUCBHTJR", + "ref": "QALUCBHTJR", + "name": "Aurillac, Avenue de la République", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43459013, + 44.92637035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQALUCBHTJR", + "ref": "QALUCBHTJR", + "name": "Aurillac, Avenue de la République", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43459013, + 44.92637035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQALUCBHTJR", + "ref": "QALUCBHTJR", + "name": "Aurillac, Avenue de la République", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43459013, + 44.92637035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQALUCBHTJR", + "ref": "QALUCBHTJR", + "name": "Aurillac, Avenue de la République", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43459013, + 44.92637035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQALUCBHTJR", + "ref": "QALUCBHTJR", + "name": "Aurillac, Avenue de la République", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3814214, + 49.15939176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG0G8NXXBNN", + "ref": "G0G8NXXBNN", + "name": "Verdun, Centre Mondial de la Paix, des Libertés et des Droits de l'Homme", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3814214, + 49.15939176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG0G8NXXBNN", + "ref": "G0G8NXXBNN", + "name": "Verdun, Centre Mondial de la Paix, des Libertés et des Droits de l'Homme", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3814214, + 49.15939176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG0G8NXXBNN", + "ref": "G0G8NXXBNN", + "name": "Verdun, Centre Mondial de la Paix, des Libertés et des Droits de l'Homme", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3814214, + 49.15939176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG0G8NXXBNN", + "ref": "G0G8NXXBNN", + "name": "Verdun, Centre Mondial de la Paix, des Libertés et des Droits de l'Homme", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5002, + -20.8906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCZWNSB", + "ref": "CZWNSB", + "name": "Sainte-Clotilde, Centre Commercial Grand Nord", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5002, + -20.8906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCZWNSB", + "ref": "CZWNSB", + "name": "Sainte-Clotilde, Centre Commercial Grand Nord", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5002, + -20.8906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCZWNSB", + "ref": "CZWNSB", + "name": "Sainte-Clotilde, Centre Commercial Grand Nord", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.870304, + 45.807891 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNWFQDD7ISJ", + "ref": "NWFQDD7ISJ", + "name": "Caluire-et-Cuire, Central Motor", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852455, + 45.502186 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQMAE8C3MB", + "ref": "YQMAE8C3MB", + "name": "Vienne, Central Autos", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852455, + 45.502186 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQMAE8C3MB", + "ref": "YQMAE8C3MB", + "name": "Vienne, Central Autos", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.772501, + 45.747001 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVMVLQ77CMB", + "ref": "VMVLQ77CMB", + "name": "Francheville, Central Motor", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.870304, + 45.807891 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNWFQDD7ISJ", + "ref": "NWFQDD7ISJ", + "name": "Caluire-et-Cuire, Central Motor", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.772501, + 45.747001 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVMVLQ77CMB", + "ref": "VMVLQ77CMB", + "name": "Francheville, Central Motor", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.772501, + 45.747001 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVMVLQ77CMB", + "ref": "VMVLQ77CMB", + "name": "Francheville, Central Motor", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852455, + 45.502186 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPUZGJABMS9", + "ref": "PUZGJABMS9", + "name": "Vienne, Central Motor", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.850701, + 45.714952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNL5HBZFIZT", + "ref": "NL5HBZFIZT", + "name": "Saint Fons, Central Motor", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.870304, + 45.807891 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNWFQDD7ISJ", + "ref": "NWFQDD7ISJ", + "name": "Caluire-et-Cuire, Central Motor", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852455, + 45.502186 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPUZGJABMS9", + "ref": "PUZGJABMS9", + "name": "Vienne, Central Motor", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852455, + 45.502186 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPUZGJABMS9", + "ref": "PUZGJABMS9", + "name": "Vienne, Central Motor", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.850701, + 45.714952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNL5HBZFIZT", + "ref": "NL5HBZFIZT", + "name": "Saint Fons, Central Motor", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5002, + -20.8906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCZWNSB", + "ref": "CZWNSB", + "name": "Sainte-Clotilde, Centre Commercial Grand Nord", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.850701, + 45.714952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNL5HBZFIZT", + "ref": "NL5HBZFIZT", + "name": "Saint Fons, Central Motor", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2764229, + 46.20207333 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPBANG1G7XO", + "ref": "PBANG1G7XO", + "name": "Ville-la-Grand, Rue de Montréal, ZAC du Mont Blanc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2764229, + 46.20207333 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPBANG1G7XO", + "ref": "PBANG1G7XO", + "name": "Ville-la-Grand, Rue de Montréal, ZAC du Mont Blanc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.627019, + 43.090005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRVBWQ4ACRN", + "ref": "RVBWQ4ACRN", + "name": "Saint-Jean-du-Falga, Centre Commercial Cap Cythi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.627019, + 43.090005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRVBWQ4ACRN", + "ref": "RVBWQ4ACRN", + "name": "Saint-Jean-du-Falga, Centre Commercial Cap Cythi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.632901, + -20.9292757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSZO153YAE", + "ref": "WSZO153YAE", + "name": "Sainte-Suzanne, Centre Commercial Grand Est P1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.632901, + -20.9292757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSZO153YAE", + "ref": "WSZO153YAE", + "name": "Sainte-Suzanne, Centre Commercial Grand Est P1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.6343988, + -20.929436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSBWTUJWGI", + "ref": "ZSBWTUJWGI", + "name": "Sainte-Suzanne, Centre Commercial Grand Est P2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.6343988, + -20.929436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSBWTUJWGI", + "ref": "ZSBWTUJWGI", + "name": "Sainte-Suzanne, Centre Commercial Grand Est P2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.6343988, + -20.929436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSBWTUJWGI", + "ref": "ZSBWTUJWGI", + "name": "Sainte-Suzanne, Centre Commercial Grand Est P2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.6343988, + -20.929436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSBWTUJWGI", + "ref": "ZSBWTUJWGI", + "name": "Sainte-Suzanne, Centre Commercial Grand Est P2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91693937, + 48.9396452 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHWK6HWHJML", + "ref": "HWK6HWHJML", + "name": "Ecquevilly, Châteauform Romainville", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91693937, + 48.9396452 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHWK6HWHJML", + "ref": "HWK6HWHJML", + "name": "Ecquevilly, Châteauform Romainville", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91693937, + 48.9396452 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHWK6HWHJML", + "ref": "HWK6HWHJML", + "name": "Ecquevilly, Châteauform Romainville", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88027287, + 49.09737014 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBEECZ8DC9I", + "ref": "BEECZ8DC9I", + "name": "Mars la Tour , Rue du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03647947, + 49.0103569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVWZBSK1GBY", + "ref": "VWZBSK1GBY", + "name": "Arnaville, Route de Novéant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03647947, + 49.0103569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVWZBSK1GBY", + "ref": "VWZBSK1GBY", + "name": "Arnaville, Route de Novéant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84535971, + 49.20795323 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV38EOKLVWI", + "ref": "V38EOKLVWI", + "name": "Petite Rosselle, Place du Marché Bas", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.904417, + 49.206235 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO3NWKI9IIG", + "ref": "O3NWKI9IIG", + "name": "Forbach, rue Jules Verne", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.88038297, + 49.18391946 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTQGFF4VUW8", + "ref": "TQGFF4VUW8", + "name": "Forbach, Parking CAFPF", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.91072536, + 49.1841614 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSK6TT9VRDT", + "ref": "SK6TT9VRDT", + "name": "Forbach, Conservatoire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.903634, + 49.187323 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLR65HDZA52", + "ref": "LR65HDZA52", + "name": "Forbach, Place Johann Fischart", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.89472258, + 49.18574624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZV8QSTYK6T", + "ref": "ZV8QSTYK6T", + "name": "Forbach, Château Barrabino", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.927614, + 49.19944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLK89RD352FJRP", + "ref": "LLK89RD352FJRP", + "name": "Stiring-Wendel, Place Sainte-Marthe", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.93608326, + 49.1688363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF5SXUNWSSF", + "ref": "F5SXUNWSSF", + "name": "Behren-lès-Forbach, Parking Mairie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92792894, + 49.20176712 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWCQS9RKYQ", + "ref": "JWCQS9RKYQ", + "name": "Stiring-Wendel, Parking Mairie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.91072536, + 49.1841614 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSK6TT9VRDT", + "ref": "SK6TT9VRDT", + "name": "Forbach, Conservatoire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.89959369, + 49.18857569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQFRZEV9L6M", + "ref": "QFRZEV9L6M", + "name": "Forbach, Gare SNCF parking ICE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94087598, + 45.96136862 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAYZCB8ZTQ9", + "ref": "AYZCB8ZTQ9", + "name": "Manzat, Parking Comcom", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94856318, + 45.96295378 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRCJTORNXPX", + "ref": "RCJTORNXPX", + "name": "Manzat, EHPAD Le Montel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09001769, + 45.97806508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSUNAEBUPJ", + "ref": "WSUNAEBUPJ", + "name": "Combronde, EHPAD Les Orchis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.80802051, + 45.92521533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNMYHDCGFT", + "ref": "JNMYHDCGFT", + "name": "Les Ancizes-Comps, Union Musicale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94856318, + 45.96295378 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRCJTORNXPX", + "ref": "RCJTORNXPX", + "name": "Manzat, EHPAD Le Montel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09001769, + 45.97806508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSUNAEBUPJ", + "ref": "WSUNAEBUPJ", + "name": "Combronde, EHPAD Les Orchis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94087598, + 45.96136862 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAYZCB8ZTQ9", + "ref": "AYZCB8ZTQ9", + "name": "Manzat, Parking Comcom", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.80802051, + 45.92521533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNMYHDCGFT", + "ref": "JNMYHDCGFT", + "name": "Les Ancizes-Comps, Union Musicale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.94082796, + 47.71970516 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRGPNLAOCAJ", + "ref": "RGPNLAOCAJ", + "name": "La Ferté-Saint-Aubin, Parking Hôtel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.782903, + 47.684238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGGAMYMHXPY", + "ref": "GGAMYMHXPY", + "name": "Ligny le Ribault, Centre bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.782903, + 47.684238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGGAMYMHXPY", + "ref": "GGAMYMHXPY", + "name": "Ligny le Ribault, Centre bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.810482, + 47.745587 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRIQRNFFR14", + "ref": "RIQRNFFR14", + "name": "Jouy le Potier, Centre bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88027287, + 49.09737014 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBEECZ8DC9I", + "ref": "BEECZ8DC9I", + "name": "Mars la Tour , Rue du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48075151, + 48.87181854 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX42UOLEHM3", + "ref": "X42UOLEHM3", + "name": "Ingwiller, rue du 11 novembre", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91693937, + 48.9396452 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHWK6HWHJML", + "ref": "HWK6HWHJML", + "name": "Ecquevilly, Châteauform Romainville", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48075151, + 48.87181854 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX42UOLEHM3", + "ref": "X42UOLEHM3", + "name": "Ingwiller, rue du 11 novembre", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCGVYIN2UP", + "ref": "JCGVYIN2UP", + "name": "Saint-Jean, Clinique de l'Union", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCGVYIN2UP", + "ref": "JCGVYIN2UP", + "name": "Saint-Jean, Clinique de l'Union", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.247558, + 43.365852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLC4ZL3O1T1", + "ref": "LC4ZL3O1T1", + "name": "Boujan-sur-Libron, Clinique le Val d'Orb", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.247558, + 43.365852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLC4ZL3O1T1", + "ref": "LC4ZL3O1T1", + "name": "Boujan-sur-Libron, Clinique le Val d'Orb", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.247558, + 43.365852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLC4ZL3O1T1", + "ref": "LC4ZL3O1T1", + "name": "Boujan-sur-Libron, Clinique le Val d'Orb", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.247558, + 43.365852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLC4ZL3O1T1", + "ref": "LC4ZL3O1T1", + "name": "Boujan-sur-Libron, Clinique le Val d'Orb", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.850875, + 43.95911 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJARZHUSIDC", + "ref": "JARZHUSIDC", + "name": "Le Pontet, rue des Hirondelles", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11892, + 43.4146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSPVJLC", + "ref": "SPVJLC", + "name": "Rieumes, Notre Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11892, + 43.4146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSPVJLC", + "ref": "SPVJLC", + "name": "Rieumes, Notre Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25396, + 48.9351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPHRNCR", + "ref": "PHRNCR", + "name": "Groupe SMA - Colombes Village", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25396, + 48.9351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPHRNCR", + "ref": "PHRNCR", + "name": "Groupe SMA - Colombes Village", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25396, + 48.9351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPHRNCR", + "ref": "PHRNCR", + "name": "Groupe SMA - Colombes Village", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25396, + 48.9351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPHRNCR", + "ref": "PHRNCR", + "name": "Groupe SMA - Colombes Village", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30351457, + 48.55595014 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAVYDUIQNKS", + "ref": "AVYDUIQNKS", + "name": "Provins, Gare avenue Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30351457, + 48.55595014 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAVYDUIQNKS", + "ref": "AVYDUIQNKS", + "name": "Provins, Gare avenue Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.27947071, + 48.81953672 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL3PBLADVLX", + "ref": "L3PBLADVLX", + "name": "Graufthal, Rue principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48433048, + 48.82510663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB6KEKD5OQZ", + "ref": "B6KEKD5OQZ", + "name": "Bouxwiller, Parking de l'orangerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48433048, + 48.82510663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB6KEKD5OQZ", + "ref": "B6KEKD5OQZ", + "name": "Bouxwiller, Parking de l'orangerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.27947071, + 48.81953672 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL3PBLADVLX", + "ref": "L3PBLADVLX", + "name": "Graufthal, Rue principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48219259, + 48.9214597 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJYI8NQIRWF", + "ref": "JYI8NQIRWF", + "name": "Lichtenberg, 4 rue de l'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48219259, + 48.9214597 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJYI8NQIRWF", + "ref": "JYI8NQIRWF", + "name": "Lichtenberg, 4 rue de l'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48075151, + 48.87181854 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX42UOLEHM3", + "ref": "X42UOLEHM3", + "name": "Ingwiller, rue du 11 novembre", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48075151, + 48.87181854 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX42UOLEHM3", + "ref": "X42UOLEHM3", + "name": "Ingwiller, rue du 11 novembre", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31883777, + 48.85661682 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTEJPQMNWKD", + "ref": "TEJPQMNWKD", + "name": "La Petite-Pierre, Rue du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31883777, + 48.85661682 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTEJPQMNWKD", + "ref": "TEJPQMNWKD", + "name": "La Petite-Pierre, Rue du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.016118, + 47.767776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENDRSP8NDE", + "ref": "ENDRSP8NDE", + "name": "Marcilly-en-Villette, Gymnase", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.016118, + 47.767776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENDRSP8NDE", + "ref": "ENDRSP8NDE", + "name": "Marcilly-en-Villette, Gymnase", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.874431, + 47.778742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZTVN6MH7ZS", + "ref": "ZTVN6MH7ZS", + "name": "Ardon, Place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.874431, + 47.778742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZTVN6MH7ZS", + "ref": "ZTVN6MH7ZS", + "name": "Ardon, Place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.240523, + 48.800273 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEK29BLZG2U", + "ref": "EK29BLZG2U", + "name": "Commune de Berling, 2 Rue Principale", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.240523, + 48.800273 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEK29BLZG2U", + "ref": "EK29BLZG2U", + "name": "Commune de Berling, 2 Rue Principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.424899, + 49.050882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHQ8XLQM1082U", + "ref": "LLHQ8XLQM1082U", + "name": "Bitche, Rue Général de Gaulle", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.424899, + 49.050882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHQ8XLQM1082U", + "ref": "LLHQ8XLQM1082U", + "name": "Bitche, Rue Général de Gaulle", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.424899, + 49.050882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHQ8XLQM1082U", + "ref": "LLHQ8XLQM1082U", + "name": "Bitche, Rue Général de Gaulle", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.424899, + 49.050882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHQ8XLQM1082U", + "ref": "LLHQ8XLQM1082U", + "name": "Bitche, Rue Général de Gaulle", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.425641, + 49.050688 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHQ9B01L2OYT4", + "ref": "LLHQ9B01L2OYT4", + "name": "Bitche, Rue Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.424899, + 49.050882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHQ8XLQM1082U", + "ref": "LLHQ8XLQM1082U", + "name": "Bitche, Rue Général de Gaulle", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.424899, + 49.050882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHQ8XLQM1082U", + "ref": "LLHQ8XLQM1082U", + "name": "Bitche, Rue Général de Gaulle", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.424899, + 49.050882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHQ8XLQM1082U", + "ref": "LLHQ8XLQM1082U", + "name": "Bitche, Rue Général de Gaulle", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.424899, + 49.050882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHQ8XLQM1082U", + "ref": "LLHQ8XLQM1082U", + "name": "Bitche, Rue Général de Gaulle", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.424899, + 49.050882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHQ8XLQM1082U", + "ref": "LLHQ8XLQM1082U", + "name": "Bitche, Rue Général de Gaulle", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.424899, + 49.050882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHQ8XLQM1082U", + "ref": "LLHQ8XLQM1082U", + "name": "Bitche, Rue Général de Gaulle", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.425641, + 49.050688 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHQ9B01L2OYT4", + "ref": "LLHQ9B01L2OYT4", + "name": "Bitche, Rue Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.123598575, + 48.62476348 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIGWTYIK1QR", + "ref": "IGWTYIK1QR", + "name": "Fontenay-lès-Briss, Rue du Mont Louvet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.123598575, + 48.62476348 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIGWTYIK1QR", + "ref": "IGWTYIK1QR", + "name": "Fontenay-lès-Briss, Rue du Mont Louvet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.400968, + 49.044588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV43HVYP7PY", + "ref": "V43HVYP7PY", + "name": "Château-Thierry, place des Etats-Unis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.403476, + 49.042103 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZXBMMXPZY1", + "ref": "ZXBMMXPZY1", + "name": "Château-Thierry, place du Maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39804093, + 49.04398311 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJO7VVPBFQW", + "ref": "JO7VVPBFQW", + "name": "Château-Thierry, place Jean-Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.403476, + 49.042103 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZXBMMXPZY1", + "ref": "ZXBMMXPZY1", + "name": "Château-Thierry, place du Maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.400968, + 49.044588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV43HVYP7PY", + "ref": "V43HVYP7PY", + "name": "Château-Thierry, place des Etats-Unis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39804093, + 49.04398311 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJO7VVPBFQW", + "ref": "JO7VVPBFQW", + "name": "Château-Thierry, place Jean-Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.21714864, + 50.56614475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGLDMBPSEF", + "ref": "AGLDMBPSEF", + "name": "Commune de Cysoing, Place de la République", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.21714864, + 50.56614475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGLDMBPSEF", + "ref": "AGLDMBPSEF", + "name": "Commune de Cysoing, Place de la République", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.21714864, + 50.56614475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGLDMBPSEF", + "ref": "AGLDMBPSEF", + "name": "Commune de Cysoing, Place de la République", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44218628, + 44.92366478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFKCYGTVQZZ", + "ref": "FKCYGTVQZZ", + "name": "Aurillac, Parking Labro", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44218628, + 44.92366478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFKCYGTVQZZ", + "ref": "FKCYGTVQZZ", + "name": "Aurillac, Parking Labro", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44218628, + 44.92366478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFKCYGTVQZZ", + "ref": "FKCYGTVQZZ", + "name": "Aurillac, Parking Labro", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549566, + 47.850251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIYF14UR2QU1N", + "ref": "LLIYF14UR2QU1N", + "name": "Monéteau, Aire de Covoiturage A6 Nord", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.022384, + 47.764535 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZXZOFYGKVX", + "ref": "ZXZOFYGKVX", + "name": "Marcilly-en-Villette, Place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.94082796, + 47.71970516 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRGPNLAOCAJ", + "ref": "RGPNLAOCAJ", + "name": "La Ferté-Saint-Aubin, Parking Hôtel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.022384, + 47.764535 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZXZOFYGKVX", + "ref": "ZXZOFYGKVX", + "name": "Marcilly-en-Villette, Place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.810482, + 47.745587 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRIQRNFFR14", + "ref": "RIQRNFFR14", + "name": "Jouy le Potier, Centre bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549566, + 47.850251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIYF14UR2QU1N", + "ref": "LLIYF14UR2QU1N", + "name": "Monéteau, Aire de Covoiturage A6 Nord", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549566, + 47.850251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIYF14UR2QU1N", + "ref": "LLIYF14UR2QU1N", + "name": "Monéteau, Aire de Covoiturage A6 Nord", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549566, + 47.850251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIYF14UR2QU1N", + "ref": "LLIYF14UR2QU1N", + "name": "Monéteau, Aire de Covoiturage A6 Nord", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549566, + 47.850251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIYF14UR2QU1N", + "ref": "LLIYF14UR2QU1N", + "name": "Monéteau, Aire de Covoiturage A6 Nord", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549566, + 47.850251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIYF14UR2QU1N", + "ref": "LLIYF14UR2QU1N", + "name": "Monéteau, Aire de Covoiturage A6 Nord", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549566, + 47.850251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIYF14UR2QU1N", + "ref": "LLIYF14UR2QU1N", + "name": "Monéteau, Aire de Covoiturage A6 Nord", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549566, + 47.850251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIYF14UR2QU1N", + "ref": "LLIYF14UR2QU1N", + "name": "Monéteau, Aire de Covoiturage A6 Nord", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549566, + 47.850251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIYF14UR2QU1N", + "ref": "LLIYF14UR2QU1N", + "name": "Monéteau, Aire de Covoiturage A6 Nord", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44218628, + 44.92366478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFKCYGTVQZZ", + "ref": "FKCYGTVQZZ", + "name": "Aurillac, Parking Labro", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549566, + 47.850251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIYF14UR2QU1N", + "ref": "LLIYF14UR2QU1N", + "name": "Monéteau, Aire de Covoiturage A6 Nord", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549566, + 47.850251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIYF14UR2QU1N", + "ref": "LLIYF14UR2QU1N", + "name": "Monéteau, Aire de Covoiturage A6 Nord", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549566, + 47.850251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIYF14UR2QU1N", + "ref": "LLIYF14UR2QU1N", + "name": "Monéteau, Aire de Covoiturage A6 Nord", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549566, + 47.850251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIYF14UR2QU1N", + "ref": "LLIYF14UR2QU1N", + "name": "Monéteau, Aire de Covoiturage A6 Nord", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549566, + 47.850251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIYF14UR2QU1N", + "ref": "LLIYF14UR2QU1N", + "name": "Monéteau, Aire de Covoiturage A6 Nord", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08853228, + 48.31828217 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT63G4SSANF", + "ref": "T63G4SSANF", + "name": "Commune Le Mérévillois, Place de l'Hôtel de Ville", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.086814459, + 48.31808191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT63G4SSANF", + "ref": "T63G4SSANF", + "name": "Commune Le Mérévillois, Place de l'Hôtel de Ville", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08853228, + 48.31828217 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT63G4SSANF", + "ref": "T63G4SSANF", + "name": "Commune Le Mérévillois, Place de l'Hôtel de Ville", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.086814459, + 48.31808191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT63G4SSANF", + "ref": "T63G4SSANF", + "name": "Commune Le Mérévillois, Place de l'Hôtel de Ville", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5928524, + 50.352879 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRGSVS1AL8N", + "ref": "RGSVS1AL8N", + "name": "Commune d'Aubigny-en-Artois, Place de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5928524, + 50.352879 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRGSVS1AL8N", + "ref": "RGSVS1AL8N", + "name": "Commune d'Aubigny-en-Artois, Place de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCGVYIN2UP", + "ref": "JCGVYIN2UP", + "name": "Saint-Jean, Clinique de l'Union", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCGVYIN2UP", + "ref": "JCGVYIN2UP", + "name": "Saint-Jean, Clinique de l'Union", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCGVYIN2UP", + "ref": "JCGVYIN2UP", + "name": "Saint-Jean, Clinique de l'Union", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873812, + 47.021884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZSHZFIZDN", + "ref": "KZSHZFIZDN", + "name": "Vignoles, Zone Artisanale les Bruottees", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.190163, + 49.066268 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKVIRJDVIRT", + "ref": "KVIRJDVIRT", + "name": "Châteauform de Mery, Avenue Marcel Perrin", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.190163, + 49.066268 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKVIRJDVIRT", + "ref": "KVIRJDVIRT", + "name": "Châteauform de Mery, Avenue Marcel Perrin", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.190163, + 49.066268 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKVIRJDVIRT", + "ref": "KVIRJDVIRT", + "name": "Châteauform de Mery, Avenue Marcel Perrin", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22186, + 47.8647 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXKURJS", + "ref": "XKURJS", + "name": "Châteauneuf-sur-Loire, Rue Saint-Martial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22186, + 47.8647 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXKURJS", + "ref": "XKURJS", + "name": "Châteauneuf-sur-Loire, Rue Saint-Martial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.20602047, + 47.39066148 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYBDSF1GAWY", + "ref": "YBDSF1GAWY", + "name": "Gizeux, Rue du Château", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.20602047, + 47.39066148 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYBDSF1GAWY", + "ref": "YBDSF1GAWY", + "name": "Gizeux, Rue du Château", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4017, + 48.27 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLPHWS", + "ref": "XLPHWS", + "name": "Châtenois, Rue de Lorraine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4017, + 48.27 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLPHWS", + "ref": "XLPHWS", + "name": "Châtenois, Rue de Lorraine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4014, + 48.27 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLKI9GCZU29A8F", + "ref": "LLKI9GCZU29A8F", + "name": "Châtenois, 44 Vieux Chemin de Sélestat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4014, + 48.27 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLKI9GCZU29A8F", + "ref": "LLKI9GCZU29A8F", + "name": "Châtenois, 44 Vieux Chemin de Sélestat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.41787466, + 48.25635664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMDKATVG2EE", + "ref": "MDKATVG2EE", + "name": "Kintzheim, Hôtel Au Parc des Cigognes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.41787466, + 48.25635664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMDKATVG2EE", + "ref": "MDKATVG2EE", + "name": "Kintzheim, Hôtel Au Parc des Cigognes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.41847685, + 48.25629235 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCT0ATMJPPT", + "ref": "CT0ATMJPPT", + "name": "Kintzheim, Hôtel Restaurant Willmann", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4192784, + 48.25690735 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIW9RNHBFD", + "ref": "YIW9RNHBFD", + "name": "Kintzheim, Hôtel Cigoland", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.41847685, + 48.25629235 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCT0ATMJPPT", + "ref": "CT0ATMJPPT", + "name": "Kintzheim, Hôtel Restaurant Willmann", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4192784, + 48.25690735 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIW9RNHBFD", + "ref": "YIW9RNHBFD", + "name": "Kintzheim, Hôtel Cigoland", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.41847685, + 48.25629235 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCT0ATMJPPT", + "ref": "CT0ATMJPPT", + "name": "Kintzheim, Hôtel Restaurant Willmann", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.41847685, + 48.25629235 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCT0ATMJPPT", + "ref": "CT0ATMJPPT", + "name": "Kintzheim, Hôtel Restaurant Willmann", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.31936, + 4.903192 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL5AB9NSGAH", + "ref": "L5AB9NSGAH", + "name": "Cayenne, Citeos", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.31936, + 4.903192 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL5AB9NSGAH", + "ref": "L5AB9NSGAH", + "name": "Cayenne, Citeos", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.475221, + -20.896466 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POSU51U9FJZ", + "ref": "OSU51U9FJZ", + "name": "Saint-Denis , Rue Stanislas Gimart", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.475221, + -20.896466 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POSU51U9FJZ", + "ref": "OSU51U9FJZ", + "name": "Saint-Denis , Rue Stanislas Gimart", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873812, + 47.021884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZSHZFIZDN", + "ref": "KZSHZFIZDN", + "name": "Vignoles, Zone Artisanale les Bruottees", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873812, + 47.021884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZSHZFIZDN", + "ref": "KZSHZFIZDN", + "name": "Vignoles, Zone Artisanale les Bruottees", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.190163, + 49.066268 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKVIRJDVIRT", + "ref": "KVIRJDVIRT", + "name": "Châteauform de Mery, Avenue Marcel Perrin", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.190163, + 49.066268 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKVIRJDVIRT", + "ref": "KVIRJDVIRT", + "name": "Châteauform de Mery, Avenue Marcel Perrin", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.190163, + 49.066268 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKVIRJDVIRT", + "ref": "KVIRJDVIRT", + "name": "Châteauform de Mery, Avenue Marcel Perrin", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22362082, + 49.18942764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI09GDOR3YZ", + "ref": "I09GDOR3YZ", + "name": "Belle-Eglise, Châteauform Saint Just", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91693937, + 48.9396452 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHWK6HWHJML", + "ref": "HWK6HWHJML", + "name": "Ecquevilly, Châteauform Romainville", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91693937, + 48.9396452 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHWK6HWHJML", + "ref": "HWK6HWHJML", + "name": "Ecquevilly, Châteauform Romainville", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91693937, + 48.9396452 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHWK6HWHJML", + "ref": "HWK6HWHJML", + "name": "Ecquevilly, Châteauform Romainville", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22362082, + 49.18942764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI09GDOR3YZ", + "ref": "I09GDOR3YZ", + "name": "Belle-Eglise, Châteauform Saint Just", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22362082, + 49.18942764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI09GDOR3YZ", + "ref": "I09GDOR3YZ", + "name": "Belle-Eglise, Châteauform Saint Just", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22362082, + 49.18942764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI09GDOR3YZ", + "ref": "I09GDOR3YZ", + "name": "Belle-Eglise, Châteauform Saint Just", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22362082, + 49.18942764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI09GDOR3YZ", + "ref": "I09GDOR3YZ", + "name": "Belle-Eglise, Châteauform Saint Just", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22362082, + 49.18942764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI09GDOR3YZ", + "ref": "I09GDOR3YZ", + "name": "Belle-Eglise, Châteauform Saint Just", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22362082, + 49.18942764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI09GDOR3YZ", + "ref": "I09GDOR3YZ", + "name": "Belle-Eglise, Châteauform Saint Just", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22362082, + 49.18942764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI09GDOR3YZ", + "ref": "I09GDOR3YZ", + "name": "Belle-Eglise, Châteauform Saint Just", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22362082, + 49.18942764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI09GDOR3YZ", + "ref": "I09GDOR3YZ", + "name": "Belle-Eglise, Châteauform Saint Just", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22362082, + 49.18942764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI09GDOR3YZ", + "ref": "I09GDOR3YZ", + "name": "Belle-Eglise, Châteauform Saint Just", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.83972872, + 48.68005243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKOB2XOCXWB", + "ref": "KOB2XOCXWB", + "name": "Fontenay-Tresigny, Châteauform des Prés d'Écoublay", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.925667, + 48.858492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKLBKXT19XL", + "ref": "KLBKXT19XL", + "name": "Châteauform de Crécy la Chapelle, Place Edouard Moustier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.925667, + 48.858492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKLBKXT19XL", + "ref": "KLBKXT19XL", + "name": "Châteauform de Crécy la Chapelle, Place Edouard Moustier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.925667, + 48.858492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKLBKXT19XL", + "ref": "KLBKXT19XL", + "name": "Châteauform de Crécy la Chapelle, Place Edouard Moustier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.925667, + 48.858492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKLBKXT19XL", + "ref": "KLBKXT19XL", + "name": "Châteauform de Crécy la Chapelle, Place Edouard Moustier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43988136, + 49.37899343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIPYVK0DJ6C", + "ref": "IPYVK0DJ6C", + "name": "Châteauform de Rosay, Route de Lyons", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43988136, + 49.37899343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIPYVK0DJ6C", + "ref": "IPYVK0DJ6C", + "name": "Châteauform de Rosay, Route de Lyons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.83972872, + 48.68005243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKOB2XOCXWB", + "ref": "KOB2XOCXWB", + "name": "Fontenay-Tresigny, Châteauform des Prés d'Écoublay", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.83972872, + 48.68005243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKOB2XOCXWB", + "ref": "KOB2XOCXWB", + "name": "Fontenay-Tresigny, Châteauform des Prés d'Écoublay", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.83972872, + 48.68005243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKOB2XOCXWB", + "ref": "KOB2XOCXWB", + "name": "Fontenay-Tresigny, Châteauform des Prés d'Écoublay", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.83972872, + 48.68005243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKOB2XOCXWB", + "ref": "KOB2XOCXWB", + "name": "Fontenay-Tresigny, Châteauform des Prés d'Écoublay", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.83972872, + 48.68005243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKOB2XOCXWB", + "ref": "KOB2XOCXWB", + "name": "Fontenay-Tresigny, Châteauform des Prés d'Écoublay", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873812, + 47.021884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZSHZFIZDN", + "ref": "KZSHZFIZDN", + "name": "Vignoles, Zone Artisanale les Bruottees", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873812, + 47.021884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZSHZFIZDN", + "ref": "KZSHZFIZDN", + "name": "Vignoles, Zone Artisanale les Bruottees", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCGVYIN2UP", + "ref": "JCGVYIN2UP", + "name": "Saint-Jean, Clinique de l'Union", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873812, + 47.021884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZSHZFIZDN", + "ref": "KZSHZFIZDN", + "name": "Vignoles, Zone Artisanale les Bruottees", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.64527, + 49.9055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PUXWQPQ", + "ref": "UXWQPQ", + "name": "Guise, ZAC Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.889706, + 43.985588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQORNYNAFT", + "ref": "BQORNYNAFT", + "name": "Sorgues, Clinique ELSAN-Fontvert", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.889706, + 43.985588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQORNYNAFT", + "ref": "BQORNYNAFT", + "name": "Sorgues, Clinique ELSAN-Fontvert", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.889706, + 43.985588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQORNYNAFT", + "ref": "BQORNYNAFT", + "name": "Sorgues, Clinique ELSAN-Fontvert", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.79375, + 48.5713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYUCPGH", + "ref": "YUCPGH", + "name": "Strasbourg, Clinique Rhéna", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.79375, + 48.5713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYUCPGH", + "ref": "YUCPGH", + "name": "Strasbourg, Clinique Rhéna", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.79375, + 48.5713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYUCPGH", + "ref": "YUCPGH", + "name": "Strasbourg, Clinique Rhéna", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.79375, + 48.5713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYUCPGH", + "ref": "YUCPGH", + "name": "Strasbourg, Clinique Rhéna", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.79375, + 48.5713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYUCPGH", + "ref": "YUCPGH", + "name": "Strasbourg, Clinique Rhéna", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUNQ35Y4FOV", + "ref": "UNQ35Y4FOV", + "name": "Angers, 9 Rue de l'Hirondelle", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUNQ35Y4FOV", + "ref": "UNQ35Y4FOV", + "name": "Angers, 9 Rue de l'Hirondelle", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUNQ35Y4FOV", + "ref": "UNQ35Y4FOV", + "name": "Angers, 9 Rue de l'Hirondelle", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUNQ35Y4FOV", + "ref": "UNQ35Y4FOV", + "name": "Angers, 9 Rue de l'Hirondelle", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUNQ35Y4FOV", + "ref": "UNQ35Y4FOV", + "name": "Angers, 9 Rue de l'Hirondelle", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUNQ35Y4FOV", + "ref": "UNQ35Y4FOV", + "name": "Angers, 9 Rue de l'Hirondelle", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUNQ35Y4FOV", + "ref": "UNQ35Y4FOV", + "name": "Angers, 9 Rue de l'Hirondelle", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUNQ35Y4FOV", + "ref": "UNQ35Y4FOV", + "name": "Angers, 9 Rue de l'Hirondelle", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUNQ35Y4FOV", + "ref": "UNQ35Y4FOV", + "name": "Angers, 9 Rue de l'Hirondelle", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUNQ35Y4FOV", + "ref": "UNQ35Y4FOV", + "name": "Angers, 9 Rue de l'Hirondelle", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCGVYIN2UP", + "ref": "JCGVYIN2UP", + "name": "Saint-Jean, Clinique de l'Union", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCGVYIN2UP", + "ref": "JCGVYIN2UP", + "name": "Saint-Jean, Clinique de l'Union", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCGVYIN2UP", + "ref": "JCGVYIN2UP", + "name": "Saint-Jean, Clinique de l'Union", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCGVYIN2UP", + "ref": "JCGVYIN2UP", + "name": "Saint-Jean, Clinique de l'Union", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCGVYIN2UP", + "ref": "JCGVYIN2UP", + "name": "Saint-Jean, Clinique de l'Union", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCGVYIN2UP", + "ref": "JCGVYIN2UP", + "name": "Saint-Jean, Clinique de l'Union", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.889706, + 43.985588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQORNYNAFT", + "ref": "BQORNYNAFT", + "name": "Sorgues, Clinique ELSAN-Fontvert", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.889706, + 43.985588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQORNYNAFT", + "ref": "BQORNYNAFT", + "name": "Sorgues, Clinique ELSAN-Fontvert", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.889706, + 43.985588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQORNYNAFT", + "ref": "BQORNYNAFT", + "name": "Sorgues, Clinique ELSAN-Fontvert", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80697, + 45.7829 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCITYSAONE", + "ref": "citysaone", + "name": "City Saone, Rhin et Danube", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43663421, + 48.25024778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMQK6YW1HW", + "ref": "HMQK6YW1HW", + "name": "Sélestat , Zone Commerciale Sud", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43663421, + 48.25024778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMQK6YW1HW", + "ref": "HMQK6YW1HW", + "name": "Sélestat , Zone Commerciale Sud", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43663421, + 48.25024778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMQK6YW1HW", + "ref": "HMQK6YW1HW", + "name": "Sélestat , Zone Commerciale Sud", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43663421, + 48.25024778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMQK6YW1HW", + "ref": "HMQK6YW1HW", + "name": "Sélestat , Zone Commerciale Sud", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43663421, + 48.25024778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMQK6YW1HW", + "ref": "HMQK6YW1HW", + "name": "Sélestat , Zone Commerciale Sud", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43663421, + 48.25024778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMQK6YW1HW", + "ref": "HMQK6YW1HW", + "name": "Sélestat , Zone Commerciale Sud", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43663421, + 48.25024778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMQK6YW1HW", + "ref": "HMQK6YW1HW", + "name": "Sélestat , Zone Commerciale Sud", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43663421, + 48.25024778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMQK6YW1HW", + "ref": "HMQK6YW1HW", + "name": "Sélestat , Zone Commerciale Sud", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80697, + 45.7829 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCITYSAONE", + "ref": "citysaone", + "name": "City Saone, Rhin et Danube", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80697, + 45.7829 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCITYSAONE", + "ref": "citysaone", + "name": "City Saone, Rhin et Danube", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80697, + 45.7829 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCITYSAONE", + "ref": "citysaone", + "name": "City Saone, Rhin et Danube", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83956101, + 46.31490206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM5PDKFW3KB", + "ref": "M5PDKFW3KB", + "name": "Mâcon, 484 Avenue Maréchal de Lattre de Tassigny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.889706, + 43.985588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQORNYNAFT", + "ref": "BQORNYNAFT", + "name": "Sorgues, Clinique ELSAN-Fontvert", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83956101, + 46.31490206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM5PDKFW3KB", + "ref": "M5PDKFW3KB", + "name": "Mâcon, 484 Avenue Maréchal de Lattre de Tassigny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83956101, + 46.31490206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM5PDKFW3KB", + "ref": "M5PDKFW3KB", + "name": "Mâcon, 484 Avenue Maréchal de Lattre de Tassigny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8014065, + 47.81158905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMXD9XM3LXS", + "ref": "MXD9XM3LXS", + "name": "Chablis, Impasse du Petit Pontigny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8014065, + 47.81158905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMXD9XM3LXS", + "ref": "MXD9XM3LXS", + "name": "Chablis, Impasse du Petit Pontigny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8014065, + 47.81158905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMXD9XM3LXS", + "ref": "MXD9XM3LXS", + "name": "Chablis, Impasse du Petit Pontigny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8014065, + 47.81158905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMXD9XM3LXS", + "ref": "MXD9XM3LXS", + "name": "Chablis, Impasse du Petit Pontigny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83956101, + 46.31490206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM5PDKFW3KB", + "ref": "M5PDKFW3KB", + "name": "Mâcon, 484 Avenue Maréchal de Lattre de Tassigny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.29364943, + 47.74958132 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWGJ3GU39PIK", + "ref": "LLJWGJ3GU39PIK", + "name": "Mulhouse, Cité du train", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.29364943, + 47.74958132 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWGJ3GU39PIK", + "ref": "LLJWGJ3GU39PIK", + "name": "Mulhouse, Cité du train", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.52577599, + 43.8428697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE9D0SEHF8O", + "ref": "E9D0SEHF8O", + "name": "Bondigoux, Château de Vernhes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.52577599, + 43.8428697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE9D0SEHF8O", + "ref": "E9D0SEHF8O", + "name": "Bondigoux, Château de Vernhes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32638, + 49.3943 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PAYHWSZ", + "ref": "AYHWSZ", + "name": "Soissons, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.09837296, + 47.45462025 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS141EGXVGU", + "ref": "S141EGXVGU", + "name": "Mosnes, Rue des Thomeaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32848, + 49.3846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PVCYCFG", + "ref": "VCYCFG", + "name": "Soissons, Bibliothèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08396356, + 50.38126533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKYYFI6NIAL", + "ref": "KYYFI6NIAL", + "name": "E. Leclerc, Douai", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGQWX3AC3GR", + "ref": "GQWX3AC3GR", + "name": "E. Leclerc, Douarnenez", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGQWX3AC3GR", + "ref": "GQWX3AC3GR", + "name": "E. Leclerc, Douarnenez", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGQWX3AC3GR", + "ref": "GQWX3AC3GR", + "name": "E. Leclerc, Douarnenez", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGQWX3AC3GR", + "ref": "GQWX3AC3GR", + "name": "E. Leclerc, Douarnenez", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGQWX3AC3GR", + "ref": "GQWX3AC3GR", + "name": "E. Leclerc, Douarnenez", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGQWX3AC3GR", + "ref": "GQWX3AC3GR", + "name": "E. Leclerc, Douarnenez", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGQWX3AC3GR", + "ref": "GQWX3AC3GR", + "name": "E. Leclerc, Douarnenez", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGQWX3AC3GR", + "ref": "GQWX3AC3GR", + "name": "E. Leclerc, Douarnenez", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGQWX3AC3GR", + "ref": "GQWX3AC3GR", + "name": "E. Leclerc, Douarnenez", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGQWX3AC3GR", + "ref": "GQWX3AC3GR", + "name": "E. Leclerc, Douarnenez", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGQWX3AC3GR", + "ref": "GQWX3AC3GR", + "name": "E. Leclerc, Douarnenez", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGQWX3AC3GR", + "ref": "GQWX3AC3GR", + "name": "E. Leclerc, Douarnenez", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGQWX3AC3GR", + "ref": "GQWX3AC3GR", + "name": "E. Leclerc, Douarnenez", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34782085, + 48.73735181 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POMWSI0JG0A", + "ref": "OMWSI0JG0A", + "name": "E. Leclerc, Dreux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34782085, + 48.73735181 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POMWSI0JG0A", + "ref": "OMWSI0JG0A", + "name": "E. Leclerc, Dreux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34782085, + 48.73735181 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POMWSI0JG0A", + "ref": "OMWSI0JG0A", + "name": "E. Leclerc, Dreux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34782085, + 48.73735181 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POMWSI0JG0A", + "ref": "OMWSI0JG0A", + "name": "E. Leclerc, Dreux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34782085, + 48.73735181 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POMWSI0JG0A", + "ref": "OMWSI0JG0A", + "name": "E. Leclerc, Dreux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34782085, + 48.73735181 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POMWSI0JG0A", + "ref": "OMWSI0JG0A", + "name": "E. Leclerc, Dreux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGQWX3AC3GR", + "ref": "GQWX3AC3GR", + "name": "E. Leclerc, Douarnenez", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08396356, + 50.38126533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKYYFI6NIAL", + "ref": "KYYFI6NIAL", + "name": "E. Leclerc, Douai", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39760523, + 50.03117065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZAJRFADFMD", + "ref": "ZAJRFADFMD", + "name": "E. Leclerc, Etalondes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08396356, + 50.38126533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKYYFI6NIAL", + "ref": "KYYFI6NIAL", + "name": "E. Leclerc, Douai", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69562343, + 49.18870157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLHO03SXIPB", + "ref": "LHO03SXIPB", + "name": "E. Leclerc, Creutzwald", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69562343, + 49.18870157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLHO03SXIPB", + "ref": "LHO03SXIPB", + "name": "E. Leclerc, Creutzwald", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69562343, + 49.18870157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLHO03SXIPB", + "ref": "LHO03SXIPB", + "name": "E. Leclerc, Creutzwald", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69562343, + 49.18870157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLHO03SXIPB", + "ref": "LHO03SXIPB", + "name": "E. Leclerc, Creutzwald", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69562343, + 49.18870157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLHO03SXIPB", + "ref": "LHO03SXIPB", + "name": "E. Leclerc, Creutzwald", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69562343, + 49.18870157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLHO03SXIPB", + "ref": "LHO03SXIPB", + "name": "E. Leclerc, Creutzwald", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69562343, + 49.18870157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLHO03SXIPB", + "ref": "LHO03SXIPB", + "name": "E. Leclerc, Creutzwald", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69562343, + 49.18870157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLHO03SXIPB", + "ref": "LHO03SXIPB", + "name": "E. Leclerc, Creutzwald", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08138708, + 49.60159176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGJJYJCBOV", + "ref": "PGJJYJCBOV", + "name": "E. Leclerc, Crèvecoeur-le-Grand", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08138708, + 49.60159176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGJJYJCBOV", + "ref": "PGJJYJCBOV", + "name": "E. Leclerc, Crèvecoeur-le-Grand", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08138708, + 49.60159176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGJJYJCBOV", + "ref": "PGJJYJCBOV", + "name": "E. Leclerc, Crèvecoeur-le-Grand", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08138708, + 49.60159176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGJJYJCBOV", + "ref": "PGJJYJCBOV", + "name": "E. Leclerc, Crèvecoeur-le-Grand", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08138708, + 49.60159176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGJJYJCBOV", + "ref": "PGJJYJCBOV", + "name": "E. Leclerc, Crèvecoeur-le-Grand", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08138708, + 49.60159176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGJJYJCBOV", + "ref": "PGJJYJCBOV", + "name": "E. Leclerc, Crèvecoeur-le-Grand", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96230471, + 49.06489579 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFT7Q4WNI3A", + "ref": "FT7Q4WNI3A", + "name": "E. Leclerc, Dizy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96230471, + 49.06489579 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFT7Q4WNI3A", + "ref": "FT7Q4WNI3A", + "name": "E. Leclerc, Dizy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96230471, + 49.06489579 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFT7Q4WNI3A", + "ref": "FT7Q4WNI3A", + "name": "E. Leclerc, Dizy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96230471, + 49.06489579 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFT7Q4WNI3A", + "ref": "FT7Q4WNI3A", + "name": "E. Leclerc, Dizy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08396356, + 50.38126533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKYYFI6NIAL", + "ref": "KYYFI6NIAL", + "name": "E. Leclerc, Douai", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39760523, + 50.03117065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZAJRFADFMD", + "ref": "ZAJRFADFMD", + "name": "E. Leclerc, Etalondes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39760523, + 50.03117065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZAJRFADFMD", + "ref": "ZAJRFADFMD", + "name": "E. Leclerc, Etalondes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69562343, + 49.18870157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLHO03SXIPB", + "ref": "LHO03SXIPB", + "name": "E. Leclerc, Creutzwald", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8766102, + 46.17930297 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQH4GD1TUH4", + "ref": "QH4GD1TUH4", + "name": "E. Leclerc, Guéret Brico", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87636127, + 46.17864182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMKOVST34HX", + "ref": "MKOVST34HX", + "name": "E. Leclerc, Guéret Hyper", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17097903, + 49.21509989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBFG8OBIJR", + "ref": "LBFG8OBIJR", + "name": "E. Leclerc, Hauconcourt", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17097903, + 49.21509989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBFG8OBIJR", + "ref": "LBFG8OBIJR", + "name": "E. Leclerc, Hauconcourt", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17097903, + 49.21509989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBFG8OBIJR", + "ref": "LBFG8OBIJR", + "name": "E. Leclerc, Hauconcourt", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17097903, + 49.21509989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBFG8OBIJR", + "ref": "LBFG8OBIJR", + "name": "E. Leclerc, Hauconcourt", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17097903, + 49.21509989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBFG8OBIJR", + "ref": "LBFG8OBIJR", + "name": "E. Leclerc, Hauconcourt", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17097903, + 49.21509989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBFG8OBIJR", + "ref": "LBFG8OBIJR", + "name": "E. Leclerc, Hauconcourt", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17097903, + 49.21509989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBFG8OBIJR", + "ref": "LBFG8OBIJR", + "name": "E. Leclerc, Hauconcourt", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17097903, + 49.21509989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBFG8OBIJR", + "ref": "LBFG8OBIJR", + "name": "E. Leclerc, Hauconcourt", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17097903, + 49.21509989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBFG8OBIJR", + "ref": "LBFG8OBIJR", + "name": "E. Leclerc, Hauconcourt", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17097903, + 49.21509989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBFG8OBIJR", + "ref": "LBFG8OBIJR", + "name": "E. Leclerc, Hauconcourt", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17097903, + 49.21509989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBFG8OBIJR", + "ref": "LBFG8OBIJR", + "name": "E. Leclerc, Hauconcourt", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17097903, + 49.21509989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBFG8OBIJR", + "ref": "LBFG8OBIJR", + "name": "E. Leclerc, Hauconcourt", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDGGB1NVRK", + "ref": "HDGGB1NVRK", + "name": "E. Leclerc, Issoudun", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDGGB1NVRK", + "ref": "HDGGB1NVRK", + "name": "E. Leclerc, Issoudun", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDGGB1NVRK", + "ref": "HDGGB1NVRK", + "name": "E. Leclerc, Issoudun", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDGGB1NVRK", + "ref": "HDGGB1NVRK", + "name": "E. Leclerc, Issoudun", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDGGB1NVRK", + "ref": "HDGGB1NVRK", + "name": "E. Leclerc, Issoudun", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDGGB1NVRK", + "ref": "HDGGB1NVRK", + "name": "E. Leclerc, Issoudun", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87636127, + 46.17864182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMKOVST34HX", + "ref": "MKOVST34HX", + "name": "E. Leclerc, Guéret Hyper", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8766102, + 46.17930297 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQH4GD1TUH4", + "ref": "QH4GD1TUH4", + "name": "E. Leclerc, Guéret Brico", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39760523, + 50.03117065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZAJRFADFMD", + "ref": "ZAJRFADFMD", + "name": "E. Leclerc, Etalondes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87636127, + 46.17864182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMKOVST34HX", + "ref": "MKOVST34HX", + "name": "E. Leclerc, Guéret Hyper", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVGLWGT1XND", + "ref": "VGLWGT1XND", + "name": "E. Leclerc, Firminy", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVGLWGT1XND", + "ref": "VGLWGT1XND", + "name": "E. Leclerc, Firminy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVGLWGT1XND", + "ref": "VGLWGT1XND", + "name": "E. Leclerc, Firminy", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVGLWGT1XND", + "ref": "VGLWGT1XND", + "name": "E. Leclerc, Firminy", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVGLWGT1XND", + "ref": "VGLWGT1XND", + "name": "E. Leclerc, Firminy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVGLWGT1XND", + "ref": "VGLWGT1XND", + "name": "E. Leclerc, Firminy", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVGLWGT1XND", + "ref": "VGLWGT1XND", + "name": "E. Leclerc, Firminy", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVGLWGT1XND", + "ref": "VGLWGT1XND", + "name": "E. Leclerc, Firminy", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVGLWGT1XND", + "ref": "VGLWGT1XND", + "name": "E. Leclerc, Firminy", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVGLWGT1XND", + "ref": "VGLWGT1XND", + "name": "E. Leclerc, Firminy", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVGLWGT1XND", + "ref": "VGLWGT1XND", + "name": "E. Leclerc, Firminy", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVGLWGT1XND", + "ref": "VGLWGT1XND", + "name": "E. Leclerc, Firminy", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVGLWGT1XND", + "ref": "VGLWGT1XND", + "name": "E. Leclerc, Firminy", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVGLWGT1XND", + "ref": "VGLWGT1XND", + "name": "E. Leclerc, Firminy", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVGLWGT1XND", + "ref": "VGLWGT1XND", + "name": "E. Leclerc, Firminy", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVGLWGT1XND", + "ref": "VGLWGT1XND", + "name": "E. Leclerc, Firminy", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87636127, + 46.17864182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMKOVST34HX", + "ref": "MKOVST34HX", + "name": "E. Leclerc, Guéret Hyper", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87636127, + 46.17864182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMKOVST34HX", + "ref": "MKOVST34HX", + "name": "E. Leclerc, Guéret Hyper", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87636127, + 46.17864182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMKOVST34HX", + "ref": "MKOVST34HX", + "name": "E. Leclerc, Guéret Hyper", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69562343, + 49.18870157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLHO03SXIPB", + "ref": "LHO03SXIPB", + "name": "E. Leclerc, Creutzwald", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDGGB1NVRK", + "ref": "HDGGB1NVRK", + "name": "E. Leclerc, Issoudun", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.55986421, + 48.28278413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWCCOPA7FR3", + "ref": "WCCOPA7FR3", + "name": "E. Leclerc, Carhaix", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.55986421, + 48.28278413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWCCOPA7FR3", + "ref": "WCCOPA7FR3", + "name": "E. Leclerc, Carhaix", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.04123101, + 44.05156649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMX6Q1OAWHF", + "ref": "MX6Q1OAWHF", + "name": "E. Leclerc, Carpentras", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.04123101, + 44.05156649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMX6Q1OAWHF", + "ref": "MX6Q1OAWHF", + "name": "E. Leclerc, Carpentras", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.04123101, + 44.05156649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMX6Q1OAWHF", + "ref": "MX6Q1OAWHF", + "name": "E. Leclerc, Carpentras", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.04123101, + 44.05156649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMX6Q1OAWHF", + "ref": "MX6Q1OAWHF", + "name": "E. Leclerc, Carpentras", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94525698, + 50.49892321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMUDXQHMAZH", + "ref": "MUDXQHMAZH", + "name": "E. Leclerc, Carvin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94525698, + 50.49892321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMUDXQHMAZH", + "ref": "MUDXQHMAZH", + "name": "E. Leclerc, Carvin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94525698, + 50.49892321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMUDXQHMAZH", + "ref": "MUDXQHMAZH", + "name": "E. Leclerc, Carvin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94525698, + 50.49892321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMUDXQHMAZH", + "ref": "MUDXQHMAZH", + "name": "E. Leclerc, Carvin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94525698, + 50.49892321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMUDXQHMAZH", + "ref": "MUDXQHMAZH", + "name": "E. Leclerc, Carvin", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94525698, + 50.49892321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMUDXQHMAZH", + "ref": "MUDXQHMAZH", + "name": "E. Leclerc, Carvin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94525698, + 50.49892321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMUDXQHMAZH", + "ref": "MUDXQHMAZH", + "name": "E. Leclerc, Carvin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94525698, + 50.49892321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMUDXQHMAZH", + "ref": "MUDXQHMAZH", + "name": "E. Leclerc, Carvin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85662027, + 46.8121653 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRWQKAKGXL4", + "ref": "RWQKAKGXL4", + "name": "E. Leclerc, Chalon-sur-Saône", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85662027, + 46.8121653 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRWQKAKGXL4", + "ref": "RWQKAKGXL4", + "name": "E. Leclerc, Chalon-sur-Saône", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85662027, + 46.8121653 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRWQKAKGXL4", + "ref": "RWQKAKGXL4", + "name": "E. Leclerc, Chalon-sur-Saône", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85662027, + 46.8121653 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRWQKAKGXL4", + "ref": "RWQKAKGXL4", + "name": "E. Leclerc, Chalon-sur-Saône", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85662027, + 46.8121653 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRWQKAKGXL4", + "ref": "RWQKAKGXL4", + "name": "E. Leclerc, Chalon-sur-Saône", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85662027, + 46.8121653 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRWQKAKGXL4", + "ref": "RWQKAKGXL4", + "name": "E. Leclerc, Chalon-sur-Saône", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.55986421, + 48.28278413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWCCOPA7FR3", + "ref": "WCCOPA7FR3", + "name": "E. Leclerc, Carhaix", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.55986421, + 48.28278413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWCCOPA7FR3", + "ref": "WCCOPA7FR3", + "name": "E. Leclerc, Carhaix", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85662027, + 46.8121653 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRWQKAKGXL4", + "ref": "RWQKAKGXL4", + "name": "E. Leclerc, Chalon-sur-Saône", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.55986421, + 48.28278413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWCCOPA7FR3", + "ref": "WCCOPA7FR3", + "name": "E. Leclerc, Carhaix", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWZWROIDFBO", + "ref": "WZWROIDFBO", + "name": "E. Leclerc, Bourgoin-Jallieu", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWZWROIDFBO", + "ref": "WZWROIDFBO", + "name": "E. Leclerc, Bourgoin-Jallieu", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWZWROIDFBO", + "ref": "WZWROIDFBO", + "name": "E. Leclerc, Bourgoin-Jallieu", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWZWROIDFBO", + "ref": "WZWROIDFBO", + "name": "E. Leclerc, Bourgoin-Jallieu", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWZWROIDFBO", + "ref": "WZWROIDFBO", + "name": "E. Leclerc, Bourgoin-Jallieu", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWZWROIDFBO", + "ref": "WZWROIDFBO", + "name": "E. Leclerc, Bourgoin-Jallieu", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96615552, + 43.56790376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHVZILC8RVL", + "ref": "HVZILC8RVL", + "name": "E. Leclerc, Cannes La bocca", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96615552, + 43.56790376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHVZILC8RVL", + "ref": "HVZILC8RVL", + "name": "E. Leclerc, Cannes La bocca", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96615552, + 43.56790376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHVZILC8RVL", + "ref": "HVZILC8RVL", + "name": "E. Leclerc, Cannes La bocca", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96615552, + 43.56790376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHVZILC8RVL", + "ref": "HVZILC8RVL", + "name": "E. Leclerc, Cannes La bocca", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96615552, + 43.56790376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHVZILC8RVL", + "ref": "HVZILC8RVL", + "name": "E. Leclerc, Cannes La bocca", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96615552, + 43.56790376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHVZILC8RVL", + "ref": "HVZILC8RVL", + "name": "E. Leclerc, Cannes La bocca", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96615552, + 43.56790376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHVZILC8RVL", + "ref": "HVZILC8RVL", + "name": "E. Leclerc, Cannes La bocca", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96615552, + 43.56790376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHVZILC8RVL", + "ref": "HVZILC8RVL", + "name": "E. Leclerc, Cannes La bocca", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96615552, + 43.56790376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHVZILC8RVL", + "ref": "HVZILC8RVL", + "name": "E. Leclerc, Cannes La bocca", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96615552, + 43.56790376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHVZILC8RVL", + "ref": "HVZILC8RVL", + "name": "E. Leclerc, Cannes La bocca", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96615552, + 43.56790376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHVZILC8RVL", + "ref": "HVZILC8RVL", + "name": "E. Leclerc, Cannes La bocca", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96615552, + 43.56790376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHVZILC8RVL", + "ref": "HVZILC8RVL", + "name": "E. Leclerc, Cannes La bocca", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.55986421, + 48.28278413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWCCOPA7FR3", + "ref": "WCCOPA7FR3", + "name": "E. Leclerc, Carhaix", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85662027, + 46.8121653 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRWQKAKGXL4", + "ref": "RWQKAKGXL4", + "name": "E. Leclerc, Chalon-sur-Saône", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85662027, + 46.8121653 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRWQKAKGXL4", + "ref": "RWQKAKGXL4", + "name": "E. Leclerc, Chalon-sur-Saône", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85662027, + 46.8121653 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRWQKAKGXL4", + "ref": "RWQKAKGXL4", + "name": "E. Leclerc, Chalon-sur-Saône", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85662027, + 46.8121653 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRWQKAKGXL4", + "ref": "RWQKAKGXL4", + "name": "E. Leclerc, Chalon-sur-Saône", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85662027, + 46.8121653 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRWQKAKGXL4", + "ref": "RWQKAKGXL4", + "name": "E. Leclerc, Chalon-sur-Saône", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.56079179, + 46.82398213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFHVJ8STYWS", + "ref": "FHVJ8STYWS", + "name": "E. Leclerc, Chatellerault", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.56079179, + 46.82398213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFHVJ8STYWS", + "ref": "FHVJ8STYWS", + "name": "E. Leclerc, Chatellerault", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.56079179, + 46.82398213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFHVJ8STYWS", + "ref": "FHVJ8STYWS", + "name": "E. Leclerc, Chatellerault", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.56079179, + 46.82398213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFHVJ8STYWS", + "ref": "FHVJ8STYWS", + "name": "E. Leclerc, Chatellerault", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.56079179, + 46.82398213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFHVJ8STYWS", + "ref": "FHVJ8STYWS", + "name": "E. Leclerc, Chatellerault", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.56079179, + 46.82398213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFHVJ8STYWS", + "ref": "FHVJ8STYWS", + "name": "E. Leclerc, Chatellerault", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.56079179, + 46.82398213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFHVJ8STYWS", + "ref": "FHVJ8STYWS", + "name": "E. Leclerc, Chatellerault", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.56079179, + 46.82398213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFHVJ8STYWS", + "ref": "FHVJ8STYWS", + "name": "E. Leclerc, Chatellerault", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68720882, + 47.83017861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQMM82OX1GG", + "ref": "QMM82OX1GG", + "name": "E. Leclerc, Château Gontier", + "capacity": "34", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDGGB1NVRK", + "ref": "HDGGB1NVRK", + "name": "E. Leclerc, Issoudun", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDGGB1NVRK", + "ref": "HDGGB1NVRK", + "name": "E. Leclerc, Issoudun", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08333333, + 49.91444444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PTREUU2CJ9Q", + "ref": "TREUU2CJ9Q", + "name": "Hirson, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR3XWXLIQVP", + "ref": "R3XWXLIQVP", + "name": "E. Leclerc, Orvault Parking Aérien", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62049141, + 46.50972776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESLPQIB7IA", + "ref": "ESLPQIB7IA", + "name": "Écrille, Camping de la Faz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36738503, + 47.12095734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBBOWNBKO6", + "ref": "LBBOWNBKO6", + "name": "E. Leclerc, Saint-Doulchard", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36738503, + 47.12095734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBBOWNBKO6", + "ref": "LBBOWNBKO6", + "name": "E. Leclerc, Saint-Doulchard", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36738503, + 47.12095734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBBOWNBKO6", + "ref": "LBBOWNBKO6", + "name": "E. Leclerc, Saint-Doulchard", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30083712, + 47.83697635 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PO2JCWW7L4P", + "ref": "O2JCWW7L4P", + "name": "E. Leclerc, Sablé-sur-Sarthe", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30083712, + 47.83697635 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PO2JCWW7L4P", + "ref": "O2JCWW7L4P", + "name": "E. Leclerc, Sablé-sur-Sarthe", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30083712, + 47.83697635 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PO2JCWW7L4P", + "ref": "O2JCWW7L4P", + "name": "E. Leclerc, Sablé-sur-Sarthe", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30083712, + 47.83697635 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PO2JCWW7L4P", + "ref": "O2JCWW7L4P", + "name": "E. Leclerc, Sablé-sur-Sarthe", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30083712, + 47.83697635 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PO2JCWW7L4P", + "ref": "O2JCWW7L4P", + "name": "E. Leclerc, Sablé-sur-Sarthe", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.38832658, + 45.75150525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG07NKV2IV3", + "ref": "G07NKV2IV3", + "name": "E. Leclerc, Rivières - La Rochefoucauld Centre Auto", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.38698647, + 45.75260553 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXZ5BGZA7KF", + "ref": "XZ5BGZA7KF", + "name": "E. Leclerc, Rivières - La Rochefoucauld", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.38832658, + 45.75150525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG07NKV2IV3", + "ref": "G07NKV2IV3", + "name": "E. Leclerc, Rivières - La Rochefoucauld Centre Auto", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.38698647, + 45.75260553 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXZ5BGZA7KF", + "ref": "XZ5BGZA7KF", + "name": "E. Leclerc, Rivières - La Rochefoucauld", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR3XWXLIQVP", + "ref": "R3XWXLIQVP", + "name": "E. Leclerc, Orvault Parking Aérien", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR3XWXLIQVP", + "ref": "R3XWXLIQVP", + "name": "E. Leclerc, Orvault Parking Aérien", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR3XWXLIQVP", + "ref": "R3XWXLIQVP", + "name": "E. Leclerc, Orvault Parking Aérien", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37266397, + 46.68271168 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG5WSCVUOGV", + "ref": "G5WSCVUOGV", + "name": "E. Leclerc, Montceau-les-Mines parking hyper", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37266397, + 46.68271168 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG5WSCVUOGV", + "ref": "G5WSCVUOGV", + "name": "E. Leclerc, Montceau-les-Mines parking hyper", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.75787184, + 44.56716292 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQS6DHJXSDF", + "ref": "QS6DHJXSDF", + "name": "E. Leclerc, Montélimar", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.75787184, + 44.56716292 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQS6DHJXSDF", + "ref": "QS6DHJXSDF", + "name": "E. Leclerc, Montélimar", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.75787184, + 44.56716292 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQS6DHJXSDF", + "ref": "QS6DHJXSDF", + "name": "E. Leclerc, Montélimar", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.75787184, + 44.56716292 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQS6DHJXSDF", + "ref": "QS6DHJXSDF", + "name": "E. Leclerc, Montélimar", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.98143719, + 43.18566882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQ6MEVWHEHS", + "ref": "Q6MEVWHEHS", + "name": "E. Leclerc, Narbonne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.98143719, + 43.18566882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQ6MEVWHEHS", + "ref": "Q6MEVWHEHS", + "name": "E. Leclerc, Narbonne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.98143719, + 43.18566882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQ6MEVWHEHS", + "ref": "Q6MEVWHEHS", + "name": "E. Leclerc, Narbonne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.98143719, + 43.18566882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQ6MEVWHEHS", + "ref": "Q6MEVWHEHS", + "name": "E. Leclerc, Narbonne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61797799, + 43.1977226 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PDEOTABIQBH", + "ref": "DEOTABIQBH", + "name": "E. Leclerc, Oloron", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61797799, + 43.1977226 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PDEOTABIQBH", + "ref": "DEOTABIQBH", + "name": "E. Leclerc, Oloron", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61797799, + 43.1977226 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PDEOTABIQBH", + "ref": "DEOTABIQBH", + "name": "E. Leclerc, Oloron", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61797799, + 43.1977226 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PDEOTABIQBH", + "ref": "DEOTABIQBH", + "name": "E. Leclerc, Oloron", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61797799, + 43.1977226 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PDEOTABIQBH", + "ref": "DEOTABIQBH", + "name": "E. Leclerc, Oloron", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61797799, + 43.1977226 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PDEOTABIQBH", + "ref": "DEOTABIQBH", + "name": "E. Leclerc, Oloron", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR3XWXLIQVP", + "ref": "R3XWXLIQVP", + "name": "E. Leclerc, Orvault Parking Aérien", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR3XWXLIQVP", + "ref": "R3XWXLIQVP", + "name": "E. Leclerc, Orvault Parking Aérien", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR3XWXLIQVP", + "ref": "R3XWXLIQVP", + "name": "E. Leclerc, Orvault Parking Aérien", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37266397, + 46.68271168 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG5WSCVUOGV", + "ref": "G5WSCVUOGV", + "name": "E. Leclerc, Montceau-les-Mines parking hyper", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60894067, + 49.3181843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYXZCNHKIHR", + "ref": "YXZCNHKIHR", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60894067, + 49.3181843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBHJBR6MTSL", + "ref": "BHJBR6MTSL", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60899529, + 49.31810321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBHJBR6MTSL", + "ref": "BHJBR6MTSL", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60899529, + 49.31810321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBHJBR6MTSL", + "ref": "BHJBR6MTSL", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60894067, + 49.3181843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYSCJHWOOBD", + "ref": "YSCJHWOOBD", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60894067, + 49.3181843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHXDYFHVRAK", + "ref": "HXDYFHVRAK", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60894067, + 49.3181843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHXDYFHVRAK", + "ref": "HXDYFHVRAK", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60894067, + 49.3181843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYSCJHWOOBD", + "ref": "YSCJHWOOBD", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60894067, + 49.3181843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYSCJHWOOBD", + "ref": "YSCJHWOOBD", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60894067, + 49.3181843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYXZCNHKIHR", + "ref": "YXZCNHKIHR", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6089631, + 49.31839082 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYSCJHWOOBD", + "ref": "YSCJHWOOBD", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60894067, + 49.3181843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYSCJHWOOBD", + "ref": "YSCJHWOOBD", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6089631, + 49.31839082 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYSCJHWOOBD", + "ref": "YSCJHWOOBD", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60899529, + 49.31810321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBHJBR6MTSL", + "ref": "BHJBR6MTSL", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.295977, + 48.242535 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQ31SB4676", + "ref": "IQ31SB4676", + "name": "E. Leclerc, Plouguernevel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.295977, + 48.242535 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQ31SB4676", + "ref": "IQ31SB4676", + "name": "E. Leclerc, Plouguernevel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.25487433, + 48.76418785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKYUTHP1BE", + "ref": "IKYUTHP1BE", + "name": "E. Leclerc, Phalsbourg", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.25487433, + 48.76418785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKYUTHP1BE", + "ref": "IKYUTHP1BE", + "name": "E. Leclerc, Phalsbourg", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR3XWXLIQVP", + "ref": "R3XWXLIQVP", + "name": "E. Leclerc, Orvault Parking Aérien", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR3XWXLIQVP", + "ref": "R3XWXLIQVP", + "name": "E. Leclerc, Orvault Parking Aérien", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60899529, + 49.31810321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBHJBR6MTSL", + "ref": "BHJBR6MTSL", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60894067, + 49.3181843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYXZCNHKIHR", + "ref": "YXZCNHKIHR", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60899529, + 49.31810321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBHJBR6MTSL", + "ref": "BHJBR6MTSL", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSSPQRIGGGG", + "ref": "SSPQRIGGGG", + "name": "E. Leclerc, Rezé", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60894067, + 49.3181843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYXZCNHKIHR", + "ref": "YXZCNHKIHR", + "name": "E. Leclerc, Pont-Sainte-Maxence", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37266397, + 46.68271168 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG5WSCVUOGV", + "ref": "G5WSCVUOGV", + "name": "E. Leclerc, Montceau-les-Mines parking hyper", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POUBY1DDYTO", + "ref": "OUBY1DDYTO", + "name": "E. Leclerc, Moisselles", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDGGB1NVRK", + "ref": "HDGGB1NVRK", + "name": "E. Leclerc, Issoudun", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11732583, + 44.61428527 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUXEUSC0NOG", + "ref": "UXEUSC0NOG", + "name": "E. Leclerc, La Teste de Buch", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11732583, + 44.61428527 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUXEUSC0NOG", + "ref": "UXEUSC0NOG", + "name": "E. Leclerc, La Teste de Buch", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11732583, + 44.61428527 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUXEUSC0NOG", + "ref": "UXEUSC0NOG", + "name": "E. Leclerc, La Teste de Buch", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11732583, + 44.61428527 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUXEUSC0NOG", + "ref": "UXEUSC0NOG", + "name": "E. Leclerc, La Teste de Buch", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.45815291, + 48.75110645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PACCWKSNKDG", + "ref": "ACCWKSNKDG", + "name": "E. Leclerc, Lannion", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.45815291, + 48.75110645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PACCWKSNKDG", + "ref": "ACCWKSNKDG", + "name": "E. Leclerc, Lannion", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.45815291, + 48.75110645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PACCWKSNKDG", + "ref": "ACCWKSNKDG", + "name": "E. Leclerc, Lannion", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.45815291, + 48.75110645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PACCWKSNKDG", + "ref": "ACCWKSNKDG", + "name": "E. Leclerc, Lannion", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.84350716, + 49.59440566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PB3EMG8J6LZ", + "ref": "B3EMG8J6LZ", + "name": "E. Leclerc, Lassigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.84350716, + 49.59440566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PB3EMG8J6LZ", + "ref": "B3EMG8J6LZ", + "name": "E. Leclerc, Lassigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ3N1KOHIJZ", + "ref": "J3N1KOHIJZ", + "name": "E. Leclerc, Le Neubourg", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ3N1KOHIJZ", + "ref": "J3N1KOHIJZ", + "name": "E. Leclerc, Le Neubourg", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ3N1KOHIJZ", + "ref": "J3N1KOHIJZ", + "name": "E. Leclerc, Le Neubourg", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ3N1KOHIJZ", + "ref": "J3N1KOHIJZ", + "name": "E. Leclerc, Le Neubourg", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ3N1KOHIJZ", + "ref": "J3N1KOHIJZ", + "name": "E. Leclerc, Le Neubourg", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ3N1KOHIJZ", + "ref": "J3N1KOHIJZ", + "name": "E. Leclerc, Le Neubourg", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ3N1KOHIJZ", + "ref": "J3N1KOHIJZ", + "name": "E. Leclerc, Le Neubourg", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ3N1KOHIJZ", + "ref": "J3N1KOHIJZ", + "name": "E. Leclerc, Le Neubourg", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ3N1KOHIJZ", + "ref": "J3N1KOHIJZ", + "name": "E. Leclerc, Le Neubourg", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ3N1KOHIJZ", + "ref": "J3N1KOHIJZ", + "name": "E. Leclerc, Le Neubourg", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11732583, + 44.61428527 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUXEUSC0NOG", + "ref": "UXEUSC0NOG", + "name": "E. Leclerc, La Teste de Buch", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11732583, + 44.61428527 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUXEUSC0NOG", + "ref": "UXEUSC0NOG", + "name": "E. Leclerc, La Teste de Buch", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22570281, + 46.6225991 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCMGGZK8UV", + "ref": "RCMGGZK8UV", + "name": "E. Leclerc, Louhans", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40589264, + 46.67115995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXQEM9PNU02", + "ref": "XQEM9PNU02", + "name": "E. Leclerc, La Roche-sur-Yon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDGGB1NVRK", + "ref": "HDGGB1NVRK", + "name": "E. Leclerc, Issoudun", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDGGB1NVRK", + "ref": "HDGGB1NVRK", + "name": "E. Leclerc, Issoudun", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDGGB1NVRK", + "ref": "HDGGB1NVRK", + "name": "E. Leclerc, Issoudun", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDGGB1NVRK", + "ref": "HDGGB1NVRK", + "name": "E. Leclerc, Issoudun", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDGGB1NVRK", + "ref": "HDGGB1NVRK", + "name": "E. Leclerc, Issoudun", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDGGB1NVRK", + "ref": "HDGGB1NVRK", + "name": "E. Leclerc, Issoudun", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.34189919, + 47.78954572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPHLNTHDLYD", + "ref": "PHLNTHDLYD", + "name": "E.Leclerc, Kingersheim", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.34189919, + 47.78954572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPHLNTHDLYD", + "ref": "PHLNTHDLYD", + "name": "E.Leclerc, Kingersheim", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.34189919, + 47.78954572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPHLNTHDLYD", + "ref": "PHLNTHDLYD", + "name": "E.Leclerc, Kingersheim", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.34189919, + 47.78954572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPHLNTHDLYD", + "ref": "PHLNTHDLYD", + "name": "E.Leclerc, Kingersheim", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.34189919, + 47.78954572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPHLNTHDLYD", + "ref": "PHLNTHDLYD", + "name": "E.Leclerc, Kingersheim", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.34189919, + 47.78954572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPHLNTHDLYD", + "ref": "PHLNTHDLYD", + "name": "E.Leclerc, Kingersheim", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.34189919, + 47.78954572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPHLNTHDLYD", + "ref": "PHLNTHDLYD", + "name": "E.Leclerc, Kingersheim", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.34189919, + 47.78954572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPHLNTHDLYD", + "ref": "PHLNTHDLYD", + "name": "E.Leclerc, Kingersheim", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40589264, + 46.67115995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXQEM9PNU02", + "ref": "XQEM9PNU02", + "name": "E. Leclerc, La Roche-sur-Yon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40589264, + 46.67115995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXQEM9PNU02", + "ref": "XQEM9PNU02", + "name": "E. Leclerc, La Roche-sur-Yon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40589264, + 46.67115995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXQEM9PNU02", + "ref": "XQEM9PNU02", + "name": "E. Leclerc, La Roche-sur-Yon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40589264, + 46.67115995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXQEM9PNU02", + "ref": "XQEM9PNU02", + "name": "E. Leclerc, La Roche-sur-Yon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40589264, + 46.67115995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXQEM9PNU02", + "ref": "XQEM9PNU02", + "name": "E. Leclerc, La Roche-sur-Yon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22570281, + 46.6225991 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCMGGZK8UV", + "ref": "RCMGGZK8UV", + "name": "E. Leclerc, Louhans", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18306671, + 49.23610163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PEM1XTBUMGN", + "ref": "EM1XTBUMGN", + "name": "E. Leclerc, Louviers Incarville", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POUBY1DDYTO", + "ref": "OUBY1DDYTO", + "name": "E. Leclerc, Moisselles", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84835656, + 46.7498445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQKLF8YQGSF", + "ref": "QKLF8YQGSF", + "name": "E. Leclerc, Lux", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84835656, + 46.7498445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQKLF8YQGSF", + "ref": "QKLF8YQGSF", + "name": "E. Leclerc, Lux", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84835656, + 46.7498445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQKLF8YQGSF", + "ref": "QKLF8YQGSF", + "name": "E. Leclerc, Lux", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84835656, + 46.7498445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQKLF8YQGSF", + "ref": "QKLF8YQGSF", + "name": "E. Leclerc, Lux", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13346962, + 46.45991517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PC91UWKY1QR", + "ref": "C91UWKY1QR", + "name": "E. Leclerc, Luçon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13346962, + 46.45991517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PC91UWKY1QR", + "ref": "C91UWKY1QR", + "name": "E. Leclerc, Luçon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13346962, + 46.45991517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PC91UWKY1QR", + "ref": "C91UWKY1QR", + "name": "E. Leclerc, Luçon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13346962, + 46.45991517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PC91UWKY1QR", + "ref": "C91UWKY1QR", + "name": "E. Leclerc, Luçon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POUBY1DDYTO", + "ref": "OUBY1DDYTO", + "name": "E. Leclerc, Moisselles", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POUBY1DDYTO", + "ref": "OUBY1DDYTO", + "name": "E. Leclerc, Moisselles", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POUBY1DDYTO", + "ref": "OUBY1DDYTO", + "name": "E. Leclerc, Moisselles", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POUBY1DDYTO", + "ref": "OUBY1DDYTO", + "name": "E. Leclerc, Moisselles", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POUBY1DDYTO", + "ref": "OUBY1DDYTO", + "name": "E. Leclerc, Moisselles", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POUBY1DDYTO", + "ref": "OUBY1DDYTO", + "name": "E. Leclerc, Moisselles", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POUBY1DDYTO", + "ref": "OUBY1DDYTO", + "name": "E. Leclerc, Moisselles", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POUBY1DDYTO", + "ref": "OUBY1DDYTO", + "name": "E. Leclerc, Moisselles", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18306671, + 49.23610163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PEM1XTBUMGN", + "ref": "EM1XTBUMGN", + "name": "E. Leclerc, Louviers Incarville", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18306671, + 49.23610163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PEM1XTBUMGN", + "ref": "EM1XTBUMGN", + "name": "E. Leclerc, Louviers Incarville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18306671, + 49.23610163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PEM1XTBUMGN", + "ref": "EM1XTBUMGN", + "name": "E. Leclerc, Louviers Incarville", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18306671, + 49.23610163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PEM1XTBUMGN", + "ref": "EM1XTBUMGN", + "name": "E. Leclerc, Louviers Incarville", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18306671, + 49.23610163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PEM1XTBUMGN", + "ref": "EM1XTBUMGN", + "name": "E. Leclerc, Louviers Incarville", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18306671, + 49.23610163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PEM1XTBUMGN", + "ref": "EM1XTBUMGN", + "name": "E. Leclerc, Louviers Incarville", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18306671, + 49.23610163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PEM1XTBUMGN", + "ref": "EM1XTBUMGN", + "name": "E. Leclerc, Louviers Incarville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11008614, + 50.71344104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZKATEV5AC", + "ref": "SZKATEV5AC", + "name": "E. Leclerc, Lumbres", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWZWROIDFBO", + "ref": "WZWROIDFBO", + "name": "E. Leclerc, Bourgoin-Jallieu", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWZWROIDFBO", + "ref": "WZWROIDFBO", + "name": "E. Leclerc, Bourgoin-Jallieu", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWZWROIDFBO", + "ref": "WZWROIDFBO", + "name": "E. Leclerc, Bourgoin-Jallieu", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8031, + 49.6091 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQCXCXZ", + "ref": "QCXCXZ", + "name": "Liesse-Notre-Dame, Place Bailly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.88593, + 49.571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PYCNFVS", + "ref": "YCNFVS", + "name": "Sissonne, D181", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31505, + 49.3662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58C7C7EA4DBA6", + "ref": "58c7c7ea4dba6", + "name": "Soissons, Marcel Paul", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31505, + 49.3662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58C7C7EA4DBA6", + "ref": "58c7c7ea4dba6", + "name": "Soissons, Marcel Paul", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12357, + 49.1797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PEFENPV", + "ref": "EFENPV", + "name": "La Ferté-Milon, Aire de covoiturage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12357, + 49.1797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PEFENPV", + "ref": "EFENPV", + "name": "La Ferté-Milon, Aire de covoiturage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.69635, + 50.0074 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PKCCJFU", + "ref": "KCCJFU", + "name": "Boué, Cyrille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.51623, + 49.4105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSUPFYC", + "ref": "SUPFYC", + "name": "Vailly-sur-Aisne, Edouard Herriot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.19489, + 49.022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P589D892331C0C", + "ref": "589d892331c0c", + "name": "Montreuil-aux-Lions, Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32963, + 49.3759 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PESQSQW", + "ref": "ESQSQW", + "name": "Soissons, Place de la république", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26455, + 48.9946 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PPASSBK", + "ref": "PASSBK", + "name": "Villiers-Saint-Denis, Rue du Pré Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.73206, + 49.4418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PPTKRJY", + "ref": "PTKRJY", + "name": "Oulches, Caverne du Dragon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.40779, + 49.0367 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PEQMEHC", + "ref": "EQMEHC", + "name": "Etampes-sur-Marne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26455, + 48.9946 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PPASSBK", + "ref": "PASSBK", + "name": "Villiers-Saint-Denis, Rue du Pré Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.73206, + 49.4418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PPTKRJY", + "ref": "PTKRJY", + "name": "Oulches, Caverne du Dragon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32963, + 49.3759 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PESQSQW", + "ref": "ESQSQW", + "name": "Soissons, Place de la république", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09269, + 49.373 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMONTILENGVAU", + "ref": "Montilengvau", + "name": "Montigny-Lengrain, Vaudrial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.45166, + 49.9863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PDGNAYM", + "ref": "DGNAYM", + "name": "Bohain-en-Vermandois, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.33537, + 49.3826 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58C7C6D45D4A8", + "ref": "58c7c6d45d4a8", + "name": "Soissons, Place Alsace-Lorraine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30091, + 49.8338 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PZFEUKM", + "ref": "ZFEUKM", + "name": "Saint-Quentin, Camille Guérin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.38132, + 49.5948 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58C7C8DAA8451", + "ref": "58c7c8daa8451", + "name": "Saint-Gobain, Place Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31632, + 49.3645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58DE4A4BDF840", + "ref": "58de4a4bdf840", + "name": "Soissons, Corbusier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62036, + 49.5648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PGERAYP", + "ref": "GERAYP", + "name": "Laon, Hôtel de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.45854, + 49.7964 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PDQYPER", + "ref": "DQYPER", + "name": "Ribemont, Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3259, + 49.3802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PUNJDMY", + "ref": "UNJDMY", + "name": "Soissons, Évêché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5152, + 49.604 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PAGYBXE", + "ref": "AGYBXE", + "name": "Crépy, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.88593, + 49.571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PYCNFVS", + "ref": "YCNFVS", + "name": "Sissonne, D181", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.33628, + 49.3705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PYSTCSA", + "ref": "YSTCSA", + "name": "Soissons, Centre Médical", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3259, + 49.3802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PUNJDMY", + "ref": "UNJDMY", + "name": "Soissons, Évêché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.33537, + 49.3826 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58C7C6D45D4A8", + "ref": "58c7c6d45d4a8", + "name": "Soissons, Place Alsace-Lorraine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32898, + 49.4003 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQCMMEU", + "ref": "QCMMEU", + "name": "Cuffies, François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07166, + 49.9083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58DCDCBF82A84", + "ref": "58dcdcbf82a84", + "name": "Buire, Rotonde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32898, + 49.4003 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQCMMEU", + "ref": "QCMMEU", + "name": "Cuffies, François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62412, + 49.5705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PTWZDPZ", + "ref": "TWZDPZ", + "name": "Laon, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.36811, + 49.2043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PNSVAFV", + "ref": "NSVAFV", + "name": "Oulchy-le-Château, Potel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3531, + 49.2699 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PVRYCFW", + "ref": "VRYCFW", + "name": "Hartennes-et-Taux, Grande Rue", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.33628, + 49.3705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PYSTCSA", + "ref": "YSTCSA", + "name": "Soissons, Centre Médical", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30931, + 49.3737 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58DE499D6602C", + "ref": "58de499d6602c", + "name": "Soissons, Eglise Résurrection", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30931, + 49.3737 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58DE499D6602C", + "ref": "58de499d6602c", + "name": "Soissons, Eglise Résurrection", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.634, + 49.57 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSNUFDD", + "ref": "SNUFDD", + "name": "Laon, Place V. Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08724, + 49.2601 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PDBLHFU", + "ref": "DBLHFU", + "name": "Villers-Cotterêts, Piscine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08724, + 49.2601 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PDBLHFU", + "ref": "DBLHFU", + "name": "Villers-Cotterêts, Piscine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.45854, + 49.7964 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PDQYPER", + "ref": "DQYPER", + "name": "Ribemont, Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.45238, + 49.6848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PUJASVQ", + "ref": "UJASVQ", + "name": "Courbes, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.45238, + 49.6848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PUJASVQ", + "ref": "UJASVQ", + "name": "Courbes, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5152, + 49.604 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PAGYBXE", + "ref": "AGYBXE", + "name": "Crépy, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.50175, + -20.898202 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFCGRS7CQWI", + "ref": "FCGRS7CQWI", + "name": "Saint-Denis, Rue du stade de l’est", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35517581, + 48.98067116 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAVIZJCCHFM", + "ref": "AVIZJCCHFM", + "name": "Saint-Martin-sur-le-Pré, Dehlorbe Automobiles Hyundai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08478188, + 49.23616118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDN2MMDN9FZ", + "ref": "DN2MMDN9FZ", + "name": "Reims, Delhorbe Automobiles Hyundai", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08478188, + 49.23616118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDN2MMDN9FZ", + "ref": "DN2MMDN9FZ", + "name": "Reims, Delhorbe Automobiles Hyundai", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08478188, + 49.23616118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDN2MMDN9FZ", + "ref": "DN2MMDN9FZ", + "name": "Reims, Delhorbe Automobiles Hyundai", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08478188, + 49.23616118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDN2MMDN9FZ", + "ref": "DN2MMDN9FZ", + "name": "Reims, Delhorbe Automobiles Hyundai", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08478188, + 49.23616118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDN2MMDN9FZ", + "ref": "DN2MMDN9FZ", + "name": "Reims, Delhorbe Automobiles Hyundai", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08478188, + 49.23616118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDN2MMDN9FZ", + "ref": "DN2MMDN9FZ", + "name": "Reims, Delhorbe Automobiles Hyundai", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08478188, + 49.23616118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDN2MMDN9FZ", + "ref": "DN2MMDN9FZ", + "name": "Reims, Delhorbe Automobiles Hyundai", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08478188, + 49.23616118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDN2MMDN9FZ", + "ref": "DN2MMDN9FZ", + "name": "Reims, Delhorbe Automobiles Hyundai", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35470347, + 48.98087537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZQJI8TT2HQ", + "ref": "ZQJI8TT2HQ", + "name": "Saint-Martin-sur-le-Pré, Delhorbe Automobiles Volvo", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35470347, + 48.98087537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZQJI8TT2HQ", + "ref": "ZQJI8TT2HQ", + "name": "Saint-Martin-sur-le-Pré, Delhorbe Automobiles Volvo", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35470347, + 48.98087537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZQJI8TT2HQ", + "ref": "ZQJI8TT2HQ", + "name": "Saint-Martin-sur-le-Pré, Delhorbe Automobiles Volvo", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35470347, + 48.98087537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZQJI8TT2HQ", + "ref": "ZQJI8TT2HQ", + "name": "Saint-Martin-sur-le-Pré, Delhorbe Automobiles Volvo", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35470347, + 48.98087537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZQJI8TT2HQ", + "ref": "ZQJI8TT2HQ", + "name": "Saint-Martin-sur-le-Pré, Delhorbe Automobiles Volvo", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35470347, + 48.98087537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZQJI8TT2HQ", + "ref": "ZQJI8TT2HQ", + "name": "Saint-Martin-sur-le-Pré, Delhorbe Automobiles Volvo", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08473895, + 49.23618569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHJWNEXIN5", + "ref": "THJWNEXIN5", + "name": "Reims, Delhorbe Automobile Volvo", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08473895, + 49.23618569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHJWNEXIN5", + "ref": "THJWNEXIN5", + "name": "Reims, Delhorbe Automobile Volvo", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08473895, + 49.23618569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHJWNEXIN5", + "ref": "THJWNEXIN5", + "name": "Reims, Delhorbe Automobile Volvo", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08473895, + 49.23618569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHJWNEXIN5", + "ref": "THJWNEXIN5", + "name": "Reims, Delhorbe Automobile Volvo", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35517581, + 48.98067116 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAVIZJCCHFM", + "ref": "AVIZJCCHFM", + "name": "Saint-Martin-sur-le-Pré, Dehlorbe Automobiles Hyundai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.50175, + -20.898202 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFCGRS7CQWI", + "ref": "FCGRS7CQWI", + "name": "Saint-Denis, Rue du stade de l’est", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09269, + 49.373 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMONTILENGVAU", + "ref": "Montilengvau", + "name": "Montigny-Lengrain, Vaudrial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.50175, + -20.898202 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFCGRS7CQWI", + "ref": "FCGRS7CQWI", + "name": "Saint-Denis, Rue du stade de l’est", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8031, + 49.6091 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQCXCXZ", + "ref": "QCXCXZ", + "name": "Liesse-Notre-Dame, Place Bailly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62036, + 49.5648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PGERAYP", + "ref": "GERAYP", + "name": "Laon, Hôtel de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.40779, + 49.0367 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PEQMEHC", + "ref": "EQMEHC", + "name": "Etampes-sur-Marne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62901, + 49.5643 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMPQRYN", + "ref": "MPQRYN", + "name": "Laon, Parking de la Plaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28606, + 49.8481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PZGGRYJ", + "ref": "ZGGRYJ", + "name": "Saint-Quentin, Parking de la Criée", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07166, + 49.9083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58DCDCBF82A84", + "ref": "58dcdcbf82a84", + "name": "Buire, Rotonde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1684, + 49.3714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PKRHRFU", + "ref": "KRHRFU", + "name": "Saint-Bandry, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30527, + 49.3807 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PACFGRT", + "ref": "ACFGRT", + "name": "Soissons, Parking Quartier Maupas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62901, + 49.5643 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMPQRYN", + "ref": "MPQRYN", + "name": "Laon, Parking de la Plaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.40779, + 49.0367 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PEQMEHC", + "ref": "EQMEHC", + "name": "Etampes-sur-Marne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.208492, + 48.1096611 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX8A9OQR4ED", + "ref": "X8A9OQR4ED", + "name": "Vitré, Audi Volkswagen Daniel Mouton", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.208492, + 48.1096611 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX8A9OQR4ED", + "ref": "X8A9OQR4ED", + "name": "Vitré, Audi Volkswagen Daniel Mouton", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41643188, + 48.85224905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYNLENGKDIG", + "ref": "YNLENGKDIG", + "name": "Montreuil, Decathlon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41643188, + 48.85224905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYNLENGKDIG", + "ref": "YNLENGKDIG", + "name": "Montreuil, Decathlon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41643188, + 48.85224905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYNLENGKDIG", + "ref": "YNLENGKDIG", + "name": "Montreuil, Decathlon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41643188, + 48.85224905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYNLENGKDIG", + "ref": "YNLENGKDIG", + "name": "Montreuil, Decathlon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.50175, + -20.898202 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFCGRS7CQWI", + "ref": "FCGRS7CQWI", + "name": "Saint-Denis, Rue du stade de l’est", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.50175, + -20.898202 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFCGRS7CQWI", + "ref": "FCGRS7CQWI", + "name": "Saint-Denis, Rue du stade de l’est", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.50175, + -20.898202 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFCGRS7CQWI", + "ref": "FCGRS7CQWI", + "name": "Saint-Denis, Rue du stade de l’est", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62412, + 49.5705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PTWZDPZ", + "ref": "TWZDPZ", + "name": "Laon, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32853, + 49.3747 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSOISSONSUNIS", + "ref": "soissonsunis", + "name": "Soissons - Bd Jeanne d'Arc, Etats-Unis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWZWROIDFBO", + "ref": "WZWROIDFBO", + "name": "E. Leclerc, Bourgoin-Jallieu", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.45105, + 49.4979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQWGEWH", + "ref": "QWGEWH", + "name": "Pinon, 7e BCA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.147, + 49.3877 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSVZDTK", + "ref": "SVZDTK", + "name": "Ressons-le-Long, Poulandon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28601, + 49.839 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PAHRSQW", + "ref": "AHRSQW", + "name": "Saint-Quentin, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.40779, + 49.0367 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PEQMEHC", + "ref": "EQMEHC", + "name": "Etampes-sur-Marne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62232, + 49.695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58B6D63F2370F", + "ref": "58b6d63f2370f", + "name": "Crécy-sur-Serre, Roses", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4508, + 49.5049 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58B6C69E0D34E", + "ref": "58b6c69e0d34e", + "name": "Anizy-le-Château, Aigle Noir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6109, + 49.5612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PDTPERS", + "ref": "DTPERS", + "name": "Laon, Place R. Aumont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62232, + 49.695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58B6D63F2370F", + "ref": "58b6d63f2370f", + "name": "Crécy-sur-Serre, Roses", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3065, + 49.8348 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PBEZJPU", + "ref": "BEZJPU", + "name": "Saint-Quentin, Fère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3065, + 49.8348 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PBEZJPU", + "ref": "BEZJPU", + "name": "Saint-Quentin, Fère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3118, + 49.3772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PNFTXEN", + "ref": "NFTXEN", + "name": "Soissons, Halte St. Christophe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62777, + 49.9044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQWNXPB", + "ref": "QWNXPB", + "name": "Guise, Parking Familistère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1684, + 49.3714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PKRHRFU", + "ref": "KRHRFU", + "name": "Saint-Bandry, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2659, + 49.8356 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PXYHQKM", + "ref": "XYHQKM", + "name": "Saint-Quentin, Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2659, + 49.8356 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PXYHQKM", + "ref": "XYHQKM", + "name": "Saint-Quentin, Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.45166, + 49.9863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PDGNAYM", + "ref": "DGNAYM", + "name": "Bohain-en-Vermandois, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.66592468, + 49.52242536 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PWVRRH8KDBX", + "ref": "WVRRH8KDBX", + "name": "Bruyères-et-Montbérault, rue Porte de Reims", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.66592468, + 49.52242536 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PWVRRH8KDBX", + "ref": "WVRRH8KDBX", + "name": "Bruyères-et-Montbérault, rue Porte de Reims", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31728, + 49.3766 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PYQUNQS", + "ref": "YQUNQS", + "name": "Soissons, Messiaen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62777, + 49.9044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQWNXPB", + "ref": "QWNXPB", + "name": "Guise, Parking Familistère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.634, + 49.57 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSNUFDD", + "ref": "SNUFDD", + "name": "Laon, Place V. Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4508, + 49.5049 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58B6C69E0D34E", + "ref": "58b6c69e0d34e", + "name": "Anizy-le-Château, Aigle Noir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.54107, + 49.3652 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PCRCRLR", + "ref": "CRCRLR", + "name": "Brenelle, Bac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28601, + 49.839 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PAHRSQW", + "ref": "AHRSQW", + "name": "Saint-Quentin, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.60313, + 49.55677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PLAONFOCH", + "ref": "laonfoch", + "name": "Laon, Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3179, + 49.8363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQRMSRP", + "ref": "QRMSRP", + "name": "Saint-Quentin, P. Choquart", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29522, + 49.8501 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PCAYFWR", + "ref": "CAYFWR", + "name": "Saint-Quentin, Gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26519, + 49.8561 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQBFAVT", + "ref": "QBFAVT", + "name": "Saint-Quentin, Archimède", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26519, + 49.8561 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQBFAVT", + "ref": "QBFAVT", + "name": "Saint-Quentin, Archimède", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32106, + 49.3804 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58AEB617AD8C4", + "ref": "58aeb617ad8c4", + "name": "Soissons - Bd Jeanne d'Arc (école)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29522, + 49.8501 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PCAYFWR", + "ref": "CAYFWR", + "name": "Saint-Quentin, Gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3179, + 49.8363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQRMSRP", + "ref": "QRMSRP", + "name": "Saint-Quentin, P. Choquart", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.55776, + 49.4898 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMZQNJY", + "ref": "MZQNJY", + "name": "Urcel, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.55776, + 49.4898 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMZQNJY", + "ref": "MZQNJY", + "name": "Urcel, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29915, + 49.3799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMERCINBAINS", + "ref": "Mercinbains", + "name": "Mercin-et-Vaux, Bains-du-Lac", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28329, + 49.8457 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQYSVEH", + "ref": "QYSVEH", + "name": "Saint-Quentin - Square A. Malraux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28329, + 49.8457 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQYSVEH", + "ref": "QYSVEH", + "name": "Saint-Quentin - Square A. Malraux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28589, + 48.977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PCHARLYMORL", + "ref": "Charlymorl", + "name": "Charly-sur-Marne, Morlot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28329, + 49.8457 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQYSVEH", + "ref": "QYSVEH", + "name": "Saint-Quentin - Square A. Malraux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26515, + 49.8561 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQBFAVT", + "ref": "QBFAVT", + "name": "Saint-Quentin, Archimède", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30409, + 49.8426 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PXSKTTA", + "ref": "XSKTTA", + "name": "Saint-Quentin, Léo Lagrange", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30409, + 49.8426 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PXSKTTA", + "ref": "XSKTTA", + "name": "Saint-Quentin, Léo Lagrange", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26515, + 49.8561 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQBFAVT", + "ref": "QBFAVT", + "name": "Saint-Quentin, Archimède", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.48756, + 49.8394 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PKBWFSH", + "ref": "KBWFSH", + "name": "Origny-Sainte-Benoite, Place Jean Mermoz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.19489, + 49.022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P589D892331C0C", + "ref": "589d892331c0c", + "name": "Montreuil-aux-Lions, Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32367, + 49.3738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSOISSONSARC", + "ref": "soissonsarc", + "name": "Soissons - Bd Jeanne d'Arc 78", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.22555, + 49.7561 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02P58AEB3ECE5680", + "ref": "58aeb3ece5680", + "name": "Clastres, Château d'eau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3436, + 49.8087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PXYKQRE", + "ref": "XYKQRE", + "name": "Itancourt, Neuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32367, + 49.3738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSOISSONSARC", + "ref": "soissonsarc", + "name": "Soissons - Bd Jeanne d'Arc 78", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.45105, + 49.4979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQWGEWH", + "ref": "QWGEWH", + "name": "Pinon, 7e BCA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.38869, + 49.0494 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMDGPWT", + "ref": "MDGPWT", + "name": "Château-Thierry, Otmus", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25982, + 49.1706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PZSXCNB", + "ref": "ZSXCNB", + "name": "Neuilly-Saint-Front, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62776, + 49.5621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PLAONDEPART", + "ref": "laondepart", + "name": "Laon, Département", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.33263, + 49.3874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PYHKZDC", + "ref": "YHKZDC", + "name": "Soissons, Avenue de Coucy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30814, + 49.9971 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PBEAUREVOIRCDG", + "ref": "beaurevoircdg", + "name": "Beaurevoir, De Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30814, + 49.9971 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PBEAUREVOIRCDG", + "ref": "beaurevoircdg", + "name": "Beaurevoir, De Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3195, + 49.3919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSOISSJEUDARC", + "ref": "soissjeudarc", + "name": "Soissons, Jeu d'Arc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3195, + 49.3919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSOISSJEUDARC", + "ref": "soissjeudarc", + "name": "Soissons, Jeu d'Arc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28329, + 49.8457 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PQYSVEH", + "ref": "QYSVEH", + "name": "Saint-Quentin - Square A. Malraux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7025, + 49.8237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PRHTBXV", + "ref": "RHTBXV", + "name": "Sains-Richaumont, Place de l'Hôtel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.78648, + 50.0168 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PWWBNFP", + "ref": "WWBNFP", + "name": "Le Nouvion-en-Thiérache, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62776, + 49.5621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PLAONDEPART", + "ref": "laondepart", + "name": "Laon, Département", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7025, + 49.8237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PRHTBXV", + "ref": "RHTBXV", + "name": "Sains-Richaumont, Place de l'Hôtel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.78648, + 50.0168 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PWWBNFP", + "ref": "WWBNFP", + "name": "Le Nouvion-en-Thiérache, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.38869, + 49.0494 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMDGPWT", + "ref": "MDGPWT", + "name": "Château-Thierry, Otmus", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32853, + 49.3747 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSOISSONSUNIS", + "ref": "soissonsunis", + "name": "Soissons - Bd Jeanne d'Arc, Etats-Unis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32436, + 49.3836 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PPKKBDX", + "ref": "PKKBDX", + "name": "Soissons, UTAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3436, + 49.8087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PXYKQRE", + "ref": "XYKQRE", + "name": "Itancourt, Neuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.54107, + 49.3652 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PCRCRLR", + "ref": "CRCRLR", + "name": "Brenelle, Bac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32436, + 49.3836 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PPKKBDX", + "ref": "PKKBDX", + "name": "Soissons, UTAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35249, + 49.3989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PFPANMF", + "ref": "FPANMF", + "name": "Crouy, Général Patton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31728, + 49.3766 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PYQUNQS", + "ref": "YQUNQS", + "name": "Soissons, Messiaen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28606, + 49.8481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PZGGRYJ", + "ref": "ZGGRYJ", + "name": "Saint-Quentin, Parking de la Criée", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35249, + 49.3989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PFPANMF", + "ref": "FPANMF", + "name": "Crouy, Général Patton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.147, + 49.3877 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSVZDTK", + "ref": "SVZDTK", + "name": "Ressons-le-Long, Poulandon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.55191, + 49.4706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PYTEXJA", + "ref": "YTEXJA", + "name": "Monampteuil, Axo Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.55191, + 49.4706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PYTEXJA", + "ref": "YTEXJA", + "name": "Monampteuil, Axo Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.66558, + 49.4688 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PKVRWMP", + "ref": "KVRWMP", + "name": "Chamouille, Cap Aisne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.66558, + 49.4688 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PKVRWMP", + "ref": "KVRWMP", + "name": "Chamouille, Cap Aisne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3118, + 49.3772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PNFTXEN", + "ref": "NFTXEN", + "name": "Soissons, Halte St. Christophe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32435, + 49.3863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSOISSBARA", + "ref": "soissbara", + "name": "Soissons, Bara", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32435, + 49.3863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSOISSBARA", + "ref": "soissbara", + "name": "Soissons, Bara", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32106, + 49.3749 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PPJZZXM", + "ref": "PJZZXM", + "name": "Soissons, Innovation", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6109, + 49.5612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PDTPERS", + "ref": "DTPERS", + "name": "Laon, Place R. Aumont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32106, + 49.3749 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PPJZZXM", + "ref": "PJZZXM", + "name": "Soissons, Innovation", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31649, + 49.3864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSOISSONSDAMA", + "ref": "soissonsdama", + "name": "Soissons, Place Lamartine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31649, + 49.3864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSOISSONSDAMA", + "ref": "soissonsdama", + "name": "Soissons, Place Lamartine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29915, + 49.3799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PMERCINBAINS", + "ref": "Mercinbains", + "name": "Mercin-et-Vaux, Bains-du-Lac", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.51623, + 49.4105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS02PSUPFYC", + "ref": "SUPFYC", + "name": "Vailly-sur-Aisne, Edouard Herriot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08473895, + 49.23618569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHJWNEXIN5", + "ref": "THJWNEXIN5", + "name": "Reims, Delhorbe Automobile Volvo", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08473895, + 49.23618569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHJWNEXIN5", + "ref": "THJWNEXIN5", + "name": "Reims, Delhorbe Automobile Volvo", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9622, + 49.063363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMEYJUE0LKV", + "ref": "MEYJUE0LKV", + "name": "Dizy les bas jardins, Delhorbe Automobiles", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.409148, + 46.318161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKYUVJINTQC", + "ref": "KYUVJINTQC", + "name": "Niort, Rue de l'Aérodrome", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.409148, + 46.318161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKYUVJINTQC", + "ref": "KYUVJINTQC", + "name": "Niort, Rue de l'Aérodrome", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.409148, + 46.318161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKYUVJINTQC", + "ref": "KYUVJINTQC", + "name": "Niort, Rue de l'Aérodrome", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.80215, + 50.21212 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTGEZRIQCB9", + "ref": "TGEZRIQCB9", + "name": "Boisleux-Saint-Marc, Dubois Electricité", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.57620346, + 50.34574686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POUS5RTX2UW", + "ref": "OUS5RTX2UW", + "name": "Fort Mahon Plage, Naturotel", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.86952585, + 50.10547019 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPUSQCHVOAB", + "ref": "PUSQCHVOAB", + "name": "E. Leclerc Bapaume", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.86952585, + 50.10547019 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPUSQCHVOAB", + "ref": "PUSQCHVOAB", + "name": "E. Leclerc Bapaume", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.86952585, + 50.10547019 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPUSQCHVOAB", + "ref": "PUSQCHVOAB", + "name": "E. Leclerc Bapaume", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.86952585, + 50.10547019 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPUSQCHVOAB", + "ref": "PUSQCHVOAB", + "name": "E. Leclerc Bapaume", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.86952585, + 50.10547019 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPUSQCHVOAB", + "ref": "PUSQCHVOAB", + "name": "E. Leclerc Bapaume", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4957, + 48.4681 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PELECLEROBER", + "ref": "eleclerober", + "name": "Obernai, E. Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4957, + 48.4681 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PELECLEROBER", + "ref": "eleclerober", + "name": "Obernai, E. Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13611955, + 49.10756782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVRGXDRTTO6", + "ref": "VRGXDRTTO6", + "name": "E. Leclerc, Agneaux", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13611955, + 49.10756782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVRGXDRTTO6", + "ref": "VRGXDRTTO6", + "name": "E. Leclerc, Agneaux", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13611955, + 49.10756782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVRGXDRTTO6", + "ref": "VRGXDRTTO6", + "name": "E. Leclerc, Agneaux", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13611955, + 49.10756782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVRGXDRTTO6", + "ref": "VRGXDRTTO6", + "name": "E. Leclerc, Agneaux", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13611955, + 49.10756782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVRGXDRTTO6", + "ref": "VRGXDRTTO6", + "name": "E. Leclerc, Agneaux", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13611955, + 49.10756782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVRGXDRTTO6", + "ref": "VRGXDRTTO6", + "name": "E. Leclerc, Agneaux", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13611955, + 49.10756782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVRGXDRTTO6", + "ref": "VRGXDRTTO6", + "name": "E. Leclerc, Agneaux", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13611955, + 49.10756782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVRGXDRTTO6", + "ref": "VRGXDRTTO6", + "name": "E. Leclerc, Agneaux", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.409148, + 46.318161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKYUVJINTQC", + "ref": "KYUVJINTQC", + "name": "Niort, Rue de l'Aérodrome", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.409148, + 46.318161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKYUVJINTQC", + "ref": "KYUVJINTQC", + "name": "Niort, Rue de l'Aérodrome", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13611955, + 49.10756782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVRGXDRTTO6", + "ref": "VRGXDRTTO6", + "name": "E. Leclerc, Agneaux", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.409148, + 46.318161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKYUVJINTQC", + "ref": "KYUVJINTQC", + "name": "Niort, Rue de l'Aérodrome", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.636987, + 43.192046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPEBXB9YXF", + "ref": "NPEBXB9YXF", + "name": "Ramatuelle, Route de l'Escalet", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.636987, + 43.192046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPEBXB9YXF", + "ref": "NPEBXB9YXF", + "name": "Ramatuelle, Route de l'Escalet", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.636987, + 43.192046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPEBXB9YXF", + "ref": "NPEBXB9YXF", + "name": "Ramatuelle, Route de l'Escalet", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52300746, + 43.49607369 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMAIBZUMHHF", + "ref": "MAIBZUMHHF", + "name": "Meyreuil, Rond-Point du Canet", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52300746, + 43.49607369 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMAIBZUMHHF", + "ref": "MAIBZUMHHF", + "name": "Meyreuil, Rond-Point du Canet", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52300746, + 43.49607369 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMAIBZUMHHF", + "ref": "MAIBZUMHHF", + "name": "Meyreuil, Rond-Point du Canet", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52300746, + 43.49607369 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMAIBZUMHHF", + "ref": "MAIBZUMHHF", + "name": "Meyreuil, Rond-Point du Canet", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52300746, + 43.49607369 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMAIBZUMHHF", + "ref": "MAIBZUMHHF", + "name": "Meyreuil, Rond-Point du Canet", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.149592, + 47.642093 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVUNAICL53Z", + "ref": "VUNAICL53Z", + "name": "Vesoul, Rue Pierre Emmonot", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.149592, + 47.642093 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVUNAICL53Z", + "ref": "VUNAICL53Z", + "name": "Vesoul, Rue Pierre Emmonot", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.149592, + 47.642093 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVUNAICL53Z", + "ref": "VUNAICL53Z", + "name": "Vesoul, Rue Pierre Emmonot", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.149592, + 47.642093 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVUNAICL53Z", + "ref": "VUNAICL53Z", + "name": "Vesoul, Rue Pierre Emmonot", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37487, + 48.718814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG3DXGKYHRM", + "ref": "G3DXGKYHRM", + "name": "Vernouillet, Dreux Motors", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37487, + 48.718814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG3DXGKYHRM", + "ref": "G3DXGKYHRM", + "name": "Vernouillet, Dreux Motors", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37487, + 48.718814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG3DXGKYHRM", + "ref": "G3DXGKYHRM", + "name": "Vernouillet, Dreux Motors", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.409148, + 46.318161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKYUVJINTQC", + "ref": "KYUVJINTQC", + "name": "Niort, Rue de l'Aérodrome", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.409148, + 46.318161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKYUVJINTQC", + "ref": "KYUVJINTQC", + "name": "Niort, Rue de l'Aérodrome", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.409148, + 46.318161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKYUVJINTQC", + "ref": "KYUVJINTQC", + "name": "Niort, Rue de l'Aérodrome", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.409148, + 46.318161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKYUVJINTQC", + "ref": "KYUVJINTQC", + "name": "Niort, Rue de l'Aérodrome", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13611955, + 49.10756782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVRGXDRTTO6", + "ref": "VRGXDRTTO6", + "name": "E. Leclerc, Agneaux", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01307564, + 48.75260609 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PV4QRFQWA0I", + "ref": "V4QRFQWA0I", + "name": "E. Leclerc, Argentan", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9622, + 49.063363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMEYJUE0LKV", + "ref": "MEYJUE0LKV", + "name": "Dizy les bas jardins, Delhorbe Automobiles", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85478746, + 46.99932607 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PY4W4XRLU0W", + "ref": "Y4W4XRLU0W", + "name": "E. Leclerc, Levernois", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5111863, + 46.28925255 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVN1NPSWHO2", + "ref": "VN1NPSWHO2", + "name": "E. Leclerc, Bessines", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5111863, + 46.28925255 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVN1NPSWHO2", + "ref": "VN1NPSWHO2", + "name": "E. Leclerc, Bessines", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5111863, + 46.28925255 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVN1NPSWHO2", + "ref": "VN1NPSWHO2", + "name": "E. Leclerc, Bessines", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5111863, + 46.28925255 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVN1NPSWHO2", + "ref": "VN1NPSWHO2", + "name": "E. Leclerc, Bessines", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5111863, + 46.28925255 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVN1NPSWHO2", + "ref": "VN1NPSWHO2", + "name": "E. Leclerc, Bessines", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.17062351, + 44.41122908 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PROTRW5ZTBM", + "ref": "ROTRW5ZTBM", + "name": "E.Leclerc, Biscarrosse Centre Auto", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.17062351, + 44.41122908 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PROTRW5ZTBM", + "ref": "ROTRW5ZTBM", + "name": "E.Leclerc, Biscarrosse Centre Auto", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVFHQDF7H5S", + "ref": "VFHQDF7H5S", + "name": "E. Leclerc, Bonneuil-sur-Marne express", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVFHQDF7H5S", + "ref": "VFHQDF7H5S", + "name": "E. Leclerc, Bonneuil-sur-Marne express", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVFHQDF7H5S", + "ref": "VFHQDF7H5S", + "name": "E. Leclerc, Bonneuil-sur-Marne express", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVFHQDF7H5S", + "ref": "VFHQDF7H5S", + "name": "E. Leclerc, Bonneuil-sur-Marne express", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVFHQDF7H5S", + "ref": "VFHQDF7H5S", + "name": "E. Leclerc, Bonneuil-sur-Marne express", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVFHQDF7H5S", + "ref": "VFHQDF7H5S", + "name": "E. Leclerc, Bonneuil-sur-Marne express", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWZWROIDFBO", + "ref": "WZWROIDFBO", + "name": "E. Leclerc, Bourgoin-Jallieu", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWZWROIDFBO", + "ref": "WZWROIDFBO", + "name": "E. Leclerc, Bourgoin-Jallieu", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWZWROIDFBO", + "ref": "WZWROIDFBO", + "name": "E. Leclerc, Bourgoin-Jallieu", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWZWROIDFBO", + "ref": "WZWROIDFBO", + "name": "E. Leclerc, Bourgoin-Jallieu", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWZWROIDFBO", + "ref": "WZWROIDFBO", + "name": "E. Leclerc, Bourgoin-Jallieu", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWZWROIDFBO", + "ref": "WZWROIDFBO", + "name": "E. Leclerc, Bourgoin-Jallieu", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5111863, + 46.28925255 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVN1NPSWHO2", + "ref": "VN1NPSWHO2", + "name": "E. Leclerc, Bessines", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84283778, + 47.04146327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PT1K60S6LOO", + "ref": "T1K60S6LOO", + "name": "E. Leclerc, Beaune", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01307564, + 48.75260609 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PV4QRFQWA0I", + "ref": "V4QRFQWA0I", + "name": "E. Leclerc, Argentan", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85478746, + 46.99932607 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PY4W4XRLU0W", + "ref": "Y4W4XRLU0W", + "name": "E. Leclerc, Levernois", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01307564, + 48.75260609 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PV4QRFQWA0I", + "ref": "V4QRFQWA0I", + "name": "E. Leclerc, Argentan", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.01307564, + 48.75260609 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PV4QRFQWA0I", + "ref": "V4QRFQWA0I", + "name": "E. Leclerc, Argentan", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.90327691, + 49.37008542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNYMVETIFEG", + "ref": "NYMVETIFEG", + "name": "E. Leclerc, Audun-Le-Roman", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.90327691, + 49.37008542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNYMVETIFEG", + "ref": "NYMVETIFEG", + "name": "E. Leclerc, Audun-Le-Roman", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.90327691, + 49.37008542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNYMVETIFEG", + "ref": "NYMVETIFEG", + "name": "E. Leclerc, Audun-Le-Roman", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.90327691, + 49.37008542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNYMVETIFEG", + "ref": "NYMVETIFEG", + "name": "E. Leclerc, Audun-Le-Roman", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.04457019, + 49.45808488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFD8OWVSZIC", + "ref": "FD8OWVSZIC", + "name": "E.Leclerc, Bapeaume-les-Rouen", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.04457019, + 49.45808488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFD8OWVSZIC", + "ref": "FD8OWVSZIC", + "name": "E.Leclerc, Bapeaume-les-Rouen", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.04457019, + 49.45808488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFD8OWVSZIC", + "ref": "FD8OWVSZIC", + "name": "E.Leclerc, Bapeaume-les-Rouen", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.04457019, + 49.45808488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFD8OWVSZIC", + "ref": "FD8OWVSZIC", + "name": "E.Leclerc, Bapeaume-les-Rouen", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.04457019, + 49.45808488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFD8OWVSZIC", + "ref": "FD8OWVSZIC", + "name": "E.Leclerc, Bapeaume-les-Rouen", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.04457019, + 49.45808488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFD8OWVSZIC", + "ref": "FD8OWVSZIC", + "name": "E.Leclerc, Bapeaume-les-Rouen", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84283778, + 47.04146327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PT1K60S6LOO", + "ref": "T1K60S6LOO", + "name": "E. Leclerc, Beaune", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85478746, + 46.99932607 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PY4W4XRLU0W", + "ref": "Y4W4XRLU0W", + "name": "E. Leclerc, Levernois", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84283778, + 47.04146327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PT1K60S6LOO", + "ref": "T1K60S6LOO", + "name": "E. Leclerc, Beaune", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84283778, + 47.04146327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PT1K60S6LOO", + "ref": "T1K60S6LOO", + "name": "E. Leclerc, Beaune", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85478746, + 46.99932607 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PY4W4XRLU0W", + "ref": "Y4W4XRLU0W", + "name": "E. Leclerc, Levernois", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84283778, + 47.04146327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PT1K60S6LOO", + "ref": "T1K60S6LOO", + "name": "E. Leclerc, Beaune", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84283778, + 47.04146327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PT1K60S6LOO", + "ref": "T1K60S6LOO", + "name": "E. Leclerc, Beaune", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.636987, + 43.192046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPEBXB9YXF", + "ref": "NPEBXB9YXF", + "name": "Ramatuelle, Route de l'Escalet", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.636987, + 43.192046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPEBXB9YXF", + "ref": "NPEBXB9YXF", + "name": "Ramatuelle, Route de l'Escalet", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.636987, + 43.192046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPEBXB9YXF", + "ref": "NPEBXB9YXF", + "name": "Ramatuelle, Route de l'Escalet", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03379187, + 42.57529937 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRK1CDAXWF", + "ref": "LRK1CDAXWF", + "name": "Argelès-sur-Mer, Domaine Saint Thomas", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55516881, + 42.21474029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX1F885A2LS", + "ref": "X1F885A2LS", + "name": "Bravone, Domaine de Bagheera", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55516881, + 42.21474029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX1F885A2LS", + "ref": "X1F885A2LS", + "name": "Bravone, Domaine de Bagheera", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55516881, + 42.21474029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX1F885A2LS", + "ref": "X1F885A2LS", + "name": "Bravone, Domaine de Bagheera", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55516881, + 42.21474029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX1F885A2LS", + "ref": "X1F885A2LS", + "name": "Bravone, Domaine de Bagheera", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55516881, + 42.21474029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX1F885A2LS", + "ref": "X1F885A2LS", + "name": "Bravone, Domaine de Bagheera", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55516881, + 42.21474029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX1F885A2LS", + "ref": "X1F885A2LS", + "name": "Bravone, Domaine de Bagheera", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.22030274, + 47.90274394 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXAIIQFT7IW", + "ref": "XAIIQFT7IW", + "name": "Guebwiller, Rue des Larrons", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32486224, + 46.49628283 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQSJIQWEZ6G", + "ref": "QSJIQWEZ6G", + "name": "Champagnat, Lieu dit Louvarel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32486224, + 46.49628283 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQSJIQWEZ6G", + "ref": "QSJIQWEZ6G", + "name": "Champagnat, Lieu dit Louvarel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.63860668, + 43.95013839 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGJO5868P4K", + "ref": "GJO5868P4K", + "name": "Estézargues, Domaine de Pierredon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.552278, + 42.160753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUGFTMLOCNC", + "ref": "UGFTMLOCNC", + "name": "Aléria, Domaine de Riva Bella", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.552278, + 42.160753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUGFTMLOCNC", + "ref": "UGFTMLOCNC", + "name": "Aléria, Domaine de Riva Bella", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.552278, + 42.160753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUGFTMLOCNC", + "ref": "UGFTMLOCNC", + "name": "Aléria, Domaine de Riva Bella", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.552278, + 42.160753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUGFTMLOCNC", + "ref": "UGFTMLOCNC", + "name": "Aléria, Domaine de Riva Bella", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.553523, + 42.157101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDS2ZKBGWPN", + "ref": "DS2ZKBGWPN", + "name": "Aléria, Domaine de Riva Bella, SPA", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.553523, + 42.157101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDS2ZKBGWPN", + "ref": "DS2ZKBGWPN", + "name": "Aléria, Domaine de Riva Bella, SPA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.41141694, + 44.43387149 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYSYP1FUAQD", + "ref": "YSYP1FUAQD", + "name": "Domaine de Sévenier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.41141694, + 44.43387149 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYSYP1FUAQD", + "ref": "YSYP1FUAQD", + "name": "Domaine de Sévenier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.41141694, + 44.43387149 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYSYP1FUAQD", + "ref": "YSYP1FUAQD", + "name": "Domaine de Sévenier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03379187, + 42.57529937 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRK1CDAXWF", + "ref": "LRK1CDAXWF", + "name": "Argelès-sur-Mer, Domaine Saint Thomas", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2065939, + 43.65908238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTIOCISWLO", + "ref": "BTIOCISWLO", + "name": "Aimargues, Domaine de Malherbes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.636987, + 43.192046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPEBXB9YXF", + "ref": "NPEBXB9YXF", + "name": "Ramatuelle, Route de l'Escalet", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2065939, + 43.65908238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTIOCISWLO", + "ref": "BTIOCISWLO", + "name": "Aimargues, Domaine de Malherbes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9622, + 49.063363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMEYJUE0LKV", + "ref": "MEYJUE0LKV", + "name": "Dizy les bas jardins, Delhorbe Automobiles", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9622, + 49.063363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMEYJUE0LKV", + "ref": "MEYJUE0LKV", + "name": "Dizy les bas jardins, Delhorbe Automobiles", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9622, + 49.063363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMEYJUE0LKV", + "ref": "MEYJUE0LKV", + "name": "Dizy les bas jardins, Delhorbe Automobiles", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9622, + 49.063363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMEYJUE0LKV", + "ref": "MEYJUE0LKV", + "name": "Dizy les bas jardins, Delhorbe Automobiles", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17431, + 49.12 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMETZCAT", + "ref": "metzcat", + "name": "Metz, Parking Cathédrale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17431, + 49.12 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMETZCAT", + "ref": "metzcat", + "name": "Metz, Parking Cathédrale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.68692541, + 48.53113555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQZGNESQT2U", + "ref": "QZGNESQT2U", + "name": "Vaux-le-Pénil, rue Einstein", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.68692541, + 48.53113555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQZGNESQT2U", + "ref": "QZGNESQT2U", + "name": "Vaux-le-Pénil, rue Einstein", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.018832, + 49.486412 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM3QO1Y3NBX", + "ref": "M3QO1Y3NBX", + "name": "Saint Jean du Cardonnay , Route du Havre", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43950231, + 43.63320379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PITD8L7L5KT", + "ref": "ITD8L7L5KT", + "name": "Clermont-l'Hérault, Route de Montpellier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43950231, + 43.63320379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PITD8L7L5KT", + "ref": "ITD8L7L5KT", + "name": "Clermont-l'Hérault, Route de Montpellier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.92311, + 48.7593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAA86CZDAIR", + "ref": "AA86CZDAIR", + "name": "Maurepas, Doga", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.92311, + 48.7593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAA86CZDAIR", + "ref": "AA86CZDAIR", + "name": "Maurepas, Doga", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.92311, + 48.7593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAA86CZDAIR", + "ref": "AA86CZDAIR", + "name": "Maurepas, Doga", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.92311, + 48.7593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAA86CZDAIR", + "ref": "AA86CZDAIR", + "name": "Maurepas, Doga", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19986463, + 44.0331341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGQ1TNKNZLU", + "ref": "GQ1TNKNZLU", + "name": "Uza, Domaine Alexandre de Lur saluces", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19986463, + 44.0331341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGQ1TNKNZLU", + "ref": "GQ1TNKNZLU", + "name": "Uza, Domaine Alexandre de Lur saluces", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66828015, + 50.23791785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJL2912T1FX", + "ref": "JL2912T1FX", + "name": "Favières, Domaine Les Saules", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2065939, + 43.65908238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTIOCISWLO", + "ref": "BTIOCISWLO", + "name": "Aimargues, Domaine de Malherbes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.41141694, + 44.43387149 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYSYP1FUAQD", + "ref": "YSYP1FUAQD", + "name": "Domaine de Sévenier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.578482, + 48.879555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTDWPWURGFJ", + "ref": "TDWPWURGFJ", + "name": "Domaine des Bufflonnes", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.26803271, + 44.39123414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWZFERVLS6W", + "ref": "WZFERVLS6W", + "name": "Grospierres, Domaine des Garrigues", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.26803271, + 44.39123414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWZFERVLS6W", + "ref": "WZFERVLS6W", + "name": "Grospierres, Domaine des Garrigues", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.069095, + 43.623003 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCEEY592G4", + "ref": "SCEEY592G4", + "name": "Biot, Avenue Roumanille", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.069095, + 43.623003 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCEEY592G4", + "ref": "SCEEY592G4", + "name": "Biot, Avenue Roumanille", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.069095, + 43.623003 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCEEY592G4", + "ref": "SCEEY592G4", + "name": "Biot, Avenue Roumanille", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.541409, + 43.477967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQHOHHOBGVO", + "ref": "QHOHHOBGVO", + "name": "Fuveau, ZAC de la Barque", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.541409, + 43.477967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQHOHHOBGVO", + "ref": "QHOHHOBGVO", + "name": "Fuveau, ZAC de la Barque", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.541409, + 43.477967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQHOHHOBGVO", + "ref": "QHOHHOBGVO", + "name": "Fuveau, ZAC de la Barque", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.541409, + 43.477967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQHOHHOBGVO", + "ref": "QHOHHOBGVO", + "name": "Fuveau, ZAC de la Barque", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.541409, + 43.477967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQHOHHOBGVO", + "ref": "QHOHHOBGVO", + "name": "Fuveau, ZAC de la Barque", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13100246, + 50.59615599 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ4JVAXJQH0", + "ref": "Q4JVAXJQH0", + "name": "Lesquin, Rue des Bouleaux", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13100246, + 50.59615599 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ4JVAXJQH0", + "ref": "Q4JVAXJQH0", + "name": "Lesquin, Rue des Bouleaux", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13100246, + 50.59615599 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ4JVAXJQH0", + "ref": "Q4JVAXJQH0", + "name": "Lesquin, Rue des Bouleaux", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13100246, + 50.59615599 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ4JVAXJQH0", + "ref": "Q4JVAXJQH0", + "name": "Lesquin, Rue des Bouleaux", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13100246, + 50.59615599 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ4JVAXJQH0", + "ref": "Q4JVAXJQH0", + "name": "Lesquin, Rue des Bouleaux", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.790802, + 45.208576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZET3IOQSGY", + "ref": "ZET3IOQSGY", + "name": "Meylan, Chemin du Vieux Chêne", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.790802, + 45.208576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZET3IOQSGY", + "ref": "ZET3IOQSGY", + "name": "Meylan, Chemin du Vieux Chêne", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.790802, + 45.208576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZET3IOQSGY", + "ref": "ZET3IOQSGY", + "name": "Meylan, Chemin du Vieux Chêne", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.790802, + 45.208576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZET3IOQSGY", + "ref": "ZET3IOQSGY", + "name": "Meylan, Chemin du Vieux Chêne", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.790802, + 45.208576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZET3IOQSGY", + "ref": "ZET3IOQSGY", + "name": "Meylan, Chemin du Vieux Chêne", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.636987, + 43.192046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPEBXB9YXF", + "ref": "NPEBXB9YXF", + "name": "Ramatuelle, Route de l'Escalet", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.069095, + 43.623003 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCEEY592G4", + "ref": "SCEEY592G4", + "name": "Biot, Avenue Roumanille", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.069095, + 43.623003 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCEEY592G4", + "ref": "SCEEY592G4", + "name": "Biot, Avenue Roumanille", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52996847, + 43.49045736 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGY3ENDUNAL", + "ref": "GY3ENDUNAL", + "name": "Meyreuil, Rue de la Carrière de Bachasson", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56440864, + 46.64140412 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI1HDD2GWRT7N", + "ref": "LLI1HDD2GWRT7N", + "name": "Vernantois, Domaine du Val de Sorne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR3XWXLIQVP", + "ref": "R3XWXLIQVP", + "name": "E. Leclerc, Orvault Parking Aérien", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.09837296, + 47.45462025 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS141EGXVGU", + "ref": "S141EGXVGU", + "name": "Mosnes, Rue des Thomeaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.744058, + 44.468806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQAFCVFAWVK", + "ref": "QAFCVFAWVK", + "name": "Malataverne, chemin de Malombre", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.744058, + 44.468806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQAFCVFAWVK", + "ref": "QAFCVFAWVK", + "name": "Malataverne, chemin de Malombre", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.744058, + 44.468806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQAFCVFAWVK", + "ref": "QAFCVFAWVK", + "name": "Malataverne, chemin de Malombre", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.744058, + 44.468806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQAFCVFAWVK", + "ref": "QAFCVFAWVK", + "name": "Malataverne, chemin de Malombre", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.29787, + 47.961414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYDHE3VJJY9", + "ref": "YDHE3VJJY9", + "name": "Rouffach, rue Raymond Poincaré", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.29787, + 47.961414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYDHE3VJJY9", + "ref": "YDHE3VJJY9", + "name": "Rouffach, rue Raymond Poincaré", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56440864, + 46.64140412 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI1HDD2GWRT7N", + "ref": "LLI1HDD2GWRT7N", + "name": "Vernantois, Domaine du Val de Sorne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52996847, + 43.49045736 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGY3ENDUNAL", + "ref": "GY3ENDUNAL", + "name": "Meyreuil, Rue de la Carrière de Bachasson", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56440864, + 46.64140412 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI1HDD2GWRT7N", + "ref": "LLI1HDD2GWRT7N", + "name": "Vernantois, Domaine du Val de Sorne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56440864, + 46.64140412 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI1HDD2GWRT7N", + "ref": "LLI1HDD2GWRT7N", + "name": "Vernantois, Domaine du Val de Sorne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.19029424, + 47.87876097 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYSATF07ZM0", + "ref": "YSATF07ZM0", + "name": "Jungholtz, Rte de Thierenbach", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.19029424, + 47.87876097 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYSATF07ZM0", + "ref": "YSATF07ZM0", + "name": "Jungholtz, Rte de Thierenbach", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.19029424, + 47.87876097 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYSATF07ZM0", + "ref": "YSATF07ZM0", + "name": "Jungholtz, Rte de Thierenbach", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52996847, + 43.49045736 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGY3ENDUNAL", + "ref": "GY3ENDUNAL", + "name": "Meyreuil, Rue de la Carrière de Bachasson", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52996847, + 43.49045736 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGY3ENDUNAL", + "ref": "GY3ENDUNAL", + "name": "Meyreuil, Rue de la Carrière de Bachasson", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52996847, + 43.49045736 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGY3ENDUNAL", + "ref": "GY3ENDUNAL", + "name": "Meyreuil, Rue de la Carrière de Bachasson", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.386764, + 46.347566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFJFZXU8ENZ", + "ref": "FJFZXU8ENZ", + "name": "La Tranche-sur-Mer, Camping du Jard", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2204, + 46.9809 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFZQWDNZP1W", + "ref": "FZQWDNZP1W", + "name": "St-Eloi, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62049141, + 46.50972776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESLPQIB7IA", + "ref": "ESLPQIB7IA", + "name": "Écrille, Camping de la Faz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.992732, + 48.1995538 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PWO6VCOTK0I", + "ref": "WO6VCOTK0I", + "name": "Cheroy, Parking Intermarche", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32516, + 48.24885109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PPJXN1PMJGC", + "ref": "PJXN1PMJGC", + "name": "Soucy, 1 Place du Moment", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35302339, + 48.21262288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PVPR7IBU3VQ", + "ref": "VPR7IBU3VQ", + "name": "Saligny, rue du Gue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29046029, + 48.1983793 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PAVO6WOWEGE", + "ref": "AVO6WOWEGE", + "name": "Sens, Abords de la Place des Héros", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.19294184, + 48.15891118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PQCG03FUW7F", + "ref": "QCG03FUW7F", + "name": "Subligny, 24 rue du Champ du Cerf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39692652, + 48.29543923 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PDU2KLXCRUO", + "ref": "DU2KLXCRUO", + "name": "Thorigny-Sur-Oreuse, Place du Cerbouilly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5061168, + 48.34271681 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PBYVHZM8W55", + "ref": "BYVHZM8W55", + "name": "Saint-Maurice-Aux-Riches-Hommes, rue Dr Courtois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09662083, + 48.17929342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PJVE4YVDDY8", + "ref": "JVE4YVDDY8", + "name": "Saint-Valerien, 20 rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42688814, + 48.16737167 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PBX2FMMHQG6", + "ref": "BX2FMMHQG6", + "name": "Theil-Sur-Vanne, 4 Rt du Miroir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27002048, + 48.19667382 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PECMOSMPEFO", + "ref": "ECMOSMPEFO", + "name": "Sens, Parking Gare Baudry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1360503, + 48.1387833 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89POLVXFNK8GY", + "ref": "OLVXFNK8GY", + "name": "Villeneuve-La-Dondagre, rue des Vignes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0821601, + 48.3240062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PVMMH9IWEVE", + "ref": "VMMH9IWEVE", + "name": "Villeblevin, Place de la Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09662083, + 48.17929342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PJVE4YVDDY8", + "ref": "JVE4YVDDY8", + "name": "Saint-Valerien, 20 rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27002048, + 48.19667382 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PECMOSMPEFO", + "ref": "ECMOSMPEFO", + "name": "Sens, Parking Gare Baudry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0821601, + 48.3240062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PVMMH9IWEVE", + "ref": "VMMH9IWEVE", + "name": "Villeblevin, Place de la Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.992732, + 48.1995538 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PWO6VCOTK0I", + "ref": "WO6VCOTK0I", + "name": "Cheroy, Parking Intermarche", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7283349, + 48.00171053 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PACURO64Z5F", + "ref": "ACURO64Z5F", + "name": "Saint-Florentin, Place Louis dubost", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7283349, + 48.00171053 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PACURO64Z5F", + "ref": "ACURO64Z5F", + "name": "Saint-Florentin, Place Louis dubost", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-03", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.295757, + 48.088292 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PQOFFE7IHNI", + "ref": "QOFFE7IHNI", + "name": "Villeneuve-Sur-Yonne, Faubourg Saint Nicolas", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.295757, + 48.088292 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PQOFFE7IHNI", + "ref": "QOFFE7IHNI", + "name": "Villeneuve-Sur-Yonne, Faubourg Saint Nicolas", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1360503, + 48.1387833 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89POLVXFNK8GY", + "ref": "OLVXFNK8GY", + "name": "Villeneuve-La-Dondagre, rue des Vignes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.788198, + 47.440595 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PJLD6VKWKG7", + "ref": "JLD6VKWKG7", + "name": "Saint-Seine-L'Abbaye, Parking rue Carnot ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.771158, + 46.978156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PSPHUA5RFWJ", + "ref": "SPHUA5RFWJ", + "name": "Meursault, Parking rue des Citeaux ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26034641, + 48.34304529 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PWNRYGDUGDQ", + "ref": "WNRYGDUGDQ", + "name": "Sergines, 3 rue de L'Hotel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5061168, + 48.34271681 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PBYVHZM8W55", + "ref": "BYVHZM8W55", + "name": "Saint-Maurice-Aux-Riches-Hommes, rue Dr Courtois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.94829543, + 47.13451056 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PI1KBZZA5DT", + "ref": "I1KBZZA5DT", + "name": "Nuits-Saint-Georges, Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27625239, + 48.196246 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PRVM9WQYHNE", + "ref": "RVM9WQYHNE", + "name": "Sens, Quai Ernest landry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.22550631, + 48.22329579 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PBRDLUZETXL", + "ref": "BRDLUZETXL", + "name": "Nailly, rue de L Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2934, + 48.08561 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PK8AQTKTMH6", + "ref": "K8AQTKTMH6", + "name": "Villeneuve-Sur-Yonne, Contre Allée Bd Marceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5574433, + 48.2339607 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PSI15JQVFV0", + "ref": "SI15JQVFV0", + "name": "Villeneuve-L'Archeveque, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.06671977, + 48.34022524 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PONM5JTR0HR", + "ref": "ONM5JTR0HR", + "name": "Villeneuve-La-Guyard, 8 rue de la Vallee", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.279557, + 48.197436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PDOV1RQ6FH9", + "ref": "DOV1RQ6FH9", + "name": "Sens, Place des Jacobins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28408, + 48.195586 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PQ6IKLNJNWO", + "ref": "Q6IKLNJNWO", + "name": "Sens, Place Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29679, + 48.08409 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PNIMRJEM5YF", + "ref": "NIMRJEM5YF", + "name": "Villeneuve-Sur-Yonne, Parking rue Saint-Jean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.05021346, + 48.3052349 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXHZG9LHHIP", + "ref": "XHZG9LHHIP", + "name": "Saint-Agnan, rue Paul Grappillard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2870472, + 48.217381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PVEL4IGFHEO", + "ref": "VEL4IGFHEO", + "name": "Saint-Clement, Place de L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2680166, + 48.22524608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PYQK2HF4E49", + "ref": "YQK2HF4E49", + "name": "Saint-Denis, rue Ernest Salmon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27002048, + 48.19667382 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PTZRYB3IGZ1", + "ref": "TZRYB3IGZ1", + "name": "Sens, Parking Gare Baudry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2680166, + 48.22524608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PYQK2HF4E49", + "ref": "YQK2HF4E49", + "name": "Saint-Denis, rue Ernest Salmon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30987141, + 48.15216003 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXLGIGXAO8M", + "ref": "XLGIGXAO8M", + "name": "Rosoy, 33 Contre Allée Cd606", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30987141, + 48.15216003 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXLGIGXAO8M", + "ref": "XLGIGXAO8M", + "name": "Rosoy, 33 Contre Allée Cd606", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.05021346, + 48.3052349 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXHZG9LHHIP", + "ref": "XHZG9LHHIP", + "name": "Saint-Agnan, rue Paul Grappillard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2870472, + 48.217381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PVEL4IGFHEO", + "ref": "VEL4IGFHEO", + "name": "Saint-Clement, Place de L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5574433, + 48.2339607 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PSI15JQVFV0", + "ref": "SI15JQVFV0", + "name": "Villeneuve-L'Archeveque, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.06671977, + 48.34022524 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PONM5JTR0HR", + "ref": "ONM5JTR0HR", + "name": "Villeneuve-La-Guyard, 8 rue de la Vallee", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29679, + 48.08409 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PNIMRJEM5YF", + "ref": "NIMRJEM5YF", + "name": "Villeneuve-Sur-Yonne, Parking rue Saint-Jean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35302339, + 48.21262288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PVPR7IBU3VQ", + "ref": "VPR7IBU3VQ", + "name": "Saligny, rue du Gue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29046029, + 48.1983793 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PAVO6WOWEGE", + "ref": "AVO6WOWEGE", + "name": "Sens, Abords de la Place des Héros", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2812817, + 48.2001433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PAIIZRA3GWT", + "ref": "AIIZRA3GWT", + "name": "Sens, Abords de la Place Garibaldi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.710612, + 47.313509 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PQDAWUSC5CV", + "ref": "QDAWUSC5CV", + "name": "Sombernon, Parking Salle des Fetes ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.962356, + 47.198513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PZYG035N2OW", + "ref": "ZYG035N2OW", + "name": "Morey-Saint-Denis, Parking Place Saint Vincent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.57231282, + 47.95238238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PGWPDQ07EIS", + "ref": "GWPDQ07EIS", + "name": "Ormoy, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.667447, + 47.10687 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PDSYBZMZ2OJ", + "ref": "DSYBZMZ2OJ", + "name": "Bligny-Sur-Ouche, Place du 8 Mai 1945 ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.055057, + 47.35246 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PTNV4EMC85I", + "ref": "TNV4EMC85I", + "name": "Dijon, rue Rene Char ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22118136, + 47.2413133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PD4GDWKU6P4", + "ref": "D4GDWKU6P4", + "name": "Genlis, Avenue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36558, + 47.525011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PLFYDOOHFLJ", + "ref": "LFYDOOHFLJ", + "name": "Fontaine-Francaise, Parking Ch dela Croix Brunot ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.640472, + 47.220194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PQABKCSRLPV", + "ref": "QABKCSRLPV", + "name": "Chateauneuf-En-Auxois, rue Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.730724, + 46.938293 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PHDKZLSMFE1", + "ref": "HDKZLSMFE1", + "name": "Chassagne-Montrachet, Place de L'Europe ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978646, + 47.260206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PBB7YAA9QQZ", + "ref": "BB7YAA9QQZ", + "name": "Couchey, Place Charles de Gaulle ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5721201, + 47.86279449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PH1NN2OESGW", + "ref": "H1NN2OESGW", + "name": "Chatillon-Sur-Seine, Place Cours L'Abbe ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.269768, + 47.467201 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PWZLYXEDHOC", + "ref": "WZLYXEDHOC", + "name": "Beze, rue Dominique Clement ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.38383655, + 47.19284387 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PXSP3WMHTEF", + "ref": "XSP3WMHTEF", + "name": "Auxonne, Place de L'Iliotte ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8236791, + 46.9858866 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PGHX1O8M83O", + "ref": "GHX1O8M83O", + "name": "Bligny-Les-Beaune, Parking devant la Mairie ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.219405, + 47.241996 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PK7BSJNLZAP", + "ref": "K7BSJNLZAP", + "name": "Genlis, Cours des Martyrs de la Résistance ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.10898773, + 47.52014855 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PVEXHH2DZUE", + "ref": "VEXHH2DZUE", + "name": "Is-Sur-Tille, Place Villeneuve Moret ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.10898773, + 47.52014855 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PVEXHH2DZUE", + "ref": "VEXHH2DZUE", + "name": "Is-Sur-Tille, Place Villeneuve Moret ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22118136, + 47.2413133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PD4GDWKU6P4", + "ref": "D4GDWKU6P4", + "name": "Genlis, Avenue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.771158, + 46.978156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PSPHUA5RFWJ", + "ref": "SPHUA5RFWJ", + "name": "Meursault, Parking rue des Citeaux ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.879176, + 47.073573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PQ5A81CXZQW", + "ref": "Q5A81CXZQW", + "name": "Ladoix-Serrigny, Avenue du Champ de Foire ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.055057, + 47.35246 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PTNV4EMC85I", + "ref": "TNV4EMC85I", + "name": "Dijon, rue Rene Char ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8164268, + 47.0628197 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PY0IJDZQJPJ", + "ref": "Y0IJDZQJPJ", + "name": "Savigny-Les-Beaune, rue du Chanoine Donin ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36558, + 47.525011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PLFYDOOHFLJ", + "ref": "LFYDOOHFLJ", + "name": "Fontaine-Francaise, Parking Ch dela Croix Brunot ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.174551, + 47.505772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PRZHA0AVXQL", + "ref": "RZHA0AVXQL", + "name": "Epoisses, Place du General de Candras ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4896383, + 47.1309424 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PUSNRCK1VXI", + "ref": "USNRCK1VXI", + "name": "Arnay-Le-Duc, Parking Pierre Meunier ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.459429, + 47.542961 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PBJNOG4MWPW", + "ref": "BJNOG4MWPW", + "name": "Venarey-Les-Laumes, Place de la Libération ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.174551, + 47.505772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PRZHA0AVXQL", + "ref": "RZHA0AVXQL", + "name": "Epoisses, Place du General de Candras ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.17472886, + 47.51473703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PUSYS88RTB5", + "ref": "USYS88RTB5", + "name": "Tilchatel, Parking route de langres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.63063337, + 46.95115721 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PXHDBE7OY3W", + "ref": "XHDBE7OY3W", + "name": "Nolay, Parking rue de la Poste ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.149525, + 46.997105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PIKODBJFESG", + "ref": "IKODBJFESG", + "name": "Seurre, Avenue de la Gare ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33899, + 47.622256 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PZ5PTFXJNAF", + "ref": "Z5PTFXJNAF", + "name": "Montbard, Parking Place du 8 Mai ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.23079647, + 47.28151538 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PU0NYWWAOQY", + "ref": "U0NYWWAOQY", + "name": "Saulieu, rue D'Argentine ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2623935, + 47.10452985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PIIQJYUNGSH", + "ref": "IIQJYUNGSH", + "name": "Saint-Jean-De-Losne, Avenue de la Gare D'Eau ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8164268, + 47.0628197 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PY0IJDZQJPJ", + "ref": "Y0IJDZQJPJ", + "name": "Savigny-Les-Beaune, rue du Chanoine Donin ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.335454, + 47.490227 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PXL48MPS8G5", + "ref": "XL48MPS8G5", + "name": "Semur-En-Auxois, Park. rue Jean Jacques Collenot ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.186601, + 47.586744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PUUXQDJWN4P", + "ref": "UUXQDJWN4P", + "name": "Selongey, Parking rue de L'éGlise ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.416139, + 47.304456 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PQKREGUWHSS", + "ref": "QKREGUWHSS", + "name": "Pontailler-Sur-Saone, Pl des Martyrs de la Résist", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.794804, + 47.00871788 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PINJVTNTI9G", + "ref": "INJVTNTI9G", + "name": "Pommard, Parking Place de L'Eglise ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.55660909, + 47.26238609 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PFCJXTFL0DV", + "ref": "FCJXTFL0DV", + "name": "Pouilly-En-Auxois, Place de la République ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.142181, + 47.237854 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PYWPQYYSS4K", + "ref": "YWPQYYSS4K", + "name": "Rouvres-En-Plaine, rue de la Tournelle ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.640472, + 47.220194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PQABKCSRLPV", + "ref": "QABKCSRLPV", + "name": "Chateauneuf-En-Auxois, rue Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.134624, + 47.216845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PECMQKU9KNJ", + "ref": "ECMQKU9KNJ", + "name": "Thorey-En-Plaine, route de Dijon ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.730724, + 46.938293 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PHDKZLSMFE1", + "ref": "HDKZLSMFE1", + "name": "Chassagne-Montrachet, Place de L'Europe ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978646, + 47.260206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PBB7YAA9QQZ", + "ref": "BB7YAA9QQZ", + "name": "Couchey, Place Charles de Gaulle ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5721201, + 47.86279449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PH1NN2OESGW", + "ref": "H1NN2OESGW", + "name": "Chatillon-Sur-Seine, Place Cours L'Abbe ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8236791, + 46.9858866 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PGHX1O8M83O", + "ref": "GHX1O8M83O", + "name": "Bligny-Les-Beaune, Parking devant la Mairie ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.38383655, + 47.19284387 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PXSP3WMHTEF", + "ref": "XSP3WMHTEF", + "name": "Auxonne, Place de L'Iliotte ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4896383, + 47.1309424 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PUSNRCK1VXI", + "ref": "USNRCK1VXI", + "name": "Arnay-Le-Duc, Parking Pierre Meunier ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.667447, + 47.10687 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PDSYBZMZ2OJ", + "ref": "DSYBZMZ2OJ", + "name": "Bligny-Sur-Ouche, Place du 8 Mai 1945 ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.269768, + 47.467201 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PWZLYXEDHOC", + "ref": "WZLYXEDHOC", + "name": "Beze, rue Dominique Clement ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2623935, + 47.10452985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PIIQJYUNGSH", + "ref": "IIQJYUNGSH", + "name": "Saint-Jean-De-Losne, Avenue de la Gare D'Eau ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.879176, + 47.073573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PQ5A81CXZQW", + "ref": "Q5A81CXZQW", + "name": "Ladoix-Serrigny, Avenue du Champ de Foire ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.47557699, + 48.19868899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PPVLAC5Y3JN", + "ref": "PVLAC5Y3JN", + "name": "Chigy, rue des Vieilles Chenevières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.59796211, + 48.09110535 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PBXADENINHL", + "ref": "BXADENINHL", + "name": "Arces-Dilo, 6 Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30749631, + 48.28968586 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PBAUQWL2XZK", + "ref": "BAUQWL2XZK", + "name": "La-Chapelle-Sur-Oreuse, 17 Grand rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.24322849, + 47.93862015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PL4SV657FSZ", + "ref": "L4SV657FSZ", + "name": "Sepeaux, Echangeur A6 Sur Cd945", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-06", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.73200014, + 47.66077552 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PHKSZNBMAIQ", + "ref": "HKSZNBMAIQ", + "name": "Vermenton, rue des Soupirs", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.71769496, + 47.97061618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PKEFA2NCMDL", + "ref": "KEFA2NCMDL", + "name": "Vergigny, 1 rue du Brue", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6368005, + 47.8067247 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PM2EKAJD91G", + "ref": "M2EKAJD91G", + "name": "Venoy, Place de la Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.97351, + 47.621967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PNHMKAMC2LI", + "ref": "NHMKAMC2LI", + "name": "Massangis, Ruelle d'Enfer", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.97351, + 47.621967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PNHMKAMC2LI", + "ref": "NHMKAMC2LI", + "name": "Massangis, Ruelle d'Enfer", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.97351, + 47.621967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PNHMKAMC2LI", + "ref": "NHMKAMC2LI", + "name": "Massangis, Ruelle d'Enfer", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1558136, + 47.5812445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PZV712M4PDY", + "ref": "ZV712M4PDY", + "name": "Treigny, Parking Château de Guedelon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.291223, + 47.732209 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PDNRVCQDURX", + "ref": "DNRVCQDURX", + "name": "Toucy, Avenue de la gare Rapide", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5804025, + 47.8479239 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PVHOOTUNF03", + "ref": "VHOOTUNF03", + "name": "Moneteau, Parking Espace Culturel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.50966513, + 47.96374608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PZ2LFDV9ICD", + "ref": "Z2LFDV9ICD", + "name": "Migennes, 90 Avenue Jean Jaures", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.291223, + 47.732209 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PDNRVCQDURX", + "ref": "DNRVCQDURX", + "name": "Toucy, Avenue de la gare Rapide", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.336888, + 47.707024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXCORTW51OS", + "ref": "XCORTW51OS", + "name": "Moulins-Sur-Ouanne, 11 rue Paul Arrighi", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.52757787, + 47.8013507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PAYXSCDI0WU", + "ref": "AYXSCDI0WU", + "name": "Saint-Georges-Sur-Baulche, rue de Bruxelles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.60951036, + 47.92888636 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PDX43HOHF9A", + "ref": "DX43HOHF9A", + "name": "Hauterive, Parking Poids Lourds", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1558136, + 47.5812445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PZV712M4PDY", + "ref": "ZV712M4PDY", + "name": "Treigny, Parking Château de Guedelon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.24322849, + 47.93862015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PL4SV657FSZ", + "ref": "L4SV657FSZ", + "name": "Sepeaux, Echangeur A6 Sur Cd945", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.539788, + 47.821982 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PIFL3AFTDY3", + "ref": "IFL3AFTDY3", + "name": "Perrigny, rue des Ecoles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.73200014, + 47.66077552 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PHKSZNBMAIQ", + "ref": "HKSZNBMAIQ", + "name": "Vermenton, rue des Soupirs", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.71769496, + 47.97061618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PKEFA2NCMDL", + "ref": "KEFA2NCMDL", + "name": "Vergigny, 1 rue du Brue", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6368005, + 47.8067247 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PM2EKAJD91G", + "ref": "M2EKAJD91G", + "name": "Venoy, Place de la Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.52757787, + 47.8013507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PAYXSCDI0WU", + "ref": "AYXSCDI0WU", + "name": "Saint-Georges-Sur-Baulche, rue de Bruxelles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.336888, + 47.707024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXCORTW51OS", + "ref": "XCORTW51OS", + "name": "Moulins-Sur-Ouanne, 11 rue Paul Arrighi", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.60951036, + 47.92888636 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PDX43HOHF9A", + "ref": "DX43HOHF9A", + "name": "Hauterive, Parking Poids Lourds", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.336888, + 47.707024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXCORTW51OS", + "ref": "XCORTW51OS", + "name": "Moulins-Sur-Ouanne, 11 rue Paul Arrighi", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2575271, + 48.2118863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89POBTODAY7YQ", + "ref": "OBTODAY7YQ", + "name": "Saint Martin du Tertre, Place Emilie Loubet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.79307672, + 48.04266162 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PUAFKYILXEA", + "ref": "UAFKYILXEA", + "name": "Neuvy-Sautour, route de Troyes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.21166092, + 47.85600811 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PVSJQ80Q6ZS", + "ref": "VSJQ80Q6ZS", + "name": "Cruzy-Le-Chatel, rue du Four", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7985363, + 47.8162201 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PGDSFD1GRQ5", + "ref": "GDSFD1GRQ5", + "name": "Chablis, Place Saint Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5150443, + 47.96251221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PRGSCLDYTHV", + "ref": "RGSCLDYTHV", + "name": "Migennes, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2890823, + 47.9744138 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PGE5GIEJMTM", + "ref": "GE5GIEJMTM", + "name": "La-Celle-Saint-Cyr, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0787814, + 47.7788174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PORELOOXXEX", + "ref": "ORELOOXXEX", + "name": "Champignelles, rue Jean Jacques Rousseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43990356, + 47.95138447 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PKVJYQPYE2S", + "ref": "KVJYQPYE2S", + "name": "Champlay, 50 Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0787814, + 47.7788174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PORELOOXXEX", + "ref": "ORELOOXXEX", + "name": "Champignelles, rue Jean Jacques Rousseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.459646, + 47.830781 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PHYBOIEYUXH", + "ref": "HYBOIEYUXH", + "name": "Charbuy, 50 Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.59902024, + 47.73803183 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PN2TOJUBYT5", + "ref": "N2TOJUBYT5", + "name": "Champs-Sur-Yonne, Place Saint Louis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4997946, + 47.61447201 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PFCCSV36CXN", + "ref": "FCCSV36CXN", + "name": "Courson-Les-Carrieres, Place de L Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4915517, + 47.9414334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PCMQEKFB2BP", + "ref": "CMQEKFB2BP", + "name": "Charmoy, route de Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.61674294, + 47.99331429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PFKDYATCML9", + "ref": "FKDYATCML9", + "name": "Brienon-Sur-Armancon, Place Emile Drominy", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.175336, + 47.610384 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PAIYZMSQLBC", + "ref": "AIYZMSQLBC", + "name": "Moutier-en-Puisaye, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.90832856, + 47.48937079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PYZOIQEYBLO", + "ref": "YZOIQEYBLO", + "name": "Avallon, rue Tour du Magasin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9467356, + 47.6989973 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PLYKHGRPY0K", + "ref": "LYKHGRPY0K", + "name": "Bleneau, Place du 11 Novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.69055871, + 47.6815771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PWMRHFI4HID", + "ref": "WMRHFI4HID", + "name": "Cravant, 26 rue Saint Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.72346938, + 47.81809778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PDKORVPTIL0", + "ref": "DKORVPTIL0", + "name": "Beine, Parking rue du Ruisseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.00304, + 47.58701 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PIOUDAC89QN", + "ref": "IOUDAC89QN", + "name": "L'Isle sur Serein, Place Saint Georges", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3504764, + 47.8748911 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PIJ9TQ4ZQGD", + "ref": "IJ9TQ4ZQGD", + "name": "Aillant-Sur-Tholon, rue de la Halle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.336888, + 47.707024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXCORTW51OS", + "ref": "XCORTW51OS", + "name": "Moulins-Sur-Ouanne, 11 rue Paul Arrighi", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.00304, + 47.58701 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PIOUDAC89QN", + "ref": "IOUDAC89QN", + "name": "L'Isle sur Serein, Place Saint Georges", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.97351, + 47.621967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PNHMKAMC2LI", + "ref": "NHMKAMC2LI", + "name": "Massangis, Ruelle d'Enfer", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.61674294, + 47.99331429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PFKDYATCML9", + "ref": "FKDYATCML9", + "name": "Brienon-Sur-Armancon, Place Emile Drominy", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3504764, + 47.8748911 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PIJ9TQ4ZQGD", + "ref": "IJ9TQ4ZQGD", + "name": "Aillant-Sur-Tholon, rue de la Halle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.539788, + 47.821982 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PIFL3AFTDY3", + "ref": "IFL3AFTDY3", + "name": "Perrigny, rue des Ecoles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26496823, + 48.2579944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PU1NNX3EPG6", + "ref": "U1NNX3EPG6", + "name": "Cuy, Place Lucien Pothier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.19294184, + 48.15891118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PQCG03FUW7F", + "ref": "QCG03FUW7F", + "name": "Subligny, 24 rue du Champ du Cerf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42688814, + 48.16737167 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PBX2FMMHQG6", + "ref": "BX2FMMHQG6", + "name": "Theil-Sur-Vanne, 4 Rt du Miroir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39692652, + 48.29543923 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PDU2KLXCRUO", + "ref": "DU2KLXCRUO", + "name": "Thorigny-Sur-Oreuse, Place du Cerbouilly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.51373319, + 48.0195143 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PPGCTXOYGXE", + "ref": "PGCTXOYGXE", + "name": "Bussy-En-Othe, 4 Place de la Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26102436, + 48.15970379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PZAGK3DXQNE", + "ref": "ZAGK3DXQNE", + "name": "Gron, Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30749631, + 48.28968586 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PBAUQWL2XZK", + "ref": "BAUQWL2XZK", + "name": "La-Chapelle-Sur-Oreuse, 17 Grand rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.668228, + 48.02690719 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PZKTDTIRGQ6", + "ref": "ZKTDTIRGQ6", + "name": "Champlost, route de Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.34141284, + 48.17470749 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PSLXFPOSIPV", + "ref": "SLXFPOSIPV", + "name": "Malay-Le-Grand, 3 rue de la Republique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4868744, + 48.13241146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PWCYYWDBZ8X", + "ref": "WCYYWDBZ8X", + "name": "Cerisiers, Place de L Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1657181, + 48.3394837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PTJJKSFHD5Q", + "ref": "TJJKSFHD5Q", + "name": "Courlon-Sur-Yonne, Place du Four", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0665146, + 48.1136026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXEORPSQQHF", + "ref": "XEORPSQQHF", + "name": "Domats, Place de L Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5804025, + 47.8479239 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PVHOOTUNF03", + "ref": "VHOOTUNF03", + "name": "Moneteau, Parking Espace Culturel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.47557699, + 48.19868899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PPVLAC5Y3JN", + "ref": "PVLAC5Y3JN", + "name": "Chigy, rue des Vieilles Chenevières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.59796211, + 48.09110535 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PBXADENINHL", + "ref": "BXADENINHL", + "name": "Arces-Dilo, 6 Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5484267, + 48.2864598 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PI0OZLDNOPA", + "ref": "I0OZLDNOPA", + "name": "Courgenay, Place des déportés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5484267, + 48.2864598 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PI0OZLDNOPA", + "ref": "I0OZLDNOPA", + "name": "Courgenay, Place des déportés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.205389, + 48.2864729 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PRGITKSMNLH", + "ref": "RGITKSMNLH", + "name": "Pont-Sur-Yonne, Quai de la Republique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26409414, + 48.19546071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PPT71J19KJL", + "ref": "PT71J19KJL", + "name": "Paron, 7 Avenue Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.51373319, + 48.0195143 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PPGCTXOYGXE", + "ref": "PGCTXOYGXE", + "name": "Bussy-En-Othe, 4 Place de la Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.22550631, + 48.22329579 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PBRDLUZETXL", + "ref": "BRDLUZETXL", + "name": "Nailly, rue de L Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1657181, + 48.3394837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PTJJKSFHD5Q", + "ref": "TJJKSFHD5Q", + "name": "Courlon-Sur-Yonne, Place du Four", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2575271, + 48.2118863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89POBTODAY7YQ", + "ref": "OBTODAY7YQ", + "name": "Saint Martin du Tertre, Place Emilie Loubet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13413979, + 48.35176095 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PPMKVSDGNNM", + "ref": "PMKVSDGNNM", + "name": "Vinneuf, Parking de l'Eglise", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.34141284, + 48.17470749 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PSLXFPOSIPV", + "ref": "SLXFPOSIPV", + "name": "Malay-Le-Grand, 3 rue de la Republique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13413979, + 48.35176095 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PPMKVSDGNNM", + "ref": "PMKVSDGNNM", + "name": "Vinneuf, Parking de l'Eglise", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27625239, + 48.196246 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PRVM9WQYHNE", + "ref": "RVM9WQYHNE", + "name": "Sens, Quai Ernest landry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.50966513, + 47.96374608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PZ2LFDV9ICD", + "ref": "Z2LFDV9ICD", + "name": "Migennes, 90 Avenue Jean Jaures", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.291223, + 47.732209 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PRUSDRTRTIC", + "ref": "RUSDRTRTIC", + "name": "Toucy, Avenue de la gare Ultra Rapide", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.291223, + 47.732209 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PRUSDRTRTIC", + "ref": "RUSDRTRTIC", + "name": "Toucy, Avenue de la gare Ultra Rapide", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99151431, + 47.50868558 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PYNELILYBTU", + "ref": "YNELILYBTU", + "name": "Sauvigny-Le-Bois, Sortie 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99151431, + 47.50868558 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PYNELILYBTU", + "ref": "YNELILYBTU", + "name": "Sauvigny-Le-Bois, Sortie 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26102436, + 48.15970379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PZAGK3DXQNE", + "ref": "ZAGK3DXQNE", + "name": "Gron, Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.072452, + 48.342125 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PLCZG98BJYC", + "ref": "LCZG98BJYC", + "name": "Villeneuve La Guyard, Parking de la gare sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2812817, + 48.2001433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PAIIZRA3GWT", + "ref": "AIIZRA3GWT", + "name": "Sens, Abords de la Place Garibaldi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.668228, + 48.02690719 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PZKTDTIRGQ6", + "ref": "ZKTDTIRGQ6", + "name": "Champlost, route de Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2934, + 48.08561 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PK8AQTKTMH6", + "ref": "K8AQTKTMH6", + "name": "Villeneuve-Sur-Yonne, Contre Allée Bd Marceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0665146, + 48.1136026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXEORPSQQHF", + "ref": "XEORPSQQHF", + "name": "Domats, Place de L Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26496823, + 48.2579944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PU1NNX3EPG6", + "ref": "U1NNX3EPG6", + "name": "Cuy, Place Lucien Pothier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4868744, + 48.13241146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PWCYYWDBZ8X", + "ref": "WCYYWDBZ8X", + "name": "Cerisiers, Place de L Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.072452, + 48.342125 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PLCZG98BJYC", + "ref": "LCZG98BJYC", + "name": "Villeneuve La Guyard, Parking de la gare sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.205389, + 48.2864729 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PRGITKSMNLH", + "ref": "RGITKSMNLH", + "name": "Pont-Sur-Yonne, Quai de la Republique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26409414, + 48.19546071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PPT71J19KJL", + "ref": "PT71J19KJL", + "name": "Paron, 7 Avenue Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27002048, + 48.19667382 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PTZRYB3IGZ1", + "ref": "TZRYB3IGZ1", + "name": "Sens, Parking Gare Baudry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26034641, + 48.34304529 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PWNRYGDUGDQ", + "ref": "WNRYGDUGDQ", + "name": "Sergines, 3 rue de L'Hotel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32516, + 48.24885109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PPJXN1PMJGC", + "ref": "PJXN1PMJGC", + "name": "Soucy, 1 Place du Moment", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.279557, + 48.197436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PDOV1RQ6FH9", + "ref": "DOV1RQ6FH9", + "name": "Sens, Place des Jacobins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28408, + 48.195586 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PQ6IKLNJNWO", + "ref": "Q6IKLNJNWO", + "name": "Sens, Place Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.962356, + 47.198513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PZYG035N2OW", + "ref": "ZYG035N2OW", + "name": "Morey-Saint-Denis, Parking Place Saint Vincent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.219405, + 47.241996 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PK7BSJNLZAP", + "ref": "K7BSJNLZAP", + "name": "Genlis, Cours des Martyrs de la Résistance ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33941, + 47.626874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PXEEABPN1MQ", + "ref": "XEEABPN1MQ", + "name": "Montbard, Parking rue Voltaire ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4315, + 46.8075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKJDIXOW7V", + "ref": "AKJDIXOW7V", + "name": "Le Creusot, Gare Ter, rue mamby", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6845, + 46.6538 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCMYWWV4CUF", + "ref": "CMYWWV4CUF", + "name": "St Boil, Grand rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5141, + 46.9909 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYDEFOWAYME", + "ref": "YDEFOWAYME", + "name": "Epinac, place charles de gaulles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78, + 46.7974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWQHEFOD9T2", + "ref": "WQHEFOD9T2", + "name": "Dracy Le Fort, rue du pressoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.832181, + 46.772568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE3P4AETVDQ", + "ref": "E3P4AETVDQ", + "name": "Saint Rémy, Parking rue Auguste Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.832181, + 46.772568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE3P4AETVDQ", + "ref": "E3P4AETVDQ", + "name": "Saint Rémy, Parking rue Auguste Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.809928, + 46.47206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM07QKYRRKD", + "ref": "M07QKYRRKD", + "name": "Lugny, Place du Pâquier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.809928, + 46.47206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM07QKYRRKD", + "ref": "M07QKYRRKD", + "name": "Lugny, Place du Pâquier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4219, + 46.8057 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWH4MBGWMTY", + "ref": "WH4MBGWMTY", + "name": "Le Creusot, place schneider", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.14387753, + 46.96801739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWD96MMJNF3", + "ref": "WD96MMJNF3", + "name": "La Grande Verrière, Parking de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5976, + 46.5197 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXK3BRSQEOA", + "ref": "XK3BRSQEOA", + "name": "Salornay, place de la Clochette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0587, + 46.6 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWHR7FFWALM", + "ref": "WHR7FFWALM", + "name": "Gueugnon, place de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3961, + 46.9451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD8Z6WDTXQH", + "ref": "D8Z6WDTXQH", + "name": "Auxy, route de chalon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7454, + 46.783 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS01QE8YZCU", + "ref": "S01QE8YZCU", + "name": "Givry, place de la poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.14387753, + 46.96801739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWD96MMJNF3", + "ref": "WD96MMJNF3", + "name": "La Grande Verrière, Parking de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3076, + 46.2916 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRD1SP1RLHB", + "ref": "RD1SP1RLHB", + "name": "La Clayette, place de la poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7454, + 46.783 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS01QE8YZCU", + "ref": "S01QE8YZCU", + "name": "Givry, place de la poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0587, + 46.6 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWHR7FFWALM", + "ref": "WHR7FFWALM", + "name": "Gueugnon, place de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.887815, + 46.77541 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY9Y1GSKFUK", + "ref": "Y9Y1GSKFUK", + "name": "Saint Marcel, Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2174, + 46.6313 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYTA0PZVM7C", + "ref": "YTA0PZVM7C", + "name": "Louhans, parking de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4839, + 46.3616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD5CNGLVE5R", + "ref": "D5CNGLVE5R", + "name": "Dompierre Les Ormes, place de la bascule", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78, + 46.7974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWQHEFOD9T2", + "ref": "WQHEFOD9T2", + "name": "Dracy Le Fort, rue du pressoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5141, + 46.9909 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYDEFOWAYME", + "ref": "YDEFOWAYME", + "name": "Epinac, place charles de gaulles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.749, + 46.2422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA1CCYW60HL", + "ref": "A1CCYW60HL", + "name": "St Amour, rue le platre durand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.476, + 46.6289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYWIDNJ8YCI", + "ref": "YWIDNJ8YCI", + "name": "Mont St Vincent, Parking salle des fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.492, + 47.2805 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMV1ZGUGKA7", + "ref": "MV1ZGUGKA7", + "name": "Brinon-Sur-Beuvron, Place J.B.durbise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0217, + 47.1786 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAZIFAF8IUX", + "ref": "AZIFAF8IUX", + "name": "La-Charite-Sur-Loire, Place de L'Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5924, + 47.3673 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDFTKIZHXBB", + "ref": "DFTKIZHXBB", + "name": "Tannay, Place de L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.92293063, + 47.41156346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMIICHC8WP1", + "ref": "MIICHC8WP1", + "name": "Cosne-Sur-Loire, Place du General de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0831, + 47.0018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCEGEWMOWL6", + "ref": "CEGEWMOWL6", + "name": "Fourchambault, Place St Louis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1288, + 47.3708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRLS4BR4ZPF", + "ref": "RLS4BR4ZPF", + "name": "Donzy, Place Gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.721, + 46.8164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POKHCYANOVC", + "ref": "OKHCYANOVC", + "name": "Fours, Place Pouyat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.92678642, + 47.41023635 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUEHU81Y2UG", + "ref": "UEHU81Y2UG", + "name": "Cosne-Sur-Loire, Parking rue de Veaugues", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.521671, + 47.458741 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRIYAV3WSUX", + "ref": "RIYAV3WSUX", + "name": "Clamecy, Place du Cdt Boidot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5215, + 47.4588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXOGNQADIP5", + "ref": "XOGNQADIP5", + "name": "Clamecy, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.655, + 47.0533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLII6X0QIDC", + "ref": "LII6X0QIDC", + "name": "Chatillon-En-Bazois, Place Pierre Saury", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6462, + 46.8685 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCFEWDQL4XQ", + "ref": "CFEWDQL4XQ", + "name": "Cercy-La-Tour, Chemin de Halage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6829, + 47.2547 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDW4BG8XNRL", + "ref": "DW4BG8XNRL", + "name": "Corbigny, Place du Champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3638, + 46.6757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAMCQAOUOYI", + "ref": "AMCQAOUOYI", + "name": "Montceau Les Mines, place de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2604, + 46.8865 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PANPKXW9RD5", + "ref": "ANPKXW9RD5", + "name": "Pierre De Bresse, place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1187, + 46.4518 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCSVFMAPDLK", + "ref": "CSVFMAPDLK", + "name": "Paray Le Monial, place de l'europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862446, + 46.783863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBM1NPADH8L", + "ref": "BM1NPADH8L", + "name": "Chalon-Sur-Saone, La maison des vins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7926, + 46.28 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQEJQBLAVR2", + "ref": "QEJQBLAVR2", + "name": "Macon Sud, parking route de juliénas ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1115, + 46.6094 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCLFKICEPGZ", + "ref": "CLFKICEPGZ", + "name": "Bantanges , rue du bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.862446, + 46.783863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBM1NPADH8L", + "ref": "BM1NPADH8L", + "name": "Chalon-Sur-Saone, La maison des vins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4852, + 46.308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUTVSMAGTKP", + "ref": "UTVSMAGTKP", + "name": "Matour, place du champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0388, + 46.2763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQJETDRPRLH", + "ref": "QJETDRPRLH", + "name": "Marcigny, place Irene Popard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0986, + 47.0774 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIOUZSC0GRQ", + "ref": "IOUZSC0GRQ", + "name": "Anost, le bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7212, + 46.8329 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTI3K2PT3CV", + "ref": "TI3K2PT3CV", + "name": "Mercurey, rue de Caudroyes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.786594, + 46.2460945 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAJAG0W3H7H", + "ref": "AJAG0W3H7H", + "name": "Crèche sur Saone, Place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.18896031, + 46.86605558 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDBFPKZBIGQ", + "ref": "DBFPKZBIGQ", + "name": "Etang sur Arroux, Place du Mousseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.18896031, + 46.86605558 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDBFPKZBIGQ", + "ref": "DBFPKZBIGQ", + "name": "Etang sur Arroux, Place du Mousseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.749, + 46.2422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA1CCYW60HL", + "ref": "A1CCYW60HL", + "name": "St Amour, rue le platre durand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6628, + 46.613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POJC67YT8UC", + "ref": "OJC67YT8UC", + "name": "St Gengoux Le National, rue des tanneries", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6337, + 46.8457 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEM4UWZE7FL", + "ref": "EM4UWZE7FL", + "name": "St Leger Sur Dheune, rue du port", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.432, + 46.8416 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF4PTLVVEGT", + "ref": "F4PTLVVEGT", + "name": "St Sernin Du Bois, route de Saint-Sernin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9088, + 46.5628 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQGMC7P1GHH", + "ref": "QGMC7P1GHH", + "name": "Tournus, route de plottes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3393, + 46.2069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU0IEIGTQV5", + "ref": "U0IEIGTQV5", + "name": "Chaufailles, place docteur henri ferrere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1187, + 46.4518 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCSVFMAPDLK", + "ref": "CSVFMAPDLK", + "name": "Paray Le Monial, place de l'europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6628, + 46.434 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKEWRJQNRLS", + "ref": "KEWRJQNRLS", + "name": "Cluny, parking du prado", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2436, + 46.7536 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNME8JL5XVW", + "ref": "NME8JL5XVW", + "name": "St Germain Du Bois, place du 8 mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9717, + 46.4807 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT1JWMFICCG", + "ref": "T1JWMFICCG", + "name": "Digoin, place de la grève", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5976, + 46.5197 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXK3BRSQEOA", + "ref": "XK3BRSQEOA", + "name": "Salornay, place de la Clochette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9882, + 46.485 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNKTSSSRIOZ", + "ref": "NKTSSSRIOZ", + "name": "Digoin, place de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7762, + 46.6206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHZCA5QOHFO", + "ref": "HZCA5QOHFO", + "name": "Bourbon-Lancy, rue du 11 novembre ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5735, + 46.8686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNWRUJWIAS", + "ref": "KNWRUJWIAS", + "name": "Couches, place de la république", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6833, + 46.7217 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXQ35PJ1LNO", + "ref": "XQ35PJ1LNO", + "name": "Cronat, place de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9996, + 46.5573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO2OQF8EAZK", + "ref": "O2OQF8EAZK", + "name": "Cuisery, place du champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8412, + 46.3606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIZ7TY3PKMS", + "ref": "IZ7TY3PKMS", + "name": "Macon Nord, parking route du chemin neuf OS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7926, + 46.28 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQEJQBLAVR2", + "ref": "QEJQBLAVR2", + "name": "Macon Sud, parking route de juliénas ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0388, + 46.2763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQJETDRPRLH", + "ref": "QJETDRPRLH", + "name": "Marcigny, place Irene Popard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8322, + 46.3026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS8PA2ZJSYJ", + "ref": "S8PA2ZJSYJ", + "name": "Macon Centre, Quai Lamartine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4315, + 46.8075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKJDIXOW7V", + "ref": "AKJDIXOW7V", + "name": "Le Creusot, Gare Ter, rue mamby", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2174, + 46.6313 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYTA0PZVM7C", + "ref": "YTA0PZVM7C", + "name": "Louhans, parking de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2742, + 46.4322 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFVPQBSTVGS", + "ref": "FVPQBSTVGS", + "name": "Charolles, quai de la poterne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6845, + 46.6538 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCMYWWV4CUF", + "ref": "CMYWWV4CUF", + "name": "St Boil, Grand rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4852, + 46.308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUTVSMAGTKP", + "ref": "UTVSMAGTKP", + "name": "Matour, place du champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7212, + 46.8329 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTI3K2PT3CV", + "ref": "TI3K2PT3CV", + "name": "Mercurey, rue de Caudroyes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2604, + 46.8865 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PANPKXW9RD5", + "ref": "ANPKXW9RD5", + "name": "Pierre De Bresse, place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3076, + 46.2916 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRD1SP1RLHB", + "ref": "RD1SP1RLHB", + "name": "La Clayette, place de la poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.786594, + 46.2460945 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAJAG0W3H7H", + "ref": "AJAG0W3H7H", + "name": "Crèche sur Saone, Place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.30009, + 46.952661 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIZNCFBJ5N9", + "ref": "IZNCFBJ5N9", + "name": "Autun, Place Deguin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.30009, + 46.952661 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIZNCFBJ5N9", + "ref": "IZNCFBJ5N9", + "name": "Autun, Place Deguin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76, + 46.2602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKRXTAYLACE", + "ref": "KRXTAYLACE", + "name": "Chaintre, place du luminaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8466, + 46.7826 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMEKQGP7IH8", + "ref": "MEKQGP7IH8", + "name": "Chalon-Sur-Saone, place du 19 mars 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2742, + 46.4322 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFVPQBSTVGS", + "ref": "FVPQBSTVGS", + "name": "Charolles, quai de la poterne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.696, + 46.7142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBAZ89ZAKIB", + "ref": "BAZ89ZAKIB", + "name": "Buxy, place du champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8412, + 46.3606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIZ7TY3PKMS", + "ref": "IZ7TY3PKMS", + "name": "Macon Nord, parking route du chemin neuf OS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8322, + 46.3026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS8PA2ZJSYJ", + "ref": "S8PA2ZJSYJ", + "name": "Macon Centre, Quai Lamartine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7762, + 46.6206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHZCA5QOHFO", + "ref": "HZCA5QOHFO", + "name": "Bourbon-Lancy, rue du 11 novembre ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3393, + 46.2069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU0IEIGTQV5", + "ref": "U0IEIGTQV5", + "name": "Chaufailles, place docteur henri ferrere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9996, + 46.5573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO2OQF8EAZK", + "ref": "O2OQF8EAZK", + "name": "Cuisery, place du champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9882, + 46.485 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNKTSSSRIOZ", + "ref": "NKTSSSRIOZ", + "name": "Digoin, place de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9717, + 46.4807 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT1JWMFICCG", + "ref": "T1JWMFICCG", + "name": "Digoin, place de la grève", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6833, + 46.7217 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXQ35PJ1LNO", + "ref": "XQ35PJ1LNO", + "name": "Cronat, place de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.887815, + 46.77541 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY9Y1GSKFUK", + "ref": "Y9Y1GSKFUK", + "name": "Saint Marcel, Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6628, + 46.434 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKEWRJQNRLS", + "ref": "KEWRJQNRLS", + "name": "Cluny, parking du prado", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5735, + 46.8686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNWRUJWIAS", + "ref": "KNWRUJWIAS", + "name": "Couches, place de la république", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4219, + 46.8057 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWH4MBGWMTY", + "ref": "WH4MBGWMTY", + "name": "Le Creusot, place schneider", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0244, + 46.8968 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB34AM9DYGR", + "ref": "B34AM9DYGR", + "name": "Verdun Sur Le Doubs, Place saint jean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2572, + 46.9368 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFAQWZOZ717", + "ref": "FAQWZOZ717", + "name": "Imphy, Place des Martyrs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0166, + 47.1361 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCGTJBSDTLL", + "ref": "CGTJBSDTLL", + "name": "Planchez, Place de la Resistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.53628868, + 47.39856979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PIQHHPTTJWY", + "ref": "IQHHPTTJWY", + "name": "Vitteaux, route D'Avallon ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.352329, + 46.715193 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIHEBY32X0M", + "ref": "IHEBY32X0M", + "name": "Dornes, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.92293063, + 47.41156346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMIICHC8WP1", + "ref": "MIICHC8WP1", + "name": "Cosne-Sur-Loire, Place du General de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.92678642, + 47.41023635 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUEHU81Y2UG", + "ref": "UEHU81Y2UG", + "name": "Cosne-Sur-Loire, Parking rue de Veaugues", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5139, + 47.104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCGQ8TK2DHU", + "ref": "CGQ8TK2DHU", + "name": "St-Saulge, rue Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.936014, + 47.063706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAMWLUY3DJK", + "ref": "AMWLUY3DJK", + "name": "Château Chinon, Place Jean Sallonyer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.482666, + 46.701629 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRCWFXEXJ8M", + "ref": "RCWFXEXJ8M", + "name": "Lucenay Les Aix, Impasse Georges Rochegrosse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.721, + 46.8164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POKHCYANOVC", + "ref": "OKHCYANOVC", + "name": "Fours, Place Pouyat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.482666, + 46.701629 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRCWFXEXJ8M", + "ref": "RCWFXEXJ8M", + "name": "Lucenay Les Aix, Impasse Georges Rochegrosse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.352329, + 46.715193 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIHEBY32X0M", + "ref": "IHEBY32X0M", + "name": "Dornes, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1288, + 47.3708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRLS4BR4ZPF", + "ref": "RLS4BR4ZPF", + "name": "Donzy, Place Gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0831, + 47.0018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCEGEWMOWL6", + "ref": "CEGEWMOWL6", + "name": "Fourchambault, Place St Louis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6829, + 47.2547 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDW4BG8XNRL", + "ref": "DW4BG8XNRL", + "name": "Corbigny, Place du Champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.464834, + 46.890607 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBGRBPDRMKQ", + "ref": "BGRBPDRMKQ", + "name": "La Machine, Place des fusillés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6462, + 46.8685 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCFEWDQL4XQ", + "ref": "CFEWDQL4XQ", + "name": "Cercy-La-Tour, Chemin de Halage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0217, + 47.1786 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAZIFAF8IUX", + "ref": "AZIFAF8IUX", + "name": "La-Charite-Sur-Loire, Place de L'Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2204, + 46.9809 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFZQWDNZP1W", + "ref": "FZQWDNZP1W", + "name": "St-Eloi, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0739, + 47.5296 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEWEC5ADH0N", + "ref": "EWEC5ADH0N", + "name": "St-Amand-En-Puisaye, Place du Marche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0213, + 47.0444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA0MTYFQTIA", + "ref": "A0MTYFQTIA", + "name": "Arleuf, Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1876, + 47.0146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHDKDDYFEUH", + "ref": "HDKDDYFEUH", + "name": "Coulanges, Parking Francois Mitterand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.492, + 47.2805 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMV1ZGUGKA7", + "ref": "MV1ZGUGKA7", + "name": "Brinon-Sur-Beuvron, Place J.B.durbise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8417, + 46.9052 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSEBURVUBUQ", + "ref": "SEBURVUBUQ", + "name": "St-Honore-Les-Bains, rue Eugéne Boyer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2727, + 46.9683 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFM8964A1WI", + "ref": "FM8964A1WI", + "name": "Sauvigny-Les-Bois, Parking Salle Polyvalente", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5924, + 47.3673 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDFTKIZHXBB", + "ref": "DFTKIZHXBB", + "name": "Tannay, Place de L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4386, + 46.7627 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTWJNVSU38B", + "ref": "TWJNVSU38B", + "name": "Toury-Lurcy, Les Oudilles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.936014, + 47.063706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAMWLUY3DJK", + "ref": "AMWLUY3DJK", + "name": "Château Chinon, Place Jean Sallonyer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1514, + 46.9864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNBZ8TFSWEM", + "ref": "NBZ8TFSWEM", + "name": "Nevers, Impasse de la Grippe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.055057, + 47.35246 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PQHXB6BHOGC", + "ref": "QHXB6BHOGC", + "name": "Dijon, rue René Char", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.459429, + 47.542961 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PBJNOG4MWPW", + "ref": "BJNOG4MWPW", + "name": "Venarey-Les-Laumes, Place de la Libération ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.63063337, + 46.95115721 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PXHDBE7OY3W", + "ref": "XHDBE7OY3W", + "name": "Nolay, Parking rue de la Poste ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.53628868, + 47.39856979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PIQHHPTTJWY", + "ref": "IQHHPTTJWY", + "name": "Vitteaux, route D'Avallon ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.055057, + 47.35246 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PQHXB6BHOGC", + "ref": "QHXB6BHOGC", + "name": "Dijon, rue René Char", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.55660909, + 47.26238609 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PFCJXTFL0DV", + "ref": "FCJXTFL0DV", + "name": "Pouilly-En-Auxois, Place de la République ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.142181, + 47.237854 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PYWPQYYSS4K", + "ref": "YWPQYYSS4K", + "name": "Rouvres-En-Plaine, rue de la Tournelle ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33941, + 47.626874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PXEEABPN1MQ", + "ref": "XEEABPN1MQ", + "name": "Montbard, Parking rue Voltaire ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.186601, + 47.586744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PUUXQDJWN4P", + "ref": "UUXQDJWN4P", + "name": "Selongey, Parking rue de L'éGlise ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.23079647, + 47.28151538 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PU0NYWWAOQY", + "ref": "U0NYWWAOQY", + "name": "Saulieu, rue D'Argentine ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.647839, + 47.60017 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PDEBHL6PHPC", + "ref": "DEBHL6PHPC", + "name": "Baigneux-Les-Juifs, Parking Salle Communale ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.647839, + 47.60017 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PDEBHL6PHPC", + "ref": "DEBHL6PHPC", + "name": "Baigneux-Les-Juifs, Parking Salle Communale ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.464834, + 46.890607 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBGRBPDRMKQ", + "ref": "BGRBPDRMKQ", + "name": "La Machine, Place des fusillés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33899, + 47.622256 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PZ5PTFXJNAF", + "ref": "Z5PTFXJNAF", + "name": "Montbard, Parking Place du 8 Mai ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.710612, + 47.313509 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PQDAWUSC5CV", + "ref": "QDAWUSC5CV", + "name": "Sombernon, Parking Salle des Fetes ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.416139, + 47.304456 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PQKREGUWHSS", + "ref": "QKREGUWHSS", + "name": "Pontailler-Sur-Saone, Pl des Martyrs de la Résist", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.788198, + 47.440595 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PJLD6VKWKG7", + "ref": "JLD6VKWKG7", + "name": "Saint-Seine-L'Abbaye, Parking rue Carnot ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.17472886, + 47.51473703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PUSYS88RTB5", + "ref": "USYS88RTB5", + "name": "Tilchatel, Parking route de langres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.134624, + 47.216845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PECMQKU9KNJ", + "ref": "ECMQKU9KNJ", + "name": "Thorey-En-Plaine, route de Dijon ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.335454, + 47.490227 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PXL48MPS8G5", + "ref": "XL48MPS8G5", + "name": "Semur-En-Auxois, Park. rue Jean Jacques Collenot ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.794804, + 47.00871788 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PINJVTNTI9G", + "ref": "INJVTNTI9G", + "name": "Pommard, Parking Place de L'Eglise ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.94829543, + 47.13451056 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PI1KBZZA5DT", + "ref": "I1KBZZA5DT", + "name": "Nuits-Saint-Georges, Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.149525, + 46.997105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS21PIKODBJFESG", + "ref": "IKODBJFESG", + "name": "Seurre, Avenue de la Gare ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5215, + 47.4588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXOGNQADIP5", + "ref": "XOGNQADIP5", + "name": "Clamecy, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.521671, + 47.458741 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRIYAV3WSUX", + "ref": "RIYAV3WSUX", + "name": "Clamecy, Place du Cdt Boidot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4547, + 46.8386 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQPHCBREEPR", + "ref": "QPHCBREEPR", + "name": "St-Leger-Des-Vignes, Epicerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9707, + 46.79 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN9LEAC2WWK", + "ref": "N9LEAC2WWK", + "name": "Luzy, Avenue du Dr Dollet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.164861, + 47.483746 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHYOVWUYG9D", + "ref": "HYOVWUYG9D", + "name": "Bouhy, Rue du champ de foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.164861, + 47.483746 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHYOVWUYG9D", + "ref": "HYOVWUYG9D", + "name": "Bouhy, Rue du champ de foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.166472, + 47.016096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POUGLHBJSNW", + "ref": "OUGLHBJSNW", + "name": "Coulanges Les Nevers, Champ de la Porte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.166472, + 47.016096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POUGLHBJSNW", + "ref": "OUGLHBJSNW", + "name": "Coulanges Les Nevers, Champ de la Porte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1196, + 46.7916 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIZTS5WD7DG", + "ref": "IZTS5WD7DG", + "name": "St-Pierre-Le-Moutier, Avenue du 8 Mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2727, + 46.9683 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFM8964A1WI", + "ref": "FM8964A1WI", + "name": "Sauvigny-Les-Bois, Parking Salle Polyvalente", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.931379, + 47.414098 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSLTGDVGEJ0", + "ref": "SLTGDVGEJ0", + "name": "Cosne sur Loire, Place de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4547, + 46.8386 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQPHCBREEPR", + "ref": "QPHCBREEPR", + "name": "St-Leger-Des-Vignes, Epicerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1876, + 47.0146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHDKDDYFEUH", + "ref": "HDKDDYFEUH", + "name": "Coulanges, Parking Francois Mitterand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0213, + 47.0444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA0MTYFQTIA", + "ref": "A0MTYFQTIA", + "name": "Arleuf, Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8188, + 47.29 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLWJIYIXGPX", + "ref": "LWJIYIXGPX", + "name": "Lormes, Parking Vauban", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1196, + 46.7916 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIZTS5WD7DG", + "ref": "IZTS5WD7DG", + "name": "St-Pierre-Le-Moutier, Avenue du 8 Mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.158236, + 46.98754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFTKSVVL1HL", + "ref": "FTKSVVL1HL", + "name": "Nevers, rue des quatre fils Aymond", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.158236, + 46.98754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFTKSVVL1HL", + "ref": "FTKSVVL1HL", + "name": "Nevers, rue des quatre fils Aymond", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.142463, + 46.991657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPUBVDXONKL", + "ref": "PUBVDXONKL", + "name": "Nevers, rue du 13e de ligne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.142463, + 46.991657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPUBVDXONKL", + "ref": "PUBVDXONKL", + "name": "Nevers, rue du 13e de ligne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.564, + 47.0266 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXU0FKMJHGO", + "ref": "XU0FKMJHGO", + "name": "Rouy, Place du 11 Novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1014, + 47.0733 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSK2JUSBR1G", + "ref": "SK2JUSBR1G", + "name": "Pougues-Les-Eaux-, Parking de la Tour de Musique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.957, + 47.2839 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLILSDM6BG9", + "ref": "LILSDM6BG9", + "name": "Pouilly-Sur-Loire, rue des Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3318, + 47.1727 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGJWNGA1KMF", + "ref": "GJWNGA1KMF", + "name": "Premery, Place du Champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.156, + 46.9891 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNCLKLI7GG", + "ref": "XNCLKLI7GG", + "name": "Nevers, Parc Salengro", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0239, + 47.2145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJXSPR9YPGN", + "ref": "JXSPR9YPGN", + "name": "Montsauche, Parking rue du Docteur Monot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.152152, + 46.883626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSDPZT1PG8I", + "ref": "SDPZT1PG8I", + "name": "Magny-Cours, Rue du Fournil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.931379, + 47.414098 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSLTGDVGEJ0", + "ref": "SLTGDVGEJ0", + "name": "Cosne sur Loire, Place de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.393, + 46.9987 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCRSMVV007E", + "ref": "CRSMVV007E", + "name": "St-Benin-D'Azy, Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.152152, + 46.883626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSDPZT1PG8I", + "ref": "SDPZT1PG8I", + "name": "Magny-Cours, Rue du Fournil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.655, + 47.0533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLII6X0QIDC", + "ref": "LII6X0QIDC", + "name": "Chatillon-En-Bazois, Place Pierre Saury", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3858, + 47.3551 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDPK4J4CAMC", + "ref": "DPK4J4CAMC", + "name": "Varzy, Parking Salle des Fetes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9707, + 46.79 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN9LEAC2WWK", + "ref": "N9LEAC2WWK", + "name": "Luzy, Avenue du Dr Dollet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8188, + 47.29 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLWJIYIXGPX", + "ref": "LWJIYIXGPX", + "name": "Lormes, Parking Vauban", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.156, + 46.9891 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNCLKLI7GG", + "ref": "XNCLKLI7GG", + "name": "Nevers, Parc Salengro", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0239, + 47.2145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJXSPR9YPGN", + "ref": "JXSPR9YPGN", + "name": "Montsauche, Parking rue du Docteur Monot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.158105, + 46.98962 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAQN1LPHKFB", + "ref": "AQN1LPHKFB", + "name": "Nevers, Parking Pierre Beregovoy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.158105, + 46.98962 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAQN1LPHKFB", + "ref": "AQN1LPHKFB", + "name": "Nevers, Parking Pierre Beregovoy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8417, + 46.9052 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSEBURVUBUQ", + "ref": "SEBURVUBUQ", + "name": "St-Honore-Les-Bains, rue Eugéne Boyer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2572, + 46.9368 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFAQWZOZ717", + "ref": "FAQWZOZ717", + "name": "Imphy, Place des Martyrs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.564, + 47.0266 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXU0FKMJHGO", + "ref": "XU0FKMJHGO", + "name": "Rouy, Place du 11 Novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3318, + 47.1727 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGJWNGA1KMF", + "ref": "GJWNGA1KMF", + "name": "Premery, Place du Champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0739, + 47.5296 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEWEC5ADH0N", + "ref": "EWEC5ADH0N", + "name": "St-Amand-En-Puisaye, Place du Marche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0166, + 47.1361 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCGTJBSDTLL", + "ref": "CGTJBSDTLL", + "name": "Planchez, Place de la Resistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1514, + 46.9864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNBZ8TFSWEM", + "ref": "NBZ8TFSWEM", + "name": "Nevers, Impasse de la Grippe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.957, + 47.2839 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLILSDM6BG9", + "ref": "LILSDM6BG9", + "name": "Pouilly-Sur-Loire, rue des Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1014, + 47.0733 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSK2JUSBR1G", + "ref": "SK2JUSBR1G", + "name": "Pougues-Les-Eaux-, Parking de la Tour de Musique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3858, + 47.3551 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDPK4J4CAMC", + "ref": "DPK4J4CAMC", + "name": "Varzy, Parking Salle des Fetes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.393, + 46.9987 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCRSMVV007E", + "ref": "CRSMVV007E", + "name": "St-Benin-D'Azy, Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5139, + 47.104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCGQ8TK2DHU", + "ref": "CGQ8TK2DHU", + "name": "St-Saulge, rue Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4386, + 46.7627 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTWJNVSU38B", + "ref": "TWJNVSU38B", + "name": "Toury-Lurcy, Les Oudilles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99303742, + 47.69658468 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PLX6ZXEAANA", + "ref": "LX6ZXEAANA", + "name": "Noyers, rue de L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.56187165, + 47.89936488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PCQTIPBKW32", + "ref": "CQTIPBKW32", + "name": "Chemilly-Sur-Yonne, rue Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.66859444, + 46.8966172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK1RXOZWOA5", + "ref": "K1RXOZWOA5", + "name": "Cheilly-lès-Maranges, Parking des Maranges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87468, + 48.082 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKJ10TZEAZY", + "ref": "KJ10TZEAZY", + "name": "Artenay, As Hôtel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.936072, + 50.334399 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLWAX2VIBUV", + "ref": "LWAX2VIBUV", + "name": "Fresnes les Montauban, Restaurant l'Aquarium", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.936072, + 50.334399 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLWAX2VIBUV", + "ref": "LWAX2VIBUV", + "name": "Fresnes les Montauban, Restaurant l'Aquarium", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.05011091, + 48.71954046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGL45JADQ7A", + "ref": "GL45JADQ7A", + "name": "Sarrebourg, ZAC Terrasses de la Sarre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.05011091, + 48.71954046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGL45JADQ7A", + "ref": "GL45JADQ7A", + "name": "Sarrebourg, ZAC Terrasses de la Sarre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.479675, + 46.757135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYOK4NQXJLT", + "ref": "YOK4NQXJLT", + "name": "Montchanin, Art Esthétique", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10338269, + 49.07656605 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPX3HCA6K3H", + "ref": "PX3HCA6K3H", + "name": "Augny, Arthur Bonnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10338269, + 49.07656605 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPX3HCA6K3H", + "ref": "PX3HCA6K3H", + "name": "Augny, Arthur Bonnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.134913, + 49.35392 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU4TFFCDH2S", + "ref": "U4TFFCDH2S", + "name": "Thionville, Arthur Bonnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.134913, + 49.35392 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU4TFFCDH2S", + "ref": "U4TFFCDH2S", + "name": "Thionville, Arthur Bonnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87468, + 48.082 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKJ10TZEAZY", + "ref": "KJ10TZEAZY", + "name": "Artenay, As Hôtel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.678525, + 48.747559 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCXJ72OM8NT", + "ref": "CXJ72OM8NT", + "name": "Bernolsheim, Atolon Park Hôtel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.936072, + 50.334399 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLWAX2VIBUV", + "ref": "LWAX2VIBUV", + "name": "Fresnes les Montauban, Restaurant l'Aquarium", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.678525, + 48.747559 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCXJ72OM8NT", + "ref": "CXJ72OM8NT", + "name": "Bernolsheim, Atolon Park Hôtel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60349443, + 50.56336763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC1GNC8FCNX", + "ref": "C1GNC8FCNX", + "name": "Gonnehem, Au boulot de Mick", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.78942227, + 50.27924346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAYAHQAUM1C", + "ref": "AYAHQAUM1C", + "name": "Arras, Au Boulot de Mick", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.78942227, + 50.27924346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAYAHQAUM1C", + "ref": "AYAHQAUM1C", + "name": "Arras, Au Boulot de Mick", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60349443, + 50.56336763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC1GNC8FCNX", + "ref": "C1GNC8FCNX", + "name": "Gonnehem, Au boulot de Mick", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.258675, + 49.508633 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PACRYNFDCV8", + "ref": "ACRYNFDCV8", + "name": "Morgny-la-Pommeraye, Au Panier de la Pommeraye", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.54018, + 48.3396 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHPIJ5SALHF", + "ref": "HPIJ5SALHF", + "name": "Kogenheim, Auberge Fritsch", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.54018, + 48.3396 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHPIJ5SALHF", + "ref": "HPIJ5SALHF", + "name": "Kogenheim, Auberge Fritsch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.258089, + 48.436511 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAC2FNB43AS", + "ref": "AC2FNB43AS", + "name": "Natzwiller, Auberge Metzger", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.258089, + 48.436511 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAC2FNB43AS", + "ref": "AC2FNB43AS", + "name": "Natzwiller, Auberge Metzger", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.936072, + 50.334399 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLWAX2VIBUV", + "ref": "LWAX2VIBUV", + "name": "Fresnes les Montauban, Restaurant l'Aquarium", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.64588345, + 48.92970706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXR4EPVUDZ", + "ref": "TXR4EPVUDZ", + "name": "Niederbronn-les-Bains, Aptar CSP Technologies", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04512836, + 49.11464708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT7NT4TEAJS", + "ref": "T7NT4TEAJS", + "name": "Sarreguemines, Auberge de Saint Walfrid", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.851934, + 44.934925 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTDVUPC3TPJ", + "ref": "TDVUPC3TPJ", + "name": "Parking Visiteurs Andros", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05840231, + 49.0471033 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRM0ROAPILM", + "ref": "RM0ROAPILM", + "name": "Ancy-Dornot, Grand Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05923348, + 49.05647267 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDHOGICTC4J", + "ref": "DHOGICTC4J", + "name": "Ancy-Dornot, Rue Lemal Perrin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05923348, + 49.05647267 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDHOGICTC4J", + "ref": "DHOGICTC4J", + "name": "Ancy-Dornot, Rue Lemal Perrin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05840231, + 49.0471033 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRM0ROAPILM", + "ref": "RM0ROAPILM", + "name": "Ancy-Dornot, Grand Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30075, + 49.0047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDTWHHE", + "ref": "DTWHHE", + "name": "Andilly, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30075, + 49.0047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDTWHHE", + "ref": "DTWHHE", + "name": "Andilly, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856136, + 44.9478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPRMTMC6S3N", + "ref": "PRMTMC6S3N", + "name": "Parking Visiteurs Manoir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856136, + 44.9478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPRMTMC6S3N", + "ref": "PRMTMC6S3N", + "name": "Parking Visiteurs Manoir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856136, + 44.9478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPRMTMC6S3N", + "ref": "PRMTMC6S3N", + "name": "Parking Visiteurs Manoir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856136, + 44.9478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPRMTMC6S3N", + "ref": "PRMTMC6S3N", + "name": "Parking Visiteurs Manoir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.85226899, + 44.93490781 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTDVUPC3TPJ", + "ref": "TDVUPC3TPJ", + "name": "Parking Visiteurs Andros", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.64588345, + 48.92970706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXR4EPVUDZ", + "ref": "TXR4EPVUDZ", + "name": "Niederbronn-les-Bains, Aptar CSP Technologies", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.851934, + 44.934925 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTDVUPC3TPJ", + "ref": "TDVUPC3TPJ", + "name": "Parking Visiteurs Andros", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856194, + 44.948029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU335H3JLYA", + "ref": "U335H3JLYA", + "name": "Parking Visiteurs R&D", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856194, + 44.948029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU335H3JLYA", + "ref": "U335H3JLYA", + "name": "Parking Visiteurs R&D", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.85226899, + 44.93490781 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTDVUPC3TPJ", + "ref": "TDVUPC3TPJ", + "name": "Parking Visiteurs Andros", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.64588345, + 48.92970706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXR4EPVUDZ", + "ref": "TXR4EPVUDZ", + "name": "Niederbronn-les-Bains, Aptar CSP Technologies", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.64588345, + 48.92970706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXR4EPVUDZ", + "ref": "TXR4EPVUDZ", + "name": "Niederbronn-les-Bains, Aptar CSP Technologies", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.64588345, + 48.92970706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXR4EPVUDZ", + "ref": "TXR4EPVUDZ", + "name": "Niederbronn-les-Bains, Aptar CSP Technologies", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.64588345, + 48.92970706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXR4EPVUDZ", + "ref": "TXR4EPVUDZ", + "name": "Niederbronn-les-Bains, Aptar CSP Technologies", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.64588345, + 48.92970706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXR4EPVUDZ", + "ref": "TXR4EPVUDZ", + "name": "Niederbronn-les-Bains, Aptar CSP Technologies", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.64588345, + 48.92970706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXR4EPVUDZ", + "ref": "TXR4EPVUDZ", + "name": "Niederbronn-les-Bains, Aptar CSP Technologies", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04512836, + 49.11464708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT7NT4TEAJS", + "ref": "T7NT4TEAJS", + "name": "Sarreguemines, Auberge de Saint Walfrid", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04512836, + 49.11464708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT7NT4TEAJS", + "ref": "T7NT4TEAJS", + "name": "Sarreguemines, Auberge de Saint Walfrid", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.79307672, + 48.04266162 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PUAFKYILXEA", + "ref": "UAFKYILXEA", + "name": "Neuvy-Sautour, route de Troyes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.50990428, + 43.55204124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQL0SAGXFVN", + "ref": "QL0SAGXFVN", + "name": "Labège, Route de Baziège la Lauragaise", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.216214, + 48.689763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLK174HG81PAI5", + "ref": "LLK174HG81PAI5", + "name": "Tomblaine, Avenue Eugène Pottier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.216214, + 48.689763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLK174HG81PAI5", + "ref": "LLK174HG81PAI5", + "name": "Tomblaine, Avenue Eugène Pottier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.216214, + 48.689763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLK174HG81PAI5", + "ref": "LLK174HG81PAI5", + "name": "Tomblaine, Avenue Eugène Pottier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.052203, + 48.271031 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIQG36TGCXO", + "ref": "IQG36TGCXO", + "name": "Troyes, Audi", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0887877, + 44.1063329 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT6VGAWB4RJ", + "ref": "T6VGAWB4RJ", + "name": "Alès, Avenue Olivier de Serres", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0887877, + 44.1063329 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT6VGAWB4RJ", + "ref": "T6VGAWB4RJ", + "name": "Alès, Avenue Olivier de Serres", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0887877, + 44.1063329 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT6VGAWB4RJ", + "ref": "T6VGAWB4RJ", + "name": "Alès, Avenue Olivier de Serres", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.642383, + 49.651056 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWZ79ENR8ZB", + "ref": "WZ79ENR8ZB", + "name": "Poix-Terron, Auto Services Pixien", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.50990428, + 43.55204124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQL0SAGXFVN", + "ref": "QL0SAGXFVN", + "name": "Labège, Route de Baziège la Lauragaise", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.50990428, + 43.55204124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQL0SAGXFVN", + "ref": "QL0SAGXFVN", + "name": "Labège, Route de Baziège la Lauragaise", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.50990428, + 43.55204124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQL0SAGXFVN", + "ref": "QL0SAGXFVN", + "name": "Labège, Route de Baziège la Lauragaise", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.216214, + 48.689763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLK174HG81PAI5", + "ref": "LLK174HG81PAI5", + "name": "Tomblaine, Avenue Eugène Pottier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32366, + 46.5526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAVPIZQYZVQ", + "ref": "AVPIZQYZVQ", + "name": "Fronteneaud, Auto Park de Bresse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32366, + 46.5526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAVPIZQYZVQ", + "ref": "AVPIZQYZVQ", + "name": "Fronteneaud, Auto Park de Bresse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.320415, + 46.581404 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PREUFMB3JUC", + "ref": "REUFMB3JUC", + "name": "Avermes, Autopièces N7", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.320415, + 46.581404 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PREUFMB3JUC", + "ref": "REUFMB3JUC", + "name": "Avermes, Autopièces N7", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.320415, + 46.581404 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PREUFMB3JUC", + "ref": "REUFMB3JUC", + "name": "Avermes, Autopièces N7", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.320415, + 46.581404 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PREUFMB3JUC", + "ref": "REUFMB3JUC", + "name": "Avermes, Autopièces N7", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.320415, + 46.581404 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PREUFMB3JUC", + "ref": "REUFMB3JUC", + "name": "Avermes, Autopièces N7", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.320415, + 46.581404 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PREUFMB3JUC", + "ref": "REUFMB3JUC", + "name": "Avermes, Autopièces N7", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0881124, + 47.62961024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB61GBWQAVL", + "ref": "B61GBWQAVL", + "name": "Carnac, Village de Quelvezin,", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.55363, + 47.8043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYFNNSM", + "ref": "YFNNSM", + "name": "Auxerre, Gouraud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.216214, + 48.689763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLK174HG81PAI5", + "ref": "LLK174HG81PAI5", + "name": "Tomblaine, Avenue Eugène Pottier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.216214, + 48.689763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLK174HG81PAI5", + "ref": "LLK174HG81PAI5", + "name": "Tomblaine, Avenue Eugène Pottier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04512836, + 49.11464708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT7NT4TEAJS", + "ref": "T7NT4TEAJS", + "name": "Sarreguemines, Auberge de Saint Walfrid", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37956223, + 49.24620227 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEQCDH9J1JP", + "ref": "EQCDH9J1JP", + "name": "Cormeilles, Rue de l'Abbaye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.508629, + 46.00356 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMDMC6YBZXB", + "ref": "MDMC6YBZXB", + "name": "Auberge d'Aranc, Aranc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.508629, + 46.00356 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMDMC6YBZXB", + "ref": "MDMC6YBZXB", + "name": "Auberge d'Aranc, Aranc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260456, + 47.956663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3EMVP93X7", + "ref": "V3EMVP93X7", + "name": "Westhalten, Rue de Rouffach", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260456, + 47.956663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3EMVP93X7", + "ref": "V3EMVP93X7", + "name": "Westhalten, Rue de Rouffach", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.89764358, + 48.08101062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKZIHSYQXN", + "ref": "YKZIHSYQXN", + "name": "Gérardmer, Auberge du Pont des Fées", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2107, + 45.8393 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPMKO0KCT6", + "ref": "CPMKO0KCT6", + "name": "Talloires-Montmin, Auberge du Père Bise", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2107, + 45.8393 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPMKO0KCT6", + "ref": "CPMKO0KCT6", + "name": "Talloires-Montmin, Auberge du Père Bise", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2107, + 45.8393 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPMKO0KCT6", + "ref": "CPMKO0KCT6", + "name": "Talloires-Montmin, Auberge du Père Bise", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2107, + 45.8393 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPMKO0KCT6", + "ref": "CPMKO0KCT6", + "name": "Talloires-Montmin, Auberge du Père Bise", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.603303, + 48.128755 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVF5EU1QLKV", + "ref": "VF5EU1QLKV", + "name": "Cheniménil, Auberge du Ruxelier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37956223, + 49.24620227 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEQCDH9J1JP", + "ref": "EQCDH9J1JP", + "name": "Cormeilles, Rue de l'Abbaye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.072434, + 49.447921 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLL76TVKIP4", + "ref": "LL76TVKIP4", + "name": "Rouen, rue de Constantine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94978, + 47.2137 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEAFCWDTLI", + "ref": "VEAFCWDTLI", + "name": "Besançon, Audi Espace 3000", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94978, + 47.2137 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEAFCWDTLI", + "ref": "VEAFCWDTLI", + "name": "Besançon, Audi Espace 3000", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94978, + 47.2137 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEAFCWDTLI", + "ref": "VEAFCWDTLI", + "name": "Besançon, Audi Espace 3000", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94978, + 47.2137 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEAFCWDTLI", + "ref": "VEAFCWDTLI", + "name": "Besançon, Audi Espace 3000", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94978, + 47.2137 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEAFCWDTLI", + "ref": "VEAFCWDTLI", + "name": "Besançon, Audi Espace 3000", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94978, + 47.2137 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEAFCWDTLI", + "ref": "VEAFCWDTLI", + "name": "Besançon, Audi Espace 3000", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94978, + 47.2137 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEAFCWDTLI", + "ref": "VEAFCWDTLI", + "name": "Besançon, Audi Espace 3000", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.65487, + 49.57855 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEVGRRYJMAI", + "ref": "EVGRRYJMAI", + "name": "Laon, Audi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.65487, + 49.57855 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEVGRRYJMAI", + "ref": "EVGRRYJMAI", + "name": "Laon, Audi", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.072434, + 49.447921 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLL76TVKIP4", + "ref": "LL76TVKIP4", + "name": "Rouen, rue de Constantine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378329, + 48.681627 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSBPX6OZUXS", + "ref": "SBPX6OZUXS", + "name": "Viry-Châtillon, avenue du Général de Gaulle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378329, + 48.681627 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSBPX6OZUXS", + "ref": "SBPX6OZUXS", + "name": "Viry-Châtillon, avenue du Général de Gaulle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378329, + 48.681627 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSBPX6OZUXS", + "ref": "SBPX6OZUXS", + "name": "Viry-Châtillon, avenue du Général de Gaulle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.688721, + 47.831799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZVUO3G8E9O", + "ref": "ZVUO3G8E9O", + "name": "Château-gontier, route de sablé", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.688721, + 47.831799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZVUO3G8E9O", + "ref": "ZVUO3G8E9O", + "name": "Château-gontier, route de sablé", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.688721, + 47.831799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZVUO3G8E9O", + "ref": "ZVUO3G8E9O", + "name": "Château-gontier, route de sablé", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.688721, + 47.831799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZVUO3G8E9O", + "ref": "ZVUO3G8E9O", + "name": "Château-gontier, route de sablé", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.688721, + 47.831799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZVUO3G8E9O", + "ref": "ZVUO3G8E9O", + "name": "Château-gontier, route de sablé", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.688721, + 47.831799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZVUO3G8E9O", + "ref": "ZVUO3G8E9O", + "name": "Château-gontier, route de sablé", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.688721, + 47.831799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZVUO3G8E9O", + "ref": "ZVUO3G8E9O", + "name": "Château-gontier, route de sablé", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.688721, + 47.831799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZVUO3G8E9O", + "ref": "ZVUO3G8E9O", + "name": "Château-gontier, route de sablé", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.688721, + 47.831799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZVUO3G8E9O", + "ref": "ZVUO3G8E9O", + "name": "Château-gontier, route de sablé", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.688721, + 47.831799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZVUO3G8E9O", + "ref": "ZVUO3G8E9O", + "name": "Château-gontier, route de sablé", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.688721, + 47.831799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZVUO3G8E9O", + "ref": "ZVUO3G8E9O", + "name": "Château-gontier, route de sablé", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.688721, + 47.831799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZVUO3G8E9O", + "ref": "ZVUO3G8E9O", + "name": "Château-gontier, route de sablé", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4044, + 43.2905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIEDDDF0Q0L", + "ref": "IEDDDF0Q0L", + "name": "Marseille, Hôpitaux Universitaires", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.076645, + 43.231781 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHUFEKVP2OW7B", + "ref": "LLHUFEKVP2OW7B", + "name": "Tarbes, Rue Maréchal Foch", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.076645, + 43.231781 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHUFEKVP2OW7B", + "ref": "LLHUFEKVP2OW7B", + "name": "Tarbes, Rue Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.128946, + 44.610044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIYORKBPKU5", + "ref": "IYORKBPKU5", + "name": "La Teste-de-Buch, AUTO 33", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.128946, + 44.610044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIYORKBPKU5", + "ref": "IYORKBPKU5", + "name": "La Teste-de-Buch, AUTO 33", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.128946, + 44.610044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIYORKBPKU5", + "ref": "IYORKBPKU5", + "name": "La Teste-de-Buch, AUTO 33", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHONXFPNYV", + "ref": "THONXFPNYV", + "name": "Toulouse, AUTO NORD", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHONXFPNYV", + "ref": "THONXFPNYV", + "name": "Toulouse, AUTO NORD", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHONXFPNYV", + "ref": "THONXFPNYV", + "name": "Toulouse, AUTO NORD", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHONXFPNYV", + "ref": "THONXFPNYV", + "name": "Toulouse, AUTO NORD", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHONXFPNYV", + "ref": "THONXFPNYV", + "name": "Toulouse, AUTO NORD", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.80023166, + 43.66688431 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG0HAPOBGP3", + "ref": "G0HAPOBGP3", + "name": "Combaillaux, Mas de Gentil", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.89513, + 42.672 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW10TRRJXGH", + "ref": "W10TRRJXGH", + "name": "Perpignan, AMK", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378329, + 48.681627 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSBPX6OZUXS", + "ref": "SBPX6OZUXS", + "name": "Viry-Châtillon, avenue du Général de Gaulle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33287519, + 43.99147145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV7EXT2CMXB", + "ref": "V7EXT2CMXB", + "name": "ABM MONTAUBAN, Avenue de l'Europe", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36738503, + 47.12095734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBBOWNBKO6", + "ref": "LBBOWNBKO6", + "name": "E. Leclerc, Saint-Doulchard", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73905, + 48.523048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT8NDNATOEV", + "ref": "T8NDNATOEV", + "name": "Illkirch-Graffenstaden, 550 Boulevard Sébastien Brant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73905, + 48.523048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT8NDNATOEV", + "ref": "T8NDNATOEV", + "name": "Illkirch-Graffenstaden, 550 Boulevard Sébastien Brant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73905, + 48.523048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT8NDNATOEV", + "ref": "T8NDNATOEV", + "name": "Illkirch-Graffenstaden, 550 Boulevard Sébastien Brant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73905, + 48.523048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT8NDNATOEV", + "ref": "T8NDNATOEV", + "name": "Illkirch-Graffenstaden, 550 Boulevard Sébastien Brant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.996826, + 45.994531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCJIGQX5EEN", + "ref": "CJIGQX5EEN", + "name": "Charbonnières-les-Vieilles, A l'Aube des Volcans", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.996826, + 45.994531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCJIGQX5EEN", + "ref": "CJIGQX5EEN", + "name": "Charbonnières-les-Vieilles, A l'Aube des Volcans", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.996826, + 45.994531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCJIGQX5EEN", + "ref": "CJIGQX5EEN", + "name": "Charbonnières-les-Vieilles, A l'Aube des Volcans", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33287519, + 43.99147145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV7EXT2CMXB", + "ref": "V7EXT2CMXB", + "name": "ABM MONTAUBAN, Avenue de l'Europe", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33287519, + 43.99147145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV7EXT2CMXB", + "ref": "V7EXT2CMXB", + "name": "ABM MONTAUBAN, Avenue de l'Europe", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.478806, + 48.176019 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCJB1ZC4BR6", + "ref": "CJB1ZC4BR6", + "name": "Épinal, ABW Auto", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.89513, + 42.672 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW10TRRJXGH", + "ref": "W10TRRJXGH", + "name": "Perpignan, AMK", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.478806, + 48.176019 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCJB1ZC4BR6", + "ref": "CJB1ZC4BR6", + "name": "Épinal, ABW Auto", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.680396, + 47.177474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYO82KYWPO8", + "ref": "YO82KYWPO8", + "name": "La Montagne, Rue du Drouillard", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.680396, + 47.177474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYO82KYWPO8", + "ref": "YO82KYWPO8", + "name": "La Montagne, Rue du Drouillard", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.680396, + 47.177474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYO82KYWPO8", + "ref": "YO82KYWPO8", + "name": "La Montagne, Rue du Drouillard", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.680396, + 47.177474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYO82KYWPO8", + "ref": "YO82KYWPO8", + "name": "La Montagne, Rue du Drouillard", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12840509, + 48.65873718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEOGRMLSQTW", + "ref": "EOGRMLSQTW", + "name": "ADH, route de l'Aviation", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12840509, + 48.65873718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEOGRMLSQTW", + "ref": "EOGRMLSQTW", + "name": "ADH, route de l'Aviation", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.149003, + 49.414058 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP7ZEAJRSCL", + "ref": "P7ZEAJRSCL", + "name": "Le Mesnil-Esnard, Pôle Formation UIMM Rouen Dieppe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.149003, + 49.414058 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP7ZEAJRSCL", + "ref": "P7ZEAJRSCL", + "name": "Le Mesnil-Esnard, Pôle Formation UIMM Rouen Dieppe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.07067616, + 47.84359733 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POEOGLXCZFN", + "ref": "OEOGLXCZFN", + "name": "AG Garage, Willer-Sur-Thur", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHONXFPNYV", + "ref": "THONXFPNYV", + "name": "Toulouse, AUTO NORD", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHONXFPNYV", + "ref": "THONXFPNYV", + "name": "Toulouse, AUTO NORD", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHONXFPNYV", + "ref": "THONXFPNYV", + "name": "Toulouse, AUTO NORD", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.896488, + 43.906685 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL3MM8AGQ9C", + "ref": "L3MM8AGQ9C", + "name": "Avignon, Alectron energy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18462, + 48.8965 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDXPKNG", + "ref": "DXPKNG", + "name": "Nanterre, Rexel", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2020-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18462, + 48.8965 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDXPKNG", + "ref": "DXPKNG", + "name": "Nanterre, Rexel", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2020-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.19557, + 43.573451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTJNUX7EA3X", + "ref": "TJNUX7EA3X", + "name": "Route de Nimes, Bazarland", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.19557, + 43.573451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTJNUX7EA3X", + "ref": "TJNUX7EA3X", + "name": "Route de Nimes, Bazarland", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.19557, + 43.573451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTJNUX7EA3X", + "ref": "TJNUX7EA3X", + "name": "Route de Nimes, Bazarland", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71965817, + 48.63519881 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHY3EJOYI0", + "ref": "THY3EJOYI0", + "name": "Mundolsheim, Airtec", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71965817, + 48.63519881 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHY3EJOYI0", + "ref": "THY3EJOYI0", + "name": "Mundolsheim, Airtec", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.57130327, + 50.41575798 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMSPSTZ6J2B", + "ref": "MSPSTZ6J2B", + "name": "Aiseau - Presles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.57130327, + 50.41575798 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMSPSTZ6J2B", + "ref": "MSPSTZ6J2B", + "name": "Aiseau - Presles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.896488, + 43.906685 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL3MM8AGQ9C", + "ref": "L3MM8AGQ9C", + "name": "Avignon, Alectron energy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.896488, + 43.906685 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL3MM8AGQ9C", + "ref": "L3MM8AGQ9C", + "name": "Avignon, Alectron energy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHONXFPNYV", + "ref": "THONXFPNYV", + "name": "Toulouse, AUTO NORD", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.896488, + 43.906685 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL3MM8AGQ9C", + "ref": "L3MM8AGQ9C", + "name": "Avignon, Alectron energy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.452093, + 48.417253 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJZ543QKP9R", + "ref": "JZ543QKP9R", + "name": "Luisant, Alliance Automobile", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.452093, + 48.417253 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJZ543QKP9R", + "ref": "JZ543QKP9R", + "name": "Luisant, Alliance Automobile", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.452093, + 48.417253 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJZ543QKP9R", + "ref": "JZ543QKP9R", + "name": "Luisant, Alliance Automobile", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.02513243, + 46.87560944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUG3WVGHZF7", + "ref": "UG3WVGHZF7", + "name": "Les Herbiers, avenue de la Maine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.02513243, + 46.87560944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUG3WVGHZF7", + "ref": "UG3WVGHZF7", + "name": "Les Herbiers, avenue de la Maine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.377849, + 48.681423 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSBPX6OZUXS", + "ref": "SBPX6OZUXS", + "name": "Viry-Châtillon, avenue du Général de Gaulle", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.377849, + 48.681423 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSBPX6OZUXS", + "ref": "SBPX6OZUXS", + "name": "Viry-Châtillon, avenue du Général de Gaulle", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378329, + 48.681627 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSBPX6OZUXS", + "ref": "SBPX6OZUXS", + "name": "Viry-Châtillon, avenue du Général de Gaulle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.377849, + 48.681423 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSBPX6OZUXS", + "ref": "SBPX6OZUXS", + "name": "Viry-Châtillon, avenue du Général de Gaulle", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18462, + 48.8965 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDXPKNG", + "ref": "DXPKNG", + "name": "Nanterre, Rexel", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2020-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.397154, + 43.348384 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWHQDPMTUSJ", + "ref": "WHQDPMTUSJ", + "name": "Cambo-les-Bains, Agence Cascino", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.397154, + 43.348384 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWHQDPMTUSJ", + "ref": "WHQDPMTUSJ", + "name": "Cambo-les-Bains, Agence Cascino", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.397154, + 43.348384 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWHQDPMTUSJ", + "ref": "WHQDPMTUSJ", + "name": "Cambo-les-Bains, Agence Cascino", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHONXFPNYV", + "ref": "THONXFPNYV", + "name": "Toulouse, AUTO NORD", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHONXFPNYV", + "ref": "THONXFPNYV", + "name": "Toulouse, AUTO NORD", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHONXFPNYV", + "ref": "THONXFPNYV", + "name": "Toulouse, AUTO NORD", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.58571634, + 44.8623179 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVNGYVMGGN2", + "ref": "VNGYVMGGN2", + "name": "Le Bouscat, AUTO PORT, 83 Boulevard Godard", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.58571634, + 44.8623179 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVNGYVMGGN2", + "ref": "VNGYVMGGN2", + "name": "Le Bouscat, AUTO PORT, 83 Boulevard Godard", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.58571634, + 44.8623179 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVNGYVMGGN2", + "ref": "VNGYVMGGN2", + "name": "Le Bouscat, AUTO PORT, 83 Boulevard Godard", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9743661, + 47.27715089 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PISHILDOGFQ", + "ref": "ISHILDOGFQ", + "name": "École-Valentin, Rue Saint-Christophe", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.83561702, + 42.53316786 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZVL7ATPPWY", + "ref": "ZVL7ATPPWY", + "name": "Le Boulou, ZA Font de la Banquière", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38581, + 49.1471 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHLEBW", + "ref": "KHLEBW", + "name": "Asnières-sur-Oise, Abbaye de Royaumont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38581, + 49.1471 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHLEBW", + "ref": "KHLEBW", + "name": "Asnières-sur-Oise, Abbaye de Royaumont", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.402562, + 49.199265 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESA4E2FUK6", + "ref": "ESA4E2FUK6", + "name": "Villers-Bocage, Actalia", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.402562, + 49.199265 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESA4E2FUK6", + "ref": "ESA4E2FUK6", + "name": "Villers-Bocage, Actalia", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6225, + 50.51542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO19SAEMHWV", + "ref": "O19SAEMHWV", + "name": "Fouquières-lès-Béthune, Parking P+R", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6225, + 50.51542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO19SAEMHWV", + "ref": "O19SAEMHWV", + "name": "Fouquières-lès-Béthune, Parking P+R", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6225, + 50.51542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO19SAEMHWV", + "ref": "O19SAEMHWV", + "name": "Fouquières-lès-Béthune, Parking P+R", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.937185, + 47.23002 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PANFTOPYB1P", + "ref": "ANFTOPYB1P", + "name": "B.T.S - La Planche, Franois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.937185, + 47.23002 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PANFTOPYB1P", + "ref": "ANFTOPYB1P", + "name": "B.T.S - La Planche, Franois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.61389631, + 47.76883595 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQQHTLB", + "ref": "QQHTLB", + "name": "Tavers, Adefi", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71117858, + 47.8386646 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGPVWBL", + "ref": "GPVWBL", + "name": "Meung-sur-Loire, Adefi", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33669653, + 43.80998863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZIBNJW6L9E", + "ref": "ZIBNJW6L9E", + "name": "Nîmes, Rue Etienne Lenoir", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.397154, + 43.348384 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWHQDPMTUSJ", + "ref": "WHQDPMTUSJ", + "name": "Cambo-les-Bains, Agence Cascino", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.55363, + 47.8043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYFNNSM", + "ref": "YFNNSM", + "name": "Auxerre, Gouraud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.57466, + 47.7974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMSSQHX", + "ref": "MSSQHX", + "name": "Auxerre, parking des quais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.56561, + 47.8026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPXTTGR", + "ref": "PXTTGR", + "name": "Auxerre, Parking relais PEM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53460235, + 47.80873781 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PNT5MWKKIOS", + "ref": "NT5MWKKIOS", + "name": "Saint-Georges-Sur-Baulche, 74 Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.75796258, + 47.89523505 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PZ5UCFNWMKC", + "ref": "Z5UCFNWMKC", + "name": "Ligny-Le-Chatel, 13 Avenue de Chablis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12184313, + 47.90355193 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PVN6VPKVCYJ", + "ref": "VN6VPKVCYJ", + "name": "Thorey, 20 Grande rue ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.66544151, + 47.71272277 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PO9WI6RZMGF", + "ref": "O9WI6RZMGF", + "name": "Irancy, Chemin des Fosses", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62774134, + 47.90392773 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PRD41RSGJAA", + "ref": "RD41RSGJAA", + "name": "Hery, 4 Place de L Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7432061, + 47.4617954 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PE7P4WVKFHE", + "ref": "E7P4WVKFHE", + "name": "Vezelay, Parking D957 - route D Avallon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3460571, + 47.61749033 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PDLMH5PS9PO", + "ref": "DLMH5PS9PO", + "name": "Lain, Place du 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.00455549, + 47.58473446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PABZLE7DG3B", + "ref": "ABZLE7DG3B", + "name": "L'Isle-Sur-Serein, 5 Avenue du Parc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4384793, + 47.99364816 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PANJ1WIKMYP", + "ref": "ANJ1WIKMYP", + "name": "Looze, 1 rue Suzanne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12184313, + 47.90355193 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PVN6VPKVCYJ", + "ref": "VN6VPKVCYJ", + "name": "Thorey, 20 Grande rue ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.76453936, + 47.45937177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PEWYZJ18PVY", + "ref": "EWYZJ18PVY", + "name": "Saint-Pere, 30 rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0711867, + 47.6413375 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PY168YXLDGQ", + "ref": "Y168YXLDGQ", + "name": "Saint-Fargeau, Place de L Hotel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3753439, + 47.6836009 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PWGS1UBRXZZ", + "ref": "WGS1UBRXZZ", + "name": "Leugny, Place de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.73299658, + 47.99722361 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PWWQDW4NOVM", + "ref": "WWQDW4NOVM", + "name": "Saint-Florentin, Place du Port", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0849445, + 47.8474925 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXKLPLJJ0NF", + "ref": "XKLPLJJ0NF", + "name": "Tanlay, rue Haute des Fosses", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.57964262, + 47.85128056 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PG3EJY8H0MI", + "ref": "G3EJY8H0MI", + "name": "Moneteau, rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5150443, + 47.96251221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PRGSCLDYTHV", + "ref": "RGSCLDYTHV", + "name": "Migennes, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35926831, + 47.9125884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PYIAMVIOUWW", + "ref": "YIAMVIOUWW", + "name": "Senan, 13 route de Joigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62615079, + 47.95208148 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PJARPJJ9XE9", + "ref": "JARPJJ9XE9", + "name": "Mont-Saint-Sulpice, 4 Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9398107, + 47.5152884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXPRVLAFTZW", + "ref": "XPRVLAFTZW", + "name": "Sauvigny-Le-Bois, Place du Bicentenaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4837216, + 47.9640548 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PHEQ9HQWWAE", + "ref": "HEQ9HQWWAE", + "name": "Laroche-Saint-Cydroine, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3460571, + 47.61749033 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PDLMH5PS9PO", + "ref": "DLMH5PS9PO", + "name": "Lain, Place du 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.90832856, + 47.48937079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PYZOIQEYBLO", + "ref": "YZOIQEYBLO", + "name": "Avallon, rue Tour du Magasin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41763318, + 47.80005966 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PFPTVYF69DD", + "ref": "FPTVYF69DD", + "name": "Lindry, Place de la Liberte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0849445, + 47.8474925 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXKLPLJJ0NF", + "ref": "XKLPLJJ0NF", + "name": "Tanlay, rue Haute des Fosses", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.21, + 47.82238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PZX1OHTORO0", + "ref": "ZX1OHTORO0", + "name": "Gland, Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.76453936, + 47.45937177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PEWYZJ18PVY", + "ref": "EWYZJ18PVY", + "name": "Saint-Pere, 30 rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53779346, + 47.74316892 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PLCFU7VLMR8", + "ref": "LCFU7VLMR8", + "name": "Vallan, 5 rue de L Abreuvoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.63387153, + 47.70402731 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PNPWU1NKGAH", + "ref": "NPWU1NKGAH", + "name": "Vincelles, 23 rue de l'Yonne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9398107, + 47.5152884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXPRVLAFTZW", + "ref": "XPRVLAFTZW", + "name": "Sauvigny-Le-Bois, Place du Bicentenaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35926831, + 47.9125884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PYIAMVIOUWW", + "ref": "YIAMVIOUWW", + "name": "Senan, 13 route de Joigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8816886, + 47.7454107 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXBKOAMYT9V", + "ref": "XBKOAMYT9V", + "name": "Rogny-Les-Sept-Ecluses, Quai Sully", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1558136, + 47.5812445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89POSPWWGX5NY", + "ref": "OSPWWGX5NY", + "name": "Treigny, Parking Château de Guedelon, 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.18165779, + 47.5496198 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PEEP0X6NNHY", + "ref": "EEP0X6NNHY", + "name": "Treigny, rue du Champs de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.64666767, + 47.74408337 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PQCI92NVVNY", + "ref": "QCI92NVVNY", + "name": "Saint-Bris-Le-Vineux, 2 rue Docteur Tardieux ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.59036073, + 47.67741993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PJGEOPKPRGO", + "ref": "JGEOPKPRGO", + "name": "Val-De-Mercy, 23 rue de Vincelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1558136, + 47.5812445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PDPTFW3WTSR", + "ref": "DPTFW3WTSR", + "name": "Treigny, Parking Château de Guedelon, 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.59036073, + 47.67741993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PJGEOPKPRGO", + "ref": "JGEOPKPRGO", + "name": "Val-De-Mercy, 23 rue de Vincelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4837216, + 47.9640548 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PHEQ9HQWWAE", + "ref": "HEQ9HQWWAE", + "name": "Laroche-Saint-Cydroine, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.64666767, + 47.74408337 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PQCI92NVVNY", + "ref": "QCI92NVVNY", + "name": "Saint-Bris-Le-Vineux, 2 rue Docteur Tardieux ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53779346, + 47.74316892 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PLCFU7VLMR8", + "ref": "LCFU7VLMR8", + "name": "Vallan, 5 rue de L Abreuvoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.63387153, + 47.70402731 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PNPWU1NKGAH", + "ref": "NPWU1NKGAH", + "name": "Vincelles, 23 rue de l'Yonne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8816886, + 47.7454107 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXBKOAMYT9V", + "ref": "XBKOAMYT9V", + "name": "Rogny-Les-Sept-Ecluses, Quai Sully", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1558136, + 47.5812445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PDPTFW3WTSR", + "ref": "DPTFW3WTSR", + "name": "Treigny, Parking Château de Guedelon, 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53460235, + 47.80873781 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PNT5MWKKIOS", + "ref": "NT5MWKKIOS", + "name": "Saint-Georges-Sur-Baulche, 74 Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.18165779, + 47.5496198 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PEEP0X6NNHY", + "ref": "EEP0X6NNHY", + "name": "Treigny, rue du Champs de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.73299658, + 47.99722361 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PWWQDW4NOVM", + "ref": "WWQDW4NOVM", + "name": "Saint-Florentin, Place du Port", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1558136, + 47.5812445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89POSPWWGX5NY", + "ref": "OSPWWGX5NY", + "name": "Treigny, Parking Château de Guedelon, 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0711867, + 47.6413375 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PY168YXLDGQ", + "ref": "Y168YXLDGQ", + "name": "Saint-Fargeau, Place de L Hotel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3753439, + 47.6836009 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PWGS1UBRXZZ", + "ref": "WGS1UBRXZZ", + "name": "Leugny, Place de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.00455549, + 47.58473446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PABZLE7DG3B", + "ref": "ABZLE7DG3B", + "name": "L'Isle-Sur-Serein, 5 Avenue du Parc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.76558346, + 47.96411764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PNCSVTXWFT3", + "ref": "NCSVTXWFT3", + "name": "Cheu, 3 rue du Bois", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31941336, + 48.04650803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PRJ6WGXFAAQ", + "ref": "RJ6WGXFAAQ", + "name": "Armeau, Chemin du Petit Port", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.347581, + 47.874537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PWKQMCXPLVY", + "ref": "WKQMCXPLVY", + "name": "Aillant-sur-Tholon, Parking rue du huit mai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.21, + 47.82238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PZX1OHTORO0", + "ref": "ZX1OHTORO0", + "name": "Gland, Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.459646, + 47.830781 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PHYBOIEYUXH", + "ref": "HYBOIEYUXH", + "name": "Charbuy, 50 Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.56187165, + 47.89936488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PCQTIPBKW32", + "ref": "CQTIPBKW32", + "name": "Chemilly-Sur-Yonne, rue Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31941336, + 48.04650803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PRJ6WGXFAAQ", + "ref": "RJ6WGXFAAQ", + "name": "Armeau, Chemin du Petit Port", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4915517, + 47.9414334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PCMQEKFB2BP", + "ref": "CMQEKFB2BP", + "name": "Charmoy, route de Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09528, + 47.886972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PS6P8Q3CCAX", + "ref": "S6P8Q3CCAX", + "name": "Charny, 40 Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.175336, + 47.610384 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PAIYZMSQLBC", + "ref": "AIYZMSQLBC", + "name": "Moutier-en-Puisaye, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62615079, + 47.95208148 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PJARPJJ9XE9", + "ref": "JARPJJ9XE9", + "name": "Mont-Saint-Sulpice, 4 Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.57964262, + 47.85128056 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PG3EJY8H0MI", + "ref": "G3EJY8H0MI", + "name": "Moneteau, rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.60794395, + 47.76733422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PZMWXUS8EQA", + "ref": "ZMWXUS8EQA", + "name": "Augy, Place de L'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.76558346, + 47.96411764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PNCSVTXWFT3", + "ref": "NCSVTXWFT3", + "name": "Cheu, 3 rue du Bois", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.235614, + 47.688826 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PK5T7XB37GG", + "ref": "K5T7XB37GG", + "name": "Perrigny-Sur-Armancon, ruelle Biere Cd96", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22435582, + 47.73200664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PGIM7NUC4LN", + "ref": "GIM7NUC4LN", + "name": "Ravieres, rue du Port", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09528, + 47.886972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PS6P8Q3CCAX", + "ref": "S6P8Q3CCAX", + "name": "Charny, 40 Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41496706, + 47.75529535 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89POQWUDU187C", + "ref": "OQWUDU187C", + "name": "Pourrain, rue de la Maitrise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9961991, + 47.3679883 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PNIBTKYNMO8", + "ref": "NIBTKYNMO8", + "name": "Quarre-Les-Tombes, Place de L Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.16613176, + 47.77365094 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PCFQAIZFBFN", + "ref": "CFQAIZFBFN", + "name": "Ancy-Le-Franc, Place de la Paix, 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.48571032, + 47.51872413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PWYQIBGH61M", + "ref": "WYQIBGH61M", + "name": "Andryes, 2 rue de la Mairie ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.16613176, + 47.77365094 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PRBJSJAWJIU", + "ref": "RBJSJAWJIU", + "name": "Ancy-Le-Franc, Place de la Paix, 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41720939, + 47.66138612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PPFG840FCF1", + "ref": "PFG840FCF1", + "name": "Ouanne, Place du Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.54242295, + 47.52556183 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PTWOTKK05J9", + "ref": "TWOTKK05J9", + "name": "Coulanges-Sur-Yonne, rue des Grands Vergers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.60794395, + 47.76733422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PZMWXUS8EQA", + "ref": "ZMWXUS8EQA", + "name": "Augy, Place de L'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.59902024, + 47.73803183 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PN2TOJUBYT5", + "ref": "N2TOJUBYT5", + "name": "Champs-Sur-Yonne, Place Saint Louis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.54242295, + 47.52556183 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PTWOTKK05J9", + "ref": "TWOTKK05J9", + "name": "Coulanges-Sur-Yonne, rue des Grands Vergers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5755278, + 47.98425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PO0HFZ0CNCY", + "ref": "O0HFZ0CNCY", + "name": "Esnon, Place des Saules", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.66544151, + 47.71272277 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PO9WI6RZMGF", + "ref": "O9WI6RZMGF", + "name": "Irancy, Chemin des Fosses", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62774134, + 47.90392773 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PRD41RSGJAA", + "ref": "RD41RSGJAA", + "name": "Hery, 4 Place de L Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.72346938, + 47.81809778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PDKORVPTIL0", + "ref": "DKORVPTIL0", + "name": "Beine, Parking rue du Ruisseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4384793, + 47.99364816 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PANJ1WIKMYP", + "ref": "ANJ1WIKMYP", + "name": "Looze, 1 rue Suzanne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41763318, + 47.80005966 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PFPTVYF69DD", + "ref": "FPTVYF69DD", + "name": "Lindry, Place de la Liberte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.80319003, + 48.02125754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PJJQXMOPFU6", + "ref": "JJQXMOPFU6", + "name": "Beugnon, rue neuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.80319003, + 48.02125754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PJJQXMOPFU6", + "ref": "JJQXMOPFU6", + "name": "Beugnon, rue neuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7985363, + 47.8162201 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PGDSFD1GRQ5", + "ref": "GDSFD1GRQ5", + "name": "Chablis, Place Saint Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4198563, + 47.5473062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PJMYY8FYAWD", + "ref": "JMYY8FYAWD", + "name": "Druyes-Les-Belles-Fontaines, Place du 8 Mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9467356, + 47.6989973 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PLYKHGRPY0K", + "ref": "LYKHGRPY0K", + "name": "Bleneau, Place du 11 Novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2890823, + 47.9744138 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PGE5GIEJMTM", + "ref": "GE5GIEJMTM", + "name": "La-Celle-Saint-Cyr, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.75796258, + 47.89523505 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PZ5UCFNWMKC", + "ref": "Z5UCFNWMKC", + "name": "Ligny-Le-Chatel, 13 Avenue de Chablis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.347581, + 47.874537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PWKQMCXPLVY", + "ref": "WKQMCXPLVY", + "name": "Aillant-sur-Tholon, Parking rue du huit mai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4997946, + 47.61447201 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PFCCSV36CXN", + "ref": "FCCSV36CXN", + "name": "Courson-Les-Carrieres, Place de L Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.69055871, + 47.6815771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PWMRHFI4HID", + "ref": "WMRHFI4HID", + "name": "Cravant, 26 rue Saint Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.48571032, + 47.51872413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PWYQIBGH61M", + "ref": "WYQIBGH61M", + "name": "Andryes, 2 rue de la Mairie ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.16613176, + 47.77365094 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PCFQAIZFBFN", + "ref": "CFQAIZFBFN", + "name": "Ancy-Le-Franc, Place de la Paix, 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.87835624, + 47.95070082 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXW1SLUHJGS", + "ref": "XW1SLUHJGS", + "name": "Flogny-La-Chapelle, Place des Commerces", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.21166092, + 47.85600811 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PVSJQ80Q6ZS", + "ref": "VSJQ80Q6ZS", + "name": "Cruzy-Le-Chatel, rue du Four", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.16613176, + 47.77365094 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PRBJSJAWJIU", + "ref": "RBJSJAWJIU", + "name": "Ancy-Le-Franc, Place de la Paix, 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4516898, + 47.8688752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PHS6YJGEDPN", + "ref": "HS6YJGEDPN", + "name": "Fleury-La-Vallee, rue de la Petite Motte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7432061, + 47.4617954 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PE7P4WVKFHE", + "ref": "E7P4WVKFHE", + "name": "Vezelay, Parking D957 - route D Avallon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4198563, + 47.5473062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PJMYY8FYAWD", + "ref": "JMYY8FYAWD", + "name": "Druyes-Les-Belles-Fontaines, Place du 8 Mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.56509, + 47.7927 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXZMEWP", + "ref": "XZMEWP", + "name": "Auxerre, Parking Charmilles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80583629, + 43.952648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFER1CVNZZ", + "ref": "HFER1CVNZZ", + "name": "Avignon, Parking Palais des Papes", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81052113, + 43.94793351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG2DDRJSDVR", + "ref": "G2DDRJSDVR", + "name": "Avignon, Parking des Halles", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80583629, + 43.952648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFER1CVNZZ", + "ref": "HFER1CVNZZ", + "name": "Avignon, Parking Palais des Papes", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81052113, + 43.94793351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG2DDRJSDVR", + "ref": "G2DDRJSDVR", + "name": "Avignon, Parking des Halles", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81052113, + 43.94793351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG2DDRJSDVR", + "ref": "G2DDRJSDVR", + "name": "Avignon, Parking des Halles", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80886886, + 43.94223997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGQMYEHSNO", + "ref": "AGQMYEHSNO", + "name": "Avignon, Parking Gare Centre", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81052113, + 43.94793351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG2DDRJSDVR", + "ref": "G2DDRJSDVR", + "name": "Avignon, Parking des Halles", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81052113, + 43.94793351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG2DDRJSDVR", + "ref": "G2DDRJSDVR", + "name": "Avignon, Parking des Halles", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81052113, + 43.94793351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG2DDRJSDVR", + "ref": "G2DDRJSDVR", + "name": "Avignon, Parking des Halles", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80583629, + 43.952648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFER1CVNZZ", + "ref": "HFER1CVNZZ", + "name": "Avignon, Parking Palais des Papes", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80583629, + 43.952648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFER1CVNZZ", + "ref": "HFER1CVNZZ", + "name": "Avignon, Parking Palais des Papes", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80583629, + 43.952648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFER1CVNZZ", + "ref": "HFER1CVNZZ", + "name": "Avignon, Parking Palais des Papes", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80583629, + 43.952648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFER1CVNZZ", + "ref": "HFER1CVNZZ", + "name": "Avignon, Parking Palais des Papes", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80583629, + 43.952648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFER1CVNZZ", + "ref": "HFER1CVNZZ", + "name": "Avignon, Parking Palais des Papes", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80583629, + 43.952648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFER1CVNZZ", + "ref": "HFER1CVNZZ", + "name": "Avignon, Parking Palais des Papes", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81052113, + 43.94793351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG2DDRJSDVR", + "ref": "G2DDRJSDVR", + "name": "Avignon, Parking des Halles", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80583629, + 43.952648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFER1CVNZZ", + "ref": "HFER1CVNZZ", + "name": "Avignon, Parking Palais des Papes", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81052113, + 43.94793351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG2DDRJSDVR", + "ref": "G2DDRJSDVR", + "name": "Avignon, Parking des Halles", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81052113, + 43.94793351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG2DDRJSDVR", + "ref": "G2DDRJSDVR", + "name": "Avignon, Parking des Halles", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498943, + 47.269888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWRBRGD5HQU", + "ref": "WRBRGD5HQU", + "name": "Carquefou, rue du Nouveau Bêle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498943, + 47.269888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWRBRGD5HQU", + "ref": "WRBRGD5HQU", + "name": "Carquefou, rue du Nouveau Bêle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498943, + 47.269888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWRBRGD5HQU", + "ref": "WRBRGD5HQU", + "name": "Carquefou, rue du Nouveau Bêle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498943, + 47.269888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWRBRGD5HQU", + "ref": "WRBRGD5HQU", + "name": "Carquefou, rue du Nouveau Bêle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81052113, + 43.94793351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG2DDRJSDVR", + "ref": "G2DDRJSDVR", + "name": "Avignon, Parking des Halles", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80583629, + 43.952648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFER1CVNZZ", + "ref": "HFER1CVNZZ", + "name": "Avignon, Parking Palais des Papes", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.235614, + 47.688826 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PK5T7XB37GG", + "ref": "K5T7XB37GG", + "name": "Perrigny-Sur-Armancon, ruelle Biere Cd96", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80583629, + 43.952648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFER1CVNZZ", + "ref": "HFER1CVNZZ", + "name": "Avignon, Parking Palais des Papes", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.57738, + 47.7986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLQVZYC", + "ref": "LQVZYC", + "name": "Auxerre, St-Martin les St-Marien", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.57738, + 47.7986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLQVZYC", + "ref": "LQVZYC", + "name": "Auxerre, St-Martin les St-Marien", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.56509, + 47.7927 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXZMEWP", + "ref": "XZMEWP", + "name": "Auxerre, Parking Charmilles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.56561, + 47.8026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPXTTGR", + "ref": "PXTTGR", + "name": "Auxerre, Parking relais PEM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.57466, + 47.7974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMSSQHX", + "ref": "MSSQHX", + "name": "Auxerre, parking des quais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80886886, + 43.94223997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGQMYEHSNO", + "ref": "AGQMYEHSNO", + "name": "Avignon, Parking Gare Centre", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80886886, + 43.94223997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGQMYEHSNO", + "ref": "AGQMYEHSNO", + "name": "Avignon, Parking Gare Centre", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80886886, + 43.94223997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGQMYEHSNO", + "ref": "AGQMYEHSNO", + "name": "Avignon, Parking Gare Centre", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80583629, + 43.952648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFER1CVNZZ", + "ref": "HFER1CVNZZ", + "name": "Avignon, Parking Palais des Papes", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80583629, + 43.952648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFER1CVNZZ", + "ref": "HFER1CVNZZ", + "name": "Avignon, Parking Palais des Papes", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80886886, + 43.94223997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGQMYEHSNO", + "ref": "AGQMYEHSNO", + "name": "Avignon, Parking Gare Centre", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80583629, + 43.952648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFER1CVNZZ", + "ref": "HFER1CVNZZ", + "name": "Avignon, Parking Palais des Papes", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80886886, + 43.94223997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGQMYEHSNO", + "ref": "AGQMYEHSNO", + "name": "Avignon, Parking Gare Centre", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80886886, + 43.94223997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGQMYEHSNO", + "ref": "AGQMYEHSNO", + "name": "Avignon, Parking Gare Centre", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81052113, + 43.94793351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG2DDRJSDVR", + "ref": "G2DDRJSDVR", + "name": "Avignon, Parking des Halles", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80886886, + 43.94223997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGQMYEHSNO", + "ref": "AGQMYEHSNO", + "name": "Avignon, Parking Gare Centre", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80886886, + 43.94223997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGQMYEHSNO", + "ref": "AGQMYEHSNO", + "name": "Avignon, Parking Gare Centre", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80886886, + 43.94223997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGQMYEHSNO", + "ref": "AGQMYEHSNO", + "name": "Avignon, Parking Gare Centre", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80886886, + 43.94223997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGQMYEHSNO", + "ref": "AGQMYEHSNO", + "name": "Avignon, Parking Gare Centre", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80886886, + 43.94223997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGQMYEHSNO", + "ref": "AGQMYEHSNO", + "name": "Avignon, Parking Gare Centre", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80583629, + 43.952648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFER1CVNZZ", + "ref": "HFER1CVNZZ", + "name": "Avignon, Parking Palais des Papes", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80583629, + 43.952648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFER1CVNZZ", + "ref": "HFER1CVNZZ", + "name": "Avignon, Parking Palais des Papes", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498943, + 47.269888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWRBRGD5HQU", + "ref": "WRBRGD5HQU", + "name": "Carquefou, rue du Nouveau Bêle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498943, + 47.269888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWRBRGD5HQU", + "ref": "WRBRGD5HQU", + "name": "Carquefou, rue du Nouveau Bêle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498943, + 47.269888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWRBRGD5HQU", + "ref": "WRBRGD5HQU", + "name": "Carquefou, rue du Nouveau Bêle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99303742, + 47.69658468 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PLX6ZXEAANA", + "ref": "LX6ZXEAANA", + "name": "Noyers, rue de L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92307884, + 45.71597843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ3Z2AGU2555D", + "ref": "LLJ3Z2AGU2555D", + "name": "B&B Hôtel Grésy-sur-Aix, Impasse Lavoisier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92307884, + 45.71597843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ3Z2AGU2555D", + "ref": "LLJ3Z2AGU2555D", + "name": "B&B Hôtel Grésy-sur-Aix, Impasse Lavoisier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92307884, + 45.71597843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ3Z2AGU2555D", + "ref": "LLJ3Z2AGU2555D", + "name": "B&B Hôtel Grésy-sur-Aix, Impasse Lavoisier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92307884, + 45.71597843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ3Z2AGU2555D", + "ref": "LLJ3Z2AGU2555D", + "name": "B&B Hôtel Grésy-sur-Aix, Impasse Lavoisier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8814761, + 48.9103995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXQ1TNK1LIC", + "ref": "XQ1TNK1LIC", + "name": "Quincy Voisins , av du Marechal Foch", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8814761, + 48.9103995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXQ1TNK1LIC", + "ref": "XQ1TNK1LIC", + "name": "Quincy Voisins , av du Marechal Foch", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8814761, + 48.9103995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXQ1TNK1LIC", + "ref": "XQ1TNK1LIC", + "name": "Quincy Voisins , av du Marechal Foch", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8814761, + 48.9103995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXQ1TNK1LIC", + "ref": "XQ1TNK1LIC", + "name": "Quincy Voisins , av du Marechal Foch", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8814761, + 48.9103995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXQ1TNK1LIC", + "ref": "XQ1TNK1LIC", + "name": "Quincy Voisins , av du Marechal Foch", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8814761, + 48.9103995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXQ1TNK1LIC", + "ref": "XQ1TNK1LIC", + "name": "Quincy Voisins , av du Marechal Foch", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99164464, + 47.5088675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PEAAJHMSG0A", + "ref": "EAAJHMSG0A", + "name": "Sauvigny-Le-Bois, Sortie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498943, + 47.269888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWRBRGD5HQU", + "ref": "WRBRGD5HQU", + "name": "Carquefou, rue du Nouveau Bêle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43990356, + 47.95138447 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PKVJYQPYE2S", + "ref": "KVJYQPYE2S", + "name": "Champlay, 50 Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9961991, + 47.3679883 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PNIBTKYNMO8", + "ref": "NIBTKYNMO8", + "name": "Quarre-Les-Tombes, Place de L Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41496706, + 47.75529535 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89POQWUDU187C", + "ref": "OQWUDU187C", + "name": "Pourrain, rue de la Maitrise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4516898, + 47.8688752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PHS6YJGEDPN", + "ref": "HS6YJGEDPN", + "name": "Fleury-La-Vallee, rue de la Petite Motte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22435582, + 47.73200664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PGIM7NUC4LN", + "ref": "GIM7NUC4LN", + "name": "Ravieres, rue du Port", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.87835624, + 47.95070082 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PXW1SLUHJGS", + "ref": "XW1SLUHJGS", + "name": "Flogny-La-Chapelle, Place des Commerces", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5755278, + 47.98425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PO0HFZ0CNCY", + "ref": "O0HFZ0CNCY", + "name": "Esnon, Place des Saules", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99164464, + 47.5088675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PEAAJHMSG0A", + "ref": "EAAJHMSG0A", + "name": "Sauvigny-Le-Bois, Sortie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.57231282, + 47.95238238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PGWPDQ07EIS", + "ref": "GWPDQ07EIS", + "name": "Ormoy, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41720939, + 47.66138612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS89PPFG840FCF1", + "ref": "PFG840FCF1", + "name": "Ouanne, Place du Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92307884, + 45.71597843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ3Z2AGU2555D", + "ref": "LLJ3Z2AGU2555D", + "name": "B&B Hôtel Grésy-sur-Aix, Impasse Lavoisier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92307884, + 45.71597843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ3Z2AGU2555D", + "ref": "LLJ3Z2AGU2555D", + "name": "B&B Hôtel Grésy-sur-Aix, Impasse Lavoisier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.61761, + 48.5401 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSMMADKASZB", + "ref": "SMMADKASZB", + "name": "Bollène, B&B Hôtel", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.62645, + 48.545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSFMSZ", + "ref": "ZSFMSZ", + "name": "Aéroport de Strasbourg Parking P2", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.073204, + 49.10163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRH9XRGS4L", + "ref": "LRH9XRGS4L", + "name": "Saint-Lô, Rue Jules Valles", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.073204, + 49.10163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRH9XRGS4L", + "ref": "LRH9XRGS4L", + "name": "Saint-Lô, Rue Jules Valles", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.073204, + 49.10163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRH9XRGS4L", + "ref": "LRH9XRGS4L", + "name": "Saint-Lô, Rue Jules Valles", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.073204, + 49.10163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRH9XRGS4L", + "ref": "LRH9XRGS4L", + "name": "Saint-Lô, Rue Jules Valles", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.624337, + 48.060483 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJBKLIDJFMT", + "ref": "JBKLIDJFMT", + "name": "Vern-sur-Seiche, rue du Passavent", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.624337, + 48.060483 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJBKLIDJFMT", + "ref": "JBKLIDJFMT", + "name": "Vern-sur-Seiche, rue du Passavent", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.624337, + 48.060483 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJBKLIDJFMT", + "ref": "JBKLIDJFMT", + "name": "Vern-sur-Seiche, rue du Passavent", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.624337, + 48.060483 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJBKLIDJFMT", + "ref": "JBKLIDJFMT", + "name": "Vern-sur-Seiche, rue du Passavent", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.916137, + 43.606863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBFRXEAP6WP", + "ref": "BFRXEAP6WP", + "name": "Montpellier, Rue Samuel Morse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.916137, + 43.606863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBFRXEAP6WP", + "ref": "BFRXEAP6WP", + "name": "Montpellier, Rue Samuel Morse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.04512, + 47.2309 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNKM6A0PYWP", + "ref": "NKM6A0PYWP", + "name": "Vierzon, Axione", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.04512, + 47.2309 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNKM6A0PYWP", + "ref": "NKM6A0PYWP", + "name": "Vierzon, Axione", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.004, + 49.0518 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSBLAQ", + "ref": "ZSBLAQ", + "name": "Ay champagne, Place du Jard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.004, + 49.0518 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSBLAQ", + "ref": "ZSBLAQ", + "name": "Ay champagne, Place du Jard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.161801, + 47.898629 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJRJ1YQKCPS", + "ref": "JRJ1YQKCPS", + "name": "Aéroport d'Orléans", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.161801, + 47.898629 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJRJ1YQKCPS", + "ref": "JRJ1YQKCPS", + "name": "Aéroport d'Orléans", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.161801, + 47.898629 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJRJ1YQKCPS", + "ref": "JRJ1YQKCPS", + "name": "Aéroport d'Orléans", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.161801, + 47.898629 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJRJ1YQKCPS", + "ref": "JRJ1YQKCPS", + "name": "Aéroport d'Orléans", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.62645, + 48.545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSFMSZ", + "ref": "ZSFMSZ", + "name": "Aéroport de Strasbourg Parking P2", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.62645, + 48.545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSFMSZ", + "ref": "ZSFMSZ", + "name": "Aéroport de Strasbourg Parking P2", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.62645, + 48.545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSFMSZ", + "ref": "ZSFMSZ", + "name": "Aéroport de Strasbourg Parking P2", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.603, + 46.3075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYSWOWTKK1A", + "ref": "YSWOWTKK1A", + "name": "Tramayes, place du champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.66859444, + 46.8966172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK1RXOZWOA5", + "ref": "K1RXOZWOA5", + "name": "Cheilly-lès-Maranges, Parking des Maranges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2124275, + 44.58129089 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEKHSALDPCE", + "ref": "EKHSALDPCE", + "name": "Pyla sur Mer, Camping de la Dune", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.93503158, + 48.29335853 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVFYCFMIF5", + "ref": "OVFYCFMIF5", + "name": "Saint-Dié-des-Vosges, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87844812, + 48.94033181 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO3RJPKY0UW", + "ref": "O3RJPKY0UW", + "name": "Mareuil les Meaux, Avenue de la Haute Borne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87844812, + 48.94033181 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO3RJPKY0UW", + "ref": "O3RJPKY0UW", + "name": "Mareuil les Meaux, Avenue de la Haute Borne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44817631, + 48.56613528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMECXL47JEY", + "ref": "MECXL47JEY", + "name": "Mennecy, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44817631, + 48.56613528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMECXL47JEY", + "ref": "MECXL47JEY", + "name": "Mennecy, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.063137, + 48.91606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POMPQB904LG", + "ref": "OMPQB904LG", + "name": "Pont-à-Mousson, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.063137, + 48.91606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POMPQB904LG", + "ref": "OMPQB904LG", + "name": "Pont-à-Mousson, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07523059, + 47.43460702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POTOLZUTYPN", + "ref": "OTOLZUTYPN", + "name": "Pontchâteau, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07523059, + 47.43460702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POTOLZUTYPN", + "ref": "OTOLZUTYPN", + "name": "Pontchâteau, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3551384, + 48.75298099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRR19SMVEEU", + "ref": "RR19SMVEEU", + "name": "Rungis, Place du Relais", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3551384, + 48.75298099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRR19SMVEEU", + "ref": "RR19SMVEEU", + "name": "Rungis, Place du Relais", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.93503158, + 48.29335853 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVFYCFMIF5", + "ref": "OVFYCFMIF5", + "name": "Saint-Dié-des-Vosges, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.51725041, + 48.57942157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGZ4Z5QIFE5", + "ref": "GZ4Z5QIFE5", + "name": "Moncel-lès-Lunéville, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37968, + 49.4055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHIAAJ792SH", + "ref": "HIAAJ792SH", + "name": "Saint-Pierre-lès-Elbeuf, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03729903, + 49.28873608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHIAAJ792SH", + "ref": "HIAAJ792SH", + "name": "Saint-Pierre-lès-Elbeuf, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.382598, + 48.741122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGKSM9JPFEJ", + "ref": "GKSM9JPFEJ", + "name": "Saverne, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.382598, + 48.741122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGKSM9JPFEJ", + "ref": "GKSM9JPFEJ", + "name": "Saverne, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09516456, + 45.61089661 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMRITJNKUD6", + "ref": "MRITJNKUD6", + "name": "Savigneux, Burger King", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.96419024, + 48.8194641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVMK6UA8RNE", + "ref": "VMK6UA8RNE", + "name": "Soufflenheim, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.96419024, + 48.8194641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVMK6UA8RNE", + "ref": "VMK6UA8RNE", + "name": "Soufflenheim, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.09836744, + 49.32627577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV9EYPVI8LD", + "ref": "V9EYPVI8LD", + "name": "Tourville-La-Rivière, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.09836744, + 49.32627577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV9EYPVI8LD", + "ref": "V9EYPVI8LD", + "name": "Tourville-La-Rivière, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1864568, + 49.24856253 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTEEOXBC8Q5", + "ref": "TEEOXBC8Q5", + "name": "Val-de-Reuil, Burger King", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.51725041, + 48.57942157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGZ4Z5QIFE5", + "ref": "GZ4Z5QIFE5", + "name": "Moncel-lès-Lunéville, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.71875472, + 45.97819852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGDX3BISWCW", + "ref": "GDX3BISWCW", + "name": "Limas, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.893774, + 46.853229 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODWORPPTTT", + "ref": "ODWORPPTTT", + "name": "Challans, Burger King", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.58068217, + 48.72619677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBOYXK5TOYQ", + "ref": "BOYXK5TOYQ", + "name": "Flers, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38346433, + 47.70708673 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN41JBEJUX0", + "ref": "N41JBEJUX0", + "name": "Châteaubriant, rue du 8 Mai 1945", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.90760516, + 47.90089427 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYA46XKXKNV", + "ref": "YA46XKXKNV", + "name": "Concarneau, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.90760516, + 47.90089427 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYA46XKXKNV", + "ref": "YA46XKXKNV", + "name": "Concarneau, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1204683, + 45.04648058 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT4PZWNFZBA", + "ref": "T4PZWNFZBA", + "name": "Coutras, Burger King", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1204683, + 45.04648058 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT4PZWNFZBA", + "ref": "T4PZWNFZBA", + "name": "Coutras, Burger King", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1204683, + 45.04648058 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT4PZWNFZBA", + "ref": "T4PZWNFZBA", + "name": "Coutras, Burger King", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1204683, + 45.04648058 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT4PZWNFZBA", + "ref": "T4PZWNFZBA", + "name": "Coutras, Burger King", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.24186015, + 48.71081884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVY4NRBJE2L", + "ref": "VY4NRBJE2L", + "name": "Essey-lès-Nancy, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.24186015, + 48.71081884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVY4NRBJE2L", + "ref": "VY4NRBJE2L", + "name": "Essey-lès-Nancy, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.58068217, + 48.72619677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBOYXK5TOYQ", + "ref": "BOYXK5TOYQ", + "name": "Flers, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.646493, + 47.357512 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLVMPNLAYFU", + "ref": "LVMPNLAYFU", + "name": "Joué-lès-Tours, rue Gustave Eiffel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.71875472, + 45.97819852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGDX3BISWCW", + "ref": "GDX3BISWCW", + "name": "Limas, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.646493, + 47.357512 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLVMPNLAYFU", + "ref": "LVMPNLAYFU", + "name": "Joué-lès-Tours, rue Gustave Eiffel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39718179, + 43.46467058 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZJREN2NZLF", + "ref": "ZJREN2NZLF", + "name": "Labarthe-sur-Lèze, Chemin des Agriès", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39718179, + 43.46467058 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZJREN2NZLF", + "ref": "ZJREN2NZLF", + "name": "Labarthe-sur-Lèze, Chemin des Agriès", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.0513394, + 48.51453622 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZHVKOIULL", + "ref": "UZHVKOIULL", + "name": "Landivisiau, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.0513394, + 48.51453622 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZHVKOIULL", + "ref": "UZHVKOIULL", + "name": "Landivisiau, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12864739, + 48.69360911 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLJRZ79TYYV", + "ref": "LJRZ79TYYV", + "name": "Laxou, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12864739, + 48.69360911 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLJRZ79TYYV", + "ref": "LJRZ79TYYV", + "name": "Laxou, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5481583, + 43.46713262 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVMQABZ1RXS", + "ref": "VMQABZ1RXS", + "name": "Le Muy, Burger King", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.10321425, + 48.88856813 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVZTNJWZFYA", + "ref": "VZTNJWZFYA", + "name": "Le Pecq, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.10321425, + 48.88856813 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVZTNJWZFYA", + "ref": "VZTNJWZFYA", + "name": "Le Pecq, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.893774, + 46.853229 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODWORPPTTT", + "ref": "ODWORPPTTT", + "name": "Challans, Burger King", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.893774, + 46.853229 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODWORPPTTT", + "ref": "ODWORPPTTT", + "name": "Challans, Burger King", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5812, + 44.8368 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEHJHDE", + "ref": "EHJHDE", + "name": "Bordeaux, Carayon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ0ZSMFKDDZ", + "ref": "Q0ZSMFKDDZ", + "name": "Chartres, Avenue Victor Hugo 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM4QQQCYB7O", + "ref": "M4QQQCYB7O", + "name": "Chartres, Avenue Victor Hugo 1", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53884125, + 48.44748692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWVK9HMQCCS", + "ref": "WVK9HMQCCS", + "name": "Chartres, Avenue Victor Hugo 4", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM4QQQCYB7O", + "ref": "M4QQQCYB7O", + "name": "Chartres, Avenue Victor Hugo 1", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM4QQQCYB7O", + "ref": "M4QQQCYB7O", + "name": "Chartres, Avenue Victor Hugo 1", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53884125, + 48.44748692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWVK9HMQCCS", + "ref": "WVK9HMQCCS", + "name": "Chartres, Avenue Victor Hugo 4", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM4QQQCYB7O", + "ref": "M4QQQCYB7O", + "name": "Chartres, Avenue Victor Hugo 1", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ0ZSMFKDDZ", + "ref": "Q0ZSMFKDDZ", + "name": "Chartres, Avenue Victor Hugo 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6GDDDH42A", + "ref": "L6GDDDH42A", + "name": "Chartres, Avenue Victor Hugo 3", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ0ZSMFKDDZ", + "ref": "Q0ZSMFKDDZ", + "name": "Chartres, Avenue Victor Hugo 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM4QQQCYB7O", + "ref": "M4QQQCYB7O", + "name": "Chartres, Avenue Victor Hugo 1", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6GDDDH42A", + "ref": "L6GDDDH42A", + "name": "Chartres, Avenue Victor Hugo 3", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ0ZSMFKDDZ", + "ref": "Q0ZSMFKDDZ", + "name": "Chartres, Avenue Victor Hugo 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ0ZSMFKDDZ", + "ref": "Q0ZSMFKDDZ", + "name": "Chartres, Avenue Victor Hugo 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5453, + 50.4754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRB9CFF9JHS", + "ref": "RB9CFF9JHS", + "name": "Bruay-la-Buissière, Rue Raoul Briquet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5453, + 50.4754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRB9CFF9JHS", + "ref": "RB9CFF9JHS", + "name": "Bruay-la-Buissière, Rue Raoul Briquet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-17", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44095006, + 43.32335871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFNEF1NNCUJ", + "ref": "FNEF1NNCUJ", + "name": "Lescar, CAP NORD BEARN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44095006, + 43.32335871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFNEF1NNCUJ", + "ref": "FNEF1NNCUJ", + "name": "Lescar, CAP NORD BEARN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.043611, + 49.06444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQP7WQ717RY", + "ref": "QP7WQ717RY", + "name": "Avenay-Val-d'Or, avenue Pierre Dubois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.043611, + 49.06444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQP7WQ717RY", + "ref": "QP7WQ717RY", + "name": "Avenay-Val-d'Or, avenue Pierre Dubois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.02944, + 49.1133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWHQ8FILD6X", + "ref": "WHQ8FILD6X", + "name": "Germaine, rue du Pré Michaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.02944, + 49.1133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWHQ8FILD6X", + "ref": "WHQ8FILD6X", + "name": "Germaine, rue du Pré Michaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12055, + 49.0469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPGPGPUMXHP", + "ref": "PGPGPUMXHP", + "name": "Tours-sur-Marne, Place de la Halle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ0ZSMFKDDZ", + "ref": "Q0ZSMFKDDZ", + "name": "Chartres, Avenue Victor Hugo 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53884125, + 48.44748692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWVK9HMQCCS", + "ref": "WVK9HMQCCS", + "name": "Chartres, Avenue Victor Hugo 4", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.893774, + 46.853229 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODWORPPTTT", + "ref": "ODWORPPTTT", + "name": "Challans, Burger King", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6GDDDH42A", + "ref": "L6GDDDH42A", + "name": "Chartres, Avenue Victor Hugo 3", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM4QQQCYB7O", + "ref": "M4QQQCYB7O", + "name": "Chartres, Avenue Victor Hugo 1", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53884125, + 48.44748692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWVK9HMQCCS", + "ref": "WVK9HMQCCS", + "name": "Chartres, Avenue Victor Hugo 4", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM4QQQCYB7O", + "ref": "M4QQQCYB7O", + "name": "Chartres, Avenue Victor Hugo 1", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53884125, + 48.44748692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWVK9HMQCCS", + "ref": "WVK9HMQCCS", + "name": "Chartres, Avenue Victor Hugo 4", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6GDDDH42A", + "ref": "L6GDDDH42A", + "name": "Chartres, Avenue Victor Hugo 3", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM4QQQCYB7O", + "ref": "M4QQQCYB7O", + "name": "Chartres, Avenue Victor Hugo 1", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM4QQQCYB7O", + "ref": "M4QQQCYB7O", + "name": "Chartres, Avenue Victor Hugo 1", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ0ZSMFKDDZ", + "ref": "Q0ZSMFKDDZ", + "name": "Chartres, Avenue Victor Hugo 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ0ZSMFKDDZ", + "ref": "Q0ZSMFKDDZ", + "name": "Chartres, Avenue Victor Hugo 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6GDDDH42A", + "ref": "L6GDDDH42A", + "name": "Chartres, Avenue Victor Hugo 3", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM4QQQCYB7O", + "ref": "M4QQQCYB7O", + "name": "Chartres, Avenue Victor Hugo 1", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ0ZSMFKDDZ", + "ref": "Q0ZSMFKDDZ", + "name": "Chartres, Avenue Victor Hugo 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ0ZSMFKDDZ", + "ref": "Q0ZSMFKDDZ", + "name": "Chartres, Avenue Victor Hugo 2", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6GDDDH42A", + "ref": "L6GDDDH42A", + "name": "Chartres, Avenue Victor Hugo 3", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53884125, + 48.44748692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWVK9HMQCCS", + "ref": "WVK9HMQCCS", + "name": "Chartres, Avenue Victor Hugo 4", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM4QQQCYB7O", + "ref": "M4QQQCYB7O", + "name": "Chartres, Avenue Victor Hugo 1", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6GDDDH42A", + "ref": "L6GDDDH42A", + "name": "Chartres, Avenue Victor Hugo 3", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6GDDDH42A", + "ref": "L6GDDDH42A", + "name": "Chartres, Avenue Victor Hugo 3", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6GDDDH42A", + "ref": "L6GDDDH42A", + "name": "Chartres, Avenue Victor Hugo 3", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53884125, + 48.44748692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWVK9HMQCCS", + "ref": "WVK9HMQCCS", + "name": "Chartres, Avenue Victor Hugo 4", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53884125, + 48.44748692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWVK9HMQCCS", + "ref": "WVK9HMQCCS", + "name": "Chartres, Avenue Victor Hugo 4", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6GDDDH42A", + "ref": "L6GDDDH42A", + "name": "Chartres, Avenue Victor Hugo 3", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38346433, + 47.70708673 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN41JBEJUX0", + "ref": "N41JBEJUX0", + "name": "Châteaubriant, rue du 8 Mai 1945", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.57866798, + 48.89269131 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ0GFGGCJEV", + "ref": "J0GFGGCJEV", + "name": "Chelles, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.57866798, + 48.89269131 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ0GFGGCJEV", + "ref": "J0GFGGCJEV", + "name": "Chelles, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.614437, + 44.869939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDFCD7VBOXJ", + "ref": "DFCD7VBOXJ", + "name": "Le Bouscat, Avenue Georges Clémenceau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51971, + 44.8568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDWNMZ", + "ref": "JDWNMZ", + "name": "Cenon, Place François Mitterrand", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49563, + 44.8523 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZDKGZT", + "ref": "ZDKGZT", + "name": "Artigues, Avenue Descartes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51971, + 44.8568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDWNMZ", + "ref": "JDWNMZ", + "name": "Cenon, Place François Mitterrand", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51971, + 44.8568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDWNMZ", + "ref": "JDWNMZ", + "name": "Cenon, Place François Mitterrand", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51971, + 44.8568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDWNMZ", + "ref": "JDWNMZ", + "name": "Cenon, Place François Mitterrand", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56097, + 44.8414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVUNCDL", + "ref": "VUNCDL", + "name": "Bordeaux, Serr", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5902, + 44.8376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNMHCTA", + "ref": "NMHCTA", + "name": "Bordeaux, Sourdis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49563, + 44.8523 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZDKGZT", + "ref": "ZDKGZT", + "name": "Artigues, Avenue Descartes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49563, + 44.8523 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZDKGZT", + "ref": "ZDKGZT", + "name": "Artigues, Avenue Descartes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49563, + 44.8523 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZDKGZT", + "ref": "ZDKGZT", + "name": "Artigues, Avenue Descartes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.614437, + 44.869939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDFCD7VBOXJ", + "ref": "DFCD7VBOXJ", + "name": "Le Bouscat, Avenue Georges Clémenceau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61944, + 44.9218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNUSGV", + "ref": "KNUSGV", + "name": "Blanquefort, Charcot", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61036, + 44.8324 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVGVJRD", + "ref": "VGVJRD", + "name": "Bordeaux, Saint-Augustin", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61036, + 44.8324 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVGVJRD", + "ref": "VGVJRD", + "name": "Bordeaux, Saint-Augustin", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61036, + 44.8324 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVGVJRD", + "ref": "VGVJRD", + "name": "Bordeaux, Saint-Augustin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5812, + 44.8368 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEHJHDE", + "ref": "EHJHDE", + "name": "Bordeaux, Carayon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-12", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.613128, + 44.773752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWC5UFQ7KI5", + "ref": "WC5UFQ7KI5", + "name": "Gradignan, Erables", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61036, + 44.8324 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVGVJRD", + "ref": "VGVJRD", + "name": "Bordeaux, Saint-Augustin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.613128, + 44.773752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWC5UFQ7KI5", + "ref": "WC5UFQ7KI5", + "name": "Gradignan, Erables", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.613128, + 44.773752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWC5UFQ7KI5", + "ref": "WC5UFQ7KI5", + "name": "Gradignan, Erables", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6046, + 44.8302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDJBEAJ", + "ref": "DJBEAJ", + "name": "Bordeaux, Douet", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55321, + 44.8118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYDXANV", + "ref": "YDXANV", + "name": "Bègles, Rue Marc Sangnier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61570076, + 44.88817928 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHVNFAZ", + "ref": "HVNFAZ", + "name": "Bruges, Maryse Bastié", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.653494, + 44.7821 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVYVHYG", + "ref": "VYVHYG", + "name": "Pessac, Rue Marcel Dassault", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.864405448, + 46.77243698 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNJQYCSS9YJ", + "ref": "NJQYCSS9YJ", + "name": "Chalon sur Saone, rue René Cassin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.653494, + 44.7821 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVYVHYG", + "ref": "VYVHYG", + "name": "Pessac, Rue Marcel Dassault", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61944, + 44.9218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNUSGV", + "ref": "KNUSGV", + "name": "Blanquefort, Charcot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55321, + 44.8118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYDXANV", + "ref": "YDXANV", + "name": "Bègles, Rue Marc Sangnier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55321, + 44.8118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYDXANV", + "ref": "YDXANV", + "name": "Bègles, Rue Marc Sangnier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61944, + 44.9218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNUSGV", + "ref": "KNUSGV", + "name": "Blanquefort, Charcot", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57826, + 44.8446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGUKJEM", + "ref": "GUKJEM", + "name": "Bordeaux, Clemenceau", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61570076, + 44.88817928 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHVNFAZ", + "ref": "HVNFAZ", + "name": "Bruges, Maryse Bastié", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51758541, + 44.89619801 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJBANTOHEUX", + "ref": "JBANTOHEUX", + "name": "Bassens, Avenue de l'Europe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55604, + 44.8402 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNXWXM", + "ref": "KNXWXM", + "name": "Bordeaux, Bénauge", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55604, + 44.8402 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNXWXM", + "ref": "KNXWXM", + "name": "Bordeaux, Bénauge", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.653494, + 44.7821 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVYVHYG", + "ref": "VYVHYG", + "name": "Pessac, Rue Marcel Dassault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56097, + 44.8414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVUNCDL", + "ref": "VUNCDL", + "name": "Bordeaux, Serr", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.645157, + 44.851745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWBGP5SFP0C", + "ref": "WBGP5SFP0C", + "name": "Mérignac, Place Jean Jaurès", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55604, + 44.8402 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNXWXM", + "ref": "KNXWXM", + "name": "Bordeaux, Bénauge", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56097, + 44.8414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVUNCDL", + "ref": "VUNCDL", + "name": "Bordeaux, Serr", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56712, + 44.8384 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSSWRWK", + "ref": "SSWRWK", + "name": "Bordeaux, Maison Ecocitoyenne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56712, + 44.8384 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSSWRWK", + "ref": "SSWRWK", + "name": "Bordeaux, Maison Ecocitoyenne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56097, + 44.8414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVUNCDL", + "ref": "VUNCDL", + "name": "Bordeaux, Serr", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57826, + 44.8446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGUKJEM", + "ref": "GUKJEM", + "name": "Bordeaux, Clemenceau", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57826, + 44.8446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGUKJEM", + "ref": "GUKJEM", + "name": "Bordeaux, Clemenceau", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.653494, + 44.7821 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVYVHYG", + "ref": "VYVHYG", + "name": "Pessac, Rue Marcel Dassault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55604, + 44.8402 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNXWXM", + "ref": "KNXWXM", + "name": "Bordeaux, Bénauge", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.645157, + 44.851745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWBGP5SFP0C", + "ref": "WBGP5SFP0C", + "name": "Mérignac, Place Jean Jaurès", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6046, + 44.8302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDJBEAJ", + "ref": "DJBEAJ", + "name": "Bordeaux, Douet", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.613128, + 44.773752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWC5UFQ7KI5", + "ref": "WC5UFQ7KI5", + "name": "Gradignan, Erables", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55321, + 44.8118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYDXANV", + "ref": "YDXANV", + "name": "Bègles, Rue Marc Sangnier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.7227, + 48.2085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKXNJAH", + "ref": "KXNJAH", + "name": "Bruyères, Place Stanislas", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.53107109, + 49.29204648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPPXUSFEVQZ", + "ref": "PPXUSFEVQZ", + "name": "Bouzonville, Place du marché", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.53576208, + 49.29021357 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJRNPEZU7Q6", + "ref": "JRNPEZU7Q6", + "name": "Bouzonville, Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.53576208, + 49.29021357 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJRNPEZU7Q6", + "ref": "JRNPEZU7Q6", + "name": "Bouzonville, Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.33588, + 41.6932 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLSVKH", + "ref": "LLSVKH", + "name": "Ste Lucie de Porto-Vecchio, Zonza", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.33588, + 41.6932 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLSVKH", + "ref": "LLSVKH", + "name": "Ste Lucie de Porto-Vecchio, Zonza", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.000045, + 47.517919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWBBEFNGEV0", + "ref": "WBBEFNGEV0", + "name": "Delle, Faubourg de Belfort", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.000045, + 47.517919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWBBEFNGEV0", + "ref": "WBBEFNGEV0", + "name": "Delle, Faubourg de Belfort", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.048031, + 48.000971 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPWR6BZZQGG", + "ref": "PWR6BZZQGG", + "name": "Ergué-Gabéric, Brit Hôtel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.048031, + 48.000971 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPWR6BZZQGG", + "ref": "PWR6BZZQGG", + "name": "Ergué-Gabéric, Brit Hôtel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.7227, + 48.2085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKXNJAH", + "ref": "KXNJAH", + "name": "Bruyères, Place Stanislas", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.83116, + 48.2099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCNKANW", + "ref": "CNKANW", + "name": "Bulgnéville, centre commercial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61570076, + 44.88817928 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHVNFAZ", + "ref": "HVNFAZ", + "name": "Bruges, Maryse Bastié", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.83116, + 48.2099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCNKANW", + "ref": "CNKANW", + "name": "Bulgnéville, centre commercial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19840202, + 47.37171155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMNPCFQ7OXG", + "ref": "MNPCFQ7OXG", + "name": "Saint-Géréon, boulevard de l'Atlantique", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19840202, + 47.37171155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMNPCFQ7OXG", + "ref": "MNPCFQ7OXG", + "name": "Saint-Géréon, boulevard de l'Atlantique", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59124713, + 47.46810112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD7WPB3XQ6G", + "ref": "D7WPB3XQ6G", + "name": "Angers, rue du Petit Launay", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59124713, + 47.46810112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD7WPB3XQ6G", + "ref": "D7WPB3XQ6G", + "name": "Angers, rue du Petit Launay", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.68778271, + 48.74537984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQROFJYHMEM", + "ref": "QROFJYHMEM", + "name": "Bernolsheim, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.68778271, + 48.74537984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQROFJYHMEM", + "ref": "QROFJYHMEM", + "name": "Bernolsheim, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.75204573, + 44.28766646 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYDZTIADNZR", + "ref": "YDZTIADNZR", + "name": "Bollène, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.75204573, + 44.28766646 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYDZTIADNZR", + "ref": "YDZTIADNZR", + "name": "Bollène, Burger King", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.864405448, + 46.77243698 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNJQYCSS9YJ", + "ref": "NJQYCSS9YJ", + "name": "Chalon sur Saone, rue René Cassin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.53107109, + 49.29204648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPPXUSFEVQZ", + "ref": "PPXUSFEVQZ", + "name": "Bouzonville, Place du marché", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.220258, + 43.373851 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKN5TJGPS90", + "ref": "KN5TJGPS90", + "name": "Béziers, Rue Alphonse Beau de Rochas", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.220258, + 43.373851 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKN5TJGPS90", + "ref": "KN5TJGPS90", + "name": "Béziers, Rue Alphonse Beau de Rochas", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.220258, + 43.373851 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKN5TJGPS90", + "ref": "KN5TJGPS90", + "name": "Béziers, Rue Alphonse Beau de Rochas", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5812, + 44.8368 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEHJHDE", + "ref": "EHJHDE", + "name": "Bordeaux, Carayon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61570076, + 44.88817928 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHVNFAZ", + "ref": "HVNFAZ", + "name": "Bruges, Maryse Bastié", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5812, + 44.8368 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEHJHDE", + "ref": "EHJHDE", + "name": "Bordeaux, Carayon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-23", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6046, + 44.8302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDJBEAJ", + "ref": "DJBEAJ", + "name": "Bordeaux, Douet", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5902, + 44.8376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNMHCTA", + "ref": "NMHCTA", + "name": "Bordeaux, Sourdis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5902, + 44.8376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNMHCTA", + "ref": "NMHCTA", + "name": "Bordeaux, Sourdis", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6046, + 44.8302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDJBEAJ", + "ref": "DJBEAJ", + "name": "Bordeaux, Douet", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5902, + 44.8376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNMHCTA", + "ref": "NMHCTA", + "name": "Bordeaux, Sourdis", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56412, + 44.8894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHCBDVD", + "ref": "HCBDVD", + "name": "Bordeaux, Barail", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56412, + 44.8894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHCBDVD", + "ref": "HCBDVD", + "name": "Bordeaux, Barail", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56412, + 44.8894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHCBDVD", + "ref": "HCBDVD", + "name": "Bordeaux, Barail", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56412, + 44.8894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHCBDVD", + "ref": "HCBDVD", + "name": "Bordeaux, Barail", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.43748, + 42.60419 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRHM6D0U5CK", + "ref": "RHM6D0U5CK", + "name": "Biguglia, Renault Trucks", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.798435, + 41.955503 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHXUBZE62BL", + "ref": "HXUBZE62BL", + "name": "Sarrola Carcopino, Renault Trucks", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.798435, + 41.955503 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHXUBZE62BL", + "ref": "HXUBZE62BL", + "name": "Sarrola Carcopino, Renault Trucks", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.43748, + 42.60419 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRHM6D0U5CK", + "ref": "RHM6D0U5CK", + "name": "Biguglia, Renault Trucks", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11302, + 49.4172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ0BSVGD4TL", + "ref": "Q0BSVGD4TL", + "name": "Beauvais, Feuillette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11302, + 49.4172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ0BSVGD4TL", + "ref": "Q0BSVGD4TL", + "name": "Beauvais, Feuillette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.220258, + 43.373851 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKN5TJGPS90", + "ref": "KN5TJGPS90", + "name": "Béziers, Rue Alphonse Beau de Rochas", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.220258, + 43.373851 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKN5TJGPS90", + "ref": "KN5TJGPS90", + "name": "Béziers, Rue Alphonse Beau de Rochas", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.220258, + 43.373851 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKN5TJGPS90", + "ref": "KN5TJGPS90", + "name": "Béziers, Rue Alphonse Beau de Rochas", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12055, + 49.0469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPGPGPUMXHP", + "ref": "PGPGPUMXHP", + "name": "Tours-sur-Marne, Place de la Halle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08555, + 49.0441 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZZACWFQHTL", + "ref": "ZZACWFQHTL", + "name": "Bisseuil, rue de l'Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08555, + 49.0441 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZZACWFQHTL", + "ref": "ZZACWFQHTL", + "name": "Bisseuil, rue de l'Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84802588, + 43.41619671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLIKFVHWT88", + "ref": "LIKFVHWT88", + "name": "Saint-Raphaël, Boulevard de la 36ème division du Texas", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.801605, + 45.100663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNM9MXUP5F", + "ref": "XNM9MXUP5F", + "name": "Vaulvaneys-le-Bas, Chemin des Molières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.02754858, + 42.77631046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRBZ1ZLYPLQ", + "ref": "RBZ1ZLYPLQ", + "name": "Le Barcarès, Camping La Croix du Sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.02754858, + 42.77631046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRBZ1ZLYPLQ", + "ref": "RBZ1ZLYPLQ", + "name": "Le Barcarès, Camping La Croix du Sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.986047, + 46.740534 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRVEHPJBOQM", + "ref": "RVEHPJBOQM", + "name": "Saint Hilaire De Riez, Avenue de la Parée Preneau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.986047, + 46.740534 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRVEHPJBOQM", + "ref": "RVEHPJBOQM", + "name": "Saint Hilaire De Riez, Avenue de la Parée Preneau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.72339157, + 46.42051966 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIMLPHRRBEG", + "ref": "IMLPHRRBEG", + "name": "Moirans-en-Montagne, Camping La Petite Montagne", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.35350427, + 44.75737344 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY2JPVALCYB", + "ref": "Y2JPVALCYB", + "name": "Die, Impasse Du Pont Neuf", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.35350427, + 44.75737344 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY2JPVALCYB", + "ref": "Y2JPVALCYB", + "name": "Die, Impasse Du Pont Neuf", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.79263273, + 45.57902312 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG5SA8D9JDH", + "ref": "G5SA8D9JDH", + "name": "Mont-Dore, Camping La Plage Verte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.79263273, + 45.57902312 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG5SA8D9JDH", + "ref": "G5SA8D9JDH", + "name": "Mont-Dore, Camping La Plage Verte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84802588, + 43.41619671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLIKFVHWT88", + "ref": "LIKFVHWT88", + "name": "Saint-Raphaël, Boulevard de la 36ème division du Texas", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03189323, + 42.57131079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNLZDH1ZLAJ", + "ref": "NLZDH1ZLAJ", + "name": "Argelès-sur-Mer, Route de Taxo à la Mer", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84802588, + 43.41619671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLIKFVHWT88", + "ref": "LIKFVHWT88", + "name": "Saint-Raphaël, Boulevard de la 36ème division du Texas", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84802588, + 43.41619671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLIKFVHWT88", + "ref": "LIKFVHWT88", + "name": "Saint-Raphaël, Boulevard de la 36ème division du Texas", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.80687827, + 43.89801995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSVN7SXCAR1", + "ref": "SVN7SXCAR1", + "name": "Saint-Maime, Camping La Rivière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.80687827, + 43.89801995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSVN7SXCAR1", + "ref": "SVN7SXCAR1", + "name": "Saint-Maime, Camping La Rivière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07039785, + 46.79957472 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRDGTHWLARG", + "ref": "RDGTHWLARG", + "name": "Saint-Jean-de-Monts, Camping Le Bois Joly", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07039785, + 46.79957472 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRDGTHWLARG", + "ref": "RDGTHWLARG", + "name": "Saint-Jean-de-Monts, Camping Le Bois Joly", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.05223102, + 42.53719241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYFZ4RGRHQW", + "ref": "YFZ4RGRHQW", + "name": "Argelès-sur-Mer, Avenue Torre d'en Sorre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.05223102, + 42.53719241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYFZ4RGRHQW", + "ref": "YFZ4RGRHQW", + "name": "Argelès-sur-Mer, Avenue Torre d'en Sorre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.23638238, + 47.90067129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY5T0WNKPDM", + "ref": "Y5T0WNKPDM", + "name": "Issenheim, camping Le Florival", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.23638238, + 47.90067129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY5T0WNKPDM", + "ref": "Y5T0WNKPDM", + "name": "Issenheim, camping Le Florival", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.801605, + 45.100663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNM9MXUP5F", + "ref": "XNM9MXUP5F", + "name": "Vaulvaneys-le-Bas, Chemin des Molières", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03189323, + 42.57131079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNLZDH1ZLAJ", + "ref": "NLZDH1ZLAJ", + "name": "Argelès-sur-Mer, Route de Taxo à la Mer", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39259694, + 46.34035068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK8ATR4NEVO", + "ref": "K8ATR4NEVO", + "name": "Chauray, Camif Habitat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03991263, + 42.59896285 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLKCK1HUA2A3KS", + "ref": "LLKCK1HUA2A3KS", + "name": "Saint-Cyprien, Camping Cala Gogo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39259694, + 46.34035068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK8ATR4NEVO", + "ref": "K8ATR4NEVO", + "name": "Chauray, Camif Habitat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39259694, + 46.34035068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK8ATR4NEVO", + "ref": "K8ATR4NEVO", + "name": "Chauray, Camif Habitat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39259694, + 46.34035068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK8ATR4NEVO", + "ref": "K8ATR4NEVO", + "name": "Chauray, Camif Habitat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39259694, + 46.34035068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK8ATR4NEVO", + "ref": "K8ATR4NEVO", + "name": "Chauray, Camif Habitat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39259694, + 46.34035068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK8ATR4NEVO", + "ref": "K8ATR4NEVO", + "name": "Chauray, Camif Habitat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39259694, + 46.34035068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK8ATR4NEVO", + "ref": "K8ATR4NEVO", + "name": "Chauray, Camif Habitat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39259694, + 46.34035068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK8ATR4NEVO", + "ref": "K8ATR4NEVO", + "name": "Chauray, Camif Habitat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39259694, + 46.34035068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK8ATR4NEVO", + "ref": "K8ATR4NEVO", + "name": "Chauray, Camif Habitat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.75524852, + 42.55176041 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM8NQCQQXMD", + "ref": "M8NQCQQXMD", + "name": "Calvi, Camping Bella Vista", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.75524852, + 42.55176041 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM8NQCQQXMD", + "ref": "M8NQCQQXMD", + "name": "Calvi, Camping Bella Vista", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03991263, + 42.59896285 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLKCK1HUA2A3KS", + "ref": "LLKCK1HUA2A3KS", + "name": "Saint-Cyprien, Camping Cala Gogo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03189323, + 42.57131079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNLZDH1ZLAJ", + "ref": "NLZDH1ZLAJ", + "name": "Argelès-sur-Mer, Route de Taxo à la Mer", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18668478, + 46.34909012 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMD5OPC7NA3", + "ref": "MD5OPC7NA3", + "name": "Malleret-Boussac, Camping Creuse Nature", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18668478, + 46.34909012 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMD5OPC7NA3", + "ref": "MD5OPC7NA3", + "name": "Malleret-Boussac, Camping Creuse Nature", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18668478, + 46.34909012 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMD5OPC7NA3", + "ref": "MD5OPC7NA3", + "name": "Malleret-Boussac, Camping Creuse Nature", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18668478, + 46.34909012 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMD5OPC7NA3", + "ref": "MD5OPC7NA3", + "name": "Malleret-Boussac, Camping Creuse Nature", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.18049609, + 45.8301449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG8PCTKKS0J", + "ref": "G8PCTKKS0J", + "name": "Saint-Jorioz, Camping Europa", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.18049609, + 45.8301449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG8PCTKKS0J", + "ref": "G8PCTKKS0J", + "name": "Saint-Jorioz, Camping Europa", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.89186964, + 43.16295103 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT7R6DBLAOK", + "ref": "T7R6DBLAOK", + "name": "Bizanet, Camping Figurotta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58925408, + 44.85612739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXVUPAYBDCJ", + "ref": "XVUPAYBDCJ", + "name": "Saint-Martin-de-Queyrières, Camping Iscle de Prelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58925408, + 44.85612739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXVUPAYBDCJ", + "ref": "XVUPAYBDCJ", + "name": "Saint-Martin-de-Queyrières, Camping Iscle de Prelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03189323, + 42.57131079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNLZDH1ZLAJ", + "ref": "NLZDH1ZLAJ", + "name": "Argelès-sur-Mer, Route de Taxo à la Mer", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91403, + 45.5756 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDP3PB1WVYW", + "ref": "DP3PB1WVYW", + "name": "Chambon-sur-Lac, Camping Le Pré Bas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91403, + 45.5756 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDP3PB1WVYW", + "ref": "DP3PB1WVYW", + "name": "Chambon-sur-Lac, Camping Le Pré Bas", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.04252466, + 42.57561279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PACHEMHFYWZ", + "ref": "ACHEMHFYWZ", + "name": "Argelès-sur-Mer, Camping Le Soleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.457057, + 43.599069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPZKSGTHL8A", + "ref": "PZKSGTHL8A", + "name": "Labenne, Avenue de l'océan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07493271, + 43.56341819 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSFZN0RULV", + "ref": "JSFZN0RULV", + "name": "La Grande Motte, Camping Maïana 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07418678, + 43.56313443 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU752AH0SVL", + "ref": "U752AH0SVL", + "name": "La Grande Motte, Camping Maïana 3", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07412793, + 43.56412564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHLGRFIGUUE", + "ref": "HLGRFIGUUE", + "name": "La Grande Motte, Camping Maïana", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08668388, + 44.11561019 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIC5M8LGAEP", + "ref": "IC5M8LGAEP", + "name": "Camping Millau Plage, Avenue de Millau Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08668388, + 44.11561019 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIC5M8LGAEP", + "ref": "IC5M8LGAEP", + "name": "Camping Millau Plage, Avenue de Millau Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84532543, + 43.78925551 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYZIPETWE26", + "ref": "YZIPETWE26", + "name": "Saint-Rémy-de-Provence, Camping Parc Bastide", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84532543, + 43.78925551 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYZIPETWE26", + "ref": "YZIPETWE26", + "name": "Saint-Rémy-de-Provence, Camping Parc Bastide", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.880052, + 47.840631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSJOBQ9REOE", + "ref": "SJOBQ9REOE", + "name": "Hameau de Penanguer, Camping Domaine de Pendruc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.880052, + 47.840631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSJOBQ9REOE", + "ref": "SJOBQ9REOE", + "name": "Hameau de Penanguer, Camping Domaine de Pendruc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.457057, + 43.599069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPZKSGTHL8A", + "ref": "PZKSGTHL8A", + "name": "Labenne, Avenue de l'océan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.457057, + 43.599069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPZKSGTHL8A", + "ref": "PZKSGTHL8A", + "name": "Labenne, Avenue de l'océan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.01092663, + 42.55717621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PACHEMHFYWZ", + "ref": "ACHEMHFYWZ", + "name": "Argelès-sur-Mer, Camping Le Soleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.457057, + 43.599069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPZKSGTHL8A", + "ref": "PZKSGTHL8A", + "name": "Labenne, Avenue de l'océan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.131665, + 44.708957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGID9KTPSHB", + "ref": "GID9KTPSHB", + "name": "Mirabel-et-Blacons, Camping Val Drome Soleil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.131665, + 44.708957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGID9KTPSHB", + "ref": "GID9KTPSHB", + "name": "Mirabel-et-Blacons, Camping Val Drome Soleil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40231, + 49.212682 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDJU4LBRSL", + "ref": "BDJU4LBRSL", + "name": "Saint-Leu d'Esserent, Camping de l'Abbatiale", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40231, + 49.212682 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDJU4LBRSL", + "ref": "BDJU4LBRSL", + "name": "Saint-Leu d'Esserent, Camping de l'Abbatiale", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40231, + 49.212682 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDJU4LBRSL", + "ref": "BDJU4LBRSL", + "name": "Saint-Leu d'Esserent, Camping de l'Abbatiale", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40231, + 49.212682 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDJU4LBRSL", + "ref": "BDJU4LBRSL", + "name": "Saint-Leu d'Esserent, Camping de l'Abbatiale", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.02523165, + 47.57283072 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM4NFTGGIIT", + "ref": "M4NFTGGIIT", + "name": "La Trinité-Sur-Mer, Camping de la Baie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.02523165, + 47.57283072 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM4NFTGGIIT", + "ref": "M4NFTGGIIT", + "name": "La Trinité-Sur-Mer, Camping de la Baie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2124275, + 44.58129089 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEKHSALDPCE", + "ref": "EKHSALDPCE", + "name": "Pyla sur Mer, Camping de la Dune", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07493271, + 43.56341819 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSFZN0RULV", + "ref": "JSFZN0RULV", + "name": "La Grande Motte, Camping Maïana 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07418678, + 43.56313443 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU752AH0SVL", + "ref": "U752AH0SVL", + "name": "La Grande Motte, Camping Maïana 3", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07412793, + 43.56412564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHLGRFIGUUE", + "ref": "HLGRFIGUUE", + "name": "La Grande Motte, Camping Maïana", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.925386, + 47.614325 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLKLAPAGPNF", + "ref": "LKLAPAGPNF", + "name": "Baden, Rue Mané er Groez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91435021, + 43.98437746 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVOQCWRZDSV", + "ref": "VOQCWRZDSV", + "name": "Cahuzac sur Vère, Camping Le Soleil des Bastides", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91440001, + 43.98442417 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVOQCWRZDSV", + "ref": "VOQCWRZDSV", + "name": "Cahuzac sur Vère, Camping Le Soleil des Bastides", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.023068, + 46.761133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR5KNPQNHQ2", + "ref": "R5KNPQNHQ2", + "name": "Saint-Hilaire-de-Riez, Camping Les Alizés", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.023068, + 46.761133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR5KNPQNHQ2", + "ref": "R5KNPQNHQ2", + "name": "Saint-Hilaire-de-Riez, Camping Les Alizés", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.63678848, + 44.17387854 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZEG82YBLHG", + "ref": "ZEG82YBLHG", + "name": "Bagnols-sur-Cèze, Route de Carmignan", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76213639, + 44.61024498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRRQIJKR9TI", + "ref": "RRQIJKR9TI", + "name": "Saint-Étienne-de-Villeréal, Chemin des ormes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03333834, + 42.568332 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE0ZXMGMWDE", + "ref": "E0ZXMGMWDE", + "name": "Argelès-sur-Mer, Chemin de la Salanque", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03333834, + 42.568332 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE0ZXMGMWDE", + "ref": "E0ZXMGMWDE", + "name": "Argelès-sur-Mer, Chemin de la Salanque", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03333834, + 42.568332 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE0ZXMGMWDE", + "ref": "E0ZXMGMWDE", + "name": "Argelès-sur-Mer, Chemin de la Salanque", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03333834, + 42.568332 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE0ZXMGMWDE", + "ref": "E0ZXMGMWDE", + "name": "Argelès-sur-Mer, Chemin de la Salanque", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03333834, + 42.568332 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE0ZXMGMWDE", + "ref": "E0ZXMGMWDE", + "name": "Argelès-sur-Mer, Chemin de la Salanque", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03333834, + 42.568332 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE0ZXMGMWDE", + "ref": "E0ZXMGMWDE", + "name": "Argelès-sur-Mer, Chemin de la Salanque", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63380721, + 43.45108975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUTK8EYPJQ7", + "ref": "UTK8EYPJQ7", + "name": "Roquebrune-sur-Argens, Camping Les Pêcheurs", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63380721, + 43.45108975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUTK8EYPJQ7", + "ref": "UTK8EYPJQ7", + "name": "Roquebrune-sur-Argens, Camping Les Pêcheurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.79864, + 44.518903 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCXWV1XDUHI", + "ref": "CXWV1XDUHI", + "name": "Veynes, Chemin du Plan d'eau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.79864, + 44.518903 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCXWV1XDUHI", + "ref": "CXWV1XDUHI", + "name": "Veynes, Chemin du Plan d'eau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.93411122, + 43.95327432 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP5FSDYQORG", + "ref": "P5FSDYQORG", + "name": "Les Mees, Camping Little Carpe Diem", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.93411122, + 43.95327432 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP5FSDYQORG", + "ref": "P5FSDYQORG", + "name": "Les Mees, Camping Little Carpe Diem", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16311718, + 44.42822916 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNICVTLTDG", + "ref": "KNICVTLTDG", + "name": "Biscarrosse , Chem. de Navarrosse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16311718, + 44.42822916 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNICVTLTDG", + "ref": "KNICVTLTDG", + "name": "Biscarrosse , Chem. de Navarrosse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.925386, + 47.614325 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLKLAPAGPNF", + "ref": "LKLAPAGPNF", + "name": "Baden, Rue Mané er Groez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39259694, + 46.34035068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK8ATR4NEVO", + "ref": "K8ATR4NEVO", + "name": "Chauray, Camif Habitat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87558193, + 45.637648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR3WPD3XTW8", + "ref": "R3WPD3XTW8", + "name": "La Motte-Servolex, Rue du Lac Mont Cenis", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.14611, + 49.0797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHPYME0H9MH", + "ref": "HPYME0H9MH", + "name": "Bouzy, place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09308, + 48.488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSHXYLZ", + "ref": "SHXYLZ", + "name": "Vézelise, Avenue Jacques Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.862269, + 48.680163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRRFQQ84JRE", + "ref": "RRFQQ84JRE", + "name": "Ecrouves, rue de la Place d'Armes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.910392, + 48.699533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGJL7CMQDC", + "ref": "AGJL7CMQDC", + "name": "Toul, rue Guy Perrin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.862269, + 48.680163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRRFQQ84JRE", + "ref": "RRFQQ84JRE", + "name": "Ecrouves, rue de la Place d'Armes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8625, + 48.6822 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHAFZJ5OASW", + "ref": "HAFZJ5OASW", + "name": "Ecrouves, rue du Mémorial du Génie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.861093, + 48.681068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRRFQQ84JRE", + "ref": "RRFQQ84JRE", + "name": "Ecrouves, rue de la Place d'Armes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.910392, + 48.699533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGJL7CMQDC", + "ref": "AGJL7CMQDC", + "name": "Toul, rue Guy Perrin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8625, + 48.6822 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHAFZJ5OASW", + "ref": "HAFZJ5OASW", + "name": "Ecrouves, rue du Mémorial du Génie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.910392, + 48.699533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGJL7CMQDC", + "ref": "AGJL7CMQDC", + "name": "Toul, rue Guy Perrin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.910392, + 48.699533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGJL7CMQDC", + "ref": "AGJL7CMQDC", + "name": "Toul, rue Guy Perrin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09308, + 48.488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSHXYLZ", + "ref": "SHXYLZ", + "name": "Vézelise, Avenue Jacques Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17993, + 48.4669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZCPHMP", + "ref": "ZCPHMP", + "name": "Haroué, Place du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.34338, + 48.6237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBVTHHN", + "ref": "BVTHHN", + "name": "Dombasle-sur-Meurthe, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17993, + 48.4669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZCPHMP", + "ref": "ZCPHMP", + "name": "Haroué, Place du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8676, + 50.1057 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHYFHA", + "ref": "KHYFHA", + "name": "Bapaume, Aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8676, + 50.1057 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHYFHA", + "ref": "KHYFHA", + "name": "Bapaume, Aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32986, + 50.364 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPLHFQ", + "ref": "CPLHFQ", + "name": "Herlin-le-Sec, Aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33118227, + 50.35473676 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHNRRDP5IDY", + "ref": "HNRRDP5IDY", + "name": "Herlin-le-Sec, Maison des Services Hotel Communautaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33118227, + 50.35473676 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHNRRDP5IDY", + "ref": "HNRRDP5IDY", + "name": "Herlin-le-Sec, Maison des Services Hotel Communautaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32986, + 50.364 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPLHFQ", + "ref": "CPLHFQ", + "name": "Herlin-le-Sec, Aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32317, + 50.3787 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTJPREQ", + "ref": "TJPREQ", + "name": "Saint-Pol-sur-Ternoise, Hôpital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32317, + 50.3787 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTJPREQ", + "ref": "TJPREQ", + "name": "Saint-Pol-sur-Ternoise, Hôpital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.71506, + 46.9978 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGRRPW", + "ref": "JGRRPW", + "name": "Chamblay, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.862269, + 48.680163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRRFQQ84JRE", + "ref": "RRFQQ84JRE", + "name": "Ecrouves, rue de la Place d'Armes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35048, + 48.6058 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKLLHKZ", + "ref": "KLLHKZ", + "name": "Dombasle-sur-Meurthe, Gare de Rosières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87558193, + 45.637648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR3WPD3XTW8", + "ref": "R3WPD3XTW8", + "name": "La Motte-Servolex, Rue du Lac Mont Cenis", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9301, + 49.4715 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVPUTSR", + "ref": "VPUTSR", + "name": "Villerupt, Parking Rue Jules Vallé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.14611, + 49.0797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHPYME0H9MH", + "ref": "HPYME0H9MH", + "name": "Bouzy, place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74468811, + 44.31978763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUXPENJ0ONZ", + "ref": "UXPENJ0ONZ", + "name": "Bollène, Route de St Paul Trois Chateaux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74468811, + 44.31978763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUXPENJ0ONZ", + "ref": "UXPENJ0ONZ", + "name": "Bollène, Route de St Paul Trois Chateaux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74468811, + 44.31978763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUXPENJ0ONZ", + "ref": "UXPENJ0ONZ", + "name": "Bollène, Route de St Paul Trois Chateaux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74468811, + 44.31978763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUXPENJ0ONZ", + "ref": "UXPENJ0ONZ", + "name": "Bollène, Route de St Paul Trois Chateaux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92565, + 49.4634 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHJWQTE", + "ref": "HJWQTE", + "name": "Villerupt, Parking Stade Delaune", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92731, + 49.4588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRHVWXN", + "ref": "RHVWXN", + "name": "Villerupt, Parking place Joliot Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92731, + 49.4588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRHVWXN", + "ref": "RHVWXN", + "name": "Villerupt, Parking place Joliot Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92565, + 49.4634 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHJWQTE", + "ref": "HJWQTE", + "name": "Villerupt, Parking Stade Delaune", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.01774, + 49.4412 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKUVQGY", + "ref": "KUVQGY", + "name": "Ottange, Parking Hôtel de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94213, + 49.4179 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSPRJJM", + "ref": "SPRJJM", + "name": "Aumetz, Parking Place de l'Hôtel de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35048, + 48.6058 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKLLHKZ", + "ref": "KLLHKZ", + "name": "Dombasle-sur-Meurthe, Gare de Rosières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.01774, + 49.4412 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKUVQGY", + "ref": "KUVQGY", + "name": "Ottange, Parking Hôtel de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.90783, + 49.4732 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDYCYSE", + "ref": "DYCYSE", + "name": "Thil, Parking place du 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9301, + 49.4715 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVPUTSR", + "ref": "VPUTSR", + "name": "Villerupt, Parking Rue Jules Vallé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.90783, + 49.4732 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDYCYSE", + "ref": "DYCYSE", + "name": "Thil, Parking place du 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94213, + 49.4179 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSPRJJM", + "ref": "SPRJJM", + "name": "Aumetz, Parking Place de l'Hôtel de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35308, + 49.086 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYUSRPHWAJU", + "ref": "YUSRPHWAJU", + "name": "Pange, CC Pays de Pange", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35308, + 49.086 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYUSRPHWAJU", + "ref": "YUSRPHWAJU", + "name": "Pange, CC Pays de Pange", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.34338, + 48.6237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBVTHHN", + "ref": "BVTHHN", + "name": "Dombasle-sur-Meurthe, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.31463, + 48.6347 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBUGQMG", + "ref": "BUGQMG", + "name": "Varangéville, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.31463, + 48.6347 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBUGQMG", + "ref": "BUGQMG", + "name": "Varangéville, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.71506, + 46.9978 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGRRPW", + "ref": "JGRRPW", + "name": "Chamblay, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.069566, + 49.106955 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFBVCG0WKZP", + "ref": "FBVCG0WKZP", + "name": "Sarreguemines, Place de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.069566, + 49.106955 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFBVCG0WKZP", + "ref": "FBVCG0WKZP", + "name": "Sarreguemines, Place de la Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36831, + 48.1281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNKCESQ", + "ref": "NKCESQ", + "name": "Cora, Colmar", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.21839, + 46.2136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYUEYTG", + "ref": "YUEYTG", + "name": "Viriat, Chambre de Métiers", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.21839, + 46.2136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYUEYTG", + "ref": "YUEYTG", + "name": "Viriat, Chambre de Métiers", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.165117, + 45.743585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNGVSR6RI1", + "ref": "JNGVSR6RI1", + "name": "Cournon-d'Auvergne, CMGO", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.165117, + 45.743585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNGVSR6RI1", + "ref": "JNGVSR6RI1", + "name": "Cournon-d'Auvergne, CMGO", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.165117, + 45.743585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNGVSR6RI1", + "ref": "JNGVSR6RI1", + "name": "Cournon-d'Auvergne, CMGO", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.165117, + 45.743585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNGVSR6RI1", + "ref": "JNGVSR6RI1", + "name": "Cournon-d'Auvergne, CMGO", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.165117, + 45.743585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNGVSR6RI1", + "ref": "JNGVSR6RI1", + "name": "Cournon-d'Auvergne, CMGO", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.165117, + 45.743585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNGVSR6RI1", + "ref": "JNGVSR6RI1", + "name": "Cournon-d'Auvergne, CMGO", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -149.817832, + -17.4884487 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV8YS06G7V9", + "ref": "V8YS06G7V9", + "name": "PK10", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -149.817832, + -17.4884487 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV8YS06G7V9", + "ref": "V8YS06G7V9", + "name": "PK10", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36831, + 48.1281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNKCESQ", + "ref": "NKCESQ", + "name": "Cora, Colmar", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59188, + 45.3216 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ4TQI4RHCG", + "ref": "Z4TQI4RHCG", + "name": "Moirans, CER France publique", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36831, + 48.1281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNKCESQ", + "ref": "NKCESQ", + "name": "Cora, Colmar", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36831, + 48.1281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNKCESQ", + "ref": "NKCESQ", + "name": "Cora, Colmar", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36831, + 48.1281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNKCESQ", + "ref": "NKCESQ", + "name": "Cora, Colmar", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36831, + 48.1281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNKCESQ", + "ref": "NKCESQ", + "name": "Cora, Colmar", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.393396, + 47.170026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV99LMKPLKF", + "ref": "V99LMKPLKF", + "name": "La Haie-Fouassière, CR Elec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.393396, + 47.170026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV99LMKPLKF", + "ref": "V99LMKPLKF", + "name": "La Haie-Fouassière, CR Elec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87558193, + 45.637648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR3WPD3XTW8", + "ref": "R3WPD3XTW8", + "name": "La Motte-Servolex, Rue du Lac Mont Cenis", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87558193, + 45.637648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR3WPD3XTW8", + "ref": "R3WPD3XTW8", + "name": "La Motte-Servolex, Rue du Lac Mont Cenis", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87558193, + 45.637648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR3WPD3XTW8", + "ref": "R3WPD3XTW8", + "name": "La Motte-Servolex, Rue du Lac Mont Cenis", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87558193, + 45.637648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR3WPD3XTW8", + "ref": "R3WPD3XTW8", + "name": "La Motte-Servolex, Rue du Lac Mont Cenis", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46906132, + -21.3386997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKR9MTGPDS", + "ref": "YKR9MTGPDS", + "name": "CIVIS - Parking Volnay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46906132, + -21.3386997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKR9MTGPDS", + "ref": "YKR9MTGPDS", + "name": "CIVIS - Parking Volnay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.45680189, + -21.3325437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDRECSOIEMU", + "ref": "DRECSOIEMU", + "name": "CIVIS - Parking Cadjee", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.45680189, + -21.3325437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDRECSOIEMU", + "ref": "DRECSOIEMU", + "name": "CIVIS - Parking Cadjee", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.399329, + 48.076864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGHSSGGSHZ", + "ref": "JGHSSGGSHZ", + "name": "Domagné, parking", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.399329, + 48.076864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGHSSGGSHZ", + "ref": "JGHSSGGSHZ", + "name": "Domagné, parking", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.399329, + 48.076864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGHSSGGSHZ", + "ref": "JGHSSGGSHZ", + "name": "Domagné, parking", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.399329, + 48.076864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGHSSGGSHZ", + "ref": "JGHSSGGSHZ", + "name": "Domagné, parking", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.399329, + 48.076864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGHSSGGSHZ", + "ref": "JGHSSGGSHZ", + "name": "Domagné, parking", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.399329, + 48.076864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGHSSGGSHZ", + "ref": "JGHSSGGSHZ", + "name": "Domagné, parking", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36775842, + 46.6097689 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQSGXNY9IT7", + "ref": "QSGXNY9IT7", + "name": "Buxerolles, Avenue du Pas de Saint-Jacques", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36775842, + 46.6097689 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQSGXNY9IT7", + "ref": "QSGXNY9IT7", + "name": "Buxerolles, Avenue du Pas de Saint-Jacques", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36775842, + 46.6097689 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQSGXNY9IT7", + "ref": "QSGXNY9IT7", + "name": "Buxerolles, Avenue du Pas de Saint-Jacques", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36775842, + 46.6097689 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQSGXNY9IT7", + "ref": "QSGXNY9IT7", + "name": "Buxerolles, Avenue du Pas de Saint-Jacques", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36775842, + 46.6097689 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQSGXNY9IT7", + "ref": "QSGXNY9IT7", + "name": "Buxerolles, Avenue du Pas de Saint-Jacques", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.254323, + 43.438624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQGXXGHMZW9", + "ref": "QGXXGHMZW9", + "name": "Vitrolles, Rue Gérard Toulon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.254323, + 43.438624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQGXXGHMZW9", + "ref": "QGXXGHMZW9", + "name": "Vitrolles, Rue Gérard Toulon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.254323, + 43.438624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQGXXGHMZW9", + "ref": "QGXXGHMZW9", + "name": "Vitrolles, Rue Gérard Toulon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.254323, + 43.438624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQGXXGHMZW9", + "ref": "QGXXGHMZW9", + "name": "Vitrolles, Rue Gérard Toulon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.254323, + 43.438624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQGXXGHMZW9", + "ref": "QGXXGHMZW9", + "name": "Vitrolles, Rue Gérard Toulon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.437215, + 48.219178 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAHQ9T8GJQL", + "ref": "AHQ9T8GJQL", + "name": "Chavelot, CGS AUTO", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.437215, + 48.219178 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAHQ9T8GJQL", + "ref": "AHQ9T8GJQL", + "name": "Chavelot, CGS AUTO", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4593, + -21.334427 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFRILS7BK9O", + "ref": "FRILS7BK9O", + "name": "CIVIS - Parking Luc Donat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4593, + -21.334427 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFRILS7BK9O", + "ref": "FRILS7BK9O", + "name": "CIVIS - Parking Luc Donat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.45680189, + -21.3325437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDRECSOIEMU", + "ref": "DRECSOIEMU", + "name": "CIVIS - Parking Cadjee", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57826, + 44.8446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGUKJEM", + "ref": "GUKJEM", + "name": "Bordeaux, Clemenceau", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61431, + 44.8514 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAWDWMR", + "ref": "AWDWMR", + "name": "Bordeaux-Caudéran, Eglise", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.603, + 46.3075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYSWOWTKK1A", + "ref": "YSWOWTKK1A", + "name": "Tramayes, place du champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.169737255, + 43.40428119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGPP1YONDA5", + "ref": "GPP1YONDA5", + "name": "Brignoles, Route de Cabasse", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9217113, + 50.46247296 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBPJA6AA6CA", + "ref": "BPJA6AA6CA", + "name": "Namur, Avenue des Dessus-de-Lives", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45320379, + 49.10410314 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS4ZHGIJPO6", + "ref": "S4ZHGIJPO6", + "name": "Saint-Marcel, Rue des pres", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45320379, + 49.10410314 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS4ZHGIJPO6", + "ref": "S4ZHGIJPO6", + "name": "Saint-Marcel, Rue des pres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.60757, + 50.4305 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTKAQSF", + "ref": "TKAQSF", + "name": "Bagatelle, Parking", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.60757, + 50.4305 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTKAQSF", + "ref": "TKAQSF", + "name": "Bagatelle, Parking", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.60757, + 50.4305 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTKAQSF", + "ref": "TKAQSF", + "name": "Bagatelle, Parking", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.60757, + 50.4305 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTKAQSF", + "ref": "TKAQSF", + "name": "Bagatelle, Parking", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.541816, + 48.235545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAJSO8D6KCX", + "ref": "AJSO8D6KCX", + "name": "Baldenheim, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.541816, + 48.235545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAJSO8D6KCX", + "ref": "AJSO8D6KCX", + "name": "Baldenheim, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.169737255, + 43.40428119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGPP1YONDA5", + "ref": "GPP1YONDA5", + "name": "Brignoles, Route de Cabasse", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16973726, + 43.40428119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGPP1YONDA5", + "ref": "GPP1YONDA5", + "name": "Brignoles, Route de Cabasse", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9217113, + 50.46247296 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBPJA6AA6CA", + "ref": "BPJA6AA6CA", + "name": "Namur, Avenue des Dessus-de-Lives", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.169737255, + 43.40428119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGPP1YONDA5", + "ref": "GPP1YONDA5", + "name": "Brignoles, Route de Cabasse", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.169737255, + 43.40428119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGPP1YONDA5", + "ref": "GPP1YONDA5", + "name": "Brignoles, Route de Cabasse", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16973726, + 43.40428119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGPP1YONDA5", + "ref": "GPP1YONDA5", + "name": "Brignoles, Route de Cabasse", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.169737255, + 43.40428119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGPP1YONDA5", + "ref": "GPP1YONDA5", + "name": "Brignoles, Route de Cabasse", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16973726, + 43.40428119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGPP1YONDA5", + "ref": "GPP1YONDA5", + "name": "Brignoles, Route de Cabasse", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04198941, + 49.13816135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP0E4AALLVD", + "ref": "P0E4AALLVD", + "name": "Grosbliederstroff, Avenue Marchande", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04198941, + 49.13816135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP0E4AALLVD", + "ref": "P0E4AALLVD", + "name": "Grosbliederstroff, Avenue Marchande", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85383794, + 47.00445851 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIA2BS71158VL", + "ref": "LLIA2BS71158VL", + "name": "Beaune, Parking Covoiturage", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85240031, + 47.00590714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHYP2D9MOFJAJ", + "ref": "LLHYP2D9MOFJAJ", + "name": "Beaune, Parking Cité des vins", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85240031, + 47.00590714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHYP2D9MOFJAJ", + "ref": "LLHYP2D9MOFJAJ", + "name": "Beaune, Parking Cité des vins", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9217113, + 50.46247296 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBPJA6AA6CA", + "ref": "BPJA6AA6CA", + "name": "Namur, Avenue des Dessus-de-Lives", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9217113, + 50.46247296 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBPJA6AA6CA", + "ref": "BPJA6AA6CA", + "name": "Namur, Avenue des Dessus-de-Lives", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85383794, + 47.00445851 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIA2BS71158VL", + "ref": "LLIA2BS71158VL", + "name": "Beaune, Parking Covoiturage", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37433, + 48.9015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHPOS14DX5I", + "ref": "HPOS14DX5I", + "name": "Paris, Le Millénaire", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30798148, + 49.3672118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE65Z5TBQNI", + "ref": "E65Z5TBQNI", + "name": "Soissons, BMW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37078, + 48.719848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYZPNMKUCFN", + "ref": "YZPNMKUCFN", + "name": "BMW, Dreux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37078, + 48.719848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYZPNMKUCFN", + "ref": "YZPNMKUCFN", + "name": "BMW, Dreux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5775891, + 48.73401665 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHSKHX7OORW", + "ref": "HSKHX7OORW", + "name": "Flers de l'Orne, BMW-MINI", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56151203, + 44.76579126 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBKOKCWBYAN", + "ref": "BKOKCWBYAN", + "name": "Villenave-d'Ornon, BORDEAUX SUD AUTOMOBILES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56151203, + 44.76579126 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBKOKCWBYAN", + "ref": "BKOKCWBYAN", + "name": "Villenave-d'Ornon, BORDEAUX SUD AUTOMOBILES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56151203, + 44.76579126 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBKOKCWBYAN", + "ref": "BKOKCWBYAN", + "name": "Villenave-d'Ornon, BORDEAUX SUD AUTOMOBILES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.519791, + 43.54469101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLILWCYZOHV", + "ref": "LILWCYZOHV", + "name": "Labège, BOREAL AUTOMOBILES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.519791, + 43.54469101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLILWCYZOHV", + "ref": "LILWCYZOHV", + "name": "Labège, BOREAL AUTOMOBILES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.519791, + 43.54469101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLILWCYZOHV", + "ref": "LILWCYZOHV", + "name": "Labège, BOREAL AUTOMOBILES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37433, + 48.9015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHPOS14DX5I", + "ref": "HPOS14DX5I", + "name": "Paris, Le Millénaire", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37433, + 48.9015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHPOS14DX5I", + "ref": "HPOS14DX5I", + "name": "Paris, Le Millénaire", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37433, + 48.9015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHPOS14DX5I", + "ref": "HPOS14DX5I", + "name": "Paris, Le Millénaire", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37433, + 48.9015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHPOS14DX5I", + "ref": "HPOS14DX5I", + "name": "Paris, Le Millénaire", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37433, + 48.9015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHPOS14DX5I", + "ref": "HPOS14DX5I", + "name": "Paris, Le Millénaire", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37433, + 48.9015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHPOS14DX5I", + "ref": "HPOS14DX5I", + "name": "Paris, Le Millénaire", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37433, + 48.9015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHPOS14DX5I", + "ref": "HPOS14DX5I", + "name": "Paris, Le Millénaire", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37433, + 48.9015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHPOS14DX5I", + "ref": "HPOS14DX5I", + "name": "Paris, Le Millénaire", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37433, + 48.9015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHPOS14DX5I", + "ref": "HPOS14DX5I", + "name": "Paris, Le Millénaire", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37433, + 48.9015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHPOS14DX5I", + "ref": "HPOS14DX5I", + "name": "Paris, Le Millénaire", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37433, + 48.9015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHPOS14DX5I", + "ref": "HPOS14DX5I", + "name": "Paris, Le Millénaire", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37433, + 48.9015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHPOS14DX5I", + "ref": "HPOS14DX5I", + "name": "Paris, Le Millénaire", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85383794, + 47.00445851 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIA2BS71158VL", + "ref": "LLIA2BS71158VL", + "name": "Beaune, Parking Covoiturage", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85240031, + 47.00590714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHYP2D9MOFJAJ", + "ref": "LLHYP2D9MOFJAJ", + "name": "Beaune, Parking Cité des vins", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51758541, + 44.89619801 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJBANTOHEUX", + "ref": "JBANTOHEUX", + "name": "Bassens, Avenue de l'Europe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09677956, + 48.81827376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJJBX8EKGQ6", + "ref": "JJBX8EKGQ6", + "name": "Belleville, Place des Chenevières", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09986662, + 43.56260966 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL3UEPRL0WC", + "ref": "L3UEPRL0WC", + "name": "La Grande-Motte, Belambra Presqu'ile du Ponant", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09986662, + 43.56260966 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL3UEPRL0WC", + "ref": "L3UEPRL0WC", + "name": "La Grande-Motte, Belambra Presqu'ile du Ponant", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09986662, + 43.56260966 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL3UEPRL0WC", + "ref": "L3UEPRL0WC", + "name": "La Grande-Motte, Belambra Presqu'ile du Ponant", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14711682, + 43.04394683 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY3VTPZSUY6", + "ref": "Y3VTPZSUY6", + "name": "Hyères, Belambra Riviera Beach Club", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14711682, + 43.04394683 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY3VTPZSUY6", + "ref": "Y3VTPZSUY6", + "name": "Hyères, Belambra Riviera Beach Club", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14711682, + 43.04394683 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY3VTPZSUY6", + "ref": "Y3VTPZSUY6", + "name": "Hyères, Belambra Riviera Beach Club", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14711682, + 43.04394683 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY3VTPZSUY6", + "ref": "Y3VTPZSUY6", + "name": "Hyères, Belambra Riviera Beach Club", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14711682, + 43.04394683 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY3VTPZSUY6", + "ref": "Y3VTPZSUY6", + "name": "Hyères, Belambra Riviera Beach Club", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09677956, + 48.81827376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJJBX8EKGQ6", + "ref": "JJBX8EKGQ6", + "name": "Belleville, Place des Chenevières", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09677956, + 48.81827376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJJBX8EKGQ6", + "ref": "JJBX8EKGQ6", + "name": "Belleville, Place des Chenevières", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09677956, + 48.81827376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJJBX8EKGQ6", + "ref": "JJBX8EKGQ6", + "name": "Belleville, Place des Chenevières", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09986662, + 43.56260966 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL3UEPRL0WC", + "ref": "L3UEPRL0WC", + "name": "La Grande-Motte, Belambra Presqu'ile du Ponant", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.17909388, + 43.9286768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSMHAP34DRI", + "ref": "SMHAP34DRI", + "name": "Albi, Rue Jacques Monod", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.17909388, + 43.9286768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSMHAP34DRI", + "ref": "SMHAP34DRI", + "name": "Albi, Rue Jacques Monod", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78282894, + 43.73555372 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZVIJULYZOR", + "ref": "ZVIJULYZOR", + "name": "Vallon de L'Arcoule, Les Baux de Provence", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78282894, + 43.73555372 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZVIJULYZOR", + "ref": "ZVIJULYZOR", + "name": "Vallon de L'Arcoule, Les Baux de Provence", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.17064, + 48.756 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFLHFYV", + "ref": "FLHFYV", + "name": "Saclay, Best Western", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.17064, + 48.756 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFLHFYV", + "ref": "FLHFYV", + "name": "Saclay, Best Western", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94351498, + 45.51721846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POLRZ2QBZLR", + "ref": "OLRZ2QBZLR", + "name": "Besse-et-Saint-Anastaise, Rte des Lacs", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94351498, + 45.51721846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POLRZ2QBZLR", + "ref": "OLRZ2QBZLR", + "name": "Besse-et-Saint-Anastaise, Rte des Lacs", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94351498, + 45.51721846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POLRZ2QBZLR", + "ref": "OLRZ2QBZLR", + "name": "Besse-et-Saint-Anastaise, Rte des Lacs", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.454771, + 43.618492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVLTSDBSR0J", + "ref": "VLTSDBSR0J", + "name": "Clermont L'Hérault, 10 rue du Cardinal", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09986662, + 43.56260966 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL3UEPRL0WC", + "ref": "L3UEPRL0WC", + "name": "La Grande-Motte, Belambra Presqu'ile du Ponant", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.09998, + 43.676771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJD3PFCU6UJ", + "ref": "JD3PFCU6UJ", + "name": "La Colle-sur-Loup, Les Terrasses de St Paul de Vances", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85240031, + 47.00590714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHYP2D9MOFJAJ", + "ref": "LLHYP2D9MOFJAJ", + "name": "Beaune, Parking Cité des vins", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54363498, + 43.49646422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDAUUCNFXSE", + "ref": "DAUUCNFXSE", + "name": "Anglet, Belambra La Chambre d'Amour", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85383794, + 47.00445851 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIA2BS71158VL", + "ref": "LLIA2BS71158VL", + "name": "Beaune, Parking Covoiturage", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.438944, + 48.251975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIVTFWC012SUU", + "ref": "LLIVTFWC012SUU", + "name": "Augerville-la-Rivière, Place du Chateau", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.438944, + 48.251975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIVTFWC012SUU", + "ref": "LLIVTFWC012SUU", + "name": "Augerville-la-Rivière, Place du Chateau", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.438944, + 48.251975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIVTFWC012SUU", + "ref": "LLIVTFWC012SUU", + "name": "Augerville-la-Rivière, Place du Chateau", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47057402, + 43.48590064 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMB38BL4MQ9", + "ref": "MB38BL4MQ9", + "name": "Bayonne, Allée de Glain", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47057402, + 43.48590064 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMB38BL4MQ9", + "ref": "MB38BL4MQ9", + "name": "Bayonne, Allée de Glain", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47057402, + 43.48590064 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMB38BL4MQ9", + "ref": "MB38BL4MQ9", + "name": "Bayonne, Allée de Glain", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47057402, + 43.48590064 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMB38BL4MQ9", + "ref": "MB38BL4MQ9", + "name": "Bayonne, Allée de Glain", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47057402, + 43.48590064 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMB38BL4MQ9", + "ref": "MB38BL4MQ9", + "name": "Bayonne, Allée de Glain", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54363498, + 43.49646422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDAUUCNFXSE", + "ref": "DAUUCNFXSE", + "name": "Anglet, Belambra La Chambre d'Amour", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54363498, + 43.49646422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDAUUCNFXSE", + "ref": "DAUUCNFXSE", + "name": "Anglet, Belambra La Chambre d'Amour", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.09998, + 43.676771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJD3PFCU6UJ", + "ref": "JD3PFCU6UJ", + "name": "La Colle-sur-Loup, Les Terrasses de St Paul de Vances", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54363498, + 43.49646422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDAUUCNFXSE", + "ref": "DAUUCNFXSE", + "name": "Anglet, Belambra La Chambre d'Amour", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54363498, + 43.49646422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDAUUCNFXSE", + "ref": "DAUUCNFXSE", + "name": "Anglet, Belambra La Chambre d'Amour", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16087089, + 43.03086672 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMM3KFC2I4N", + "ref": "MM3KFC2I4N", + "name": "Hyères, Belambra Les Criques", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16087089, + 43.03086672 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMM3KFC2I4N", + "ref": "MM3KFC2I4N", + "name": "Hyères, Belambra Les Criques", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16087089, + 43.03086672 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMM3KFC2I4N", + "ref": "MM3KFC2I4N", + "name": "Hyères, Belambra Les Criques", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16087089, + 43.03086672 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMM3KFC2I4N", + "ref": "MM3KFC2I4N", + "name": "Hyères, Belambra Les Criques", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16087089, + 43.03086672 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMM3KFC2I4N", + "ref": "MM3KFC2I4N", + "name": "Hyères, Belambra Les Criques", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.09998, + 43.676771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJD3PFCU6UJ", + "ref": "JD3PFCU6UJ", + "name": "La Colle-sur-Loup, Les Terrasses de St Paul de Vances", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.09998, + 43.676771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJD3PFCU6UJ", + "ref": "JD3PFCU6UJ", + "name": "La Colle-sur-Loup, Les Terrasses de St Paul de Vances", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.09998, + 43.676771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJD3PFCU6UJ", + "ref": "JD3PFCU6UJ", + "name": "La Colle-sur-Loup, Les Terrasses de St Paul de Vances", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30798148, + 49.3672118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE65Z5TBQNI", + "ref": "E65Z5TBQNI", + "name": "Soissons, BMW", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30798148, + 49.3672118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE65Z5TBQNI", + "ref": "E65Z5TBQNI", + "name": "Soissons, BMW", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30798148, + 49.3672118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE65Z5TBQNI", + "ref": "E65Z5TBQNI", + "name": "Soissons, BMW", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.467489, + 49.232101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWO3R2EBCJ5", + "ref": "WO3R2EBCJ5", + "name": "Saint-Maximin, BMW", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62090418, + 47.46554085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRC3V7VKDRM", + "ref": "RC3V7VKDRM", + "name": "Beaucouzé, BMTI", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33435908, + 49.9116821 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTQ382YIB2F", + "ref": "TQ382YIB2F", + "name": "Rivery, BMW", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33435908, + 49.9116821 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTQ382YIB2F", + "ref": "TQ382YIB2F", + "name": "Rivery, BMW", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11367487, + 49.41435513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POHF6LP48UT", + "ref": "OHF6LP48UT", + "name": "Beauvais, BMW", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11367487, + 49.41435513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POHF6LP48UT", + "ref": "OHF6LP48UT", + "name": "Beauvais, BMW", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11367487, + 49.41435513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POHF6LP48UT", + "ref": "OHF6LP48UT", + "name": "Beauvais, BMW", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11367487, + 49.41435513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POHF6LP48UT", + "ref": "OHF6LP48UT", + "name": "Beauvais, BMW", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.467489, + 49.232101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWO3R2EBCJ5", + "ref": "WO3R2EBCJ5", + "name": "Saint-Maximin, BMW", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.467489, + 49.232101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWO3R2EBCJ5", + "ref": "WO3R2EBCJ5", + "name": "Saint-Maximin, BMW", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.467489, + 49.232101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWO3R2EBCJ5", + "ref": "WO3R2EBCJ5", + "name": "Saint-Maximin, BMW", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.467489, + 49.232101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWO3R2EBCJ5", + "ref": "WO3R2EBCJ5", + "name": "Saint-Maximin, BMW", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.754427, + 46.912098 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC9ASIEEJ39", + "ref": "C9ASIEEJ39", + "name": "Chagny, 14 avenue du Général De Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.467489, + 49.232101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWO3R2EBCJ5", + "ref": "WO3R2EBCJ5", + "name": "Saint-Maximin, BMW", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.467489, + 49.232101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWO3R2EBCJ5", + "ref": "WO3R2EBCJ5", + "name": "Saint-Maximin, BMW", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.467489, + 49.232101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWO3R2EBCJ5", + "ref": "WO3R2EBCJ5", + "name": "Saint-Maximin, BMW", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.467489, + 49.232101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWO3R2EBCJ5", + "ref": "WO3R2EBCJ5", + "name": "Saint-Maximin, BMW", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.467489, + 49.232101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWO3R2EBCJ5", + "ref": "WO3R2EBCJ5", + "name": "Saint-Maximin, BMW", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70957069, + 49.73738154 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDBAHISUDA", + "ref": "JDBAHISUDA", + "name": "Charleville-Mézières, Allée de la Cardamine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70957069, + 49.73738154 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDBAHISUDA", + "ref": "JDBAHISUDA", + "name": "Charleville-Mézières, Allée de la Cardamine", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70957069, + 49.73738154 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDBAHISUDA", + "ref": "JDBAHISUDA", + "name": "Charleville-Mézières, Allée de la Cardamine", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70957069, + 49.73738154 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDBAHISUDA", + "ref": "JDBAHISUDA", + "name": "Charleville-Mézières, Allée de la Cardamine", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70957069, + 49.73738154 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDBAHISUDA", + "ref": "JDBAHISUDA", + "name": "Charleville-Mézières, Allée de la Cardamine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.134109, + 47.907849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ7C3K9UPQY", + "ref": "Z7C3K9UPQY", + "name": "Fay Aux Loges, Rue Bernard de la Rochefoucauld", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8466, + 46.7826 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMEKQGP7IH8", + "ref": "MEKQGP7IH8", + "name": "Chalon-Sur-Saone, place du 19 mars 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30798148, + 49.3672118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE65Z5TBQNI", + "ref": "E65Z5TBQNI", + "name": "Soissons, BMW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6337, + 46.8457 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEM4UWZE7FL", + "ref": "EM4UWZE7FL", + "name": "St Leger Sur Dheune, rue du port", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.94633148, + 46.87591316 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFTRU0LBPTW", + "ref": "FTRU0LBPTW", + "name": "Gergy, Parking de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.816533, + 46.794819 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHEKHN1FIEJ", + "ref": "HEKHN1FIEJ", + "name": "Châtenoy Le Royal, Place du marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.816533, + 46.794819 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHEKHN1FIEJ", + "ref": "HEKHN1FIEJ", + "name": "Châtenoy Le Royal, Place du marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.94633148, + 46.87591316 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFTRU0LBPTW", + "ref": "FTRU0LBPTW", + "name": "Gergy, Parking de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9088, + 46.5628 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQGMC7P1GHH", + "ref": "QGMC7P1GHH", + "name": "Tournus, route de plottes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.696, + 46.7142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBAZ89ZAKIB", + "ref": "BAZ89ZAKIB", + "name": "Buxy, place du champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.75561, + 46.212 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHXZXDAWWIA", + "ref": "HXZXDAWWIA", + "name": "La Chapelle-de-Guinchay, Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3638, + 46.6757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAMCQAOUOYI", + "ref": "AMCQAOUOYI", + "name": "Montceau Les Mines, place de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6628, + 46.613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POJC67YT8UC", + "ref": "OJC67YT8UC", + "name": "St Gengoux Le National, rue des tanneries", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.432, + 46.8416 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF4PTLVVEGT", + "ref": "F4PTLVVEGT", + "name": "St Sernin Du Bois, route de Saint-Sernin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2436, + 46.7536 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNME8JL5XVW", + "ref": "NME8JL5XVW", + "name": "St Germain Du Bois, place du 8 mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7476577, + 46.5684612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKBIZNBBJ9N", + "ref": "KBIZNBBJ9N", + "name": "Saint-Aubin-sur-Loire, Place Gabriel Gauthier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4839, + 46.3616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD5CNGLVE5R", + "ref": "D5CNGLVE5R", + "name": "Dompierre Les Ormes, place de la bascule", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1115, + 46.6094 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCLFKICEPGZ", + "ref": "CLFKICEPGZ", + "name": "Bantanges , rue du bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.75561, + 46.212 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHXZXDAWWIA", + "ref": "HXZXDAWWIA", + "name": "La Chapelle-de-Guinchay, Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3961, + 46.9451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD8Z6WDTXQH", + "ref": "D8Z6WDTXQH", + "name": "Auxy, route de chalon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0244, + 46.8968 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB34AM9DYGR", + "ref": "B34AM9DYGR", + "name": "Verdun Sur Le Doubs, Place saint jean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.476, + 46.6289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYWIDNJ8YCI", + "ref": "YWIDNJ8YCI", + "name": "Mont St Vincent, Parking salle des fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0986, + 47.0774 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIOUZSC0GRQ", + "ref": "IOUZSC0GRQ", + "name": "Anost, le bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76, + 46.2602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKRXTAYLACE", + "ref": "KRXTAYLACE", + "name": "Chaintre, place du luminaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.754427, + 46.912098 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC9ASIEEJ39", + "ref": "C9ASIEEJ39", + "name": "Chagny, 14 avenue du Général De Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7476577, + 46.5684612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKBIZNBBJ9N", + "ref": "KBIZNBBJ9N", + "name": "Saint-Aubin-sur-Loire, Place Gabriel Gauthier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70957069, + 49.73738154 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDBAHISUDA", + "ref": "JDBAHISUDA", + "name": "Charleville-Mézières, Allée de la Cardamine", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59277108, + 49.63422841 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNFUXGBCYW2", + "ref": "NFUXGBCYW2", + "name": "Cherbourg-en-Cotentin, Rue Pierre Brossolette", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59277108, + 49.63422841 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNFUXGBCYW2", + "ref": "NFUXGBCYW2", + "name": "Cherbourg-en-Cotentin, Rue Pierre Brossolette", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08224462, + 49.23751669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSTVWQJJZNN", + "ref": "STVWQJJZNN", + "name": "Reims, BMW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37070273, + 43.30887101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNRQVYBAGVU", + "ref": "NRQVYBAGVU", + "name": "Marseille, BMW Mini Station 7", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37070273, + 43.30887101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNRQVYBAGVU", + "ref": "NRQVYBAGVU", + "name": "Marseille, BMW Mini Station 7", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9084615, + 50.4389957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVQM8VODW4I", + "ref": "VQM8VODW4I", + "name": "Namur, BMW Quoilin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9084615, + 50.4389957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVQM8VODW4I", + "ref": "VQM8VODW4I", + "name": "Namur, BMW Quoilin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.28868032, + 50.24177291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH6BG1SY13J", + "ref": "H6BG1SY13J", + "name": "Bmw Quoilin, Marche-en-Famenne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.28868032, + 50.24177291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH6BG1SY13J", + "ref": "H6BG1SY13J", + "name": "Bmw Quoilin, Marche-en-Famenne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545617, + 48.454124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGK6DXMJKPU", + "ref": "GK6DXMJKPU", + "name": "BMW, Nogent le Phaye", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545617, + 48.454124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGK6DXMJKPU", + "ref": "GK6DXMJKPU", + "name": "BMW, Nogent le Phaye", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.100221, + 46.179444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKUW5BRYJM8", + "ref": "KUW5BRYJM8", + "name": "Puilboreau, Impasse de Pologne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08224462, + 49.23751669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSTVWQJJZNN", + "ref": "STVWQJJZNN", + "name": "Reims, BMW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08224462, + 49.23751669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSTVWQJJZNN", + "ref": "STVWQJJZNN", + "name": "Reims, BMW", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59277108, + 49.63422841 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNFUXGBCYW2", + "ref": "NFUXGBCYW2", + "name": "Cherbourg-en-Cotentin, Rue Pierre Brossolette", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08224462, + 49.23751669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSTVWQJJZNN", + "ref": "STVWQJJZNN", + "name": "Reims, BMW", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08224462, + 49.23751669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSTVWQJJZNN", + "ref": "STVWQJJZNN", + "name": "Reims, BMW", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08224462, + 49.23751669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSTVWQJJZNN", + "ref": "STVWQJJZNN", + "name": "Reims, BMW", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08066214, + 49.09912957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGOTDLPYRIO", + "ref": "GOTDLPYRIO", + "name": "Saint Lô, Rond point de Baudre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.08066214, + 49.09912957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGOTDLPYRIO", + "ref": "GOTDLPYRIO", + "name": "Saint Lô, Rond point de Baudre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25804285, + 49.85596361 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCMLN1C0LRD", + "ref": "CMLN1C0LRD", + "name": "Saint-Quentin, Rue Antoine Parmentier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25804285, + 49.85596361 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCMLN1C0LRD", + "ref": "CMLN1C0LRD", + "name": "Saint-Quentin, Rue Antoine Parmentier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25804285, + 49.85596361 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCMLN1C0LRD", + "ref": "CMLN1C0LRD", + "name": "Saint-Quentin, Rue Antoine Parmentier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25804285, + 49.85596361 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCMLN1C0LRD", + "ref": "CMLN1C0LRD", + "name": "Saint-Quentin, Rue Antoine Parmentier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30798148, + 49.3672118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE65Z5TBQNI", + "ref": "E65Z5TBQNI", + "name": "Soissons, BMW", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37070273, + 43.30887101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNRQVYBAGVU", + "ref": "NRQVYBAGVU", + "name": "Marseille, BMW Mini Station 7", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37070273, + 43.30887101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNRQVYBAGVU", + "ref": "NRQVYBAGVU", + "name": "Marseille, BMW Mini Station 7", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37070273, + 43.30887101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNRQVYBAGVU", + "ref": "NRQVYBAGVU", + "name": "Marseille, BMW Mini Station 7", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87933819, + 48.93416867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXOQTWENWY", + "ref": "TXOQTWENWY", + "name": "Mareuil-lès-Meaux, BMW", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59277108, + 49.63422841 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNFUXGBCYW2", + "ref": "NFUXGBCYW2", + "name": "Cherbourg-en-Cotentin, Rue Pierre Brossolette", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39278508, + 48.94867145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB6ZAAZNRMB", + "ref": "B6ZAAZNRMB", + "name": "Saint-Memmie, BMW", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39278508, + 48.94867145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB6ZAAZNRMB", + "ref": "B6ZAAZNRMB", + "name": "Saint-Memmie, BMW", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39278508, + 48.94867145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB6ZAAZNRMB", + "ref": "B6ZAAZNRMB", + "name": "Saint-Memmie, BMW", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39278508, + 48.94867145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB6ZAAZNRMB", + "ref": "B6ZAAZNRMB", + "name": "Saint-Memmie, BMW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39278508, + 48.94867145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB6ZAAZNRMB", + "ref": "B6ZAAZNRMB", + "name": "Saint-Memmie, BMW", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39278508, + 48.94867145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB6ZAAZNRMB", + "ref": "B6ZAAZNRMB", + "name": "Saint-Memmie, BMW", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7875025, + 49.38905597 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVRKBJPV0VD", + "ref": "VRKBJPV0VD", + "name": "Compiègne, BMW", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7875025, + 49.38905597 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVRKBJPV0VD", + "ref": "VRKBJPV0VD", + "name": "Compiègne, BMW", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.17580561, + 48.78194961 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXXB6Z6J9Q5", + "ref": "XXB6Z6J9Q5", + "name": "Vélizy-Villacoublay, BMW", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.17580561, + 48.78194961 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXXB6Z6J9Q5", + "ref": "XXB6Z6J9Q5", + "name": "Vélizy-Villacoublay, BMW", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.17580561, + 48.78194961 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXXB6Z6J9Q5", + "ref": "XXB6Z6J9Q5", + "name": "Vélizy-Villacoublay, BMW", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54881175, + 48.83723465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGP0E9NWEG5", + "ref": "GP0E9NWEG5", + "name": "Granville, Rue des Entrepreneurs", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54881175, + 48.83723465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGP0E9NWEG5", + "ref": "GP0E9NWEG5", + "name": "Granville, Rue des Entrepreneurs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54881175, + 48.83723465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGP0E9NWEG5", + "ref": "GP0E9NWEG5", + "name": "Granville, Rue des Entrepreneurs", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.54881175, + 48.83723465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGP0E9NWEG5", + "ref": "GP0E9NWEG5", + "name": "Granville, Rue des Entrepreneurs", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1615, + 46.865 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPSHRVU", + "ref": "PSHRVU", + "name": "Magny-Cours, BMW Concession", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1615, + 46.865 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPSHRVU", + "ref": "PSHRVU", + "name": "Magny-Cours, BMW Concession", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87933819, + 48.93416867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXOQTWENWY", + "ref": "TXOQTWENWY", + "name": "Mareuil-lès-Meaux, BMW", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87933819, + 48.93416867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXOQTWENWY", + "ref": "TXOQTWENWY", + "name": "Mareuil-lès-Meaux, BMW", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87933819, + 48.93416867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXOQTWENWY", + "ref": "TXOQTWENWY", + "name": "Mareuil-lès-Meaux, BMW", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.454771, + 43.618492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVLTSDBSR0J", + "ref": "VLTSDBSR0J", + "name": "Clermont L'Hérault, 10 rue du Cardinal", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.454771, + 43.618492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVLTSDBSR0J", + "ref": "VLTSDBSR0J", + "name": "Clermont L'Hérault, 10 rue du Cardinal", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.337082, + 45.920539 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDQGV4VYAGN", + "ref": "DQGV4VYAGN", + "name": "Maringues, route de Vichy", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5585728, + 44.8240481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUPPTNFPCFG", + "ref": "UPPTNFPCFG", + "name": "Bordeaux, 75 Rue Furtado", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5237826, + 44.8624327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQHVHJU2LD", + "ref": "FQHVHJU2LD", + "name": "Cenon, 1 Rue Aristide Briand", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5700933, + 44.800156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMDOEGXYE2E", + "ref": "MDOEGXYE2E", + "name": "Villenave-d'Ornon, 322 Route de Toulouse", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5596091, + 44.80663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTUT6GF98YM", + "ref": "TUT6GF98YM", + "name": "Be?gles, bègles 213 victor hugo", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5596091, + 44.80663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTUT6GF98YM", + "ref": "TUT6GF98YM", + "name": "Be?gles, bègles 213 victor hugo", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5997005, + 44.8660147 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUQAMTV1XPW", + "ref": "UQAMTV1XPW", + "name": "Le Bouscat, 12 Rue Coudol", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5700933, + 44.800156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMDOEGXYE2E", + "ref": "MDOEGXYE2E", + "name": "Villenave-d'Ornon, 322 Route de Toulouse", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5700933, + 44.800156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMDOEGXYE2E", + "ref": "MDOEGXYE2E", + "name": "Villenave-d'Ornon, 322 Route de Toulouse", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5596091, + 44.80663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTUT6GF98YM", + "ref": "TUT6GF98YM", + "name": "Be?gles, bègles 213 victor hugo", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5776042, + 44.825539 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSSZYXJHIQ", + "ref": "LSSZYXJHIQ", + "name": "Bordeaux, 166 Cours de l'Argonne", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5585728, + 44.8240481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUPPTNFPCFG", + "ref": "UPPTNFPCFG", + "name": "Bordeaux, 75 Rue Furtado", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5567316, + 44.8275893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGLCXPQDIMC", + "ref": "GLCXPQDIMC", + "name": "Bordeaux, 95 Rue de Tauzia", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603715, + 44.8499 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZFO5IA8AIX", + "ref": "ZFO5IA8AIX", + "name": "Bordeaux, 130 Avenue Charles de Gaulle", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5776042, + 44.825539 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSSZYXJHIQ", + "ref": "LSSZYXJHIQ", + "name": "Bordeaux, 166 Cours de l'Argonne", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5776042, + 44.825539 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSSZYXJHIQ", + "ref": "LSSZYXJHIQ", + "name": "Bordeaux, 166 Cours de l'Argonne", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5585728, + 44.8240481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUPPTNFPCFG", + "ref": "UPPTNFPCFG", + "name": "Bordeaux, 75 Rue Furtado", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5633591, + 44.8341526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJIIXCKNC8Q", + "ref": "JIIXCKNC8Q", + "name": "Bordeaux, 12 Quai de la Monnaie", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5633591, + 44.8341526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJIIXCKNC8Q", + "ref": "JIIXCKNC8Q", + "name": "Bordeaux, 12 Quai de la Monnaie", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5671108, + 44.8308225 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCNBUAC7CIC", + "ref": "CNBUAC7CIC", + "name": "Bordeaux, 9 Place des Capucins", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5700369, + 44.8246198 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDPQRIOQN8V", + "ref": "DPQRIOQN8V", + "name": "Bordeaux, 140 Cours de l'Yser", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5700369, + 44.8246198 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDPQRIOQN8V", + "ref": "DPQRIOQN8V", + "name": "Bordeaux, 140 Cours de l'Yser", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5633591, + 44.8341526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJIIXCKNC8Q", + "ref": "JIIXCKNC8Q", + "name": "Bordeaux, 12 Quai de la Monnaie", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5567316, + 44.8275893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGLCXPQDIMC", + "ref": "GLCXPQDIMC", + "name": "Bordeaux, 95 Rue de Tauzia", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603715, + 44.8499 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZFO5IA8AIX", + "ref": "ZFO5IA8AIX", + "name": "Bordeaux, 130 Avenue Charles de Gaulle", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5343711, + 44.8557708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVG28KMGHSD", + "ref": "VG28KMGHSD", + "name": "Cenon, 65 Jean Jaurès", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5667689, + 44.8630867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTWXRC5Z5LN", + "ref": "TWXRC5Z5LN", + "name": "Bordeaux, 204 Cours Saint-Louis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5997005, + 44.8660147 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUQAMTV1XPW", + "ref": "UQAMTV1XPW", + "name": "Le Bouscat, 12 Rue Coudol", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.614253, + 44.85121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHGJLYOTLRF", + "ref": "HGJLYOTLRF", + "name": "Bordeaux, 9 eglise bordeaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6196466, + 44.8638037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRXUGFUVPNA", + "ref": "RXUGFUVPNA", + "name": "Bordeaux, 419 eysines", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6196466, + 44.8638037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRXUGFUVPNA", + "ref": "RXUGFUVPNA", + "name": "Bordeaux, 419 eysines", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.620298, + 44.85705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPPOLYGCLA", + "ref": "CPPOLYGCLA", + "name": "Bordeaux, 35 Rue Gabriel Leglise", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.620298, + 44.85705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPPOLYGCLA", + "ref": "CPPOLYGCLA", + "name": "Bordeaux, 35 Rue Gabriel Leglise", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.614253, + 44.85121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHGJLYOTLRF", + "ref": "HGJLYOTLRF", + "name": "Bordeaux, 9 eglise bordeaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5671108, + 44.8308225 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCNBUAC7CIC", + "ref": "CNBUAC7CIC", + "name": "Bordeaux, 9 Place des Capucins", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5595587, + 44.8411016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWPFVK4XLRP", + "ref": "WPFVK4XLRP", + "name": "Bordeaux, 2 Rue Honoré Picon", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56079, + 44.85006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCS8HK5BBAM", + "ref": "CS8HK5BBAM", + "name": "Bordeaux, 87 quai des queyries bordeaux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56079, + 44.85006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCS8HK5BBAM", + "ref": "CS8HK5BBAM", + "name": "Bordeaux, 87 quai des queyries bordeaux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5595587, + 44.8411016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWPFVK4XLRP", + "ref": "WPFVK4XLRP", + "name": "Bordeaux, 2 Rue Honoré Picon", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5343711, + 44.8557708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVG28KMGHSD", + "ref": "VG28KMGHSD", + "name": "Cenon, 65 Jean Jaurès", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5595587, + 44.8411016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWPFVK4XLRP", + "ref": "WPFVK4XLRP", + "name": "Bordeaux, 2 Rue Honoré Picon", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56079, + 44.85006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCS8HK5BBAM", + "ref": "CS8HK5BBAM", + "name": "Bordeaux, 87 quai des queyries bordeaux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5570323, + 44.84365 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMME1DDQAPL", + "ref": "MME1DDQAPL", + "name": "Bordeaux, Avenue Abadie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6106798, + 44.8240441 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXANUJCTKNB", + "ref": "XANUJCTKNB", + "name": "Bordeaux, 5 Rue du Dr Rocaz", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6106798, + 44.8240441 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXANUJCTKNB", + "ref": "XANUJCTKNB", + "name": "Bordeaux, 5 Rue du Dr Rocaz", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5489381, + 44.8471942 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQHQG9BEFPV", + "ref": "QHQG9BEFPV", + "name": "Bordeaux, 210 Avenue Thiers", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5489381, + 44.8471942 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQHQG9BEFPV", + "ref": "QHQG9BEFPV", + "name": "Bordeaux, 210 Avenue Thiers", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5570323, + 44.84365 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMME1DDQAPL", + "ref": "MME1DDQAPL", + "name": "Bordeaux, Avenue Abadie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5997005, + 44.8660147 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUQAMTV1XPW", + "ref": "UQAMTV1XPW", + "name": "Le Bouscat, 12 Rue Coudol", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5237826, + 44.8624327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQHVHJU2LD", + "ref": "FQHVHJU2LD", + "name": "Cenon, 1 Rue Aristide Briand", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6008798, + 44.81902 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTNQRV3FCLS", + "ref": "TNQRV3FCLS", + "name": "Bordeaux, 23 Chemin Pomerol", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5621268, + 44.830625 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POBPEAJBZPZ", + "ref": "OBPEAJBZPZ", + "name": "Bordeaux, 1 Rue Jacques Ellul", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5621268, + 44.830625 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POBPEAJBZPZ", + "ref": "OBPEAJBZPZ", + "name": "Bordeaux, 1 Rue Jacques Ellul", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5755883, + 44.843269 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZDY9IC0LN9", + "ref": "ZDY9IC0LN9", + "name": "Bordeaux, Allées de Tourny", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5802927, + 44.8367369 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRMXU7KFQ3T", + "ref": "RMXU7KFQ3T", + "name": "Bordeaux, 31 frere bonie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5921201, + 44.8554383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJHHZIKO6YD", + "ref": "JHHZIKO6YD", + "name": "Bordeaux, 34 Boulevard Pierre 1er", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5942345, + 44.8455488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHIVI0H64KL", + "ref": "HIVI0H64KL", + "name": "Bordeaux, 5 Rue de Caudéran", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5921201, + 44.8554383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJHHZIKO6YD", + "ref": "JHHZIKO6YD", + "name": "Bordeaux, 34 Boulevard Pierre 1er", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5868384, + 44.8240534 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLUNOV6UIWG", + "ref": "LUNOV6UIWG", + "name": "Bordeaux, 120 Boulevard George V", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.58493, + 44.84235 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTQU9YK1V5N", + "ref": "TQU9YK1V5N", + "name": "Bordeaux, 1 avenue vercingetorix bordeaux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.58493, + 44.84235 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTQU9YK1V5N", + "ref": "TQU9YK1V5N", + "name": "Bordeaux, 1 avenue vercingetorix bordeaux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5698217, + 44.8580555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWHUUHA0GTM", + "ref": "WHUUHA0GTM", + "name": "Bordeaux, 56 Cours Saint-Louis", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576803, + 44.865406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFJRKKXQ4LW", + "ref": "FJRKKXQ4LW", + "name": "Bordeaux, 267 Boulevard Godard", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5706805, + 44.8436728 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXDNLYWELAE", + "ref": "XDNLYWELAE", + "name": "Bordeaux, 4 Quai Louis XVIII", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.58493, + 44.84235 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTQU9YK1V5N", + "ref": "TQU9YK1V5N", + "name": "Bordeaux, 1 avenue vercingetorix bordeaux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.592695, + 44.840979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRKHZF2JTNU", + "ref": "RKHZF2JTNU", + "name": "Bordeaux, 1 Place du Capitaine Dutertre", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5706805, + 44.8436728 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXDNLYWELAE", + "ref": "XDNLYWELAE", + "name": "Bordeaux, 4 Quai Louis XVIII", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576803, + 44.865406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFJRKKXQ4LW", + "ref": "FJRKKXQ4LW", + "name": "Bordeaux, 267 Boulevard Godard", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576803, + 44.865406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFJRKKXQ4LW", + "ref": "FJRKKXQ4LW", + "name": "Bordeaux, 267 Boulevard Godard", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5812665, + 44.83053 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCN09IUBP7D", + "ref": "CN09IUBP7D", + "name": "Bordeaux, Place Amédée Larrieu", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5812665, + 44.83053 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCN09IUBP7D", + "ref": "CN09IUBP7D", + "name": "Bordeaux, Place Amédée Larrieu", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.579258, + 44.856634 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPRJWTYLPXL", + "ref": "PRJWTYLPXL", + "name": "Bordeaux, 4 Rue du Professeur Vézes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.579258, + 44.856634 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPRJWTYLPXL", + "ref": "PRJWTYLPXL", + "name": "Bordeaux, 4 Rue du Professeur Vézes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576803, + 44.865406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFJRKKXQ4LW", + "ref": "FJRKKXQ4LW", + "name": "Bordeaux, 267 Boulevard Godard", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61944, + 44.9218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNUSGV", + "ref": "KNUSGV", + "name": "Blanquefort, Charcot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61431, + 44.8514 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAWDWMR", + "ref": "AWDWMR", + "name": "Bordeaux-Caudéran, Eglise", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5921201, + 44.8554383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJHHZIKO6YD", + "ref": "JHHZIKO6YD", + "name": "Bordeaux, 34 Boulevard Pierre 1er", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5763597, + 44.8473288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAYDRISMJD", + "ref": "SAYDRISMJD", + "name": "Bordeaux, 38 cours de verdun bordeaux", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5763597, + 44.8473288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAYDRISMJD", + "ref": "SAYDRISMJD", + "name": "Bordeaux, 38 cours de verdun bordeaux", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5763597, + 44.8473288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAYDRISMJD", + "ref": "SAYDRISMJD", + "name": "Bordeaux, 38 cours de verdun bordeaux", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.592695, + 44.840979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRKHZF2JTNU", + "ref": "RKHZF2JTNU", + "name": "Bordeaux, 1 Place du Capitaine Dutertre", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.592695, + 44.840979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRKHZF2JTNU", + "ref": "RKHZF2JTNU", + "name": "Bordeaux, 1 Place du Capitaine Dutertre", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5497758, + 44.81634 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQHUUUYBQNY", + "ref": "QHUUUYBQNY", + "name": "Bordeaux, 264 Boulevard Jean Jacques Bosc", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5693503, + 44.8139114 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAQDLTY7DRW", + "ref": "AQDLTY7DRW", + "name": "Bordeaux, 51 Boulevard Albert 1er", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5693503, + 44.8139114 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAQDLTY7DRW", + "ref": "AQDLTY7DRW", + "name": "Bordeaux, 51 Boulevard Albert 1er", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5567316, + 44.8275893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGLCXPQDIMC", + "ref": "GLCXPQDIMC", + "name": "Bordeaux, 95 Rue de Tauzia", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5497758, + 44.81634 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQHUUUYBQNY", + "ref": "QHUUUYBQNY", + "name": "Bordeaux, 264 Boulevard Jean Jacques Bosc", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5497758, + 44.81634 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQHUUUYBQNY", + "ref": "QHUUUYBQNY", + "name": "Bordeaux, 264 Boulevard Jean Jacques Bosc", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5693503, + 44.8139114 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAQDLTY7DRW", + "ref": "AQDLTY7DRW", + "name": "Bordeaux, 51 Boulevard Albert 1er", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5698217, + 44.8580555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWHUUHA0GTM", + "ref": "WHUUHA0GTM", + "name": "Bordeaux, 56 Cours Saint-Louis", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603715, + 44.8499 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZFO5IA8AIX", + "ref": "ZFO5IA8AIX", + "name": "Bordeaux, 130 Avenue Charles de Gaulle", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5755883, + 44.843269 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZDY9IC0LN9", + "ref": "ZDY9IC0LN9", + "name": "Bordeaux, Allées de Tourny", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5802927, + 44.8367369 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRMXU7KFQ3T", + "ref": "RMXU7KFQ3T", + "name": "Bordeaux, 31 frere bonie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5698217, + 44.8580555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWHUUHA0GTM", + "ref": "WHUUHA0GTM", + "name": "Bordeaux, 56 Cours Saint-Louis", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5763597, + 44.8473288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAYDRISMJD", + "ref": "SAYDRISMJD", + "name": "Bordeaux, 38 cours de verdun bordeaux", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5868384, + 44.8240534 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLUNOV6UIWG", + "ref": "LUNOV6UIWG", + "name": "Bordeaux, 120 Boulevard George V", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5763597, + 44.8473288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAYDRISMJD", + "ref": "SAYDRISMJD", + "name": "Bordeaux, 38 cours de verdun bordeaux", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.618926, + 44.944686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSPI5X5UEAY", + "ref": "SPI5X5UEAY", + "name": "Parempuyre, Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.618926, + 44.944686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSPI5X5UEAY", + "ref": "SPI5X5UEAY", + "name": "Parempuyre, Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5755883, + 44.843269 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZDY9IC0LN9", + "ref": "ZDY9IC0LN9", + "name": "Bordeaux, Allées de Tourny", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5942345, + 44.8455488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHIVI0H64KL", + "ref": "HIVI0H64KL", + "name": "Bordeaux, 5 Rue de Caudéran", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5730911, + 44.88033 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFB5Q3EX4F8", + "ref": "FB5Q3EX4F8", + "name": "Bordeaux, 22 Avenue Marcel Dassault", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5667689, + 44.8630867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTWXRC5Z5LN", + "ref": "TWXRC5Z5LN", + "name": "Bordeaux, 204 Cours Saint-Louis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.337082, + 45.920539 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDQGV4VYAGN", + "ref": "DQGV4VYAGN", + "name": "Maringues, route de Vichy", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5728467, + 44.8302701 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG9SVHKLSTF", + "ref": "G9SVHKLSTF", + "name": "Bordeaux, 4 Cours de l'Argonne", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5743715, + 44.8512286 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI8EP8OVXXQ", + "ref": "I8EP8OVXXQ", + "name": "Bordeaux, 63 cours de verdun bordeaux", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5728467, + 44.8302701 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG9SVHKLSTF", + "ref": "G9SVHKLSTF", + "name": "Bordeaux, 4 Cours de l'Argonne", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5743715, + 44.8512286 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI8EP8OVXXQ", + "ref": "I8EP8OVXXQ", + "name": "Bordeaux, 63 cours de verdun bordeaux", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5706805, + 44.8436728 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXDNLYWELAE", + "ref": "XDNLYWELAE", + "name": "Bordeaux, 4 Quai Louis XVIII", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5794891, + 44.8424538 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFWHFRTAK5A", + "ref": "FWHFRTAK5A", + "name": "Bordeaux, 18 Cours Georges Clemenceau", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5728467, + 44.8302701 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG9SVHKLSTF", + "ref": "G9SVHKLSTF", + "name": "Bordeaux, 4 Cours de l'Argonne", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598102, + 44.82586 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSKLQVGKLSV", + "ref": "SKLQVGKLSV", + "name": "Bordeaux, 33 Rue de la Béchade", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5743715, + 44.8512286 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI8EP8OVXXQ", + "ref": "I8EP8OVXXQ", + "name": "Bordeaux, 63 cours de verdun bordeaux", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5794891, + 44.8424538 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFWHFRTAK5A", + "ref": "FWHFRTAK5A", + "name": "Bordeaux, 18 Cours Georges Clemenceau", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5706805, + 44.8436728 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXDNLYWELAE", + "ref": "XDNLYWELAE", + "name": "Bordeaux, 4 Quai Louis XVIII", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6101414, + 44.8327156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVXRRZV9XIP", + "ref": "VXRRZV9XIP", + "name": "Bordeaux, 1 eglise saint augustin bordeaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.725, + 44.9122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRR5ND4PC0", + "ref": "LRR5ND4PC0", + "name": "Saint-Aubin-de-Médoc, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5706805, + 44.8436728 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXDNLYWELAE", + "ref": "XDNLYWELAE", + "name": "Bordeaux, 4 Quai Louis XVIII", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567786, + 44.8527873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUE0TCNCRDB", + "ref": "UE0TCNCRDB", + "name": "Bordeaux, 66 Quai des Chartrons", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567786, + 44.8527873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUE0TCNCRDB", + "ref": "UE0TCNCRDB", + "name": "Bordeaux, 66 Quai des Chartrons", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6101414, + 44.8327156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVXRRZV9XIP", + "ref": "VXRRZV9XIP", + "name": "Bordeaux, 1 eglise saint augustin bordeaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.569361, + 44.835869 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNSZPUKTAXJ", + "ref": "NSZPUKTAXJ", + "name": "Bordeaux, 2 Rue des Boucheries", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.569361, + 44.835869 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNSZPUKTAXJ", + "ref": "NSZPUKTAXJ", + "name": "Bordeaux, 2 Rue des Boucheries", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6008798, + 44.81902 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTNQRV3FCLS", + "ref": "TNQRV3FCLS", + "name": "Bordeaux, 23 Chemin Pomerol", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6008798, + 44.81902 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTNQRV3FCLS", + "ref": "TNQRV3FCLS", + "name": "Bordeaux, 23 Chemin Pomerol", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5735586, + 44.8313446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBH6XELLB75", + "ref": "BH6XELLB75", + "name": "Bordeaux, 25 Place de la Victoire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598102, + 44.82586 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSKLQVGKLSV", + "ref": "SKLQVGKLSV", + "name": "Bordeaux, 33 Rue de la Béchade", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.725, + 44.9122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRR5ND4PC0", + "ref": "LRR5ND4PC0", + "name": "Saint-Aubin-de-Médoc, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.42762, + 49.047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTWHLZK", + "ref": "TWHLZK", + "name": "Bitche, Intermarché", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5910003, + 44.8122102 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD36RA9CGIF", + "ref": "D36RA9CGIF", + "name": "Talence, 281 Cours de la Libération", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08063, + 45.9379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG0NEIU9I2N", + "ref": "G0NEIU9I2N", + "name": "Epagny Metz-Tessy, Biofrais", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.337082, + 45.920539 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDQGV4VYAGN", + "ref": "DQGV4VYAGN", + "name": "Maringues, route de Vichy", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.523745, + 45.845514 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMLER8IDBQE", + "ref": "MLER8IDBQE", + "name": "Thiers, 102 Av. Léo Lagrange", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.523745, + 45.845514 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMLER8IDBQE", + "ref": "MLER8IDBQE", + "name": "Thiers, 102 Av. Léo Lagrange", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.523745, + 45.845514 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMLER8IDBQE", + "ref": "MLER8IDBQE", + "name": "Thiers, 102 Av. Léo Lagrange", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43306962, + 46.13549714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODDTVCL4LZ", + "ref": "ODDTVCL4LZ", + "name": "Cusset, Bigmat", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43306962, + 46.13549714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODDTVCL4LZ", + "ref": "ODDTVCL4LZ", + "name": "Cusset, Bigmat", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43306962, + 46.13549714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODDTVCL4LZ", + "ref": "ODDTVCL4LZ", + "name": "Cusset, Bigmat", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43306962, + 46.13549714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODDTVCL4LZ", + "ref": "ODDTVCL4LZ", + "name": "Cusset, Bigmat", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43306962, + 46.13549714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODDTVCL4LZ", + "ref": "ODDTVCL4LZ", + "name": "Cusset, Bigmat", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43277992, + 46.13548599 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODDTVCL4LZ", + "ref": "ODDTVCL4LZ", + "name": "Cusset, Bigmat", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08063, + 45.9379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG0NEIU9I2N", + "ref": "G0NEIU9I2N", + "name": "Epagny Metz-Tessy, Biofrais", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.42762, + 49.047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTWHLZK", + "ref": "TWHLZK", + "name": "Bitche, Intermarché", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08063, + 45.9379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG0NEIU9I2N", + "ref": "G0NEIU9I2N", + "name": "Epagny Metz-Tessy, Biofrais", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08063, + 45.9379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG0NEIU9I2N", + "ref": "G0NEIU9I2N", + "name": "Epagny Metz-Tessy, Biofrais", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08063, + 45.9379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG0NEIU9I2N", + "ref": "G0NEIU9I2N", + "name": "Epagny Metz-Tessy, Biofrais", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08063, + 45.9379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG0NEIU9I2N", + "ref": "G0NEIU9I2N", + "name": "Epagny Metz-Tessy, Biofrais", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.42762, + 49.047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTWHLZK", + "ref": "TWHLZK", + "name": "Bitche, Intermarché", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.42762, + 49.047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTWHLZK", + "ref": "TWHLZK", + "name": "Bitche, Intermarché", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.42762, + 49.047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTWHLZK", + "ref": "TWHLZK", + "name": "Bitche, Intermarché", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.42762, + 49.047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTWHLZK", + "ref": "TWHLZK", + "name": "Bitche, Intermarché", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.42762, + 49.047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTWHLZK", + "ref": "TWHLZK", + "name": "Bitche, Intermarché", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.42762, + 49.047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTWHLZK", + "ref": "TWHLZK", + "name": "Bitche, Intermarché", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5794891, + 44.8424538 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFWHFRTAK5A", + "ref": "FWHFRTAK5A", + "name": "Bordeaux, 18 Cours Georges Clemenceau", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5743715, + 44.8512286 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI8EP8OVXXQ", + "ref": "I8EP8OVXXQ", + "name": "Bordeaux, 63 cours de verdun bordeaux", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598102, + 44.82586 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSKLQVGKLSV", + "ref": "SKLQVGKLSV", + "name": "Bordeaux, 33 Rue de la Béchade", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.595881, + 44.85047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGAY47NFYIK", + "ref": "GAY47NFYIK", + "name": "Bordeaux, 310 Boulevard du Président Wilson", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6190241, + 44.7993976 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIVQVUIET9W", + "ref": "IVQVUIET9W", + "name": "Pessac, 142 Avenue du Docteur Albert Schweitzer", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6190241, + 44.7993976 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIVQVUIET9W", + "ref": "IVQVUIET9W", + "name": "Pessac, 142 Avenue du Docteur Albert Schweitzer", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624746, + 44.826207 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDPFPKHKVWG", + "ref": "DPFPKHKVWG", + "name": "Mérignac, 2 Av. François Mitterrand", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624746, + 44.826207 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDPFPKHKVWG", + "ref": "DPFPKHKVWG", + "name": "Mérignac, 2 Av. François Mitterrand", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.628291, + 44.84167 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYNT8Y8UH1", + "ref": "MYNT8Y8UH1", + "name": "Bordeaux, 57 Avenue de la Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.595881, + 44.85047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGAY47NFYIK", + "ref": "GAY47NFYIK", + "name": "Bordeaux, 310 Boulevard du Président Wilson", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.606393, + 44.8394463 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXQ15C6CEX", + "ref": "TXQ15C6CEX", + "name": "Bordeaux, 122 Avenue de la République", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.606393, + 44.8394463 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXQ15C6CEX", + "ref": "TXQ15C6CEX", + "name": "Bordeaux, 122 Avenue de la République", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6132285, + 44.8462139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PITZYZ0TFXP", + "ref": "ITZYZ0TFXP", + "name": "Bordeaux, 1 bahr", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.595881, + 44.85047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGAY47NFYIK", + "ref": "GAY47NFYIK", + "name": "Bordeaux, 310 Boulevard du Président Wilson", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.606393, + 44.8394463 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXQ15C6CEX", + "ref": "TXQ15C6CEX", + "name": "Bordeaux, 122 Avenue de la République", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5861464, + 44.8386916 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQXX0ZUA3NL", + "ref": "QXX0ZUA3NL", + "name": "Bordeaux, 5 Rue Robert Lateulade", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5265646, + 44.8307381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA7Y2IJACYN", + "ref": "A7Y2IJACYN", + "name": "Floirac, 3 Avenue du Président François Mitterrand", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57113, + 44.8783 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYSEGUQ", + "ref": "YSEGUQ", + "name": "Bordeaux, Ginko", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57113, + 44.8783 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYSEGUQ", + "ref": "YSEGUQ", + "name": "Bordeaux, Ginko", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6056556, + 44.8366088 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHZTA8PJY7H", + "ref": "HZTA8PJY7H", + "name": "Bordeaux, 127 Avenue d'Arès", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6056556, + 44.8366088 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHZTA8PJY7H", + "ref": "HZTA8PJY7H", + "name": "Bordeaux, 127 Avenue d'Arès", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5265646, + 44.8307381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA7Y2IJACYN", + "ref": "A7Y2IJACYN", + "name": "Floirac, 3 Avenue du Président François Mitterrand", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6132285, + 44.8462139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PITZYZ0TFXP", + "ref": "ITZYZ0TFXP", + "name": "Bordeaux, 1 bahr", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.552385, + 44.86105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE0XDVX1DK6", + "ref": "E0XDVX1DK6", + "name": "Bordeaux, 118 Quai de Bacalan", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.552385, + 44.86105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE0XDVX1DK6", + "ref": "E0XDVX1DK6", + "name": "Bordeaux, 118 Quai de Bacalan", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5730911, + 44.88033 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFB5Q3EX4F8", + "ref": "FB5Q3EX4F8", + "name": "Bordeaux, 22 Avenue Marcel Dassault", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.628291, + 44.84167 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYNT8Y8UH1", + "ref": "MYNT8Y8UH1", + "name": "Bordeaux, 57 Avenue de la Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624746, + 44.826207 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDPFPKHKVWG", + "ref": "DPFPKHKVWG", + "name": "Mérignac, 2 Av. François Mitterrand", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.653022, + 44.845233 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUUWW8D2QTS", + "ref": "UUWW8D2QTS", + "name": "Mérignac, 34 Avenue du Maréchal de Lattre de Tassigny", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.653022, + 44.845233 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUUWW8D2QTS", + "ref": "UUWW8D2QTS", + "name": "Mérignac, 34 Avenue du Maréchal de Lattre de Tassigny", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567786, + 44.8527873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUE0TCNCRDB", + "ref": "UE0TCNCRDB", + "name": "Bordeaux, 66 Quai des Chartrons", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5735586, + 44.8313446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBH6XELLB75", + "ref": "BH6XELLB75", + "name": "Bordeaux, 25 Place de la Victoire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5861464, + 44.8386916 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQXX0ZUA3NL", + "ref": "QXX0ZUA3NL", + "name": "Bordeaux, 5 Rue Robert Lateulade", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6330112, + 44.8043642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCNYDSJRDXJ", + "ref": "CNYDSJRDXJ", + "name": "Pessac, 29 Avenue Eugène et Marc Dulout", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6116, + 44.881022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJJFY41A3IX", + "ref": "JJFY41A3IX", + "name": "Bruges, 11 Avenue des Martyrs de la Resistance", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6116, + 44.881022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJJFY41A3IX", + "ref": "JJFY41A3IX", + "name": "Bruges, 11 Avenue des Martyrs de la Resistance", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.605597, + 44.793068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXH2LMSOLZF", + "ref": "XH2LMSOLZF", + "name": "Pessac, 47 Rue de Compostelle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6330112, + 44.8043642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCNYDSJRDXJ", + "ref": "CNYDSJRDXJ", + "name": "Pessac, 29 Avenue Eugène et Marc Dulout", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6330112, + 44.8043642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCNYDSJRDXJ", + "ref": "CNYDSJRDXJ", + "name": "Pessac, 29 Avenue Eugène et Marc Dulout", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5858919, + 44.8785426 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIUXFHAEHEQ", + "ref": "IUXFHAEHEQ", + "name": "Bruges, 90 Rue André Messager", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5910003, + 44.8122102 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD36RA9CGIF", + "ref": "D36RA9CGIF", + "name": "Talence, 281 Cours de la Libération", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5910003, + 44.8122102 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD36RA9CGIF", + "ref": "D36RA9CGIF", + "name": "Talence, 281 Cours de la Libération", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5910003, + 44.8122102 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD36RA9CGIF", + "ref": "D36RA9CGIF", + "name": "Talence, 281 Cours de la Libération", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5858919, + 44.8785426 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIUXFHAEHEQ", + "ref": "IUXFHAEHEQ", + "name": "Bruges, 90 Rue André Messager", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5931506, + 44.8063454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYUIX1NLTFN", + "ref": "YUIX1NLTFN", + "name": "Talence, 42 Avenue Roul", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5931506, + 44.8063454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYUIX1NLTFN", + "ref": "YUIX1NLTFN", + "name": "Talence, 42 Avenue Roul", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.605597, + 44.793068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXH2LMSOLZF", + "ref": "XH2LMSOLZF", + "name": "Pessac, 47 Rue de Compostelle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.653022, + 44.845233 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUUWW8D2QTS", + "ref": "UUWW8D2QTS", + "name": "Mérignac, 34 Avenue du Maréchal de Lattre de Tassigny", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.616092, + 44.83838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMQQHXGJV4R", + "ref": "MQQHXGJV4R", + "name": "Mérignac, 297 Avenue d'Arès", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.616092, + 44.83838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMQQHXGJV4R", + "ref": "MQQHXGJV4R", + "name": "Mérignac, 297 Avenue d'Arès", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5671108, + 44.8308225 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCNBUAC7CIC", + "ref": "CNBUAC7CIC", + "name": "Bordeaux, 9 Place des Capucins", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36738503, + 47.12095734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBBOWNBKO6", + "ref": "LBBOWNBKO6", + "name": "E. Leclerc, Saint-Doulchard", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37042547, + 48.57633739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36738503, + 47.12095734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBBOWNBKO6", + "ref": "LBBOWNBKO6", + "name": "E. Leclerc, Saint-Doulchard", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.516991, + 49.343346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVAT5RXQZXS", + "ref": "VAT5RXQZXS", + "name": "Ver-sur-Mer, Route d'Asnelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.900723, + 48.800545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PINJBEBIMWZ", + "ref": "INJBEBIMWZ", + "name": "Vire Normandie, Place des écoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.977295, + 48.825451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEZYDLQMDET", + "ref": "EZYDLQMDET", + "name": "Noues de Sienne, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303315, + 49.000648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCTQR1SV2HQ", + "ref": "CTQR1SV2HQ", + "name": "Saint-Germain-le-Vasson, Le Bourg/D237", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.212339, + 49.299999 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PL1KGSJOGST", + "ref": "L1KGSJOGST", + "name": "Surville, L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.750126, + 49.240765 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PE2RRBXWBWF", + "ref": "E2RRBXWBWF", + "name": "Subles, Rue Saint-Martin 12", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.478406, + 48.9856 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PM5E6SNDFBJ", + "ref": "M5E6SNDFBJ", + "name": "Le Hom, Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44972, + 49.258343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGVMAEKKID2", + "ref": "GVMAEKKID2", + "name": "Thaon, Rue du Lavoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.292248, + 49.024796 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PUTD4TMRIWV", + "ref": "UTD4TMRIWV", + "name": "Urville, Route de Langannerie/D131", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.080297, + 49.36565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PIHLSGMESO6", + "ref": "IHLSGMESO6", + "name": "Trouville-sur-Mer, Boulevard Fernand Moureaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.854415, + 48.840118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PS3XSSU87WY", + "ref": "S3XSSU87WY", + "name": "Vire Normandie, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.672848, + 48.853397 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWRQX6K3RY5", + "ref": "WRQX6K3RY5", + "name": "Valdallière, Rue Joseph Requeut 46", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.902956, + 49.3088 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PV4TIQY3EGA", + "ref": "V4TIQY3EGA", + "name": "Trévières, Route de Bayeux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.905397, + 49.308865 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMEXJIN27J7", + "ref": "MEXJIN27J7", + "name": "Trévières, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.288768, + 49.13478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PPEMGBREIMZ", + "ref": "PEMGBREIMZ", + "name": "Soliers, Route du Four", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.477086, + 49.049606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PIZJM7OHIWO", + "ref": "IZJM7OHIWO", + "name": "Montillières-sur-Orne, Le bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.126629, + 49.399658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLWXGXZ6NVG", + "ref": "LWXGXZ6NVG", + "name": "Villerville, Place du Lavoir 11", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.657508, + 49.07996 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PY6V0AW4AW2", + "ref": "Y6V0AW4AW2", + "name": "Villers-Bocage, Rue des Halles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8849, + 48.84539 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PNUVRR1EADB", + "ref": "NUVRR1EADB", + "name": "Vire Normandie, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566371, + 49.290745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGWNCBEVKLC", + "ref": "GWNCBEVKLC", + "name": "Creully sur Seulles, Rue de Bayeux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.606036, + 48.857273 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PKIWGD0YPCW", + "ref": "KIWGD0YPCW", + "name": "Condé-en-Normandie, Route de Vassy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.901956, + 48.844872 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRHIZSXG2KA", + "ref": "RHIZSXG2KA", + "name": "Vire Normandie, Rue Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.885866, + 48.837307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PFZE0IT59TV", + "ref": "FZE0IT59TV", + "name": "Vire Normandie, Rue Turpin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.405121, + 49.023678 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTTTLWP8ERC", + "ref": "TTTLWP8ERC", + "name": "Orbec, Boulevard de Beauvoir 27", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.405121, + 49.023678 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTTTLWP8ERC", + "ref": "TTTLWP8ERC", + "name": "Orbec, Boulevard de Beauvoir 27", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.268813, + 49.146912 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PNNOGALD1MD", + "ref": "NNOGALD1MD", + "name": "Lisieux, Rue Nicolas Dulong 102", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21517, + 49.057525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMACRGC0HBC", + "ref": "MACRGC0HBC", + "name": "Saint-Sylvain, Impasse des Semences", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197402, + 49.287834 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJX4EPALWZ9", + "ref": "JX4EPALWZ9", + "name": "Pont-l'Évêque, Rue Georges Clemenceau 42", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.890959, + 48.840595 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCPTGDV5IRH", + "ref": "CPTGDV5IRH", + "name": "Vire Normandie, Rue Emile Zimmermann 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.481821, + 48.989704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWIO5B4HAFQ", + "ref": "WIO5B4HAFQ", + "name": "Le Hom, Voie verte de la Suisse Normande", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.038759, + 48.832748 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PHHQQUNK71G", + "ref": "HHQQUNK71G", + "name": "Noues de Sienne, Rue du Vieux Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.028522, + 49.016411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEZNQHP1WWZ", + "ref": "EZNQHP1WWZ", + "name": "Saint-Pierre-en-Auge, Rue des Sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.268813, + 49.146912 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PNNOGALD1MD", + "ref": "NNOGALD1MD", + "name": "Lisieux, Rue Nicolas Dulong 102", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.888584, + 48.84039 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGLD9JG2RUT", + "ref": "GLD9JG2RUT", + "name": "Vire Normandie, Rue du Cotin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21517, + 49.057525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMACRGC0HBC", + "ref": "MACRGC0HBC", + "name": "Saint-Sylvain, Impasse des Semences", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197402, + 49.287834 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJX4EPALWZ9", + "ref": "JX4EPALWZ9", + "name": "Pont-l'Évêque, Rue Georges Clemenceau 42", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.103004, + 49.34425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGNV9UFSQLR", + "ref": "GNV9UFSQLR", + "name": "Touques, Place Georges Roger", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.038759, + 48.832748 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PHHQQUNK71G", + "ref": "HHQQUNK71G", + "name": "Noues de Sienne, Rue du Vieux Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.028522, + 49.016411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEZNQHP1WWZ", + "ref": "EZNQHP1WWZ", + "name": "Saint-Pierre-en-Auge, Rue des Sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8074, + 49.347195 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PKMIYT7TETI", + "ref": "KMIYT7TETI", + "name": "Aure sur Mer, Route d'Omaha Beach", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048561, + 48.840977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PUTPIDLSOX7", + "ref": "UTPIDLSOX7", + "name": "Noues de Sienne, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.882365, + 48.849442 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PX76ERWSQBX", + "ref": "X76ERWSQBX", + "name": "Vire Normandie, Rue des Peupliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.450656, + 49.1567 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMDE2V8GM3H", + "ref": "MDE2V8GM3H", + "name": "Verson, Rue de Joal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.904563, + 49.374043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PHS5GOHL3FX", + "ref": "HS5GOHL3FX", + "name": "Vierville-sur-Mer, Route de Formigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51847393, + 48.86885129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PO5K3TST9TA", + "ref": "O5K3TST9TA", + "name": "Saint-Denis-de-Méré, D562", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.288768, + 49.13478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PPEMGBREIMZ", + "ref": "PEMGBREIMZ", + "name": "Soliers, Route du Four", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.185999, + 49.348248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEUQ9MLUPEK", + "ref": "EUQ9MLUPEK", + "name": "Saint-Gatien-des-Bois, Rue des Brioleurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.452932, + 49.274509 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PDATGNHU3DP", + "ref": "DATGNHU3DP", + "name": "Fontaine-Henry, Rue du Régiment de la Chaudière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.317765, + 49.178341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMRZST8CYGX", + "ref": "MRZST8CYGX", + "name": "Mondeville, Rue Calmette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.458241, + 49.276985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCPSHDAIWXX", + "ref": "CPSHDAIWXX", + "name": "Fontaine-Henry, Rue de Scoriton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.073146, + 49.071609 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMNMLPFSE3R", + "ref": "MNMLPFSE3R", + "name": "Mézidon Vallée d'Auge, Rue Voltaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.104626, + 48.823738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVFSQFDC7FS", + "ref": "VFSQFDC7FS", + "name": "Noues de Sienne, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJJ44TQLKVR", + "ref": "JJ44TQLKVR", + "name": "Lisieux, Rue des Blanches Portes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.202366, + 49.137093 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQEINKRD3YH", + "ref": "QEINKRD3YH", + "name": "Saint-Désir, Chemin du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.606036, + 48.857273 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PKIWGD0YPCW", + "ref": "KIWGD0YPCW", + "name": "Condé-en-Normandie, Route de Vassy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.977295, + 48.825451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEZYDLQMDET", + "ref": "EZYDLQMDET", + "name": "Noues de Sienne, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303315, + 49.000648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCTQR1SV2HQ", + "ref": "CTQR1SV2HQ", + "name": "Saint-Germain-le-Vasson, Le Bourg/D237", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.082768, + 49.136223 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEINYNUPISK", + "ref": "EINYNUPISK", + "name": "Méry-Bissières-en-Auge, Place Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568107, + 49.277843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVYHQHHZGSX", + "ref": "VYHQHHZGSX", + "name": "Creully sur Seulles, Rue du Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.221156, + 49.143112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PZJXRR5YPFP", + "ref": "ZJXRR5YPFP", + "name": "Lisieux, Rue du Gaz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.900723, + 48.800545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PINJBEBIMWZ", + "ref": "INJBEBIMWZ", + "name": "Vire Normandie, Place des écoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.207578, + 49.136806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMTZJ9GHEC9", + "ref": "MTZJ9GHEC9", + "name": "Saint-Désir, Route de Falaise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.373516, + 49.254955 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQTJUNHZSQB", + "ref": "QTJUNHZSQB", + "name": "Mathieu, Rue de la Chaussée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.739149, + 49.02071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PKWSB5QN7ZK", + "ref": "KWSB5QN7ZK", + "name": "Dialan sur Chaîne, Impasse de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.399309, + 49.160816 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQ8JNTUN4KO", + "ref": "Q8JNTUN4KO", + "name": "Louvigny, Rue Edouard Boubat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTUU49NLCLV", + "ref": "TUU49NLCLV", + "name": "Lisieux, Rue des Blanches Portes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.276981, + 49.124573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBKLEA4YHK3", + "ref": "BKLEA4YHK3", + "name": "Glos, Rue d'Orbec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303596, + 49.034939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCLLQAPXJGQ", + "ref": "CLLQAPXJGQ", + "name": "Gouvix, Place François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.269729, + 49.317024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PIVMBTJCG7K", + "ref": "IVMBTJCG7K", + "name": "Saint-Benoît-d'Hébertot, L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20465, + 49.279522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PPMGS18OQBS", + "ref": "PMGS18OQBS", + "name": "Merville-Franceville-Plage, Boulevard Wattier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497137, + 49.180573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVVKHTT0N8X", + "ref": "VVKHTT0N8X", + "name": "Saint-Manvieu-Norrey, Rue de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09212, + 49.338612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PW0OVAVEOX2", + "ref": "W0OVAVEOX2", + "name": "Saint-Arnoult, Avenue Michel d'Ornano", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.391624, + 49.327827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PDTBNNOB9WY", + "ref": "DTBNNOB9WY", + "name": "Saint-Aubin-sur-Mer, Place de la Gare 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.281319, + 49.262711 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWX6KIL9ED5", + "ref": "WX6KIL9ED5", + "name": "Saint-Aubin-d'Arquenay, Route de Ouistreham", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.297287, + 49.053543 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEIKF1QJBPH", + "ref": "EIKF1QJBPH", + "name": "Valorbiquet, Route de Copplestone", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.457769, + 49.142525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQADLCK0CXV", + "ref": "QADLCK0CXV", + "name": "Fontaine-Étoupefour, Impasse du Stade Jules Quesnel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.395594, + 49.332512 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PKTL39IK8IX", + "ref": "KTL39IK8IX", + "name": "Saint-Aubin-sur-Mer, Rue de Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298521, + 49.073658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRTYRGHNJ1K", + "ref": "RTYRGHNJ1K", + "name": "Le Castelet, Chemin de la Jalousie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.838209, + 48.83251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PO0GXWLZLG0", + "ref": "O0GXWLZLG0", + "name": "Vire Normandie, Rue de la Mairie 14", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.221156, + 49.143112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PZJXRR5YPFP", + "ref": "ZJXRR5YPFP", + "name": "Lisieux, Rue du Gaz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15161, + 49.005394 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTDEMGY1AN7", + "ref": "TDEMGY1AN7", + "name": "Livarot-Pays-d'Auge, Place Xavier de Maistre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTUU49NLCLV", + "ref": "TUU49NLCLV", + "name": "Lisieux, Rue des Blanches Portes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJJ44TQLKVR", + "ref": "JJ44TQLKVR", + "name": "Lisieux, Rue des Blanches Portes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.149838, + 49.004524 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PHYNZH5Z54R", + "ref": "HYNZH5Z54R", + "name": "Livarot-Pays-d'Auge, Place Georges Bisson", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.220241, + 49.178085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PZUIJICJJYI", + "ref": "ZUIJICJJYI", + "name": "Saline, Rue du maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.845168, + 49.011806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTPQYPCO3UW", + "ref": "TPQYPCO3UW", + "name": "Souleuvre en Bocage, Rue des écoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.765131, + 49.108475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLXEN3QKGGW", + "ref": "LXEN3QKGGW", + "name": "Caumont-sur-Aure, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42327, + 49.164383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PHKI3EEJ2VG", + "ref": "HKI3EEJ2VG", + "name": "Bretteville-sur-Odon, Avenue du Fresne 1", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303376, + 49.171944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJIQBOVFEMZ", + "ref": "JIQBOVFEMZ", + "name": "Mondeville, Route de Rouen", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.481821, + 48.989704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWIO5B4HAFQ", + "ref": "WIO5B4HAFQ", + "name": "Le Hom, Voie verte de la Suisse Normande", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.890959, + 48.840595 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCPTGDV5IRH", + "ref": "CPTGDV5IRH", + "name": "Vire Normandie, Rue Emile Zimmermann 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422221, + 49.128597 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRJC5UJDFHM", + "ref": "RJC5UJDFHM", + "name": "Maltot, Rue du Dorset", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.673939, + 49.266899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PAEY2CFNUTF", + "ref": "AEY2CFNUTF", + "name": "Saint-Martin-des-Entrées, Rue Claude Monet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.845168, + 49.011806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTPQYPCO3UW", + "ref": "TPQYPCO3UW", + "name": "Souleuvre en Bocage, Rue des écoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.030718, + 49.02076 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14POUXSBPXK6V", + "ref": "OUXSBPXK6V", + "name": "Saint-Pierre-en-Auge, Place Gombault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576396, + 48.920029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PDI3I8QNHXO", + "ref": "DI3I8QNHXO", + "name": "Condé-en-Normandie, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.318416, + 49.172173 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGTOZBG9FBP", + "ref": "GTOZBG9FBP", + "name": "Mondeville, Rue Emile Zola 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.317765, + 49.178341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMRZST8CYGX", + "ref": "MRZST8CYGX", + "name": "Mondeville, Rue Calmette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.073741, + 48.924759 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PDKNJSCFR5M", + "ref": "DKNJSCFR5M", + "name": "Morteaux-Coulibœuf, Rue du stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.768018, + 48.920078 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PXJGG1BX1BV", + "ref": "XJGG1BX1BV", + "name": "Valdallière, Rue de la liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20465, + 49.279522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PPMGS18OQBS", + "ref": "PMGS18OQBS", + "name": "Merville-Franceville-Plage, Boulevard Wattier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.373516, + 49.254955 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQTJUNHZSQB", + "ref": "QTJUNHZSQB", + "name": "Mathieu, Rue de la Chaussée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.073146, + 49.071609 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMNMLPFSE3R", + "ref": "MNMLPFSE3R", + "name": "Mézidon Vallée d'Auge, Rue Voltaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.082768, + 49.136223 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEINYNUPISK", + "ref": "EINYNUPISK", + "name": "Méry-Bissières-en-Auge, Place Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.242004, + 48.96925 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRH6ES7OMSP", + "ref": "RH6ES7OMSP", + "name": "Potigny, Rue du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30163, + 49.2966 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWNPDHQMXEF", + "ref": "WNPDHQMXEF", + "name": "Hermanville-sur-Mer, Avenue Madame Coty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.288273, + 49.149944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PNZAMOLTFQS", + "ref": "NZAMOLTFQS", + "name": "Grentheville, Rue Urbain Cardon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.342878, + 49.213123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVK9H0DVFDH", + "ref": "VK9H0DVFDH", + "name": "Hérouville-Saint-Clair, Avenue de Garbsen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.313085, + 49.286636 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PC8PSNTNXXV", + "ref": "C8PSNTNXXV", + "name": "Hermanville-sur-Mer, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.268632, + 49.014362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PXMBUXALML9", + "ref": "XMBUXALML9", + "name": "Grainville-Langannerie, Rue de Lapford", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371768, + 49.138321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PUW8EXZVJSE", + "ref": "UW8EXZVJSE", + "name": "Marolles, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.399309, + 49.160816 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQ8JNTUN4KO", + "ref": "Q8JNTUN4KO", + "name": "Louvigny, Rue Edouard Boubat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.351417, + 49.318889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQ7EG4SVFR8", + "ref": "Q7EG4SVFR8", + "name": "Luc-sur-Mer, Rue du Général Dubail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.167836, + 49.116592 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQE0UDZRZSN", + "ref": "QE0UDZRZSN", + "name": "Moult-Chicheboville, Route de Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.203363, + 49.383171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PA3XTEFNVP7", + "ref": "A3XTEFNVP7", + "name": "Équemauville, Chemin de la Plane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.504844, + 49.101223 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJRO5XUKNVX", + "ref": "JRO5XUKNVX", + "name": "Évrecy, Rue de la Cabottière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502256, + 49.098824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQVMV4MMGBF", + "ref": "QVMV4MMGBF", + "name": "Évrecy, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03761395, + 49.01914912 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PZZNFVRZSHY", + "ref": "ZZNFVRZSHY", + "name": "Saint Pierre Sur Dives, Rue du Bief", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03761395, + 49.01914912 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PZZNFVRZSHY", + "ref": "ZZNFVRZSHY", + "name": "Saint Pierre Sur Dives, Rue du Bief", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567159, + 49.121574 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PX76NRT9OK4", + "ref": "X76NRT9OK4", + "name": "Val d'Arry, Place de l'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03761395, + 49.01914912 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PZZNFVRZSHY", + "ref": "ZZNFVRZSHY", + "name": "Saint Pierre Sur Dives, Rue du Bief", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.357187, + 49.19585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PSRFJICA7UF", + "ref": "SRFJICA7UF", + "name": "Moyaux, Rue Gustave Flaubert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.009537, + 49.14109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQETEMVQZCG", + "ref": "QETEMVQZCG", + "name": "Notre-Dame-d'Estrées-Corbon, Carrefour Saint-Jean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.257186, + 49.277668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PSWIRJOHWIU", + "ref": "SWIRJOHWIU", + "name": "Ouistreham, Avenue du Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.242383, + 49.198738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PNJAYNI3IS5", + "ref": "NJAYNI3IS5", + "name": "Norolles, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.411662, + 48.872952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEKPWNBEKEL", + "ref": "EKPWNBEKEL", + "name": "Pont-d'Ouilly, Rue du Stade René Vallée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.250781, + 49.278812 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRKAVXVKURO", + "ref": "RKAVXVKURO", + "name": "Ouistreham, Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753076, + 49.34211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PES3CPUZTN9", + "ref": "ES3CPUZTN9", + "name": "Port-en-Bessin-Huppain, Avenue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.186472, + 49.285782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVRSXXFSM8G", + "ref": "VRSXXFSM8G", + "name": "Pont-l'Évêque, Place du Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.224748, + 49.182022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14POW2ZNJNSGE", + "ref": "OW2ZNJNSGE", + "name": "Ouilly-le-Vicomte, Route de Deauville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.405064, + 49.020981 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQ7PXNU5TGT", + "ref": "Q7PXNU5TGT", + "name": "Orbec, Place Maréchal Foch 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.258216, + 49.288376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PULAU7GGFK3", + "ref": "ULAU7GGFK3", + "name": "Ouistreham, Place Alfred Thomas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.185999, + 49.348248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEUQ9MLUPEK", + "ref": "EUQ9MLUPEK", + "name": "Saint-Gatien-des-Bois, Rue des Brioleurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.041252, + 49.387611 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PC7MVLEKOXT", + "ref": "C7MVLEKOXT", + "name": "Grandcamp-Maisy, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.526418, + 49.135658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PX48FPHUJQU", + "ref": "X48FPHUJQU", + "name": "Grainville-sur-Odon, Rue de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.212339, + 49.299999 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PL1KGSJOGST", + "ref": "L1KGSJOGST", + "name": "Surville, L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.395594, + 49.332512 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PKTL39IK8IX", + "ref": "KTL39IK8IX", + "name": "Saint-Aubin-sur-Mer, Rue de Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497137, + 49.180573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVVKHTT0N8X", + "ref": "VVKHTT0N8X", + "name": "Saint-Manvieu-Norrey, Rue de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.478406, + 48.9856 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PM5E6SNDFBJ", + "ref": "M5E6SNDFBJ", + "name": "Le Hom, Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44972, + 49.258343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGVMAEKKID2", + "ref": "GVMAEKKID2", + "name": "Thaon, Rue du Lavoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624253, + 49.176746 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLA2MHNO1J0", + "ref": "LA2MHNO1J0", + "name": "Tilly-sur-Seulles, Rue du Stade 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.472951, + 48.986382 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PPFMKY61J2Z", + "ref": "PFMKY61J2Z", + "name": "Le Hom, Rue de Beauvoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8074, + 49.347195 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PKMIYT7TETI", + "ref": "KMIYT7TETI", + "name": "Aure sur Mer, Route d'Omaha Beach", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048561, + 48.840977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PUTPIDLSOX7", + "ref": "UTPIDLSOX7", + "name": "Noues de Sienne, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.750126, + 49.240765 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PE2RRBXWBWF", + "ref": "E2RRBXWBWF", + "name": "Subles, Rue Saint-Martin 12", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.391624, + 49.327827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PDTBNNOB9WY", + "ref": "DTBNNOB9WY", + "name": "Saint-Aubin-sur-Mer, Place de la Gare 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.292248, + 49.024796 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PUTD4TMRIWV", + "ref": "UTD4TMRIWV", + "name": "Urville, Route de Langannerie/D131", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.080297, + 49.36565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PIHLSGMESO6", + "ref": "IHLSGMESO6", + "name": "Trouville-sur-Mer, Boulevard Fernand Moureaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624253, + 49.176746 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLA2MHNO1J0", + "ref": "LA2MHNO1J0", + "name": "Tilly-sur-Seulles, Rue du Stade 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.472951, + 48.986382 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PPFMKY61J2Z", + "ref": "PFMKY61J2Z", + "name": "Le Hom, Rue de Beauvoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.905397, + 49.308865 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMEXJIN27J7", + "ref": "MEXJIN27J7", + "name": "Trévières, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.103004, + 49.34425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGNV9UFSQLR", + "ref": "GNV9UFSQLR", + "name": "Touques, Place Georges Roger", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.477086, + 49.049606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PIZJM7OHIWO", + "ref": "IZJM7OHIWO", + "name": "Montillières-sur-Orne, Le bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.902956, + 49.3088 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PV4TIQY3EGA", + "ref": "V4TIQY3EGA", + "name": "Trévières, Route de Bayeux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.269729, + 49.317024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PIVMBTJCG7K", + "ref": "IVMBTJCG7K", + "name": "Saint-Benoît-d'Hébertot, L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.281319, + 49.262711 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWX6KIL9ED5", + "ref": "WX6KIL9ED5", + "name": "Saint-Aubin-d'Arquenay, Route de Ouistreham", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.350859, + 49.150547 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PG7U2LCCD4Y", + "ref": "G7U2LCCD4Y", + "name": "Ifs, Avenue Jean Vilar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.220241, + 49.178085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PZUIJICJJYI", + "ref": "ZUIJICJJYI", + "name": "Saline, Rue du maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.316764, + 49.127815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCSMXC6RE5P", + "ref": "CSMXC6RE5P", + "name": "Castine-en-Plaine, Rue des Tilleuls", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355094, + 49.140018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PNWNXQPH8TD", + "ref": "NWNXQPH8TD", + "name": "Ifs, Rue des Pyrénées", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.349523, + 49.137749 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLJ98RD5Z2B", + "ref": "LJ98RD5Z2B", + "name": "Ifs, Esplanade François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345371, + 49.2024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEO8WQHNMPB", + "ref": "EO8WQHNMPB", + "name": "Hérouville-Saint-Clair, Rue Guyon de Guercheville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332626, + 49.202087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PG1IUADBW5Q", + "ref": "G1IUADBW5Q", + "name": "Hérouville-Saint-Clair, Place du Café des Images", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07457, + 49.30206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PAU5QM7JWO3", + "ref": "AU5QM7JWO3", + "name": "Houlgate, Boulevard de Saint-Philbert 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.237649, + 49.418694 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PZUGT4ZAI25", + "ref": "ZUGT4ZAI25", + "name": "Honfleur, Rue Vannier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.649742, + 49.292091 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PZ454AWT7LX", + "ref": "Z454AWT7LX", + "name": "Sommervieu, Rue Saint-Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09212, + 49.338612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PW0OVAVEOX2", + "ref": "W0OVAVEOX2", + "name": "Saint-Arnoult, Avenue Michel d'Ornano", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.207578, + 49.136806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMTZJ9GHEC9", + "ref": "MTZJ9GHEC9", + "name": "Saint-Désir, Route de Falaise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298521, + 49.073658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRTYRGHNJ1K", + "ref": "RTYRGHNJ1K", + "name": "Le Castelet, Chemin de la Jalousie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.471729, + 49.199406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBKNQO1ST1J", + "ref": "BKNQO1ST1J", + "name": "Rots, Route de Caen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.259154, + 49.23476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGHMUTKEBFR", + "ref": "GHMUTKEBFR", + "name": "Ranville, Rue de la Vallée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.838209, + 48.83251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PO0GXWLZLG0", + "ref": "O0GXWLZLG0", + "name": "Vire Normandie, Rue de la Mairie 14", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.476986, + 49.205502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVRHCX96IT0", + "ref": "VRHCX96IT0", + "name": "Rots, Rue Haute Bonny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.202366, + 49.137093 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQEINKRD3YH", + "ref": "QEINKRD3YH", + "name": "Saint-Désir, Chemin du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.297287, + 49.053543 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEIKF1QJBPH", + "ref": "EIKF1QJBPH", + "name": "Valorbiquet, Route de Copplestone", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568107, + 49.277843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVYHQHHZGSX", + "ref": "VYHQHHZGSX", + "name": "Creully sur Seulles, Rue du Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.149838, + 49.004524 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PHYNZH5Z54R", + "ref": "HYNZH5Z54R", + "name": "Livarot-Pays-d'Auge, Place Georges Bisson", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.765131, + 49.108475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLXEN3QKGGW", + "ref": "LXEN3QKGGW", + "name": "Caumont-sur-Aure, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.269149, + 49.408573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PE4PPW00CLV", + "ref": "E4PPW00CLV", + "name": "La Rivière-Saint-Sauveur, Rue du Port 44", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1568056, + 47.34725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPWIHLJMHAB", + "ref": "PWIHLJMHAB", + "name": "Le Palais, Hôtel de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0849722, + 47.2945556 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTI8PEKPXSF", + "ref": "TI8PEKPXSF", + "name": "Locmaria, rue Argentré du Plessis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0849722, + 47.2945556 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTI8PEKPXSF", + "ref": "TI8PEKPXSF", + "name": "Locmaria, rue Argentré du Plessis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1861944, + 47.36075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PBD9SBFG89K", + "ref": "BD9SBFG89K", + "name": "Le Palais, Port-Collen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2206389, + 47.3759444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCGGCRTEPRZ", + "ref": "CGGCRTEPRZ", + "name": "Sauzon, Le Cardinal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.154, + 47.3446389 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYCX0MN1QXX", + "ref": "YCX0MN1QXX", + "name": "Le Palais, Remparts", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1861944, + 47.36075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PBD9SBFG89K", + "ref": "BD9SBFG89K", + "name": "Le Palais, Port-Collen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15478, + 47.346444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCVA0LBMFFS", + "ref": "CVA0LBMFFS", + "name": "Le Palais, Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.154, + 47.3446389 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYCX0MN1QXX", + "ref": "YCX0MN1QXX", + "name": "Le Palais, Remparts", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.154, + 47.3446389 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYCX0MN1QXX", + "ref": "YCX0MN1QXX", + "name": "Le Palais, Remparts", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2206389, + 47.3759444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCGGCRTEPRZ", + "ref": "CGGCRTEPRZ", + "name": "Sauzon, Le Cardinal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15478, + 47.346444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCVA0LBMFFS", + "ref": "CVA0LBMFFS", + "name": "Le Palais, Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.154, + 47.3446389 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYCX0MN1QXX", + "ref": "YCX0MN1QXX", + "name": "Le Palais, Remparts", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2229723, + 47.3683056 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56POTFVUHHRFE", + "ref": "OTFVUHHRFE", + "name": "Sauzon, Pen Prad", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15921, + 47.3491 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHFVGTE", + "ref": "HFVGTE", + "name": "Le Palais, Les Glacis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15921, + 47.3491 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHFVGTE", + "ref": "HFVGTE", + "name": "Le Palais, Les Glacis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38440197, + 47.80989417 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTZEHVV", + "ref": "TZEHVV", + "name": "Malestroit, Place du Docteur Queinnec Rapide", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38442, + 47.8099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTZEHVV", + "ref": "TZEHVV", + "name": "Malestroit, Place du Docteur Queinnec Rapide", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.54602, + 47.9541 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLBRBBU", + "ref": "LBRBBU", + "name": "Josselin, Place d'Alzey", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2229723, + 47.3683056 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56POTFVUHHRFE", + "ref": "OTFVUHHRFE", + "name": "Sauzon, Pen Prad", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1568056, + 47.34725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPWIHLJMHAB", + "ref": "PWIHLJMHAB", + "name": "Le Palais, Hôtel de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -149.90543, + -17.5275527 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMBSSYTGNDB", + "ref": "MBSSYTGNDB", + "name": "Moorea, Salvastore", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331992117, + 47.61497852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN2CH6C5QBH", + "ref": "N2CH6C5QBH", + "name": "Blois, Rue des Guignières", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331992117, + 47.61497852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN2CH6C5QBH", + "ref": "N2CH6C5QBH", + "name": "Blois, Rue des Guignières", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331992117, + 47.61497852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN2CH6C5QBH", + "ref": "N2CH6C5QBH", + "name": "Blois, Rue des Guignières", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -149.90543, + -17.5275527 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMBSSYTGNDB", + "ref": "MBSSYTGNDB", + "name": "Moorea, Salvastore", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331992117, + 47.61497852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN2CH6C5QBH", + "ref": "N2CH6C5QBH", + "name": "Blois, Rue des Guignières", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331992117, + 47.61497852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN2CH6C5QBH", + "ref": "N2CH6C5QBH", + "name": "Blois, Rue des Guignières", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331992117, + 47.61497852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN2CH6C5QBH", + "ref": "N2CH6C5QBH", + "name": "Blois, Rue des Guignières", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.80911, + 47.5099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX9UCRG8ZDU", + "ref": "X9UCRG8ZDU", + "name": "Montbéliard, Assurance Jacquemin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.80911, + 47.5099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX9UCRG8ZDU", + "ref": "X9UCRG8ZDU", + "name": "Montbéliard, Assurance Jacquemin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52771, + 46.6717 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR6EKEKG2QM", + "ref": "R6EKEKG2QM", + "name": "Montmorot, Bureau Vallée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52771, + 46.6717 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR6EKEKG2QM", + "ref": "R6EKEKG2QM", + "name": "Montmorot, Bureau Vallée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39965998, + 45.48381895 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVCFWJE8H9N", + "ref": "VCFWJE8H9N", + "name": "Montrevel, Montrevel Auto", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28274, + 48.0824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPMKMGS", + "ref": "PMKMGS", + "name": "Mauron, Rue du 19 Mars 1962", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00925, + 47.7776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PURGRZH", + "ref": "URGRZH", + "name": "Pluvigner, Place Saint Michel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00925, + 47.7776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PURGRZH", + "ref": "URGRZH", + "name": "Pluvigner, Place Saint Michel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0008, + 47.6173 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCGJZHNOXXN", + "ref": "CGJZHNOXXN", + "name": "Crach, Parking Saint Thuriau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.16776, + 47.6756 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPSZCJC", + "ref": "PSZCJC", + "name": "Belz, Avenue Général de Gaulle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.60098, + 48.141 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCYTRZG", + "ref": "CYTRZG", + "name": "Gourin, Place Général de Gaulle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.30513, + 47.5295 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZFRNAW", + "ref": "ZFRNAW", + "name": "Marzan, Aire de Marzan", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.07781, + 47.5703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PUT10PKNXV9", + "ref": "UT10PKNXV9", + "name": "Carnac, Boulevard de la plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.382645, + 47.706029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56POXD9WRDSZQ", + "ref": "OXD9WRDSZQ", + "name": "Larmor-Plage, Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.382645, + 47.706029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56POXD9WRDSZQ", + "ref": "OXD9WRDSZQ", + "name": "Larmor-Plage, Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.07781, + 47.5703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PUT10PKNXV9", + "ref": "UT10PKNXV9", + "name": "Carnac, Boulevard de la plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.648074, + 47.525771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGQ6RXOGQR9", + "ref": "GQ6RXOGQR9", + "name": "Le-tour-du-parc, Parking Cimetière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.648074, + 47.525771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGQ6RXOGQR9", + "ref": "GQ6RXOGQR9", + "name": "Le-tour-du-parc, Parking Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1124, + 47.599 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZGBPNA", + "ref": "ZGBPNA", + "name": "Plouharnel, Rue du Tramway", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.385595, + 47.706284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNE1A8MI3RW", + "ref": "NE1A8MI3RW", + "name": "Larmor-Plage, Place Kerpape", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76128936, + 47.5276439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLLI2WDITY2FS8E", + "ref": "LLI2WDITY2FS8E", + "name": "Sarzeau, Rue Adrien Régent - Parking salle multisports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76128936, + 47.5276439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLLI2WDITY2FS8E", + "ref": "LLI2WDITY2FS8E", + "name": "Sarzeau, Rue Adrien Régent - Parking salle multisports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.852219, + 47.601017 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPREPCWAOME", + "ref": "PREPCWAOME", + "name": "Île-aux-Moines, Embarcadère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.852219, + 47.601017 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPREPCWAOME", + "ref": "PREPCWAOME", + "name": "Île-aux-Moines, Embarcadère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.385595, + 47.706284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNE1A8MI3RW", + "ref": "NE1A8MI3RW", + "name": "Larmor-Plage, Place Kerpape", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.379785, + 47.50075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PQJ6QKLM4O5", + "ref": "QJ6QKLM4O5", + "name": "Arzal, Parking Port d'Arzal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.379785, + 47.50075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PQJ6QKLM4O5", + "ref": "QJ6QKLM4O5", + "name": "Arzal, Parking Port d'Arzal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.30513, + 47.5295 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZFRNAW", + "ref": "ZFRNAW", + "name": "Marzan, Aire de Marzan", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20706, + 48.0669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLQPFQW", + "ref": "LQPFQW", + "name": "Guémené-sur-Scorff, Rue du Condé", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28274, + 48.0824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPMKMGS", + "ref": "PMKMGS", + "name": "Mauron, Rue du 19 Mars 1962", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13434, + 47.7663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFYJMNZ", + "ref": "FYJMNZ", + "name": "La Gacilly, Rue de l'Hôtel de ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89104, + 47.5497 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYEHCXH", + "ref": "YEHCXH", + "name": "Arzon, Parking Maison des Associations", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.16351, + 47.638 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFCQHSR", + "ref": "FCQHSR", + "name": "Allaire, Rue Le Mauff", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.16351, + 47.638 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFCQHSR", + "ref": "FCQHSR", + "name": "Allaire, Rue Le Mauff", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89104, + 47.5497 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYEHCXH", + "ref": "YEHCXH", + "name": "Arzon, Parking Maison des Associations", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.54602, + 47.9541 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLBRBBU", + "ref": "LBRBBU", + "name": "Josselin, Place d'Alzey", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59084, + 47.7337 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHJHXYP", + "ref": "HJHXYP", + "name": "Elven, Rue Sainte Anne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59084, + 47.7337 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHJHXYP", + "ref": "HJHXYP", + "name": "Elven, Rue Sainte Anne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20706, + 48.0669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLQPFQW", + "ref": "LQPFQW", + "name": "Guémené-sur-Scorff, Rue du Condé", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13434, + 47.7663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFYJMNZ", + "ref": "FYJMNZ", + "name": "La Gacilly, Rue de l'Hôtel de ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.60098, + 48.141 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCYTRZG", + "ref": "CYTRZG", + "name": "Gourin, Place Général de Gaulle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.33673, + 47.8876 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZCZYVW", + "ref": "ZCZYVW", + "name": "Cléguer, Kerchopine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.33673, + 47.8876 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZCZYVW", + "ref": "ZCZYVW", + "name": "Cléguer, Kerchopine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.79624, + 47.6607 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPTMTEE", + "ref": "PTMTEE", + "name": "Ploeren, Parking relais", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36819, + 47.7468 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PAPALYU", + "ref": "APALYU", + "name": "Lorient, Rue Jean le Coutaller", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36819, + 47.7468 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PAPALYU", + "ref": "APALYU", + "name": "Lorient, Rue Jean le Coutaller", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.79624, + 47.6607 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPTMTEE", + "ref": "PTMTEE", + "name": "Ploeren, Parking relais", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.16776, + 47.6756 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPSZCJC", + "ref": "PSZCJC", + "name": "Belz, Avenue Général de Gaulle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1124, + 47.599 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZGBPNA", + "ref": "ZGBPNA", + "name": "Plouharnel, Rue du Tramway", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.030718, + 49.02076 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14POUXSBPXK6V", + "ref": "OUXSBPXK6V", + "name": "Saint-Pierre-en-Auge, Place Gombault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.869728, + 49.242004 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCTHD3M2P9Z", + "ref": "CTHD3M2P9Z", + "name": "Le Molay-Littry, Le Haut Varet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.84048, + 48.937435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQM29QD00GP", + "ref": "QM29QD00GP", + "name": "Souleuvre en Bocage, Rue du Chanoine Cochard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.830717, + 48.965939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTKVDATEIGS", + "ref": "TKVDATEIGS", + "name": "Souleuvre en Bocage, Le bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066339, + 45.093005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCQLQDZEBO", + "ref": "DCQLQDZEBO", + "name": "Huez, Hôtel Grandes Rousses", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066339, + 45.093005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCQLQDZEBO", + "ref": "DCQLQDZEBO", + "name": "Huez, Hôtel Grandes Rousses", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066339, + 45.093005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCQLQDZEBO", + "ref": "DCQLQDZEBO", + "name": "Huez, Hôtel Grandes Rousses", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066339, + 45.093005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCQLQDZEBO", + "ref": "DCQLQDZEBO", + "name": "Huez, Hôtel Grandes Rousses", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066339, + 45.093005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCQLQDZEBO", + "ref": "DCQLQDZEBO", + "name": "Huez, Hôtel Grandes Rousses", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066339, + 45.093005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCQLQDZEBO", + "ref": "DCQLQDZEBO", + "name": "Huez, Hôtel Grandes Rousses", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066339, + 45.093005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCQLQDZEBO", + "ref": "DCQLQDZEBO", + "name": "Huez, Hôtel Grandes Rousses", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.977225, + 48.930635 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGIKZ0YEDUA", + "ref": "GIKZ0YEDUA", + "name": "Orgeval, 8 rue de Normandie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.977225, + 48.930635 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGIKZ0YEDUA", + "ref": "GIKZ0YEDUA", + "name": "Orgeval, 8 rue de Normandie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.976106, + 48.931375 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POCKE9RJCWK", + "ref": "OCKE9RJCWK", + "name": "Orgeval, rue de Normandie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.976106, + 48.931375 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POCKE9RJCWK", + "ref": "OCKE9RJCWK", + "name": "Orgeval, rue de Normandie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.56569, + 48.5243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENQKRY", + "ref": "ENQKRY", + "name": "Duttlenheim, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.52939, + 48.5652 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVPCHZV", + "ref": "VPCHZV", + "name": "Ergersheim, RD30", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.52939, + 48.5652 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVPCHZV", + "ref": "VPCHZV", + "name": "Ergersheim, RD30", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.49877, + 48.5407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGLHZJS", + "ref": "GLHZJS", + "name": "Molsheim, Holzplatz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.49877, + 48.5407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGLHZJS", + "ref": "GLHZJS", + "name": "Molsheim, Holzplatz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369945, + 49.325378 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PL7FSMQ3K4U", + "ref": "L7FSMQ3K4U", + "name": "Langrune-sur-Mer, Rue du Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.545198, + 49.195198 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLJYDD69MZG", + "ref": "LJYDD69MZG", + "name": "Thue et Mue, Rue du 11 Juin 1944", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29001, + 49.108196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGH4NB90TR9", + "ref": "GH4NB90TR9", + "name": "Le Mesnil-Guillaume, Route d'Orbec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15161, + 49.005394 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTDEMGY1AN7", + "ref": "TDEMGY1AN7", + "name": "Livarot-Pays-d'Auge, Place Xavier de Maistre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753121, + 49.002502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PS0QPPXPGJG", + "ref": "S0QPPXPGJG", + "name": "Dialan sur Chaîne, La Butte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.883248, + 48.893047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14POIGASENV23", + "ref": "OIGASENV23", + "name": "Souleuvre en Bocage, Place de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.101562, + 49.320122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PNBKCJUXTTW", + "ref": "NBKCJUXTTW", + "name": "Isigny-sur-Mer, Quai Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.073741, + 48.924759 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PDKNJSCFR5M", + "ref": "DKNJSCFR5M", + "name": "Morteaux-Coulibœuf, Rue du stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.649742, + 49.292091 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PZ454AWT7LX", + "ref": "Z454AWT7LX", + "name": "Sommervieu, Rue Saint-Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.167836, + 49.116592 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQE0UDZRZSN", + "ref": "QE0UDZRZSN", + "name": "Moult-Chicheboville, Route de Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.768018, + 48.920078 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PXJGG1BX1BV", + "ref": "XJGG1BX1BV", + "name": "Valdallière, Rue de la liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.318416, + 49.172173 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGTOZBG9FBP", + "ref": "GTOZBG9FBP", + "name": "Mondeville, Rue Emile Zola 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.079796, + 48.975983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMQRZ3VP5TF", + "ref": "MQRZ3VP5TF", + "name": "Jort, Rue des Ponts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.789644, + 49.219543 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRLM6CEWDCK", + "ref": "RLM6CEWDCK", + "name": "Le Tronquay, La Tuilerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.419354, + 49.024189 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PH9D6ILYVTS", + "ref": "H9D6ILYVTS", + "name": "La Vespière-Friardel, Beausoleil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371768, + 49.138321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PUW8EXZVJSE", + "ref": "UW8EXZVJSE", + "name": "Marolles, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PYGKZQ5NRRM", + "ref": "YGKZQ5NRRM", + "name": "Lisieux, Rue des Blanches Portes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.314508, + 49.302155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQRFJYJHILI", + "ref": "QRFJYJHILI", + "name": "Lion-sur-Mer, Rue du 18 juin 1940", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576396, + 48.920029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PDI3I8QNHXO", + "ref": "DI3I8QNHXO", + "name": "Condé-en-Normandie, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422221, + 49.128597 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRJC5UJDFHM", + "ref": "RJC5UJDFHM", + "name": "Maltot, Rue du Dorset", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.351417, + 49.318889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQ7EG4SVFR8", + "ref": "Q7EG4SVFR8", + "name": "Luc-sur-Mer, Rue du Général Dubail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.673939, + 49.266899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PAEY2CFNUTF", + "ref": "AEY2CFNUTF", + "name": "Saint-Martin-des-Entrées, Rue Claude Monet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.53039, + 48.5226 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRCMSEE", + "ref": "RCMSEE", + "name": "Altorf, Abbatiale Saint-Cyriaque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.49481, + 48.5395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFLFETT", + "ref": "FLFETT", + "name": "Molsheim, Parc des Jésuites", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45618, + 48.5396 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQLKTCA", + "ref": "QLKTCA", + "name": "Mutzig, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.56569, + 48.5243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENQKRY", + "ref": "ENQKRY", + "name": "Duttlenheim, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.53039, + 48.5226 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRCMSEE", + "ref": "RCMSEE", + "name": "Altorf, Abbatiale Saint-Cyriaque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40364, + 48.5522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYUKUFV", + "ref": "YUKUFV", + "name": "Still, Tuileries", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.56626, + 48.5611 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQBBJAH", + "ref": "QBBJAH", + "name": "Ernolsheim-sur-Bruche, Parc des Sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40364, + 48.5522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYUKUFV", + "ref": "YUKUFV", + "name": "Still, Tuileries", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.47071, + 48.5313 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFASQGG", + "ref": "FASQGG", + "name": "Mutzig, Hermès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.49959, + 48.5614 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHSKUAV", + "ref": "HSKUAV", + "name": "Avolsheim, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.47071, + 48.5313 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFASQGG", + "ref": "FASQGG", + "name": "Mutzig, Hermès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.49959, + 48.5614 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHSKUAV", + "ref": "HSKUAV", + "name": "Avolsheim, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4851, + 48.5742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBSWCES", + "ref": "BSWCES", + "name": "Soultz-les-bains, rue de Saverne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.40478507, + 43.7221983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIAIVNQITZ", + "ref": "YIAIVNQITZ", + "name": "Cap d'Ail, Parking du Cap Fleuri", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43221, + 48.5356 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTFJPLY", + "ref": "TFJPLY", + "name": "Gresswiller, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.51442, + 48.5661 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEVBSNL", + "ref": "EVBSNL", + "name": "Wolxheim, Rue de Molsheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45618, + 48.5396 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQLKTCA", + "ref": "QLKTCA", + "name": "Mutzig, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.42629, + 48.5403 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMXZDMN", + "ref": "MXZDMN", + "name": "Dinsheim-sur-Bruche, Foyer communal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.49481, + 48.5395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFLFETT", + "ref": "FLFETT", + "name": "Molsheim, Parc des Jésuites", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5323, + 48.5442 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQGPKVC", + "ref": "QGPKVC", + "name": "Dachstein, Rue Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48624, + 48.5248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPNUWUA", + "ref": "PNUWUA", + "name": "Dorlisheim, Placette Grand Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.59489, + 48.5315 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAUFXYU", + "ref": "AUFXYU", + "name": "Duppigheim, Zone de Loisirs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.59489, + 48.5315 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAUFXYU", + "ref": "AUFXYU", + "name": "Duppigheim, Zone de Loisirs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48624, + 48.5248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPNUWUA", + "ref": "PNUWUA", + "name": "Dorlisheim, Placette Grand Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5323, + 48.5442 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQGPKVC", + "ref": "QGPKVC", + "name": "Dachstein, Rue Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.42629, + 48.5403 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMXZDMN", + "ref": "MXZDMN", + "name": "Dinsheim-sur-Bruche, Foyer communal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.56626, + 48.5611 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQBBJAH", + "ref": "QBBJAH", + "name": "Ernolsheim-sur-Bruche, Parc des Sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4851, + 48.5742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBSWCES", + "ref": "BSWCES", + "name": "Soultz-les-bains, rue de Saverne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.32491, + 48.5502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBNQCVM", + "ref": "BNQCVM", + "name": "Oberhaslach, Salle Polyvalente", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.34541, + 48.5405 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCZLFEL", + "ref": "CZLFEL", + "name": "Niederhaslach, Place des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.32491, + 48.5502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBNQCVM", + "ref": "BNQCVM", + "name": "Oberhaslach, Salle Polyvalente", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.49844226, + 48.53267741 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJQ6N8HQWWD", + "ref": "JQ6N8HQWWD", + "name": "Molsheim, Rue Ecospace", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.49844226, + 48.53267741 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJQ6N8HQWWD", + "ref": "JQ6N8HQWWD", + "name": "Molsheim, Rue Ecospace", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.51442, + 48.5661 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEVBSNL", + "ref": "EVBSNL", + "name": "Wolxheim, Rue de Molsheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.34541, + 48.5405 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCZLFEL", + "ref": "CZLFEL", + "name": "Niederhaslach, Place des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43221, + 48.5356 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTFJPLY", + "ref": "TFJPLY", + "name": "Gresswiller, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.206739, + 49.391857 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PSHNTRB88GR", + "ref": "SHNTRB88GR", + "name": "Équemauville, Place de la Paix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00949802, + 49.141176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCBX7KUYBYW", + "ref": "CBX7KUYBYW", + "name": "Notre-Dame d'Estrees Corbon, Route de Bonnebosq", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98956, + 47.6665 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFLENKG", + "ref": "FLENKG", + "name": "Auray, Rue du Four Mollet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.151468, + 49.10059 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQQ9ULMFY9S", + "ref": "QQ9ULMFY9S", + "name": "Valambray, Rue du Pressoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.360357, + 49.187054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTTGYEWCD4D", + "ref": "TTGYEWCD4D", + "name": "Caen, Rue du Vaugueux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.761437, + 49.158428 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWDURE5OIIU", + "ref": "WDURE5OIIU", + "name": "Cahagnolles, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.767352, + 49.066422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PY6SL8CGLG1", + "ref": "Y6SL8CGLG1", + "name": "Cahagnes, D54", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.403748, + 49.113762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PAPLE3YWA6J", + "ref": "APLE3YWA6J", + "name": "Feuguerolles-Bully, Rue Henri Rosel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.196851, + 48.896561 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGXNIEP4LJS", + "ref": "GXNIEP4LJS", + "name": "Falaise, Rue du Champ Saint-Michel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.371682, + 49.152481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLUSPLHMJTM", + "ref": "LUSPLHMJTM", + "name": "Fleury-sur-Orne, Avenue d'Harcourt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.220548, + 49.251003 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJCXRAXISUD", + "ref": "JCXRAXISUD", + "name": "Fierville-les-Parcs, Route de la vallée de la Touques", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.201822, + 48.892605 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLNBVCEOPZC", + "ref": "LNBVCEOPZC", + "name": "Falaise, Place du Docteur Cailloué", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.504844, + 49.101223 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJRO5XUKNVX", + "ref": "JRO5XUKNVX", + "name": "Évrecy, Rue de la Cabottière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.200854, + 48.895374 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PFJDPVYD3VM", + "ref": "FJDPVYD3VM", + "name": "Falaise, Rue Trinité 24", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.207155, + 48.908218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PE7G17KGQS8", + "ref": "E7G17KGQS8", + "name": "Falaise, Route de Caen", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.360565, + 49.161114 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PKPSZKEMHNF", + "ref": "KPSZKEMHNF", + "name": "Caen, Avenue du Père Charles de Foucauld", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380138, + 49.199852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PA1BDJHEJBW", + "ref": "A1BDJHEJBW", + "name": "Caen, Esplanade Brillaud de Laujardière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365959, + 49.180958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJERHB0BEAB", + "ref": "JERHB0BEAB", + "name": "Caen, Place du parvis Notre Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359741, + 49.203658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PATTXYEMZSE", + "ref": "ATTXYEMZSE", + "name": "Caen, Rue Professeur Joseph Rousselot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.346611, + 49.181694 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PR8RWH8HXZS", + "ref": "R8RWH8HXZS", + "name": "Caen, Cours Caffarelli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.346506, + 49.183704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEYSLWKWYZR", + "ref": "EYSLWKWYZR", + "name": "Caen, Avenue Pierre Berthelot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.364503, + 49.184155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PSAKCOZYZCV", + "ref": "SAKCOZYZCV", + "name": "Caen, Rue Gémare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.402715, + 49.182137 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PNPPA9S0IZH", + "ref": "NPPA9S0IZH", + "name": "Caen, Boulevard Georges Pompidou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.254735, + 49.146415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMEUKZBWL9R", + "ref": "MEUKZBWL9R", + "name": "Cagny, Allée Saint Germain 33", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44147, + 49.185043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PYBCAAXHFBE", + "ref": "YBCAAXHFBE", + "name": "Carpiquet, Avenue Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.806385, + 49.090714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PZ7TCFV54RM", + "ref": "Z7TCFV54RM", + "name": "Caumont-sur-Aure, Rue de la Ferière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11563, + 49.29363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PXZTAT4QNOV", + "ref": "XZTAT4QNOV", + "name": "Cabourg, Jardin du casino", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.295243, + 49.134693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLLIU23ZA9182RT", + "ref": "LLIU23ZA9182RT", + "name": "Soliers, Place de la Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.114171, + 49.292559 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLLIU0VC43UH3BJ", + "ref": "LLIU0VC43UH3BJ", + "name": "Cabourg, Parking 1 Avenue de la Libération", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.651174, + 49.080152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCPFJ1PSP4H", + "ref": "CPFJ1PSP4H", + "name": "Villers-Bocage, Rue Richard Lenoir", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.295243, + 49.134693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLLIU23ZA9182RT", + "ref": "LLIU23ZA9182RT", + "name": "Soliers, Place de la Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.114171, + 49.292559 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLLIU0VC43UH3BJ", + "ref": "LLIU0VC43UH3BJ", + "name": "Cabourg, Parking 1 Avenue de la Libération", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11563, + 49.29363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PXZTAT4QNOV", + "ref": "XZTAT4QNOV", + "name": "Cabourg, Jardin du casino", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11563, + 49.29363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PXZTAT4QNOV", + "ref": "XZTAT4QNOV", + "name": "Cabourg, Jardin du casino", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.114171, + 49.292559 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLLIU0VC43UH3BJ", + "ref": "LLIU0VC43UH3BJ", + "name": "Cabourg, Parking 1 Avenue de la Libération", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.348103, + 49.178352 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PFLQCEIECNA", + "ref": "FLQCEIECNA", + "name": "Caen, Rue Rosa Parks", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.046794, + 49.149574 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJ2CAXWCJQ2", + "ref": "J2CAXWCJQ2", + "name": "Cambremer, Avenue des Tilleuls", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.366633, + 49.18668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCKEU2AXBPX", + "ref": "CKEU2AXBPX", + "name": "Caen, Rue Chanoine Xavier de Saint Pol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380302, + 49.204082 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PDELR9H5LME", + "ref": "DELR9H5LME", + "name": "Caen, Rue des Acadiens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365122, + 49.199177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRJ5B3FAJRM", + "ref": "RJ5B3FAJRM", + "name": "Caen, Rue de la Défense Passive", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355559, + 49.184055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PANOW48R3FC", + "ref": "ANOW48R3FC", + "name": "Caen, Quai de la Londe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.347497, + 49.197529 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PL9PDURSKHV", + "ref": "L9PDURSKHV", + "name": "Caen, Place Champlain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34267, + 49.160675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PG4DK6RTQ3D", + "ref": "G4DK6RTQ3D", + "name": "Caen, Place de la Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.371259, + 49.180359 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PXOUSTRWIIJ", + "ref": "XOUSTRWIIJ", + "name": "Caen, Place Guillouard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.924642, + 48.889202 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14POIXFQFMHLO", + "ref": "OIXFQFMHLO", + "name": "Campagnolles, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.007925, + 48.792999 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWDC8V4ORJE", + "ref": "WDC8V4ORJE", + "name": "Noues de Sienne, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.371682, + 49.152481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLUSPLHMJTM", + "ref": "LUSPLHMJTM", + "name": "Fleury-sur-Orne, Avenue d'Harcourt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.201822, + 48.892605 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLNBVCEOPZC", + "ref": "LNBVCEOPZC", + "name": "Falaise, Place du Docteur Cailloué", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.406258, + 49.265347 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PAWSCCFXPIZ", + "ref": "AWSCCFXPIZ", + "name": "Colomby-Anguerny, Rue du Bout Maçon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.045529, + 48.972824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJ9E72TSRLI", + "ref": "J9E72TSRLI", + "name": "Courcy, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130306, + 49.381893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJVJN0XRMBD", + "ref": "JVJN0XRMBD", + "name": "Cricquebœuf, Centre hospitalier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.538061, + 49.286358 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBCNP9TW96E", + "ref": "BCNP9TW96E", + "name": "Creully sur Seulles, Route de Tierceville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332007, + 49.155018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBENXV427ED", + "ref": "BENXV427ED", + "name": "Cormelles-le-Royal, Rue des Écoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.212054, + 49.2001 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PPPAT8F1AHP", + "ref": "PPAT8F1AHP", + "name": "Coquainvilliers, Rue du Manoir de Prie 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.913899, + 48.872356 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PYTDEL15IL4", + "ref": "YTDEL15IL4", + "name": "Vire Normandie, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.856212, + 49.129959 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRFATER8YU3", + "ref": "RFATER8YU3", + "name": "Cormolain, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502256, + 49.098824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQVMV4MMGBF", + "ref": "QVMV4MMGBF", + "name": "Évrecy, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.458241, + 49.276985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCPSHDAIWXX", + "ref": "CPSHDAIWXX", + "name": "Fontaine-Henry, Rue de Scoriton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.452932, + 49.274509 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PDATGNHU3DP", + "ref": "DATGNHU3DP", + "name": "Fontaine-Henry, Rue du Régiment de la Chaudière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.276981, + 49.124573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBKLEA4YHK3", + "ref": "BKLEA4YHK3", + "name": "Glos, Rue d'Orbec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.104626, + 48.823738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVFSQFDC7FS", + "ref": "VFSQFDC7FS", + "name": "Noues de Sienne, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.471729, + 49.199406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBKNQO1ST1J", + "ref": "BKNQO1ST1J", + "name": "Rots, Route de Caen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.259154, + 49.23476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGHMUTKEBFR", + "ref": "GHMUTKEBFR", + "name": "Ranville, Rue de la Vallée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.457769, + 49.142525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQADLCK0CXV", + "ref": "QADLCK0CXV", + "name": "Fontaine-Étoupefour, Impasse du Stade Jules Quesnel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.476986, + 49.205502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVRHCX96IT0", + "ref": "VRHCX96IT0", + "name": "Rots, Rue Haute Bonny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30163, + 49.2966 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWNPDHQMXEF", + "ref": "WNPDHQMXEF", + "name": "Hermanville-sur-Mer, Avenue Madame Coty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.288273, + 49.149944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PNZAMOLTFQS", + "ref": "NZAMOLTFQS", + "name": "Grentheville, Rue Urbain Cardon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.342878, + 49.213123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVK9H0DVFDH", + "ref": "VK9H0DVFDH", + "name": "Hérouville-Saint-Clair, Avenue de Garbsen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.457717, + 49.334377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRTTMEX22VQ", + "ref": "RTTMEX22VQ", + "name": "Courseulles-sur-Mer, Place du Six Juin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.840685, + 49.359657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PREGMVHBLYO", + "ref": "REGMVHBLYO", + "name": "Colleville-sur-Mer, Cavey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.283343, + 49.292938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PH1P1PYTVJZ", + "ref": "H1P1PYTVJZ", + "name": "Colleville-Montgomery, Rue du Commandant Kieffer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.190402, + 49.23114 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PKTAWLU4IZC", + "ref": "KTAWLU4IZC", + "name": "Bavent, Rue de la Petite Justice", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.439307, + 49.08564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PK9DQ5BOGXT", + "ref": "K9DQ5BOGXT", + "name": "Amayé-sur-Orne, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.138757, + 49.402374 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PUEPCJ1ONBV", + "ref": "UEPCJ1ONBV", + "name": "Cricquebœuf, D513", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130294, + 49.381866 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PIHJ5AEHHQC", + "ref": "IHJ5AEHHQC", + "name": "Cricquebœuf, Centre hospitalier, 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.263063, + 49.192703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWOGY4YK72D", + "ref": "WOGY4YK72D", + "name": "Cuverville, Rue de Sannerville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.101527, + 49.121693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PIGM47RQUIV", + "ref": "IGM47RQUIV", + "name": "Mézidon Vallée d'Auge, D613", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.834075, + 49.182762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCIQQYCDPTL", + "ref": "CIQQYCDPTL", + "name": "Balleroy-sur-Drôme, Rue du Sapin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.633224, + 49.021641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRQ8FFLKBGH", + "ref": "RQ8FFLKBGH", + "name": "Les Monts d'Aunay, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706692, + 49.270863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJLGGHEVQB8", + "ref": "JLGGHEVQB8", + "name": "Bayeux, Boulevard Maréchal Leclerc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.165716, + 49.127666 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJ69U6QU8AD", + "ref": "J69U6QU8AD", + "name": "Argences, Rue Gueritot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48176, + 48.917553 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVIVCM51QGG", + "ref": "VIVCM51QGG", + "name": "Clécy, Rue Arsène Delavigne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.059013, + 49.252686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRM3XAKQMTG", + "ref": "RM3XAKQMTG", + "name": "Annebault, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.029128, + 49.306469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGDUIKKNQ0H", + "ref": "GDUIKKNQ0H", + "name": "Auberville, D513", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.623846, + 49.338478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTL6QWRNSBJ", + "ref": "TL6QWRNSBJ", + "name": "Arromanches-les-Bains, Rue d'Instow", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30948, + 49.18362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PAVHMBVDDEL", + "ref": "AVHMBVDDEL", + "name": "Colombelles, Rue de la Coopérative", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.296286, + 49.204266 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMNJRPSZUVR", + "ref": "MNJRPSZUVR", + "name": "Colombelles, Place Francois Mitterand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.553656, + 48.850952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PIS3DWADVWS", + "ref": "IS3DWADVWS", + "name": "Condé-en-Normandie, Rue des Prés Guillets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.308223, + 49.18866 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PXZV5YXNZQK", + "ref": "XZV5YXNZQK", + "name": "Colombelles, Rue Irène Joliot-Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424286, + 49.085377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PDZWIKE3NEN", + "ref": "DZWIKE3NEN", + "name": "Laize-Clinchamps, D41", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12437493, + 49.29202059 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLLIU0JLHQ2NV4U", + "ref": "LLIU0JLHQ2NV4U", + "name": "Cabourg, 1 Avenue de la Brèche Buhot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12437493, + 49.29202059 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLLIU0JLHQ2NV4U", + "ref": "LLIU0JLHQ2NV4U", + "name": "Cabourg, 1 Avenue de la Brèche Buhot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624846, + 49.076407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTRYMDJ3CBV", + "ref": "TRYMDJ3CBV", + "name": "Sainte-Honorine-du-Fay, Rue du Tour de Ville", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12437493, + 49.29202059 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLLIU0JLHQ2NV4U", + "ref": "LLIU0JLHQ2NV4U", + "name": "Cabourg, 1 Avenue de la Brèche Buhot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73394, + 48.5073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBCLQK08V8L", + "ref": "BCLQK08V8L", + "name": "Saint-Brieuc, Hamon Automobiles", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73394, + 48.5073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBCLQK08V8L", + "ref": "BCLQK08V8L", + "name": "Saint-Brieuc, Hamon Automobiles", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83054, + 46.7974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZRU0KKOAL", + "ref": "KZRU0KKOAL", + "name": "Châtenoy-le-Royal, Mercier SAS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83054, + 46.7974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZRU0KKOAL", + "ref": "KZRU0KKOAL", + "name": "Châtenoy-le-Royal, Mercier SAS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83054, + 46.7974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZRU0KKOAL", + "ref": "KZRU0KKOAL", + "name": "Châtenoy-le-Royal, Mercier SAS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83054, + 46.7974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZRU0KKOAL", + "ref": "KZRU0KKOAL", + "name": "Châtenoy-le-Royal, Mercier SAS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.3032, + 47.9133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUSPBSW", + "ref": "USPBSW", + "name": "Merxheim, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.3032, + 47.9133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUSPBSW", + "ref": "USPBSW", + "name": "Merxheim, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.81077, + 43.683611 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJXHEZ5LVEE", + "ref": "JXHEZ5LVEE", + "name": "Saint-Gély-du-Fesc, Renault", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.81077, + 43.683611 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJXHEZ5LVEE", + "ref": "JXHEZ5LVEE", + "name": "Saint-Gély-du-Fesc, Renault", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0971813, + 45.60512863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKFIO5AUOI5", + "ref": "KFIO5AUOI5", + "name": "Savigneux, Michel Vacheron Automobiles", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.99793, + 49.575503 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDJ0CFESMH8", + "ref": "DJ0CFESMH8", + "name": "Noyons, Rue du Moulin d'Andeux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.72717042, + 46.69645546 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKHCDWYRQK", + "ref": "YKHCDWYRQK", + "name": "Mirebel, Parking rue du Visenay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.72717042, + 46.69645546 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKHCDWYRQK", + "ref": "YKHCDWYRQK", + "name": "Mirebel, Parking rue du Visenay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13324, + 48.3018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRYXKLF", + "ref": "RYXKLF", + "name": "Mirecourt, Rue du Bailliage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13324, + 48.3018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRYXKLF", + "ref": "RYXKLF", + "name": "Mirecourt, Rue du Bailliage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.516991, + 49.343346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVAT5RXQZXS", + "ref": "VAT5RXQZXS", + "name": "Ver-sur-Mer, Route d'Asnelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.854415, + 48.840118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PS3XSSU87WY", + "ref": "S3XSSU87WY", + "name": "Vire Normandie, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624846, + 49.175013 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJZIMSLSNZI", + "ref": "JZIMSLSNZI", + "name": "Tilly-sur-Seules, Place de la Mairie", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73394, + 48.5073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBCLQK08V8L", + "ref": "BCLQK08V8L", + "name": "Saint-Brieuc, Hamon Automobiles", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73394, + 48.5073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBCLQK08V8L", + "ref": "BCLQK08V8L", + "name": "Saint-Brieuc, Hamon Automobiles", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.304622, + 45.574515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNHOGL06J48", + "ref": "NHOGL06J48", + "name": "Dauphiné Poids Lourds Mercedes-Benz", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90698, + 48.9568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJJPPHE", + "ref": "JJPPHE", + "name": "Meaux Hôtel B-B Victoire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.716425, + 50.471483 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIZHQAZZMW0", + "ref": "IZHQAZZMW0", + "name": "Mazingarbe, Place Roger Salengro", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.716425, + 50.471483 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIZHQAZZMW0", + "ref": "IZHQAZZMW0", + "name": "Mazingarbe, Place Roger Salengro", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.13123, + 43.6624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCREOX7XV1T", + "ref": "CREOX7XV1T", + "name": "Cagnes-sur-Mer, Mc Donald's", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.13123, + 43.6624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCREOX7XV1T", + "ref": "CREOX7XV1T", + "name": "Cagnes-sur-Mer, Mc Donald's", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.552983, + 46.669091 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQWU01HIDPC", + "ref": "QWU01HIDPC", + "name": "McDonald's Lons-le-Saunier, Boulevard Gambetta", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.552983, + 46.669091 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQWU01HIDPC", + "ref": "QWU01HIDPC", + "name": "McDonald's Lons-le-Saunier, Boulevard Gambetta", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.552983, + 46.669091 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQWU01HIDPC", + "ref": "QWU01HIDPC", + "name": "McDonald's Lons-le-Saunier, Boulevard Gambetta", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.552983, + 46.669091 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQWU01HIDPC", + "ref": "QWU01HIDPC", + "name": "McDonald's Lons-le-Saunier, Boulevard Gambetta", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90698, + 48.9568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJJPPHE", + "ref": "JJPPHE", + "name": "Meaux Hôtel B-B Victoire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.304622, + 45.574515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNHOGL06J48", + "ref": "NHOGL06J48", + "name": "Dauphiné Poids Lourds Mercedes-Benz", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.66033, + 48.5396 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMELUNDOUMER", + "ref": "Melundoumer", + "name": "Melun, Paul Doumer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65415, + 48.5265 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMELUNERMI", + "ref": "Melunermi", + "name": "Melun, Ermitage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65415, + 48.5265 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMELUNERMI", + "ref": "Melunermi", + "name": "Melun, Ermitage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.66033, + 48.5396 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMELUNDOUMER", + "ref": "Melundoumer", + "name": "Melun, Paul Doumer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.139877, + 48.309631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJMHQN8S1SRHJ", + "ref": "LLJMHQN8S1SRHJ", + "name": "Mirecourt, Menuiserie Olry", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.139877, + 48.309631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJMHQN8S1SRHJ", + "ref": "LLJMHQN8S1SRHJ", + "name": "Mirecourt, Menuiserie Olry", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.139877, + 48.309631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJMHQN8S1SRHJ", + "ref": "LLJMHQN8S1SRHJ", + "name": "Mirecourt, Menuiserie Olry", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.304622, + 45.574515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNHOGL06J48", + "ref": "NHOGL06J48", + "name": "Dauphiné Poids Lourds Mercedes-Benz", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624846, + 49.076407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTRYMDJ3CBV", + "ref": "TRYMDJ3CBV", + "name": "Sainte-Honorine-du-Fay, Rue du Tour de Ville", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624846, + 49.076407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTRYMDJ3CBV", + "ref": "TRYMDJ3CBV", + "name": "Sainte-Honorine-du-Fay, Rue du Tour de Ville", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.672848, + 48.853397 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWRQX6K3RY5", + "ref": "WRQX6K3RY5", + "name": "Valdallière, Rue Joseph Requeut 46", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-03-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05713, + 49.35398 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLMAJAU9VM3", + "ref": "LMAJAU9VM3", + "name": "Tourgeville, rue des terrasses", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707928, + 49.283667 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEP02VR6FM7", + "ref": "EP02VR6FM7", + "name": "Bayeux, Complexe EINDHOVEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-01", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.651174, + 49.080152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCPFJ1PSP4H", + "ref": "CPFJ1PSP4H", + "name": "Villers-Bocage, Rue Richard Lenoir", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197402, + 49.287834 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJX4EPALWZ9", + "ref": "JX4EPALWZ9", + "name": "Pont-l'Évêque, Rue Georges Clemenceau 42", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707928, + 49.283667 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEP02VR6FM7", + "ref": "EP02VR6FM7", + "name": "Bayeux, Complexe EINDHOVEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42273, + 49.329438 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PC0I5HNSCPF", + "ref": "C0I5HNSCPF", + "name": "Bernières Sur Mer, Rue Montauban", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83958454, + 49.20576297 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJXVJI1COJF", + "ref": "JXVJI1COJF", + "name": "Vaubadon, route de Saint-Lô", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83958454, + 49.20576297 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJXVJI1COJF", + "ref": "JXVJI1COJF", + "name": "Vaubadon, route de Saint-Lô", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42273, + 49.329438 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PC0I5HNSCPF", + "ref": "C0I5HNSCPF", + "name": "Bernières Sur Mer, Rue Montauban", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11542093, + 49.28792082 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PFVD33KIR4U", + "ref": "FVD33KIR4U", + "name": "Cabourg, Parking Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11542093, + 49.28792082 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PFVD33KIR4U", + "ref": "FVD33KIR4U", + "name": "Cabourg, Parking Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11542093, + 49.28792082 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PFVD33KIR4U", + "ref": "FVD33KIR4U", + "name": "Cabourg, Parking Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05713, + 49.35398 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLMAJAU9VM3", + "ref": "LMAJAU9VM3", + "name": "Tourgeville, rue des terrasses", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05713, + 49.35398 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLMAJAU9VM3", + "ref": "LMAJAU9VM3", + "name": "Tourgeville, rue des terrasses", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303376, + 49.171944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJIQBOVFEMZ", + "ref": "JIQBOVFEMZ", + "name": "Mondeville, Route de Rouen", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12437493, + 49.29202059 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLLIU0JLHQ2NV4U", + "ref": "LLIU0JLHQ2NV4U", + "name": "Cabourg, 1 Avenue de la Brèche Buhot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.114171, + 49.292559 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLLIU0VC43UH3BJ", + "ref": "LLIU0VC43UH3BJ", + "name": "Cabourg, Parking 1 Avenue de la Libération", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42327, + 49.164383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PHKI3EEJ2VG", + "ref": "HKI3EEJ2VG", + "name": "Bretteville-sur-Odon, Avenue du Fresne 1", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83958454, + 49.20576297 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJXVJI1COJF", + "ref": "JXVJI1COJF", + "name": "Vaubadon, route de Saint-Lô", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11679, + 49.287709 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWEXJ08SAGD", + "ref": "WEXJ08SAGD", + "name": "Cabourg, Parking de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11542093, + 49.28792082 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PFVD33KIR4U", + "ref": "FVD33KIR4U", + "name": "Cabourg, Parking Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624846, + 49.175013 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJZIMSLSNZI", + "ref": "JZIMSLSNZI", + "name": "Tilly-sur-Seules, Place de la Mairie", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.901956, + 48.844872 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRHIZSXG2KA", + "ref": "RHIZSXG2KA", + "name": "Vire Normandie, Rue Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303376, + 49.171944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJIQBOVFEMZ", + "ref": "JIQBOVFEMZ", + "name": "Mondeville, Route de Rouen", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08856957, + 49.01214577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PV8ZXCF8KLK", + "ref": "V8ZXCF8KLK", + "name": "Saint-Marguerite-de-Viette, Route de Saint-pierre Sur Dives", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.885866, + 48.837307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PFZE0IT59TV", + "ref": "FZE0IT59TV", + "name": "Vire Normandie, Rue Turpin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42327, + 49.164383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PHKI3EEJ2VG", + "ref": "HKI3EEJ2VG", + "name": "Bretteville-sur-Odon, Avenue du Fresne 1", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624846, + 49.175013 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJZIMSLSNZI", + "ref": "JZIMSLSNZI", + "name": "Tilly-sur-Seules, Place de la Mairie", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.718632, + 49.27946 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBSWUMHG7ZY", + "ref": "BSWUMHG7ZY", + "name": "Bayeux, Rue St Julien", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08856957, + 49.01214577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PV8ZXCF8KLK", + "ref": "V8ZXCF8KLK", + "name": "Saint-Marguerite-de-Viette, Route de Saint-pierre Sur Dives", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08856957, + 49.01214577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PV8ZXCF8KLK", + "ref": "V8ZXCF8KLK", + "name": "Saint-Marguerite-de-Viette, Route de Saint-pierre Sur Dives", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.657508, + 49.07996 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PY6V0AW4AW2", + "ref": "Y6V0AW4AW2", + "name": "Villers-Bocage, Rue des Halles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.718632, + 49.27946 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBSWUMHG7ZY", + "ref": "BSWUMHG7ZY", + "name": "Bayeux, Rue St Julien", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.126629, + 49.399658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLWXGXZ6NVG", + "ref": "LWXGXZ6NVG", + "name": "Villerville, Place du Lavoir 11", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.450656, + 49.1567 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMDE2V8GM3H", + "ref": "MDE2V8GM3H", + "name": "Verson, Rue de Joal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.904563, + 49.374043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PHS5GOHL3FX", + "ref": "HS5GOHL3FX", + "name": "Vierville-sur-Mer, Route de Formigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.888584, + 48.84039 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGLD9JG2RUT", + "ref": "GLD9JG2RUT", + "name": "Vire Normandie, Rue du Cotin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.882365, + 48.849442 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PX76ERWSQBX", + "ref": "X76ERWSQBX", + "name": "Vire Normandie, Rue des Peupliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566371, + 49.290745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGWNCBEVKLC", + "ref": "GWNCBEVKLC", + "name": "Creully sur Seulles, Rue de Bayeux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8849, + 48.84539 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PNUVRR1EADB", + "ref": "NUVRR1EADB", + "name": "Vire Normandie, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11679, + 49.287709 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWEXJ08SAGD", + "ref": "WEXJ08SAGD", + "name": "Cabourg, Parking de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.313085, + 49.286636 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PC8PSNTNXXV", + "ref": "C8PSNTNXXV", + "name": "Hermanville-sur-Mer, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.268632, + 49.014362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PXMBUXALML9", + "ref": "XMBUXALML9", + "name": "Grainville-Langannerie, Rue de Lapford", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303596, + 49.034939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCLLQAPXJGQ", + "ref": "CLLQAPXJGQ", + "name": "Gouvix, Place François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.439307, + 49.08564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PK9DQ5BOGXT", + "ref": "K9DQ5BOGXT", + "name": "Amayé-sur-Orne, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.840685, + 49.359657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PREGMVHBLYO", + "ref": "REGMVHBLYO", + "name": "Colleville-sur-Mer, Cavey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424286, + 49.085377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PDZWIKE3NEN", + "ref": "DZWIKE3NEN", + "name": "Laize-Clinchamps, D41", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.296286, + 49.204266 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMNJRPSZUVR", + "ref": "MNJRPSZUVR", + "name": "Colombelles, Place Francois Mitterand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.283343, + 49.292938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PH1P1PYTVJZ", + "ref": "H1P1PYTVJZ", + "name": "Colleville-Montgomery, Rue du Commandant Kieffer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80973, + 48.929178 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLSL7IGJCKA", + "ref": "LSL7IGJCKA", + "name": "Souleuvre En Bocage, Rue de la Bruyère", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34179, + 49.190582 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PPISAGDEROT", + "ref": "PISAGDEROT", + "name": "Caen, Le Clos Joli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.401482, + 49.175629 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBJGJFYAMMJ", + "ref": "BJGJFYAMMJ", + "name": "Caen, Avenue Enchanteur Merlin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332007, + 49.155018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBENXV427ED", + "ref": "BENXV427ED", + "name": "Cormelles-le-Royal, Rue des Écoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396299, + 49.191658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PKARW5YQ2G0", + "ref": "KARW5YQ2G0", + "name": "Caen, Avenue Président Coty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.116762, + 49.28772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PAGX3GVGGGP", + "ref": "AGX3GVGGGP", + "name": "Cabourg, Avenue de la Mer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.417781, + 49.16581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBJLVQM5TAS", + "ref": "BJLVQM5TAS", + "name": "Bretteville-sur-Odon, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369844, + 49.176125 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBXFKK77EJT", + "ref": "BXFKK77EJT", + "name": "Caen, Avenue Albert Sorel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355928, + 49.180374 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PXLR3DJICQY", + "ref": "XLR3DJICQY", + "name": "Caen, Place de la Résistance 6", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130306, + 49.381893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJVJN0XRMBD", + "ref": "JVJN0XRMBD", + "name": "Cricquebœuf, Centre hospitalier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.538061, + 49.286358 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBCNP9TW96E", + "ref": "BCNP9TW96E", + "name": "Creully sur Seulles, Route de Tierceville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.138757, + 49.402374 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PUEPCJ1ONBV", + "ref": "UEPCJ1ONBV", + "name": "Cricquebœuf, D513", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130294, + 49.381866 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PIHJ5AEHHQC", + "ref": "IHJ5AEHHQC", + "name": "Cricquebœuf, Centre hospitalier, 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.913899, + 48.872356 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PYTDEL15IL4", + "ref": "YTDEL15IL4", + "name": "Vire Normandie, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.856212, + 49.129959 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRFATER8YU3", + "ref": "RFATER8YU3", + "name": "Cormolain, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.553656, + 48.850952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PIS3DWADVWS", + "ref": "IS3DWADVWS", + "name": "Condé-en-Normandie, Rue des Prés Guillets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.212054, + 49.2001 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PPPAT8F1AHP", + "ref": "PPAT8F1AHP", + "name": "Coquainvilliers, Rue du Manoir de Prie 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30948, + 49.18362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PAVHMBVDDEL", + "ref": "AVHMBVDDEL", + "name": "Colombelles, Rue de la Coopérative", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707942, + 49.280796 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PZABVAJT7UQ", + "ref": "ZABVAJT7UQ", + "name": "Bayeux, Rue Montfiquet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.059013, + 49.252686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRM3XAKQMTG", + "ref": "RM3XAKQMTG", + "name": "Annebault, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.406258, + 49.265347 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PAWSCCFXPIZ", + "ref": "AWSCCFXPIZ", + "name": "Colomby-Anguerny, Rue du Bout Maçon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.275651, + 49.24791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PYDK2B0ERXB", + "ref": "YDK2B0ERXB", + "name": "Bénouville, Avenue de la Côte de Nacre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.207299, + 49.124958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTYPWUQ7IGF", + "ref": "TYPWUQ7IGF", + "name": "Bellengreville, Route de Paris 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.418581, + 49.334774 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PFN2ROX2AOD", + "ref": "FN2ROX2AOD", + "name": "Bernières-sur-Mer, Rue Victor Tesnière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.432045, + 49.290691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQNVE1QVN1M", + "ref": "QNVE1QVN1M", + "name": "Bény-sur-Mer, Route de Courseulles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.190402, + 49.23114 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PKTAWLU4IZC", + "ref": "KTAWLU4IZC", + "name": "Bavent, Rue de la Petite Justice", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.834075, + 49.182762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCIQQYCDPTL", + "ref": "CIQQYCDPTL", + "name": "Balleroy-sur-Drôme, Rue du Sapin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706692, + 49.270863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJLGGHEVQB8", + "ref": "JLGGHEVQB8", + "name": "Bayeux, Boulevard Maréchal Leclerc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.308223, + 49.18866 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PXZV5YXNZQK", + "ref": "XZV5YXNZQK", + "name": "Colombelles, Rue Irène Joliot-Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.806385, + 49.090714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PZ7TCFV54RM", + "ref": "Z7TCFV54RM", + "name": "Caumont-sur-Aure, Rue de la Ferière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44147, + 49.185043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PYBCAAXHFBE", + "ref": "YBCAAXHFBE", + "name": "Carpiquet, Avenue Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48176, + 48.917553 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVIVCM51QGG", + "ref": "VIVCM51QGG", + "name": "Clécy, Rue Arsène Delavigne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.007925, + 48.792999 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWDC8V4ORJE", + "ref": "WDC8V4ORJE", + "name": "Noues de Sienne, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.761437, + 49.158428 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWDURE5OIIU", + "ref": "WDURE5OIIU", + "name": "Cahagnolles, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.767352, + 49.066422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PY6SL8CGLG1", + "ref": "Y6SL8CGLG1", + "name": "Cahagnes, D54", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.924642, + 48.889202 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14POIXFQFMHLO", + "ref": "OIXFQFMHLO", + "name": "Campagnolles, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.046794, + 49.149574 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJ2CAXWCJQ2", + "ref": "J2CAXWCJQ2", + "name": "Cambremer, Avenue des Tilleuls", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.457717, + 49.334377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRTTMEX22VQ", + "ref": "RTTMEX22VQ", + "name": "Courseulles-sur-Mer, Place du Six Juin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.045529, + 48.972824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJ9E72TSRLI", + "ref": "J9E72TSRLI", + "name": "Courcy, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.047522, + 49.187656 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PSYA3HIFJSJ", + "ref": "SYA3HIFJSJ", + "name": "Beuvron-en-Auge, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298162, + 49.228291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PD9MFWXE3BX", + "ref": "D9MFWXE3BX", + "name": "Blainville-sur-Orne, Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.196851, + 48.896561 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGXNIEP4LJS", + "ref": "GXNIEP4LJS", + "name": "Falaise, Rue du Champ Saint-Michel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51847393, + 48.86885129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PO5K3TST9TA", + "ref": "O5K3TST9TA", + "name": "Saint-Denis-de-Méré, D562", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.027659, + 49.33881 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBM0HFP9CGY", + "ref": "BM0HFP9CGY", + "name": "Blonville-sur-Mer, Rue Pierre Jacquot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00949802, + 49.141176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCBX7KUYBYW", + "ref": "CBX7KUYBYW", + "name": "Notre-Dame d'Estrees Corbon, Route de Bonnebosq", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00949802, + 49.141176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCBX7KUYBYW", + "ref": "CBX7KUYBYW", + "name": "Notre-Dame d'Estrees Corbon, Route de Bonnebosq", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303067, + 49.226357 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PNU7TML0PLL", + "ref": "NU7TML0PLL", + "name": "Blainville-sur-Orne, Rue Maurice Hébert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.327253, + 49.24025 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVUHVSPUVEE", + "ref": "VUHVSPUVEE", + "name": "Biéville-Beuville, Place de Margetshochheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.273392, + 49.245373 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJDWZ4GKGLJ", + "ref": "JDWZ4GKGLJ", + "name": "Blangy-le-Château, Chemin du Pont Vert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.042063, + 49.232769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWZVO2GVYMJ", + "ref": "WZVO2GVYMJ", + "name": "Dozulé, Place Jean Vasnier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80973, + 48.929178 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLSL7IGJCKA", + "ref": "LSL7IGJCKA", + "name": "Souleuvre En Bocage, Rue de la Bruyère", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.045078, + 49.230087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTJTE9E9IPY", + "ref": "TJTE9E9IPY", + "name": "Dozulé, Place du champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37422, + 49.220695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGQX8TOZGDZ", + "ref": "GQX8TOZGDZ", + "name": "Épron, Rue Éole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.677874, + 49.220016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLHXITWLNL8", + "ref": "LHXITWLNL8", + "name": "Ellon, Haut d'Ellon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.266243, + 49.177143 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PFH2Y5F6VYX", + "ref": "FH2Y5F6VYX", + "name": "Démouville, Rue du Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.263063, + 49.192703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWOGY4YK72D", + "ref": "WOGY4YK72D", + "name": "Cuverville, Rue de Sannerville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.376339, + 49.29459 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PN46VHJDQAK", + "ref": "N46VHJDQAK", + "name": "Douvres-la-Délivrande, Résidence les Portes de Douvres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.098968, + 49.287991 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PHUK16Y2VIO", + "ref": "HUK16Y2VIO", + "name": "Dives-sur-Mer, Boulevard Maurice Thorez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.207155, + 48.908218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PE7G17KGQS8", + "ref": "E7G17KGQS8", + "name": "Falaise, Route de Caen", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05630619, + 49.25483875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PB5J7TXK8V7", + "ref": "B5J7TXK8V7", + "name": "Annebault, Route de Lisieux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.200854, + 48.895374 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PFJDPVYD3VM", + "ref": "FJDPVYD3VM", + "name": "Falaise, Rue Trinité 24", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.418581, + 49.334774 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PFN2ROX2AOD", + "ref": "FN2ROX2AOD", + "name": "Bernières-sur-Mer, Rue Victor Tesnière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.326488, + 49.044224 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PT6CP8IZJCW", + "ref": "T6CP8IZJCW", + "name": "Bretteville-sur-Laize, Rue des Canadiens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303067, + 49.226357 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PNU7TML0PLL", + "ref": "NU7TML0PLL", + "name": "Blainville-sur-Orne, Rue Maurice Hébert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.327253, + 49.24025 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVUHVSPUVEE", + "ref": "VUHVSPUVEE", + "name": "Biéville-Beuville, Place de Margetshochheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.207299, + 49.124958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTYPWUQ7IGF", + "ref": "TYPWUQ7IGF", + "name": "Bellengreville, Route de Paris 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707942, + 49.280796 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PZABVAJT7UQ", + "ref": "ZABVAJT7UQ", + "name": "Bayeux, Rue Montfiquet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.432045, + 49.290691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQNVE1QVN1M", + "ref": "QNVE1QVN1M", + "name": "Bény-sur-Mer, Route de Courseulles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.275651, + 49.24791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PYDK2B0ERXB", + "ref": "YDK2B0ERXB", + "name": "Bénouville, Avenue de la Côte de Nacre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.514652, + 49.212273 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PW3FDKK3Y4Y", + "ref": "W3FDKK3Y4Y", + "name": "Thue et Mue, Place des Canadiens 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339124, + 49.27467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PPGOVR7LE8Z", + "ref": "PGOVR7LE8Z", + "name": "Bonneville-la-Louvet, Rue Henri Louvet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512477, + 49.203705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGI08L1LAZG", + "ref": "GI08L1LAZG", + "name": "Thue et Mue, Rue de la Gare 13", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.220548, + 49.251003 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJCXRAXISUD", + "ref": "JCXRAXISUD", + "name": "Fierville-les-Parcs, Route de la vallée de la Touques", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.273392, + 49.245373 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJDWZ4GKGLJ", + "ref": "JDWZ4GKGLJ", + "name": "Blangy-le-Château, Chemin du Pont Vert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298162, + 49.228291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PD9MFWXE3BX", + "ref": "D9MFWXE3BX", + "name": "Blainville-sur-Orne, Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.079897, + 49.204884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMSSZCNYGB6", + "ref": "MSSZCNYGB6", + "name": "Bonnebosq, Avenue du Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.027659, + 49.33881 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBM0HFP9CGY", + "ref": "BM0HFP9CGY", + "name": "Blonville-sur-Mer, Rue Pierre Jacquot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.101527, + 49.121693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PIGM47RQUIV", + "ref": "IGM47RQUIV", + "name": "Mézidon Vallée d'Auge, D613", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.403748, + 49.113762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PAPLE3YWA6J", + "ref": "APLE3YWA6J", + "name": "Feuguerolles-Bully, Rue Henri Rosel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51847393, + 48.86885129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PO5K3TST9TA", + "ref": "O5K3TST9TA", + "name": "Saint-Denis-de-Méré, D562", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.047522, + 49.187656 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PSYA3HIFJSJ", + "ref": "SYA3HIFJSJ", + "name": "Beuvron-en-Auge, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.151468, + 49.10059 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQQ9ULMFY9S", + "ref": "QQ9ULMFY9S", + "name": "Valambray, Rue du Pressoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.029128, + 49.306469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGDUIKKNQ0H", + "ref": "GDUIKKNQ0H", + "name": "Auberville, D513", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.041252, + 49.387611 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PC7MVLEKOXT", + "ref": "C7MVLEKOXT", + "name": "Grandcamp-Maisy, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.633224, + 49.021641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRQ8FFLKBGH", + "ref": "RQ8FFLKBGH", + "name": "Les Monts d'Aunay, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.545198, + 49.195198 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLJYDD69MZG", + "ref": "LJYDD69MZG", + "name": "Thue et Mue, Rue du 11 Juin 1944", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29001, + 49.108196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGH4NB90TR9", + "ref": "GH4NB90TR9", + "name": "Le Mesnil-Guillaume, Route d'Orbec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.830717, + 48.965939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTKVDATEIGS", + "ref": "TKVDATEIGS", + "name": "Souleuvre en Bocage, Le bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.869728, + 49.242004 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCTHD3M2P9Z", + "ref": "CTHD3M2P9Z", + "name": "Le Molay-Littry, Le Haut Varet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37422, + 49.220695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGQX8TOZGDZ", + "ref": "GQX8TOZGDZ", + "name": "Épron, Rue Éole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.677874, + 49.220016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLHXITWLNL8", + "ref": "LHXITWLNL8", + "name": "Ellon, Haut d'Ellon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.206739, + 49.391857 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PSHNTRB88GR", + "ref": "SHNTRB88GR", + "name": "Équemauville, Place de la Paix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.203363, + 49.383171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PA3XTEFNVP7", + "ref": "A3XTEFNVP7", + "name": "Équemauville, Chemin de la Plane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.376339, + 49.29459 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PN46VHJDQAK", + "ref": "N46VHJDQAK", + "name": "Douvres-la-Délivrande, Résidence les Portes de Douvres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.098968, + 49.287991 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PHUK16Y2VIO", + "ref": "HUK16Y2VIO", + "name": "Dives-sur-Mer, Boulevard Maurice Thorez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.042063, + 49.232769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PWZVO2GVYMJ", + "ref": "WZVO2GVYMJ", + "name": "Dozulé, Place Jean Vasnier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-04-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.045078, + 49.230087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTJTE9E9IPY", + "ref": "TJTE9E9IPY", + "name": "Dozulé, Place du champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.349523, + 49.137749 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLJ98RD5Z2B", + "ref": "LJ98RD5Z2B", + "name": "Ifs, Esplanade François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.350859, + 49.150547 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PG7U2LCCD4Y", + "ref": "G7U2LCCD4Y", + "name": "Ifs, Avenue Jean Vilar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.101562, + 49.320122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PNBKCJUXTTW", + "ref": "NBKCJUXTTW", + "name": "Isigny-sur-Mer, Quai Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355094, + 49.140018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PNWNXQPH8TD", + "ref": "NWNXQPH8TD", + "name": "Ifs, Rue des Pyrénées", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.237649, + 49.418694 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PZUGT4ZAI25", + "ref": "ZUGT4ZAI25", + "name": "Honfleur, Rue Vannier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345371, + 49.2024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEO8WQHNMPB", + "ref": "EO8WQHNMPB", + "name": "Hérouville-Saint-Clair, Rue Guyon de Guercheville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.316764, + 49.127815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCSMXC6RE5P", + "ref": "CSMXC6RE5P", + "name": "Castine-en-Plaine, Rue des Tilleuls", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PYGKZQ5NRRM", + "ref": "YGKZQ5NRRM", + "name": "Lisieux, Rue des Blanches Portes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.266243, + 49.177143 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PFH2Y5F6VYX", + "ref": "FH2Y5F6VYX", + "name": "Démouville, Rue du Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.789644, + 49.219543 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRLM6CEWDCK", + "ref": "RLM6CEWDCK", + "name": "Le Tronquay, La Tuilerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.009537, + 49.14109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQETEMVQZCG", + "ref": "QETEMVQZCG", + "name": "Notre-Dame-d'Estrées-Corbon, Carrefour Saint-Jean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.526418, + 49.135658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PX48FPHUJQU", + "ref": "X48FPHUJQU", + "name": "Grainville-sur-Odon, Rue de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.224748, + 49.182022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14POW2ZNJNSGE", + "ref": "OW2ZNJNSGE", + "name": "Ouilly-le-Vicomte, Route de Deauville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.405064, + 49.020981 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQ7PXNU5TGT", + "ref": "Q7PXNU5TGT", + "name": "Orbec, Place Maréchal Foch 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35496471, + 49.32043809 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PUX6T6V86EB", + "ref": "UX6T6V86EB", + "name": "Luc-sur-Mer, Rue Guynemer", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.257186, + 49.277668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PSWIRJOHWIU", + "ref": "SWIRJOHWIU", + "name": "Ouistreham, Avenue du Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.242383, + 49.198738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PNJAYNI3IS5", + "ref": "NJAYNI3IS5", + "name": "Norolles, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.357187, + 49.19585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PSRFJICA7UF", + "ref": "SRFJICA7UF", + "name": "Moyaux, Rue Gustave Flaubert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567159, + 49.121574 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PX76NRT9OK4", + "ref": "X76NRT9OK4", + "name": "Val d'Arry, Place de l'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.186472, + 49.285782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PVRSXXFSM8G", + "ref": "VRSXXFSM8G", + "name": "Pont-l'Évêque, Place du Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.314508, + 49.302155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQRFJYJHILI", + "ref": "QRFJYJHILI", + "name": "Lion-sur-Mer, Rue du 18 juin 1940", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.411662, + 48.872952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEKPWNBEKEL", + "ref": "EKPWNBEKEL", + "name": "Pont-d'Ouilly, Rue du Stade René Vallée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.242004, + 48.96925 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRH6ES7OMSP", + "ref": "RH6ES7OMSP", + "name": "Potigny, Rue du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753076, + 49.34211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PES3CPUZTN9", + "ref": "ES3CPUZTN9", + "name": "Port-en-Bessin-Huppain, Avenue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35496471, + 49.32043809 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PUX6T6V86EB", + "ref": "UX6T6V86EB", + "name": "Luc-sur-Mer, Rue Guynemer", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35496471, + 49.32043809 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PUX6T6V86EB", + "ref": "UX6T6V86EB", + "name": "Luc-sur-Mer, Rue Guynemer", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.250781, + 49.278812 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRKAVXVKURO", + "ref": "RKAVXVKURO", + "name": "Ouistreham, Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.258216, + 49.288376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PULAU7GGFK3", + "ref": "ULAU7GGFK3", + "name": "Ouistreham, Place Alfred Thomas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332626, + 49.202087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PG1IUADBW5Q", + "ref": "G1IUADBW5Q", + "name": "Hérouville-Saint-Clair, Place du Café des Images", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07457, + 49.30206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PAU5QM7JWO3", + "ref": "AU5QM7JWO3", + "name": "Houlgate, Boulevard de Saint-Philbert 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.419354, + 49.024189 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PH9D6ILYVTS", + "ref": "H9D6ILYVTS", + "name": "La Vespière-Friardel, Beausoleil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.269149, + 49.408573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PE4PPW00CLV", + "ref": "E4PPW00CLV", + "name": "La Rivière-Saint-Sauveur, Rue du Port 44", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.401482, + 49.175629 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBJGJFYAMMJ", + "ref": "BJGJFYAMMJ", + "name": "Caen, Avenue Enchanteur Merlin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339124, + 49.27467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PPGOVR7LE8Z", + "ref": "PGOVR7LE8Z", + "name": "Bonneville-la-Louvet, Rue Henri Louvet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.326488, + 49.044224 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PT6CP8IZJCW", + "ref": "T6CP8IZJCW", + "name": "Bretteville-sur-Laize, Rue des Canadiens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512477, + 49.203705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PGI08L1LAZG", + "ref": "GI08L1LAZG", + "name": "Thue et Mue, Rue de la Gare 13", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05630619, + 49.25483875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PB5J7TXK8V7", + "ref": "B5J7TXK8V7", + "name": "Annebault, Route de Lisieux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80973, + 48.929178 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PLSL7IGJCKA", + "ref": "LSL7IGJCKA", + "name": "Souleuvre En Bocage, Rue de la Bruyère", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.079897, + 49.204884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMSSZCNYGB6", + "ref": "MSSZCNYGB6", + "name": "Bonnebosq, Avenue du Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05630619, + 49.25483875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PB5J7TXK8V7", + "ref": "B5J7TXK8V7", + "name": "Annebault, Route de Lisieux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34179, + 49.190582 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PPISAGDEROT", + "ref": "PISAGDEROT", + "name": "Caen, Le Clos Joli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.346506, + 49.183704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PEYSLWKWYZR", + "ref": "EYSLWKWYZR", + "name": "Caen, Avenue Pierre Berthelot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34267, + 49.160675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PG4DK6RTQ3D", + "ref": "G4DK6RTQ3D", + "name": "Caen, Place de la Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396299, + 49.191658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PKARW5YQ2G0", + "ref": "KARW5YQ2G0", + "name": "Caen, Avenue Président Coty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.116762, + 49.28772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PAGX3GVGGGP", + "ref": "AGX3GVGGGP", + "name": "Cabourg, Avenue de la Mer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.417781, + 49.16581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBJLVQM5TAS", + "ref": "BJLVQM5TAS", + "name": "Bretteville-sur-Odon, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369844, + 49.176125 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PBXFKK77EJT", + "ref": "BXFKK77EJT", + "name": "Caen, Avenue Albert Sorel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355928, + 49.180374 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PXLR3DJICQY", + "ref": "XLR3DJICQY", + "name": "Caen, Place de la Résistance 6", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.254735, + 49.146415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMEUKZBWL9R", + "ref": "MEUKZBWL9R", + "name": "Cagny, Allée Saint Germain 33", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.623846, + 49.338478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTL6QWRNSBJ", + "ref": "TL6QWRNSBJ", + "name": "Arromanches-les-Bains, Rue d'Instow", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.165716, + 49.127666 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJ69U6QU8AD", + "ref": "J69U6QU8AD", + "name": "Argences, Rue Gueritot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.514652, + 49.212273 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PW3FDKK3Y4Y", + "ref": "W3FDKK3Y4Y", + "name": "Thue et Mue, Place des Canadiens 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.366633, + 49.18668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PCKEU2AXBPX", + "ref": "CKEU2AXBPX", + "name": "Caen, Rue Chanoine Xavier de Saint Pol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.84048, + 48.937435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PQM29QD00GP", + "ref": "QM29QD00GP", + "name": "Souleuvre en Bocage, Rue du Chanoine Cochard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365959, + 49.180958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PJERHB0BEAB", + "ref": "JERHB0BEAB", + "name": "Caen, Place du parvis Notre Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369945, + 49.325378 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PL7FSMQ3K4U", + "ref": "L7FSMQ3K4U", + "name": "Langrune-sur-Mer, Rue du Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.739149, + 49.02071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PKWSB5QN7ZK", + "ref": "KWSB5QN7ZK", + "name": "Dialan sur Chaîne, Impasse de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.079796, + 48.975983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PMQRZ3VP5TF", + "ref": "MQRZ3VP5TF", + "name": "Jort, Rue des Ponts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.883248, + 48.893047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14POIGASENV23", + "ref": "OIGASENV23", + "name": "Souleuvre en Bocage, Place de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753121, + 49.002502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PS0QPPXPGJG", + "ref": "S0QPPXPGJG", + "name": "Dialan sur Chaîne, La Butte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359741, + 49.203658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PATTXYEMZSE", + "ref": "ATTXYEMZSE", + "name": "Caen, Rue Professeur Joseph Rousselot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.360565, + 49.161114 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PKPSZKEMHNF", + "ref": "KPSZKEMHNF", + "name": "Caen, Avenue du Père Charles de Foucauld", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.347497, + 49.197529 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PL9PDURSKHV", + "ref": "L9PDURSKHV", + "name": "Caen, Place Champlain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.402715, + 49.182137 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PNPPA9S0IZH", + "ref": "NPPA9S0IZH", + "name": "Caen, Boulevard Georges Pompidou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355559, + 49.184055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PANOW48R3FC", + "ref": "ANOW48R3FC", + "name": "Caen, Quai de la Londe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.346611, + 49.181694 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PR8RWH8HXZS", + "ref": "R8RWH8HXZS", + "name": "Caen, Cours Caffarelli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380138, + 49.199852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PA1BDJHEJBW", + "ref": "A1BDJHEJBW", + "name": "Caen, Esplanade Brillaud de Laujardière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.364503, + 49.184155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PSAKCOZYZCV", + "ref": "SAKCOZYZCV", + "name": "Caen, Rue Gémare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365122, + 49.199177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PRJ5B3FAJRM", + "ref": "RJ5B3FAJRM", + "name": "Caen, Rue de la Défense Passive", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.348103, + 49.178352 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PFLQCEIECNA", + "ref": "FLQCEIECNA", + "name": "Caen, Rue Rosa Parks", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.360357, + 49.187054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PTTGYEWCD4D", + "ref": "TTGYEWCD4D", + "name": "Caen, Rue du Vaugueux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380302, + 49.204082 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PDELR9H5LME", + "ref": "DELR9H5LME", + "name": "Caen, Rue des Acadiens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.371259, + 49.180359 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS14PXOUSTRWIIJ", + "ref": "XOUSTRWIIJ", + "name": "Caen, Place Guillouard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98956, + 47.6665 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFLENKG", + "ref": "FLENKG", + "name": "Auray, Rue du Four Mollet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36581, + 47.7489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYVPZUN", + "ref": "YVPZUN", + "name": "Lorient, Parking Hôtel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9025136, + 47.9053752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PFGU7G4ZMF1", + "ref": "FGU7G4ZMF1", + "name": "Orléans, 84 rue Bannier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4684, + -21.3289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTVTHJ", + "ref": "BTVTHJ", + "name": "Saint-Pierre, Norauto", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNX7DVKRZO", + "ref": "LNX7DVKRZO", + "name": "Saint-Denis, Groupe Neubauer", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNX7DVKRZO", + "ref": "LNX7DVKRZO", + "name": "Saint-Denis, Groupe Neubauer", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNX7DVKRZO", + "ref": "LNX7DVKRZO", + "name": "Saint-Denis, Groupe Neubauer", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNX7DVKRZO", + "ref": "LNX7DVKRZO", + "name": "Saint-Denis, Groupe Neubauer", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNX7DVKRZO", + "ref": "LNX7DVKRZO", + "name": "Saint-Denis, Groupe Neubauer", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNX7DVKRZO", + "ref": "LNX7DVKRZO", + "name": "Saint-Denis, Groupe Neubauer", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNX7DVKRZO", + "ref": "LNX7DVKRZO", + "name": "Saint-Denis, Groupe Neubauer", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNX7DVKRZO", + "ref": "LNX7DVKRZO", + "name": "Saint-Denis, Groupe Neubauer", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNX7DVKRZO", + "ref": "LNX7DVKRZO", + "name": "Saint-Denis, Groupe Neubauer", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.43574225, + 48.21888515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKBPNNPSUZB", + "ref": "KBPNNPSUZB", + "name": "Chavelot, Rue du Pré Doué", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.43574225, + 48.21888515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKBPNNPSUZB", + "ref": "KBPNNPSUZB", + "name": "Chavelot, Rue du Pré Doué", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03216, + 43.77025 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZDFNGFYIU3", + "ref": "ZDFNGFYIU3", + "name": "Gers Distribution, Avenue de Daniate", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03216, + 43.77025 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZDFNGFYIU3", + "ref": "ZDFNGFYIU3", + "name": "Gers Distribution, Avenue de Daniate", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74199, + 47.8454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVVDFEN", + "ref": "VVDFEN", + "name": "Nogent-sur-Vernisson, Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74199, + 47.8454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVVDFEN", + "ref": "VVDFEN", + "name": "Nogent-sur-Vernisson, Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.70402909, + -21.033494 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEWGRIN70CW", + "ref": "EWGRIN70CW", + "name": "Saint-Benoît, Centre commercial Beaulieu", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.70402909, + -21.033494 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEWGRIN70CW", + "ref": "EWGRIN70CW", + "name": "Saint-Benoît, Centre commercial Beaulieu", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4684, + -21.3289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTVTHJ", + "ref": "BTVTHJ", + "name": "Saint-Pierre, Norauto", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4684, + -21.3289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTVTHJ", + "ref": "BTVTHJ", + "name": "Saint-Pierre, Norauto", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNX7DVKRZO", + "ref": "LNX7DVKRZO", + "name": "Saint-Denis, Groupe Neubauer", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94359, + 46.01605 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP7EPOMTVSO", + "ref": "P7EPOMTVSO", + "name": "Musièges, Netto", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94359, + 46.01605 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP7EPOMTVSO", + "ref": "P7EPOMTVSO", + "name": "Musièges, Netto", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5677733, + 45.3928606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWMNJBT", + "ref": "WMNJBT", + "name": "Méribel, Parking Rhodos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5489767, + 45.4430808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDUSXJL", + "ref": "DUSXJL", + "name": "Les Allues, Parking du Villard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.57173, + 45.374466 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPFMCUU", + "ref": "PFMCUU", + "name": "Méribel, Parking Hameau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.56515, + 45.3977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQRBEQB", + "ref": "QRBEQB", + "name": "Méribel, Parking Dou du Pont", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5747122, + 45.3971756 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWWLUVL", + "ref": "WWLUVL", + "name": "Méribel, Rond-Point des pistes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.56515, + 45.3977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQRBEQB", + "ref": "QRBEQB", + "name": "Méribel, Parking Dou du Pont", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.56515, + 45.3977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQRBEQB", + "ref": "QRBEQB", + "name": "Méribel, Parking Dou du Pont", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5747122, + 45.3971756 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWWLUVL", + "ref": "WWLUVL", + "name": "Méribel, Rond-Point des pistes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.56515, + 45.3977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQRBEQB", + "ref": "QRBEQB", + "name": "Méribel, Parking Dou du Pont", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.57173, + 45.374466 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPFMCUU", + "ref": "PFMCUU", + "name": "Méribel, Parking Hameau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.73300206, + 46.11365738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEZIJLLV8J", + "ref": "VEZIJLLV8J", + "name": "Saint-Jean-d'Ardières, Rue Parc Saint Jean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5677733, + 45.3928606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWMNJBT", + "ref": "WMNJBT", + "name": "Méribel, Parking Rhodos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.56515, + 45.3977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQRBEQB", + "ref": "QRBEQB", + "name": "Méribel, Parking Dou du Pont", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.56515, + 45.3977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQRBEQB", + "ref": "QRBEQB", + "name": "Méribel, Parking Dou du Pont", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.56515, + 45.3977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQRBEQB", + "ref": "QRBEQB", + "name": "Méribel, Parking Dou du Pont", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19265547, + 45.96356828 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHQNSJ8DLJY", + "ref": "HQNSJ8DLJY", + "name": "Aubusson, Netto", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19265547, + 45.96356828 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHQNSJ8DLJY", + "ref": "HQNSJ8DLJY", + "name": "Aubusson, Netto", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19265547, + 45.96356828 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHQNSJ8DLJY", + "ref": "HQNSJ8DLJY", + "name": "Aubusson, Netto", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.73300206, + 46.11365738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEZIJLLV8J", + "ref": "VEZIJLLV8J", + "name": "Saint-Jean-d'Ardières, Rue Parc Saint Jean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4684, + -21.3289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTVTHJ", + "ref": "BTVTHJ", + "name": "Saint-Pierre, Norauto", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.80567, + 48.801111 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFPMK6CLAK8", + "ref": "FPMK6CLAK8", + "name": "Haguenau, Norcan Sherpa Mobile Robotics", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71399, + 47.9619 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPDYFKZ", + "ref": "PDYFKZ", + "name": "Radenac, Rue Anne de Bretagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.80567, + 48.801111 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFPMK6CLAK8", + "ref": "FPMK6CLAK8", + "name": "Haguenau, Norcan Sherpa Mobile Robotics", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVZL9GPAYNT", + "ref": "VZL9GPAYNT", + "name": "Trèbes, Chocolaterie Nougalet", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVZL9GPAYNT", + "ref": "VZL9GPAYNT", + "name": "Trèbes, Chocolaterie Nougalet", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVZL9GPAYNT", + "ref": "VZL9GPAYNT", + "name": "Trèbes, Chocolaterie Nougalet", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVZL9GPAYNT", + "ref": "VZL9GPAYNT", + "name": "Trèbes, Chocolaterie Nougalet", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVZL9GPAYNT", + "ref": "VZL9GPAYNT", + "name": "Trèbes, Chocolaterie Nougalet", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVZL9GPAYNT", + "ref": "VZL9GPAYNT", + "name": "Trèbes, Chocolaterie Nougalet", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVZL9GPAYNT", + "ref": "VZL9GPAYNT", + "name": "Trèbes, Chocolaterie Nougalet", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVZL9GPAYNT", + "ref": "VZL9GPAYNT", + "name": "Trèbes, Chocolaterie Nougalet", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVZL9GPAYNT", + "ref": "VZL9GPAYNT", + "name": "Trèbes, Chocolaterie Nougalet", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVZL9GPAYNT", + "ref": "VZL9GPAYNT", + "name": "Trèbes, Chocolaterie Nougalet", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVZL9GPAYNT", + "ref": "VZL9GPAYNT", + "name": "Trèbes, Chocolaterie Nougalet", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.081, + 50.3602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYJYG7SXQC9", + "ref": "YJYG7SXQC9", + "name": "Douai, Renault", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.081, + 50.3602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYJYG7SXQC9", + "ref": "YJYG7SXQC9", + "name": "Douai, Renault", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.081, + 50.3602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYJYG7SXQC9", + "ref": "YJYG7SXQC9", + "name": "Douai, Renault", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.081, + 50.3602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYJYG7SXQC9", + "ref": "YJYG7SXQC9", + "name": "Douai, Renault", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.081, + 50.3602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYJYG7SXQC9", + "ref": "YJYG7SXQC9", + "name": "Douai, Renault", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.081, + 50.3602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYJYG7SXQC9", + "ref": "YJYG7SXQC9", + "name": "Douai, Renault", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.081, + 50.3602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYJYG7SXQC9", + "ref": "YJYG7SXQC9", + "name": "Douai, Renault", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.081, + 50.3602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYJYG7SXQC9", + "ref": "YJYG7SXQC9", + "name": "Douai, Renault", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVZL9GPAYNT", + "ref": "VZL9GPAYNT", + "name": "Trèbes, Chocolaterie Nougalet", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42200623, + 48.20786571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5YMICU46B", + "ref": "Z5YMICU46B", + "name": "Norske Skog, Golbey", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42200623, + 48.20786571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5YMICU46B", + "ref": "Z5YMICU46B", + "name": "Norske Skog, Golbey", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42200623, + 48.20786571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5YMICU46B", + "ref": "Z5YMICU46B", + "name": "Norske Skog, Golbey", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.80567, + 48.801111 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFPMK6CLAK8", + "ref": "FPMK6CLAK8", + "name": "Haguenau, Norcan Sherpa Mobile Robotics", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.80567, + 48.801111 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFPMK6CLAK8", + "ref": "FPMK6CLAK8", + "name": "Haguenau, Norcan Sherpa Mobile Robotics", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36049115, + 47.76684383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYCQYLGSCIJ", + "ref": "YCQYLGSCIJ", + "name": "Illzach, Rue de Sausheim", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36049115, + 47.76684383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYCQYLGSCIJ", + "ref": "YCQYLGSCIJ", + "name": "Illzach, Rue de Sausheim", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36049115, + 47.76684383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYCQYLGSCIJ", + "ref": "YCQYLGSCIJ", + "name": "Illzach, Rue de Sausheim", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36049115, + 47.76684383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYCQYLGSCIJ", + "ref": "YCQYLGSCIJ", + "name": "Illzach, Rue de Sausheim", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.70760946, + 48.71133565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PELC41U7R0U", + "ref": "ELC41U7R0U", + "name": "Brumath, Norma", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.70760946, + 48.71133565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PELC41U7R0U", + "ref": "ELC41U7R0U", + "name": "Brumath, Norma", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42200623, + 48.20786571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5YMICU46B", + "ref": "Z5YMICU46B", + "name": "Norske Skog, Golbey", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42200623, + 48.20786571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5YMICU46B", + "ref": "Z5YMICU46B", + "name": "Norske Skog, Golbey", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42200623, + 48.20786571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5YMICU46B", + "ref": "Z5YMICU46B", + "name": "Norske Skog, Golbey", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42200623, + 48.20786571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5YMICU46B", + "ref": "Z5YMICU46B", + "name": "Norske Skog, Golbey", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42200623, + 48.20786571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5YMICU46B", + "ref": "Z5YMICU46B", + "name": "Norske Skog, Golbey", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42200623, + 48.20786571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5YMICU46B", + "ref": "Z5YMICU46B", + "name": "Norske Skog, Golbey", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42200623, + 48.20786571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5YMICU46B", + "ref": "Z5YMICU46B", + "name": "Norske Skog, Golbey", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42200623, + 48.20786571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5YMICU46B", + "ref": "Z5YMICU46B", + "name": "Norske Skog, Golbey", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42200623, + 48.20786571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5YMICU46B", + "ref": "Z5YMICU46B", + "name": "Norske Skog, Golbey", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42200623, + 48.20786571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5YMICU46B", + "ref": "Z5YMICU46B", + "name": "Norske Skog, Golbey", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5489767, + 45.4430808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDUSXJL", + "ref": "DUSXJL", + "name": "Les Allues, Parking du Villard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.56515, + 45.3977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQRBEQB", + "ref": "QRBEQB", + "name": "Méribel, Parking Dou du Pont", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.56515, + 45.3977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQRBEQB", + "ref": "QRBEQB", + "name": "Méribel, Parking Dou du Pont", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5655243, + 45.3967526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWLHEXK", + "ref": "WLHEXK", + "name": "Méribel, Parking Ravines", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.52643, + 47.862 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXBEWHF", + "ref": "XBEWHF", + "name": "Lizio, Rue du souvenir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72136, + 47.5468 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PVCVTUT", + "ref": "VCVTUT", + "name": "Sarzeau, Saint Colombier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76128936, + 47.5276439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLLI2Z8CZS2PEU6", + "ref": "LLI2Z8CZS2PEU6", + "name": "Sarzeau, Rue Adrien Régent - Parking salle multisports (rapide)", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.44976, + 47.6818 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLEVJXJ", + "ref": "LEVJXJ", + "name": "Questembert, Avenue de la Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95376, + 48.054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PJSEDAA", + "ref": "JSEDAA", + "name": "Pontivy, Avenue des cités unies", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.44976, + 47.6818 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLEVJXJ", + "ref": "LEVJXJ", + "name": "Questembert, Avenue de la Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72136, + 47.5468 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PVCVTUT", + "ref": "VCVTUT", + "name": "Sarzeau, Saint Colombier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12794, + 47.9302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXPBPBH", + "ref": "XPBPBH", + "name": "Guer, Zone d'activité du Val Coric", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.12794, + 47.9302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXPBPBH", + "ref": "XPBPBH", + "name": "Guer, Zone d'activité du Val Coric", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82905, + 47.8815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPTAZYC", + "ref": "PTAZYC", + "name": "Locminé, Rue Maréchal Leclerc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38847, + 47.9204 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PURNMJP", + "ref": "URNMJP", + "name": "Ploërmel, Parc d'activités de Ronsouze", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95376, + 48.054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PJSEDAA", + "ref": "JSEDAA", + "name": "Pontivy, Avenue des cités unies", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38847, + 47.9204 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PURNMJP", + "ref": "URNMJP", + "name": "Ploërmel, Parc d'activités de Ronsouze", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01283, + 47.897 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCNWQDX", + "ref": "CNWQDX", + "name": "Baud, Zone d'activites de Ty Er Douar", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7308, + 47.6654 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPTJEBK", + "ref": "PTJEBK", + "name": "Vannes, Rue Alain Gerbault", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7308, + 47.6654 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPTJEBK", + "ref": "PTJEBK", + "name": "Vannes, Rue Alain Gerbault", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76128936, + 47.5276439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLLI2Z8CZS2PEU6", + "ref": "LLI2Z8CZS2PEU6", + "name": "Sarzeau, Rue Adrien Régent - Parking salle multisports (rapide)", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82905, + 47.8815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPTAZYC", + "ref": "PTAZYC", + "name": "Locminé, Rue Maréchal Leclerc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01283, + 47.897 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCNWQDX", + "ref": "CNWQDX", + "name": "Baud, Zone d'activites de Ty Er Douar", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.83354, + 47.8557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCNAHPN", + "ref": "CNAHPN", + "name": "Moustoir-Ac, Rue de la Maillette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.52643, + 47.862 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXBEWHF", + "ref": "XBEWHF", + "name": "Lizio, Rue du souvenir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28271, + 47.8198 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PRTQNMD", + "ref": "RTQNMD", + "name": "Ruffiac, Place de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10467, + 47.7465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYBMHAN", + "ref": "YBMHAN", + "name": "Cournon, Rue de l'Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.6866, + 48.0616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXLMBLJ", + "ref": "XLMBLJ", + "name": "Bréhan, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77101, + 47.8808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PJFWBRE", + "ref": "JFWBRE", + "name": "Bignan, Rue Comte de Lanjuinais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.6866, + 48.0616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXLMBLJ", + "ref": "XLMBLJ", + "name": "Bréhan, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.39381, + 47.9955 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZMMMWQ", + "ref": "ZMMMWQ", + "name": "Berné, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.13532, + 47.9061 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHTGWJF", + "ref": "HTGWJF", + "name": "Quistinic, Rue de la Résistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.39381, + 47.9955 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZMMMWQ", + "ref": "ZMMMWQ", + "name": "Berné, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28271, + 47.8198 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PRTQNMD", + "ref": "RTQNMD", + "name": "Ruffiac, Place de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.28161, + 47.9778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLQHUAW", + "ref": "LQHUAW", + "name": "Inguiniel, Place François Jaffré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17315, + 47.9645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZVHKXW", + "ref": "ZVHKXW", + "name": "Bubry, Place de Macroom", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.28161, + 47.9778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLQHUAW", + "ref": "LQHUAW", + "name": "Inguiniel, Place François Jaffré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10467, + 47.7465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYBMHAN", + "ref": "YBMHAN", + "name": "Cournon, Rue de l'Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.13532, + 47.9061 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHTGWJF", + "ref": "HTGWJF", + "name": "Quistinic, Rue de la Résistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.81932, + 47.9187 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PATFEQY", + "ref": "ATFEQY", + "name": "Moréac, Place de la Résistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.71399, + 47.9619 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPDYFKZ", + "ref": "PDYFKZ", + "name": "Radenac, Rue Anne de Bretagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.83354, + 47.8557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCNAHPN", + "ref": "CNAHPN", + "name": "Moustoir-Ac, Rue de la Maillette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00026, + 47.8482 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PJRXYXK", + "ref": "JRXYXK", + "name": "Camors, Rue du Vieux Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.27127, + 48.0368 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PRAGKJL", + "ref": "RAGKJL", + "name": "Lignol, Place Corentin Le Floch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.27127, + 48.0368 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PRAGKJL", + "ref": "RAGKJL", + "name": "Lignol, Place Corentin Le Floch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.37854, + 47.7629 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PBUGKFT", + "ref": "BUGKFT", + "name": "Lorient, Rue Léo Lagrange", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.40121, + 47.5346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFPKPDC", + "ref": "FPKPDC", + "name": "Arzal, Parc d'activité de l'estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.37854, + 47.7629 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PBUGKFT", + "ref": "BUGKFT", + "name": "Lorient, Rue Léo Lagrange", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.08043, + 48.0245 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZUASAQ", + "ref": "ZUASAQ", + "name": "Muhlbach-sur-Munster", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.701, + 43.3988 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDB6JAUQC9M", + "ref": "DB6JAUQC9M", + "name": "Villefranche-de-Lauragais, Mr Bricolage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70692, + 43.3996 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDB6JAUQC9M", + "ref": "DB6JAUQC9M", + "name": "Villefranche-de-Lauragais, Mr Bricolage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82520172, + 46.46345109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVNJBH5F0QI", + "ref": "VNJBH5F0QI", + "name": "Fontenay-le-Comte, Mr Bricolage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82520172, + 46.46345109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVNJBH5F0QI", + "ref": "VNJBH5F0QI", + "name": "Fontenay-le-Comte, Mr Bricolage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46775447, + -21.3275523 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBLIDF9PFDM", + "ref": "BLIDF9PFDM", + "name": "Saint-Pierre, Mr Bricolage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46775447, + -21.3275523 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBLIDF9PFDM", + "ref": "BLIDF9PFDM", + "name": "Saint-Pierre, Mr Bricolage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4984624, + -20.8949185 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHOT2JOEZEY", + "ref": "HOT2JOEZEY", + "name": "Sainte-Clotilde, Mr Bricolage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4984624, + -20.8949185 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHOT2JOEZEY", + "ref": "HOT2JOEZEY", + "name": "Sainte-Clotilde, Mr Bricolage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.08043, + 48.0245 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZUASAQ", + "ref": "ZUASAQ", + "name": "Muhlbach-sur-Munster", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.379552, + 43.517808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLILIHAPFT", + "ref": "XLILIHAPFT", + "name": "Mozerr Signal, Portet-sur-Garonne", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088954, + 47.019179 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAPWTIE1O95", + "ref": "APWTIE1O95", + "name": "Loudun, Avenue de Ouagadougou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088954, + 47.019179 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAPWTIE1O95", + "ref": "APWTIE1O95", + "name": "Loudun, Avenue de Ouagadougou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.52194, + 48.2692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWHLNC", + "ref": "JWHLNC", + "name": "Muttersholtz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.52194, + 48.2692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWHLNC", + "ref": "JWHLNC", + "name": "Muttersholtz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.78391, + 47.667304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHUDJR8729BFQ", + "ref": "LLHUDJR8729BFQ", + "name": "Mutualia Grand Ouest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.78391, + 47.667304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHUDJR8729BFQ", + "ref": "LLHUDJR8729BFQ", + "name": "Mutualia Grand Ouest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.56515, + 45.3977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQRBEQB", + "ref": "QRBEQB", + "name": "Méribel, Parking Dou du Pont", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5655243, + 45.3967526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWLHEXK", + "ref": "WLHEXK", + "name": "Méribel, Parking Ravines", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.379552, + 43.517808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLILIHAPFT", + "ref": "XLILIHAPFT", + "name": "Mozerr Signal, Portet-sur-Garonne", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.379552, + 43.517808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLILIHAPFT", + "ref": "XLILIHAPFT", + "name": "Mozerr Signal, Portet-sur-Garonne", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.40121, + 47.5346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFPKPDC", + "ref": "FPKPDC", + "name": "Arzal, Parc d'activité de l'estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2360426, + 49.09372207 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMRLB3TAK7Z", + "ref": "MRLB3TAK7Z", + "name": "Metz, Rue de Courcelles", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.021463, + 46.520895 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSQMYKHQ3PK", + "ref": "SQMYKHQ3PK", + "name": "Morez des Hauts-de-Bienne, Quai Jobez", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.021463, + 46.520895 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSQMYKHQ3PK", + "ref": "SQMYKHQ3PK", + "name": "Morez des Hauts-de-Bienne, Quai Jobez", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.07186963, + 49.11279016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVOJ4ZF90H", + "ref": "TVOJ4ZF90H", + "name": "Sarreguemines, 107 rue du Marechal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.07186963, + 49.11279016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVOJ4ZF90H", + "ref": "TVOJ4ZF90H", + "name": "Sarreguemines, 107 rue du Marechal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2360426, + 49.09372207 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMRLB3TAK7Z", + "ref": "MRLB3TAK7Z", + "name": "Metz, Rue de Courcelles", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2360426, + 49.09372207 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMRLB3TAK7Z", + "ref": "MRLB3TAK7Z", + "name": "Metz, Rue de Courcelles", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2360426, + 49.09372207 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMRLB3TAK7Z", + "ref": "MRLB3TAK7Z", + "name": "Metz, Rue de Courcelles", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2360426, + 49.09372207 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMRLB3TAK7Z", + "ref": "MRLB3TAK7Z", + "name": "Metz, Rue de Courcelles", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2360426, + 49.09372207 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMRLB3TAK7Z", + "ref": "MRLB3TAK7Z", + "name": "Metz, Rue de Courcelles", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.379552, + 43.517808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLILIHAPFT", + "ref": "XLILIHAPFT", + "name": "Mozerr Signal, Portet-sur-Garonne", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2360426, + 49.09372207 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMRLB3TAK7Z", + "ref": "MRLB3TAK7Z", + "name": "Metz, Rue de Courcelles", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2360426, + 49.09372207 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMRLB3TAK7Z", + "ref": "MRLB3TAK7Z", + "name": "Metz, Rue de Courcelles", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1106, + 49.0847 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFFQCD", + "ref": "HFFQCD", + "name": "Moulins-lès-Metz, CORA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1106, + 49.0847 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHFFQCD", + "ref": "HFFQCD", + "name": "Moulins-lès-Metz, CORA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.53287, + 45.4834 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMOUTIERS", + "ref": "moutiers", + "name": "Moutiers, Saint Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.53287, + 45.4834 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMOUTIERS", + "ref": "moutiers", + "name": "Moutiers, Saint Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.379552, + 43.517808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLILIHAPFT", + "ref": "XLILIHAPFT", + "name": "Mozerr Signal, Portet-sur-Garonne", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.379552, + 43.517808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLILIHAPFT", + "ref": "XLILIHAPFT", + "name": "Mozerr Signal, Portet-sur-Garonne", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.369991039, + 48.94491689 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB6VI5YO8DJ", + "ref": "B6VI5YO8DJ", + "name": "Châlons-en-Champagne, Boulevard Hippolyte Faure", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.369991039, + 48.94491689 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB6VI5YO8DJ", + "ref": "B6VI5YO8DJ", + "name": "Châlons-en-Champagne, Boulevard Hippolyte Faure", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.369991039, + 48.94491689 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB6VI5YO8DJ", + "ref": "B6VI5YO8DJ", + "name": "Châlons-en-Champagne, Boulevard Hippolyte Faure", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.078122, + 49.241255 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBSV6PWXBFW", + "ref": "BSV6PWXBFW", + "name": "Rombas, Fond Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8366292, + 47.07524849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POA04A96XNU", + "ref": "OA04A96XNU", + "name": "Centre Commercial l'Autre Faubourg, Cholet", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8366292, + 47.07524849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POA04A96XNU", + "ref": "OA04A96XNU", + "name": "Centre Commercial l'Autre Faubourg, Cholet", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8366292, + 47.07524849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POA04A96XNU", + "ref": "OA04A96XNU", + "name": "Centre Commercial l'Autre Faubourg, Cholet", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8366292, + 47.07524849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POA04A96XNU", + "ref": "OA04A96XNU", + "name": "Centre Commercial l'Autre Faubourg, Cholet", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8366292, + 47.07524849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POA04A96XNU", + "ref": "OA04A96XNU", + "name": "Centre Commercial l'Autre Faubourg, Cholet", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8366292, + 47.07524849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POA04A96XNU", + "ref": "OA04A96XNU", + "name": "Centre Commercial l'Autre Faubourg, Cholet", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8366292, + 47.07524849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POA04A96XNU", + "ref": "OA04A96XNU", + "name": "Centre Commercial l'Autre Faubourg, Cholet", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8366292, + 47.07524849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POA04A96XNU", + "ref": "OA04A96XNU", + "name": "Centre Commercial l'Autre Faubourg, Cholet", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87623698, + 47.04568014 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR5WTOSEIZZ", + "ref": "R5WTOSEIZZ", + "name": "Centre Commercial Village, Cholet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87623698, + 47.04568014 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR5WTOSEIZZ", + "ref": "R5WTOSEIZZ", + "name": "Centre Commercial Village, Cholet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.65052128, + 45.75208481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKSYDHOQJJU", + "ref": "KSYDHOQJJU", + "name": "Saintes, Orion immobilier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.65052128, + 45.75208481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKSYDHOQJJU", + "ref": "KSYDHOQJJU", + "name": "Saintes, Orion immobilier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.65052128, + 45.75208481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKSYDHOQJJU", + "ref": "KSYDHOQJJU", + "name": "Saintes, Orion immobilier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.65052128, + 45.75208481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKSYDHOQJJU", + "ref": "KSYDHOQJJU", + "name": "Saintes, Orion immobilier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.903664, + 47.916515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBCW6UDGKOZ", + "ref": "BCW6UDGKOZ", + "name": "Orléans Motors, 12 rue Molière", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.903664, + 47.916515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBCW6UDGKOZ", + "ref": "BCW6UDGKOZ", + "name": "Orléans Motors, 12 rue Molière", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.903664, + 47.916515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBCW6UDGKOZ", + "ref": "BCW6UDGKOZ", + "name": "Orléans Motors, 12 rue Molière", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9046868, + 47.9028761 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PMH4YHU6SK6", + "ref": "MH4YHU6SK6", + "name": "Orléans, rue Adolphe Crespin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05386, + 47.89206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PZRINLM4J90", + "ref": "ZRINLM4J90", + "name": "Mardie, rue de Donnery", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07402, + 45.889034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRQMXNLPGD7", + "ref": "RQMXNLPGD7", + "name": "Mozac, Avenue Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07402, + 45.889034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRQMXNLPGD7", + "ref": "RQMXNLPGD7", + "name": "Mozac, Avenue Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212125, + 48.912135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PACYY4VWEH3", + "ref": "ACYY4VWEH3", + "name": "Nanterre, Rue des Peupliers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.135937, + 45.765259 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGJTASUUHDC", + "ref": "GJTASUUHDC", + "name": "Clermont-Ferrand, Openium", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09338565, + 49.25121681 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMMGQZODB2U", + "ref": "MMGQZODB2U", + "name": "Rombas, Place de l’hôtel de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.095098, + 49.254606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUSZMAL05ZQ", + "ref": "USZMAL05ZQ", + "name": "Rombas, Parking Schmatt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.078122, + 49.241255 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBSV6PWXBFW", + "ref": "BSV6PWXBFW", + "name": "Rombas, Fond Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.99012892, + 43.13476798 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLEH2TPO0J7", + "ref": "LEH2TPO0J7", + "name": "La Valette-du-Var, Fiat - Alfa", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.98951742, + 43.13459182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR3DAUXRW4P", + "ref": "R3DAUXRW4P", + "name": "La Valette-du-Var, Opel", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.98951742, + 43.13459182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR3DAUXRW4P", + "ref": "R3DAUXRW4P", + "name": "La Valette-du-Var, Opel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.98951742, + 43.13459182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR3DAUXRW4P", + "ref": "R3DAUXRW4P", + "name": "La Valette-du-Var, Opel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.98951742, + 43.13459182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR3DAUXRW4P", + "ref": "R3DAUXRW4P", + "name": "La Valette-du-Var, Opel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1361313, + 45.76525364 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGJTASUUHDC", + "ref": "GJTASUUHDC", + "name": "Clermont-Ferrand, Openium", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212125, + 48.912135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PACYY4VWEH3", + "ref": "ACYY4VWEH3", + "name": "Nanterre, Rue des Peupliers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.135937, + 45.765259 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGJTASUUHDC", + "ref": "GJTASUUHDC", + "name": "Clermont-Ferrand, Openium", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1361313, + 45.76525364 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGJTASUUHDC", + "ref": "GJTASUUHDC", + "name": "Clermont-Ferrand, Openium", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212125, + 48.912135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PACYY4VWEH3", + "ref": "ACYY4VWEH3", + "name": "Nanterre, Rue des Peupliers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212125, + 48.912135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PACYY4VWEH3", + "ref": "ACYY4VWEH3", + "name": "Nanterre, Rue des Peupliers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212125, + 48.912135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PACYY4VWEH3", + "ref": "ACYY4VWEH3", + "name": "Nanterre, Rue des Peupliers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212125, + 48.912135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PACYY4VWEH3", + "ref": "ACYY4VWEH3", + "name": "Nanterre, Rue des Peupliers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212125, + 48.912135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PACYY4VWEH3", + "ref": "ACYY4VWEH3", + "name": "Nanterre, Rue des Peupliers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212125, + 48.912135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PACYY4VWEH3", + "ref": "ACYY4VWEH3", + "name": "Nanterre, Rue des Peupliers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01551, + 47.95631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PLXDKXFFZNL", + "ref": "LXDKXFFZNL", + "name": "Marigny-Les-Usages, Parking rue du Vieux Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.910526, + 47.905144 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PBXRRLVQJLH", + "ref": "BXRRLVQJLH", + "name": "Orléans, 25 Boulevard Alexandre Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.910195, + 47.905229 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PH5QTPJILRB", + "ref": "H5QTPJILRB", + "name": "Orléans, 27 Boulevard Alexandre Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.972238, + 47.966138 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PT0XMNJU9T9", + "ref": "T0XMNJU9T9", + "name": "Chanteau, Parking des écoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.968126, + 47.832466 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PSDVWXZW1J4", + "ref": "SDVWXZW1J4", + "name": "Saint-Cyr-En-Val, Parking rue de La Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95514, + 47.87808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PRG6TILUNOU", + "ref": "RG6TILUNOU", + "name": "Saint-Denis-En-Val, Parking Place du 8 Mai 45", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.96998, + 47.91192 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PPZE0R0CX2I", + "ref": "PZE0R0CX2I", + "name": "Saint-Jean-De-Braye, rue Jean Zay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87737, + 47.911473 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PZIWOWMFJOR", + "ref": "ZIWOWMFJOR", + "name": "Saint-Jean-De-La-Ruelle, Allée Anna Marly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.93456, + 47.88026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PHSZFHCDE65", + "ref": "HSZFHCDE65", + "name": "Saint-Jean-Le-Blanc, Centre Commercial Clos de l'Arche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.972238, + 47.966138 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PT0XMNJU9T9", + "ref": "T0XMNJU9T9", + "name": "Chanteau, Parking des écoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95514, + 47.87808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PRG6TILUNOU", + "ref": "RG6TILUNOU", + "name": "Saint-Denis-En-Val, Parking Place du 8 Mai 45", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83385, + 47.86555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PEF6ASZTSVN", + "ref": "EF6ASZTSVN", + "name": "Saint-Hilaire-Saint-Mesmin, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.873796, + 47.884736 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PGWXYTVBPSU", + "ref": "GWXYTVBPSU", + "name": "Saint-Pryve-Saint-Mesmin, Parking rue de La Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.82654, + 47.919474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PDEAGBEULR4", + "ref": "DEAGBEULR4", + "name": "Ingré, Parking rue des Selliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.986572, + 47.900234 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PYHVKIMCLPK", + "ref": "YHVKIMCLPK", + "name": "Combleux, Parking rue du Cas Rouge", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9109, + 47.93292 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PGI557RXISG", + "ref": "GI557RXISG", + "name": "Fleury-Les-Aubrais, Parking du 11 Novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.96998, + 47.91192 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PPZE0R0CX2I", + "ref": "PZE0R0CX2I", + "name": "Saint-Jean-De-Braye, rue Jean Zay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020973, + 47.893798 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PGKS0FGLKUY", + "ref": "GKS0FGLKUY", + "name": "Checy, avenue Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87386, + 47.9508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45POJGJFQZ0RB", + "ref": "OJGJFQZ0RB", + "name": "Saran, Parking Allée Claude Bernard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.94856, + 47.93718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PLUGYSMFOZQ", + "ref": "LUGYSMFOZQ", + "name": "Semoy, Allée Pierre de Coubertin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8339996, + 47.8867824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PNMFVTC5INF", + "ref": "NMFVTC5INF", + "name": "La-Chapelle-Saint-Mesmin, rue Monteloup", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.89790996, + 47.86552972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PS7VYUHK4NE", + "ref": "S7VYUHK4NE", + "name": "Olivet, rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9109, + 47.93292 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PGI557RXISG", + "ref": "GI557RXISG", + "name": "Fleury-Les-Aubrais, Parking du 11 Novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8961, + 47.89256 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PPBVWXODJGA", + "ref": "PBVWXODJGA", + "name": "Orléans, Jardin des Plantes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05386, + 47.89206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PZRINLM4J90", + "ref": "ZRINLM4J90", + "name": "Mardie, rue de Donnery", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020973, + 47.893798 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PGKS0FGLKUY", + "ref": "GKS0FGLKUY", + "name": "Checy, avenue Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01551, + 47.95631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PLXDKXFFZNL", + "ref": "LXDKXFFZNL", + "name": "Marigny-Les-Usages, Parking rue du Vieux Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.010412, + 47.922145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PTCKN0ZQ234", + "ref": "TCKN0ZQ234", + "name": "Boigny, Rue de la commanderie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.82654, + 47.919474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PDEAGBEULR4", + "ref": "DEAGBEULR4", + "name": "Ingré, Parking rue des Selliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8911351, + 47.8634133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PKWO1HTGHLY", + "ref": "KWO1HTGHLY", + "name": "Olivet, rue de L'Yvette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9025136, + 47.9053752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PFGU7G4ZMF1", + "ref": "FGU7G4ZMF1", + "name": "Orléans, 84 rue Bannier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.909853, + 47.905313 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PPSUDUL9MIJ", + "ref": "PSUDUL9MIJ", + "name": "Orléans, 29 Boulevard Alexandre Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.89790996, + 47.86552972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PS7VYUHK4NE", + "ref": "S7VYUHK4NE", + "name": "Olivet, rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9030715, + 47.9039133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PO075GC5TMJ", + "ref": "O075GC5TMJ", + "name": "Orléans, 24 rue Bannier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87737, + 47.911473 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PZIWOWMFJOR", + "ref": "ZIWOWMFJOR", + "name": "Saint-Jean-De-La-Ruelle, Allée Anna Marly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.90126, + 47.90074 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PI6GJEEHANQ", + "ref": "I6GJEEHANQ", + "name": "Orléans, Parking rue Notre Dame de Recouvrance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.986572, + 47.900234 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PYHVKIMCLPK", + "ref": "YHVKIMCLPK", + "name": "Combleux, Parking rue du Cas Rouge", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83385, + 47.86555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PEF6ASZTSVN", + "ref": "EF6ASZTSVN", + "name": "Saint-Hilaire-Saint-Mesmin, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87386, + 47.9508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45POJGJFQZ0RB", + "ref": "OJGJFQZ0RB", + "name": "Saran, Parking Allée Claude Bernard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.94856, + 47.93718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PLUGYSMFOZQ", + "ref": "LUGYSMFOZQ", + "name": "Semoy, Allée Pierre de Coubertin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.93456, + 47.88026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PHSZFHCDE65", + "ref": "HSZFHCDE65", + "name": "Saint-Jean-Le-Blanc, Centre Commercial Clos de l'Arche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.873796, + 47.884736 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PGWXYTVBPSU", + "ref": "GWXYTVBPSU", + "name": "Saint-Pryve-Saint-Mesmin, Parking rue de La Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.81417, + 47.94254 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PTDQIJPJMNC", + "ref": "TDQIJPJMNC", + "name": "Ormes, Parking Covoiturage Chemin des Plantes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8339996, + 47.8867824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PNMFVTC5INF", + "ref": "NMFVTC5INF", + "name": "La-Chapelle-Saint-Mesmin, rue Monteloup", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.095098, + 49.254606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUSZMAL05ZQ", + "ref": "USZMAL05ZQ", + "name": "Rombas, Parking Schmatt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08759241, + 49.25176688 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXSSSZNZRAX", + "ref": "XSSSZNZRAX", + "name": "Rombas, Place de la République", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.369991039, + 48.94491689 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB6VI5YO8DJ", + "ref": "B6VI5YO8DJ", + "name": "Châlons-en-Champagne, Boulevard Hippolyte Faure", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.095098, + 49.254606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZNBCSN6ZPT", + "ref": "ZNBCSN6ZPT", + "name": "Rombas, Parking Lycée Berlioz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59205757, + 49.20641115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQKELHNRP6", + "ref": "YQKELHNRP6", + "name": "Senlis, Place de la Gare", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.170972, + 45.742189 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJPU6IRJFBD", + "ref": "JPU6IRJFBD", + "name": "Cournon d'Auvergne, Eugène Renaux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.170972, + 45.742189 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJPU6IRJFBD", + "ref": "JPU6IRJFBD", + "name": "Cournon d'Auvergne, Eugène Renaux", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.170972, + 45.742189 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJPU6IRJFBD", + "ref": "JPU6IRJFBD", + "name": "Cournon d'Auvergne, Eugène Renaux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48279, + 48.4614 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKTXKVX", + "ref": "KTXKVX", + "name": "Obernai, Place des fines herbes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-31", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48279, + 48.4614 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKTXKVX", + "ref": "KTXKVX", + "name": "Obernai, Place des fines herbes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4151938, + 43.4503553 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQXPD2AT8JS", + "ref": "QXPD2AT8JS", + "name": "Pezenas, Occitane Auto", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4151938, + 43.4503553 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQXPD2AT8JS", + "ref": "QXPD2AT8JS", + "name": "Pezenas, Occitane Auto", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.48251118, + 43.31089191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBEM0MZEHDY", + "ref": "BEM0MZEHDY", + "name": "Agde, Avenue de Sète", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.48251118, + 43.31089191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBEM0MZEHDY", + "ref": "BEM0MZEHDY", + "name": "Agde, Avenue de Sète", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBC9AMA977O", + "ref": "BC9AMA977O", + "name": "Gruissan, Place de la Capitainerie", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBC9AMA977O", + "ref": "BC9AMA977O", + "name": "Gruissan, Place de la Capitainerie", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBC9AMA977O", + "ref": "BC9AMA977O", + "name": "Gruissan, Place de la Capitainerie", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBC9AMA977O", + "ref": "BC9AMA977O", + "name": "Gruissan, Place de la Capitainerie", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBC9AMA977O", + "ref": "BC9AMA977O", + "name": "Gruissan, Place de la Capitainerie", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBC9AMA977O", + "ref": "BC9AMA977O", + "name": "Gruissan, Place de la Capitainerie", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBC9AMA977O", + "ref": "BC9AMA977O", + "name": "Gruissan, Place de la Capitainerie", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBC9AMA977O", + "ref": "BC9AMA977O", + "name": "Gruissan, Place de la Capitainerie", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBC9AMA977O", + "ref": "BC9AMA977O", + "name": "Gruissan, Place de la Capitainerie", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59205757, + 49.20641115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQKELHNRP6", + "ref": "YQKELHNRP6", + "name": "Senlis, Place de la Gare", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59205757, + 49.20641115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQKELHNRP6", + "ref": "YQKELHNRP6", + "name": "Senlis, Place de la Gare", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59205757, + 49.20641115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQKELHNRP6", + "ref": "YQKELHNRP6", + "name": "Senlis, Place de la Gare", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59205757, + 49.20641115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQKELHNRP6", + "ref": "YQKELHNRP6", + "name": "Senlis, Place de la Gare", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52677745, + 43.47698053 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYCPEWRGL9L", + "ref": "YCPEWRGL9L", + "name": "Anglet, Novotel", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5257373, + 43.47749826 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG009CV3ZJE", + "ref": "G009CV3ZJE", + "name": "Anglet, Novotel SPA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52677745, + 43.47698053 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYCPEWRGL9L", + "ref": "YCPEWRGL9L", + "name": "Anglet, Novotel", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52677745, + 43.47698053 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYCPEWRGL9L", + "ref": "YCPEWRGL9L", + "name": "Anglet, Novotel", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5257373, + 43.47749826 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG009CV3ZJE", + "ref": "G009CV3ZJE", + "name": "Anglet, Novotel SPA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52677745, + 43.47698053 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYCPEWRGL9L", + "ref": "YCPEWRGL9L", + "name": "Anglet, Novotel", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.19375685, + 48.56437512 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCAS701RIZP", + "ref": "CAS701RIZP", + "name": "Flavigny-sur-Moselle, Rue du Doyen Jacques Parisot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.19375685, + 48.56437512 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCAS701RIZP", + "ref": "CAS701RIZP", + "name": "Flavigny-sur-Moselle, Rue du Doyen Jacques Parisot", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59205757, + 49.20641115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQKELHNRP6", + "ref": "YQKELHNRP6", + "name": "Senlis, Place de la Gare", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59205757, + 49.20641115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQKELHNRP6", + "ref": "YQKELHNRP6", + "name": "Senlis, Place de la Gare", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59205757, + 49.20641115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQKELHNRP6", + "ref": "YQKELHNRP6", + "name": "Senlis, Place de la Gare", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59205757, + 49.20641115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQKELHNRP6", + "ref": "YQKELHNRP6", + "name": "Senlis, Place de la Gare", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59205757, + 49.20641115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQKELHNRP6", + "ref": "YQKELHNRP6", + "name": "Senlis, Place de la Gare", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59205757, + 49.20641115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQKELHNRP6", + "ref": "YQKELHNRP6", + "name": "Senlis, Place de la Gare", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59205757, + 49.20641115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQKELHNRP6", + "ref": "YQKELHNRP6", + "name": "Senlis, Place de la Gare", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59205757, + 49.20641115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQKELHNRP6", + "ref": "YQKELHNRP6", + "name": "Senlis, Place de la Gare", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59205757, + 49.20641115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQKELHNRP6", + "ref": "YQKELHNRP6", + "name": "Senlis, Place de la Gare", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59205757, + 49.20641115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQKELHNRP6", + "ref": "YQKELHNRP6", + "name": "Senlis, Place de la Gare", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBC9AMA977O", + "ref": "BC9AMA977O", + "name": "Gruissan, Place de la Capitainerie", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.957887, + 49.045931 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWS9TVOAQQE", + "ref": "WS9TVOAQQE", + "name": "Epernay, Office notarial PJHB public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.957887, + 49.045931 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWS9TVOAQQE", + "ref": "WS9TVOAQQE", + "name": "Epernay, Office notarial PJHB public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.103962, + 49.22553 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKR6PZL5IRM", + "ref": "KR6PZL5IRM", + "name": "Parking Mairie, Pierrevillers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.982398, + 49.225893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIB0HMQS0YP", + "ref": "IB0HMQS0YP", + "name": "Parking collège Amilcar, Homecourt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992456, + 49.225382 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ4Q5I7BYZR", + "ref": "Z4Q5I7BYZR", + "name": "Parking Mairie, Homecourt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.982398, + 49.225893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIB0HMQS0YP", + "ref": "IB0HMQS0YP", + "name": "Parking collège Amilcar, Homecourt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992456, + 49.225382 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ4Q5I7BYZR", + "ref": "Z4Q5I7BYZR", + "name": "Parking Mairie, Homecourt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.999234, + 49.217628 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNFZ3TXLMC0", + "ref": "NFZ3TXLMC0", + "name": "Homecourt, Gare Homécourt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.057693, + 49.216961 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRNOIXUVWZ9", + "ref": "RNOIXUVWZ9", + "name": "Malancourt la Montagne, Parking Salle des fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.057693, + 49.216961 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRNOIXUVWZ9", + "ref": "RNOIXUVWZ9", + "name": "Malancourt la Montagne, Parking Salle des fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.103962, + 49.22553 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKR6PZL5IRM", + "ref": "KR6PZL5IRM", + "name": "Parking Mairie, Pierrevillers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.100422, + 49.225945 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUIWGGGBRB8", + "ref": "UIWGGGBRB8", + "name": "Parking Salle des fêtes, Pierrevillers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13890704, + 49.24803182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDGUY2HD3PH", + "ref": "DGUY2HD3PH", + "name": "Parking Est, Avenue de l'Europe", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.100422, + 49.225945 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUIWGGGBRB8", + "ref": "UIWGGGBRB8", + "name": "Parking Salle des fêtes, Pierrevillers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.105362, + 49.237622 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POJUO57LEEY", + "ref": "OJUO57LEEY", + "name": "Rombas, Parking Hangar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.095098, + 49.254606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZNBCSN6ZPT", + "ref": "ZNBCSN6ZPT", + "name": "Rombas, Parking Lycée Berlioz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.105362, + 49.237622 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POJUO57LEEY", + "ref": "OJUO57LEEY", + "name": "Rombas, Parking Hangar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09338565, + 49.25121681 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMMGQZODB2U", + "ref": "MMGQZODB2U", + "name": "Rombas, Place de l’hôtel de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08759241, + 49.25176688 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXSSSZNZRAX", + "ref": "XSSSZNZRAX", + "name": "Rombas, Place de la République", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08759241, + 49.25176688 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXSSSZNZRAX", + "ref": "XSSSZNZRAX", + "name": "Rombas, Place de la République", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08759241, + 49.25176688 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXSSSZNZRAX", + "ref": "XSSSZNZRAX", + "name": "Rombas, Place de la République", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.999234, + 49.217628 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNFZ3TXLMC0", + "ref": "NFZ3TXLMC0", + "name": "Homecourt, Gare Homécourt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13890704, + 49.24803182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDGUY2HD3PH", + "ref": "DGUY2HD3PH", + "name": "Parking Est, Avenue de l'Europe", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.051158, + 43.998829 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ40WJN92QMZD", + "ref": "LLJ40WJN92QMZD", + "name": "Pernes-Les-Fontaines, Olitom", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.133887, + 49.242705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLWOOPFQ7NB", + "ref": "LWOOPFQ7NB", + "name": "Parking Galerie, Amnéville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.051158, + 43.998829 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ40WJN92QMZD", + "ref": "LLJ40WJN92QMZD", + "name": "Pernes-Les-Fontaines, Olitom", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.128633, + 49.244048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTA02FFLDQM", + "ref": "TA02FFLDQM", + "name": "Parking VIP, Amnéville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.135813, + 49.241206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSKHOBW49HF", + "ref": "SKHOBW49HF", + "name": "Parking SUD, Amnéville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.135813, + 49.241206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSKHOBW49HF", + "ref": "SKHOBW49HF", + "name": "Parking SUD, Amnéville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.128633, + 49.244048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTA02FFLDQM", + "ref": "TA02FFLDQM", + "name": "Parking VIP, Amnéville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.142379, + 49.260981 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFEZQDELCUW", + "ref": "FEZQDELCUW", + "name": "Parking Mairie, Amnéville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.135813, + 49.241206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFCRUCZZRMY", + "ref": "FCRUCZZRMY", + "name": "Parking Cure Thermal, Amnéville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.135813, + 49.241206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFCRUCZZRMY", + "ref": "FCRUCZZRMY", + "name": "Parking Cure Thermal, Amnéville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.115187, + 49.262486 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXF0FLNMPLJ", + "ref": "XF0FLNMPLJ", + "name": "Maison du projet, Amnéville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13890704, + 49.24803182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDGUY2HD3PH", + "ref": "DGUY2HD3PH", + "name": "Parking Est, Avenue de l'Europe", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.116171, + 49.26076 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYMMBPBLYAI", + "ref": "YMMBPBLYAI", + "name": "PAPP, Amnéville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.116171, + 49.26076 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYMMBPBLYAI", + "ref": "YMMBPBLYAI", + "name": "PAPP, Amnéville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.133955, + 49.258667 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQAEFOK9R0M", + "ref": "QAEFOK9R0M", + "name": "Parking salle Edelweiss, Amnéville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.133955, + 49.258667 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQAEFOK9R0M", + "ref": "QAEFOK9R0M", + "name": "Parking salle Edelweiss, Amnéville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.133887, + 49.242705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLWOOPFQ7NB", + "ref": "LWOOPFQ7NB", + "name": "Parking Galerie, Amnéville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.142379, + 49.260981 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFEZQDELCUW", + "ref": "FEZQDELCUW", + "name": "Parking Mairie, Amnéville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.115187, + 49.262486 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXF0FLNMPLJ", + "ref": "XF0FLNMPLJ", + "name": "Maison du projet, Amnéville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13890704, + 49.24803182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDGUY2HD3PH", + "ref": "DGUY2HD3PH", + "name": "Parking Est, Avenue de l'Europe", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.17315, + 47.9645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZVHKXW", + "ref": "ZVHKXW", + "name": "Bubry, Place de Macroom", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72377, + 47.9111 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PRZFTLA", + "ref": "RZFTLA", + "name": "Saint-Allouestre, Parking Salle Polyvalente", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75518, + 47.6507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGWMRND", + "ref": "GWMRND", + "name": "Vannes, Rue Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99905, + 47.7203 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PRRSVSJ", + "ref": "RRSVSJ", + "name": "Brech, Rue du Pont Douar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52617, + 47.7724 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFZXXAW", + "ref": "FZXXAW", + "name": "Guidel, Route de Kerbrest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52617, + 47.7724 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFZXXAW", + "ref": "FZXXAW", + "name": "Guidel, Route de Kerbrest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20436, + 47.6577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXZZHAR", + "ref": "XZZHAR", + "name": "Étel, Ruelle des Champs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.4989, + 47.7342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PJEAFVZ", + "ref": "JEAFVZ", + "name": "Ploemeur, Boulevard de l'Océan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.4989, + 47.7342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PJEAFVZ", + "ref": "JEAFVZ", + "name": "Ploemeur, Boulevard de l'Océan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73667, + 47.6188 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTJTDLE", + "ref": "TJTDLE", + "name": "Séné, Place Foresti", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.83013, + 47.6149 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLDQXAG", + "ref": "LDQXAG", + "name": "Arradon, Rue de la Carrière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.83013, + 47.6149 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLDQXAG", + "ref": "LDQXAG", + "name": "Arradon, Rue de la Carrière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75489, + 47.6421 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTLSDKV", + "ref": "TLSDKV", + "name": "Vannes, Rue du Commerce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20436, + 47.6577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXZZHAR", + "ref": "XZZHAR", + "name": "Étel, Ruelle des Champs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.34079459, + 47.81132803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PUXWAZX", + "ref": "UXWAZX", + "name": "Caudan, Place du presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.34079459, + 47.81132803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PUXWAZX", + "ref": "UXWAZX", + "name": "Caudan, Place du presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.13192, + 47.5206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHUSQJB", + "ref": "HUSQJB", + "name": "Saint-Pierre-Quiberon, Rue Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.397311, + 47.929532 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLPU0REEKYH", + "ref": "LPU0REEKYH", + "name": "Ploërmel, Place de la mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.40196, + 47.7667 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PJXKJUW", + "ref": "JXKJUW", + "name": "Lorient, Rue Müller", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.49312, + 47.7926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXNARGA", + "ref": "XNARGA", + "name": "Guidel, Place le Montagner", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.397311, + 47.929532 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLPU0REEKYH", + "ref": "LPU0REEKYH", + "name": "Ploërmel, Place de la mairie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.397311, + 47.929532 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLPU0REEKYH", + "ref": "LPU0REEKYH", + "name": "Ploërmel, Place de la mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.397311, + 47.929532 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLPU0REEKYH", + "ref": "LPU0REEKYH", + "name": "Ploërmel, Place de la mairie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75489, + 47.6421 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTLSDKV", + "ref": "TLSDKV", + "name": "Vannes, Rue du Commerce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77069, + 47.6455 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNAKFKG", + "ref": "NAKFKG", + "name": "Vannes, Avenue Winston Churchill", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77069, + 47.6455 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNAKFKG", + "ref": "NAKFKG", + "name": "Vannes, Avenue Winston Churchill", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89455, + 47.5421 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEUEZBT", + "ref": "EUEZBT", + "name": "Arzon, Quai des Cabestans - Port du Crouesty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.83751, + 47.8889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGFVWQZ", + "ref": "GFVWQZ", + "name": "Locminé, Place Joseph Richard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.83751, + 47.8889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGFVWQZ", + "ref": "GFVWQZ", + "name": "Locminé, Place Joseph Richard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15967, + 47.8342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXAEEUR", + "ref": "XAEEUR", + "name": "Languidic, Place Joseph Guillerme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89455, + 47.5421 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEUEZBT", + "ref": "EUEZBT", + "name": "Arzon, Quai des Cabestans - Port du Crouesty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.94894, + 47.6389 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZSBMZW", + "ref": "ZSBMZW", + "name": "Bono, Rue Ferdinand Ardonin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.94894, + 47.6389 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZSBMZW", + "ref": "ZSBMZW", + "name": "Bono, Rue Ferdinand Ardonin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13333, + 47.8178 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEKLYRW", + "ref": "EKLYRW", + "name": "Carentoir, Rue Abbé de La Vallière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.13333, + 47.8178 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEKLYRW", + "ref": "EKLYRW", + "name": "Carentoir, Rue Abbé de La Vallière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75941, + 47.6563 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNRXSYF", + "ref": "NRXSYF", + "name": "Vannes, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76808, + 47.6709 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWRRLPV", + "ref": "WRRLPV", + "name": "Vannes, Rue Henri Matisse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75941, + 47.6563 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNRXSYF", + "ref": "NRXSYF", + "name": "Vannes, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76808, + 47.6709 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWRRLPV", + "ref": "WRRLPV", + "name": "Vannes, Rue Henri Matisse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73667, + 47.6188 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTJTDLE", + "ref": "TJTDLE", + "name": "Séné, Place Foresti", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76399, + 47.6379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGRGKRU", + "ref": "GRGKRU", + "name": "Vannes, Rue Daniel Gilard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76399, + 47.6379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGRGKRU", + "ref": "GRGKRU", + "name": "Vannes, Rue Daniel Gilard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64905, + 47.6292 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PDREUCR", + "ref": "DREUCR", + "name": "Theix, Rue de Treffléan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64905, + 47.6292 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PDREUCR", + "ref": "DREUCR", + "name": "Theix, Rue de Treffléan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.13192, + 47.5206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHUSQJB", + "ref": "HUSQJB", + "name": "Saint-Pierre-Quiberon, Rue Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.99905, + 47.7203 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PRRSVSJ", + "ref": "RRSVSJ", + "name": "Brech, Rue du Pont Douar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77215, + 47.658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPVGAUH", + "ref": "PVGAUH", + "name": "Vannes, Avenue Jean-Marie Bécel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72377, + 47.9111 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PRZFTLA", + "ref": "RZFTLA", + "name": "Saint-Allouestre, Parking Salle Polyvalente", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.49312, + 47.7926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXNARGA", + "ref": "XNARGA", + "name": "Guidel, Place le Montagner", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3622, + 47.7537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZRNMMN", + "ref": "ZRNMMN", + "name": "Lorient, Cours Louis de Chazelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3622, + 47.7537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZRNMMN", + "ref": "ZRNMMN", + "name": "Lorient, Cours Louis de Chazelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38456, + 47.7039 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PAAVVNR", + "ref": "AAVVNR", + "name": "Larmor-Plage, Boulevard de Port Maria", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38456, + 47.7039 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PAAVVNR", + "ref": "AAVVNR", + "name": "Larmor-Plage, Boulevard de Port Maria", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.94377, + 47.5681 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PQDNNRD", + "ref": "QDNNRD", + "name": "Locmariaquer, Parking Wilson", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.863, + 47.6014 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWFJUNQY8TV", + "ref": "WFJUNQY8TV", + "name": "Baden, Parking de port-blanc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36597, + 47.7354 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWCCSFT", + "ref": "WCCSFT", + "name": "Lorient, Avenue de la Perrière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.12044, + 47.7617 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PSSHGWX", + "ref": "SSHGWX", + "name": "Landévant, 3 Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.12044, + 47.7617 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PSSHGWX", + "ref": "SSHGWX", + "name": "Landévant, 3 Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3669, + 47.754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PIQBKMPJAIG", + "ref": "IQBKMPJAIG", + "name": "Lorient, ZAC gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3432, + 47.7237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PVA14FOL0VC", + "ref": "VA14FOL0VC", + "name": "Locmiquélic, Parking du centre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36597, + 47.7354 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWCCSFT", + "ref": "WCCSFT", + "name": "Lorient, Avenue de la Perrière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3849, + 47.9269 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PSGQGARWR3K", + "ref": "SGQGARWR3K", + "name": "Ploërmel, secteur Rehumpol", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3849, + 47.9269 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PSGQGARWR3K", + "ref": "SGQGARWR3K", + "name": "Ploërmel, secteur Rehumpol", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.863, + 47.6014 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWFJUNQY8TV", + "ref": "WFJUNQY8TV", + "name": "Baden, Parking de port-blanc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3432, + 47.7237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PVA14FOL0VC", + "ref": "VA14FOL0VC", + "name": "Locmiquélic, Parking du centre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0116, + 47.6701 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNKDC4JEQPF", + "ref": "NKDC4JEQPF", + "name": "Auray, Parking Aqta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0116, + 47.6701 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNKDC4JEQPF", + "ref": "NKDC4JEQPF", + "name": "Auray, Parking Aqta", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.48298, + 47.5556 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTGSHMS", + "ref": "TGSHMS", + "name": "Muzillac, Place du Vieux Couvent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.94377, + 47.5681 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PQDNNRD", + "ref": "QDNNRD", + "name": "Locmariaquer, Parking Wilson", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7638, + 47.6588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PJZDKPB", + "ref": "JZDKPB", + "name": "Vannes, Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76991, + 47.525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWFEDWU", + "ref": "WFEDWU", + "name": "Sarzeau, Rue Père Marie Joseph Coudrin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.29707, + 47.5174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLYBRMC", + "ref": "LYBRMC", + "name": "La Roche-Bernard, Place du Dôme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15694, + 47.6411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZCGGHS", + "ref": "ZCGGHS", + "name": "Erdeven, Place Saint Märgen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15694, + 47.6411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZCGGHS", + "ref": "ZCGGHS", + "name": "Erdeven, Place Saint Märgen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.40196, + 47.7667 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PJXKJUW", + "ref": "JXKJUW", + "name": "Lorient, Rue Müller", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.29707, + 47.5174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLYBRMC", + "ref": "LYBRMC", + "name": "La Roche-Bernard, Place du Dôme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45204, + 47.6602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PVMWQEJ", + "ref": "VMWQEJ", + "name": "Questembert, Place Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45204, + 47.6602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PVMWQEJ", + "ref": "VMWQEJ", + "name": "Questembert, Place Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00035, + 47.5867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTTMTLH", + "ref": "TTMTLH", + "name": "Saint-Philibert, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00035, + 47.5867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTTMTLH", + "ref": "TTMTLH", + "name": "Saint-Philibert, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.43252, + 47.7023 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCURVAL", + "ref": "CURVAL", + "name": "Ploemeur, Lomener - Place Patrick Bihan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76991, + 47.525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWFEDWU", + "ref": "WFEDWU", + "name": "Sarzeau, Rue Père Marie Joseph Coudrin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36487, + 47.7519 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZTUAMX", + "ref": "ZTUAMX", + "name": "Lorient, Boulevard du Maréchal Joffre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36487, + 47.7519 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZTUAMX", + "ref": "ZTUAMX", + "name": "Lorient, Boulevard du Maréchal Joffre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.35777, + 47.7079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PVVLALM", + "ref": "VVLALM", + "name": "Port-Louis, Rue de la Brèche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77215, + 47.658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPVGAUH", + "ref": "PVGAUH", + "name": "Vannes, Avenue Jean-Marie Bécel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.43252, + 47.7023 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCURVAL", + "ref": "CURVAL", + "name": "Ploemeur, Lomener - Place Patrick Bihan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7638, + 47.6588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PJZDKPB", + "ref": "JZDKPB", + "name": "Vannes, Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.91855, + 47.6183 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYLFQUA", + "ref": "YLFQUA", + "name": "Baden, Chemin du Vrancial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.91855, + 47.6183 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYLFQUA", + "ref": "YLFQUA", + "name": "Baden, Chemin du Vrancial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.34964, + 47.7633 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PRUZCWL", + "ref": "RUZCWL", + "name": "Lanester, Avenue François Billoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.34964, + 47.7633 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PRUZCWL", + "ref": "RUZCWL", + "name": "Lanester, Avenue François Billoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15967, + 47.8342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXAEEUR", + "ref": "XAEEUR", + "name": "Languidic, Place Joseph Guillerme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7885, + 47.6705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PBJXJWS", + "ref": "BJXJWS", + "name": "Vannes, Rue Anita Conti", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.6447, + 48.0481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PK2YQ7NB5P1", + "ref": "K2YQ7NB5P1", + "name": "Guiscriff, Place centrale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.6447, + 48.0481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PK2YQ7NB5P1", + "ref": "K2YQ7NB5P1", + "name": "Guiscriff, Place centrale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1267, + 47.4779 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PVOHTCOIT7B", + "ref": "VOHTCOIT7B", + "name": "Quiberon, Parking océan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.4544, + 47.7032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZWSHUHFMQW", + "ref": "ZWSHUHFMQW", + "name": "Ploemeur, Place kermabon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5899, + 47.7312 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLYFYJOBRX4", + "ref": "LYFYJOBRX4", + "name": "Elven, Médiathèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5899, + 47.7312 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLYFYJOBRX4", + "ref": "LYFYJOBRX4", + "name": "Elven, Médiathèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3663, + 47.7542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PD1AOYXWWDU", + "ref": "D1AOYXWWDU", + "name": "Lorient, Parvis Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3663, + 47.7542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PD1AOYXWWDU", + "ref": "D1AOYXWWDU", + "name": "Lorient, Parvis Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3669, + 47.754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PIQBKMPJAIG", + "ref": "IQBKMPJAIG", + "name": "Lorient, ZAC gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1267, + 47.4779 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PVOHTCOIT7B", + "ref": "VOHTCOIT7B", + "name": "Quiberon, Parking océan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.341, + 47.8103 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFTJNQSUBFI", + "ref": "FTJNQSUBFI", + "name": "Caudan, Rue Jean-Pierre Calloc'h", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.341, + 47.8103 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFTJNQSUBFI", + "ref": "FTJNQSUBFI", + "name": "Caudan, Rue Jean-Pierre Calloc'h", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.4544, + 47.7032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZWSHUHFMQW", + "ref": "ZWSHUHFMQW", + "name": "Ploemeur, Place kermabon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38746, + 47.7427 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYDWRKB", + "ref": "YDWRKB", + "name": "Lorient, Rue de Lanveur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.37788, + 47.7532 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PKHNUDJ", + "ref": "KHNUDJ", + "name": "Lorient, Rue de Villeneuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.37338, + 47.7318 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNFGWPG", + "ref": "NFGWPG", + "name": "Lorient, Rue Raymond du Rallier du Baty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36004, + 47.749 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWUMDJK", + "ref": "WUMDJK", + "name": "Lorient, Place Anatole Le Braz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36004, + 47.749 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWUMDJK", + "ref": "WUMDJK", + "name": "Lorient, Place Anatole Le Braz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38746, + 47.7427 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYDWRKB", + "ref": "YDWRKB", + "name": "Lorient, Rue de Lanveur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.34107, + 47.7743 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PDNSWQT", + "ref": "DNSWQT", + "name": "Lanester, Rue Youri Gagarine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.35627, + 47.7465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMJUDGW", + "ref": "MJUDGW", + "name": "Lorient, Place d'Armes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.35627, + 47.7465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMJUDGW", + "ref": "MJUDGW", + "name": "Lorient, Place d'Armes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75518, + 47.6507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGWMRND", + "ref": "GWMRND", + "name": "Vannes, Rue Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82373, + 47.6269 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNEDQCA", + "ref": "NEDQCA", + "name": "Arradon, Plessis d'Arradon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82373, + 47.6269 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNEDQCA", + "ref": "NEDQCA", + "name": "Arradon, Plessis d'Arradon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38592, + 47.7613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWZXSRJ", + "ref": "WZXSRJ", + "name": "Lorient, Place de La Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38592, + 47.7613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWZXSRJ", + "ref": "WZXSRJ", + "name": "Lorient, Place de La Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.34107, + 47.7743 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PDNSWQT", + "ref": "DNSWQT", + "name": "Lanester, Rue Youri Gagarine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36581, + 47.7489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYVPZUN", + "ref": "YVPZUN", + "name": "Lorient, Parking Hôtel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.78023, + 47.6326 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCVJQYU", + "ref": "CVJQYU", + "name": "Vannes, Avenue Maréchal de France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.78023, + 47.6326 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCVJQYU", + "ref": "CVJQYU", + "name": "Vannes, Avenue Maréchal de France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96514, + 48.0714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCYYADE", + "ref": "CYYADE", + "name": "Pontivy, Quai des Récollets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.42677, + 47.7369 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXQMKFJ", + "ref": "XQMKFJ", + "name": "Ploemeur, Allée Laurent Esvan - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96514, + 48.0714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCYYADE", + "ref": "CYYADE", + "name": "Pontivy, Quai des Récollets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.42677, + 47.7369 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXQMKFJ", + "ref": "XQMKFJ", + "name": "Ploemeur, Allée Laurent Esvan - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.8333, + 47.5019 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PQJSQBM", + "ref": "QJSQBM", + "name": "Saint-Gildas-de-Rhuys, Rue Saint Goustan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3103, + 47.7122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEETZMB", + "ref": "EETZMB", + "name": "Riantec, Rue Le Gloahec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3103, + 47.7122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEETZMB", + "ref": "EETZMB", + "name": "Riantec, Rue Le Gloahec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41844, + 47.8032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMCYRPV", + "ref": "MCYRPV", + "name": "Saint-Marcel, Rue de la Bouie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41844, + 47.8032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMCYRPV", + "ref": "MCYRPV", + "name": "Saint-Marcel, Rue de la Bouie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.40389, + 48.0434 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNWTLJV", + "ref": "NWTLJV", + "name": "Guilliers, Place Glaharon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.525, + 48.0527 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLXYAI8QKSC", + "ref": "LXYAI8QKSC", + "name": "Mohon, Parking du bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5493, + 47.9537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PAVMWS0NNYA", + "ref": "AVMWS0NNYA", + "name": "Josselin, Place Georges Lamour - Ruelle Du Tertre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5493, + 47.9537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PAVMWS0NNYA", + "ref": "AVMWS0NNYA", + "name": "Josselin, Place Georges Lamour - Ruelle Du Tertre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73063, + 47.6586 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PVZHEMA", + "ref": "VZHEMA", + "name": "Vannes, Avenue Général Délestraint", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.26152, + 47.8893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFFTJZD", + "ref": "FFTJZD", + "name": "Lanvaudan, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.37608, + 47.7581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLMHCBG", + "ref": "LMHCBG", + "name": "Pleucadeuc, Rue Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97227, + 47.9577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PUXSADP", + "ref": "UXSADP", + "name": "Pluméliau, Rue de la Ferrière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97227, + 47.9577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PUXSADP", + "ref": "UXSADP", + "name": "Pluméliau, Rue de la Ferrière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.37608, + 47.7581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLMHCBG", + "ref": "LMHCBG", + "name": "Pleucadeuc, Rue Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76628, + 47.7582 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHDBBKQ", + "ref": "HDBBKQ", + "name": "Locqueltas, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.78828, + 47.6515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZFUQTJ", + "ref": "ZFUQTJ", + "name": "Vannes, Rue Tamara de Lempicka", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73063, + 47.6586 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PVZHEMA", + "ref": "VZHEMA", + "name": "Vannes, Avenue Général Délestraint", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7885, + 47.6705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PBJXJWS", + "ref": "BJXJWS", + "name": "Vannes, Rue Anita Conti", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73722, + 47.6903 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHGDFBF", + "ref": "HGDFBF", + "name": "Saint-Avé, Rue 5 Août 1944", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38363, + 47.8107 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEUTTDT", + "ref": "EUTTDT", + "name": "Malestroit, Place du Docteur Jean Queinnec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.78828, + 47.6515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZFUQTJ", + "ref": "ZFUQTJ", + "name": "Vannes, Rue Tamara de Lempicka", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87981, + 48.0671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLNEXBM", + "ref": "LNEXBM", + "name": "Noyal-Pontivy, Avenue de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.02919, + 47.5893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEPRULV", + "ref": "EPRULV", + "name": "La Trinité-sur-Mer, Cours des Quais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.8333, + 47.5019 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PQJSQBM", + "ref": "QJSQBM", + "name": "Saint-Gildas-de-Rhuys, Rue Saint Goustan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38363, + 47.8107 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEUTTDT", + "ref": "EUTTDT", + "name": "Malestroit, Place du Docteur Jean Queinnec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.02919, + 47.5893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEPRULV", + "ref": "EPRULV", + "name": "La Trinité-sur-Mer, Cours des Quais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87981, + 48.0671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLNEXBM", + "ref": "LNEXBM", + "name": "Noyal-Pontivy, Avenue de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.26152, + 47.8893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFFTJZD", + "ref": "FFTJZD", + "name": "Lanvaudan, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.62943, + 47.5793 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHLLWEY", + "ref": "HLLWEY", + "name": "Surzur, Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.37338, + 47.7318 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNFGWPG", + "ref": "NFGWPG", + "name": "Lorient, Rue Raymond du Rallier du Baty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38255, + 47.7362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PDXRKQV", + "ref": "DXRKQV", + "name": "Lorient, Rue Moïse Le Bihan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.37788, + 47.7532 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PKHNUDJ", + "ref": "KHNUDJ", + "name": "Lorient, Rue de Villeneuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.525, + 48.0527 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLXYAI8QKSC", + "ref": "LXYAI8QKSC", + "name": "Mohon, Parking du bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76372, + 47.7163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPQFPGY", + "ref": "PQFPGY", + "name": "Meucon, Route de Vannes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76372, + 47.7163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPQFPGY", + "ref": "PQFPGY", + "name": "Meucon, Route de Vannes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.35627, + 47.7465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMJUDGW", + "ref": "MJUDGW", + "name": "Lorient, Place d'Armes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.47093, + 47.4821 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPWZCTQ", + "ref": "PWZCTQ", + "name": "Pénestin, Boulevard de l'Océan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35816, + 47.5803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWDVXQA", + "ref": "WDVXQA", + "name": "Péaule, Place Saint Gaudence", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35816, + 47.5803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWDVXQA", + "ref": "WDVXQA", + "name": "Péaule, Place Saint Gaudence", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38255, + 47.7362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PDXRKQV", + "ref": "DXRKQV", + "name": "Lorient, Rue Moïse Le Bihan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.62943, + 47.5793 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHLLWEY", + "ref": "HLLWEY", + "name": "Surzur, Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76628, + 47.7582 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHDBBKQ", + "ref": "HDBBKQ", + "name": "Locqueltas, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.35627, + 47.7465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMJUDGW", + "ref": "MJUDGW", + "name": "Lorient, Place d'Armes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3596, + 47.7305 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTCSBVD", + "ref": "TCSBVD", + "name": "Lorient, Boulevard Abbé Louis le Cam", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.3596, + 47.7305 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTCSBVD", + "ref": "TCSBVD", + "name": "Lorient, Boulevard Abbé Louis le Cam", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.47093, + 47.4821 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPWZCTQ", + "ref": "PWZCTQ", + "name": "Pénestin, Boulevard de l'Océan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73722, + 47.6903 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHGDFBF", + "ref": "HGDFBF", + "name": "Saint-Avé, Rue 5 Août 1944", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10149, + 47.631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PESZPPD", + "ref": "ESZPPD", + "name": "Rieux, Rue de la Briqueterie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10149, + 47.631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PESZPPD", + "ref": "ESZPPD", + "name": "Rieux, Rue de la Briqueterie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.81222, + 47.8176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGEPWPS", + "ref": "GEPWPS", + "name": "Colpo, Rue Nationale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.81222, + 47.8176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGEPWPS", + "ref": "GEPWPS", + "name": "Colpo, Rue Nationale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01824, + 47.8748 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PUUDAHB", + "ref": "UUDAHB", + "name": "Baud, Rue du pont clas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.44269536, + 47.80292247 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMYZLMIBAEA", + "ref": "MYZLMIBAEA", + "name": "Gestel, Rue de Quéven", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.39755, + 47.4808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYFURSC", + "ref": "YFURSC", + "name": "Camoël, Rue Paul Ladmirault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.754, + 47.6586 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNNRVKY", + "ref": "NNRVKY", + "name": "Vannes, Place Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.754, + 47.6586 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNNRVKY", + "ref": "NNRVKY", + "name": "Vannes, Place Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.544285, + 48.096079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLJKNWD", + "ref": "LJKNWD", + "name": "La Trinité-Porhoet, Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.41064, + 48.0606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PSAMTCM", + "ref": "SAMTCM", + "name": "Priziac, Rue du Bel Air", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1275, + 48.1642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PBGPYPT", + "ref": "BGPYPT", + "name": "Sainte-Brigitte, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1275, + 48.1642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PBGPYPT", + "ref": "BGPYPT", + "name": "Sainte-Brigitte, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75233, + 48.068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMWDFEN", + "ref": "MWDFEN", + "name": "Rohan, Rue de Kerentree", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75233, + 48.068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMWDFEN", + "ref": "MWDFEN", + "name": "Rohan, Rue de Kerentree", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.25156, + 47.6964 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHWGLVR", + "ref": "HWGLVR", + "name": "Plouhinec, Rue des Roseaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.544285, + 48.096079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLJKNWD", + "ref": "LJKNWD", + "name": "La Trinité-Porhoet, Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.34054, + 48.0995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCHQQTM", + "ref": "CHQQTM", + "name": "Saint-Tugdual, Route de l'Abbaye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.34054, + 48.0995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCHQQTM", + "ref": "CHQQTM", + "name": "Saint-Tugdual, Route de l'Abbaye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.4332, + 47.9944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGVDKQE", + "ref": "GVDKQE", + "name": "Meslan, Rue de Beg er Lann", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.33653, + 47.9172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PRJBZTG", + "ref": "RJBZTG", + "name": "Plouay, Rue Hélène Le Chaton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.33653, + 47.9172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PRJBZTG", + "ref": "RJBZTG", + "name": "Plouay, Rue Hélène Le Chaton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58161, + 47.5179 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLJZLHJ", + "ref": "LJZLHJ", + "name": "Damgan, Boulevard de l'Océan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.4332, + 47.9944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGVDKQE", + "ref": "GVDKQE", + "name": "Meslan, Rue de Beg er Lann", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.950611, + 47.704145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWMRUPK", + "ref": "WMRUPK", + "name": "Sainte-Anne-d'Auray, Rue de Vannes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.06502, + 47.9813 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWHRADG", + "ref": "WHRADG", + "name": "Bieuzy, Place Ernest le Moine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.39755, + 47.4808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYFURSC", + "ref": "YFURSC", + "name": "Camoël, Rue Paul Ladmirault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3536, + 47.6365 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYHQTBN", + "ref": "YHQTBN", + "name": "Limerzel, Place de L'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21965, + 47.7134 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMYDKMD", + "ref": "MYDKMD", + "name": "Peillac, Rue de la Citée des Fleurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.68978, + 47.7782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPCHBYA", + "ref": "PCHBYA", + "name": "Plaudren, Rue Georges Cadoudal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45708, + 47.5924 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMEFKNE", + "ref": "MEFKNE", + "name": "Noyal-Muzillac, Rue du Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04573, + 47.9257 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNDWAGL", + "ref": "NDWAGL", + "name": "Saint-Barthélemy, Rue de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.45708, + 47.5924 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMEFKNE", + "ref": "MEFKNE", + "name": "Noyal-Muzillac, Rue du Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18881, + 48.0709 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPYLBEV", + "ref": "PYLBEV", + "name": "Locmalo, Rue Jean Le Bris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.18881, + 48.0709 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPYLBEV", + "ref": "PYLBEV", + "name": "Locmalo, Rue Jean Le Bris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.04573, + 47.9257 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNDWAGL", + "ref": "NDWAGL", + "name": "Saint-Barthélemy, Rue de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1101, + 47.9792 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFWUXXF", + "ref": "FWUXXF", + "name": "Melrand, Rue Saint Laurent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1101, + 47.9792 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFWUXXF", + "ref": "FWUXXF", + "name": "Melrand, Rue Saint Laurent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.3536, + 47.6365 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYHQTBN", + "ref": "YHQTBN", + "name": "Limerzel, Place de L'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28543, + 47.6308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXJVQBA", + "ref": "XJVQBA", + "name": "Caden, Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28543, + 47.6308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXJVQBA", + "ref": "XJVQBA", + "name": "Caden, Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.65063, + 47.7031 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZSCHEU", + "ref": "ZSCHEU", + "name": "Saint-Nolff, Place Saint Mayeuil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.65063, + 47.7031 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZSCHEU", + "ref": "ZSCHEU", + "name": "Saint-Nolff, Place Saint Mayeuil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.07039, + 47.653 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PRWCLSX", + "ref": "RWCLSX", + "name": "Ploemel, Rue du Lenno", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.07039, + 47.653 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PRWCLSX", + "ref": "RWCLSX", + "name": "Ploemel, Rue du Lenno", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.40389, + 48.0434 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNWTLJV", + "ref": "NWTLJV", + "name": "Guilliers, Place Glaharon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.06502, + 47.9813 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWHRADG", + "ref": "WHRADG", + "name": "Bieuzy, Place Ernest le Moine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.88602, + 47.8614 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNBPTPB", + "ref": "NBPTPB", + "name": "Plumelin, Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.58161, + 47.5179 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLJZLHJ", + "ref": "LJZLHJ", + "name": "Damgan, Boulevard de l'Océan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.41064, + 48.0606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PSAMTCM", + "ref": "SAMTCM", + "name": "Priziac, Rue du Bel Air", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5633, + 47.9386 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTAVUZX", + "ref": "TAVUZX", + "name": "Guégon, Rue des Rosiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.68495, + 47.9879 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCETTJG", + "ref": "CETTJG", + "name": "Pleugriffet, Rue Anne de Bretagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.07873, + 47.5846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCLYHGY", + "ref": "CLYHGY", + "name": "Carnac, Place de la Chapelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.31849, + 48.008 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYVXMZJ", + "ref": "YVXMZJ", + "name": "Kernascléden, Rue des Rohan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.31849, + 48.008 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYVXMZJ", + "ref": "YVXMZJ", + "name": "Kernascléden, Rue des Rohan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38936, + 48.1453 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PQQYWJL", + "ref": "QQYWJL", + "name": "Plouray, Rue d'Elle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.38936, + 48.1453 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PQQYWJL", + "ref": "QQYWJL", + "name": "Plouray, Rue d'Elle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5633, + 47.9386 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTAVUZX", + "ref": "TAVUZX", + "name": "Guégon, Rue des Rosiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.42268, + 47.8669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMNEHHV", + "ref": "MNEHHV", + "name": "La Chapelle-Caro, Place de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.49935, + 48.0322 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHGVJHQ", + "ref": "HGVJHQ", + "name": "Le Faouët, Rue Cours Carré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.27615, + 47.8047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLPZGQN", + "ref": "LPZGQN", + "name": "Hennebont, Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00026, + 47.8482 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PJRXYXK", + "ref": "JRXYXK", + "name": "Camors, Rue du Vieux Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.49935, + 48.0322 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHGVJHQ", + "ref": "HGVJHQ", + "name": "Le Faouët, Rue Cours Carré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.46269, + 48.1395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTZEPFV", + "ref": "TZEPFV", + "name": "Ménéac, Place du Plessis de Genedan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.46269, + 48.1395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTZEPFV", + "ref": "TZEPFV", + "name": "Ménéac, Place du Plessis de Genedan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.42268, + 47.8669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMNEHHV", + "ref": "MNEHHV", + "name": "La Chapelle-Caro, Place de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.50753, + 47.8221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PQDCXYC", + "ref": "QDCXYC", + "name": "Sérent, Rue Général de Kerhué", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77101, + 47.8808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PJFWBRE", + "ref": "JFWBRE", + "name": "Bignan, Rue Comte de Lanjuinais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.50753, + 47.8221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PQDCXYC", + "ref": "QDCXYC", + "name": "Sérent, Rue Général de Kerhué", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.68495, + 47.9879 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCETTJG", + "ref": "CETTJG", + "name": "Pleugriffet, Rue Anne de Bretagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.86933, + 47.6557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFDWQJB", + "ref": "FDWQJB", + "name": "Ploeren, Rue des Deux Moulins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95916, + 47.6736 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTLKZQJ", + "ref": "TLKZQJ", + "name": "Pluneret, Rue Marie Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28118, + 47.9191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEGQHWV", + "ref": "EGQHWV", + "name": "Augan, Rue du Verger", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.95916, + 47.6736 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTLKZQJ", + "ref": "TLKZQJ", + "name": "Pluneret, Rue Marie Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.88602, + 47.8614 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNBPTPB", + "ref": "NBPTPB", + "name": "Plumelin, Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.12166, + 47.4817 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PATFAFZ", + "ref": "ATFAFZ", + "name": "Quiberon, Place Varquez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.12166, + 47.4817 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PATFAFZ", + "ref": "ATFAFZ", + "name": "Quiberon, Place Varquez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.29572, + 47.6766 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PUWNFHN", + "ref": "UWNFHN", + "name": "Malansac, Rue des Forges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.27615, + 47.8047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLPZGQN", + "ref": "LPZGQN", + "name": "Hennebont, Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36112, + 47.7498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYPKBZP", + "ref": "YPKBZP", + "name": "Lorient, Place Alsace Lorraine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.36112, + 47.7498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PYPKBZP", + "ref": "YPKBZP", + "name": "Lorient, Place Alsace Lorraine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28118, + 47.9191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEGQHWV", + "ref": "EGQHWV", + "name": "Augan, Rue du Verger", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.86933, + 47.6557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFDWQJB", + "ref": "FDWQJB", + "name": "Ploeren, Rue des Deux Moulins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.950611, + 47.704145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWMRUPK", + "ref": "WMRUPK", + "name": "Sainte-Anne-d'Auray, Rue de Vannes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.29572, + 47.6766 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PUWNFHN", + "ref": "UWNFHN", + "name": "Malansac, Rue des Forges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.34411, + 47.481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPPYXVZ", + "ref": "PPYXVZ", + "name": "Férel, Rue du Pré de la Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.34411, + 47.481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPPYXVZ", + "ref": "PPYXVZ", + "name": "Férel, Rue du Pré de la Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98203, + 47.6686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZJSCSE", + "ref": "ZJSCSE", + "name": "Auray, Parking Kériolet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.98203, + 47.6686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZJSCSE", + "ref": "ZJSCSE", + "name": "Auray, Parking Kériolet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.07873, + 47.5846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCLYHGY", + "ref": "CLYHGY", + "name": "Carnac, Place de la Chapelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.25156, + 47.6964 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHWGLVR", + "ref": "HWGLVR", + "name": "Plouhinec, Rue des Roseaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89082, + 48.1079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXKAKPT", + "ref": "XKAKPT", + "name": "Saint-Gérand, Rue de la Croix Macé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89082, + 48.1079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXKAKPT", + "ref": "XKAKPT", + "name": "Saint-Gérand, Rue de la Croix Macé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1234, + 47.9059 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTHSFCS", + "ref": "THSFCS", + "name": "Guer, Place de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.47243, + 48.014 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PQRHCVG", + "ref": "QRHCVG", + "name": "Saint-Malo-des-Trois-Fontaines, Avenue Porhoe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.23566, + 47.736 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PQKXRZR", + "ref": "QKXRZR", + "name": "Merlevenez, Rue du Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.07617, + 47.7484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZMJPKM", + "ref": "ZMJPKM", + "name": "Landaul, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5707, + 47.6753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCHEKHW", + "ref": "CHEKHW", + "name": "Sulniac, 7 rue René Cassin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5707, + 47.6753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCHEKHW", + "ref": "CHEKHW", + "name": "Sulniac, 7 rue René Cassin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.23566, + 47.736 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PQKXRZR", + "ref": "QKXRZR", + "name": "Merlevenez, Rue du Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.4488, + 47.6415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PRNFCWQ", + "ref": "RNFCWQ", + "name": "Groix, Parking Port Tudy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.4488, + 47.6415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PRNFCWQ", + "ref": "RNFCWQ", + "name": "Groix, Parking Port Tudy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.24881, + 47.8279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PBJDCGG", + "ref": "BJDCGG", + "name": "Inzinzac-Lochrist, Rue du Blavet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.71709, + 48.1266 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGBVXDN", + "ref": "GBVXDN", + "name": "Roudouallec, Rue Nicolas Le Grand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.24881, + 47.8279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PBJDCGG", + "ref": "BJDCGG", + "name": "Inzinzac-Lochrist, Rue du Blavet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.39355, + 47.74 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PBEDFUJ", + "ref": "BEDFUJ", + "name": "Lorient, Rue Maurice Thorez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82046, + 48.1233 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEKGZCS", + "ref": "EKGZCS", + "name": "Saint-Gonnery, Place Pierre Anne Beurel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.39355, + 47.74 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PBEDFUJ", + "ref": "BEDFUJ", + "name": "Lorient, Rue Maurice Thorez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.91569, + 47.6531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PUPKBXY", + "ref": "UPKBXY", + "name": "Plougoumelen, Rue des Chaumières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.91569, + 47.6531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PUPKBXY", + "ref": "UPKBXY", + "name": "Plougoumelen, Rue des Chaumières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82046, + 48.1233 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEKGZCS", + "ref": "EKGZCS", + "name": "Saint-Gonnery, Place Pierre Anne Beurel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.27921, + 47.726 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHFJGYG", + "ref": "HFJGYG", + "name": "Saint-Gravé, Parking route de Saint Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.27921, + 47.726 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHFJGYG", + "ref": "HFJGYG", + "name": "Saint-Gravé, Parking route de Saint Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15332, + 47.5449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PDWXWZJ", + "ref": "DWXWZJ", + "name": "Saint-Dolay, Rue de Coueslan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.07617, + 47.7484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PZMJPKM", + "ref": "ZMJPKM", + "name": "Landaul, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.41565, + 47.7903 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLYQNFS", + "ref": "LYQNFS", + "name": "Quéven, Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.41565, + 47.7903 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLYQNFS", + "ref": "LYQNFS", + "name": "Quéven, Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1234, + 47.9059 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTHSFCS", + "ref": "THSFCS", + "name": "Guer, Place de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.84266, + 47.7581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXAYSUU", + "ref": "XAYSUU", + "name": "Grand-Champ, Rue de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.84266, + 47.7581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PXAYSUU", + "ref": "XAYSUU", + "name": "Grand-Champ, Rue de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72319, + 47.8444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHRLQKX", + "ref": "HRLQKX", + "name": "Saint-Jean-Brévelay, Rue des Genêts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.008798, + 47.669805 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGKP4F0ALTF", + "ref": "GKP4F0ALTF", + "name": "Auray, Porte Océane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.008798, + 47.669805 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGKP4F0ALTF", + "ref": "GKP4F0ALTF", + "name": "Auray, Porte Océane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.01824, + 47.8748 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PUUDAHB", + "ref": "UUDAHB", + "name": "Baud, Rue du pont clas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77606, + 47.5222 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWMNCFY", + "ref": "WMNCFY", + "name": "Sarzeau, Rue Raymond Marcellin - PEM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.72319, + 47.8444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PHRLQKX", + "ref": "HRLQKX", + "name": "Saint-Jean-Brévelay, Rue des Genêts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.42737, + 47.7346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEVRKJN", + "ref": "EVRKJN", + "name": "Ploemeur, Place Anne de Bretagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96661, + 48.065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PADZEDJ", + "ref": "ADZEDJ", + "name": "Pontivy, Place Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.42737, + 47.7346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEVRKJN", + "ref": "EVRKJN", + "name": "Ploemeur, Place Anne de Bretagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96661, + 48.065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PADZEDJ", + "ref": "ADZEDJ", + "name": "Pontivy, Place Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.48298, + 47.5556 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PTGSHMS", + "ref": "TGSHMS", + "name": "Muzillac, Place du Vieux Couvent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.80442, + 47.6975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLTFJPE", + "ref": "LTFJPE", + "name": "Plescop, Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.80442, + 47.6975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLTFJPE", + "ref": "LTFJPE", + "name": "Plescop, Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77606, + 47.5222 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PWMNCFY", + "ref": "WMNCFY", + "name": "Sarzeau, Rue Raymond Marcellin - PEM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.24083, + 47.7641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMNFMWG", + "ref": "MNFMWG", + "name": "Kervignac, Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.24083, + 47.7641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMNFMWG", + "ref": "MNFMWG", + "name": "Kervignac, Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.71709, + 48.1266 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGBVXDN", + "ref": "GBVXDN", + "name": "Roudouallec, Rue Nicolas Le Grand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15332, + 47.5449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PDWXWZJ", + "ref": "DWXWZJ", + "name": "Saint-Dolay, Rue de Coueslan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10625, + 47.6672 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PSKSKQS", + "ref": "SKSKQS", + "name": "Saint-Perreux, Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.10407, + 47.7102 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PUNJRKT", + "ref": "UNJRKT", + "name": "Locoal-Mendon, Rue de Kroas Er Bleu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.68107, + 47.7425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEKCQMR", + "ref": "EKCQMR", + "name": "Monterblanc, Place Anne de Bretagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59143, + 47.7926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PANVVBU", + "ref": "ANVVBU", + "name": "Trédion, Place Saint Christophe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.68107, + 47.7425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEKCQMR", + "ref": "EKCQMR", + "name": "Monterblanc, Place Anne de Bretagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.39986, + 47.8334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEFEJZZ", + "ref": "EFEJZZ", + "name": "Pont-Scorff, Rue Théophile Guyomar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.39986, + 47.8334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PEFEJZZ", + "ref": "EFEJZZ", + "name": "Pont-Scorff, Rue Théophile Guyomar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.59143, + 47.7926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PANVVBU", + "ref": "ANVVBU", + "name": "Trédion, Place Saint Christophe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.10407, + 47.7102 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PUNJRKT", + "ref": "UNJRKT", + "name": "Locoal-Mendon, Rue de Kroas Er Bleu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.68978, + 47.7782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PPCHBYA", + "ref": "PCHBYA", + "name": "Plaudren, Rue Georges Cadoudal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7875, + 47.7564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PSPXABC", + "ref": "SPXABC", + "name": "Locmaria-Grand-Champ, Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.09225, + 48.0281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNCDSEP", + "ref": "NCDSEP", + "name": "Guern, Rue de la Vallée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7875, + 47.7564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PSPXABC", + "ref": "SPXABC", + "name": "Locmaria-Grand-Champ, Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.44269536, + 47.80292247 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMYZLMIBAEA", + "ref": "MYZLMIBAEA", + "name": "Gestel, Rue de Quéven", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64136, + 47.8915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFSRMLH", + "ref": "FSRMLH", + "name": "Guéhenno, Parking Rue Nationale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.32281, + 47.8756 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PDDQTSB", + "ref": "DDQTSB", + "name": "Calan, Rue Marc Le Floch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.35777, + 47.7079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PVVLALM", + "ref": "VVLALM", + "name": "Port-Louis, Rue de la Brèche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.32281, + 47.8756 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PDDQTSB", + "ref": "DDQTSB", + "name": "Calan, Rue Marc Le Floch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64136, + 47.8915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PFSRMLH", + "ref": "FSRMLH", + "name": "Guéhenno, Parking Rue Nationale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.47243, + 48.014 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PQRHCVG", + "ref": "QRHCVG", + "name": "Saint-Malo-des-Trois-Fontaines, Avenue Porhoe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.21965, + 47.7134 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PMYDKMD", + "ref": "MYDKMD", + "name": "Peillac, Rue de la Citée des Fleurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.54198, + 47.6887 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PSWHNTH", + "ref": "SWHNTH", + "name": "La Vraie-Croix, Rue du Tostal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.61417, + 47.6824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PASJVEZ", + "ref": "ASJVEZ", + "name": "Treffléan, Rue du Dévehat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.84641555, + 47.59264888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLWQYYRAB2F", + "ref": "LWQYYRAB2F", + "name": "Ile-aux-Moines, Kerscot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.81932, + 47.9187 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PATFEQY", + "ref": "ATFEQY", + "name": "Moréac, Place de la Résistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.61417, + 47.6824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PASJVEZ", + "ref": "ASJVEZ", + "name": "Treffléan, Rue du Dévehat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.84641555, + 47.59264888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLWQYYRAB2F", + "ref": "LWQYYRAB2F", + "name": "Ile-aux-Moines, Kerscot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.84641555, + 47.59264888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLWQYYRAB2F", + "ref": "LWQYYRAB2F", + "name": "Ile-aux-Moines, Kerscot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.84641555, + 47.59264888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PLWQYYRAB2F", + "ref": "LWQYYRAB2F", + "name": "Ile-aux-Moines, Kerscot", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97686, + 47.9083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGTDFXE", + "ref": "GTDFXE", + "name": "Guénin, Rue de Maneguen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.97686, + 47.9083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGTDFXE", + "ref": "GTDFXE", + "name": "Guénin, Rue de Maneguen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.103447, + 47.486785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCWX3CAM47B", + "ref": "CWX3CAM47B", + "name": "Quiberon, Port-Haliguen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.103447, + 47.486785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PCWX3CAM47B", + "ref": "CWX3CAM47B", + "name": "Quiberon, Port-Haliguen", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.09225, + 48.0281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PNCDSEP", + "ref": "NCDSEP", + "name": "Guern, Rue de la Vallée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2128, + 47.739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PULLLGP", + "ref": "ULLLGP", + "name": "Fougerêts, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2128, + 47.739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PULLLGP", + "ref": "ULLLGP", + "name": "Fougerêts, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64181, + 47.838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGJHPTX", + "ref": "GJHPTX", + "name": "Plumelec, Rue des Martyrs de la Résistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64181, + 47.838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PGJHPTX", + "ref": "GJHPTX", + "name": "Plumelec, Rue des Martyrs de la Résistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10625, + 47.6672 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PSKSKQS", + "ref": "SKSKQS", + "name": "Saint-Perreux, Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.54198, + 47.6887 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PSWHNTH", + "ref": "SWHNTH", + "name": "La Vraie-Croix, Rue du Tostal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.49143, + 48.1038 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PAAYULB", + "ref": "AAYULB", + "name": "Langonnet, Place Morvan Leiz Breizh", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.49143, + 48.1038 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS56PAAYULB", + "ref": "AAYULB", + "name": "Langonnet, Place Morvan Leiz Breizh", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.588364, + 44.839064 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKQBBVHXLQF", + "ref": "KQBBVHXLQF", + "name": "Marty Hôtel Bordeaux, Tapestry Collection By Hilton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.588364, + 44.839064 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKQBBVHXLQF", + "ref": "KQBBVHXLQF", + "name": "Marty Hôtel Bordeaux, Tapestry Collection By Hilton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.49075, + 48.6196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQSGFVS", + "ref": "QSGFVS", + "name": "Marlenheim, Usine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510859, + 44.844837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIMWW8BBCHFQP", + "ref": "LLIMWW8BBCHFQP", + "name": "Floirac, 1 Avenue Salvador Allende", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61739, + 43.380502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH1G0Y8XBHP", + "ref": "H1G0Y8XBHP", + "name": "Mourenx, 25 Avenue Charles Moureu - 2835", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.967053, + 44.490287 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKSIC9LD3KI", + "ref": "KSIC9LD3KI", + "name": "Montayral, 11 Avenue de Fumel - 3310", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61739, + 43.380502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH1G0Y8XBHP", + "ref": "H1G0Y8XBHP", + "name": "Mourenx, 25 Avenue Charles Moureu - 2835", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260843, + 44.543644 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAM8YTTW3I", + "ref": "VAM8YTTW3I", + "name": "Langon, 4 Avenue Léo Lagrange - 3331", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.614337, + 43.179896 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIFBAAFS12E", + "ref": "IFBAAFS12E", + "name": "Oloron-Sainte-Marie, 90 Rue Oustalots - 3897", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260843, + 44.543644 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAM8YTTW3I", + "ref": "VAM8YTTW3I", + "name": "Langon, 4 Avenue Léo Lagrange - 3331", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06582016, + 44.58409469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJOZZJYCYP2", + "ref": "JOZZJYCYP2", + "name": "La Réole, Frimont Ouest", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06582016, + 44.58409469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJOZZJYCYP2", + "ref": "JOZZJYCYP2", + "name": "La Réole, Frimont Ouest", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06582016, + 44.58409469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJOZZJYCYP2", + "ref": "JOZZJYCYP2", + "name": "La Réole, Frimont Ouest", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06582016, + 44.58409469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJOZZJYCYP2", + "ref": "JOZZJYCYP2", + "name": "La Réole, Frimont Ouest", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06582016, + 44.58409469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJOZZJYCYP2", + "ref": "JOZZJYCYP2", + "name": "La Réole, Frimont Ouest", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06582016, + 44.58409469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJOZZJYCYP2", + "ref": "JOZZJYCYP2", + "name": "La Réole, Frimont Ouest", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.030542, + 43.706265 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPEPRHZRXHR", + "ref": "PEPRHZRXHR", + "name": "Dax, 78 Route de Montfort - 3323", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.930379, + 45.297541 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEUYZVQKVQM", + "ref": "EUYZVQKVQM", + "name": "Lesparre, 40/42 Route de Bordeaux - 3327", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.030542, + 43.706265 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPEPRHZRXHR", + "ref": "PEPRHZRXHR", + "name": "Dax, 78 Route de Montfort - 3323", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.531168, + 44.722705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHVQK2HM8GQ", + "ref": "HVQK2HM8GQ", + "name": "Martillac, Chemin de la Grange - 2860", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.531168, + 44.722705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHVQK2HM8GQ", + "ref": "HVQK2HM8GQ", + "name": "Martillac, Chemin de la Grange - 2860", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.614337, + 43.179896 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIFBAAFS12E", + "ref": "IFBAAFS12E", + "name": "Oloron-Sainte-Marie, 90 Rue Oustalots - 3897", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.967053, + 44.490287 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKSIC9LD3KI", + "ref": "KSIC9LD3KI", + "name": "Montayral, 11 Avenue de Fumel - 3310", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260843, + 44.543644 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAM8YTTW3I", + "ref": "VAM8YTTW3I", + "name": "Langon, 4 Avenue Léo Lagrange - 3331", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260843, + 44.543644 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAM8YTTW3I", + "ref": "VAM8YTTW3I", + "name": "Langon, 4 Avenue Léo Lagrange - 3331", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510859, + 44.844837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIMWW8BBCHFQP", + "ref": "LLIMWW8BBCHFQP", + "name": "Floirac, 1 Avenue Salvador Allende", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.63247, + 43.666494 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD8WHXLJJOC", + "ref": "D8WHXLJJOC", + "name": "Arles, 5 rue olivier leclerc - 2707", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.101268, + 44.568995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEHNKRRPQNR", + "ref": "EHNKRRPQNR", + "name": "Gap, 90 avenue d'Embrun - 3273", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.101268, + 44.568995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEHNKRRPQNR", + "ref": "EHNKRRPQNR", + "name": "Gap, 90 avenue d'Embrun - 3273", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.177948, + 44.069971 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD0AIJIWGHD", + "ref": "D0AIJIWGHD", + "name": "La Ciotat, 87 Chemin de la Pépinière - 3553", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.391725, + 43.566937 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEHNKRRPQNR", + "ref": "EHNKRRPQNR", + "name": "Gap, 90 avenue d'Embrun - 3273", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978897, + 43.499238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUWGNCGZ3CU", + "ref": "UWGNCGZ3CU", + "name": "Istres, 4 Ronde des Florins - 3182", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978897, + 43.499238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUWGNCGZ3CU", + "ref": "UWGNCGZ3CU", + "name": "Istres, 4 Ronde des Florins - 3182", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978897, + 43.499238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUWGNCGZ3CU", + "ref": "UWGNCGZ3CU", + "name": "Istres, 4 Ronde des Florins - 3182", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978897, + 43.499238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUWGNCGZ3CU", + "ref": "UWGNCGZ3CU", + "name": "Istres, 4 Ronde des Florins - 3182", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.91177051, + 44.23420742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPNLOUT8QPN", + "ref": "PNLOUT8QPN", + "name": "Sisteron, 30 Allée des Genets - 3920", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510859, + 44.844837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIMWW8BBCHFQP", + "ref": "LLIMWW8BBCHFQP", + "name": "Floirac, 1 Avenue Salvador Allende", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.523894, + 44.147449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEHNKRRPQNR", + "ref": "EHNKRRPQNR", + "name": "Gap, 90 avenue d'Embrun - 3273", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.63247, + 43.666494 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD8WHXLJJOC", + "ref": "D8WHXLJJOC", + "name": "Arles, 5 rue olivier leclerc - 2707", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.91177051, + 44.23420742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPNLOUT8QPN", + "ref": "PNLOUT8QPN", + "name": "Sisteron, 30 Allée des Genets - 3920", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.651096, + 43.369226 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ0FQWYCSH1", + "ref": "J0FQWYCSH1", + "name": "Auriol, 1 avenue du 19 Mars 1962 - 3193", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.651096, + 43.369226 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ0FQWYCSH1", + "ref": "J0FQWYCSH1", + "name": "Auriol, 1 avenue du 19 Mars 1962 - 3193", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.271728, + 49.145336 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQSAIA8LGL", + "ref": "YQSAIA8LGL", + "name": "Le Tholonet, 1900 Avenue Paul Jullien - 3705", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.020872, + 43.822381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCJXNDZ3C6G", + "ref": "CJXNDZ3C6G", + "name": "Plan D'Orgon, Avenue des Vergers - 3704", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.020872, + 43.822381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCJXNDZ3C6G", + "ref": "CJXNDZ3C6G", + "name": "Plan D'Orgon, Avenue des Vergers - 3704", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510859, + 44.844837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIMWW8BBCHFQP", + "ref": "LLIMWW8BBCHFQP", + "name": "Floirac, 1 Avenue Salvador Allende", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.614337, + 43.179896 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIFBAAFS12E", + "ref": "IFBAAFS12E", + "name": "Oloron-Sainte-Marie, 90 Rue Oustalots - 3897", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.591795, + 47.197913 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMIGOKDUUYZ", + "ref": "MIGOKDUUYZ", + "name": "Nantes-Chevreul, rue Chevreul -3192", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510859, + 44.844837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIMWW8BBCHFQP", + "ref": "LLIMWW8BBCHFQP", + "name": "Floirac, 1 Avenue Salvador Allende", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.563163, + 48.657618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL77RJKJRRN", + "ref": "L77RJKJRRN", + "name": "Combs La Ville, 1 rue Pablo Picasso", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230169, + 48.921073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXBENFNB95Y", + "ref": "XBENFNB95Y", + "name": "Colombes-Allende, Rue Président Salvador Allende -3578", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230169, + 48.921073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXBENFNB95Y", + "ref": "XBENFNB95Y", + "name": "Colombes-Allende, Rue Président Salvador Allende -3578", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.563163, + 48.657618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL77RJKJRRN", + "ref": "L77RJKJRRN", + "name": "Combs La Ville, 1 rue Pablo Picasso", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230169, + 48.921073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXBENFNB95Y", + "ref": "XBENFNB95Y", + "name": "Colombes-Allende, Rue Président Salvador Allende -3578", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.563163, + 48.657618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL77RJKJRRN", + "ref": "L77RJKJRRN", + "name": "Combs La Ville, 1 rue Pablo Picasso", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.380155, + 48.819619 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWWZYVJR2EY", + "ref": "WWZYVJR2EY", + "name": "Ivry, Avenue Pierre Semard -1071", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21906119, + 49.32456957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX64IY5FMOZ", + "ref": "X64IY5FMOZ", + "name": "Pitres, rue de la Salle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41211721, + 49.18669642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZUUVO0OEOL", + "ref": "ZUUVO0OEOL", + "name": "Carpiquet, Route de Caen", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21906119, + 49.32456957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX64IY5FMOZ", + "ref": "X64IY5FMOZ", + "name": "Pitres, rue de la Salle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21906119, + 49.32456957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX64IY5FMOZ", + "ref": "X64IY5FMOZ", + "name": "Pitres, rue de la Salle", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41211721, + 49.18669642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZUUVO0OEOL", + "ref": "ZUUVO0OEOL", + "name": "Carpiquet, Route de Caen", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41211721, + 49.18669642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZUUVO0OEOL", + "ref": "ZUUVO0OEOL", + "name": "Carpiquet, Route de Caen", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21906119, + 49.32456957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX64IY5FMOZ", + "ref": "X64IY5FMOZ", + "name": "Pitres, rue de la Salle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21906119, + 49.32456957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX64IY5FMOZ", + "ref": "X64IY5FMOZ", + "name": "Pitres, rue de la Salle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21906119, + 49.32456957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX64IY5FMOZ", + "ref": "X64IY5FMOZ", + "name": "Pitres, rue de la Salle", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21906119, + 49.32456957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX64IY5FMOZ", + "ref": "X64IY5FMOZ", + "name": "Pitres, rue de la Salle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41211721, + 49.18669642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZUUVO0OEOL", + "ref": "ZUUVO0OEOL", + "name": "Carpiquet, Route de Caen", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41211721, + 49.18669642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZUUVO0OEOL", + "ref": "ZUUVO0OEOL", + "name": "Carpiquet, Route de Caen", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230169, + 48.921073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXBENFNB95Y", + "ref": "XBENFNB95Y", + "name": "Colombes-Allende, Rue Président Salvador Allende -3578", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.563163, + 48.657618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL77RJKJRRN", + "ref": "L77RJKJRRN", + "name": "Combs La Ville, 1 rue Pablo Picasso", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.563163, + 48.657618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL77RJKJRRN", + "ref": "L77RJKJRRN", + "name": "Combs La Ville, 1 rue Pablo Picasso", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.693424, + 43.384863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN6BRENDZBL", + "ref": "N6BRENDZBL", + "name": "Urrugne, Route de Socoa - 2838", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510859, + 44.844837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIMWW8BBCHFQP", + "ref": "LLIMWW8BBCHFQP", + "name": "Floirac, 1 Avenue Salvador Allende", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510859, + 44.844837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIMWW8BBCHFQP", + "ref": "LLIMWW8BBCHFQP", + "name": "Floirac, 1 Avenue Salvador Allende", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510859, + 44.844837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIMWW8BBCHFQP", + "ref": "LLIMWW8BBCHFQP", + "name": "Floirac, 1 Avenue Salvador Allende", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15518, + 44.6395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEK5YHMKEAO", + "ref": "EK5YHMKEAO", + "name": "La Teste, Chemin lagrua - 2836", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.614337, + 43.179896 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIFBAAFS12E", + "ref": "IFBAAFS12E", + "name": "Oloron-Sainte-Marie, 90 Rue Oustalots - 3897", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.930379, + 45.297541 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEUYZVQKVQM", + "ref": "EUYZVQKVQM", + "name": "Lesparre, 40/42 Route de Bordeaux - 3327", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.672947, + 44.859769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD1EYROTLX1", + "ref": "D1EYROTLX1", + "name": "Le Haillan, 5 Rue des Satellites - 4044", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15518, + 44.6395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEK5YHMKEAO", + "ref": "EK5YHMKEAO", + "name": "La Teste, Chemin lagrua - 2836", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.672947, + 44.859769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD1EYROTLX1", + "ref": "D1EYROTLX1", + "name": "Le Haillan, 5 Rue des Satellites - 4044", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.563163, + 48.657618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL77RJKJRRN", + "ref": "L77RJKJRRN", + "name": "Combs La Ville, 1 rue Pablo Picasso", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.693424, + 43.384863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN6BRENDZBL", + "ref": "N6BRENDZBL", + "name": "Urrugne, Route de Socoa - 2838", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.380155, + 48.819619 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWWZYVJR2EY", + "ref": "WWZYVJR2EY", + "name": "Ivry, Avenue Pierre Semard -1071", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.291748, + 48.805764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPR1JKSCDLC", + "ref": "PR1JKSCDLC", + "name": "Chatillon-Paris, avenue de Paris -3215", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.380155, + 48.819619 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWWZYVJR2EY", + "ref": "WWZYVJR2EY", + "name": "Ivry, Avenue Pierre Semard -1071", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.563163, + 48.657618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL77RJKJRRN", + "ref": "L77RJKJRRN", + "name": "Combs La Ville, 1 rue Pablo Picasso", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.291748, + 48.805764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPR1JKSCDLC", + "ref": "PR1JKSCDLC", + "name": "Chatillon-Paris, avenue de Paris -3215", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.380155, + 48.819619 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWWZYVJR2EY", + "ref": "WWZYVJR2EY", + "name": "Ivry, Avenue Pierre Semard -1071", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.563163, + 48.657618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL77RJKJRRN", + "ref": "L77RJKJRRN", + "name": "Combs La Ville, 1 rue Pablo Picasso", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66337, + 43.85402 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEHNKRRPQNR", + "ref": "EHNKRRPQNR", + "name": "Gap, 90 avenue d'Embrun - 3273", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.636316, + 44.26687 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEHNKRRPQNR", + "ref": "EHNKRRPQNR", + "name": "Gap, 90 avenue d'Embrun - 3273", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.91177051, + 44.23420742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPNLOUT8QPN", + "ref": "PNLOUT8QPN", + "name": "Sisteron, 30 Allée des Genets - 3920", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.082335, + 43.243236 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD0AIJIWGHD", + "ref": "D0AIJIWGHD", + "name": "La Ciotat, 87 Chemin de la Pépinière - 3553", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.435022, + 46.647014 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZDYRGJQNWY", + "ref": "ZDYRGJQNWY", + "name": "La-Roche-Sur-Yon-Petit, Impasse Claudius Petit -3545", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.613876, + 47.249316 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGUEO9FTWBS", + "ref": "GUEO9FTWBS", + "name": "St-Herblain-Vannes, Route de Vannes -3764", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28237, + 47.258777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQX0OZTVMC", + "ref": "CQX0OZTVMC", + "name": "St-Nazaire-Molle, Route de la Villès Mollé -4002", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28237, + 47.258777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQX0OZTVMC", + "ref": "CQX0OZTVMC", + "name": "St-Nazaire-Molle, Route de la Villès Mollé -4002", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28237, + 47.258777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQX0OZTVMC", + "ref": "CQX0OZTVMC", + "name": "St-Nazaire-Molle, Route de la Villès Mollé -4002", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28237, + 47.258777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQX0OZTVMC", + "ref": "CQX0OZTVMC", + "name": "St-Nazaire-Molle, Route de la Villès Mollé -4002", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.613876, + 47.249316 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGUEO9FTWBS", + "ref": "GUEO9FTWBS", + "name": "St-Herblain-Vannes, Route de Vannes -3764", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28237, + 47.258777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQX0OZTVMC", + "ref": "CQX0OZTVMC", + "name": "St-Nazaire-Molle, Route de la Villès Mollé -4002", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.527709, + 47.396284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA1YA9QASHE", + "ref": "A1YA9QASHE", + "name": "Murs-Erigne-Clos, Mail du Grand Clos -3913", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.527709, + 47.396284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA1YA9QASHE", + "ref": "A1YA9QASHE", + "name": "Murs-Erigne-Clos, Mail du Grand Clos -3913", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.429139, + 46.698169 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDNQBLW1SZU", + "ref": "DNQBLW1SZU", + "name": "La-Roche-Sur-Yon-Cevert, François Cevert -3861", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.527709, + 47.396284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA1YA9QASHE", + "ref": "A1YA9QASHE", + "name": "Murs-Erigne-Clos, Mail du Grand Clos -3913", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.527865, + 47.242816 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAZAJKTPA3O", + "ref": "AZAJKTPA3O", + "name": "Nantes-Verne, Boulevard Jules Verne -3980", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.527865, + 47.242816 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAZAJKTPA3O", + "ref": "AZAJKTPA3O", + "name": "Nantes-Verne, Boulevard Jules Verne -3980", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.527709, + 47.396284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA1YA9QASHE", + "ref": "A1YA9QASHE", + "name": "Murs-Erigne-Clos, Mail du Grand Clos -3913", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.616289, + 47.211421 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC2QSB9HMEI", + "ref": "C2QSB9HMEI", + "name": "Saint-Herblain, 15 Rue de Saint-Nazaire", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.590353, + 46.733522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBAEAPMZYM", + "ref": "ZBAEAPMZYM", + "name": "Aizenay-Roche, 121 rue de la roche -4129", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.590353, + 46.733522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBAEAPMZYM", + "ref": "ZBAEAPMZYM", + "name": "Aizenay-Roche, 121 rue de la roche -4129", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.613876, + 47.249316 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POL2TN2UB3M", + "ref": "OL2TN2UB3M", + "name": "La Chataigneraie, 65 Avenue du General De Gaulle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.435022, + 46.647014 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZDYRGJQNWY", + "ref": "ZDYRGJQNWY", + "name": "La-Roche-Sur-Yon-Petit, Impasse Claudius Petit -3545", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502432, + 47.445137 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZREBJTTI3B", + "ref": "ZREBJTTI3B", + "name": "Trelaze-Jaures, Rue Jean Jaurès -3550", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.827943, + 46.602341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZRCZZOSUOR", + "ref": "ZRCZZOSUOR", + "name": "Brem-Sur-Mer, 8 Rue du 8 mai 1945 -3340", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.023455, + 46.874699 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHOYWIHBH4H", + "ref": "HOYWIHBH4H", + "name": "Les-Herbiers, Rue du Grand Rouet -3048", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.776248, + 46.513867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHTOS6OHD33", + "ref": "HTOS6OHD33", + "name": "Olonne-Sur-Mer, des Ajoncs -3294", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.591795, + 47.197913 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMIGOKDUUYZ", + "ref": "MIGOKDUUYZ", + "name": "Nantes-Chevreul, rue Chevreul -3192", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.638397, + 47.047134 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR9HLO5VJ24", + "ref": "R9HLO5VJ24", + "name": "St-Philbert-De-Grand-Lieu, La Chaussée -3045", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.208344, + 47.290441 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVHJJAQQP0F", + "ref": "VHJJAQQP0F", + "name": "Trignac-Rue-De-Surcouf, rue de Surcouf -2920", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.208344, + 47.290441 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVHJJAQQP0F", + "ref": "VHJJAQQP0F", + "name": "Trignac-Rue-De-Surcouf, rue de Surcouf -2920", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.638397, + 47.047134 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR9HLO5VJ24", + "ref": "R9HLO5VJ24", + "name": "St-Philbert-De-Grand-Lieu, La Chaussée -3045", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.156162, + 47.241382 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLBNGT0AA3J", + "ref": "LBNGT0AA3J", + "name": "St-Brevin-Les-Pins-Potences, Paul Caniot -3180", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.023455, + 46.874699 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHOYWIHBH4H", + "ref": "HOYWIHBH4H", + "name": "Les-Herbiers, Rue du Grand Rouet -3048", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.848355, + 46.777557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMWZHDVEEYF", + "ref": "MWZHDVEEYF", + "name": "Pouzauges-Sables, avenue des Sables -3565", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.776248, + 46.513867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHTOS6OHD33", + "ref": "HTOS6OHD33", + "name": "Olonne-Sur-Mer, des Ajoncs -3294", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.848355, + 46.777557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMWZHDVEEYF", + "ref": "MWZHDVEEYF", + "name": "Pouzauges-Sables, avenue des Sables -3565", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502432, + 47.445137 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZREBJTTI3B", + "ref": "ZREBJTTI3B", + "name": "Trelaze-Jaures, Rue Jean Jaurès -3550", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.848355, + 46.777557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMWZHDVEEYF", + "ref": "MWZHDVEEYF", + "name": "Pouzauges-Sables, avenue des Sables -3565", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.613876, + 47.249316 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POL2TN2UB3M", + "ref": "OL2TN2UB3M", + "name": "La Chataigneraie, 65 Avenue du General De Gaulle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.613876, + 47.249316 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POL2TN2UB3M", + "ref": "OL2TN2UB3M", + "name": "La Chataigneraie, 65 Avenue du General De Gaulle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.848355, + 46.777557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMWZHDVEEYF", + "ref": "MWZHDVEEYF", + "name": "Pouzauges-Sables, avenue des Sables -3565", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.827943, + 46.602341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZRCZZOSUOR", + "ref": "ZRCZZOSUOR", + "name": "Brem-Sur-Mer, 8 Rue du 8 mai 1945 -3340", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.776248, + 46.513867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHTOS6OHD33", + "ref": "HTOS6OHD33", + "name": "Olonne-Sur-Mer, des Ajoncs -3294", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.429139, + 46.698169 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDNQBLW1SZU", + "ref": "DNQBLW1SZU", + "name": "La-Roche-Sur-Yon-Cevert, François Cevert -3861", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.749697, + 46.642619 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POL2TN2UB3M", + "ref": "OL2TN2UB3M", + "name": "La Chataigneraie, 65 Avenue du General De Gaulle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.616289, + 47.211421 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC2QSB9HMEI", + "ref": "C2QSB9HMEI", + "name": "Saint-Herblain, 15 Rue de Saint-Nazaire", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.91177051, + 44.23420742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPNLOUT8QPN", + "ref": "PNLOUT8QPN", + "name": "Sisteron, 30 Allée des Genets - 3920", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25035905, + 43.41160261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQUDPLPZYE", + "ref": "CQUDPLPZYE", + "name": "Salon de Provence, 310 Allée De Szentendre - 4095", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423285, + 43.281584 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENUDY0G4GZ", + "ref": "ENUDY0G4GZ", + "name": "Marseille, 137 boulevard pont de Vivaux - 3648", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423285, + 43.281584 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENUDY0G4GZ", + "ref": "ENUDY0G4GZ", + "name": "Marseille, 137 boulevard pont de Vivaux - 3648", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.501223, + 43.508707 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQSAIA8LGL", + "ref": "YQSAIA8LGL", + "name": "Le Tholonet, 1900 Avenue Paul Jullien - 3705", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978897, + 43.499238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUWGNCGZ3CU", + "ref": "UWGNCGZ3CU", + "name": "Istres, 4 Ronde des Florins - 3182", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423285, + 43.281584 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENUDY0G4GZ", + "ref": "ENUDY0G4GZ", + "name": "Marseille, 137 boulevard pont de Vivaux - 3648", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423285, + 43.281584 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENUDY0G4GZ", + "ref": "ENUDY0G4GZ", + "name": "Marseille, 137 boulevard pont de Vivaux - 3648", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978897, + 43.499238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUWGNCGZ3CU", + "ref": "UWGNCGZ3CU", + "name": "Istres, 4 Ronde des Florins - 3182", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5948279, + 44.8652091 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF4APLQXSCJ", + "ref": "F4APLQXSCJ", + "name": "Saint Martin De Queyrieres, Pré du Fauré - 3723", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25035905, + 43.41160261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQUDPLPZYE", + "ref": "CQUDPLPZYE", + "name": "Salon de Provence, 310 Allée De Szentendre - 4095", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423452, + 43.281753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENUDY0G4GZ", + "ref": "ENUDY0G4GZ", + "name": "Marseille, 137 boulevard pont de Vivaux - 3648", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423452, + 43.281753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENUDY0G4GZ", + "ref": "ENUDY0G4GZ", + "name": "Marseille, 137 boulevard pont de Vivaux - 3648", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5948279, + 44.8652091 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF4APLQXSCJ", + "ref": "F4APLQXSCJ", + "name": "Saint Martin De Queyrieres, Pré du Fauré - 3723", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43914, + 43.326358 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEEXWDVZFWO", + "ref": "EEXWDVZFWO", + "name": "Marseille, Avenue des Olives", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43914, + 43.326358 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEEXWDVZFWO", + "ref": "EEXWDVZFWO", + "name": "Marseille, Avenue des Olives", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43914, + 43.326358 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEEXWDVZFWO", + "ref": "EEXWDVZFWO", + "name": "Marseille, Avenue des Olives", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15518, + 44.6395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD0AIJIWGHD", + "ref": "D0AIJIWGHD", + "name": "La Ciotat, 87 Chemin de la Pépinière - 3553", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.037544, + 49.019432 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQSAIA8LGL", + "ref": "YQSAIA8LGL", + "name": "Le Tholonet, 1900 Avenue Paul Jullien - 3705", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25035905, + 43.41160261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQUDPLPZYE", + "ref": "CQUDPLPZYE", + "name": "Salon de Provence, 310 Allée De Szentendre - 4095", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43914, + 43.326358 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEEXWDVZFWO", + "ref": "EEXWDVZFWO", + "name": "Marseille, Avenue des Olives", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28237, + 47.258777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQX0OZTVMC", + "ref": "CQX0OZTVMC", + "name": "St-Nazaire-Molle, Route de la Villès Mollé -4002", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.749697, + 46.642619 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POL2TN2UB3M", + "ref": "OL2TN2UB3M", + "name": "La Chataigneraie, 65 Avenue du General De Gaulle", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28237, + 47.258777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQX0OZTVMC", + "ref": "CQX0OZTVMC", + "name": "St-Nazaire-Molle, Route de la Villès Mollé -4002", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28237, + 47.258777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQX0OZTVMC", + "ref": "CQX0OZTVMC", + "name": "St-Nazaire-Molle, Route de la Villès Mollé -4002", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.590353, + 46.733522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBAEAPMZYM", + "ref": "ZBAEAPMZYM", + "name": "Aizenay-Roche, 121 rue de la roche -4129", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.590353, + 46.733522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBAEAPMZYM", + "ref": "ZBAEAPMZYM", + "name": "Aizenay-Roche, 121 rue de la roche -4129", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.590353, + 46.733522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBAEAPMZYM", + "ref": "ZBAEAPMZYM", + "name": "Aizenay-Roche, 121 rue de la roche -4129", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.590353, + 46.733522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBAEAPMZYM", + "ref": "ZBAEAPMZYM", + "name": "Aizenay-Roche, 121 rue de la roche -4129", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.616289, + 47.211421 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC2QSB9HMEI", + "ref": "C2QSB9HMEI", + "name": "Saint-Herblain, 15 Rue de Saint-Nazaire", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.616289, + 47.211421 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC2QSB9HMEI", + "ref": "C2QSB9HMEI", + "name": "Saint-Herblain, 15 Rue de Saint-Nazaire", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.749697, + 46.642619 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POL2TN2UB3M", + "ref": "OL2TN2UB3M", + "name": "La Chataigneraie, 65 Avenue du General De Gaulle", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17951425, + 44.0698271 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDXLUDBXRWZ", + "ref": "DXLUDBXRWZ", + "name": "Digne Les Bains, Route Napoléon - 3775", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.075671, + 43.637548 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQUDPLPZYE", + "ref": "CQUDPLPZYE", + "name": "Salon de Provence, 310 Allée De Szentendre - 4095", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25035905, + 43.41160261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQUDPLPZYE", + "ref": "CQUDPLPZYE", + "name": "Salon de Provence, 310 Allée De Szentendre - 4095", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25035905, + 43.41160261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQUDPLPZYE", + "ref": "CQUDPLPZYE", + "name": "Salon de Provence, 310 Allée De Szentendre - 4095", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.075671, + 43.637548 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQUDPLPZYE", + "ref": "CQUDPLPZYE", + "name": "Salon de Provence, 310 Allée De Szentendre - 4095", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.075671, + 43.637548 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQUDPLPZYE", + "ref": "CQUDPLPZYE", + "name": "Salon de Provence, 310 Allée De Szentendre - 4095", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.672947, + 44.859769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD0AIJIWGHD", + "ref": "D0AIJIWGHD", + "name": "La Ciotat, 87 Chemin de la Pépinière - 3553", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.501223, + 43.508707 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQSAIA8LGL", + "ref": "YQSAIA8LGL", + "name": "Le Tholonet, 1900 Avenue Paul Jullien - 3705", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17951425, + 44.0698271 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDXLUDBXRWZ", + "ref": "DXLUDBXRWZ", + "name": "Digne Les Bains, Route Napoléon - 3775", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41211721, + 49.18669642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZUUVO0OEOL", + "ref": "ZUUVO0OEOL", + "name": "Carpiquet, Route de Caen", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41211721, + 49.18669642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZUUVO0OEOL", + "ref": "ZUUVO0OEOL", + "name": "Carpiquet, Route de Caen", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21906119, + 49.32456957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX64IY5FMOZ", + "ref": "X64IY5FMOZ", + "name": "Pitres, rue de la Salle", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39190104, + 46.1562878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMFZKUWKMH", + "ref": "HMFZKUWKMH", + "name": "Charmeil, 12 route de Saint Pourçain - 2970", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25706307, + 45.55116915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI9DZEK2CZD", + "ref": "I9DZEK2CZD", + "name": "Issoire, avenue Pierre Mendès-France", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25706307, + 45.55116915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI9DZEK2CZD", + "ref": "I9DZEK2CZD", + "name": "Issoire, avenue Pierre Mendès-France", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465253, + 46.748588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRNQPLHRUT", + "ref": "LRNQPLHRUT", + "name": "Bletterans, 20 avenue Jean de Chalon d'Arlay", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.76181634, + 45.58992715 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKUIQPXVEI6", + "ref": "KUIQPXVEI6", + "name": "La Bourboule, Boulevard Mal de Lattre Tassigny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.76181634, + 45.58992715 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKUIQPXVEI6", + "ref": "KUIQPXVEI6", + "name": "La Bourboule, Boulevard Mal de Lattre Tassigny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465253, + 46.748588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRNQPLHRUT", + "ref": "LRNQPLHRUT", + "name": "Bletterans, 20 avenue Jean de Chalon d'Arlay", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465253, + 46.748588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRNQPLHRUT", + "ref": "LRNQPLHRUT", + "name": "Bletterans, 20 avenue Jean de Chalon d'Arlay", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53083577, + 45.84793054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX5M7HY9MD8", + "ref": "X5M7HY9MD8", + "name": "Thiers, avenue Léo Lagrange", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53083577, + 45.84793054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX5M7HY9MD8", + "ref": "X5M7HY9MD8", + "name": "Thiers, avenue Léo Lagrange", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.58450634, + 47.81175311 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POFKONKTICM", + "ref": "OFKONKTICM", + "name": "Auxerre, Rue Denis Papin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53083577, + 45.84793054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX5M7HY9MD8", + "ref": "X5M7HY9MD8", + "name": "Thiers, avenue Léo Lagrange", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53083577, + 45.84793054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX5M7HY9MD8", + "ref": "X5M7HY9MD8", + "name": "Thiers, avenue Léo Lagrange", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25706307, + 45.55116915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI9DZEK2CZD", + "ref": "I9DZEK2CZD", + "name": "Issoire, avenue Pierre Mendès-France", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25706307, + 45.55116915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI9DZEK2CZD", + "ref": "I9DZEK2CZD", + "name": "Issoire, avenue Pierre Mendès-France", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.37441847, + 45.31480139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTBJUNGUIF2", + "ref": "TBJUNGUIF2", + "name": "Brioude, 2 Rue Gustave Eiffel", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.37441847, + 45.31480139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTBJUNGUIF2", + "ref": "TBJUNGUIF2", + "name": "Brioude, 2 Rue Gustave Eiffel", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.700513, + 47.326191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV1GZIHEXMU", + "ref": "V1GZIHEXMU", + "name": "Tournus, 2 Av. du Clos Mouron", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83122491, + 47.02271191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI1FZ6R1VYO98", + "ref": "LLI1FZ6R1VYO98", + "name": "Beaune, Rue des Vérottes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25706307, + 45.55116915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI9DZEK2CZD", + "ref": "I9DZEK2CZD", + "name": "Issoire, avenue Pierre Mendès-France", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465253, + 46.748588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRNQPLHRUT", + "ref": "LRNQPLHRUT", + "name": "Bletterans, 20 avenue Jean de Chalon d'Arlay", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.58450634, + 47.81175311 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POFKONKTICM", + "ref": "OFKONKTICM", + "name": "Auxerre, Rue Denis Papin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.897376, + 47.496642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLARNQAMRTO", + "ref": "LARNQAMRTO", + "name": "Avallon, Route de Pontaubert - 3722", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.897376, + 47.496642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLARNQAMRTO", + "ref": "LARNQAMRTO", + "name": "Avallon, Route de Pontaubert - 3722", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39190104, + 46.1562878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMFZKUWKMH", + "ref": "HMFZKUWKMH", + "name": "Charmeil, 12 route de Saint Pourçain - 2970", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5518, + 47.849439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNN6JD7ESLV", + "ref": "NN6JD7ESLV", + "name": "Moneteau-Rome, 12 Avenue de l'Europe -3979", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.833101, + 46.165531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEMJUWDE2ZC", + "ref": "EMJUWDE2ZC", + "name": "Saint Eloy Les Mines, 4 rue du Puits du Manoir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEIIHBFT9VM", + "ref": "EIIHBFT9VM", + "name": "Saint-Usage, 4 Rue de l'Echelotte", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.833101, + 46.165531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEMJUWDE2ZC", + "ref": "EMJUWDE2ZC", + "name": "Saint Eloy Les Mines, 4 rue du Puits du Manoir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.833101, + 46.165531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEMJUWDE2ZC", + "ref": "EMJUWDE2ZC", + "name": "Saint Eloy Les Mines, 4 rue du Puits du Manoir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEIIHBFT9VM", + "ref": "EIIHBFT9VM", + "name": "Saint-Usage, 4 Rue de l'Echelotte", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.897376, + 47.496642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLARNQAMRTO", + "ref": "LARNQAMRTO", + "name": "Avallon, Route de Pontaubert - 3722", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.58450634, + 47.81175311 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POFKONKTICM", + "ref": "OFKONKTICM", + "name": "Auxerre, Rue Denis Papin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.286064, + 46.310614 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIRE24WVTIF", + "ref": "IRE24WVTIF", + "name": "Saint Pourçain sur Sioule, 18 route de Montmarault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.58450634, + 47.81175311 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POFKONKTICM", + "ref": "OFKONKTICM", + "name": "Auxerre, Rue Denis Papin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.286064, + 46.310614 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIRE24WVTIF", + "ref": "IRE24WVTIF", + "name": "Saint Pourçain sur Sioule, 18 route de Montmarault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022531, + 47.299516 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIMWA3KE6RA", + "ref": "IMWA3KE6RA", + "name": "Dijon, 12 rue Marcel Sembat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEIIHBFT9VM", + "ref": "EIIHBFT9VM", + "name": "Saint-Usage, 4 Rue de l'Echelotte", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022531, + 47.299516 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIMWA3KE6RA", + "ref": "IMWA3KE6RA", + "name": "Dijon, 12 rue Marcel Sembat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022531, + 47.299516 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIMWA3KE6RA", + "ref": "IMWA3KE6RA", + "name": "Dijon, 12 rue Marcel Sembat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.897376, + 47.496642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLARNQAMRTO", + "ref": "LARNQAMRTO", + "name": "Avallon, Route de Pontaubert - 3722", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.833101, + 46.165531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEMJUWDE2ZC", + "ref": "EMJUWDE2ZC", + "name": "Saint Eloy Les Mines, 4 rue du Puits du Manoir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.700513, + 47.326191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV1GZIHEXMU", + "ref": "V1GZIHEXMU", + "name": "Tournus, 2 Av. du Clos Mouron", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53083577, + 45.84793054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGG6FVWF3A4", + "ref": "GG6FVWF3A4", + "name": "Paray-le-Monial, Lieu Dit Boulevard du Champ Bossu", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53083577, + 45.84793054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGG6FVWF3A4", + "ref": "GG6FVWF3A4", + "name": "Paray-le-Monial, Lieu Dit Boulevard du Champ Bossu", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.587546, + 50.49208 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGAWWXDWFLV", + "ref": "GAWWXDWFLV", + "name": "Bruay-La-Buissiere, Eric Tabarly -3415", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.869468, + 50.93974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGEDFVTZGT", + "ref": "AGEDFVTZGT", + "name": "Calais-Gustave-Lamarle, quai Gustave Lamarle -3362", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.973966, + 50.417064 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSWR9LBHFPD", + "ref": "SWR9LBHFPD", + "name": "Henin-Beaumont-Schweitzer, boulevard Schweitzer -3364", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.869468, + 50.93974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGEDFVTZGT", + "ref": "AGEDFVTZGT", + "name": "Calais-Gustave-Lamarle, quai Gustave Lamarle -3362", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304152, + 50.728754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCRKFHHR17R", + "ref": "CRKFHHR17R", + "name": "Arques, 71 avenue du Général De Gaulle", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.587546, + 50.49208 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGAWWXDWFLV", + "ref": "GAWWXDWFLV", + "name": "Bruay-La-Buissiere, Eric Tabarly -3415", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.587546, + 50.49208 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGAWWXDWFLV", + "ref": "GAWWXDWFLV", + "name": "Bruay-La-Buissiere, Eric Tabarly -3415", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.587546, + 50.49208 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGAWWXDWFLV", + "ref": "GAWWXDWFLV", + "name": "Bruay-La-Buissiere, Eric Tabarly -3415", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.823199, + 50.944437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMVRJMTFXFY", + "ref": "MVRJMTFXFY", + "name": "Calais-Ouest-Salengro, Avenue Roger Salengro -3826", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.919431, + 50.947109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDLLHDQOSYL", + "ref": "DLLHDQOSYL", + "name": "Calais-Saint-Exupery, avenue de Saint Exupery -3279", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.290524, + 50.273914 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNZVMFPZB3C", + "ref": "NZVMFPZB3C", + "name": "Frevent, rue Georges Clémenceau -3363", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.829201, + 50.411893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTICAR3Q0OM", + "ref": "TICAR3Q0OM", + "name": "Avion-Septembre, 14 Rue du 4 Septembre -4114", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.829201, + 50.411893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTICAR3Q0OM", + "ref": "TICAR3Q0OM", + "name": "Avion-Septembre, 14 Rue du 4 Septembre -4114", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.829201, + 50.411893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTICAR3Q0OM", + "ref": "TICAR3Q0OM", + "name": "Avion-Septembre, 14 Rue du 4 Septembre -4114", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.666973, + 50.264485 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDTPSA3S6UB", + "ref": "DTPSA3S6UB", + "name": "Rue, Route du Crotoy -2897", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.666973, + 50.264485 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDTPSA3S6UB", + "ref": "DTPSA3S6UB", + "name": "Rue, Route du Crotoy -2897", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.823199, + 50.944437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMVRJMTFXFY", + "ref": "MVRJMTFXFY", + "name": "Calais-Ouest-Salengro, Avenue Roger Salengro -3826", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.919431, + 50.947109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDLLHDQOSYL", + "ref": "DLLHDQOSYL", + "name": "Calais-Saint-Exupery, avenue de Saint Exupery -3279", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54619, + 50.738085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZZZQYISOQJ", + "ref": "ZZZQYISOQJ", + "name": "Hazebrouck-Notre-Dame, rue Notre Dame -3387", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.290524, + 50.273914 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNZVMFPZB3C", + "ref": "NZVMFPZB3C", + "name": "Frevent, rue Georges Clémenceau -3363", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304152, + 50.728754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCRKFHHR17R", + "ref": "CRKFHHR17R", + "name": "Arques, 71 avenue du Général De Gaulle", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53083577, + 45.84793054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX5M7HY9MD8", + "ref": "X5M7HY9MD8", + "name": "Thiers, avenue Léo Lagrange", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.829201, + 50.411893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTICAR3Q0OM", + "ref": "TICAR3Q0OM", + "name": "Avion-Septembre, 14 Rue du 4 Septembre -4114", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5518, + 47.849439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNN6JD7ESLV", + "ref": "NN6JD7ESLV", + "name": "Moneteau-Rome, 12 Avenue de l'Europe -3979", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.286064, + 46.310614 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIRE24WVTIF", + "ref": "IRE24WVTIF", + "name": "Saint Pourçain sur Sioule, 18 route de Montmarault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25706307, + 45.55116915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI9DZEK2CZD", + "ref": "I9DZEK2CZD", + "name": "Issoire, avenue Pierre Mendès-France", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.785367, + 50.427276 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXM03BDK6QH", + "ref": "XM03BDK6QH", + "name": "Lievin-Marle, Rue du Fond à Marle -3809", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.88672073, + 50.86272062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAKZY4U1S4", + "ref": "SAKZY4U1S4", + "name": "Guînes, ZA du Moulin à Huile", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.785367, + 50.427276 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXM03BDK6QH", + "ref": "XM03BDK6QH", + "name": "Lievin-Marle, Rue du Fond à Marle -3809", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.88672073, + 50.86272062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAKZY4U1S4", + "ref": "SAKZY4U1S4", + "name": "Guînes, ZA du Moulin à Huile", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.829201, + 50.411893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTICAR3Q0OM", + "ref": "TICAR3Q0OM", + "name": "Avion-Septembre, 14 Rue du 4 Septembre -4114", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.785367, + 50.427276 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXM03BDK6QH", + "ref": "XM03BDK6QH", + "name": "Lievin-Marle, Rue du Fond à Marle -3809", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54619, + 50.738085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZZZQYISOQJ", + "ref": "ZZZQYISOQJ", + "name": "Hazebrouck-Notre-Dame, rue Notre Dame -3387", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.785367, + 50.427276 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXM03BDK6QH", + "ref": "XM03BDK6QH", + "name": "Lievin-Marle, Rue du Fond à Marle -3809", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54619, + 50.738085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZZZQYISOQJ", + "ref": "ZZZQYISOQJ", + "name": "Hazebrouck-Notre-Dame, rue Notre Dame -3387", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304152, + 50.728754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCRKFHHR17R", + "ref": "CRKFHHR17R", + "name": "Arques, 71 avenue du Général De Gaulle", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54619, + 50.738085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZZZQYISOQJ", + "ref": "ZZZQYISOQJ", + "name": "Hazebrouck-Notre-Dame, rue Notre Dame -3387", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.829201, + 50.411893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTICAR3Q0OM", + "ref": "TICAR3Q0OM", + "name": "Avion-Septembre, 14 Rue du 4 Septembre -4114", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304152, + 50.728754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCRKFHHR17R", + "ref": "CRKFHHR17R", + "name": "Arques, 71 avenue du Général De Gaulle", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54619, + 50.738085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZZZQYISOQJ", + "ref": "ZZZQYISOQJ", + "name": "Hazebrouck-Notre-Dame, rue Notre Dame -3387", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54619, + 50.738085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZZZQYISOQJ", + "ref": "ZZZQYISOQJ", + "name": "Hazebrouck-Notre-Dame, rue Notre Dame -3387", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39190104, + 46.1562878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMFZKUWKMH", + "ref": "HMFZKUWKMH", + "name": "Charmeil, 12 route de Saint Pourçain - 2970", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.356622, + 46.688777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTJYKIGXR01", + "ref": "TJYKIGXR01", + "name": "Montceau-les-Mines, 10 Rue du Nouveau Bois-du-Verne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41211721, + 49.18669642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZUUVO0OEOL", + "ref": "ZUUVO0OEOL", + "name": "Carpiquet, Route de Caen", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39190104, + 46.1562878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMFZKUWKMH", + "ref": "HMFZKUWKMH", + "name": "Charmeil, 12 route de Saint Pourçain - 2970", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.038671, + 46.015545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW6UE0JKLKL", + "ref": "W6UE0JKLKL", + "name": "Villerest, 772 Chemin de la Tuilerie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867849, + 46.772646 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQHY100AFB8", + "ref": "QHY100AFB8", + "name": "Saint Marcel, 15 rue René Cassin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867849, + 46.772646 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQHY100AFB8", + "ref": "QHY100AFB8", + "name": "Saint Marcel, 15 rue René Cassin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.18590507, + 45.7293155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK7CVN4VCEE", + "ref": "K7CVN4VCEE", + "name": "Le Cendre, ZAC de Graveroux Route de Clermont", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.18590507, + 45.7293155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK7CVN4VCEE", + "ref": "K7CVN4VCEE", + "name": "Le Cendre, ZAC de Graveroux Route de Clermont", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEIIHBFT9VM", + "ref": "EIIHBFT9VM", + "name": "Saint-Usage, 4 Rue de l'Echelotte", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93667563, + 47.05579643 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD4G0UBMWRI", + "ref": "D4G0UBMWRI", + "name": "Château-Chinon, 25 route d'Autun", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.18590507, + 45.7293155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK7CVN4VCEE", + "ref": "K7CVN4VCEE", + "name": "Le Cendre, ZAC de Graveroux Route de Clermont", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.18590507, + 45.7293155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK7CVN4VCEE", + "ref": "K7CVN4VCEE", + "name": "Le Cendre, ZAC de Graveroux Route de Clermont", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5518, + 47.849439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNN6JD7ESLV", + "ref": "NN6JD7ESLV", + "name": "Moneteau-Rome, 12 Avenue de l'Europe -3979", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5518, + 47.849439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNN6JD7ESLV", + "ref": "NN6JD7ESLV", + "name": "Moneteau-Rome, 12 Avenue de l'Europe -3979", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.085731, + 46.053815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAI1UC0OYPF", + "ref": "AI1UC0OYPF", + "name": "Roanne, 178 rue de Charlieu", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5518, + 47.849439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNN6JD7ESLV", + "ref": "NN6JD7ESLV", + "name": "Moneteau-Rome, 12 Avenue de l'Europe -3979", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5518, + 47.849439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNN6JD7ESLV", + "ref": "NN6JD7ESLV", + "name": "Moneteau-Rome, 12 Avenue de l'Europe -3979", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5518, + 47.849439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNN6JD7ESLV", + "ref": "NN6JD7ESLV", + "name": "Moneteau-Rome, 12 Avenue de l'Europe -3979", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.038671, + 46.015545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW6UE0JKLKL", + "ref": "W6UE0JKLKL", + "name": "Villerest, 772 Chemin de la Tuilerie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.038671, + 46.015545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW6UE0JKLKL", + "ref": "W6UE0JKLKL", + "name": "Villerest, 772 Chemin de la Tuilerie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.038671, + 46.015545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW6UE0JKLKL", + "ref": "W6UE0JKLKL", + "name": "Villerest, 772 Chemin de la Tuilerie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.085731, + 46.053815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAI1UC0OYPF", + "ref": "AI1UC0OYPF", + "name": "Roanne, 178 rue de Charlieu", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93667563, + 47.05579643 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD4G0UBMWRI", + "ref": "D4G0UBMWRI", + "name": "Château-Chinon, 25 route d'Autun", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867849, + 46.772646 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQHY100AFB8", + "ref": "QHY100AFB8", + "name": "Saint Marcel, 15 rue René Cassin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867849, + 46.772646 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQHY100AFB8", + "ref": "QHY100AFB8", + "name": "Saint Marcel, 15 rue René Cassin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.286064, + 46.310614 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIRE24WVTIF", + "ref": "IRE24WVTIF", + "name": "Saint Pourçain sur Sioule, 18 route de Montmarault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.897376, + 47.496642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLARNQAMRTO", + "ref": "LARNQAMRTO", + "name": "Avallon, Route de Pontaubert - 3722", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.897376, + 47.496642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLARNQAMRTO", + "ref": "LARNQAMRTO", + "name": "Avallon, Route de Pontaubert - 3722", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.897376, + 47.496642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLARNQAMRTO", + "ref": "LARNQAMRTO", + "name": "Avallon, Route de Pontaubert - 3722", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.897376, + 47.496642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLARNQAMRTO", + "ref": "LARNQAMRTO", + "name": "Avallon, Route de Pontaubert - 3722", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53083577, + 45.84793054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX5M7HY9MD8", + "ref": "X5M7HY9MD8", + "name": "Thiers, avenue Léo Lagrange", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53083577, + 45.84793054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGG6FVWF3A4", + "ref": "GG6FVWF3A4", + "name": "Paray-le-Monial, Lieu Dit Boulevard du Champ Bossu", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53083577, + 45.84793054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGG6FVWF3A4", + "ref": "GG6FVWF3A4", + "name": "Paray-le-Monial, Lieu Dit Boulevard du Champ Bossu", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.322374, + 46.912927 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEK78LCBFCD", + "ref": "EK78LCBFCD", + "name": "Houtaud, 14 rue de la Champagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.596176, + 47.448623 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLN5OWH3GTB", + "ref": "LN5OWH3GTB", + "name": "Gray, 10 rue de la Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.489837, + 47.082347 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIQU4R0ABMI", + "ref": "IQU4R0ABMI", + "name": "Dole, rue Costes et Bellonte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.596176, + 47.448623 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLN5OWH3GTB", + "ref": "LN5OWH3GTB", + "name": "Gray, 10 rue de la Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.828736, + 47.187291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT1YNAOAES4", + "ref": "T1YNAOAES4", + "name": "Saint-Vit, rue des champs de Tenne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.828736, + 47.187291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT1YNAOAES4", + "ref": "T1YNAOAES4", + "name": "Saint-Vit, rue des champs de Tenne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.828736, + 47.187291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT1YNAOAES4", + "ref": "T1YNAOAES4", + "name": "Saint-Vit, rue des champs de Tenne", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.346252, + 46.535982 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXBBL8M94QY", + "ref": "XBBL8M94QY", + "name": "Toulon-Sur-Allier, RD 707 -4032", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5518, + 47.849439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNN6JD7ESLV", + "ref": "NN6JD7ESLV", + "name": "Moneteau-Rome, 12 Avenue de l'Europe -3979", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.322374, + 46.912927 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEK78LCBFCD", + "ref": "EK78LCBFCD", + "name": "Houtaud, 14 rue de la Champagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.489837, + 47.082347 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIQU4R0ABMI", + "ref": "IQU4R0ABMI", + "name": "Dole, rue Costes et Bellonte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.085731, + 46.053815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAI1UC0OYPF", + "ref": "AI1UC0OYPF", + "name": "Roanne, 178 rue de Charlieu", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.085731, + 46.053815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAI1UC0OYPF", + "ref": "AI1UC0OYPF", + "name": "Roanne, 178 rue de Charlieu", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.496269, + 46.76139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTBJUNGUIF2", + "ref": "TBJUNGUIF2", + "name": "Brioude, 2 Rue Gustave Eiffel", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.346252, + 46.535982 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXBBL8M94QY", + "ref": "XBBL8M94QY", + "name": "Toulon-Sur-Allier, RD 707 -4032", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79534207, + 46.26800784 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA6P6NQCN8U", + "ref": "A6P6NQCN8U", + "name": "Vinzelles, 1054 Route du Champs de la Lie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD4G0UBMWRI", + "ref": "D4G0UBMWRI", + "name": "Château-Chinon, 25 route d'Autun", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79534207, + 46.26800784 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA6P6NQCN8U", + "ref": "A6P6NQCN8U", + "name": "Vinzelles, 1054 Route du Champs de la Lie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79534207, + 46.26800784 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA6P6NQCN8U", + "ref": "A6P6NQCN8U", + "name": "Vinzelles, 1054 Route du Champs de la Lie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79534207, + 46.26800784 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA6P6NQCN8U", + "ref": "A6P6NQCN8U", + "name": "Vinzelles, 1054 Route du Champs de la Lie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD4G0UBMWRI", + "ref": "D4G0UBMWRI", + "name": "Château-Chinon, 25 route d'Autun", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.346252, + 46.535982 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXBBL8M94QY", + "ref": "XBBL8M94QY", + "name": "Toulon-Sur-Allier, RD 707 -4032", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.346252, + 46.535982 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXBBL8M94QY", + "ref": "XBBL8M94QY", + "name": "Toulon-Sur-Allier, RD 707 -4032", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.828736, + 47.187291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT1YNAOAES4", + "ref": "T1YNAOAES4", + "name": "Saint-Vit, rue des champs de Tenne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEIIHBFT9VM", + "ref": "EIIHBFT9VM", + "name": "Saint-Usage, 4 Rue de l'Echelotte", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.346252, + 46.535982 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXBBL8M94QY", + "ref": "XBBL8M94QY", + "name": "Toulon-Sur-Allier, RD 707 -4032", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.356622, + 46.688777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTJYKIGXR01", + "ref": "TJYKIGXR01", + "name": "Montceau-les-Mines, 10 Rue du Nouveau Bois-du-Verne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.346252, + 46.535982 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXBBL8M94QY", + "ref": "XBBL8M94QY", + "name": "Toulon-Sur-Allier, RD 707 -4032", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39190104, + 46.1562878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMFZKUWKMH", + "ref": "HMFZKUWKMH", + "name": "Charmeil, 12 route de Saint Pourçain - 2970", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.181014, + 45.776602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZJ5NXUIFE", + "ref": "UZJ5NXUIFE", + "name": "Lempdes, Avenue de L'Europe -4102", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.905458, + 46.570362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV1GZIHEXMU", + "ref": "V1GZIHEXMU", + "name": "Tournus, 2 Av. du Clos Mouron", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.181014, + 45.776602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZJ5NXUIFE", + "ref": "UZJ5NXUIFE", + "name": "Lempdes, Avenue de L'Europe -4102", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39190104, + 46.1562878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMFZKUWKMH", + "ref": "HMFZKUWKMH", + "name": "Charmeil, 12 route de Saint Pourçain - 2970", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.181014, + 45.776602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZJ5NXUIFE", + "ref": "UZJ5NXUIFE", + "name": "Lempdes, Avenue de L'Europe -4102", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83122491, + 47.02271191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI1FZ6R1VYO98", + "ref": "LLI1FZ6R1VYO98", + "name": "Beaune, Rue des Vérottes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEIIHBFT9VM", + "ref": "EIIHBFT9VM", + "name": "Saint-Usage, 4 Rue de l'Echelotte", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.181014, + 45.776602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZJ5NXUIFE", + "ref": "UZJ5NXUIFE", + "name": "Lempdes, Avenue de L'Europe -4102", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.496269, + 46.76139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTBJUNGUIF2", + "ref": "TBJUNGUIF2", + "name": "Brioude, 2 Rue Gustave Eiffel", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.181014, + 45.776602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZJ5NXUIFE", + "ref": "UZJ5NXUIFE", + "name": "Lempdes, Avenue de L'Europe -4102", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.181014, + 45.776602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZJ5NXUIFE", + "ref": "UZJ5NXUIFE", + "name": "Lempdes, Avenue de L'Europe -4102", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.37441847, + 45.31480139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTBJUNGUIF2", + "ref": "TBJUNGUIF2", + "name": "Brioude, 2 Rue Gustave Eiffel", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.181014, + 45.776602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZJ5NXUIFE", + "ref": "UZJ5NXUIFE", + "name": "Lempdes, Avenue de L'Europe -4102", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.181014, + 45.776602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZJ5NXUIFE", + "ref": "UZJ5NXUIFE", + "name": "Lempdes, Avenue de L'Europe -4102", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.37441847, + 45.31480139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTBJUNGUIF2", + "ref": "TBJUNGUIF2", + "name": "Brioude, 2 Rue Gustave Eiffel", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEIIHBFT9VM", + "ref": "EIIHBFT9VM", + "name": "Saint-Usage, 4 Rue de l'Echelotte", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.978245, + 46.796769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJOBYNIMYFIQW", + "ref": "LLJOBYNIMYFIQW", + "name": "Luzy, Champ Balard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022531, + 47.299516 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIMWA3KE6RA", + "ref": "IMWA3KE6RA", + "name": "Dijon, 12 rue Marcel Sembat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.76181634, + 45.58992715 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKUIQPXVEI6", + "ref": "KUIQPXVEI6", + "name": "La Bourboule, Boulevard Mal de Lattre Tassigny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.57233178, + 46.66965999 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXCLLB815FO", + "ref": "XCLLB815FO", + "name": "Perrigny, Route de Conliege", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.76181634, + 45.58992715 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKUIQPXVEI6", + "ref": "KUIQPXVEI6", + "name": "La Bourboule, Boulevard Mal de Lattre Tassigny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.978245, + 46.796769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJOBYNIMYFIQW", + "ref": "LLJOBYNIMYFIQW", + "name": "Luzy, Champ Balard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.57233178, + 46.66965999 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXCLLB815FO", + "ref": "XCLLB815FO", + "name": "Perrigny, Route de Conliege", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.57233178, + 46.66965999 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXCLLB815FO", + "ref": "XCLLB815FO", + "name": "Perrigny, Route de Conliege", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.57233178, + 46.66965999 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXCLLB815FO", + "ref": "XCLLB815FO", + "name": "Perrigny, Route de Conliege", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEIIHBFT9VM", + "ref": "EIIHBFT9VM", + "name": "Saint-Usage, 4 Rue de l'Echelotte", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.776248, + 46.513867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHTOS6OHD33", + "ref": "HTOS6OHD33", + "name": "Olonne-Sur-Mer, des Ajoncs -3294", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.156162, + 47.241382 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLBNGT0AA3J", + "ref": "LBNGT0AA3J", + "name": "St-Brevin-Les-Pins-Potences, Paul Caniot -3180", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.49076, + 48.6196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQSGFVS", + "ref": "QSGFVS", + "name": "Marlenheim, Usine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.027849, + 46.253891 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTM6PKDLX7M", + "ref": "TM6PKDLX7M", + "name": "Saint-Genis-Pouilly, Rue du Salève", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.74471, + 48.0833 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUFUSXC", + "ref": "UFUSXC", + "name": "Le Tholy, Route du Petit Paradis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.74471, + 48.0833 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUFUSXC", + "ref": "UFUSXC", + "name": "Le Tholy, Route du Petit Paradis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.486285, + 47.927044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTDVHUEWOGS", + "ref": "TDVHUEWOGS", + "name": "Le Val-d'Ajol, Grande Rue", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.486285, + 47.927044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTDVHUEWOGS", + "ref": "TDVHUEWOGS", + "name": "Le Val-d'Ajol, Grande Rue", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.486285, + 47.927044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTDVHUEWOGS", + "ref": "TDVHUEWOGS", + "name": "Le Val-d'Ajol, Grande Rue", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1347, + 48.8944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPYLGWD", + "ref": "PYLGWD", + "name": "Le Vésinet, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11577, + 48.8976 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHVUHMZ", + "ref": "HVUHMZ", + "name": "Le Vésinet, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1211, + 48.8993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSTEZAD", + "ref": "STEZAD", + "name": "Le Vésinet, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1211, + 48.8993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSTEZAD", + "ref": "STEZAD", + "name": "Le Vésinet, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1347, + 48.8944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPYLGWD", + "ref": "PYLGWD", + "name": "Le Vésinet, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11577, + 48.8976 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHVUHMZ", + "ref": "HVUHMZ", + "name": "Le Vésinet, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6478, + 49.5888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAYKGDM", + "ref": "AYKGDM", + "name": "Chambry, Leclerc", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6478, + 49.5888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAYKGDM", + "ref": "AYKGDM", + "name": "Chambry, Leclerc", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6478, + 49.5888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAYKGDM", + "ref": "AYKGDM", + "name": "Chambry, Leclerc", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6478, + 49.5888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAYKGDM", + "ref": "AYKGDM", + "name": "Chambry, Leclerc", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32728216, + 49.06732506 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGVLLPF2MXK", + "ref": "GVLLPF2MXK", + "name": "Montsoult, Zone Industielle du Beloy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32728216, + 49.06732506 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGVLLPF2MXK", + "ref": "GVLLPF2MXK", + "name": "Montsoult, Zone Industielle du Beloy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.42550237, + 48.2562449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKWCFZHSDUU", + "ref": "KWCFZHSDUU", + "name": "Selestat, Route de Kintzheim", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5042, + 45.3799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMEDKZN", + "ref": "MEDKZN", + "name": "Les Belleville, Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.887326, + 50.071325 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK3T4LY2OWV", + "ref": "K3T4LY2OWV", + "name": "Eaucourt-sur-Somme, Le Saltimbanque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.887326, + 50.071325 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK3T4LY2OWV", + "ref": "K3T4LY2OWV", + "name": "Eaucourt-sur-Somme, Le Saltimbanque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.55172496, + 43.30796149 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUYBK6R4NSB", + "ref": "UYBK6R4NSB", + "name": "Le Plan-de-la-Tour , LE REVERDI Les Villages Clubs du Soleil", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.05705, + 49.117 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PARZ7KBQW7E", + "ref": "ARZ7KBQW7E", + "name": "Saint-Lô, Le Phénix", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.624877, + 46.50873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHRNZU6OU4U33", + "ref": "LLHRNZU6OU4U33", + "name": "Le Pal, Parking P1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62952191, + 46.50226949 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHQB3EQ7FWYJ7", + "ref": "LLHQB3EQ7FWYJ7", + "name": "Le Pal, Hôtel Savana Réserve", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62952191, + 46.50226949 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHQB3EQ7FWYJ7", + "ref": "LLHQB3EQ7FWYJ7", + "name": "Le Pal, Hôtel Savana Réserve", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62952191, + 46.50226949 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHQB3EQ7FWYJ7", + "ref": "LLHQB3EQ7FWYJ7", + "name": "Le Pal, Hôtel Savana Réserve", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09309044, + 48.26196268 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIDCQ4E41W16R", + "ref": "LLIDCQ4E41W16R", + "name": "Bréviandes, Avenue du Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09309044, + 48.26196268 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIDCQ4E41W16R", + "ref": "LLIDCQ4E41W16R", + "name": "Bréviandes, Avenue du Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.05705, + 49.117 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PARZ7KBQW7E", + "ref": "ARZ7KBQW7E", + "name": "Saint-Lô, Le Phénix", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.05705, + 49.117 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PARZ7KBQW7E", + "ref": "ARZ7KBQW7E", + "name": "Saint-Lô, Le Phénix", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.05705, + 49.117 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PARZ7KBQW7E", + "ref": "ARZ7KBQW7E", + "name": "Saint-Lô, Le Phénix", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.55172496, + 43.30796149 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUYBK6R4NSB", + "ref": "UYBK6R4NSB", + "name": "Le Plan-de-la-Tour , LE REVERDI Les Villages Clubs du Soleil", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.05705, + 49.117 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PARZ7KBQW7E", + "ref": "ARZ7KBQW7E", + "name": "Saint-Lô, Le Phénix", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.05705, + 49.117 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PARZ7KBQW7E", + "ref": "ARZ7KBQW7E", + "name": "Saint-Lô, Le Phénix", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.05705, + 49.117 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PARZ7KBQW7E", + "ref": "ARZ7KBQW7E", + "name": "Saint-Lô, Le Phénix", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.05705, + 49.117 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PARZ7KBQW7E", + "ref": "ARZ7KBQW7E", + "name": "Saint-Lô, Le Phénix", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17269426, + 46.15587017 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFI7ROKDWGQ", + "ref": "FI7ROKDWGQ", + "name": "Charlieu, Le Relais de l'Abbaye", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17269426, + 46.15587017 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFI7ROKDWGQ", + "ref": "FI7ROKDWGQ", + "name": "Charlieu, Le Relais de l'Abbaye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.55172496, + 43.30796149 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUYBK6R4NSB", + "ref": "UYBK6R4NSB", + "name": "Le Plan-de-la-Tour , LE REVERDI Les Villages Clubs du Soleil", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.55172496, + 43.30796149 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUYBK6R4NSB", + "ref": "UYBK6R4NSB", + "name": "Le Plan-de-la-Tour , LE REVERDI Les Villages Clubs du Soleil", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5042, + 45.3799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMEDKZN", + "ref": "MEDKZN", + "name": "Les Belleville, Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.027849, + 46.253891 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTM6PKDLX7M", + "ref": "TM6PKDLX7M", + "name": "Saint-Genis-Pouilly, Rue du Salève", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.591795, + 47.197913 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMIGOKDUUYZ", + "ref": "MIGOKDUUYZ", + "name": "Nantes-Chevreul, rue Chevreul -3192", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.667409, + 50.885682 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESR34INWKW", + "ref": "ESR34INWKW", + "name": "Wissant, Les Frangins", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POYDVXOV7P5", + "ref": "OYDVXOV7P5", + "name": "Bruxelles, Parking Odyssée", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43439125, + 43.56209266 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS5JH7VHBMO", + "ref": "S5JH7VHBMO", + "name": "Aix en Provence, Route du Puy Sainte Réparade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43439125, + 43.56209266 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS5JH7VHBMO", + "ref": "S5JH7VHBMO", + "name": "Aix en Provence, Route du Puy Sainte Réparade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56976853, + 48.7744994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI7ALUF5SHC", + "ref": "I7ALUF5SHC", + "name": "Saint-Georges-des-Groseillers, Leverrier", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56976853, + 48.7744994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI7ALUF5SHC", + "ref": "I7ALUF5SHC", + "name": "Saint-Georges-des-Groseillers, Leverrier", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56976853, + 48.7744994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI7ALUF5SHC", + "ref": "I7ALUF5SHC", + "name": "Saint-Georges-des-Groseillers, Leverrier", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30036707, + 49.18885149 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX39YEQWXEA", + "ref": "X39YEQWXEA", + "name": "Hotel Libera, Colombelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30036707, + 49.18885149 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX39YEQWXEA", + "ref": "X39YEQWXEA", + "name": "Hotel Libera, Colombelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.687384, + 48.589142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFTQ4OOHE5N", + "ref": "FTQ4OOHE5N", + "name": "Eckbolsheim-Monnet, Rue Jean Monnet -3709", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.687384, + 48.589142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFTQ4OOHE5N", + "ref": "FTQ4OOHE5N", + "name": "Eckbolsheim-Monnet, Rue Jean Monnet -3709", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.687384, + 48.589142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFTQ4OOHE5N", + "ref": "FTQ4OOHE5N", + "name": "Eckbolsheim-Monnet, Rue Jean Monnet -3709", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.687384, + 48.589142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFTQ4OOHE5N", + "ref": "FTQ4OOHE5N", + "name": "Eckbolsheim-Monnet, Rue Jean Monnet -3709", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.687384, + 48.589142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFTQ4OOHE5N", + "ref": "FTQ4OOHE5N", + "name": "Eckbolsheim-Monnet, Rue Jean Monnet -3709", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.687384, + 48.589142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFTQ4OOHE5N", + "ref": "FTQ4OOHE5N", + "name": "Eckbolsheim-Monnet, Rue Jean Monnet -3709", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.198606, + 49.483735 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRRLMOTRKQ4", + "ref": "RRLMOTRKQ4", + "name": "Stenay-Verdun, 1 Rue des Sorbiers -4156", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16027775, + 49.63430989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY9OMLDCVIQ", + "ref": "Y9OMLDCVIQ", + "name": "Carignan, avenue du Général de Gaulle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16027775, + 49.63430989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY9OMLDCVIQ", + "ref": "Y9OMLDCVIQ", + "name": "Carignan, avenue du Général de Gaulle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16027775, + 49.63430989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY9OMLDCVIQ", + "ref": "Y9OMLDCVIQ", + "name": "Carignan, avenue du Général de Gaulle", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.147496, + 49.083182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN2ZPQBEZ5K", + "ref": "N2ZPQBEZ5K", + "name": "Marly, Rue de la Ferme St Ladre -2859", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POYDVXOV7P5", + "ref": "OYDVXOV7P5", + "name": "Bruxelles, Parking Odyssée", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POYDVXOV7P5", + "ref": "OYDVXOV7P5", + "name": "Bruxelles, Parking Odyssée", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POYDVXOV7P5", + "ref": "OYDVXOV7P5", + "name": "Bruxelles, Parking Odyssée", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.74455721, + 43.33347765 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCYAJRHUDL0", + "ref": "CYAJRHUDL0", + "name": "Biriatou, Rue Herri Alde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3393309, + 44.73389129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX6DOW05MMB", + "ref": "X6DOW05MMB", + "name": "Rimeize, Lieu-dit", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.07374, + 43.1239 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHSC6UVAWYO", + "ref": "HSC6UVAWYO", + "name": "Le Crau, Les Halles Milona", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.072646, + 43.131425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHSC6UVAWYO", + "ref": "HSC6UVAWYO", + "name": "Le Crau, Les Halles Milona", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11453028, + 44.81628383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQGLWSBDZQW", + "ref": "QGLWSBDZQW", + "name": "Fournels, Route de Chaudes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11453028, + 44.81628383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQGLWSBDZQW", + "ref": "QGLWSBDZQW", + "name": "Fournels, Route de Chaudes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11453028, + 44.81628383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQGLWSBDZQW", + "ref": "QGLWSBDZQW", + "name": "Fournels, Route de Chaudes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11453028, + 44.81628383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQGLWSBDZQW", + "ref": "QGLWSBDZQW", + "name": "Fournels, Route de Chaudes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.74455721, + 43.33347765 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCYAJRHUDL0", + "ref": "CYAJRHUDL0", + "name": "Biriatou, Rue Herri Alde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16163419, + 45.8044199 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWQP2PREYY5", + "ref": "WQP2PREYY5", + "name": "Saint-Eustache, Les Pralets Gîtes et Chambres d'Hôtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POYDVXOV7P5", + "ref": "OYDVXOV7P5", + "name": "Bruxelles, Parking Odyssée", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16163419, + 45.8044199 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWQP2PREYY5", + "ref": "WQP2PREYY5", + "name": "Saint-Eustache, Les Pralets Gîtes et Chambres d'Hôtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.061672, + 46.483018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDTPOLB2LSC", + "ref": "DTPOLB2LSC", + "name": "Les Rousses, Office de Tourisme", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.061672, + 46.483018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDTPOLB2LSC", + "ref": "DTPOLB2LSC", + "name": "Les Rousses, Office de Tourisme", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POYDVXOV7P5", + "ref": "OYDVXOV7P5", + "name": "Bruxelles, Parking Odyssée", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POYDVXOV7P5", + "ref": "OYDVXOV7P5", + "name": "Bruxelles, Parking Odyssée", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POYDVXOV7P5", + "ref": "OYDVXOV7P5", + "name": "Bruxelles, Parking Odyssée", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POYDVXOV7P5", + "ref": "OYDVXOV7P5", + "name": "Bruxelles, Parking Odyssée", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POYDVXOV7P5", + "ref": "OYDVXOV7P5", + "name": "Bruxelles, Parking Odyssée", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.624877, + 46.50873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHRNZU6OU4U33", + "ref": "LLHRNZU6OU4U33", + "name": "Le Pal, Parking P1", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.624877, + 46.50873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHRNZU6OU4U33", + "ref": "LLHRNZU6OU4U33", + "name": "Le Pal, Parking P1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.624877, + 46.50873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHRNZU6OU4U33", + "ref": "LLHRNZU6OU4U33", + "name": "Le Pal, Parking P1", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.624877, + 46.50873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHRNZU6OU4U33", + "ref": "LLHRNZU6OU4U33", + "name": "Le Pal, Parking P1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24029603, + 43.68212111 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPIQJLO1TXU", + "ref": "PIQJLO1TXU", + "name": "Saint-Geours-de-Maremne, Route de Bayonne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24029603, + 43.68212111 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPIQJLO1TXU", + "ref": "PIQJLO1TXU", + "name": "Saint-Geours-de-Maremne, Route de Bayonne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.97394, + 46.374656 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBSE7UXMPKB", + "ref": "BSE7UXMPKB", + "name": "Lajoux, Quartier Le Village", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.97394, + 46.374656 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBSE7UXMPKB", + "ref": "BSE7UXMPKB", + "name": "Lajoux, Quartier Le Village", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.546796, + 48.467465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCX85FFNWSA", + "ref": "CX85FFNWSA", + "name": "Lamballe-Amor, Lamballe Carrelage", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0909, + 45.6604 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG53AI8R0G2", + "ref": "G53AI8R0G2", + "name": "Saint-Saturnin, Le Bistrot d'ici", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59592, + 44.8262 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGS6LRLDFED", + "ref": "GS6LRLDFED", + "name": "Rocamadour, Le Bois d'Imbert", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59592, + 44.8262 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGS6LRLDFED", + "ref": "GS6LRLDFED", + "name": "Rocamadour, Le Bois d'Imbert", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59592, + 44.8262 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGS6LRLDFED", + "ref": "GS6LRLDFED", + "name": "Rocamadour, Le Bois d'Imbert", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59592, + 44.8262 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGS6LRLDFED", + "ref": "GS6LRLDFED", + "name": "Rocamadour, Le Bois d'Imbert", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59592, + 44.8262 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGS6LRLDFED", + "ref": "GS6LRLDFED", + "name": "Rocamadour, Le Bois d'Imbert", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59592, + 44.8262 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGS6LRLDFED", + "ref": "GS6LRLDFED", + "name": "Rocamadour, Le Bois d'Imbert", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.13344649, + 44.18653723 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBSU6OTRKUO", + "ref": "BSU6OTRKUO", + "name": "Malaucène, Route du Hameau de Veaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48380838, + 44.03194015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZKLMJTPPX4", + "ref": "ZKLMJTPPX4", + "name": "Hameau Le Bosquet, Saint-Christol", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.13344649, + 44.18653723 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBSU6OTRKUO", + "ref": "BSU6OTRKUO", + "name": "Malaucène, Route du Hameau de Veaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.257253, + 45.824272 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSOH2CQN127", + "ref": "SOH2CQN127", + "name": "Restaurant, Le Cheverny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.257253, + 45.824272 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSOH2CQN127", + "ref": "SOH2CQN127", + "name": "Restaurant, Le Cheverny", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.98026, + 46.5475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRP6RJUZXHE", + "ref": "RP6RJUZXHE", + "name": "Ygrande, Le Château d'Ygrande", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.98026, + 46.5475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRP6RJUZXHE", + "ref": "RP6RJUZXHE", + "name": "Ygrande, Le Château d'Ygrande", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10790934, + 43.51299111 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU4M4GQBZCD", + "ref": "U4M4GQBZCD", + "name": "Came, Zone Artisanale Hippodrome", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10790934, + 43.51299111 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU4M4GQBZCD", + "ref": "U4M4GQBZCD", + "name": "Came, Zone Artisanale Hippodrome", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.741582, + 45.586642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ2H7CNY2IO14", + "ref": "LLJ2H7CNY2IO14", + "name": "La Bourboule, La tour Pom'pin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.471356969, + 43.31339639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLDZGF5PWXI", + "ref": "LDZGF5PWXI", + "name": "La Garde Freinet, boulevard de l'Esplanade", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55017662, + 42.11461946 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRBUT3DZJBH", + "ref": "RBUT3DZJBH", + "name": "La Cave d'Aléria, Rue du Lustincone", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55017662, + 42.11461946 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRBUT3DZJBH", + "ref": "RBUT3DZJBH", + "name": "La Cave d'Aléria, Rue du Lustincone", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55017662, + 42.11461946 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRBUT3DZJBH", + "ref": "RBUT3DZJBH", + "name": "La Cave d'Aléria, Rue du Lustincone", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.76945343, + 50.63343045 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHF3BZTMM7P", + "ref": "HF3BZTMM7P", + "name": "La Gorgue, La Ceriseraie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.238957843, + 48.70900705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLJV43VM9LI", + "ref": "LJV43VM9LI", + "name": "Essey-lès-Nancy, Avenue du 69ième Régiment d'Infanterie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.238957843, + 48.70900705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLJV43VM9LI", + "ref": "LJV43VM9LI", + "name": "Essey-lès-Nancy, Avenue du 69ième Régiment d'Infanterie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.497648, + 43.776233 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI6KMX075ND", + "ref": "I6KMX075ND", + "name": "Menton, Rue du Louvre", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51352747, + 43.58381435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXTR2GOJ0TI", + "ref": "XTR2GOJ0TI", + "name": "Quint-Fonsegrives, La Fontaine aux Grives", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.213878, + 47.962185 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPZOVLMKQWT", + "ref": "PZOVLMKQWT", + "name": "Le Mans, La Isla Bonita", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.741582, + 45.586642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ2H7CNY2IO14", + "ref": "LLJ2H7CNY2IO14", + "name": "La Bourboule, La tour Pom'pin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.67237904, + 50.46757455 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT8VY7PVFBV", + "ref": "T8VY7PVFBV", + "name": "Nœux-les-Mines, Hôtel-Restaurant La Maison Rouge", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.67237904, + 50.46757455 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT8VY7PVFBV", + "ref": "T8VY7PVFBV", + "name": "Nœux-les-Mines, Hôtel-Restaurant La Maison Rouge", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.67237904, + 50.46757455 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT8VY7PVFBV", + "ref": "T8VY7PVFBV", + "name": "Nœux-les-Mines, Hôtel-Restaurant La Maison Rouge", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.67237904, + 50.46757455 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT8VY7PVFBV", + "ref": "T8VY7PVFBV", + "name": "Nœux-les-Mines, Hôtel-Restaurant La Maison Rouge", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.142817, + 45.755703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJM8ETU9UBG", + "ref": "JM8ETU9UBG", + "name": "Aubière, La Rôtisserie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.142817, + 45.755703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJM8ETU9UBG", + "ref": "JM8ETU9UBG", + "name": "Aubière, La Rôtisserie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.18896582, + 47.88217299 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTJ4BORJXNJ", + "ref": "TJ4BORJXNJ", + "name": "Route De Thierenbach , Jungholtz ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.18896582, + 47.88217299 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTJ4BORJXNJ", + "ref": "TJ4BORJXNJ", + "name": "Route De Thierenbach , Jungholtz ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.757397, + 46.213978 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT6PQZXSMTB", + "ref": "T6PQZXSMTB", + "name": "La Chapelle-de-Guinchay, Château des Broyers", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.757397, + 46.213978 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT6PQZXSMTB", + "ref": "T6PQZXSMTB", + "name": "La Chapelle-de-Guinchay, Château des Broyers", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.757397, + 46.213978 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT6PQZXSMTB", + "ref": "T6PQZXSMTB", + "name": "La Chapelle-de-Guinchay, Château des Broyers", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62993506, + 46.50183008 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRBFHMY0D1N", + "ref": "RBFHMY0D1N", + "name": "Le Pal, Les Lodges du Pal", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58194546, + 45.29850531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHJYJFR6JY", + "ref": "THJYJFR6JY", + "name": "Office de Tourisme, Val Thorens", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58194546, + 45.29850531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHJYJFR6JY", + "ref": "THJYJFR6JY", + "name": "Office de Tourisme, Val Thorens", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58194546, + 45.29850531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHJYJFR6JY", + "ref": "THJYJFR6JY", + "name": "Office de Tourisme, Val Thorens", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.89112241, + 50.33121269 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJIPTIDSXGP", + "ref": "JIPTIDSXGP", + "name": "Gavrelle, Le Manoir de Gavrelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.89112241, + 50.33121269 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJIPTIDSXGP", + "ref": "JIPTIDSXGP", + "name": "Gavrelle, Le Manoir de Gavrelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.96894493, + 42.64912753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFBTYPI8YWW", + "ref": "FBTYPI8YWW", + "name": "Alénya, Le Mas Bazan", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81625874, + 45.54545139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPTGFUYTSHN", + "ref": "PTGFUYTSHN", + "name": "Le Mont-Dore, Le P'tit Cham", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81625874, + 45.54545139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPTGFUYTSHN", + "ref": "PTGFUYTSHN", + "name": "Le Mont-Dore, Le P'tit Cham", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62952191, + 46.50226949 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHQB3EQ7FWYJ7", + "ref": "LLHQB3EQ7FWYJ7", + "name": "Le Pal, Hôtel Savana Réserve", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.431697, + 44.178949 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA8RIVCHP5G", + "ref": "A8RIVCHP5G", + "name": "Meyrueis, Le Jardin des Cevennes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62993506, + 46.50183008 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRBFHMY0D1N", + "ref": "RBFHMY0D1N", + "name": "Le Pal, Les Lodges du Pal", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.624877, + 46.50873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHRNZU6OU4U33", + "ref": "LLHRNZU6OU4U33", + "name": "Le Pal, Parking P1", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.624877, + 46.50873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHRNZU6OU4U33", + "ref": "LLHRNZU6OU4U33", + "name": "Le Pal, Parking P1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62993506, + 46.50183008 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRBFHMY0D1N", + "ref": "RBFHMY0D1N", + "name": "Le Pal, Les Lodges du Pal", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.624877, + 46.50873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHRNZU6OU4U33", + "ref": "LLHRNZU6OU4U33", + "name": "Le Pal, Parking P1", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62993506, + 46.50183008 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRBFHMY0D1N", + "ref": "RBFHMY0D1N", + "name": "Le Pal, Les Lodges du Pal", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.624877, + 46.50873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHRNZU6OU4U33", + "ref": "LLHRNZU6OU4U33", + "name": "Le Pal, Parking P1", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.624877, + 46.50873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHRNZU6OU4U33", + "ref": "LLHRNZU6OU4U33", + "name": "Le Pal, Parking P1", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58194546, + 45.29850531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHJYJFR6JY", + "ref": "THJYJFR6JY", + "name": "Office de Tourisme, Val Thorens", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.431697, + 44.178949 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA8RIVCHP5G", + "ref": "A8RIVCHP5G", + "name": "Meyrueis, Le Jardin des Cevennes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.757397, + 46.213978 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT6PQZXSMTB", + "ref": "T6PQZXSMTB", + "name": "La Chapelle-de-Guinchay, Château des Broyers", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.642588, + 48.844303 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRDCHWGQR7O", + "ref": "RDCHWGQR7O", + "name": "Niedermodern, Rue de l'Artisanat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.757397, + 46.213978 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT6PQZXSMTB", + "ref": "T6PQZXSMTB", + "name": "La Chapelle-de-Guinchay, Château des Broyers", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.757397, + 46.213978 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT6PQZXSMTB", + "ref": "T6PQZXSMTB", + "name": "La Chapelle-de-Guinchay, Château des Broyers", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.757397, + 46.213978 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT6PQZXSMTB", + "ref": "T6PQZXSMTB", + "name": "La Chapelle-de-Guinchay, Château des Broyers", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.757397, + 46.213978 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT6PQZXSMTB", + "ref": "T6PQZXSMTB", + "name": "La Chapelle-de-Guinchay, Château des Broyers", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.62097, + 45.5586 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGE9BBRGUJX", + "ref": "GE9BBRGUJX", + "name": "Tauves, Le Clos Auvergnat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.62097, + 45.5586 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGE9BBRGUJX", + "ref": "GE9BBRGUJX", + "name": "Tauves, Le Clos Auvergnat", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.642588, + 48.844303 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRDCHWGQR7O", + "ref": "RDCHWGQR7O", + "name": "Niedermodern, Rue de l'Artisanat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.642588, + 48.844303 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRDCHWGQR7O", + "ref": "RDCHWGQR7O", + "name": "Niedermodern, Rue de l'Artisanat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.642588, + 48.844303 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRDCHWGQR7O", + "ref": "RDCHWGQR7O", + "name": "Niedermodern, Rue de l'Artisanat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28624508, + 47.08027089 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXA7W3VU7CJ", + "ref": "XA7W3VU7CJ", + "name": "Clisson, Le Hall Lacroix", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.79741563, + 50.13490872 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMCGQW3FISF", + "ref": "MCGQW3FISF", + "name": "Grand-Laviers, Route du Val", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.79741563, + 50.13490872 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMCGQW3FISF", + "ref": "MCGQW3FISF", + "name": "Grand-Laviers, Route du Val", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31549, + 47.7903 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSVDOGAVSWH", + "ref": "SVDOGAVSWH", + "name": "Kingersheim, Le Florival", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2021-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31549, + 47.7903 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSVDOGAVSWH", + "ref": "SVDOGAVSWH", + "name": "Kingersheim, Le Florival", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31549, + 47.7903 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSVDOGAVSWH", + "ref": "SVDOGAVSWH", + "name": "Kingersheim, Le Florival", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31549, + 47.7903 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSVDOGAVSWH", + "ref": "SVDOGAVSWH", + "name": "Kingersheim, Le Florival", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28624508, + 47.08027089 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXA7W3VU7CJ", + "ref": "XA7W3VU7CJ", + "name": "Clisson, Le Hall Lacroix", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28624508, + 47.08027089 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXA7W3VU7CJ", + "ref": "XA7W3VU7CJ", + "name": "Clisson, Le Hall Lacroix", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9441, + 49.240331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB0GEOLP0UK", + "ref": "B0GEOLP0UK", + "name": "Briey-Gambetta, 14 rue gambetta -4112", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.147496, + 49.083182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN2ZPQBEZ5K", + "ref": "N2ZPQBEZ5K", + "name": "Marly, Rue de la Ferme St Ladre -2859", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066905, + 49.328758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPWBKPDL4GY", + "ref": "PWBKPDL4GY", + "name": "Hayange, Esplanade de la Liberté", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225677, + 45.726768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVOSJB7Z6S8", + "ref": "VOSJB7Z6S8", + "name": "Feurs-Sables, Chemin des Sables -3900", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9354842, + 45.7838021 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ8E4GHPDN1", + "ref": "Z8E4GHPDN1", + "name": "Vaulx-en-Velin, Avenue Marcel Cachin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9354842, + 45.7838021 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ8E4GHPDN1", + "ref": "Z8E4GHPDN1", + "name": "Vaulx-en-Velin, Avenue Marcel Cachin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80506843, + 45.34822043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZFHTLR4J0P", + "ref": "ZFHTLR4J0P", + "name": "Salaise sur Sanne, 125 Rte de Valence", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77259809, + 45.60602154 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PADAKWI9JTZ", + "ref": "ADAKWI9JTZ", + "name": "Grigny, 25 avenue Jacques Chirac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80506843, + 45.34822043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZFHTLR4J0P", + "ref": "ZFHTLR4J0P", + "name": "Salaise sur Sanne, 125 Rte de Valence", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.068128, + 45.609138 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTNSYPNWAHQ", + "ref": "TNSYPNWAHQ", + "name": "Savigneux-80-Duguet, boulevard Duguet -3858", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225677, + 45.726768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVOSJB7Z6S8", + "ref": "VOSJB7Z6S8", + "name": "Feurs-Sables, Chemin des Sables -3900", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.068128, + 45.609138 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTNSYPNWAHQ", + "ref": "TNSYPNWAHQ", + "name": "Savigneux-80-Duguet, boulevard Duguet -3858", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.482969, + 45.672175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFI90Y2MKQN", + "ref": "FI90Y2MKQN", + "name": "Morestel-Claudel, rue Paul Claudel -3801", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.482969, + 45.672175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFI90Y2MKQN", + "ref": "FI90Y2MKQN", + "name": "Morestel-Claudel, rue Paul Claudel -3801", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.217572, + 45.523377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXHKFRPJTZC", + "ref": "XHKFRPJTZC", + "name": "Bonson-Mairie, Avenue de la Mairie -3938", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.217572, + 45.523377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXHKFRPJTZC", + "ref": "XHKFRPJTZC", + "name": "Bonson-Mairie, Avenue de la Mairie -3938", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225677, + 45.726768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVOSJB7Z6S8", + "ref": "VOSJB7Z6S8", + "name": "Feurs-Sables, Chemin des Sables -3900", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225677, + 45.726768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVOSJB7Z6S8", + "ref": "VOSJB7Z6S8", + "name": "Feurs-Sables, Chemin des Sables -3900", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225677, + 45.726768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVOSJB7Z6S8", + "ref": "VOSJB7Z6S8", + "name": "Feurs-Sables, Chemin des Sables -3900", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77259809, + 45.60602154 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PADAKWI9JTZ", + "ref": "ADAKWI9JTZ", + "name": "Grigny, 25 avenue Jacques Chirac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.40035862, + 45.80450072 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCCNQFPQQIB", + "ref": "CCNQFPQQIB", + "name": "Montalieu, Chemin d'Anclenoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050249, + 45.797355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKU14SZGVCB", + "ref": "KU14SZGVCB", + "name": "Jonage-Nationale, Rue Nationale -3708", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225677, + 45.726768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVOSJB7Z6S8", + "ref": "VOSJB7Z6S8", + "name": "Feurs-Sables, Chemin des Sables -3900", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378426, + 45.443624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYTJ4Y9PL7Q", + "ref": "YTJ4Y9PL7Q", + "name": "Saint Etienne, 5 Rue Jean Jacques Rousseau", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378426, + 45.443624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYTJ4Y9PL7Q", + "ref": "YTJ4Y9PL7Q", + "name": "Saint Etienne, 5 Rue Jean Jacques Rousseau", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80506843, + 45.34822043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZFHTLR4J0P", + "ref": "ZFHTLR4J0P", + "name": "Salaise sur Sanne, 125 Rte de Valence", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.695287, + 45.256171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXRB9PAWM7D", + "ref": "XRB9PAWM7D", + "name": "Davezieux-Lyon, route de Lyon -3669", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225677, + 45.726768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVOSJB7Z6S8", + "ref": "VOSJB7Z6S8", + "name": "Feurs-Sables, Chemin des Sables -3900", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.198164, + 45.75177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHGSOGXCO0T", + "ref": "HGSOGXCO0T", + "name": "Tignieu-Jamezieu-Cremieu, Route de Cremieu -3639", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.198164, + 45.75177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHGSOGXCO0T", + "ref": "HGSOGXCO0T", + "name": "Tignieu-Jamezieu-Cremieu, Route de Cremieu -3639", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.40035862, + 45.80450072 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCCNQFPQQIB", + "ref": "CCNQFPQQIB", + "name": "Montalieu, Chemin d'Anclenoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378426, + 45.443624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYTJ4Y9PL7Q", + "ref": "YTJ4Y9PL7Q", + "name": "Saint Etienne, 5 Rue Jean Jacques Rousseau", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378426, + 45.443624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYTJ4Y9PL7Q", + "ref": "YTJ4Y9PL7Q", + "name": "Saint Etienne, 5 Rue Jean Jacques Rousseau", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.695287, + 45.256171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXRB9PAWM7D", + "ref": "XRB9PAWM7D", + "name": "Davezieux-Lyon, route de Lyon -3669", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43081, + 45.567702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNCVUHJ9T2", + "ref": "JNCVUHJ9T2", + "name": "St-Jean-De-Soudain-Setives, route de Lyon -3697", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.695287, + 45.256171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXRB9PAWM7D", + "ref": "XRB9PAWM7D", + "name": "Davezieux-Lyon, route de Lyon -3669", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36738503, + 47.12095734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBBOWNBKO6", + "ref": "LBBOWNBKO6", + "name": "E. Leclerc, Saint-Doulchard", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.695287, + 45.256171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXRB9PAWM7D", + "ref": "XRB9PAWM7D", + "name": "Davezieux-Lyon, route de Lyon -3669", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050249, + 45.797355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKU14SZGVCB", + "ref": "KU14SZGVCB", + "name": "Jonage-Nationale, Rue Nationale -3708", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050249, + 45.797355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKU14SZGVCB", + "ref": "KU14SZGVCB", + "name": "Jonage-Nationale, Rue Nationale -3708", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050249, + 45.797355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKU14SZGVCB", + "ref": "KU14SZGVCB", + "name": "Jonage-Nationale, Rue Nationale -3708", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43081, + 45.567702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNCVUHJ9T2", + "ref": "JNCVUHJ9T2", + "name": "St-Jean-De-Soudain-Setives, route de Lyon -3697", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050249, + 45.797355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKU14SZGVCB", + "ref": "KU14SZGVCB", + "name": "Jonage-Nationale, Rue Nationale -3708", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.428335, + 45.894845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT8CJCVP99U", + "ref": "T8CJCVP99U", + "name": "Tarare, 1 Rte de Feurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80506843, + 45.34822043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZFHTLR4J0P", + "ref": "ZFHTLR4J0P", + "name": "Salaise sur Sanne, 125 Rte de Valence", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050249, + 45.797355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKU14SZGVCB", + "ref": "KU14SZGVCB", + "name": "Jonage-Nationale, Rue Nationale -3708", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80628112, + 45.57668842 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXDPR5VCA2O", + "ref": "XDPR5VCA2O", + "name": "Chasse Sur Rhône, 90 Chemin des Roues", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378426, + 45.443624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYTJ4Y9PL7Q", + "ref": "YTJ4Y9PL7Q", + "name": "Saint Etienne, 5 Rue Jean Jacques Rousseau", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528626, + 49.098951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFINPWCYSPC", + "ref": "FINPWCYSPC", + "name": "Fosses-Saint-Ladre, Rue de la Ferme Saint Ladre -3118", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.561378, + 48.957485 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ01CFCFFW4", + "ref": "J01CFCFFW4", + "name": "Villepinte-2-Breguet, Allée Louis Bréguet -3155", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.469992, + 49.24107 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO2LQBPQQEQ", + "ref": "O2LQBPQQEQ", + "name": "Saint-Maximin-Liberte, 125 rue de la liberté -3624", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513621, + 48.911787 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBXEZOXEAUK", + "ref": "BXEZOXEAUK", + "name": "Livry Gargan, 20 à 28 Boulevard Jean Moulin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513621, + 48.911787 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBXEZOXEAUK", + "ref": "BXEZOXEAUK", + "name": "Livry Gargan, 20 à 28 Boulevard Jean Moulin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364373, + 48.966502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTCRKEQNZSQ", + "ref": "TCRKEQNZSQ", + "name": "Pierrefitte-Sur-Seine-Mermoz, Boulevard Jean Mermoz -3752", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.377159, + 48.920913 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEAGJ5CQBFK", + "ref": "EAGJ5CQBFK", + "name": "Aubervilliers, Rue de Saint Denis -3393", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.467895, + 48.870591 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POKOJZHOQ8P", + "ref": "OKOJZHOQ8P", + "name": "Montreuil-Rosny, 284 Rue de Rosny -3408", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364373, + 48.966502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTCRKEQNZSQ", + "ref": "TCRKEQNZSQ", + "name": "Pierrefitte-Sur-Seine-Mermoz, Boulevard Jean Mermoz -3752", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528626, + 49.098951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFINPWCYSPC", + "ref": "FINPWCYSPC", + "name": "Fosses-Saint-Ladre, Rue de la Ferme Saint Ladre -3118", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.469992, + 49.24107 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO2LQBPQQEQ", + "ref": "O2LQBPQQEQ", + "name": "Saint-Maximin-Liberte, 125 rue de la liberté -3624", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.377159, + 48.920913 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEAGJ5CQBFK", + "ref": "EAGJ5CQBFK", + "name": "Aubervilliers, Rue de Saint Denis -3393", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.429302, + 49.511588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC9NIVDRMEM", + "ref": "C9NIVDRMEM", + "name": "St-Just-En-Chaussee-Tailbouis, Rue de Tailbouis -3342", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.485371, + 48.884429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ0HJQPVBCX", + "ref": "Q0HJQPVBCX", + "name": "Rosny-Sous-Bois, Boulevard Alsace Lorraine -2683", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.333673, + 49.313813 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBNEXS6CBJB", + "ref": "BNEXS6CBJB", + "name": "Bury, ZA \"Le Bois Noir Nord\" -3156", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402902, + 48.96203 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBK88LLSEWT", + "ref": "BK88LLSEWT", + "name": "Garges-Les-Gonesse-Cerdan, 3 Rue Marcel Cerdan -3159", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402902, + 48.96203 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBK88LLSEWT", + "ref": "BK88LLSEWT", + "name": "Garges-Les-Gonesse-Cerdan, 3 Rue Marcel Cerdan -3159", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.485371, + 48.884429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ0HJQPVBCX", + "ref": "Q0HJQPVBCX", + "name": "Rosny-Sous-Bois, Boulevard Alsace Lorraine -2683", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.591795, + 47.197913 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMIGOKDUUYZ", + "ref": "MIGOKDUUYZ", + "name": "Nantes-Chevreul, rue Chevreul -3192", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.333673, + 49.313813 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBNEXS6CBJB", + "ref": "BNEXS6CBJB", + "name": "Bury, ZA \"Le Bois Noir Nord\" -3156", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.561378, + 48.957485 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ01CFCFFW4", + "ref": "J01CFCFFW4", + "name": "Villepinte-2-Breguet, Allée Louis Bréguet -3155", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378426, + 45.443624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYTJ4Y9PL7Q", + "ref": "YTJ4Y9PL7Q", + "name": "Saint Etienne, 5 Rue Jean Jacques Rousseau", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.198164, + 45.75177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHGSOGXCO0T", + "ref": "HGSOGXCO0T", + "name": "Tignieu-Jamezieu-Cremieu, Route de Cremieu -3639", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225677, + 45.726768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVOSJB7Z6S8", + "ref": "VOSJB7Z6S8", + "name": "Feurs-Sables, Chemin des Sables -3900", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863168, + 45.725857 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK7EHUWAXLO", + "ref": "K7EHUWAXLO", + "name": "Venissieux-Pressense, avenue Francis de Pressensé -3787", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863168, + 45.725857 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK7EHUWAXLO", + "ref": "K7EHUWAXLO", + "name": "Venissieux-Pressense, avenue Francis de Pressensé -3787", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383538, + 45.406979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDXHSAGJEDX", + "ref": "DXHSAGJEDX", + "name": "St-Etienne-Proust, 2 rue Marcel Proust -3653", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.292144, + 45.395554 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFU2H3DXVPO", + "ref": "FU2H3DXVPO", + "name": "Firminy-Alcazar, 1 rue de l'Alcazar -3652", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.292144, + 45.395554 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFU2H3DXVPO", + "ref": "FU2H3DXVPO", + "name": "Firminy-Alcazar, 1 rue de l'Alcazar -3652", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383538, + 45.406979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDXHSAGJEDX", + "ref": "DXHSAGJEDX", + "name": "St-Etienne-Proust, 2 rue Marcel Proust -3653", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.198164, + 45.75177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHGSOGXCO0T", + "ref": "HGSOGXCO0T", + "name": "Tignieu-Jamezieu-Cremieu, Route de Cremieu -3639", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.429302, + 49.511588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC9NIVDRMEM", + "ref": "C9NIVDRMEM", + "name": "St-Just-En-Chaussee-Tailbouis, Rue de Tailbouis -3342", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0952, + 49.250414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDEDECYP5I", + "ref": "UDEDECYP5I", + "name": "Villers Cotterets , Avenue de la Ferté Milon - 2675", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.873402, + 49.482105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVPDD4Y5RGE", + "ref": "VPDD4Y5RGE", + "name": "Thourotte-Juin, 2 rue du Maréchal Juin -3541", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.467895, + 48.870591 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POKOJZHOQ8P", + "ref": "OKOJZHOQ8P", + "name": "Montreuil-Rosny, 284 Rue de Rosny -3408", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.530189, + 48.873413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPT85VGEYSD", + "ref": "PT85VGEYSD", + "name": "Neuilly-S/Marne-Schumann, Avenue Robert Schumann -3009", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.596578, + 49.307699 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLSGZFNVR4", + "ref": "XLSGZFNVR4", + "name": "Pont-Sainte-Maxence, 1227 rue du Pasteur -3260", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.596578, + 49.307699 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLSGZFNVR4", + "ref": "XLSGZFNVR4", + "name": "Pont-Sainte-Maxence, 1227 rue du Pasteur -3260", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0952, + 49.250414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDEDECYP5I", + "ref": "UDEDECYP5I", + "name": "Villers Cotterets , Avenue de la Ferté Milon - 2675", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.873402, + 49.482105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVPDD4Y5RGE", + "ref": "VPDD4Y5RGE", + "name": "Thourotte-Juin, 2 rue du Maréchal Juin -3541", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.530189, + 48.873413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPT85VGEYSD", + "ref": "PT85VGEYSD", + "name": "Neuilly-S/Marne-Schumann, Avenue Robert Schumann -3009", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.233955, + 45.599607 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAX86CBKORF", + "ref": "AX86CBKORF", + "name": "Bourgoin-Silos, Rue des Silos -3030", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.520037, + 45.478882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDQAOP9IPRJ", + "ref": "DQAOP9IPRJ", + "name": "St-Chamond, rue Edmond Locard -2993", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066905, + 49.328758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPWBKPDL4GY", + "ref": "PWBKPDL4GY", + "name": "Hayange, Esplanade de la Liberté", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.520037, + 45.478882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDQAOP9IPRJ", + "ref": "DQAOP9IPRJ", + "name": "St-Chamond, rue Edmond Locard -2993", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.390331, + 48.945237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRE6KFOZKSG", + "ref": "RE6KFOZKSG", + "name": "Saint-Memmie-Simon, Avenue Jacques Simon -3919", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.155524, + 49.256228 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBCORODH6N5", + "ref": "BCORODH6N5", + "name": "Mondelange-Europe, Avenue de l'Europe -4028", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.390331, + 48.945237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRE6KFOZKSG", + "ref": "RE6KFOZKSG", + "name": "Saint-Memmie-Simon, Avenue Jacques Simon -3919", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.390331, + 48.945237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRE6KFOZKSG", + "ref": "RE6KFOZKSG", + "name": "Saint-Memmie-Simon, Avenue Jacques Simon -3919", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066905, + 49.328758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPWBKPDL4GY", + "ref": "PWBKPDL4GY", + "name": "Hayange, Esplanade de la Liberté", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066905, + 49.328758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPWBKPDL4GY", + "ref": "PWBKPDL4GY", + "name": "Hayange, Esplanade de la Liberté", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.159369, + 49.149954 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHWWPMMR63R", + "ref": "HWWPMMR63R", + "name": "Woippy-Thionville, Avenue de Thionville -3333", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.089515, + 49.071433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGRBGH8S115", + "ref": "GRBGH8S115", + "name": "Jouy-Arches, Rue de Metz -2435", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066905, + 49.328758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPWBKPDL4GY", + "ref": "PWBKPDL4GY", + "name": "Hayange, Esplanade de la Liberté", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066905, + 49.328758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPWBKPDL4GY", + "ref": "PWBKPDL4GY", + "name": "Hayange, Esplanade de la Liberté", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.089515, + 49.071433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGRBGH8S115", + "ref": "GRBGH8S115", + "name": "Jouy-Arches, Rue de Metz -2435", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.159369, + 49.149954 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHWWPMMR63R", + "ref": "HWWPMMR63R", + "name": "Woippy-Thionville, Avenue de Thionville -3333", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.159203, + 49.34989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPCFCO01CI", + "ref": "CPCFCO01CI", + "name": "Thionville, 5 Rue de l'Ancienne Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.773942, + 49.523865 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA5TVCKW5J5", + "ref": "A5TVCKW5J5", + "name": "Longwy-Saintignon, Avenue Saintignon -3191", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.147496, + 49.083182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN2ZPQBEZ5K", + "ref": "N2ZPQBEZ5K", + "name": "Marly, Rue de la Ferme St Ladre -2859", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.147496, + 49.083182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN2ZPQBEZ5K", + "ref": "N2ZPQBEZ5K", + "name": "Marly, Rue de la Ferme St Ladre -2859", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.159203, + 49.34989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPCFCO01CI", + "ref": "CPCFCO01CI", + "name": "Thionville, 5 Rue de l'Ancienne Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.928759, + 50.565816 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAWPJ7Z2ZCT", + "ref": "AWPJ7Z2ZCT", + "name": "Wavrin, Rue du Général Koenig -2895", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432851, + 50.962903 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ5RJLBUY0V", + "ref": "J5RJLBUY0V", + "name": "Socx, 2 Faubourg de Cassel - 3762", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.390331, + 48.945237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRE6KFOZKSG", + "ref": "RE6KFOZKSG", + "name": "Saint-Memmie-Simon, Avenue Jacques Simon -3919", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.198606, + 49.483735 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRRLMOTRKQ4", + "ref": "RRLMOTRKQ4", + "name": "Stenay-Verdun, 1 Rue des Sorbiers -4156", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.198606, + 49.483735 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRRLMOTRKQ4", + "ref": "RRLMOTRKQ4", + "name": "Stenay-Verdun, 1 Rue des Sorbiers -4156", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.198606, + 49.483735 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRRLMOTRKQ4", + "ref": "RRLMOTRKQ4", + "name": "Stenay-Verdun, 1 Rue des Sorbiers -4156", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.773942, + 49.523865 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA5TVCKW5J5", + "ref": "A5TVCKW5J5", + "name": "Longwy-Saintignon, Avenue Saintignon -3191", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16027775, + 49.63430989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY9OMLDCVIQ", + "ref": "Y9OMLDCVIQ", + "name": "Carignan, avenue du Général de Gaulle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16027775, + 49.63430989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY9OMLDCVIQ", + "ref": "Y9OMLDCVIQ", + "name": "Carignan, avenue du Général de Gaulle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.147496, + 49.083182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN2ZPQBEZ5K", + "ref": "N2ZPQBEZ5K", + "name": "Marly, Rue de la Ferme St Ladre -2859", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16027775, + 49.63430989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY9OMLDCVIQ", + "ref": "Y9OMLDCVIQ", + "name": "Carignan, avenue du Général de Gaulle", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.147496, + 49.083182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN2ZPQBEZ5K", + "ref": "N2ZPQBEZ5K", + "name": "Marly, Rue de la Ferme St Ladre -2859", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.198606, + 49.483735 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRRLMOTRKQ4", + "ref": "RRLMOTRKQ4", + "name": "Stenay-Verdun, 1 Rue des Sorbiers -4156", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.198606, + 49.483735 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRRLMOTRKQ4", + "ref": "RRLMOTRKQ4", + "name": "Stenay-Verdun, 1 Rue des Sorbiers -4156", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.155524, + 49.256228 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBCORODH6N5", + "ref": "BCORODH6N5", + "name": "Mondelange-Europe, Avenue de l'Europe -4028", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.390331, + 48.945237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRE6KFOZKSG", + "ref": "RE6KFOZKSG", + "name": "Saint-Memmie-Simon, Avenue Jacques Simon -3919", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.155524, + 49.256228 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBCORODH6N5", + "ref": "BCORODH6N5", + "name": "Mondelange-Europe, Avenue de l'Europe -4028", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9441, + 49.240331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB0GEOLP0UK", + "ref": "B0GEOLP0UK", + "name": "Briey-Gambetta, 14 rue gambetta -4112", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9441, + 49.240331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB0GEOLP0UK", + "ref": "B0GEOLP0UK", + "name": "Briey-Gambetta, 14 rue gambetta -4112", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9441, + 49.240331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB0GEOLP0UK", + "ref": "B0GEOLP0UK", + "name": "Briey-Gambetta, 14 rue gambetta -4112", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9441, + 49.240331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB0GEOLP0UK", + "ref": "B0GEOLP0UK", + "name": "Briey-Gambetta, 14 rue gambetta -4112", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9441, + 49.240331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB0GEOLP0UK", + "ref": "B0GEOLP0UK", + "name": "Briey-Gambetta, 14 rue gambetta -4112", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.155524, + 49.256228 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBCORODH6N5", + "ref": "BCORODH6N5", + "name": "Mondelange-Europe, Avenue de l'Europe -4028", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.390331, + 48.945237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRE6KFOZKSG", + "ref": "RE6KFOZKSG", + "name": "Saint-Memmie-Simon, Avenue Jacques Simon -3919", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.011236, + 50.612535 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT44AJWWFZ5", + "ref": "T44AJWWFZ5", + "name": "Loos, 19 Boulevard de la République - 3457", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.185979, + 50.673208 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXDVKEHAKEK", + "ref": "XDVKEHAKEK", + "name": "Roubaix, rue Horace Vernet -3070", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.011236, + 50.612535 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT44AJWWFZ5", + "ref": "T44AJWWFZ5", + "name": "Loos, 19 Boulevard de la République - 3457", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.101726, + 50.388448 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX3JXPCEBZD", + "ref": "X3JXPCEBZD", + "name": "Waziers, rue Paul Langevin -2679", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.135558, + 50.678284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV4H4VQXES1", + "ref": "V4H4VQXES1", + "name": "Wasquehal, rue Jean Jaurès -1346", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.135558, + 50.678284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV4H4VQXES1", + "ref": "V4H4VQXES1", + "name": "Wasquehal, rue Jean Jaurès -1346", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.135558, + 50.678284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV4H4VQXES1", + "ref": "V4H4VQXES1", + "name": "Wasquehal, rue Jean Jaurès -1346", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.103388, + 50.634139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCLC4PORYME", + "ref": "CLC4PORYME", + "name": "Hellemmes Lille, 6 Rue Jacquard - 3318", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.103388, + 50.634139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCLC4PORYME", + "ref": "CLC4PORYME", + "name": "Hellemmes Lille, 6 Rue Jacquard - 3318", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.103388, + 50.634139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCLC4PORYME", + "ref": "CLC4PORYME", + "name": "Hellemmes Lille, 6 Rue Jacquard - 3318", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.434086, + 51.022555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCIWXAZ1UQT", + "ref": "CIWXAZ1UQT", + "name": "Teteghem-Rouge, Route du Chapeau Rouge -3753", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.103388, + 50.634139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCLC4PORYME", + "ref": "CLC4PORYME", + "name": "Hellemmes Lille, 6 Rue Jacquard - 3318", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.101726, + 50.388448 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX3JXPCEBZD", + "ref": "X3JXPCEBZD", + "name": "Waziers, rue Paul Langevin -2679", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.120226, + 50.518645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS4FAVFBZN7", + "ref": "S4FAVFBZN7", + "name": "Pont-A-Marcq, avenue du Général de Gaulle -2677", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.101726, + 50.388448 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX3JXPCEBZD", + "ref": "X3JXPCEBZD", + "name": "Waziers, rue Paul Langevin -2679", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.434086, + 51.022555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCIWXAZ1UQT", + "ref": "CIWXAZ1UQT", + "name": "Teteghem-Rouge, Route du Chapeau Rouge -3753", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.434086, + 51.022555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCIWXAZ1UQT", + "ref": "CIWXAZ1UQT", + "name": "Teteghem-Rouge, Route du Chapeau Rouge -3753", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.434086, + 51.022555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCIWXAZ1UQT", + "ref": "CIWXAZ1UQT", + "name": "Teteghem-Rouge, Route du Chapeau Rouge -3753", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.820695, + 45.279697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS1EZVRWU5Q", + "ref": "S1EZVRWU5Q", + "name": "Saint-Rambert-D-Albon-Milan, Chemin de Milan -3575", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.820695, + 45.279697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS1EZVRWU5Q", + "ref": "S1EZVRWU5Q", + "name": "Saint-Rambert-D-Albon-Milan, Chemin de Milan -3575", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.233955, + 45.599607 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAX86CBKORF", + "ref": "AX86CBKORF", + "name": "Bourgoin-Silos, Rue des Silos -3030", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80628112, + 45.57668842 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXDPR5VCA2O", + "ref": "XDPR5VCA2O", + "name": "Chasse Sur Rhône, 90 Chemin des Roues", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.120226, + 50.518645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS4FAVFBZN7", + "ref": "S4FAVFBZN7", + "name": "Pont-A-Marcq, avenue du Général de Gaulle -2677", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.135558, + 50.678284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV4H4VQXES1", + "ref": "V4H4VQXES1", + "name": "Wasquehal, rue Jean Jaurès -1346", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.185979, + 50.673208 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXDVKEHAKEK", + "ref": "XDVKEHAKEK", + "name": "Roubaix, rue Horace Vernet -3070", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.122936, + 50.3543 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVNYVFQYTMF", + "ref": "VNYVFQYTMF", + "name": "Sin-le-Noble, Lidl", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.011236, + 50.612535 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT44AJWWFZ5", + "ref": "T44AJWWFZ5", + "name": "Loos, 19 Boulevard de la République - 3457", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.841713, + 50.450328 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMKW1V71V7J", + "ref": "MKW1V71V7J", + "name": "Vendin-Le-Vieil-Saint-Auguste, Place Saint Auguste -3057", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.928759, + 50.565816 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAWPJ7Z2ZCT", + "ref": "AWPJ7Z2ZCT", + "name": "Wavrin, Rue du Général Koenig -2895", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.887186, + 50.681882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV5VAKB6YB", + "ref": "HV5VAKB6YB", + "name": "Armentieres-Mun, Albert de Mun -3683", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.122936, + 50.3543 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVNYVFQYTMF", + "ref": "VNYVFQYTMF", + "name": "Sin-le-Noble, Lidl", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.897218, + 50.492087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVT5FXZFPHK", + "ref": "VT5FXZFPHK", + "name": "Meurchin, Rue Mirabeau -2888", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.897218, + 50.492087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVT5FXZFPHK", + "ref": "VT5FXZFPHK", + "name": "Meurchin, Rue Mirabeau -2888", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.887186, + 50.681882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV5VAKB6YB", + "ref": "HV5VAKB6YB", + "name": "Armentieres-Mun, Albert de Mun -3683", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.841713, + 50.450328 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMKW1V71V7J", + "ref": "MKW1V71V7J", + "name": "Vendin-Le-Vieil-Saint-Auguste, Place Saint Auguste -3057", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.101726, + 50.388448 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX3JXPCEBZD", + "ref": "X3JXPCEBZD", + "name": "Waziers, rue Paul Langevin -2679", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432851, + 50.962903 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ5RJLBUY0V", + "ref": "J5RJLBUY0V", + "name": "Socx, 2 Faubourg de Cassel - 3762", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432851, + 50.962903 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ5RJLBUY0V", + "ref": "J5RJLBUY0V", + "name": "Socx, 2 Faubourg de Cassel - 3762", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432851, + 50.962903 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ5RJLBUY0V", + "ref": "J5RJLBUY0V", + "name": "Socx, 2 Faubourg de Cassel - 3762", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.180632, + 50.721213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBJUX8ADWL0", + "ref": "BJUX8ADWL0", + "name": "Tourcoing-Levant, rue du Levant - 448", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.180632, + 50.721213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBJUX8ADWL0", + "ref": "BJUX8ADWL0", + "name": "Tourcoing-Levant, rue du Levant - 448", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.011236, + 50.612535 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT44AJWWFZ5", + "ref": "T44AJWWFZ5", + "name": "Loos, 19 Boulevard de la République - 3457", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.984502, + 50.750566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYONT6QVIXV", + "ref": "YONT6QVIXV", + "name": "Comines-Armentieres, rue d'Armentières -3779", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.984502, + 50.750566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYONT6QVIXV", + "ref": "YONT6QVIXV", + "name": "Comines-Armentieres, rue d'Armentières -3779", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.88672073, + 50.86272062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAKZY4U1S4", + "ref": "SAKZY4U1S4", + "name": "Guînes, ZA du Moulin à Huile", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.597708, + 50.403398 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB22E6IS6IJ", + "ref": "B22E6IS6IJ", + "name": "Berck, Zone Industrielle de la Vigogne -3367", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.973966, + 50.417064 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSWR9LBHFPD", + "ref": "SWR9LBHFPD", + "name": "Henin-Beaumont-Schweitzer, boulevard Schweitzer -3364", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07100038, + 44.94711176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVM4NTLS3KB", + "ref": "VM4NTLS3KB", + "name": "Puisseguin, lieu-dit, Roques", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.185883, + 49.001745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGQZPED0A5", + "ref": "JGQZPED0A5", + "name": "Herblay-Coty, 7 Rue René Coty -3959", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.185883, + 49.001745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGQZPED0A5", + "ref": "JGQZPED0A5", + "name": "Herblay-Coty, 7 Rue René Coty -3959", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.281885, + 48.672411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUJD4UMKPZ", + "ref": "JUJD4UMKPZ", + "name": "Ballainvilliers, rue de la Tuilerie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33401537, + 48.63200582 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBBYPZLGJJL", + "ref": "BBYPZLGJJL", + "name": "Sainte-Geneviève-des-Bois Rue du Plessis", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV6CBXZ1GZG", + "ref": "V6CBXZ1GZG", + "name": "Lidl, bornes à attribuer", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV6CBXZ1GZG", + "ref": "V6CBXZ1GZG", + "name": "Lidl, bornes à attribuer", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV6CBXZ1GZG", + "ref": "V6CBXZ1GZG", + "name": "Lidl, bornes à attribuer", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.905458, + 46.570362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV6CBXZ1GZG", + "ref": "V6CBXZ1GZG", + "name": "Lidl, bornes à attribuer", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV6CBXZ1GZG", + "ref": "V6CBXZ1GZG", + "name": "Lidl, bornes à attribuer", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84123131, + 48.06762198 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXHFOOZJRFN", + "ref": "XHFOOZJRFN", + "name": "Gerardmer, Chemin du Tour du Lac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84123131, + 48.06762198 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXHFOOZJRFN", + "ref": "XHFOOZJRFN", + "name": "Gerardmer, Chemin du Tour du Lac", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.59471, + 43.18814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD0GNFYOMAH", + "ref": "D0GNFYOMAH", + "name": "La Croix-Valmer, Lily of the Valley", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.59471, + 43.18814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD0GNFYOMAH", + "ref": "D0GNFYOMAH", + "name": "La Croix-Valmer, Lily of the Valley", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8908, + 47.9577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA5L76J0IDO", + "ref": "A5L76J0IDO", + "name": "Saran, Line Optic", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53448855, + 46.57480921 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ2JIPWRRFU", + "ref": "Z2JIPWRRFU", + "name": "Le Pechereau, Rue du Chêne Paumulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53448855, + 46.57480921 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ2JIPWRRFU", + "ref": "Z2JIPWRRFU", + "name": "Le Pechereau, Rue du Chêne Paumulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31290617, + 43.94430626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEMNND9MFE7", + "ref": "EMNND9MFE7", + "name": "Larressingle, Coulomet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31290617, + 43.94430626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEMNND9MFE7", + "ref": "EMNND9MFE7", + "name": "Larressingle, Coulomet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.88531439, + 43.44975075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNSJKPAECMT", + "ref": "NSJKPAECMT", + "name": "Saint-Félix-Lauragais, Route de Toulouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.185883, + 49.001745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGQZPED0A5", + "ref": "JGQZPED0A5", + "name": "Herblay-Coty, 7 Rue René Coty -3959", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.185883, + 49.001745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGQZPED0A5", + "ref": "JGQZPED0A5", + "name": "Herblay-Coty, 7 Rue René Coty -3959", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.281885, + 48.672411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUJD4UMKPZ", + "ref": "JUJD4UMKPZ", + "name": "Ballainvilliers, rue de la Tuilerie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34677484, + 48.77257456 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFG7EONN82J", + "ref": "FG7EONN82J", + "name": "L'Haÿ-les-Roses, Avenue du Général Leclerc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.185883, + 49.001745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGQZPED0A5", + "ref": "JGQZPED0A5", + "name": "Herblay-Coty, 7 Rue René Coty -3959", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33401537, + 48.63200582 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBBYPZLGJJL", + "ref": "BBYPZLGJJL", + "name": "Sainte-Geneviève-des-Bois Rue du Plessis", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33401537, + 48.63200582 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBBYPZLGJJL", + "ref": "BBYPZLGJJL", + "name": "Sainte-Geneviève-des-Bois Rue du Plessis", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33401537, + 48.63200582 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBBYPZLGJJL", + "ref": "BBYPZLGJJL", + "name": "Sainte-Geneviève-des-Bois Rue du Plessis", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.185883, + 49.001745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGQZPED0A5", + "ref": "JGQZPED0A5", + "name": "Herblay-Coty, 7 Rue René Coty -3959", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.902652, + 49.011423 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMXEBYMAPVN", + "ref": "MXEBYMAPVN", + "name": "Meulan-En-Yvelines-Aulnes, Avenue des Aulnes -3958", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.185883, + 49.001745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGQZPED0A5", + "ref": "JGQZPED0A5", + "name": "Herblay-Coty, 7 Rue René Coty -3959", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34677484, + 48.77257456 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFG7EONN82J", + "ref": "FG7EONN82J", + "name": "L'Haÿ-les-Roses, Avenue du Général Leclerc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33401537, + 48.63200582 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBBYPZLGJJL", + "ref": "BBYPZLGJJL", + "name": "Sainte-Geneviève-des-Bois Rue du Plessis", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.902652, + 49.011423 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMXEBYMAPVN", + "ref": "MXEBYMAPVN", + "name": "Meulan-En-Yvelines-Aulnes, Avenue des Aulnes -3958", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33401537, + 48.63200582 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBBYPZLGJJL", + "ref": "BBYPZLGJJL", + "name": "Sainte-Geneviève-des-Bois Rue du Plessis", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33401537, + 48.63200582 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBBYPZLGJJL", + "ref": "BBYPZLGJJL", + "name": "Sainte-Geneviève-des-Bois Rue du Plessis", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.185883, + 49.001745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGQZPED0A5", + "ref": "JGQZPED0A5", + "name": "Herblay-Coty, 7 Rue René Coty -3959", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.281885, + 48.672411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUJD4UMKPZ", + "ref": "JUJD4UMKPZ", + "name": "Ballainvilliers, rue de la Tuilerie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33401537, + 48.63200582 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBBYPZLGJJL", + "ref": "BBYPZLGJJL", + "name": "Sainte-Geneviève-des-Bois Rue du Plessis", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.902652, + 49.011423 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMXEBYMAPVN", + "ref": "MXEBYMAPVN", + "name": "Meulan-En-Yvelines-Aulnes, Avenue des Aulnes -3958", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.902652, + 49.011423 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMXEBYMAPVN", + "ref": "MXEBYMAPVN", + "name": "Meulan-En-Yvelines-Aulnes, Avenue des Aulnes -3958", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.281885, + 48.672411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUJD4UMKPZ", + "ref": "JUJD4UMKPZ", + "name": "Ballainvilliers, rue de la Tuilerie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.88531439, + 43.44975075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNSJKPAECMT", + "ref": "NSJKPAECMT", + "name": "Saint-Félix-Lauragais, Route de Toulouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07100038, + 44.94711176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVM4NTLS3KB", + "ref": "VM4NTLS3KB", + "name": "Puisseguin, lieu-dit, Roques", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.886343, + 50.397656 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJZA6CVZ1N", + "ref": "RJZA6CVZ1N", + "name": "Mericourt-Desmoulins, rue Camille Desmoulins -3059", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07100038, + 44.94711176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVM4NTLS3KB", + "ref": "VM4NTLS3KB", + "name": "Puisseguin, lieu-dit, Roques", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.023416, + 47.247204 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDLUIDNHJUL", + "ref": "DLUIDNHJUL", + "name": "Besançon, Logis Hôtel Victor Hugo", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.023416, + 47.247204 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDLUIDNHJUL", + "ref": "DLUIDNHJUL", + "name": "Besançon, Logis Hôtel Victor Hugo", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.78906947, + 48.08593055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPTOMNLSUF6", + "ref": "PTOMNLSUF6", + "name": "Ferrières-en-Gâtinais, La Prairie de l'étang", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.78906947, + 48.08593055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPTOMNLSUF6", + "ref": "PTOMNLSUF6", + "name": "Ferrières-en-Gâtinais, La Prairie de l'étang", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.214071, + 44.433196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYZVL09C8UY", + "ref": "YZVL09C8UY", + "name": "La Canourgue, Avenue du Lot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.214071, + 44.433196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYZVL09C8UY", + "ref": "YZVL09C8UY", + "name": "La Canourgue, Avenue du Lot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55281964, + 43.47239477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVDPIDXOIQR", + "ref": "VDPIDXOIQR", + "name": "Donneville, Chemin Départemental 24", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55281964, + 43.47239477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVDPIDXOIQR", + "ref": "VDPIDXOIQR", + "name": "Donneville, Chemin Départemental 24", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55281964, + 43.47239477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVDPIDXOIQR", + "ref": "VDPIDXOIQR", + "name": "Donneville, Chemin Départemental 24", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55281964, + 43.47239477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVDPIDXOIQR", + "ref": "VDPIDXOIQR", + "name": "Donneville, Chemin Départemental 24", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24703674, + 44.45071211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJWGDOQTTA", + "ref": "RJWGDOQTTA", + "name": "Biscarosse Plage, Rue des Iris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24703674, + 44.45071211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJWGDOQTTA", + "ref": "RJWGDOQTTA", + "name": "Biscarosse Plage, Rue des Iris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39045673, + 43.1332234 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAJJF6AYYCD", + "ref": "AJJF6AYYCD", + "name": "Sévignacq-Meyracq, Bains", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.98148211, + 47.42034943 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFA6ABFGHEF", + "ref": "FA6ABFGHEF", + "name": "Amboise, Rue Jules Ferry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.98148211, + 47.42034943 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFA6ABFGHEF", + "ref": "FA6ABFGHEF", + "name": "Amboise, Rue Jules Ferry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.72191453, + 46.86875514 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM0LRMJF1GO", + "ref": "M0LRMJF1GO", + "name": "Coing, Lieu-dit Céré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.72191453, + 46.86875514 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM0LRMJF1GO", + "ref": "M0LRMJF1GO", + "name": "Coing, Lieu-dit Céré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3602, + 47.98452 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO0XRO0D25I", + "ref": "O0XRO0D25I", + "name": "Les Riceys, Logis Le Magny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3602, + 47.98452 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO0XRO0D25I", + "ref": "O0XRO0D25I", + "name": "Les Riceys, Logis Le Magny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.023416, + 47.247204 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDLUIDNHJUL", + "ref": "DLUIDNHJUL", + "name": "Besançon, Logis Hôtel Victor Hugo", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.023416, + 47.247204 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDLUIDNHJUL", + "ref": "DLUIDNHJUL", + "name": "Besançon, Logis Hôtel Victor Hugo", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.84741, + 44.684185 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDTYZ0PBUZR", + "ref": "DTYZ0PBUZR", + "name": "Laguiole, Allée de l'Amicale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3239684, + 47.01184863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNQIXXJSGRE", + "ref": "NQIXXJSGRE", + "name": "Richelieu, 24 Place du marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07100038, + 44.94711176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVM4NTLS3KB", + "ref": "VM4NTLS3KB", + "name": "Puisseguin, lieu-dit, Roques", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.074901, + 43.934673 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLMRYSD3DHR", + "ref": "LMRYSD3DHR", + "name": "Cazaubon, Rue Joseph Cappin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.074901, + 43.934673 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLMRYSD3DHR", + "ref": "LMRYSD3DHR", + "name": "Cazaubon, Rue Joseph Cappin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.518204, + 48.832443 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWEWO1M3ZLV", + "ref": "WEWO1M3ZLV", + "name": "Logis Clos de mutigny, La chaussé sur Marne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.518204, + 48.832443 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWEWO1M3ZLV", + "ref": "WEWO1M3ZLV", + "name": "Logis Clos de mutigny, La chaussé sur Marne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42860295, + 43.10563786 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYVRXBIGBK0", + "ref": "YVRXBIGBK0", + "name": "Arudy, Place de la ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42860295, + 43.10563786 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYVRXBIGBK0", + "ref": "YVRXBIGBK0", + "name": "Arudy, Place de la ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3239684, + 47.01184863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNQIXXJSGRE", + "ref": "NQIXXJSGRE", + "name": "Richelieu, 24 Place du marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.64044633, + 44.77402125 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMR6MQ1MPFP", + "ref": "MR6MQ1MPFP", + "name": "Gradignan, Allée de Mégevie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.84741, + 44.684185 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDTYZ0PBUZR", + "ref": "DTYZ0PBUZR", + "name": "Laguiole, Allée de l'Amicale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.64044633, + 44.77402125 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMR6MQ1MPFP", + "ref": "MR6MQ1MPFP", + "name": "Gradignan, Allée de Mégevie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.042848, + 48.452547 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTMZQBK19CJ", + "ref": "TMZQBK19CJ", + "name": "Dinan, Hôtel Arvor", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.042848, + 48.452547 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTMZQBK19CJ", + "ref": "TMZQBK19CJ", + "name": "Dinan, Hôtel Arvor", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.41319694, + 45.92446453 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMGD8YQM75S", + "ref": "MGD8YQM75S", + "name": "Saint-Jean-de-Sixt, Route du Danay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.41319694, + 45.92446453 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMGD8YQM75S", + "ref": "MGD8YQM75S", + "name": "Saint-Jean-de-Sixt, Route du Danay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74585148, + 47.73526312 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVESSJQ8AJC", + "ref": "VESSJQ8AJC", + "name": "La Bussière, Rue de la Briare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74585148, + 47.73526312 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVESSJQ8AJC", + "ref": "VESSJQ8AJC", + "name": "La Bussière, Rue de la Briare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.18732993, + 44.83721199 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNAR10DSPNM", + "ref": "NAR10DSPNM", + "name": "Omblèze, Le Moulin de la Pipe", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.185883, + 49.001745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGQZPED0A5", + "ref": "JGQZPED0A5", + "name": "Herblay-Coty, 7 Rue René Coty -3959", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.185883, + 49.001745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGQZPED0A5", + "ref": "JGQZPED0A5", + "name": "Herblay-Coty, 7 Rue René Coty -3959", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5053573, + 50.19622564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBOMNOSKIU2", + "ref": "BOMNOSKIU2", + "name": "Solesmes, rue du Général de Gaulle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.558648, + 50.413734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP4I9QD4QKG", + "ref": "P4I9QD4QKG", + "name": "Escautpont, rue Jean Jaurès -3062", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27385, + 49.904906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSKVQPRSH7U", + "ref": "SKVQPRSH7U", + "name": "Amiens-D'Australie, Rue d'Australie -3598", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.279678, + 49.843246 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU6Y3WQLBRD", + "ref": "U6Y3WQLBRD", + "name": "Saint-Quentin-Hugo, Boulevard victor hugo -3810", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.279678, + 49.843246 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU6Y3WQLBRD", + "ref": "U6Y3WQLBRD", + "name": "Saint-Quentin-Hugo, Boulevard victor hugo -3810", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.279678, + 49.843246 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU6Y3WQLBRD", + "ref": "U6Y3WQLBRD", + "name": "Saint-Quentin-Hugo, Boulevard victor hugo -3810", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.276512, + 49.649677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVCTIMHBD9S", + "ref": "VCTIMHBD9S", + "name": "Condren-Chauny, route de Chauny -3207", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27385, + 49.904906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSKVQPRSH7U", + "ref": "SKVQPRSH7U", + "name": "Amiens-D'Australie, Rue d'Australie -3598", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27385, + 49.904906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSKVQPRSH7U", + "ref": "SKVQPRSH7U", + "name": "Amiens-D'Australie, Rue d'Australie -3598", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.276512, + 49.649677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVCTIMHBD9S", + "ref": "VCTIMHBD9S", + "name": "Condren-Chauny, route de Chauny -3207", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.016758, + 49.221375 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTOA3WWVTKE", + "ref": "TOA3WWVTKE", + "name": "Reims-Juin, avenue du Maréchal Juin -3306", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.49416645, + 50.3628478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAOKV8QVO0", + "ref": "VAOKV8QVO0", + "name": "Valenciennes, Rue Desandrouin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.49416645, + 50.3628478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAOKV8QVO0", + "ref": "VAOKV8QVO0", + "name": "Valenciennes, Rue Desandrouin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.016758, + 49.221375 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTOA3WWVTKE", + "ref": "TOA3WWVTKE", + "name": "Reims-Juin, avenue du Maréchal Juin -3306", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.279678, + 49.843246 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU6Y3WQLBRD", + "ref": "U6Y3WQLBRD", + "name": "Saint-Quentin-Hugo, Boulevard victor hugo -3810", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.279678, + 49.843246 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU6Y3WQLBRD", + "ref": "U6Y3WQLBRD", + "name": "Saint-Quentin-Hugo, Boulevard victor hugo -3810", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.279678, + 49.843246 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU6Y3WQLBRD", + "ref": "U6Y3WQLBRD", + "name": "Saint-Quentin-Hugo, Boulevard victor hugo -3810", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.412583, + 50.132965 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRL2ISP2PKI", + "ref": "RL2ISP2PKI", + "name": "Caudry, 153 rue de Bruxelles - 3304", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.925624, + 50.279386 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHZ9ZG0T5CS", + "ref": "HZ9ZG0T5CS", + "name": "Feignies-Empereur, rue Lempereur -3467", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.49416645, + 50.3628478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAOKV8QVO0", + "ref": "VAOKV8QVO0", + "name": "Valenciennes, Rue Desandrouin", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.741073, + 50.299633 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PST9CPGZFUY", + "ref": "ST9CPGZFUY", + "name": "Arras, 193 Avenue Winston Churchill - 3611", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.558648, + 50.413734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP4I9QD4QKG", + "ref": "P4I9QD4QKG", + "name": "Escautpont, rue Jean Jaurès -3062", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.49416645, + 50.3628478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAOKV8QVO0", + "ref": "VAOKV8QVO0", + "name": "Valenciennes, Rue Desandrouin", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.477506, + 50.392154 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESLALBBYRH", + "ref": "ESLALBBYRH", + "name": "Raismes-Jaures, Rue Jean Jaures -3174", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94866176, + 43.55014998 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNKPTV8HRVT", + "ref": "NKPTV8HRVT", + "name": "Mandelieu la Napoule, avenue Gaston de Fontmichel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.61761, + 48.5401 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHUCH3KM1EX6J", + "ref": "LLHUCH3KM1EX6J", + "name": "La Seyne sur Mer, Boulevard de l'Europe", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.61761, + 48.5401 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHUCH3KM1EX6J", + "ref": "LLHUCH3KM1EX6J", + "name": "La Seyne sur Mer, Boulevard de l'Europe", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.20285973, + 43.67212823 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PICCUFQUYS4", + "ref": "ICCUFQUYS4", + "name": "Nice, route de Grenoble", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.53253307, + 43.25549446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPC8A6CPOJO", + "ref": "PC8A6CPOJO", + "name": "Cogolin, rue Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.14345933, + 43.66580333 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXOZQ9QYCLQ", + "ref": "XOZQ9QYCLQ", + "name": "Cagnes sur Mer, avenue de Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94866176, + 43.55014998 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNKPTV8HRVT", + "ref": "NKPTV8HRVT", + "name": "Mandelieu la Napoule, avenue Gaston de Fontmichel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.53253307, + 43.25549446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPC8A6CPOJO", + "ref": "PC8A6CPOJO", + "name": "Cogolin, rue Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.20285973, + 43.67212823 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PICCUFQUYS4", + "ref": "ICCUFQUYS4", + "name": "Nice, route de Grenoble", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.953022, + 49.026685 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTBP9DOPXZ7", + "ref": "TBP9DOPXZ7", + "name": "Epernay-Valentin, Zone d'activité les Forges -3617", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96420518, + 49.26091526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBYDGEFUMKN", + "ref": "BYDGEFUMKN", + "name": "Anthony Sauvage, rue des Acacias", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.477506, + 50.392154 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESLALBBYRH", + "ref": "ESLALBBYRH", + "name": "Raismes-Jaures, Rue Jean Jaures -3174", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5053573, + 50.19622564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBOMNOSKIU2", + "ref": "BOMNOSKIU2", + "name": "Solesmes, rue du Général de Gaulle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.953022, + 49.026685 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTBP9DOPXZ7", + "ref": "TBP9DOPXZ7", + "name": "Epernay-Valentin, Zone d'activité les Forges -3617", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27385, + 49.904906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSKVQPRSH7U", + "ref": "SKVQPRSH7U", + "name": "Amiens-D'Australie, Rue d'Australie -3598", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.49416645, + 50.3628478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAOKV8QVO0", + "ref": "VAOKV8QVO0", + "name": "Valenciennes, Rue Desandrouin", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96420518, + 49.26091526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBYDGEFUMKN", + "ref": "BYDGEFUMKN", + "name": "Anthony Sauvage, rue des Acacias", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96420518, + 49.26091526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBYDGEFUMKN", + "ref": "BYDGEFUMKN", + "name": "Anthony Sauvage, rue des Acacias", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96420518, + 49.26091526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBYDGEFUMKN", + "ref": "BYDGEFUMKN", + "name": "Anthony Sauvage, rue des Acacias", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.925624, + 50.279386 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHZ9ZG0T5CS", + "ref": "HZ9ZG0T5CS", + "name": "Feignies-Empereur, rue Lempereur -3467", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.925624, + 50.279386 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHZ9ZG0T5CS", + "ref": "HZ9ZG0T5CS", + "name": "Feignies-Empereur, rue Lempereur -3467", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.412583, + 50.132965 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRL2ISP2PKI", + "ref": "RL2ISP2PKI", + "name": "Caudry, 153 rue de Bruxelles - 3304", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.540683, + 50.351036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS9WJLR0VHI", + "ref": "S9WJLR0VHI", + "name": "Marly, Avenue Henry Barbusse - 4158", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.863058, + 50.105214 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCRDSBG1MTT", + "ref": "CRDSBG1MTT", + "name": "Bapaume, 72 rue de la République - 3188", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.698865, + 49.776584 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUEIRCTYOBR", + "ref": "UEIRCTYOBR", + "name": "Warcq, 1 boulevard Lucien Pierquin - 3274", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ5GHD3D2JJMR", + "ref": "LLJ5GHD3D2JJMR", + "name": "Fourmies, rue Roger Couderc", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5053573, + 50.19622564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBOMNOSKIU2", + "ref": "BOMNOSKIU2", + "name": "Solesmes, rue du Général de Gaulle", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.953022, + 49.026685 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTBP9DOPXZ7", + "ref": "TBP9DOPXZ7", + "name": "Epernay-Valentin, Zone d'activité les Forges -3617", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.953022, + 49.026685 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTBP9DOPXZ7", + "ref": "TBP9DOPXZ7", + "name": "Epernay-Valentin, Zone d'activité les Forges -3617", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5053573, + 50.19622564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBOMNOSKIU2", + "ref": "BOMNOSKIU2", + "name": "Solesmes, rue du Général de Gaulle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.953022, + 49.026685 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTBP9DOPXZ7", + "ref": "TBP9DOPXZ7", + "name": "Epernay-Valentin, Zone d'activité les Forges -3617", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.540683, + 50.351036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS9WJLR0VHI", + "ref": "S9WJLR0VHI", + "name": "Marly, Avenue Henry Barbusse - 4158", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35206, + 49.661838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKF8PQJQCF", + "ref": "AKF8PQJQCF", + "name": "La Fere, Boulevard Saint Firmin - 3301", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.953022, + 49.026685 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTBP9DOPXZ7", + "ref": "TBP9DOPXZ7", + "name": "Epernay-Valentin, Zone d'activité les Forges -3617", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.540683, + 50.351036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS9WJLR0VHI", + "ref": "S9WJLR0VHI", + "name": "Marly, Avenue Henry Barbusse - 4158", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5053573, + 50.19622564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBOMNOSKIU2", + "ref": "BOMNOSKIU2", + "name": "Solesmes, rue du Général de Gaulle", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371293, + 49.868784 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG1QR7RBCW6", + "ref": "G1QR7RBCW6", + "name": "Longueau, 4 Avenue de L' arc - 3891", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.540683, + 50.351036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS9WJLR0VHI", + "ref": "S9WJLR0VHI", + "name": "Marly, Avenue Henry Barbusse - 4158", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5053573, + 50.19622564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBOMNOSKIU2", + "ref": "BOMNOSKIU2", + "name": "Solesmes, rue du Général de Gaulle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.540683, + 50.351036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS9WJLR0VHI", + "ref": "S9WJLR0VHI", + "name": "Marly, Avenue Henry Barbusse - 4158", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.540683, + 50.351036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS9WJLR0VHI", + "ref": "S9WJLR0VHI", + "name": "Marly, Avenue Henry Barbusse - 4158", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.698865, + 49.776584 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUEIRCTYOBR", + "ref": "UEIRCTYOBR", + "name": "Warcq, 1 boulevard Lucien Pierquin - 3274", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35206, + 49.661838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKF8PQJQCF", + "ref": "AKF8PQJQCF", + "name": "La Fere, Boulevard Saint Firmin - 3301", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6655, + 50.405368 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKVOLK1WG8K", + "ref": "KVOLK1WG8K", + "name": "Crespin, 70 rue des Déportés - 3302", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6655, + 50.405368 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKVOLK1WG8K", + "ref": "KVOLK1WG8K", + "name": "Crespin, 70 rue des Déportés - 3302", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371293, + 49.868784 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG1QR7RBCW6", + "ref": "G1QR7RBCW6", + "name": "Longueau, 4 Avenue de L' arc - 3891", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ5GHD3D2JJMR", + "ref": "LLJ5GHD3D2JJMR", + "name": "Fourmies, rue Roger Couderc", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371293, + 49.868784 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG1QR7RBCW6", + "ref": "G1QR7RBCW6", + "name": "Longueau, 4 Avenue de L' arc - 3891", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371293, + 49.868784 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG1QR7RBCW6", + "ref": "G1QR7RBCW6", + "name": "Longueau, 4 Avenue de L' arc - 3891", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.741073, + 50.299633 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PST9CPGZFUY", + "ref": "ST9CPGZFUY", + "name": "Arras, 193 Avenue Winston Churchill - 3611", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.49416645, + 50.3628478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAOKV8QVO0", + "ref": "VAOKV8QVO0", + "name": "Valenciennes, Rue Desandrouin", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.741073, + 50.299633 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PST9CPGZFUY", + "ref": "ST9CPGZFUY", + "name": "Arras, 193 Avenue Winston Churchill - 3611", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.741073, + 50.299633 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PST9CPGZFUY", + "ref": "ST9CPGZFUY", + "name": "Arras, 193 Avenue Winston Churchill - 3611", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.558056, + 50.101286 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI23JPPPTFT", + "ref": "I23JPPPTFT", + "name": "Le Cateau Cambrésis, 43 avenue du Maréchal Leclerc Hauteclocque - 2665", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.66728, + 49.308478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZB01ACJMQD", + "ref": "ZB01ACJMQD", + "name": "Fismes, 52 route de Soissons - 3286", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0036, + 49.278021 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEACABDPXEE", + "ref": "EACABDPXEE", + "name": "Saint Brice Courcelles, 2 rue de la Croix Maurencienne - 2918", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.925624, + 50.279386 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHZ9ZG0T5CS", + "ref": "HZ9ZG0T5CS", + "name": "Feignies-Empereur, rue Lempereur -3467", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.558056, + 50.101286 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI23JPPPTFT", + "ref": "I23JPPPTFT", + "name": "Le Cateau Cambrésis, 43 avenue du Maréchal Leclerc Hauteclocque - 2665", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ5GHD3D2JJMR", + "ref": "LLJ5GHD3D2JJMR", + "name": "Fourmies, rue Roger Couderc", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ5GHD3D2JJMR", + "ref": "LLJ5GHD3D2JJMR", + "name": "Fourmies, rue Roger Couderc", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0036, + 49.278021 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEACABDPXEE", + "ref": "EACABDPXEE", + "name": "Saint Brice Courcelles, 2 rue de la Croix Maurencienne - 2918", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.863058, + 50.105214 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCRDSBG1MTT", + "ref": "CRDSBG1MTT", + "name": "Bapaume, 72 rue de la République - 3188", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.66728, + 49.308478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZB01ACJMQD", + "ref": "ZB01ACJMQD", + "name": "Fismes, 52 route de Soissons - 3286", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.73600207, + 48.88381709 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM0X4I4ZK8M", + "ref": "M0X4I4ZK8M", + "name": "Dampmart, Rue de l'Abreuvoir", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.73600207, + 48.88381709 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM0X4I4ZK8M", + "ref": "M0X4I4ZK8M", + "name": "Dampmart, Rue de l'Abreuvoir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.73600207, + 48.88381709 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM0X4I4ZK8M", + "ref": "M0X4I4ZK8M", + "name": "Dampmart, Rue de l'Abreuvoir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22182, + 46.203 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVZJYCG", + "ref": "VZJYCG", + "name": "Bourg-en-Bresse, Place Joubert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.965524, + 49.166529 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXPJR8TDQE", + "ref": "TXPJR8TDQE", + "name": "Kerbach, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.965524, + 49.166529 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXPJR8TDQE", + "ref": "TXPJR8TDQE", + "name": "Kerbach, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62523, + 49.08 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGTRDTE5TIF", + "ref": "GTRDTE5TIF", + "name": "La Roche-Guyon, Hôpital", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513303, + 47.887476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAYM7H1XRJQ", + "ref": "AYM7H1XRJQ", + "name": "Lorris, Place du Mail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513303, + 47.887476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAYM7H1XRJQ", + "ref": "AYM7H1XRJQ", + "name": "Lorris, Place du Mail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74732, + 45.620729 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJJUUQQVTYZ", + "ref": "JJUUQQVTYZ", + "name": "Montagny, Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74732, + 45.620729 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJJUUQQVTYZ", + "ref": "JJUUQQVTYZ", + "name": "Montagny, Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05632399, + 45.85350942 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLBZUHX5FDU", + "ref": "LBZUHX5FDU", + "name": "Montluel, Avenue Pierre Cormoreche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05632399, + 45.85350942 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLBZUHX5FDU", + "ref": "LBZUHX5FDU", + "name": "Montluel, Avenue Pierre Cormoreche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4674687, + 48.1030083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZR77QZIYM", + "ref": "UZR77QZIYM", + "name": "Mairie de Muntzenheim, Impasse du Wasen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4674687, + 48.1030083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZR77QZIYM", + "ref": "UZR77QZIYM", + "name": "Mairie de Muntzenheim, Impasse du Wasen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9895772, + 50.4694764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDS4JPFUSGX", + "ref": "DS4JPFUSGX", + "name": "Oignies, Parking du Service Technique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9895772, + 50.4694764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDS4JPFUSGX", + "ref": "DS4JPFUSGX", + "name": "Oignies, Parking du Service Technique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.99039906, + 50.46822285 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLUDB1KDHWA", + "ref": "LUDB1KDHWA", + "name": "Oignies, Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.99039906, + 50.46822285 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLUDB1KDHWA", + "ref": "LUDB1KDHWA", + "name": "Oignies, Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.75677393, + 45.54369187 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUSCLUJN5UJ", + "ref": "USCLUJN5UJ", + "name": "Peisey-Nancroix, Place de Roscanvel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.75677393, + 45.54369187 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUSCLUJN5UJ", + "ref": "USCLUJN5UJ", + "name": "Peisey-Nancroix, Place de Roscanvel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.76905147, + 50.91536135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPLIIJQRR9K", + "ref": "PLIIJQRR9K", + "name": "Route d'Escalles , Peuplingues", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.76905147, + 50.91536135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPLIIJQRR9K", + "ref": "PLIIJQRR9K", + "name": "Route d'Escalles , Peuplingues", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42500159, + 45.4382768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY39L9HN88E", + "ref": "Y39L9HN88E", + "name": "Les Antilles de Jonzac, Parc du Val de Seugne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44077822, + 45.4388527 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF1BQQZEED1", + "ref": "F1BQQZEED1", + "name": "Gare de Jonzac, Rue Alsace-Lorraine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42500159, + 45.4382768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY39L9HN88E", + "ref": "Y39L9HN88E", + "name": "Les Antilles de Jonzac, Parc du Val de Seugne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.38112742, + 48.97655215 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS3RCEDCLUC", + "ref": "S3RCEDCLUC", + "name": "Mairie de Goetzenbruck, 8 Rue de la Harpe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38173979, + 49.3700959 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUCNXMWQKXU", + "ref": "UCNXMWQKXU", + "name": "Charleval, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05861062, + 49.03502755 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWRHI28XGMJ", + "ref": "WRHI28XGMJ", + "name": "Corny, Rue Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05861062, + 49.03502755 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWRHI28XGMJ", + "ref": "WRHI28XGMJ", + "name": "Corny, Rue Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24099307, + 45.87718468 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKETVBA", + "ref": "KETVBA", + "name": "Couzeix, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-20", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24099307, + 45.87718468 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKETVBA", + "ref": "KETVBA", + "name": "Couzeix, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5869454, + 48.03847418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKR5YQTB8B", + "ref": "QKR5YQTB8B", + "name": "Dollon, Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5869454, + 48.03847418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKR5YQTB8B", + "ref": "QKR5YQTB8B", + "name": "Dollon, Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.38112742, + 48.97655215 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS3RCEDCLUC", + "ref": "S3RCEDCLUC", + "name": "Mairie de Goetzenbruck, 8 Rue de la Harpe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14462218, + 45.43337951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTMJD1RDZHA", + "ref": "TMJD1RDZHA", + "name": "Grayan et l'Hôpital, Route de l'Océan Golf des Pins", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42500159, + 45.4382768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY39L9HN88E", + "ref": "Y39L9HN88E", + "name": "Les Antilles de Jonzac, Parc du Val de Seugne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14462218, + 45.43337951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTMJD1RDZHA", + "ref": "TMJD1RDZHA", + "name": "Grayan et l'Hôpital, Route de l'Océan Golf des Pins", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14462218, + 45.43337951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTMJD1RDZHA", + "ref": "TMJD1RDZHA", + "name": "Grayan et l'Hôpital, Route de l'Océan Golf des Pins", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14462218, + 45.43337951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTMJD1RDZHA", + "ref": "TMJD1RDZHA", + "name": "Grayan et l'Hôpital, Route de l'Océan Golf des Pins", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.183836, + 50.654348 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI1O4L2R16P33", + "ref": "LLI1O4L2R16P33", + "name": "HEM, rue du Général Leclerc", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.43459848, + 45.44025668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBPFMD6OOQ0", + "ref": "BPFMD6OOQ0", + "name": "Jonzac, Stade Henry Chat-Locussol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.43459848, + 45.44025668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBPFMD6OOQ0", + "ref": "BPFMD6OOQ0", + "name": "Jonzac, Stade Henry Chat-Locussol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44077822, + 45.4388527 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF1BQQZEED1", + "ref": "F1BQQZEED1", + "name": "Gare de Jonzac, Rue Alsace-Lorraine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42500159, + 45.4382768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY39L9HN88E", + "ref": "Y39L9HN88E", + "name": "Les Antilles de Jonzac, Parc du Val de Seugne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.73840148, + 48.36185234 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF9AE6Z9DRG", + "ref": "F9AE6Z9DRG", + "name": "Rollainville, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.73840148, + 48.36185234 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF9AE6Z9DRG", + "ref": "F9AE6Z9DRG", + "name": "Rollainville, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.687556, + 46.907309 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMPFMVAYMZL", + "ref": "MPFMVAYMZL", + "name": "Santenay, Voirie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12708513, + 43.61424028 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIQSGOGAXZQ", + "ref": "IQSGOGAXZQ", + "name": "Antibes, Hôtel Marineland", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.66997785, + 41.99213631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIBEU92G1H0V7", + "ref": "LLIBEU92G1H0V7", + "name": "Appietto, Résidence du Golf de Lava", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.66997785, + 41.99213631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIBEU92G1H0V7", + "ref": "LLIBEU92G1H0V7", + "name": "Appietto, Résidence du Golf de Lava", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.1260823, + 43.6153194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC7FO07OXBQ", + "ref": "C7FO07OXBQ", + "name": "Antibes, Parc Marineland", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.1260823, + 43.6153194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC7FO07OXBQ", + "ref": "C7FO07OXBQ", + "name": "Antibes, Parc Marineland", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.1260823, + 43.6153194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC7FO07OXBQ", + "ref": "C7FO07OXBQ", + "name": "Antibes, Parc Marineland", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.1260823, + 43.6153194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC7FO07OXBQ", + "ref": "C7FO07OXBQ", + "name": "Antibes, Parc Marineland", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.1260823, + 43.6153194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC7FO07OXBQ", + "ref": "C7FO07OXBQ", + "name": "Antibes, Parc Marineland", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12708513, + 43.61424028 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIQSGOGAXZQ", + "ref": "IQSGOGAXZQ", + "name": "Antibes, Hôtel Marineland", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12708513, + 43.61424028 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIQSGOGAXZQ", + "ref": "IQSGOGAXZQ", + "name": "Antibes, Hôtel Marineland", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.54375346, + 48.16407101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKGIFNNP4ME", + "ref": "KGIFNNP4ME", + "name": "Marckolsheim, Parking du marché couvert", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12708513, + 43.61424028 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIQSGOGAXZQ", + "ref": "IQSGOGAXZQ", + "name": "Antibes, Hôtel Marineland", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.1260823, + 43.6153194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC7FO07OXBQ", + "ref": "C7FO07OXBQ", + "name": "Antibes, Parc Marineland", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.1260823, + 43.6153194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC7FO07OXBQ", + "ref": "C7FO07OXBQ", + "name": "Antibes, Parc Marineland", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.1260823, + 43.6153194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC7FO07OXBQ", + "ref": "C7FO07OXBQ", + "name": "Antibes, Parc Marineland", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.1260823, + 43.6153194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC7FO07OXBQ", + "ref": "C7FO07OXBQ", + "name": "Antibes, Parc Marineland", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.1260823, + 43.6153194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC7FO07OXBQ", + "ref": "C7FO07OXBQ", + "name": "Antibes, Parc Marineland", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.49075, + 48.6196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQSGFVS", + "ref": "QSGFVS", + "name": "Marlenheim, Usine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.49076, + 48.6196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQSGFVS", + "ref": "QSGFVS", + "name": "Marlenheim, Usine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.54375346, + 48.16407101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKGIFNNP4ME", + "ref": "KGIFNNP4ME", + "name": "Marckolsheim, Parking du marché couvert", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.54375346, + 48.16407101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKGIFNNP4ME", + "ref": "KGIFNNP4ME", + "name": "Marckolsheim, Parking du marché couvert", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.687556, + 46.907309 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMPFMVAYMZL", + "ref": "MPFMVAYMZL", + "name": "Santenay, Voirie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.907633251, + 45.46952413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVE2ZUMRJB", + "ref": "TVE2ZUMRJB", + "name": "Tignes, Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.415283, + 46.812308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRWMAQR1XOL", + "ref": "RWMAQR1XOL", + "name": "Scorbé-Clairvaux, Place de la Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.415283, + 46.812308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRWMAQR1XOL", + "ref": "RWMAQR1XOL", + "name": "Scorbé-Clairvaux, Place de la Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.415283, + 46.812308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRWMAQR1XOL", + "ref": "RWMAQR1XOL", + "name": "Scorbé-Clairvaux, Place de la Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.415283, + 46.812308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRWMAQR1XOL", + "ref": "RWMAQR1XOL", + "name": "Scorbé-Clairvaux, Place de la Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63671609, + 48.8628938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQOOZLR9PNL", + "ref": "QOOZLR9PNL", + "name": "Sotzeling, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63671609, + 48.8628938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQOOZLR9PNL", + "ref": "QOOZLR9PNL", + "name": "Sotzeling, Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13395744, + 49.3443027 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB3S9SCNTCJ", + "ref": "B3S9SCNTCJ", + "name": "Terville, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13395744, + 49.3443027 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB3S9SCNTCJ", + "ref": "B3S9SCNTCJ", + "name": "Terville, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.907633251, + 45.46952413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVE2ZUMRJB", + "ref": "TVE2ZUMRJB", + "name": "Tignes, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.54375346, + 48.16407101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKGIFNNP4ME", + "ref": "KGIFNNP4ME", + "name": "Marckolsheim, Parking du marché couvert", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.995311, + 44.381617 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POMAQGM6IDU", + "ref": "OMAQGM6IDU", + "name": "valréas, Rue de Chasse Coquins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.995311, + 44.381617 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POMAQGM6IDU", + "ref": "OMAQGM6IDU", + "name": "valréas, Rue de Chasse Coquins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37140483, + 49.18673477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYAWALWXPJN", + "ref": "YAWALWXPJN", + "name": "Bras-sur-Meuse, Maison de l'Agriculture", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37140483, + 49.18673477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYAWALWXPJN", + "ref": "YAWALWXPJN", + "name": "Bras-sur-Meuse, Maison de l'Agriculture", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8988004, + 45.72850221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP24RIEK1UK", + "ref": "P24RIEK1UK", + "name": "Nébouzat, Maisons Lassalas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8988004, + 45.72850221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP24RIEK1UK", + "ref": "P24RIEK1UK", + "name": "Nébouzat, Maisons Lassalas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.3899349, + 48.73937715 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNBBD1WKUO", + "ref": "KNBBD1WKUO", + "name": "Monswiller, Rue Dreispitz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.3899349, + 48.73937715 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNBBD1WKUO", + "ref": "KNBBD1WKUO", + "name": "Monswiller, Rue Dreispitz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38173979, + 49.3700959 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUCNXMWQKXU", + "ref": "UCNXMWQKXU", + "name": "Charleval, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22295, + 46.2068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHJCQWV", + "ref": "HJCQWV", + "name": "Bourg-en-Bresse, Promenade du Bastion", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.73600207, + 48.88381709 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM0X4I4ZK8M", + "ref": "M0X4I4ZK8M", + "name": "Dampmart, Rue de l'Abreuvoir", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22295, + 46.2068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHJCQWV", + "ref": "HJCQWV", + "name": "Bourg-en-Bresse, Promenade du Bastion", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.183034, + 48.96186 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLZRLYBKPBE", + "ref": "LZRLYBKPBE", + "name": "Louvigny, Rue Bazelaire", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNYAC5TPKK", + "ref": "XNYAC5TPKK", + "name": "Puteaux, Parking", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNYAC5TPKK", + "ref": "XNYAC5TPKK", + "name": "Puteaux, Parking", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNYAC5TPKK", + "ref": "XNYAC5TPKK", + "name": "Puteaux, Parking", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNYAC5TPKK", + "ref": "XNYAC5TPKK", + "name": "Puteaux, Parking", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNYAC5TPKK", + "ref": "XNYAC5TPKK", + "name": "Puteaux, Parking", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNYAC5TPKK", + "ref": "XNYAC5TPKK", + "name": "Puteaux, Parking", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNYAC5TPKK", + "ref": "XNYAC5TPKK", + "name": "Puteaux, Parking", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNYAC5TPKK", + "ref": "XNYAC5TPKK", + "name": "Puteaux, Parking", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNYAC5TPKK", + "ref": "XNYAC5TPKK", + "name": "Puteaux, Parking", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNYAC5TPKK", + "ref": "XNYAC5TPKK", + "name": "Puteaux, Parking", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNYAC5TPKK", + "ref": "XNYAC5TPKK", + "name": "Puteaux, Parking", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNYAC5TPKK", + "ref": "XNYAC5TPKK", + "name": "Puteaux, Parking", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.546899, + 48.454037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYA93PLA1NX", + "ref": "YA93PLA1NX", + "name": "Nogent-le-Phaye, LS Group Chartres", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.546899, + 48.454037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYA93PLA1NX", + "ref": "YA93PLA1NX", + "name": "Nogent-le-Phaye, LS Group Chartres", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.546899, + 48.454037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYA93PLA1NX", + "ref": "YA93PLA1NX", + "name": "Nogent-le-Phaye, LS Group Chartres", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.546899, + 48.454037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYA93PLA1NX", + "ref": "YA93PLA1NX", + "name": "Nogent-le-Phaye, LS Group Chartres", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6768422, + 48.04035723 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJG6YZDT24P", + "ref": "JG6YZDT24P", + "name": "Noyal-Châtillon-sur-Seiche, Lysadis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6768422, + 48.04035723 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJG6YZDT24P", + "ref": "JG6YZDT24P", + "name": "Noyal-Châtillon-sur-Seiche, Lysadis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.183034, + 48.96186 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLZRLYBKPBE", + "ref": "LZRLYBKPBE", + "name": "Louvigny, Rue Bazelaire", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.183034, + 48.96186 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLZRLYBKPBE", + "ref": "LZRLYBKPBE", + "name": "Louvigny, Rue Bazelaire", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.183034, + 48.96186 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLZRLYBKPBE", + "ref": "LZRLYBKPBE", + "name": "Louvigny, Rue Bazelaire", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424714, + 43.06401 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFOR8S4ILKZ", + "ref": "FOR8S4ILKZ", + "name": "Bielle, Logis l'Ayguelade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.62493827, + 43.99756898 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQUVPSIP9F5", + "ref": "QUVPSIP9F5", + "name": "Brousse-le-Château, Logis le relays du Chasteau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.85101422, + 47.50811353 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPC8GDNJARZ", + "ref": "PC8GDNJARZ", + "name": "Belleville-sur-Loire, Logis Terre de Loire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.85101422, + 47.50811353 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPC8GDNJARZ", + "ref": "PC8GDNJARZ", + "name": "Belleville-sur-Loire, Logis Terre de Loire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.394188, + 47.092914 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDZLXJEZHBZ", + "ref": "DZLXJEZHBZ", + "name": "Bourges, Avenue Henri Laudier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.394188, + 47.092914 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDZLXJEZHBZ", + "ref": "DZLXJEZHBZ", + "name": "Bourges, Avenue Henri Laudier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06276, + 44.86083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCJWNPZGMIC", + "ref": "CJWNPZGMIC", + "name": "Castels-et-Bézenac, Logis l'Atelier d'Epicure", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06276, + 44.86083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCJWNPZGMIC", + "ref": "CJWNPZGMIC", + "name": "Castels-et-Bézenac, Logis l'Atelier d'Epicure", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424714, + 43.06401 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFOR8S4ILKZ", + "ref": "FOR8S4ILKZ", + "name": "Bielle, Logis l'Ayguelade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.38009, + 47.72983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQYPUGRMYGA", + "ref": "QYPUGRMYGA", + "name": "Luceau, Logis le Moulin Calme", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12267, + 49.1425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQRHB3TMWPV", + "ref": "QRHB3TMWPV", + "name": "Lorry-lès-Metz, Ateliers Municipaux", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.637139, + 47.682443 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLUEONUMUAN", + "ref": "LUEONUMUAN", + "name": "Gien, Quai de Nice", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.637139, + 47.682443 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLUEONUMUAN", + "ref": "LUEONUMUAN", + "name": "Gien, Quai de Nice", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.50691834, + 45.85937477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ8JLYNSB4D", + "ref": "Q8JLYNSB4D", + "name": "Thiers , Rue Du Champ Du bail", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.50691834, + 45.85937477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ8JLYNSB4D", + "ref": "Q8JLYNSB4D", + "name": "Thiers , Rue Du Champ Du bail", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.54762, + 46.6752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN1TAYO5AC4", + "ref": "N1TAYO5AC4", + "name": "Lons-le-Saulnier, Start'N Move", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.54762, + 46.6752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN1TAYO5AC4", + "ref": "N1TAYO5AC4", + "name": "Lons-le-Saulnier, Start'N Move", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12119, + 49.1419 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW35JGY6RKE", + "ref": "W35JGY6RKE", + "name": "Lorry-lès-Metz, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12119, + 49.1419 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW35JGY6RKE", + "ref": "W35JGY6RKE", + "name": "Lorry-lès-Metz, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.197884, + 43.70389 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMLMXKNWVEM", + "ref": "MLMXKNWVEM", + "name": "Nice, Avenue Sainte Marguerite", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.197884, + 43.70389 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMLMXKNWVEM", + "ref": "MLMXKNWVEM", + "name": "Nice, Avenue Sainte Marguerite", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.860415, + 46.421 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKCZQAB", + "ref": "KCZQAB", + "name": "Montmorillon, avenue de l'Europe", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2246, + 46.2026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZAUKZX", + "ref": "ZAUKZX", + "name": "Bourg-en-Bresse, Préfecture", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96966, + 49.171395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHEDC2RWJ6Z", + "ref": "HEDC2RWJ6Z", + "name": "Batilly, Mairie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96966, + 49.171395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHEDC2RWJ6Z", + "ref": "HEDC2RWJ6Z", + "name": "Batilly, Mairie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.153331, + 48.895022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXZLZEXJEIY", + "ref": "XZLZEXJEIY", + "name": "Berg, Rue Principale", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.999415, + 45.834863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLM1TTMTMU6", + "ref": "LM1TTMTMU6", + "name": "Beynost, Place de la Dombes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.999415, + 45.834863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLM1TTMTMU6", + "ref": "LM1TTMTMU6", + "name": "Beynost, Place de la Dombes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22804, + 46.2048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTMKMTF", + "ref": "TMKMTF", + "name": "Bourg-en-Bresse, Pkg des Bons Enfants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22804, + 46.2048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTMKMTF", + "ref": "TMKMTF", + "name": "Bourg-en-Bresse, Pkg des Bons Enfants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2246, + 46.2026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZAUKZX", + "ref": "ZAUKZX", + "name": "Bourg-en-Bresse, Préfecture", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22996, + 46.2073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTRYTZF", + "ref": "TRYTZF", + "name": "Bourg-en-Bresse, Champ de Foire", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96966, + 49.171395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHEDC2RWJ6Z", + "ref": "HEDC2RWJ6Z", + "name": "Batilly, Mairie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22996, + 46.2073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTRYTZF", + "ref": "TRYTZF", + "name": "Bourg-en-Bresse, Champ de Foire", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22996, + 46.2073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTRYTZF", + "ref": "TRYTZF", + "name": "Bourg-en-Bresse, Champ de Foire", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22996, + 46.2073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTRYTZF", + "ref": "TRYTZF", + "name": "Bourg-en-Bresse, Champ de Foire", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22996, + 46.2073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTRYTZF", + "ref": "TRYTZF", + "name": "Bourg-en-Bresse, Champ de Foire", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.21959, + 46.2047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZGGYCJ", + "ref": "ZGGYCJ", + "name": "Bourg-en-Bresse, Pkg Champs de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.21959, + 46.2047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZGGYCJ", + "ref": "ZGGYCJ", + "name": "Bourg-en-Bresse, Pkg Champs de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22996, + 46.2073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTRYTZF", + "ref": "TRYTZF", + "name": "Bourg-en-Bresse, Champ de Foire", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22182, + 46.203 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVZJYCG", + "ref": "VZJYCG", + "name": "Bourg-en-Bresse, Place Joubert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96966, + 49.171395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHEDC2RWJ6Z", + "ref": "HEDC2RWJ6Z", + "name": "Batilly, Mairie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96966, + 49.171395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHEDC2RWJ6Z", + "ref": "HEDC2RWJ6Z", + "name": "Batilly, Mairie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.35698, + 43.4206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNHHVSV", + "ref": "NHHVSV", + "name": "MY Palmeraie Plan de Campagne", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05129, + 49.0258 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZFREV", + "ref": "KZFREV", + "name": "Novéant, Rue Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.35698, + 43.4206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNHHVSV", + "ref": "NHHVSV", + "name": "MY Palmeraie Plan de Campagne", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.35698, + 43.4206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNHHVSV", + "ref": "NHHVSV", + "name": "MY Palmeraie Plan de Campagne", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.35698, + 43.4206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNHHVSV", + "ref": "NHHVSV", + "name": "MY Palmeraie Plan de Campagne", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.35698, + 43.4206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNHHVSV", + "ref": "NHHVSV", + "name": "MY Palmeraie Plan de Campagne", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.21945835, + 47.93281674 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXHLANB0NZX", + "ref": "XHLANB0NZX", + "name": "Ploneour Lanvern, Kerhuel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.21945835, + 47.93281674 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXHLANB0NZX", + "ref": "XHLANB0NZX", + "name": "Ploneour Lanvern, Kerhuel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12950967, + 48.95011985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POQAQOPUOYC", + "ref": "OQAQOPUOYC", + "name": "La Ferté-sous-Jouarre , Place de l'Hôtel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12950967, + 48.95011985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POQAQOPUOYC", + "ref": "OQAQOPUOYC", + "name": "La Ferté-sous-Jouarre , Place de l'Hôtel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05129, + 49.0258 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZFREV", + "ref": "KZFREV", + "name": "Novéant, Rue Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96966, + 49.171395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHEDC2RWJ6Z", + "ref": "HEDC2RWJ6Z", + "name": "Batilly, Mairie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65184382, + 45.55649945 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PED5TDOOHPJ", + "ref": "ED5TDOOHPJ", + "name": "Aime-La-Plagne, avenue de Tarentaise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65184382, + 45.55649945 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PED5TDOOHPJ", + "ref": "ED5TDOOHPJ", + "name": "Aime-La-Plagne, avenue de Tarentaise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.396767, + 48.27342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRCACXZCBUQ", + "ref": "RCACXZCBUQ", + "name": "Igney, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.396767, + 48.27342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRCACXZCBUQ", + "ref": "RCACXZCBUQ", + "name": "Igney, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.34592938, + 48.08614603 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS2ED4IIWU3", + "ref": "S2ED4IIWU3", + "name": "Uzemain, Rue de la Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96966, + 49.171395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHEDC2RWJ6Z", + "ref": "HEDC2RWJ6Z", + "name": "Batilly, Mairie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96966, + 49.171395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHEDC2RWJ6Z", + "ref": "HEDC2RWJ6Z", + "name": "Batilly, Mairie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96995936, + 49.17113712 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHEDC2RWJ6Z", + "ref": "HEDC2RWJ6Z", + "name": "Batilly, Mairie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.85536994, + 43.11617585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHUCH3KM1EX6J", + "ref": "LLHUCH3KM1EX6J", + "name": "La Seyne sur Mer, Boulevard de l'Europe", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.85536994, + 43.11617585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHUCH3KM1EX6J", + "ref": "LLHUCH3KM1EX6J", + "name": "La Seyne sur Mer, Boulevard de l'Europe", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.85536994, + 43.11617585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHUCH3KM1EX6J", + "ref": "LLHUCH3KM1EX6J", + "name": "La Seyne sur Mer, Boulevard de l'Europe", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.555006, + 48.026902 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR13OWRMEIG", + "ref": "R13OWRMEIG", + "name": "Audierne-Kerivoas, Lieu-dit Kerivoas -3051", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.913914, + 43.67346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIMV7TJ8J969D", + "ref": "LLIMV7TJ8J969D", + "name": "Teyran, 1550 Avenue de Montpellier", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.573146, + 43.939345 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP8G873ZCEV", + "ref": "P8G873ZCEV", + "name": "Remoulins, Avenue Geoffroy Perret - 2938", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.573146, + 43.939345 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP8G873ZCEV", + "ref": "P8G873ZCEV", + "name": "Remoulins, Avenue Geoffroy Perret - 2938", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.573146, + 43.939345 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP8G873ZCEV", + "ref": "P8G873ZCEV", + "name": "Remoulins, Avenue Geoffroy Perret - 2938", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.913914, + 43.67346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIMV7TJ8J969D", + "ref": "LLIMV7TJ8J969D", + "name": "Teyran, 1550 Avenue de Montpellier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025398, + 44.044928 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHIH0CXVKI5", + "ref": "HIH0CXVKI5", + "name": "Carpentras, 310 Chemin de Monteux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.144633, + 48.091598 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAARDMXKVYP", + "ref": "AARDMXKVYP", + "name": "Chaumont-Brottes, Rue des Brottes -3910", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.144633, + 48.091598 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAARDMXKVYP", + "ref": "AARDMXKVYP", + "name": "Chaumont-Brottes, Rue des Brottes -3910", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.144633, + 48.091598 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAARDMXKVYP", + "ref": "AARDMXKVYP", + "name": "Chaumont-Brottes, Rue des Brottes -3910", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.144633, + 48.091598 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAARDMXKVYP", + "ref": "AARDMXKVYP", + "name": "Chaumont-Brottes, Rue des Brottes -3910", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.144633, + 48.091598 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAARDMXKVYP", + "ref": "AARDMXKVYP", + "name": "Chaumont-Brottes, Rue des Brottes -3910", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.144633, + 48.091598 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAARDMXKVYP", + "ref": "AARDMXKVYP", + "name": "Chaumont-Brottes, Rue des Brottes -3910", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.333352, + 48.062142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTNUIB2KDQK", + "ref": "TNUIB2KDQK", + "name": "Chateaudun, 9 Route de Blois - 4091", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.333352, + 48.062142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTNUIB2KDQK", + "ref": "TNUIB2KDQK", + "name": "Chateaudun, 9 Route de Blois - 4091", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.333352, + 48.062142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTNUIB2KDQK", + "ref": "TNUIB2KDQK", + "name": "Chateaudun, 9 Route de Blois - 4091", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56939099, + 46.89240915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRXQ5H9G1WX", + "ref": "RXQ5H9G1WX", + "name": "Dun-Sur-Auron, 28 Route de Bourges", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.983408, + 47.134593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN8SQMR1KAQ", + "ref": "N8SQMR1KAQ", + "name": "Loches-Route-De-Vauzelles, Route de Vauzelles -3644", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.983408, + 47.134593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN8SQMR1KAQ", + "ref": "N8SQMR1KAQ", + "name": "Loches-Route-De-Vauzelles, Route de Vauzelles -3644", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.878637, + 47.759701 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC6B2YXNKME", + "ref": "C6B2YXNKME", + "name": "Montoire sur Le Loir, 22 avenue de la Paix", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.913914, + 43.67346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIMV7TJ8J969D", + "ref": "LLIMV7TJ8J969D", + "name": "Teyran, 1550 Avenue de Montpellier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.573146, + 43.939345 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP8G873ZCEV", + "ref": "P8G873ZCEV", + "name": "Remoulins, Avenue Geoffroy Perret - 2938", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025398, + 44.044928 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHIH0CXVKI5", + "ref": "HIH0CXVKI5", + "name": "Carpentras, 310 Chemin de Monteux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.532413, + 48.386104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEHGQLKGHD4", + "ref": "EHGQLKGHD4", + "name": "Brest, 137 Bd de Plymouth - 3927", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.532413, + 48.386104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEHGQLKGHD4", + "ref": "EHGQLKGHD4", + "name": "Brest, 137 Bd de Plymouth - 3927", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.532413, + 48.386104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEHGQLKGHD4", + "ref": "EHGQLKGHD4", + "name": "Brest, 137 Bd de Plymouth - 3927", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.805107, + 48.513507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJPZIUHAPOR", + "ref": "JPZIUHAPOR", + "name": "Ploufragan-Plaines-Villes-, Avenue des plaines villes -4183", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9879523, + 48.6675565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBFNM5FW7HS", + "ref": "BFNM5FW7HS", + "name": "Saint-Pol-de-Léon, Route de Lanvalou", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.805107, + 48.513507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJPZIUHAPOR", + "ref": "JPZIUHAPOR", + "name": "Ploufragan-Plaines-Villes-, Avenue des plaines villes -4183", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9879523, + 48.6675565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBFNM5FW7HS", + "ref": "BFNM5FW7HS", + "name": "Saint-Pol-de-Léon, Route de Lanvalou", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.287279, + 47.819499 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAQY64MMFC", + "ref": "VAQY64MMFC", + "name": "Plomeur, Lieu-dit Pendreff - 3820", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.287279, + 47.819499 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAQY64MMFC", + "ref": "VAQY64MMFC", + "name": "Plomeur, Lieu-dit Pendreff - 3820", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.532413, + 48.386104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEHGQLKGHD4", + "ref": "EHGQLKGHD4", + "name": "Brest, 137 Bd de Plymouth - 3927", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.078401, + 43.559483 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXL9FKMEJII", + "ref": "XL9FKMEJII", + "name": "La Grande Motte, Avenue Robert Fages", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025398, + 44.044928 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHIH0CXVKI5", + "ref": "HIH0CXVKI5", + "name": "Carpentras, 310 Chemin de Monteux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025788, + 44.045126 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHIH0CXVKI5", + "ref": "HIH0CXVKI5", + "name": "Carpentras, 310 Chemin de Monteux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.913914, + 43.67346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIMV7TJ8J969D", + "ref": "LLIMV7TJ8J969D", + "name": "Teyran, 1550 Avenue de Montpellier", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025398, + 44.044928 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHIH0CXVKI5", + "ref": "HIH0CXVKI5", + "name": "Carpentras, 310 Chemin de Monteux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025788, + 44.045126 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHIH0CXVKI5", + "ref": "HIH0CXVKI5", + "name": "Carpentras, 310 Chemin de Monteux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.913914, + 43.67346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIMV7TJ8J969D", + "ref": "LLIMV7TJ8J969D", + "name": "Teyran, 1550 Avenue de Montpellier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.913914, + 43.67346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIMV7TJ8J969D", + "ref": "LLIMV7TJ8J969D", + "name": "Teyran, 1550 Avenue de Montpellier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.078401, + 43.559483 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXL9FKMEJII", + "ref": "XL9FKMEJII", + "name": "La Grande Motte, Avenue Robert Fages", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.983408, + 47.134593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN8SQMR1KAQ", + "ref": "N8SQMR1KAQ", + "name": "Loches-Route-De-Vauzelles, Route de Vauzelles -3644", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.801116, + 47.299634 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGRLDTFOSSH", + "ref": "GRLDTFOSSH", + "name": "Esvres Sur Indre, 1 allée Dion Bouton - ZI St Malo - 2782", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.801116, + 47.299634 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGRLDTFOSSH", + "ref": "GRLDTFOSSH", + "name": "Esvres Sur Indre, 1 allée Dion Bouton - ZI St Malo - 2782", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.914649, + 48.956825 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVWGLEPIVS9", + "ref": "VWGLEPIVS9", + "name": "Meaux-Victoire, avenue de la Victoire -3276", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56939099, + 46.89240915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRXQ5H9G1WX", + "ref": "RXQ5H9G1WX", + "name": "Dun-Sur-Auron, 28 Route de Bourges", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.878637, + 47.759701 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC6B2YXNKME", + "ref": "C6B2YXNKME", + "name": "Montoire sur Le Loir, 22 avenue de la Paix", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56939099, + 46.89240915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRXQ5H9G1WX", + "ref": "RXQ5H9G1WX", + "name": "Dun-Sur-Auron, 28 Route de Bourges", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.878637, + 47.759701 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC6B2YXNKME", + "ref": "C6B2YXNKME", + "name": "Montoire sur Le Loir, 22 avenue de la Paix", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.878637, + 47.759701 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC6B2YXNKME", + "ref": "C6B2YXNKME", + "name": "Montoire sur Le Loir, 22 avenue de la Paix", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06467, + 47.271713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAOFNVECAW", + "ref": "SAOFNVECAW", + "name": "Saumur-Rouen, Rue de Rouen -3590", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56939099, + 46.89240915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRXQ5H9G1WX", + "ref": "RXQ5H9G1WX", + "name": "Dun-Sur-Auron, 28 Route de Bourges", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433395, + 48.687488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYDGOOZS6R", + "ref": "MYDGOOZS6R", + "name": "Draveil-Waldeck-Rouseau, 50 rue waldeck rousseau -4113", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.447902, + 48.761441 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POEWTMI5SDG", + "ref": "OEWTMI5SDG", + "name": "Valenton-Duranton, Avenue Julien Duranton -3627", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379674, + 47.793541 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAL9KPXK5Y", + "ref": "VAL9KPXK5Y", + "name": "Bonnee, Route de Sully -3012", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433395, + 48.687488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYDGOOZS6R", + "ref": "MYDGOOZS6R", + "name": "Draveil-Waldeck-Rouseau, 50 rue waldeck rousseau -4113", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586075, + 48.778438 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRBTZV2OWE", + "ref": "LRBTZV2OWE", + "name": "Pontault-Combault-Chênes, chemin des quatres chenes -3672", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.667979, + 48.951953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP846IQNS4O", + "ref": "P846IQNS4O", + "name": "Claye-Souilly-Sarron, Rue Ernest Sarron -3456", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433395, + 48.687488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYDGOOZS6R", + "ref": "MYDGOOZS6R", + "name": "Draveil-Waldeck-Rouseau, 50 rue waldeck rousseau -4113", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433395, + 48.687488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYDGOOZS6R", + "ref": "MYDGOOZS6R", + "name": "Draveil-Waldeck-Rouseau, 50 rue waldeck rousseau -4113", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.573854, + 48.714993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBN72S1V6XC", + "ref": "BN72S1V6XC", + "name": "Santeny-Gayen, Avenue de la Butte Gayen -3629", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.573854, + 48.714993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBN72S1V6XC", + "ref": "BN72S1V6XC", + "name": "Santeny-Gayen, Avenue de la Butte Gayen -3629", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.573854, + 48.714993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBN72S1V6XC", + "ref": "BN72S1V6XC", + "name": "Santeny-Gayen, Avenue de la Butte Gayen -3629", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56939099, + 46.89240915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRXQ5H9G1WX", + "ref": "RXQ5H9G1WX", + "name": "Dun-Sur-Auron, 28 Route de Bourges", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16849, + 47.278754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWYVFBS73YI", + "ref": "WYVFBS73YI", + "name": "Bourgueil-Causeret, Avenue Jean Causeret -3721", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383981, + 47.084605 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT1MDRTWN1F", + "ref": "T1MDRTWN1F", + "name": "Bourges-Avenir, Boulevard de l'Avenir -3636", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.878637, + 47.759701 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC6B2YXNKME", + "ref": "C6B2YXNKME", + "name": "Montoire sur Le Loir, 22 avenue de la Paix", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383981, + 47.084605 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT1MDRTWN1F", + "ref": "T1MDRTWN1F", + "name": "Bourges-Avenir, Boulevard de l'Avenir -3636", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06467, + 47.271713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAOFNVECAW", + "ref": "SAOFNVECAW", + "name": "Saumur-Rouen, Rue de Rouen -3590", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.333352, + 48.062142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTNUIB2KDQK", + "ref": "TNUIB2KDQK", + "name": "Chateaudun, 9 Route de Blois - 4091", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.983408, + 47.134593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN8SQMR1KAQ", + "ref": "N8SQMR1KAQ", + "name": "Loches-Route-De-Vauzelles, Route de Vauzelles -3644", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.333352, + 48.062142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTNUIB2KDQK", + "ref": "TNUIB2KDQK", + "name": "Chateaudun, 9 Route de Blois - 4091", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.333352, + 48.062142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTNUIB2KDQK", + "ref": "TNUIB2KDQK", + "name": "Chateaudun, 9 Route de Blois - 4091", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06467, + 47.271713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAOFNVECAW", + "ref": "SAOFNVECAW", + "name": "Saumur-Rouen, Rue de Rouen -3590", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06467, + 47.271713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAOFNVECAW", + "ref": "SAOFNVECAW", + "name": "Saumur-Rouen, Rue de Rouen -3590", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.878637, + 47.759701 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC6B2YXNKME", + "ref": "C6B2YXNKME", + "name": "Montoire sur Le Loir, 22 avenue de la Paix", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16849, + 47.278754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWYVFBS73YI", + "ref": "WYVFBS73YI", + "name": "Bourgueil-Causeret, Avenue Jean Causeret -3721", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06467, + 47.271713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAOFNVECAW", + "ref": "SAOFNVECAW", + "name": "Saumur-Rouen, Rue de Rouen -3590", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.513958, + 47.702978 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWMZBSDUXHJ", + "ref": "WMZBSDUXHJ", + "name": "Mer-Orleans, 19 route d'Orléans -4039", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379674, + 47.793541 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAL9KPXK5Y", + "ref": "VAL9KPXK5Y", + "name": "Bonnee, Route de Sully -3012", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.513958, + 47.702978 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWMZBSDUXHJ", + "ref": "WMZBSDUXHJ", + "name": "Mer-Orleans, 19 route d'Orléans -4039", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06467, + 47.271713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAOFNVECAW", + "ref": "SAOFNVECAW", + "name": "Saumur-Rouen, Rue de Rouen -3590", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.528757, + 46.589936 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM3ELUWQTWT", + "ref": "M3ELUWQTWT", + "name": "Argenton-Sur-Creuse, Rue Eugène Delacroix -3347", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.528757, + 46.589936 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM3ELUWQTWT", + "ref": "M3ELUWQTWT", + "name": "Argenton-Sur-Creuse, Rue Eugène Delacroix -3347", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56939099, + 46.89240915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRXQ5H9G1WX", + "ref": "RXQ5H9G1WX", + "name": "Dun-Sur-Auron, 28 Route de Bourges", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9879523, + 48.6675565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBFNM5FW7HS", + "ref": "BFNM5FW7HS", + "name": "Saint-Pol-de-Léon, Route de Lanvalou", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.837897, + 48.642373 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP54MDIWUGK", + "ref": "P54MDIWUGK", + "name": "Etables-S/-Mer, rue de la Roche Garde -3081", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.573854, + 48.714993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBN72S1V6XC", + "ref": "BN72S1V6XC", + "name": "Santeny-Gayen, Avenue de la Butte Gayen -3629", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.237425, + 47.871485 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQFZHBEZJDZ", + "ref": "QFZHBEZJDZ", + "name": "Ploneour-Lanvern, ZA de Brénanvec Nevez -3094", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISSUAD0218PP", + "ref": "LLISSUAD0218PP", + "name": "Toulouse, 50 rte de Labege", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISSUAD0218PP", + "ref": "LLISSUAD0218PP", + "name": "Toulouse, 50 rte de Labege", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISSUAD0218PP", + "ref": "LLISSUAD0218PP", + "name": "Toulouse, 50 rte de Labege", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNDZLAR6YW", + "ref": "LNDZLAR6YW", + "name": "Baziège, Lieu-dit en Saumie - ZA du Visence", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNDZLAR6YW", + "ref": "LNDZLAR6YW", + "name": "Baziège, Lieu-dit en Saumie - ZA du Visence", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISSUAD0218PP", + "ref": "LLISSUAD0218PP", + "name": "Toulouse, 50 rte de Labege", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNDZLAR6YW", + "ref": "LNDZLAR6YW", + "name": "Baziège, Lieu-dit en Saumie - ZA du Visence", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.513644, + 43.651538 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDZVOZRKVZZ", + "ref": "DZVOZRKVZZ", + "name": "Castelnaudary, Avenue des pyrénées - 3661", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40803976, + 43.53225485 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO63JQJDR8C", + "ref": "O63JQJDR8C", + "name": "Portet sur Garonne, Route d'Espagne", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40803976, + 43.53225485 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO63JQJDR8C", + "ref": "O63JQJDR8C", + "name": "Portet sur Garonne, Route d'Espagne", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74012718, + 43.11227984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMWSUJPSJ4J", + "ref": "MWSUJPSJ4J", + "name": "Saint Gaudens, 1 bis Rue Jean Suberville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40803976, + 43.53225485 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO63JQJDR8C", + "ref": "O63JQJDR8C", + "name": "Portet sur Garonne, Route d'Espagne", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.503546, + 43.559969 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISSUAD0218PP", + "ref": "LLISSUAD0218PP", + "name": "Toulouse, 50 rte de Labege", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.503546, + 43.559969 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISSUAD0218PP", + "ref": "LLISSUAD0218PP", + "name": "Toulouse, 50 rte de Labege", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40803976, + 43.53225485 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO63JQJDR8C", + "ref": "O63JQJDR8C", + "name": "Portet sur Garonne, Route d'Espagne", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40803976, + 43.53225485 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO63JQJDR8C", + "ref": "O63JQJDR8C", + "name": "Portet sur Garonne, Route d'Espagne", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09272681, + 43.23713691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGUBPYPEXXR", + "ref": "GUBPYPEXXR", + "name": "Tarbes, Avenue Aristide Briand", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09272681, + 43.23713691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGUBPYPEXXR", + "ref": "GUBPYPEXXR", + "name": "Tarbes, Avenue Aristide Briand", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74012718, + 43.11227984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMWSUJPSJ4J", + "ref": "MWSUJPSJ4J", + "name": "Saint Gaudens, 1 bis Rue Jean Suberville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNDZLAR6YW", + "ref": "LNDZLAR6YW", + "name": "Baziège, Lieu-dit en Saumie - ZA du Visence", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.794415, + 50.447739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXA55ET3COQ", + "ref": "XA55ET3COQ", + "name": "Loos-En-Gohelle-Bethune, route de Béthune -3476", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.794415, + 50.447739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXA55ET3COQ", + "ref": "XA55ET3COQ", + "name": "Loos-En-Gohelle-Bethune, route de Béthune -3476", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.582539, + 50.710478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGNLNHDG2H5", + "ref": "GNLNHDG2H5", + "name": "Le-Portel-Martin, rue du Général San Martin -3554", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.608554, + 50.413489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFNABZHD5V0", + "ref": "FNABZHD5V0", + "name": "Rang-Du-Fliers-Berck, Route de Berck -3659", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.608554, + 50.413489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFNABZHD5V0", + "ref": "FNABZHD5V0", + "name": "Rang-Du-Fliers-Berck, Route de Berck -3659", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.603901, + 50.696349 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU31Z1HOZPX", + "ref": "U31Z1HOZPX", + "name": "Outreau, Rue Edouard Vaillant -3365", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.251303, + 50.73239 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDFKNF0DTEA", + "ref": "DFKNF0DTEA", + "name": "Longuenesse-Lumbres, rue de Lumbres -3802", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.88672073, + 50.86272062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAKZY4U1S4", + "ref": "SAKZY4U1S4", + "name": "Guînes, ZA du Moulin à Huile", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.88672073, + 50.86272062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAKZY4U1S4", + "ref": "SAKZY4U1S4", + "name": "Guînes, ZA du Moulin à Huile", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.603901, + 50.696349 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU31Z1HOZPX", + "ref": "U31Z1HOZPX", + "name": "Outreau, Rue Edouard Vaillant -3365", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.582539, + 50.710478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGNLNHDG2H5", + "ref": "GNLNHDG2H5", + "name": "Le-Portel-Martin, rue du Général San Martin -3554", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.521722, + 50.4716 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIHAJCZDFMR", + "ref": "IHAJCZDFMR", + "name": "Divion-Freres-Caron, rue des Frères Caron -3368", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.597708, + 50.403398 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB22E6IS6IJ", + "ref": "B22E6IS6IJ", + "name": "Berck, Zone Industrielle de la Vigogne -3367", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.794415, + 50.447739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXA55ET3COQ", + "ref": "XA55ET3COQ", + "name": "Loos-En-Gohelle-Bethune, route de Béthune -3476", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.521722, + 50.4716 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIHAJCZDFMR", + "ref": "IHAJCZDFMR", + "name": "Divion-Freres-Caron, rue des Frères Caron -3368", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.251303, + 50.73239 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDFKNF0DTEA", + "ref": "DFKNF0DTEA", + "name": "Longuenesse-Lumbres, rue de Lumbres -3802", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.88672073, + 50.86272062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAKZY4U1S4", + "ref": "SAKZY4U1S4", + "name": "Guînes, ZA du Moulin à Huile", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.88672073, + 50.86272062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAKZY4U1S4", + "ref": "SAKZY4U1S4", + "name": "Guînes, ZA du Moulin à Huile", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.794415, + 50.447739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXA55ET3COQ", + "ref": "XA55ET3COQ", + "name": "Loos-En-Gohelle-Bethune, route de Béthune -3476", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.88672073, + 50.86272062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAKZY4U1S4", + "ref": "SAKZY4U1S4", + "name": "Guînes, ZA du Moulin à Huile", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.886343, + 50.397656 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJZA6CVZ1N", + "ref": "RJZA6CVZ1N", + "name": "Mericourt-Desmoulins, rue Camille Desmoulins -3059", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03493, + 43.325232 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDZVOZRKVZZ", + "ref": "DZVOZRKVZZ", + "name": "Castelnaudary, Avenue des pyrénées - 3661", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74012718, + 43.11227984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMWSUJPSJ4J", + "ref": "MWSUJPSJ4J", + "name": "Saint Gaudens, 1 bis Rue Jean Suberville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74012718, + 43.11227984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMWSUJPSJ4J", + "ref": "MWSUJPSJ4J", + "name": "Saint Gaudens, 1 bis Rue Jean Suberville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.837897, + 48.642373 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP54MDIWUGK", + "ref": "P54MDIWUGK", + "name": "Etables-S/-Mer, rue de la Roche Garde -3081", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9879523, + 48.6675565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBFNM5FW7HS", + "ref": "BFNM5FW7HS", + "name": "Saint-Pol-de-Léon, Route de Lanvalou", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.530413, + 47.862077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMARTXJJ3YQ", + "ref": "MARTXJJ3YQ", + "name": "Quimperle, Lieu-dit Kervail - 3090", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.805107, + 48.513507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJPZIUHAPOR", + "ref": "JPZIUHAPOR", + "name": "Ploufragan-Plaines-Villes-, Avenue des plaines villes -4183", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.625437, + 48.66224 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA818R6G62Y", + "ref": "A818R6G62Y", + "name": "Plestin Les Greves, Rue de Guergay - 3724", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.625437, + 48.66224 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA818R6G62Y", + "ref": "A818R6G62Y", + "name": "Plestin Les Greves, Rue de Guergay - 3724", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.475283, + 48.415155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSORRN2XLAU", + "ref": "SORRN2XLAU", + "name": "Brest-Paulet, Général Paulet -3588", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.324557, + 47.726101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTJDUQOWLBU", + "ref": "TJDUQOWLBU", + "name": "Locmiquelic, Route Départementale -3093", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.324557, + 47.726101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTJDUQOWLBU", + "ref": "TJDUQOWLBU", + "name": "Locmiquelic, Route Départementale -3093", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.237425, + 47.871485 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQFZHBEZJDZ", + "ref": "QFZHBEZJDZ", + "name": "Ploneour-Lanvern, ZA de Brénanvec Nevez -3094", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.287279, + 47.819499 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAQY64MMFC", + "ref": "VAQY64MMFC", + "name": "Plomeur, Lieu-dit Pendreff - 3820", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.764105, + 48.192361 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRMKFDTC3M4", + "ref": "RMKFDTC3M4", + "name": "Loudeac, parc commercial de Ker d'Hervé -3082", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.764105, + 48.192361 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRMKFDTC3M4", + "ref": "RMKFDTC3M4", + "name": "Loudeac, parc commercial de Ker d'Hervé -3082", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.244457, + 48.777484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCXWQCAZPW9", + "ref": "CXWQCAZPW9", + "name": "Minihy-Treguier, zone commerciale de kerfolic -3092", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.244457, + 48.777484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCXWQCAZPW9", + "ref": "CXWQCAZPW9", + "name": "Minihy-Treguier, zone commerciale de kerfolic -3092", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.56233, + 48.284034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDW28ZLLDTL", + "ref": "DW28ZLLDTL", + "name": "Carhaix, Route de Callac -3096", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.350408, + 48.384312 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJKC4QHAXRL", + "ref": "JKC4QHAXRL", + "name": "Plougastel-Daoulas-Menez, ZAC Ty Ar Menez -3049", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.805107, + 48.513507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJPZIUHAPOR", + "ref": "JPZIUHAPOR", + "name": "Ploufragan-Plaines-Villes-, Avenue des plaines villes -4183", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.56233, + 48.284034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDW28ZLLDTL", + "ref": "DW28ZLLDTL", + "name": "Carhaix, Route de Callac -3096", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.287279, + 47.819499 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAQY64MMFC", + "ref": "VAQY64MMFC", + "name": "Plomeur, Lieu-dit Pendreff - 3820", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9879523, + 48.6675565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBFNM5FW7HS", + "ref": "BFNM5FW7HS", + "name": "Saint-Pol-de-Léon, Route de Lanvalou", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40803976, + 43.53225485 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO63JQJDR8C", + "ref": "O63JQJDR8C", + "name": "Portet sur Garonne, Route d'Espagne", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNDZLAR6YW", + "ref": "LNDZLAR6YW", + "name": "Baziège, Lieu-dit en Saumie - ZA du Visence", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74012718, + 43.11227984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMWSUJPSJ4J", + "ref": "MWSUJPSJ4J", + "name": "Saint Gaudens, 1 bis Rue Jean Suberville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNDZLAR6YW", + "ref": "LNDZLAR6YW", + "name": "Baziège, Lieu-dit en Saumie - ZA du Visence", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNDZLAR6YW", + "ref": "LNDZLAR6YW", + "name": "Baziège, Lieu-dit en Saumie - ZA du Visence", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNDZLAR6YW", + "ref": "LNDZLAR6YW", + "name": "Baziège, Lieu-dit en Saumie - ZA du Visence", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNDZLAR6YW", + "ref": "LNDZLAR6YW", + "name": "Baziège, Lieu-dit en Saumie - ZA du Visence", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNDZLAR6YW", + "ref": "LNDZLAR6YW", + "name": "Baziège, Lieu-dit en Saumie - ZA du Visence", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09272681, + 43.23713691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGUBPYPEXXR", + "ref": "GUBPYPEXXR", + "name": "Tarbes, Avenue Aristide Briand", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09272681, + 43.23713691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGUBPYPEXXR", + "ref": "GUBPYPEXXR", + "name": "Tarbes, Avenue Aristide Briand", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74012718, + 43.11227984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMWSUJPSJ4J", + "ref": "MWSUJPSJ4J", + "name": "Saint Gaudens, 1 bis Rue Jean Suberville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9879523, + 48.6675565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBFNM5FW7HS", + "ref": "BFNM5FW7HS", + "name": "Saint-Pol-de-Léon, Route de Lanvalou", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNDZLAR6YW", + "ref": "LNDZLAR6YW", + "name": "Baziège, Lieu-dit en Saumie - ZA du Visence", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNDZLAR6YW", + "ref": "LNDZLAR6YW", + "name": "Baziège, Lieu-dit en Saumie - ZA du Visence", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.350408, + 48.384312 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJKC4QHAXRL", + "ref": "JKC4QHAXRL", + "name": "Plougastel-Daoulas-Menez, ZAC Ty Ar Menez -3049", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.056725, + 48.211137 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ9THPO26DL", + "ref": "Z9THPO26DL", + "name": "Chateaulin-Roz, ZAC Penn Ar Roz -3596", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.530413, + 47.862077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMARTXJJ3YQ", + "ref": "MARTXJJ3YQ", + "name": "Quimperle, Lieu-dit Kervail - 3090", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.056725, + 48.211137 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ9THPO26DL", + "ref": "Z9THPO26DL", + "name": "Chateaulin-Roz, ZAC Penn Ar Roz -3596", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.475283, + 48.415155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSORRN2XLAU", + "ref": "SORRN2XLAU", + "name": "Brest-Paulet, Général Paulet -3588", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.555006, + 48.026902 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR13OWRMEIG", + "ref": "R13OWRMEIG", + "name": "Audierne-Kerivoas, Lieu-dit Kerivoas -3051", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.447902, + 48.761441 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POEWTMI5SDG", + "ref": "OEWTMI5SDG", + "name": "Valenton-Duranton, Avenue Julien Duranton -3627", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.573854, + 48.714993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBN72S1V6XC", + "ref": "BN72S1V6XC", + "name": "Santeny-Gayen, Avenue de la Butte Gayen -3629", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.632829, + 43.462738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEJRFCC8V5U", + "ref": "EJRFCC8V5U", + "name": "Roquebrune Sur Argens, 2109 Route Nationale 7 / Quartier - 2956", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.081907, + 45.051415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWHWZWYFYDB", + "ref": "WHWZWYFYDB", + "name": "Romans-Sur-Isere-Allobroges, 8 Avenue des Allobroges -3339", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5930157, + 45.52731397 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWC9D5OUSO6", + "ref": "WC9D5OUSO6", + "name": "Charancieu, Lieudit Le Charmay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.009508, + 44.902444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU4TXWRCMP1", + "ref": "U4TXWRCMP1", + "name": "Chabeuil, 2 rue Marius Chatte - 2705", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.689769, + 45.530129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJ628PL5BR", + "ref": "RJ628PL5BR", + "name": "Pont-De-Beauvoisin-Baronnie, 43 impasse Etienne LAUBIN -3641", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.883947, + 45.274004 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGZFJ7CM6V", + "ref": "JGZFJ7CM6V", + "name": "Crolles-Croizat, 14 rue du moulin -3615", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.761574, + 45.186638 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQS8BTQA6LW", + "ref": "QS8BTQA6LW", + "name": "Saint Martin D'Heres, 17 Rue des Glairons - 3562", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.761574, + 45.186638 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQS8BTQA6LW", + "ref": "QS8BTQA6LW", + "name": "Saint Martin D'Heres, 17 Rue des Glairons - 3562", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.761574, + 45.186638 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQS8BTQA6LW", + "ref": "QS8BTQA6LW", + "name": "Saint Martin D'Heres, 17 Rue des Glairons - 3562", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14189899, + 45.87740129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY6BWAPE3KI", + "ref": "Y6BWAPE3KI", + "name": "Sevrier, 508 Route d'Albertville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.575313, + 46.395105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POQT6PYP0AK", + "ref": "OQT6PYP0AK", + "name": "Evian, Impasse des Cèdres - 2068", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.575313, + 46.395105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POQT6PYP0AK", + "ref": "OQT6PYP0AK", + "name": "Evian, Impasse des Cèdres - 2068", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.009508, + 44.902444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU4TXWRCMP1", + "ref": "U4TXWRCMP1", + "name": "Chabeuil, 2 rue Marius Chatte - 2705", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.575313, + 46.395105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POQT6PYP0AK", + "ref": "OQT6PYP0AK", + "name": "Evian, Impasse des Cèdres - 2068", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.883947, + 45.274004 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGZFJ7CM6V", + "ref": "JGZFJ7CM6V", + "name": "Crolles-Croizat, 14 rue du moulin -3615", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.248697, + 45.393022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVFOHUPYC2O", + "ref": "VFOHUPYC2O", + "name": "La Cote Saint André, Avenue Aristide Briand", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.708527, + 45.157641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP82ADPOVAF", + "ref": "P82ADPOVAF", + "name": "Echirolles, 10 Cours Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.081907, + 45.051415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWHWZWYFYDB", + "ref": "WHWZWYFYDB", + "name": "Romans-Sur-Isere-Allobroges, 8 Avenue des Allobroges -3339", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.575313, + 46.395105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POQT6PYP0AK", + "ref": "OQT6PYP0AK", + "name": "Evian, Impasse des Cèdres - 2068", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.98943438, + 45.53882333 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZKXJSWERB9", + "ref": "ZKXJSWERB9", + "name": "Saint-Jeoire-Prieuré, Route Nationale 6 Av Saint Just", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.761574, + 45.186638 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQS8BTQA6LW", + "ref": "QS8BTQA6LW", + "name": "Saint Martin D'Heres, 17 Rue des Glairons - 3562", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.248697, + 45.393022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVFOHUPYC2O", + "ref": "VFOHUPYC2O", + "name": "La Cote Saint André, Avenue Aristide Briand", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5494817, + 46.06298096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRZZVJ8N9E", + "ref": "LRZZVJ8N9E", + "name": "Scionzier, Avenue du Crozet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.708527, + 45.157641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP82ADPOVAF", + "ref": "P82ADPOVAF", + "name": "Echirolles, 10 Cours Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.366808, + 45.269494 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKUPFNDHYBP", + "ref": "KUPFNDHYBP", + "name": "Saint Jean De Maurienne, 8 Rue du 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.689769, + 45.530129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJ628PL5BR", + "ref": "RJ628PL5BR", + "name": "Pont-De-Beauvoisin-Baronnie, 43 impasse Etienne LAUBIN -3641", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27761, + 45.753397 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQOHDGTS2IJ", + "ref": "QOHDGTS2IJ", + "name": "Faverges, Route d'Annecy / Les Boucheroz Sud -3033", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14189899, + 45.87740129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY6BWAPE3KI", + "ref": "Y6BWAPE3KI", + "name": "Sevrier, 508 Route d'Albertville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.689769, + 45.530129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJ628PL5BR", + "ref": "RJ628PL5BR", + "name": "Pont-De-Beauvoisin-Baronnie, 43 impasse Etienne LAUBIN -3641", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.064734, + 45.341785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSJWECFVZZW", + "ref": "SJWECFVZZW", + "name": "Saint Barthelemy, 1304 Route de Beaurepaire – 3542", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.98943438, + 45.53882333 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZKXJSWERB9", + "ref": "ZKXJSWERB9", + "name": "Saint-Jeoire-Prieuré, Route Nationale 6 Av Saint Just", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.422381, + 45.393392 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PASYZQT6BCE", + "ref": "ASYZQT6BCE", + "name": "Le Grand-Lemps, 337 Av. de l'Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.34937411, + 45.341624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWMZPDCEPIA", + "ref": "WMZPDCEPIA", + "name": "St Etienne De St Geoirs, Route de Grenoble-Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.064734, + 45.341785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSJWECFVZZW", + "ref": "SJWECFVZZW", + "name": "Saint Barthelemy, 1304 Route de Beaurepaire – 3542", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.422381, + 45.393392 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PASYZQT6BCE", + "ref": "ASYZQT6BCE", + "name": "Le Grand-Lemps, 337 Av. de l'Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14189899, + 45.87740129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY6BWAPE3KI", + "ref": "Y6BWAPE3KI", + "name": "Sevrier, 508 Route d'Albertville", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14189899, + 45.87740129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY6BWAPE3KI", + "ref": "Y6BWAPE3KI", + "name": "Sevrier, 508 Route d'Albertville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05098444, + 45.49638608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKFRAWCIG6H", + "ref": "KFRAWCIG6H", + "name": "Montmelian, Av. de Gresivaudan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14189899, + 45.87740129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY6BWAPE3KI", + "ref": "Y6BWAPE3KI", + "name": "Sevrier, 508 Route d'Albertville", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884542, + 44.961164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMV8MFFBHDJ", + "ref": "MV8MFFBHDJ", + "name": "Bourg-Les-Valence-Bastié, Rue Maryse Bastié -3954", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884542, + 44.961164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMV8MFFBHDJ", + "ref": "MV8MFFBHDJ", + "name": "Bourg-Les-Valence-Bastié, Rue Maryse Bastié -3954", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884542, + 44.961164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMV8MFFBHDJ", + "ref": "MV8MFFBHDJ", + "name": "Bourg-Les-Valence-Bastié, Rue Maryse Bastié -3954", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884542, + 44.961164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMV8MFFBHDJ", + "ref": "MV8MFFBHDJ", + "name": "Bourg-Les-Valence-Bastié, Rue Maryse Bastié -3954", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.081907, + 45.051415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWHWZWYFYDB", + "ref": "WHWZWYFYDB", + "name": "Romans-Sur-Isere-Allobroges, 8 Avenue des Allobroges -3339", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5930157, + 45.52731397 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWC9D5OUSO6", + "ref": "WC9D5OUSO6", + "name": "Charancieu, Lieudit Le Charmay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.689769, + 45.530129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJ628PL5BR", + "ref": "RJ628PL5BR", + "name": "Pont-De-Beauvoisin-Baronnie, 43 impasse Etienne LAUBIN -3641", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67457696, + 46.00301708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRX0SUMTB6R", + "ref": "RX0SUMTB6R", + "name": "Confolens, avenue du Général de Gaulle", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00531356, + 46.26329433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWXBEGJKS4B", + "ref": "WXBEGJKS4B", + "name": "Andilly, Les Quatres Quartiers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00531356, + 46.26329433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWXBEGJKS4B", + "ref": "WXBEGJKS4B", + "name": "Andilly, Les Quatres Quartiers", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3266343, + 45.12885668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIXUXAPMXY4", + "ref": "IXUXAPMXY4", + "name": "Terrasson, Les Fauries", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3266343, + 45.12885668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIXUXAPMXY4", + "ref": "IXUXAPMXY4", + "name": "Terrasson, Les Fauries", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00531356, + 46.26329433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWXBEGJKS4B", + "ref": "WXBEGJKS4B", + "name": "Andilly, Les Quatres Quartiers", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67457696, + 46.00301708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRX0SUMTB6R", + "ref": "RX0SUMTB6R", + "name": "Confolens, avenue du Général de Gaulle", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3266343, + 45.12885668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIXUXAPMXY4", + "ref": "IXUXAPMXY4", + "name": "Terrasson, Les Fauries", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67457696, + 46.00301708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRX0SUMTB6R", + "ref": "RX0SUMTB6R", + "name": "Confolens, avenue du Général de Gaulle", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.632829, + 43.462738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEJRFCC8V5U", + "ref": "EJRFCC8V5U", + "name": "Roquebrune Sur Argens, 2109 Route Nationale 7 / Quartier - 2956", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13671516, + 45.64408191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PULZI7QNTXU", + "ref": "ULZI7QNTXU", + "name": "Angoulême, route de Bordeaux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.14345933, + 43.66580333 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXOZQ9QYCLQ", + "ref": "XOZQ9QYCLQ", + "name": "Cagnes sur Mer, avenue de Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.85536994, + 43.11617585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHUCH3KM1EX6J", + "ref": "LLHUCH3KM1EX6J", + "name": "La Seyne sur Mer, Boulevard de l'Europe", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.85536994, + 43.11617585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHUCH3KM1EX6J", + "ref": "LLHUCH3KM1EX6J", + "name": "La Seyne sur Mer, Boulevard de l'Europe", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.85536994, + 43.11617585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHUCH3KM1EX6J", + "ref": "LLHUCH3KM1EX6J", + "name": "La Seyne sur Mer, Boulevard de l'Europe", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.632829, + 43.462738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEJRFCC8V5U", + "ref": "EJRFCC8V5U", + "name": "Roquebrune Sur Argens, 2109 Route Nationale 7 / Quartier - 2956", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.85536994, + 43.11617585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHUCH3KM1EX6J", + "ref": "LLHUCH3KM1EX6J", + "name": "La Seyne sur Mer, Boulevard de l'Europe", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.632829, + 43.462738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEJRFCC8V5U", + "ref": "EJRFCC8V5U", + "name": "Roquebrune Sur Argens, 2109 Route Nationale 7 / Quartier - 2956", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.85536994, + 43.11617585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHUCH3KM1EX6J", + "ref": "LLHUCH3KM1EX6J", + "name": "La Seyne sur Mer, Boulevard de l'Europe", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13671516, + 45.64408191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PULZI7QNTXU", + "ref": "ULZI7QNTXU", + "name": "Angoulême, route de Bordeaux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67457696, + 46.00301708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRX0SUMTB6R", + "ref": "RX0SUMTB6R", + "name": "Confolens, avenue du Général de Gaulle", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2535804, + 47.11048942 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ8TORQXRCM", + "ref": "Z8TORQXRCM", + "name": "Béziers, Route de Maureilhan", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00531356, + 46.26329433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWXBEGJKS4B", + "ref": "WXBEGJKS4B", + "name": "Andilly, Les Quatres Quartiers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2535804, + 47.11048942 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ8TORQXRCM", + "ref": "Z8TORQXRCM", + "name": "Béziers, Route de Maureilhan", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2535804, + 47.11048942 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ8TORQXRCM", + "ref": "Z8TORQXRCM", + "name": "Béziers, Route de Maureilhan", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2535804, + 47.11048942 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ8TORQXRCM", + "ref": "Z8TORQXRCM", + "name": "Béziers, Route de Maureilhan", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2535804, + 47.11048942 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ8TORQXRCM", + "ref": "Z8TORQXRCM", + "name": "Béziers, Route de Maureilhan", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2535804, + 47.11048942 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ8TORQXRCM", + "ref": "Z8TORQXRCM", + "name": "Béziers, Route de Maureilhan", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00531356, + 46.26329433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWXBEGJKS4B", + "ref": "WXBEGJKS4B", + "name": "Andilly, Les Quatres Quartiers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13335366, + 45.83682032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP47AQWL4FJ", + "ref": "P47AQWL4FJ", + "name": "Boucefranc-le-Chapus, ZAC du Riveau", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3266343, + 45.12885668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIXUXAPMXY4", + "ref": "IXUXAPMXY4", + "name": "Terrasson, Les Fauries", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13671516, + 45.64408191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PULZI7QNTXU", + "ref": "ULZI7QNTXU", + "name": "Angoulême, route de Bordeaux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91774543, + 45.89858412 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZIIBHFC8FI", + "ref": "ZIIBHFC8FI", + "name": "Saint-Junien, avenue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00531356, + 46.26329433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWXBEGJKS4B", + "ref": "WXBEGJKS4B", + "name": "Andilly, Les Quatres Quartiers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00531356, + 46.26329433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWXBEGJKS4B", + "ref": "WXBEGJKS4B", + "name": "Andilly, Les Quatres Quartiers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91774543, + 45.89858412 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZIIBHFC8FI", + "ref": "ZIIBHFC8FI", + "name": "Saint-Junien, avenue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13335366, + 45.83682032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP47AQWL4FJ", + "ref": "P47AQWL4FJ", + "name": "Boucefranc-le-Chapus, ZAC du Riveau", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13335366, + 45.83682032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP47AQWL4FJ", + "ref": "P47AQWL4FJ", + "name": "Boucefranc-le-Chapus, ZAC du Riveau", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00531356, + 46.26329433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWXBEGJKS4B", + "ref": "WXBEGJKS4B", + "name": "Andilly, Les Quatres Quartiers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13335366, + 45.83682032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP47AQWL4FJ", + "ref": "P47AQWL4FJ", + "name": "Boucefranc-le-Chapus, ZAC du Riveau", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13671516, + 45.64408191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PULZI7QNTXU", + "ref": "ULZI7QNTXU", + "name": "Angoulême, route de Bordeaux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14189899, + 45.87740129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY6BWAPE3KI", + "ref": "Y6BWAPE3KI", + "name": "Sevrier, 508 Route d'Albertville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.081907, + 45.051415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWHWZWYFYDB", + "ref": "WHWZWYFYDB", + "name": "Romans-Sur-Isere-Allobroges, 8 Avenue des Allobroges -3339", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.667979, + 48.951953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP846IQNS4O", + "ref": "P846IQNS4O", + "name": "Claye-Souilly-Sarron, Rue Ernest Sarron -3456", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14189899, + 45.87740129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY6BWAPE3KI", + "ref": "Y6BWAPE3KI", + "name": "Sevrier, 508 Route d'Albertville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.398765, + 48.650183 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCOWK19Z19U", + "ref": "COWK19Z19U", + "name": "Ris-Orangis-Langevin, avenue Paul Langevin -3164", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.394425, + 49.037849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZGBJXDCZFR", + "ref": "ZGBJXDCZFR", + "name": "Château Thierry, 37 rue de la Prairie - 3903", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.447902, + 48.761441 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POEWTMI5SDG", + "ref": "OEWTMI5SDG", + "name": "Valenton-Duranton, Avenue Julien Duranton -3627", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345496, + 48.70545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHTHA8SVPIE", + "ref": "HTHA8SVPIE", + "name": "Morangis, Avenue Charles de Gaulle -3204", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56127601, + 48.52366092 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMOFV72VTZQ", + "ref": "MOFV72VTZQ", + "name": "Pringy, rue de Melun", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56127601, + 48.52366092 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMOFV72VTZQ", + "ref": "MOFV72VTZQ", + "name": "Pringy, rue de Melun", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56127601, + 48.52366092 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMOFV72VTZQ", + "ref": "MOFV72VTZQ", + "name": "Pringy, rue de Melun", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.015265, + 48.561171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVIWAJNSDVO", + "ref": "VIWAJNSDVO", + "name": "Nangis, avenue du Général de Gaulle -3016", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.678413, + 48.539965 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMQJVDT1XHK", + "ref": "MQJVDT1XHK", + "name": "Vaux-Le-Penil-Montereau, route de Montereau -3568", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.087051, + 48.803194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POCKZD1UBE6", + "ref": "OCKZD1UBE6", + "name": "Coulommiers-Rue-De-L'Orgeval, Rue de l'Orgeval -3758", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.087051, + 48.803194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POCKZD1UBE6", + "ref": "OCKZD1UBE6", + "name": "Coulommiers-Rue-De-L'Orgeval, Rue de l'Orgeval -3758", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56127601, + 48.52366092 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMOFV72VTZQ", + "ref": "MOFV72VTZQ", + "name": "Pringy, rue de Melun", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53242, + 48.816241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVRVUMOVGWL", + "ref": "VRVUMOVGWL", + "name": "Champigny-Bernau, rue de Bernau -3567", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53242, + 48.816241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVRVUMOVGWL", + "ref": "VRVUMOVGWL", + "name": "Champigny-Bernau, rue de Bernau -3567", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53242, + 48.816241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVRVUMOVGWL", + "ref": "VRVUMOVGWL", + "name": "Champigny-Bernau, rue de Bernau -3567", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.678413, + 48.539965 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMQJVDT1XHK", + "ref": "MQJVDT1XHK", + "name": "Vaux-Le-Penil-Montereau, route de Montereau -3568", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53242, + 48.816241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVRVUMOVGWL", + "ref": "VRVUMOVGWL", + "name": "Champigny-Bernau, rue de Bernau -3567", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56127601, + 48.52366092 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMOFV72VTZQ", + "ref": "MOFV72VTZQ", + "name": "Pringy, rue de Melun", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53242, + 48.816241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVRVUMOVGWL", + "ref": "VRVUMOVGWL", + "name": "Champigny-Bernau, rue de Bernau -3567", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433395, + 48.687488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYDGOOZS6R", + "ref": "MYDGOOZS6R", + "name": "Draveil-Waldeck-Rouseau, 50 rue waldeck rousseau -4113", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.573854, + 48.714993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBN72S1V6XC", + "ref": "BN72S1V6XC", + "name": "Santeny-Gayen, Avenue de la Butte Gayen -3629", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.573854, + 48.714993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBN72S1V6XC", + "ref": "BN72S1V6XC", + "name": "Santeny-Gayen, Avenue de la Butte Gayen -3629", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.425522, + 48.757105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXEHIISJMZ1", + "ref": "XEHIISJMZ1", + "name": "Choisy-Le-Roi-Villeneuve, Avenue de Villeneuve-Saint-Georges -3348", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.398765, + 48.650183 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCOWK19Z19U", + "ref": "COWK19Z19U", + "name": "Ris-Orangis-Langevin, avenue Paul Langevin -3164", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.573854, + 48.714993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBN72S1V6XC", + "ref": "BN72S1V6XC", + "name": "Santeny-Gayen, Avenue de la Butte Gayen -3629", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.447902, + 48.761441 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POEWTMI5SDG", + "ref": "OEWTMI5SDG", + "name": "Valenton-Duranton, Avenue Julien Duranton -3627", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.649431, + 48.547335 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF9MHRVG3FP", + "ref": "F9MHRVG3FP", + "name": "Melun, 36 Avenue du General Patton - 4146", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4841, + 48.757675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PID7KOD7DHH", + "ref": "ID7KOD7DHH", + "name": "Bonneuil-Sur-Marne-Garry, Avenue Robert Hottinguer -3901", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.649431, + 48.547335 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF9MHRVG3FP", + "ref": "F9MHRVG3FP", + "name": "Melun, 36 Avenue du General Patton - 4146", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.394425, + 49.037849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZGBJXDCZFR", + "ref": "ZGBJXDCZFR", + "name": "Château Thierry, 37 rue de la Prairie - 3903", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4841, + 48.757675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PID7KOD7DHH", + "ref": "ID7KOD7DHH", + "name": "Bonneuil-Sur-Marne-Garry, Avenue Robert Hottinguer -3901", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.425522, + 48.757105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXEHIISJMZ1", + "ref": "XEHIISJMZ1", + "name": "Choisy-Le-Roi-Villeneuve, Avenue de Villeneuve-Saint-Georges -3348", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.676408, + 48.86813 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY2ZMZANJDV", + "ref": "Y2ZMZANJDV", + "name": "St-Thibault-Vi, Avenue de la Courtillère -2685", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.631308, + 48.563436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEHUOWBPTAZ", + "ref": "EHUOWBPTAZ", + "name": "Vert-St-Denis-Rn-6, route nationale 6 -3152", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477486, + 48.591026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLFKAACIEEF", + "ref": "LFKAACIEEF", + "name": "Corbeil-Essonnes-John-Kennedy, boulevard John Kennedy -3054", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.631308, + 48.563436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEHUOWBPTAZ", + "ref": "EHUOWBPTAZ", + "name": "Vert-St-Denis-Rn-6, route nationale 6 -3152", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.394425, + 49.037849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZGBJXDCZFR", + "ref": "ZGBJXDCZFR", + "name": "Château Thierry, 37 rue de la Prairie - 3903", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433395, + 48.687488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYDGOOZS6R", + "ref": "MYDGOOZS6R", + "name": "Draveil-Waldeck-Rouseau, 50 rue waldeck rousseau -4113", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.394425, + 49.037849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZGBJXDCZFR", + "ref": "ZGBJXDCZFR", + "name": "Château Thierry, 37 rue de la Prairie - 3903", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477486, + 48.591026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLFKAACIEEF", + "ref": "LFKAACIEEF", + "name": "Corbeil-Essonnes-John-Kennedy, boulevard John Kennedy -3054", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586075, + 48.778438 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRBTZV2OWE", + "ref": "LRBTZV2OWE", + "name": "Pontault-Combault-Chênes, chemin des quatres chenes -3672", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53242, + 48.816241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVRVUMOVGWL", + "ref": "VRVUMOVGWL", + "name": "Champigny-Bernau, rue de Bernau -3567", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.140941, + 48.955565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVU5BILOYOJ", + "ref": "VU5BILOYOJ", + "name": "Reuil-En-Brie-1945, Rue du 8 Mai 1945 -3742", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528645, + 48.678483 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PND7EXY8XAP", + "ref": "ND7EXY8XAP", + "name": "Boussy-Saint-Antoine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.308181, + 46.069647 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTMKRKF2NVZ", + "ref": "TMKRKF2NVZ", + "name": "La Roche sur Foron, 397 Avenue Charles de Gaulle - 3422", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.574797, + 48.735403 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIYFHIGTUD5", + "ref": "IYFHIGTUD5", + "name": "Flers-Miniere, rue de la Minière -4165", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.877493, + 48.85731 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWBTHYDIUJL", + "ref": "WBTHYDIUJL", + "name": "Vire-Caen, rue de Caen -3658", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.877493, + 48.85731 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWBTHYDIUJL", + "ref": "WBTHYDIUJL", + "name": "Vire-Caen, rue de Caen -3658", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.724508, + 48.551888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5MFSTXFBK", + "ref": "Z5MFSTXFBK", + "name": "Dol-De-Bretagne-Baie, Rue de la Rouelle - Avenue de la Baie -3842", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.724508, + 48.551888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5MFSTXFBK", + "ref": "Z5MFSTXFBK", + "name": "Dol-De-Bretagne-Baie, Rue de la Rouelle - Avenue de la Baie -3842", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.574797, + 48.735403 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIYFHIGTUD5", + "ref": "IYFHIGTUD5", + "name": "Flers-Miniere, rue de la Minière -4165", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35587164, + 48.35348355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKPINYLE999", + "ref": "KPINYLE999", + "name": "Saint Longis, Rue Saint Jean", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35587164, + 48.35348355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKPINYLE999", + "ref": "KPINYLE999", + "name": "Saint Longis, Rue Saint Jean", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.308181, + 46.069647 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTMKRKF2NVZ", + "ref": "TMKRKF2NVZ", + "name": "La Roche sur Foron, 397 Avenue Charles de Gaulle - 3422", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.132466, + 49.110885 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS9CX3BOM9Y", + "ref": "S9CX3BOM9Y", + "name": "Agneaux-Coutances, route de coutances -3744", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27761, + 45.753397 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQOHDGTS2IJ", + "ref": "QOHDGTS2IJ", + "name": "Faverges, Route d'Annecy / Les Boucheroz Sud -3033", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5494817, + 46.06298096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRZZVJ8N9E", + "ref": "LRZZVJ8N9E", + "name": "Scionzier, Avenue du Crozet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05098444, + 45.49638608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKFRAWCIG6H", + "ref": "KFRAWCIG6H", + "name": "Montmelian, Av. de Gresivaudan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.248697, + 45.393022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVFOHUPYC2O", + "ref": "VFOHUPYC2O", + "name": "La Cote Saint André, Avenue Aristide Briand", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.366808, + 45.269494 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKUPFNDHYBP", + "ref": "KUPFNDHYBP", + "name": "Saint Jean De Maurienne, 8 Rue du 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.34937411, + 45.341624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWMZPDCEPIA", + "ref": "WMZPDCEPIA", + "name": "St Etienne De St Geoirs, Route de Grenoble-Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.248697, + 45.393022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVFOHUPYC2O", + "ref": "VFOHUPYC2O", + "name": "La Cote Saint André, Avenue Aristide Briand", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14189899, + 45.87740129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY6BWAPE3KI", + "ref": "Y6BWAPE3KI", + "name": "Sevrier, 508 Route d'Albertville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.171991, + 48.188886 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHU0OZDLEWF", + "ref": "HU0OZDLEWF", + "name": "Saint-Meen-Le-Grand-Pasteur, Rue Louis Pasteur -3757", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35587164, + 48.35348355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKPINYLE999", + "ref": "KPINYLE999", + "name": "Saint Longis, Rue Saint Jean", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.771257, + 48.423309 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGRYOHUTHYB", + "ref": "GRYOHUTHYB", + "name": "Samoreau, rue de la Bernache -3202", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.712552, + 48.509481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEWMJNJSRJF", + "ref": "EWMJNJSRJF", + "name": "Lidl, Romilly-sur-Seine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.140941, + 48.955565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVU5BILOYOJ", + "ref": "VU5BILOYOJ", + "name": "Reuil-En-Brie-1945, Rue du 8 Mai 1945 -3742", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528645, + 48.678483 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PND7EXY8XAP", + "ref": "ND7EXY8XAP", + "name": "Boussy-Saint-Antoine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.712552, + 48.509481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEWMJNJSRJF", + "ref": "EWMJNJSRJF", + "name": "Lidl, Romilly-sur-Seine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528645, + 48.678483 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PND7EXY8XAP", + "ref": "ND7EXY8XAP", + "name": "Boussy-Saint-Antoine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528645, + 48.678483 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PND7EXY8XAP", + "ref": "ND7EXY8XAP", + "name": "Boussy-Saint-Antoine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.771257, + 48.423309 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGRYOHUTHYB", + "ref": "GRYOHUTHYB", + "name": "Samoreau, rue de la Bernache -3202", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.676408, + 48.86813 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY2ZMZANJDV", + "ref": "Y2ZMZANJDV", + "name": "St-Thibault-Vi, Avenue de la Courtillère -2685", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56127601, + 48.52366092 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMOFV72VTZQ", + "ref": "MOFV72VTZQ", + "name": "Pringy, rue de Melun", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.015265, + 48.561171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVIWAJNSDVO", + "ref": "VIWAJNSDVO", + "name": "Nangis, avenue du Général de Gaulle -3016", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35587164, + 48.35348355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKPINYLE999", + "ref": "KPINYLE999", + "name": "Saint Longis, Rue Saint Jean", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.914649, + 48.956825 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVWGLEPIVS9", + "ref": "VWGLEPIVS9", + "name": "Meaux-Victoire, avenue de la Victoire -3276", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.140941, + 48.955565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVU5BILOYOJ", + "ref": "VU5BILOYOJ", + "name": "Reuil-En-Brie-1945, Rue du 8 Mai 1945 -3742", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345496, + 48.70545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHTHA8SVPIE", + "ref": "HTHA8SVPIE", + "name": "Morangis, Avenue Charles de Gaulle -3204", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.140941, + 48.955565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVU5BILOYOJ", + "ref": "VU5BILOYOJ", + "name": "Reuil-En-Brie-1945, Rue du 8 Mai 1945 -3742", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35587164, + 48.35348355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKPINYLE999", + "ref": "KPINYLE999", + "name": "Saint Longis, Rue Saint Jean", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.132466, + 49.110885 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS9CX3BOM9Y", + "ref": "S9CX3BOM9Y", + "name": "Agneaux-Coutances, route de coutances -3744", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.171991, + 48.188886 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHU0OZDLEWF", + "ref": "HU0OZDLEWF", + "name": "Saint-Meen-Le-Grand-Pasteur, Rue Louis Pasteur -3757", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35587164, + 48.35348355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKPINYLE999", + "ref": "KPINYLE999", + "name": "Saint Longis, Rue Saint Jean", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9030715, + 47.9039133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PO075GC5TMJ", + "ref": "O075GC5TMJ", + "name": "Orléans, 24 rue Bannier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8911351, + 47.8634133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PKWO1HTGHLY", + "ref": "KWO1HTGHLY", + "name": "Olivet, rue de L'Yvette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55017662, + 42.11461946 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRBUT3DZJBH", + "ref": "RBUT3DZJBH", + "name": "La Cave d'Aléria, Rue du Lustincone", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33735242, + 47.59067717 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN0WQCZ7HFA", + "ref": "N0WQCZ7HFA", + "name": "Blois, Parking Halle aux Grains", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6647, + 45.2798 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRFHEYE", + "ref": "RFHEYE", + "name": "Riom-ès-Montagnes, Station Groffal", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6647, + 45.2798 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRFHEYE", + "ref": "RFHEYE", + "name": "Riom-ès-Montagnes, Station Groffal", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33434301, + 47.58522112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP51P4TWAKQ", + "ref": "P51P4TWAKQ", + "name": "Blois, Parking Valin de la Vaissière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33434301, + 47.58522112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP51P4TWAKQ", + "ref": "P51P4TWAKQ", + "name": "Blois, Parking Valin de la Vaissière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32809978, + 47.58592667 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO3UK5WP8FZ", + "ref": "O3UK5WP8FZ", + "name": "Blois, Parking Château", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08563248, + 49.91905333 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPMNDERSS7U", + "ref": "PMNDERSS7U", + "name": "Avia Dieppe Marchand, Rue Louis de Bures", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65466, + 48.8443 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQZTHJZ", + "ref": "QZTHJZ", + "name": "Torcy, Star Food", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65466, + 48.8443 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQZTHJZ", + "ref": "QZTHJZ", + "name": "Torcy, Star Food", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84818957, + 45.71411313 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFXARSCAO92", + "ref": "FXARSCAO92", + "name": "Saint Fons, Rue Charles Martin", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84818957, + 45.71411313 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFXARSCAO92", + "ref": "FXARSCAO92", + "name": "Saint Fons, Rue Charles Martin", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84818957, + 45.71411313 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFXARSCAO92", + "ref": "FXARSCAO92", + "name": "Saint Fons, Rue Charles Martin", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83675553, + 43.83706131 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFCF3ZP09ZM", + "ref": "FCF3ZP09ZM", + "name": "Eyragues, Station Astouin", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83675553, + 43.83706131 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFCF3ZP09ZM", + "ref": "FCF3ZP09ZM", + "name": "Eyragues, Station Astouin", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83675553, + 43.83706131 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFCF3ZP09ZM", + "ref": "FCF3ZP09ZM", + "name": "Eyragues, Station Astouin", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08563248, + 49.91905333 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPMNDERSS7U", + "ref": "PMNDERSS7U", + "name": "Avia Dieppe Marchand, Rue Louis de Bures", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08563248, + 49.91905333 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPMNDERSS7U", + "ref": "PMNDERSS7U", + "name": "Avia Dieppe Marchand, Rue Louis de Bures", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08563248, + 49.91905333 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPMNDERSS7U", + "ref": "PMNDERSS7U", + "name": "Avia Dieppe Marchand, Rue Louis de Bures", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08563248, + 49.91905333 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPMNDERSS7U", + "ref": "PMNDERSS7U", + "name": "Avia Dieppe Marchand, Rue Louis de Bures", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08563248, + 49.91905333 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPMNDERSS7U", + "ref": "PMNDERSS7U", + "name": "Avia Dieppe Marchand, Rue Louis de Bures", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03399435, + 42.78322046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAYWC7E3K5E", + "ref": "AYWC7E3K5E", + "name": "Le Barcarès, Station Montaner", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03399435, + 42.78322046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAYWC7E3K5E", + "ref": "AYWC7E3K5E", + "name": "Le Barcarès, Station Montaner", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17950063, + 49.39504655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK5OWM91ZVL", + "ref": "K5OWM91ZVL", + "name": "Franqueville-Saint-Pierre, Station U", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32809978, + 47.58592667 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO3UK5WP8FZ", + "ref": "O3UK5WP8FZ", + "name": "Blois, Parking Château", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33735242, + 47.59067717 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN0WQCZ7HFA", + "ref": "N0WQCZ7HFA", + "name": "Blois, Parking Halle aux Grains", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.86353, + 49.4637 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRCMPVP", + "ref": "RCMPVP", + "name": "Longueil-Annel, De Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.891665, + 42.740108 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDN0FDTWVO7", + "ref": "DN0FDTWVO7", + "name": "Perpignan, Avenue du Languedoc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13365823, + 49.41753476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBM4NFEKPJ", + "ref": "ZBM4NFEKPJ", + "name": "Bonsecours, Super U", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13365823, + 49.41753476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBM4NFEKPJ", + "ref": "ZBM4NFEKPJ", + "name": "Bonsecours, Super U", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13365823, + 49.41753476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBM4NFEKPJ", + "ref": "ZBM4NFEKPJ", + "name": "Bonsecours, Super U", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13365823, + 49.41753476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBM4NFEKPJ", + "ref": "ZBM4NFEKPJ", + "name": "Bonsecours, Super U", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13365823, + 49.41753476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBM4NFEKPJ", + "ref": "ZBM4NFEKPJ", + "name": "Bonsecours, Super U", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13365823, + 49.41753476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBM4NFEKPJ", + "ref": "ZBM4NFEKPJ", + "name": "Bonsecours, Super U", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.62082928, + 49.47632985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBPU0QLAYHU", + "ref": "BPU0QLAYHU", + "name": "Super U Bricquebec, 39 Route de Valognes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.62082928, + 49.47632985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBPU0QLAYHU", + "ref": "BPU0QLAYHU", + "name": "Super U Bricquebec, 39 Route de Valognes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.62082928, + 49.47632985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBPU0QLAYHU", + "ref": "BPU0QLAYHU", + "name": "Super U Bricquebec, 39 Route de Valognes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.62082928, + 49.47632985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBPU0QLAYHU", + "ref": "BPU0QLAYHU", + "name": "Super U Bricquebec, 39 Route de Valognes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7385053, + 45.8815474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEYTZ38P6RI", + "ref": "EYTZ38P6RI", + "name": "Chabanais, Super U", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7385053, + 45.8815474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEYTZ38P6RI", + "ref": "EYTZ38P6RI", + "name": "Chabanais, Super U", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7162002, + 47.20721543 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMGDPUMKMC1", + "ref": "MGDPUMKMC1", + "name": "Chemillé en Anjou, Rue du Chal", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7162002, + 47.20721543 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMGDPUMKMC1", + "ref": "MGDPUMKMC1", + "name": "Chemillé en Anjou, Rue du Chal", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7162002, + 47.20721543 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMGDPUMKMC1", + "ref": "MGDPUMKMC1", + "name": "Chemillé en Anjou, Rue du Chal", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7162002, + 47.20721543 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMGDPUMKMC1", + "ref": "MGDPUMKMC1", + "name": "Chemillé en Anjou, Rue du Chal", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.435828, + 47.42967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFSNNG1M2HO", + "ref": "FSNNG1M2HO", + "name": "Le Controis-en-Sologne, Rue de Cheverny", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.435828, + 47.42967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFSNNG1M2HO", + "ref": "FSNNG1M2HO", + "name": "Le Controis-en-Sologne, Rue de Cheverny", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.435828, + 47.42967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFSNNG1M2HO", + "ref": "FSNNG1M2HO", + "name": "Le Controis-en-Sologne, Rue de Cheverny", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13365823, + 49.41753476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBM4NFEKPJ", + "ref": "ZBM4NFEKPJ", + "name": "Bonsecours, Super U", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82799104, + 48.61325703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS4WKO92WF7", + "ref": "S4WKO92WF7", + "name": "Binic-Étables-sur-Mer, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82799104, + 48.61325703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS4WKO92WF7", + "ref": "S4WKO92WF7", + "name": "Binic-Étables-sur-Mer, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.722233, + 48.611211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPZKKDSGJXT", + "ref": "PZKKDSGJXT", + "name": "Schiltigheim, rue René Laennec", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.891665, + 42.740108 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDN0FDTWVO7", + "ref": "DN0FDTWVO7", + "name": "Perpignan, Avenue du Languedoc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.416289, + 46.330147 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDEGS0UBYCI", + "ref": "DEGS0UBYCI", + "name": "Niort, Steco", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.416289, + 46.330147 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDEGS0UBYCI", + "ref": "DEGS0UBYCI", + "name": "Niort, Steco", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.416289, + 46.330147 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDEGS0UBYCI", + "ref": "DEGS0UBYCI", + "name": "Niort, Steco", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.416289, + 46.330147 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDEGS0UBYCI", + "ref": "DEGS0UBYCI", + "name": "Niort, Steco", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.722233, + 48.611211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPZKKDSGJXT", + "ref": "PZKKDSGJXT", + "name": "Schiltigheim, rue René Laennec", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.722233, + 48.611211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPZKKDSGJXT", + "ref": "PZKKDSGJXT", + "name": "Schiltigheim, rue René Laennec", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.722233, + 48.611211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPZKKDSGJXT", + "ref": "PZKKDSGJXT", + "name": "Schiltigheim, rue René Laennec", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58512547, + 49.05670757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGXZPR6RW7D", + "ref": "GXZPR6RW7D", + "name": "Sturzelbronn", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82799104, + 48.61325703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS4WKO92WF7", + "ref": "S4WKO92WF7", + "name": "Binic-Étables-sur-Mer, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58512547, + 49.05670757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGXZPR6RW7D", + "ref": "GXZPR6RW7D", + "name": "Sturzelbronn", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75301, + 48.8249 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFATVBU", + "ref": "FATVBU", + "name": "Schweighouse-sur-Moder, Suez", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75301, + 48.8249 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFATVBU", + "ref": "FATVBU", + "name": "Schweighouse-sur-Moder, Suez", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75301, + 48.8249 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFATVBU", + "ref": "FATVBU", + "name": "Schweighouse-sur-Moder, Suez", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75301, + 48.8249 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFATVBU", + "ref": "FATVBU", + "name": "Schweighouse-sur-Moder, Suez", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82799104, + 48.61325703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS4WKO92WF7", + "ref": "S4WKO92WF7", + "name": "Binic-Étables-sur-Mer, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82799104, + 48.61325703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS4WKO92WF7", + "ref": "S4WKO92WF7", + "name": "Binic-Étables-sur-Mer, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82799104, + 48.61325703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS4WKO92WF7", + "ref": "S4WKO92WF7", + "name": "Binic-Étables-sur-Mer, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9670507, + 46.10233755 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRB8VUBDF3E", + "ref": "RB8VUBDF3E", + "name": "Saint-Germain-Lespinasse, Rue de Persigny", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9670507, + 46.10233755 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRB8VUBDF3E", + "ref": "RB8VUBDF3E", + "name": "Saint-Germain-Lespinasse, Rue de Persigny", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47332648, + -21.3245085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAK6LDZLLUO", + "ref": "AK6LDZLLUO", + "name": "St Denis, JCA", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47332648, + -21.3245085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAK6LDZLLUO", + "ref": "AK6LDZLLUO", + "name": "St Denis, JCA", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09615459, + 44.13769312 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLDO26AVCKK", + "ref": "LDO26AVCKK", + "name": "Skoda Alès Laganier, boulevard Charles Péguy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856848, + 45.505937 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSOKSVEUQOF", + "ref": "SOKSVEUQOF", + "name": "Vienne, Smile", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856848, + 45.505937 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSOKSVEUQOF", + "ref": "SOKSVEUQOF", + "name": "Vienne, Smile", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.527067, + 43.171142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWXCAUXDWQZ", + "ref": "WXCAUXDWQZ", + "name": "Cavalaire, Route nationale", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.527067, + 43.171142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWXCAUXDWQZ", + "ref": "WXCAUXDWQZ", + "name": "Cavalaire, Route nationale", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.527067, + 43.171142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWXCAUXDWQZ", + "ref": "WXCAUXDWQZ", + "name": "Cavalaire, Route nationale", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.527067, + 43.171142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWXCAUXDWQZ", + "ref": "WXCAUXDWQZ", + "name": "Cavalaire, Route nationale", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.44710048, + -21.3238889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEPSOXWJL5C", + "ref": "EPSOXWJL5C", + "name": "OLA Energy Pierrefonds Réunion, Parking", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.44710048, + -21.3238889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEPSOXWJL5C", + "ref": "EPSOXWJL5C", + "name": "OLA Energy Pierrefonds Réunion, Parking", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.44710048, + -21.3238889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEPSOXWJL5C", + "ref": "EPSOXWJL5C", + "name": "OLA Energy Pierrefonds Réunion, Parking", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.44710048, + -21.3238889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEPSOXWJL5C", + "ref": "EPSOXWJL5C", + "name": "OLA Energy Pierrefonds Réunion, Parking", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.44710048, + -21.3238889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEPSOXWJL5C", + "ref": "EPSOXWJL5C", + "name": "OLA Energy Pierrefonds Réunion, Parking", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.44710048, + -21.3238889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEPSOXWJL5C", + "ref": "EPSOXWJL5C", + "name": "OLA Energy Pierrefonds Réunion, Parking", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11762293, + 45.89946517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHWIOS76HPC", + "ref": "HWIOS76HPC", + "name": "Anncey, Banque Laydernier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11762293, + 45.89946517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHWIOS76HPC", + "ref": "HWIOS76HPC", + "name": "Anncey, Banque Laydernier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.698357, + 43.444467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POMEDAZRPPK", + "ref": "OMEDAZRPPK", + "name": "Puget-sur-Argens, Société Joseph COSTAMAGNA", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.698357, + 43.444467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POMEDAZRPPK", + "ref": "OMEDAZRPPK", + "name": "Puget-sur-Argens, Société Joseph COSTAMAGNA", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.698357, + 43.444467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POMEDAZRPPK", + "ref": "OMEDAZRPPK", + "name": "Puget-sur-Argens, Société Joseph COSTAMAGNA", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.698357, + 43.444467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POMEDAZRPPK", + "ref": "OMEDAZRPPK", + "name": "Puget-sur-Argens, Société Joseph COSTAMAGNA", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.39631194, + 45.25527961 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKD6VCY4UHY", + "ref": "KD6VCY4UHY", + "name": "Saint Julien Montdenis, SOREA", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.39631194, + 45.25527961 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKD6VCY4UHY", + "ref": "KD6VCY4UHY", + "name": "Saint Julien Montdenis, SOREA", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5681025, + 16.24180386 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBNCC1SH0T1", + "ref": "BNCC1SH0T1", + "name": "Baie Mahaut, Rue Henri Becquerel", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.78571, + 49.3543 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNEUNA", + "ref": "LNEUNA", + "name": "Lacroix Saint-Ouen, Rue Jules Ferry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74747, + 49.5406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMSPQBQ", + "ref": "MSPQBQ", + "name": "Ressons-sur-Matz, Rue du Moulin l'Heuillet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.78571, + 49.3543 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLNEUNA", + "ref": "LNEUNA", + "name": "Lacroix Saint-Ouen, Rue Jules Ferry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77651, + 49.3866 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVCFAXA", + "ref": "VCFAXA", + "name": "Jaux, Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77651, + 49.3866 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVCFAXA", + "ref": "VCFAXA", + "name": "Jaux, Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58555, + 49.5608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJZHDPB", + "ref": "JZHDPB", + "name": "Tricot, Rue Saint-Antoine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74747, + 49.5406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMSPQBQ", + "ref": "MSPQBQ", + "name": "Ressons-sur-Matz, Rue du Moulin l'Heuillet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90553, + 49.3464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBYSSRF", + "ref": "BYSSRF", + "name": "Saint-Jean-aux-Bois, Rue du Couvent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58555, + 49.5608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJZHDPB", + "ref": "JZHDPB", + "name": "Tricot, Rue Saint-Antoine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26296, + 50.1938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVDSBUE", + "ref": "VDSBUE", + "name": "Escaudoeuvres, rue d'En Bas", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.240314, + 45.59161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESNTDAUVON", + "ref": "ESNTDAUVON", + "name": "Bourgoin-Jallieu, rue Georges Charpak", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26296, + 50.1938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVDSBUE", + "ref": "VDSBUE", + "name": "Escaudoeuvres, rue d'En Bas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35787921, + 49.11970351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNEHR4REYA", + "ref": "KNEHR4REYA", + "name": "Silly-sur-Nied, Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35787921, + 49.11970351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNEHR4REYA", + "ref": "KNEHR4REYA", + "name": "Silly-sur-Nied, Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35787921, + 49.11970351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNEHR4REYA", + "ref": "KNEHR4REYA", + "name": "Silly-sur-Nied, Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35787921, + 49.11970351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNEHR4REYA", + "ref": "KNEHR4REYA", + "name": "Silly-sur-Nied, Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.240314, + 45.59161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESNTDAUVON", + "ref": "ESNTDAUVON", + "name": "Bourgoin-Jallieu, rue Georges Charpak", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.240314, + 45.59161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESNTDAUVON", + "ref": "ESNTDAUVON", + "name": "Bourgoin-Jallieu, rue Georges Charpak", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.240314, + 45.59161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESNTDAUVON", + "ref": "ESNTDAUVON", + "name": "Bourgoin-Jallieu, rue Georges Charpak", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.698357, + 43.444467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POMEDAZRPPK", + "ref": "OMEDAZRPPK", + "name": "Puget-sur-Argens, Société Joseph COSTAMAGNA", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.698357, + 43.444467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POMEDAZRPPK", + "ref": "OMEDAZRPPK", + "name": "Puget-sur-Argens, Société Joseph COSTAMAGNA", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.698357, + 43.444467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POMEDAZRPPK", + "ref": "OMEDAZRPPK", + "name": "Puget-sur-Argens, Société Joseph COSTAMAGNA", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.495491, + -20.895464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLI6JTMDSG0", + "ref": "LI6JTMDSG0", + "name": "St Denis, JCA", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.6346, + -20.9288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSPEEDYREUSUZ", + "ref": "Speedyreusuz", + "name": "Speedy Réunion, Sainte Suzanne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.6346, + -20.9288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSPEEDYREUSUZ", + "ref": "Speedyreusuz", + "name": "Speedy Réunion, Sainte Suzanne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.074826, + 49.114495 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTFJKXAUZJE", + "ref": "TFJKXAUZJE", + "name": "Speedy Sarreguemines, Rue du Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.074826, + 49.114495 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTFJKXAUZJE", + "ref": "TFJKXAUZJE", + "name": "Speedy Sarreguemines, Rue du Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59244163, + 43.06237424 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POGOEOW5UKX", + "ref": "OGOEOW5UKX", + "name": "Gourdan-Polignan, Sport 2000", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59244163, + 43.06237424 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POGOEOW5UKX", + "ref": "OGOEOW5UKX", + "name": "Gourdan-Polignan, Sport 2000", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.495491, + -20.895464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLI6JTMDSG0", + "ref": "LI6JTMDSG0", + "name": "St Denis, JCA", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.495491, + -20.895464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLI6JTMDSG0", + "ref": "LI6JTMDSG0", + "name": "St Denis, JCA", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.495491, + -20.895464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLI6JTMDSG0", + "ref": "LI6JTMDSG0", + "name": "St Denis, JCA", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.90284255, + 50.42002379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMJNXCMKMNM", + "ref": "MJNXCMKMNM", + "name": "Frameries, Sparkoh", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.495491, + -20.895464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLI6JTMDSG0", + "ref": "LI6JTMDSG0", + "name": "St Denis, JCA", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.495491, + -20.895464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLI6JTMDSG0", + "ref": "LI6JTMDSG0", + "name": "St Denis, JCA", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47332648, + -21.3245085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAK6LDZLLUO", + "ref": "AK6LDZLLUO", + "name": "St Denis, JCA", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47332648, + -21.3245085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAK6LDZLLUO", + "ref": "AK6LDZLLUO", + "name": "St Denis, JCA", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47332648, + -21.3245085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAK6LDZLLUO", + "ref": "AK6LDZLLUO", + "name": "St Denis, JCA", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.495491, + -20.895464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLI6JTMDSG0", + "ref": "LI6JTMDSG0", + "name": "St Denis, JCA", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.495491, + -20.895464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLI6JTMDSG0", + "ref": "LI6JTMDSG0", + "name": "St Denis, JCA", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47332648, + -21.3245085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAK6LDZLLUO", + "ref": "AK6LDZLLUO", + "name": "St Denis, JCA", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.90284255, + 50.42002379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMJNXCMKMNM", + "ref": "MJNXCMKMNM", + "name": "Frameries, Sparkoh", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.90284255, + 50.42002379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMJNXCMKMNM", + "ref": "MJNXCMKMNM", + "name": "Frameries, Sparkoh", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46482086, + -20.8928222 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGMHWFA6XWU", + "ref": "GMHWFA6XWU", + "name": "Société Marchande de Carburant, Saint-Denis", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13106762, + 44.43558016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF5YXGNA3QT", + "ref": "F5YXGNA3QT", + "name": "Samazan, rue Gutenberg", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95892, + 43.30517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBVLDH0AW95", + "ref": "BVLDH0AW95", + "name": "Castelnaudary, Société Rivière", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95892, + 43.30517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBVLDH0AW95", + "ref": "BVLDH0AW95", + "name": "Castelnaudary, Société Rivière", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95892, + 43.30517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBVLDH0AW95", + "ref": "BVLDH0AW95", + "name": "Castelnaudary, Société Rivière", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95892, + 43.30517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBVLDH0AW95", + "ref": "BVLDH0AW95", + "name": "Castelnaudary, Société Rivière", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95892, + 43.30517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBVLDH0AW95", + "ref": "BVLDH0AW95", + "name": "Castelnaudary, Société Rivière", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95892, + 43.30517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBVLDH0AW95", + "ref": "BVLDH0AW95", + "name": "Castelnaudary, Société Rivière", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13106762, + 44.43558016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF5YXGNA3QT", + "ref": "F5YXGNA3QT", + "name": "Samazan, rue Gutenberg", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13106762, + 44.43558016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF5YXGNA3QT", + "ref": "F5YXGNA3QT", + "name": "Samazan, rue Gutenberg", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13106762, + 44.43558016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF5YXGNA3QT", + "ref": "F5YXGNA3QT", + "name": "Samazan, rue Gutenberg", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.23984, + 47.9611 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKFCMGC", + "ref": "KFCMGC", + "name": "Soultzmatt, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13106762, + 44.43558016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF5YXGNA3QT", + "ref": "F5YXGNA3QT", + "name": "Samazan, rue Gutenberg", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13106762, + 44.43558016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF5YXGNA3QT", + "ref": "F5YXGNA3QT", + "name": "Samazan, rue Gutenberg", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.315211, + 46.61455 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUWNJODKKG1", + "ref": "UWNJODKKG1", + "name": "Poitiers, Avenue de la Loge", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.315211, + 46.61455 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUWNJODKKG1", + "ref": "UWNJODKKG1", + "name": "Poitiers, Avenue de la Loge", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09795, + 46.0745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMGREFT", + "ref": "MGREFT", + "name": "Vougy, Garage Sogemo", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.23131, + 47.8882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PREGTQN", + "ref": "REGTQN", + "name": "Soultz-Haut-Rhin, Rue de la Marne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.23131, + 47.8882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PREGTQN", + "ref": "REGTQN", + "name": "Soultz-Haut-Rhin, Rue de la Marne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.23984, + 47.9611 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKFCMGC", + "ref": "KFCMGC", + "name": "Soultzmatt, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.435828, + 47.42967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFSNNG1M2HO", + "ref": "FSNNG1M2HO", + "name": "Le Controis-en-Sologne, Rue de Cheverny", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.435828, + 47.42967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFSNNG1M2HO", + "ref": "FSNNG1M2HO", + "name": "Le Controis-en-Sologne, Rue de Cheverny", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.435828, + 47.42967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFSNNG1M2HO", + "ref": "FSNNG1M2HO", + "name": "Le Controis-en-Sologne, Rue de Cheverny", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0456, + 46.7954 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRZTXNK", + "ref": "RZTXNK", + "name": "Saint-Jean-de-Monts, Super U", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.60640752, + 48.65596157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH8FAY4PGG0", + "ref": "H8FAY4PGG0", + "name": "Truchtersheim, Super U", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.60640752, + 48.65596157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH8FAY4PGG0", + "ref": "H8FAY4PGG0", + "name": "Truchtersheim, Super U", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.60640752, + 48.65596157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH8FAY4PGG0", + "ref": "H8FAY4PGG0", + "name": "Truchtersheim, Super U", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.60640752, + 48.65596157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH8FAY4PGG0", + "ref": "H8FAY4PGG0", + "name": "Truchtersheim, Super U", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.60640752, + 48.65596157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH8FAY4PGG0", + "ref": "H8FAY4PGG0", + "name": "Truchtersheim, Super U", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.379421, + 47.411066 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO0FFV7GKYB", + "ref": "O0FFV7GKYB", + "name": "Ligné, Super U", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37949435, + 47.41108404 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKV9BI2KZM", + "ref": "AKV9BI2KZM", + "name": "Ligné, Super U", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71117147, + 48.6087136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFTM4TZJ6VT", + "ref": "FTM4TZJ6VT", + "name": "Schiltigheim, Chambre d'agriculture de Strasbourg", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71117147, + 48.6087136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFTM4TZJ6VT", + "ref": "FTM4TZJ6VT", + "name": "Schiltigheim, Chambre d'agriculture de Strasbourg", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71117147, + 48.6087136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFTM4TZJ6VT", + "ref": "FTM4TZJ6VT", + "name": "Schiltigheim, Chambre d'agriculture de Strasbourg", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71117147, + 48.6087136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFTM4TZJ6VT", + "ref": "FTM4TZJ6VT", + "name": "Schiltigheim, Chambre d'agriculture de Strasbourg", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71117147, + 48.6087136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFTM4TZJ6VT", + "ref": "FTM4TZJ6VT", + "name": "Schiltigheim, Chambre d'agriculture de Strasbourg", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.00763121, + 49.229863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIGQCVM7GLR", + "ref": "IGQCVM7GLR", + "name": "Joeuf, Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.939175, + 49.249274 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPX08E5STVI", + "ref": "PX08E5STVI", + "name": "ST2B, Briey", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.00763121, + 49.229863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIGQCVM7GLR", + "ref": "IGQCVM7GLR", + "name": "Joeuf, Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.939175, + 49.249274 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPX08E5STVI", + "ref": "PX08E5STVI", + "name": "ST2B, Briey", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.7846053, + 49.30808485 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDFIRKWXAQF", + "ref": "DFIRKWXAQF", + "name": "Mairie, Piennes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.7846053, + 49.30808485 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDFIRKWXAQF", + "ref": "DFIRKWXAQF", + "name": "Mairie, Piennes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88284912, + 49.15722184 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS2TJTN9BOP", + "ref": "S2TJTN9BOP", + "name": "Jarny, Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.60640752, + 48.65596157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH8FAY4PGG0", + "ref": "H8FAY4PGG0", + "name": "Truchtersheim, Super U", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.60640752, + 48.65596157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH8FAY4PGG0", + "ref": "H8FAY4PGG0", + "name": "Truchtersheim, Super U", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.60640752, + 48.65596157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH8FAY4PGG0", + "ref": "H8FAY4PGG0", + "name": "Truchtersheim, Super U", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.972122, + 45.118791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISKTTRBAZEKD", + "ref": "LLISKTTRBAZEKD", + "name": "Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.972122, + 45.118791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISKTTRBAZEKD", + "ref": "LLISKTTRBAZEKD", + "name": "Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.973404, + 45.118511 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISKVAE12QGET", + "ref": "LLISKVAE12QGET", + "name": "McDonald's", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.973404, + 45.118511 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISKVAE12QGET", + "ref": "LLISKVAE12QGET", + "name": "McDonald's", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.972122, + 45.118791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISKTTRBAZEKD", + "ref": "LLISKTTRBAZEKD", + "name": "Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.973404, + 45.118511 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISKVAE12QGET", + "ref": "LLISKVAE12QGET", + "name": "McDonald's", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.972122, + 45.118791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISKTTRBAZEKD", + "ref": "LLISKTTRBAZEKD", + "name": "Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.973404, + 45.118511 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISKVAE12QGET", + "ref": "LLISKVAE12QGET", + "name": "McDonald's", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.972122, + 45.118791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISKTTRBAZEKD", + "ref": "LLISKTTRBAZEKD", + "name": "Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.972122, + 45.118791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISKTTRBAZEKD", + "ref": "LLISKTTRBAZEKD", + "name": "Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.692802, + 48.092451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRD8XXQESXZ", + "ref": "RD8XXQESXZ", + "name": "St Jacques de la Lande, Super U", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.973404, + 45.118511 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISKVAE12QGET", + "ref": "LLISKVAE12QGET", + "name": "McDonald's", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.973404, + 45.118511 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ2IG4DK1XFQ8", + "ref": "LLJ2IG4DK1XFQ8", + "name": "Biocoop Saint Donat", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.973404, + 45.118511 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ2IG4DK1XFQ8", + "ref": "LLJ2IG4DK1XFQ8", + "name": "Biocoop Saint Donat", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.973404, + 45.118511 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISKVAE12QGET", + "ref": "LLISKVAE12QGET", + "name": "McDonald's", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.692802, + 48.092451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRD8XXQESXZ", + "ref": "RD8XXQESXZ", + "name": "St Jacques de la Lande, Super U", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.692802, + 48.092451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRD8XXQESXZ", + "ref": "RD8XXQESXZ", + "name": "St Jacques de la Lande, Super U", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.692802, + 48.092451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRD8XXQESXZ", + "ref": "RD8XXQESXZ", + "name": "St Jacques de la Lande, Super U", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.692802, + 48.092451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRD8XXQESXZ", + "ref": "RD8XXQESXZ", + "name": "St Jacques de la Lande, Super U", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.89541815, + 49.36933788 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POBVHYS3K6X", + "ref": "OBVHYS3K6X", + "name": "Mairie, Audun le Roman", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.89541815, + 49.36933788 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POBVHYS3K6X", + "ref": "OBVHYS3K6X", + "name": "Mairie, Audun le Roman", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88284912, + 49.15722184 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS2TJTN9BOP", + "ref": "S2TJTN9BOP", + "name": "Jarny, Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.24894131, + 48.70500749 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZRBGLBCPQH", + "ref": "ZRBGLBCPQH", + "name": "ESSEY LES NANCY , Allée du Midi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDXBVSFWM2", + "ref": "UDXBVSFWM2", + "name": "Seraing, Technifutur", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDXBVSFWM2", + "ref": "UDXBVSFWM2", + "name": "Seraing, Technifutur", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDXBVSFWM2", + "ref": "UDXBVSFWM2", + "name": "Seraing, Technifutur", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDXBVSFWM2", + "ref": "UDXBVSFWM2", + "name": "Seraing, Technifutur", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDXBVSFWM2", + "ref": "UDXBVSFWM2", + "name": "Seraing, Technifutur", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDXBVSFWM2", + "ref": "UDXBVSFWM2", + "name": "Seraing, Technifutur", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDXBVSFWM2", + "ref": "UDXBVSFWM2", + "name": "Seraing, Technifutur", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDXBVSFWM2", + "ref": "UDXBVSFWM2", + "name": "Seraing, Technifutur", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.24894131, + 48.70500749 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZRBGLBCPQH", + "ref": "ZRBGLBCPQH", + "name": "ESSEY LES NANCY , Allée du Midi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDXBVSFWM2", + "ref": "UDXBVSFWM2", + "name": "Seraing, Technifutur", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03733, + 46.1158 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZXMREG", + "ref": "ZXMREG", + "name": "Viry, Rue des Coulerins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03733, + 46.1158 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZXMREG", + "ref": "ZXMREG", + "name": "Viry, Rue des Coulerins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.314226, + 47.495009 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISUB73Z14R3J", + "ref": "LLISUB73Z14R3J", + "name": "Ferrette, Parking Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.37103894, + 48.1594372 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIN9J8TI3OT4L", + "ref": "LLIN9J8TI3OT4L", + "name": "Ostheim, Place des cigognes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.314226, + 47.495009 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISUB73Z14R3J", + "ref": "LLISUB73Z14R3J", + "name": "Ferrette, Parking Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.14457463, + 47.7409078 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIN9MY4N14O9S", + "ref": "LLIN9MY4N14O9S", + "name": "Burnhaupt le Haut, Aire de Covoiturage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.14457463, + 47.7409078 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIN9MY4N14O9S", + "ref": "LLIN9MY4N14O9S", + "name": "Burnhaupt le Haut, Aire de Covoiturage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2943012, + 48.07277426 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISTZ4SN1K16K", + "ref": "LLISTZ4SN1K16K", + "name": "Wintzenheim, Place des fêtes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDXBVSFWM2", + "ref": "UDXBVSFWM2", + "name": "Seraing, Technifutur", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.397006, + 49.867493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA2XEZHCMFS", + "ref": "A2XEZHCMFS", + "name": "Glisy, All. de Maître Zacharius", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.220014, + 47.723598 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMOCQKWNTWR", + "ref": "MOCQKWNTWR", + "name": "Heimsbrunn, Rue de la Forêt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33244097, + 43.22653036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHCRKSYJVIC", + "ref": "HCRKSYJVIC", + "name": "Carcassonne, Tryba", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.220014, + 47.723598 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMOCQKWNTWR", + "ref": "MOCQKWNTWR", + "name": "Heimsbrunn, Rue de la Forêt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359625, + 48.587957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLD6WOWIWGQ", + "ref": "LD6WOWIWGQ", + "name": "La Ferté Macé, Rue du Quatorze Juillet", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359625, + 48.587957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLD6WOWIWGQ", + "ref": "LD6WOWIWGQ", + "name": "La Ferté Macé, Rue du Quatorze Juillet", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359625, + 48.587957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLD6WOWIWGQ", + "ref": "LD6WOWIWGQ", + "name": "La Ferté Macé, Rue du Quatorze Juillet", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359625, + 48.587957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLD6WOWIWGQ", + "ref": "LD6WOWIWGQ", + "name": "La Ferté Macé, Rue du Quatorze Juillet", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359625, + 48.587957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLD6WOWIWGQ", + "ref": "LD6WOWIWGQ", + "name": "La Ferté Macé, Rue du Quatorze Juillet", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359625, + 48.587957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLD6WOWIWGQ", + "ref": "LD6WOWIWGQ", + "name": "La Ferté Macé, Rue du Quatorze Juillet", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33244097, + 43.22653036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHCRKSYJVIC", + "ref": "HCRKSYJVIC", + "name": "Carcassonne, Tryba", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.713675, + 43.419199 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKDHRHLIQ98", + "ref": "KDHRHLIQ98", + "name": "Sète exploitation, Auto", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.397006, + 49.867493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA2XEZHCMFS", + "ref": "A2XEZHCMFS", + "name": "Glisy, All. de Maître Zacharius", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.713675, + 43.419199 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKDHRHLIQ98", + "ref": "KDHRHLIQ98", + "name": "Sète exploitation, Auto", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45557, + 48.2593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZDEWXP", + "ref": "ZDEWXP", + "name": "Sélestat, Sainte Foy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45422, + 48.2615 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDZVENY", + "ref": "DZVENY", + "name": "Sélestat, Albert Schweitzer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-12", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45422, + 48.2615 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDZVENY", + "ref": "DZVENY", + "name": "Sélestat, Albert Schweitzer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45557, + 48.2593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZDEWXP", + "ref": "ZDEWXP", + "name": "Sélestat, Sainte Foy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-12", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.00039, + 43.134229 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSSIKRFQLWS", + "ref": "SSIKRFQLWS", + "name": "La Valette du Var, Avenue Eole", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.00039, + 43.134229 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSSIKRFQLWS", + "ref": "SSIKRFQLWS", + "name": "La Valette du Var, Avenue Eole", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.866422, + 50.102328 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQRYOZUKF31", + "ref": "QRYOZUKF31", + "name": "Abbeville, rue Ventose", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0456, + 46.7954 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRZTXNK", + "ref": "RZTXNK", + "name": "Saint-Jean-de-Monts, Super U", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0456, + 46.7954 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRZTXNK", + "ref": "RZTXNK", + "name": "Saint-Jean-de-Monts, Super U", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.435828, + 47.42967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFSNNG1M2HO", + "ref": "FSNNG1M2HO", + "name": "Le Controis-en-Sologne, Rue de Cheverny", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0456, + 46.7954 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRZTXNK", + "ref": "RZTXNK", + "name": "Saint-Jean-de-Monts, Super U", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07607, + 45.9914 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJ9YJ5MPTD", + "ref": "RJ9YJ5MPTD", + "name": "Fouras, Super U", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29854, + 43.764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSUPERUGREN", + "ref": "SuperUgren", + "name": "Super U Grenade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29854, + 43.764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSUPERUGREN", + "ref": "SuperUgren", + "name": "Super U Grenade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408285, + 48.436954 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDXVCIGXZXW", + "ref": "DXVCIGXZXW", + "name": "Super U Guipavas, Guipavas", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408285, + 48.436954 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDXVCIGXZXW", + "ref": "DXVCIGXZXW", + "name": "Super U Guipavas, Guipavas", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408285, + 48.436954 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDXVCIGXZXW", + "ref": "DXVCIGXZXW", + "name": "Super U Guipavas, Guipavas", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408285, + 48.436954 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDXVCIGXZXW", + "ref": "DXVCIGXZXW", + "name": "Super U Guipavas, Guipavas", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76347422, + 48.63041976 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGEKQLCBJQX", + "ref": "GEKQLCBJQX", + "name": "Hoenheim, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76347422, + 48.63041976 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGEKQLCBJQX", + "ref": "GEKQLCBJQX", + "name": "Hoenheim, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76347422, + 48.63041976 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGEKQLCBJQX", + "ref": "GEKQLCBJQX", + "name": "Hoenheim, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76347422, + 48.63041976 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGEKQLCBJQX", + "ref": "GEKQLCBJQX", + "name": "Hoenheim, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15731791, + 49.31773016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJBSMDYN6DU", + "ref": "JBSMDYN6DU", + "name": "Igoville, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15731791, + 49.31773016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJBSMDYN6DU", + "ref": "JBSMDYN6DU", + "name": "Igoville, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15731791, + 49.31773016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJBSMDYN6DU", + "ref": "JBSMDYN6DU", + "name": "Igoville, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15731791, + 49.31773016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJBSMDYN6DU", + "ref": "JBSMDYN6DU", + "name": "Igoville, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15731791, + 49.31773016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJBSMDYN6DU", + "ref": "JBSMDYN6DU", + "name": "Igoville, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15731791, + 49.31773016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJBSMDYN6DU", + "ref": "JBSMDYN6DU", + "name": "Igoville, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.63326643, + 42.67651986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGU4YLMRYYZ", + "ref": "GU4YLMRYYZ", + "name": "Ille-sur-Têt, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.63326643, + 42.67651986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGU4YLMRYYZ", + "ref": "GU4YLMRYYZ", + "name": "Ille-sur-Têt, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07607, + 45.9914 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJ9YJ5MPTD", + "ref": "RJ9YJ5MPTD", + "name": "Fouras, Super U", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32232101, + 45.81269757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAJGBRQMTY", + "ref": "LAJGBRQMTY", + "name": "Feytiat, Super U", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32232101, + 45.81269757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAJGBRQMTY", + "ref": "LAJGBRQMTY", + "name": "Feytiat, Super U", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15869225, + 49.0263993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEYFAUZGMKE", + "ref": "EYFAUZGMKE", + "name": "Evreux, Boulevard Pasteur", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.435828, + 47.42967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFSNNG1M2HO", + "ref": "FSNNG1M2HO", + "name": "Le Controis-en-Sologne, Rue de Cheverny", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15869225, + 49.0263993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEYFAUZGMKE", + "ref": "EYFAUZGMKE", + "name": "Evreux, Boulevard Pasteur", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15869225, + 49.0263993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEYFAUZGMKE", + "ref": "EYFAUZGMKE", + "name": "Evreux, Boulevard Pasteur", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15869225, + 49.0263993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEYFAUZGMKE", + "ref": "EYFAUZGMKE", + "name": "Evreux, Boulevard Pasteur", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1576805, + 49.0259613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCAVUWXJOAT", + "ref": "CAVUWXJOAT", + "name": "Evreux, Place de la République", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15869225, + 49.0263993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEYFAUZGMKE", + "ref": "EYFAUZGMKE", + "name": "Evreux, Boulevard Pasteur", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15869225, + 49.0263993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEYFAUZGMKE", + "ref": "EYFAUZGMKE", + "name": "Evreux, Boulevard Pasteur", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1576805, + 49.0259613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCAVUWXJOAT", + "ref": "CAVUWXJOAT", + "name": "Evreux, Place de la République", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15869225, + 49.0263993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEYFAUZGMKE", + "ref": "EYFAUZGMKE", + "name": "Evreux, Boulevard Pasteur", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32232101, + 45.81269757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAJGBRQMTY", + "ref": "LAJGBRQMTY", + "name": "Feytiat, Super U", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1576805, + 49.0259613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCAVUWXJOAT", + "ref": "CAVUWXJOAT", + "name": "Evreux, Place de la République", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15869225, + 49.0263993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEYFAUZGMKE", + "ref": "EYFAUZGMKE", + "name": "Evreux, Boulevard Pasteur", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1576805, + 49.0259613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCAVUWXJOAT", + "ref": "CAVUWXJOAT", + "name": "Evreux, Place de la République", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32232101, + 45.81269757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAJGBRQMTY", + "ref": "LAJGBRQMTY", + "name": "Feytiat, Super U", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32232101, + 45.81269757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAJGBRQMTY", + "ref": "LAJGBRQMTY", + "name": "Feytiat, Super U", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32232101, + 45.81269757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAJGBRQMTY", + "ref": "LAJGBRQMTY", + "name": "Feytiat, Super U", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32232101, + 45.81269757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAJGBRQMTY", + "ref": "LAJGBRQMTY", + "name": "Feytiat, Super U", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32232101, + 45.81269757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAJGBRQMTY", + "ref": "LAJGBRQMTY", + "name": "Feytiat, Super U", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.63326643, + 42.67651986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGU4YLMRYYZ", + "ref": "GU4YLMRYYZ", + "name": "Ille-sur-Têt, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.63326643, + 42.67651986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGU4YLMRYYZ", + "ref": "GU4YLMRYYZ", + "name": "Ille-sur-Têt, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.63326643, + 42.67651986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGU4YLMRYYZ", + "ref": "GU4YLMRYYZ", + "name": "Ille-sur-Têt, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKFOCWHZH9", + "ref": "YKFOCWHZH9", + "name": "Sainte-Geneviève, Cc Le Chateau", + "capacity": "15", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.377489, + 48.381631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZGTKMH9RNZ", + "ref": "ZGTKMH9RNZ", + "name": "Super U Plougastel, avenue Charles de Gaulle", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.377489, + 48.381631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZGTKMH9RNZ", + "ref": "ZGTKMH9RNZ", + "name": "Super U Plougastel, avenue Charles de Gaulle", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKFOCWHZH9", + "ref": "YKFOCWHZH9", + "name": "Sainte-Geneviève, Cc Le Chateau", + "capacity": "15", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKFOCWHZH9", + "ref": "YKFOCWHZH9", + "name": "Sainte-Geneviève, Cc Le Chateau", + "capacity": "15", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKFOCWHZH9", + "ref": "YKFOCWHZH9", + "name": "Sainte-Geneviève, Cc Le Chateau", + "capacity": "15", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKFOCWHZH9", + "ref": "YKFOCWHZH9", + "name": "Sainte-Geneviève, Cc Le Chateau", + "capacity": "15", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKFOCWHZH9", + "ref": "YKFOCWHZH9", + "name": "Sainte-Geneviève, Cc Le Chateau", + "capacity": "15", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKFOCWHZH9", + "ref": "YKFOCWHZH9", + "name": "Sainte-Geneviève, Cc Le Chateau", + "capacity": "15", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKFOCWHZH9", + "ref": "YKFOCWHZH9", + "name": "Sainte-Geneviève, Cc Le Chateau", + "capacity": "15", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.377489, + 48.381631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZGTKMH9RNZ", + "ref": "ZGTKMH9RNZ", + "name": "Super U Plougastel, avenue Charles de Gaulle", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKFOCWHZH9", + "ref": "YKFOCWHZH9", + "name": "Sainte-Geneviève, Cc Le Chateau", + "capacity": "15", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKFOCWHZH9", + "ref": "YKFOCWHZH9", + "name": "Sainte-Geneviève, Cc Le Chateau", + "capacity": "15", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKFOCWHZH9", + "ref": "YKFOCWHZH9", + "name": "Sainte-Geneviève, Cc Le Chateau", + "capacity": "15", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKFOCWHZH9", + "ref": "YKFOCWHZH9", + "name": "Sainte-Geneviève, Cc Le Chateau", + "capacity": "15", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKFOCWHZH9", + "ref": "YKFOCWHZH9", + "name": "Sainte-Geneviève, Cc Le Chateau", + "capacity": "15", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKFOCWHZH9", + "ref": "YKFOCWHZH9", + "name": "Sainte-Geneviève, Cc Le Chateau", + "capacity": "15", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKFOCWHZH9", + "ref": "YKFOCWHZH9", + "name": "Sainte-Geneviève, Cc Le Chateau", + "capacity": "15", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0456, + 46.7954 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRZTXNK", + "ref": "RZTXNK", + "name": "Saint-Jean-de-Monts, Super U", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.377489, + 48.381631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZGTKMH9RNZ", + "ref": "ZGTKMH9RNZ", + "name": "Super U Plougastel, avenue Charles de Gaulle", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.377489, + 48.381631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZGTKMH9RNZ", + "ref": "ZGTKMH9RNZ", + "name": "Super U Plougastel, avenue Charles de Gaulle", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.63326643, + 42.67651986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGU4YLMRYYZ", + "ref": "GU4YLMRYYZ", + "name": "Ille-sur-Têt, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05962027, + 45.85201083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPNTCPDQEGB", + "ref": "PNTCPDQEGB", + "name": "Montluel, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2638, + 43.6008 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPXWENV", + "ref": "PXWENV", + "name": "Super U Léguevin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2638, + 43.6008 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPXWENV", + "ref": "PXWENV", + "name": "Super U Léguevin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59336481, + 45.17755777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAYP7STRGYF", + "ref": "AYP7STRGYF", + "name": "Malemort, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59336481, + 45.17755777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAYP7STRGYF", + "ref": "AYP7STRGYF", + "name": "Malemort, Super U", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59336481, + 45.17755777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAYP7STRGYF", + "ref": "AYP7STRGYF", + "name": "Malemort, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59336481, + 45.17755777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAYP7STRGYF", + "ref": "AYP7STRGYF", + "name": "Malemort, Super U", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.69559, + 43.6418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKEQHCV", + "ref": "KEQHCV", + "name": "Super U Montarnaud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.69559, + 43.6418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKEQHCV", + "ref": "KEQHCV", + "name": "Super U Montarnaud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05962027, + 45.85201083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPNTCPDQEGB", + "ref": "PNTCPDQEGB", + "name": "Montluel, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.377489, + 48.381631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZGTKMH9RNZ", + "ref": "ZGTKMH9RNZ", + "name": "Super U Plougastel, avenue Charles de Gaulle", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05962027, + 45.85201083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPNTCPDQEGB", + "ref": "PNTCPDQEGB", + "name": "Montluel, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05962027, + 45.85201083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPNTCPDQEGB", + "ref": "PNTCPDQEGB", + "name": "Montluel, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1849276, + 45.66470871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFAHNNHQAL5", + "ref": "FAHNNHQAL5", + "name": "Nexon, Super U", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1849276, + 45.66470871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFAHNNHQAL5", + "ref": "FAHNNHQAL5", + "name": "Nexon, Super U", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1849276, + 45.66470871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFAHNNHQAL5", + "ref": "FAHNNHQAL5", + "name": "Nexon, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1849276, + 45.66470871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFAHNNHQAL5", + "ref": "FAHNNHQAL5", + "name": "Nexon, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1849276, + 45.66470871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFAHNNHQAL5", + "ref": "FAHNNHQAL5", + "name": "Nexon, Super U", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1849276, + 45.66470871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFAHNNHQAL5", + "ref": "FAHNNHQAL5", + "name": "Nexon, Super U", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90553, + 49.3464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBYSSRF", + "ref": "BYSSRF", + "name": "Saint-Jean-aux-Bois, Rue du Couvent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8008, + 49.2982 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PECFJGR", + "ref": "ECFJGR", + "name": "Béthisy-Saint-Pierre, Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.101503, + 47.810705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIN9KDH82BXV2", + "ref": "LLIN9KDH82BXV2", + "name": "Thann, Place Joffre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.582926, + 47.591991 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUQMWXP1LTB", + "ref": "UQMWXP1LTB", + "name": "Huningue, Place De L'Ancien Hotel De Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.70929, + 49.1065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKTKBS", + "ref": "YKTKBS", + "name": "Saint-Avold, place du Marché", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69759, + 49.0829 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVALMONTMAIRIE", + "ref": "valmontmairie", + "name": "Valmont, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.704073, + 49.129777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSAKX7WKLW", + "ref": "VSAKX7WKLW", + "name": "Régie Municipale, Saint Avold", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65961, + 48.9365 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKVY9BPSSNH", + "ref": "KVY9BPSSNH", + "name": "Morhange, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.70933, + 49.1065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKTKBS", + "ref": "YKTKBS", + "name": "Saint-Avold, place du Marché", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-31", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65961, + 48.9365 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKVY9BPSSNH", + "ref": "KVY9BPSSNH", + "name": "Morhange, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96797, + 48.2822 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZWRJVV", + "ref": "ZWRJVV", + "name": "Saint-Dié, Chemin du Coucheux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96797, + 48.2822 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZWRJVV", + "ref": "ZWRJVV", + "name": "Saint-Dié, Chemin du Coucheux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94854, + 48.288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWFAJKQ", + "ref": "WFAJKQ", + "name": "Saint Dié, rue des Capucins", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.95026, + 48.2851 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSYZPW", + "ref": "ZSYZPW", + "name": "Saint-Dié, Quai du Maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94854, + 48.288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWFAJKQ", + "ref": "WFAJKQ", + "name": "Saint Dié, rue des Capucins", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.95026, + 48.2851 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSYZPW", + "ref": "ZSYZPW", + "name": "Saint-Dié, Quai du Maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94854, + 48.288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWFAJKQ", + "ref": "WFAJKQ", + "name": "Saint Dié, rue des Capucins", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.61108, + 48.0207 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSYMTCVEZGS", + "ref": "SYMTCVEZGS", + "name": "Saint-Étienne-lès-Remiremont, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.61108, + 48.0207 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSYMTCVEZGS", + "ref": "SYMTCVEZGS", + "name": "Saint-Étienne-lès-Remiremont, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95608, + 45.0524 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCRWPFJ", + "ref": "CRWPFJ", + "name": "Saint-Germain-Laprade, Garage Fraisse", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09035865, + 45.03417647 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCY1SUZNSHO", + "ref": "CY1SUZNSHO", + "name": "Coutras, ZI Eygreteau Public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09035865, + 45.03417647 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCY1SUZNSHO", + "ref": "CY1SUZNSHO", + "name": "Coutras, ZI Eygreteau Public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.28325956, + 45.07409411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEMXWMFSZZT", + "ref": "EMXWMFSZZT", + "name": "Saint-Just-de-Claix, Rue des Aros", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.68403, + 49.0758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFOLSCHVILLER", + "ref": "folschviller", + "name": "Folschviller, Poitou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.71039, + 49.1282 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRFSKEP", + "ref": "RFSKEP", + "name": "Saint-Avold, aire de covoiturage", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-31", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.71039, + 49.1282 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRFSKEP", + "ref": "RFSKEP", + "name": "Saint-Avold, aire de covoiturage", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.72042, + 49.0861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVALMONTGARE", + "ref": "valmontgare", + "name": "Valmont, Gare", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.71804, + 49.1669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCARLINGFRON", + "ref": "carlingfron", + "name": "Carling, Frontière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73917, + 49.1605 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLHOPITALGARE", + "ref": "lhopitalgare", + "name": "L'Hôpital, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.75110754, + 49.0355117 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV38WQLOKLK", + "ref": "V38WQLOKLK", + "name": "Lixing-lès-Saint-Avold, Rue de Metz", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.75110754, + 49.0355117 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV38WQLOKLK", + "ref": "V38WQLOKLK", + "name": "Lixing-lès-Saint-Avold, Rue de Metz", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.75110754, + 49.0355117 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV38WQLOKLK", + "ref": "V38WQLOKLK", + "name": "Lixing-lès-Saint-Avold, Rue de Metz", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.75110754, + 49.0355117 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV38WQLOKLK", + "ref": "V38WQLOKLK", + "name": "Lixing-lès-Saint-Avold, Rue de Metz", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.68992, + 49.1435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYVULR", + "ref": "MYVULR", + "name": "Saint-Avold, Zone Europort", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.68992, + 49.1435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYVULR", + "ref": "MYVULR", + "name": "Saint-Avold, Zone Europort", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.72042, + 49.0861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVALMONTGARE", + "ref": "valmontgare", + "name": "Valmont, Gare", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-11-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.71039, + 49.1282 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRFSKEP", + "ref": "RFSKEP", + "name": "Saint-Avold, aire de covoiturage", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-31", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65478, + 49.1559 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPORCELAVOLD", + "ref": "porcelavold", + "name": "Porcelette, Saint-Avold", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.68992, + 49.1435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYVULR", + "ref": "MYVULR", + "name": "Saint-Avold, Zone Europort", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.67412, + 49.1776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDIESENCHAMPS", + "ref": "diesenchamps", + "name": "Diesen, Champs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65478, + 49.1559 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPORCELAVOLD", + "ref": "porcelavold", + "name": "Porcelette, Saint-Avold", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.68992, + 49.1435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYVULR", + "ref": "MYVULR", + "name": "Saint-Avold, Zone Europort", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.68403, + 49.0758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFOLSCHVILLER", + "ref": "folschviller", + "name": "Folschviller, Poitou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69759, + 49.0829 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVALMONTMAIRIE", + "ref": "valmontmairie", + "name": "Valmont, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.70933, + 49.1065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKTKBS", + "ref": "YKTKBS", + "name": "Saint-Avold, place du Marché", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-31", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.585879, + 47.591719 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO957ZEQDER", + "ref": "O957ZEQDER", + "name": "Huningue, Rue Du Marechal Joffre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.585879, + 47.591719 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO957ZEQDER", + "ref": "O957ZEQDER", + "name": "Huningue, Rue Du Marechal Joffre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8008, + 49.2982 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PECFJGR", + "ref": "ECFJGR", + "name": "Béthisy-Saint-Pierre, Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.588663, + 47.601045 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDNGMRSFWLE", + "ref": "DNGMRSFWLE", + "name": "Village-Neuf, Pont Du Palmrain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.556566, + 47.591037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKGQUEN557E", + "ref": "KGQUEN557E", + "name": "Saint-Louis, Place De La Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.527033, + 47.561586 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYOTUP5OVAQ", + "ref": "YOTUP5OVAQ", + "name": "Hegenheim, Rue De Bourgfelden", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.583157, + 47.589907 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAAWFK13ZEK", + "ref": "AAWFK13ZEK", + "name": "Huningue, Rue Du Port", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.521945, + 47.575432 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTBLCLSJ4PF", + "ref": "TBLCLSJ4PF", + "name": "Hesingue, 1 Rue Du Bon Coin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5540214, + 47.590753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWK3GA2LBR", + "ref": "JWK3GA2LBR", + "name": "Saint-Louis, Rue Du Ballon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5540214, + 47.590753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWK3GA2LBR", + "ref": "JWK3GA2LBR", + "name": "Saint-Louis, Rue Du Ballon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5540214, + 47.590753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWK3GA2LBR", + "ref": "JWK3GA2LBR", + "name": "Saint-Louis, Rue Du Ballon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5540214, + 47.590753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWK3GA2LBR", + "ref": "JWK3GA2LBR", + "name": "Saint-Louis, Rue Du Ballon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5540214, + 47.590753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWK3GA2LBR", + "ref": "JWK3GA2LBR", + "name": "Saint-Louis, Rue Du Ballon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5540214, + 47.590753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWK3GA2LBR", + "ref": "JWK3GA2LBR", + "name": "Saint-Louis, Rue Du Ballon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5540214, + 47.590753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWK3GA2LBR", + "ref": "JWK3GA2LBR", + "name": "Saint-Louis, Rue Du Ballon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5540214, + 47.590753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWK3GA2LBR", + "ref": "JWK3GA2LBR", + "name": "Saint-Louis, Rue Du Ballon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5540214, + 47.590753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWK3GA2LBR", + "ref": "JWK3GA2LBR", + "name": "Saint-Louis, Rue Du Ballon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5540214, + 47.590753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWK3GA2LBR", + "ref": "JWK3GA2LBR", + "name": "Saint-Louis, Rue Du Ballon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94185, + 48.2166 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENPRTC", + "ref": "ENPRTC", + "name": "Saint-Léonard, rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94185, + 48.2166 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENPRTC", + "ref": "ENPRTC", + "name": "Saint-Léonard, rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94496, + 48.2156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCJUUZX", + "ref": "CJUUZX", + "name": "Saint-Léonard, rue des Jardins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94496, + 48.2156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCJUUZX", + "ref": "CJUUZX", + "name": "Saint-Léonard, rue des Jardins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65143, + 46.7855 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXSQQA", + "ref": "TXSQQA", + "name": "Centre E.Leclerc, Saint-Maur Cap Sud", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.460502, + 47.648974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAMXCWSBMV3", + "ref": "AMXCWSBMV3", + "name": "Sierentz, Chemin Tafelweg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.56071, + 47.586884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL0ZK51ZAHC", + "ref": "L0ZK51ZAHC", + "name": "Saint-Louis, 17 Rue Théo Bachmann", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5338922, + 47.637421 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKCM19NLBYJ", + "ref": "KCM19NLBYJ", + "name": "Rosenau, Rue De Kembs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.521945, + 47.575432 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTBLCLSJ4PF", + "ref": "TBLCLSJ4PF", + "name": "Hesingue, 1 Rue Du Bon Coin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.487105, + 47.634955 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVW40LGQ14C", + "ref": "VW40LGQ14C", + "name": "Bartenheim, Rue De La Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.582926, + 47.591991 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUQMWXP1LTB", + "ref": "UQMWXP1LTB", + "name": "Huningue, Place De L'Ancien Hotel De Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.583157, + 47.589907 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAAWFK13ZEK", + "ref": "AAWFK13ZEK", + "name": "Huningue, Rue Du Port", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.509913, + 47.559339 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWKJ7SGGVME", + "ref": "WKJ7SGGVME", + "name": "Buschwiller, 4 Rue De Hegenheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.527033, + 47.561586 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYOTUP5OVAQ", + "ref": "YOTUP5OVAQ", + "name": "Hegenheim, Rue De Bourgfelden", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.56071, + 47.586884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL0ZK51ZAHC", + "ref": "L0ZK51ZAHC", + "name": "Saint-Louis, 17 Rue Théo Bachmann", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.487105, + 47.634955 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVW40LGQ14C", + "ref": "VW40LGQ14C", + "name": "Bartenheim, Rue De La Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.509913, + 47.559339 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWKJ7SGGVME", + "ref": "WKJ7SGGVME", + "name": "Buschwiller, 4 Rue De Hegenheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.49739994, + 47.66957673 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKCFNXIKPD8", + "ref": "KCFNXIKPD8", + "name": "Kembs, Rue De L'Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.565505, + 47.586385 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMJ3GBZ3PFX", + "ref": "MJ3GBZ3PFX", + "name": "Saint-Louis, 9 Rue De Huningue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5338922, + 47.637421 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKCM19NLBYJ", + "ref": "KCM19NLBYJ", + "name": "Rosenau, Rue De Kembs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.49751204, + 47.66949847 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKCFNXIKPD8", + "ref": "KCFNXIKPD8", + "name": "Kembs, Rue De L'Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.588663, + 47.601045 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDNGMRSFWLE", + "ref": "DNGMRSFWLE", + "name": "Village-Neuf, Pont Du Palmrain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.556566, + 47.591037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKGQUEN557E", + "ref": "KGQUEN557E", + "name": "Saint-Louis, Place De La Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.561453, + 47.590898 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKVTKW80MWI", + "ref": "KVTKW80MWI", + "name": "Saint-Louis, Parking General Cassagnou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.565505, + 47.586385 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMJ3GBZ3PFX", + "ref": "MJ3GBZ3PFX", + "name": "Saint-Louis, 9 Rue De Huningue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.460502, + 47.648974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAMXCWSBMV3", + "ref": "AMXCWSBMV3", + "name": "Sierentz, Chemin Tafelweg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.561453, + 47.590898 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKVTKW80MWI", + "ref": "KVTKW80MWI", + "name": "Saint-Louis, Parking General Cassagnou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.67412, + 49.1776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDIESENCHAMPS", + "ref": "diesenchamps", + "name": "Diesen, Champs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73917, + 49.1605 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLHOPITALGARE", + "ref": "lhopitalgare", + "name": "L'Hôpital, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.71804, + 49.1669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCARLINGFRON", + "ref": "carlingfron", + "name": "Carling, Frontière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.72042, + 49.0861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVALMONTGARE", + "ref": "valmontgare", + "name": "Valmont, Gare", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13112486, + 48.65894757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNSXP47CUV6", + "ref": "NSXP47CUV6", + "name": "Villers Lès Nancy, Allée Pelletier Doisy", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13112486, + 48.65894757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNSXP47CUV6", + "ref": "NSXP47CUV6", + "name": "Villers Lès Nancy, Allée Pelletier Doisy", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13112486, + 48.65894757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNSXP47CUV6", + "ref": "NSXP47CUV6", + "name": "Villers Lès Nancy, Allée Pelletier Doisy", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13112486, + 48.65894757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNSXP47CUV6", + "ref": "NSXP47CUV6", + "name": "Villers Lès Nancy, Allée Pelletier Doisy", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13112486, + 48.65894757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNSXP47CUV6", + "ref": "NSXP47CUV6", + "name": "Villers Lès Nancy, Allée Pelletier Doisy", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13112486, + 48.65894757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNSXP47CUV6", + "ref": "NSXP47CUV6", + "name": "Villers Lès Nancy, Allée Pelletier Doisy", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85479, + 47.5179 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKGVDHE", + "ref": "KGVDHE", + "name": "Etupes, SEDIA", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85479, + 47.5179 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKGVDHE", + "ref": "KGVDHE", + "name": "Etupes, SEDIA", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85479, + 47.5179 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKGVDHE", + "ref": "KGVDHE", + "name": "Etupes, SEDIA", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85479, + 47.5179 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKGVDHE", + "ref": "KGVDHE", + "name": "Etupes, SEDIA", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19572, + 48.8922 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POS5AYN2RWQ", + "ref": "OS5AYN2RWQ", + "name": "Nanterre, Parking Lumières", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19572, + 48.8922 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POS5AYN2RWQ", + "ref": "OS5AYN2RWQ", + "name": "Nanterre, Parking Lumières", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21968, + 48.8963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRTGNLZP5RI", + "ref": "RTGNLZP5RI", + "name": "Nanterre, Parking Préfecture", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21968, + 48.8963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRTGNLZP5RI", + "ref": "RTGNLZP5RI", + "name": "Nanterre, Parking Préfecture", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19572, + 48.8922 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POS5AYN2RWQ", + "ref": "OS5AYN2RWQ", + "name": "Nanterre, Parking Lumières", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21968, + 48.8963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRTGNLZP5RI", + "ref": "RTGNLZP5RI", + "name": "Nanterre, Parking Préfecture", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21968, + 48.8963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRTGNLZP5RI", + "ref": "RTGNLZP5RI", + "name": "Nanterre, Parking Préfecture", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21968, + 48.8963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRTGNLZP5RI", + "ref": "RTGNLZP5RI", + "name": "Nanterre, Parking Préfecture", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133859, + 45.762267 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQNUI0CSO4", + "ref": "FQNUI0CSO4", + "name": "Clermont-Ferrand, Rue Patrick Depailler", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13112486, + 48.65894757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNSXP47CUV6", + "ref": "NSXP47CUV6", + "name": "Villers Lès Nancy, Allée Pelletier Doisy", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13112486, + 48.65894757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNSXP47CUV6", + "ref": "NSXP47CUV6", + "name": "Villers Lès Nancy, Allée Pelletier Doisy", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13112486, + 48.65894757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNSXP47CUV6", + "ref": "NSXP47CUV6", + "name": "Villers Lès Nancy, Allée Pelletier Doisy", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.04174, + 48.60593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PZLMJZJ3PZH", + "ref": "ZLMJZJ3PZH", + "name": "Chamouilley, Rue de la Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.413374, + 48.271275 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PX2IJYCW9UM", + "ref": "X2IJYCW9UM", + "name": "Saint Blin, Rue de l'Hôtel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.006872, + 47.948425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PC6FVVB3MVR", + "ref": "C6FVVB3MVR", + "name": "Arc en Barrois, Rue Instituteur André", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.005376, + 47.950708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PUX0C74ZEDL", + "ref": "UX0C74ZEDL", + "name": "Arc en Barrois, Route d'Aubepierre - Parc National", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.379166, + 47.91356 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PJMO7A9PAVP", + "ref": "JMO7A9PAVP", + "name": "Changey, Rue du Lac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.483057, + 48.009488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PPGS8EFRLLN", + "ref": "PGS8EFRLLN", + "name": "Val de Meuse, Parking Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.491682, + 47.999145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PROSGBVYDNK", + "ref": "ROSGBVYDNK", + "name": "Val de Meuse, Place de Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.321319, + 48.246578 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PTEXAQQOGXS", + "ref": "TEXAQQOGXS", + "name": "Rimaucourt, Parking Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.913283, + 48.031301 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PQDNIU62V9N", + "ref": "QDNIU62V9N", + "name": "Chateauvillain, Parking Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.296041, + 48.088101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PKZLRAD1NK3", + "ref": "KZLRAD1NK3", + "name": "Biesles, Rue Memasse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13112486, + 48.65894757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNSXP47CUV6", + "ref": "NSXP47CUV6", + "name": "Villers Lès Nancy, Allée Pelletier Doisy", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92133, + 48.036006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PYPPLUMHPKQ", + "ref": "YPPLUMHPKQ", + "name": "Chateauvillain, Rue du parc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.005376, + 47.950708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PUX0C74ZEDL", + "ref": "UX0C74ZEDL", + "name": "Arc en Barrois, Route d'Aubepierre - Parc National", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43131, + 44.899617 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLUC4FMQOJS", + "ref": "LUC4FMQOJS", + "name": "Aurillac, 14 avenue du Garric", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43131, + 44.899617 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLUC4FMQOJS", + "ref": "LUC4FMQOJS", + "name": "Aurillac, 14 avenue du Garric", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43131, + 44.899617 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLUC4FMQOJS", + "ref": "LUC4FMQOJS", + "name": "Aurillac, 14 avenue du Garric", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43131, + 44.899617 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLUC4FMQOJS", + "ref": "LUC4FMQOJS", + "name": "Aurillac, 14 avenue du Garric", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43131, + 44.899617 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLUC4FMQOJS", + "ref": "LUC4FMQOJS", + "name": "Aurillac, 14 avenue du Garric", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43131, + 44.899617 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLUC4FMQOJS", + "ref": "LUC4FMQOJS", + "name": "Aurillac, 14 avenue du Garric", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133859, + 45.762267 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQNUI0CSO4", + "ref": "FQNUI0CSO4", + "name": "Clermont-Ferrand, Rue Patrick Depailler", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -149.529006, + -17.5252859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSDKEJCFATZ", + "ref": "SDKEJCFATZ", + "name": "PK4", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-21", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -149.529006, + -17.5252859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSDKEJCFATZ", + "ref": "SDKEJCFATZ", + "name": "PK4", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-21", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70315, + 49.74086 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGZB3NTGYRT", + "ref": "GZB3NTGYRT", + "name": "Charleville-Mézières, rue Paulin Richier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33561998, + 43.48068237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSJGU8UPEDR", + "ref": "SJGU8UPEDR", + "name": "Muret, SUD GARONNE AUTOMOBILES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33561998, + 43.48068237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSJGU8UPEDR", + "ref": "SJGU8UPEDR", + "name": "Muret, SUD GARONNE AUTOMOBILES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74285255, + 46.32865994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHKY1VPJFZJ", + "ref": "HKY1VPJFZJ", + "name": "Prissé, ZA Le Pré de Lit", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74285255, + 46.32865994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHKY1VPJFZJ", + "ref": "HKY1VPJFZJ", + "name": "Prissé, ZA Le Pré de Lit", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74285255, + 46.32865994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHKY1VPJFZJ", + "ref": "HKY1VPJFZJ", + "name": "Prissé, ZA Le Pré de Lit", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74285255, + 46.32865994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHKY1VPJFZJ", + "ref": "HKY1VPJFZJ", + "name": "Prissé, ZA Le Pré de Lit", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7033, + 49.740756 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGZB3NTGYRT", + "ref": "GZB3NTGYRT", + "name": "Charleville-Mézières, rue Paulin Richier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7033, + 49.740756 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGZB3NTGYRT", + "ref": "GZB3NTGYRT", + "name": "Charleville-Mézières, rue Paulin Richier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70315, + 49.74086 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGZB3NTGYRT", + "ref": "GZB3NTGYRT", + "name": "Charleville-Mézières, rue Paulin Richier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-16", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.52538, + 50.3577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHGSHBA4KAI", + "ref": "HGSHBA4KAI", + "name": "Valenciennes, Rue du Quesnoy", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60705932, + 43.65212834 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX5FEEIN90B", + "ref": "X5FEEIN90B", + "name": "Auch, Route de Toulouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60705932, + 43.65212834 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX5FEEIN90B", + "ref": "X5FEEIN90B", + "name": "Auch, Route de Toulouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.729515, + 48.079738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM1UB8R9YFT", + "ref": "M1UB8R9YFT", + "name": "Weber, Saint Jacques de la Lande", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.729515, + 48.079738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM1UB8R9YFT", + "ref": "M1UB8R9YFT", + "name": "Weber, Saint Jacques de la Lande", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.72042, + 49.0861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVALMONTGARE", + "ref": "valmontgare", + "name": "Valmont, Gare", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.704073, + 49.129777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSAKX7WKLW", + "ref": "VSAKX7WKLW", + "name": "Régie Municipale, Saint Avold", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.704073, + 49.129777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSAKX7WKLW", + "ref": "VSAKX7WKLW", + "name": "Régie Municipale, Saint Avold", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.704073, + 49.129777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSAKX7WKLW", + "ref": "VSAKX7WKLW", + "name": "Régie Municipale, Saint Avold", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33561998, + 43.48068237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSJGU8UPEDR", + "ref": "SJGU8UPEDR", + "name": "Muret, SUD GARONNE AUTOMOBILES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.52538, + 50.3577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHGSHBA4KAI", + "ref": "HGSHBA4KAI", + "name": "Valenciennes, Rue du Quesnoy", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26565477, + 43.59051036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD63HYFBJKD", + "ref": "D63HYFBJKD", + "name": "Castres, Route de Mazamet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.132481, + 46.957896 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGR3CSHARYG", + "ref": "GR3CSHARYG", + "name": "SNC MCG La Tabatière, La grande-Verrière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26565477, + 43.59051036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD63HYFBJKD", + "ref": "D63HYFBJKD", + "name": "Castres, Route de Mazamet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.16395031, + 43.95966538 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBOQN0KHP5L", + "ref": "BOQN0KHP5L", + "name": "Lescure-d'Albigeois, Chemin Des Deux Voies", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.16395031, + 43.95966538 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBOQN0KHP5L", + "ref": "BOQN0KHP5L", + "name": "Lescure-d'Albigeois, Chemin Des Deux Voies", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46744838, + 49.17747979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFJMTSHA9FY", + "ref": "FJMTSHA9FY", + "name": "Boulay-Moselle, Rue Téophile Sombon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46744838, + 49.17747979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFJMTSHA9FY", + "ref": "FJMTSHA9FY", + "name": "Boulay-Moselle, Rue Téophile Sombon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.61749, + 46.2324 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQFNDSB", + "ref": "QFNDSB", + "name": "Oyonnax, SISE Plastics", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.61749, + 46.2324 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQFNDSB", + "ref": "QFNDSB", + "name": "Oyonnax, SISE Plastics", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.132481, + 46.957896 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGR3CSHARYG", + "ref": "GR3CSHARYG", + "name": "SNC MCG La Tabatière, La grande-Verrière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.49694935, + 43.57252502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFMNRHLYJDM", + "ref": "FMNRHLYJDM", + "name": "Toulouse, SOMEDA", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.52538, + 50.3577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHGSHBA4KAI", + "ref": "HGSHBA4KAI", + "name": "Valenciennes, Rue du Quesnoy", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.49694935, + 43.57252502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFMNRHLYJDM", + "ref": "FMNRHLYJDM", + "name": "Toulouse, SOMEDA", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.49694935, + 43.57252502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFMNRHLYJDM", + "ref": "FMNRHLYJDM", + "name": "Toulouse, SOMEDA", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.146115, + 48.086151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEGRXO7GJVB", + "ref": "EGRXO7GJVB", + "name": "Chaumont, SOS Dépannage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.146115, + 48.086151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEGRXO7GJVB", + "ref": "EGRXO7GJVB", + "name": "Chaumont, SOS Dépannage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.52538, + 50.3577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHGSHBA4KAI", + "ref": "HGSHBA4KAI", + "name": "Valenciennes, Rue du Quesnoy", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.52538, + 50.3577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHGSHBA4KAI", + "ref": "HGSHBA4KAI", + "name": "Valenciennes, Rue du Quesnoy", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.52538, + 50.3577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHGSHBA4KAI", + "ref": "HGSHBA4KAI", + "name": "Valenciennes, Rue du Quesnoy", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.52538, + 50.3577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHGSHBA4KAI", + "ref": "HGSHBA4KAI", + "name": "Valenciennes, Rue du Quesnoy", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65143, + 46.7855 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXSQQA", + "ref": "TXSQQA", + "name": "Centre E.Leclerc, Saint-Maur Cap Sud", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65143, + 46.7855 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXSQQA", + "ref": "TXSQQA", + "name": "Centre E.Leclerc, Saint-Maur Cap Sud", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65143, + 46.7855 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXSQQA", + "ref": "TXSQQA", + "name": "Centre E.Leclerc, Saint-Maur Cap Sud", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.75706931, + 45.16480908 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNUQVEPZ8AW", + "ref": "NUQVEPZ8AW", + "name": "Saint-Martin-d'Hères, Rue du Béal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2535821, + 43.34597207 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIXBHNZDQGH", + "ref": "IXBHNZDQGH", + "name": "Béziers, Rue André Salmon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77214118, + 49.35462135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLPYWW8B6QN", + "ref": "LPYWW8B6QN", + "name": "La-Croix-Saint-Ouen, 331 Rue des Longues Raies", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77214118, + 49.35462135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLPYWW8B6QN", + "ref": "LPYWW8B6QN", + "name": "La-Croix-Saint-Ouen, 331 Rue des Longues Raies", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36122, + 48.9579 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSEMCHAHMD", + "ref": "Semchahmd", + "name": "Châlons-en-Champagne, Haute-Mère-Dieu", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33924538, + 48.95442304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESOO1VY323", + "ref": "ESOO1VY323", + "name": "Châlons-en-Champagne, Avenue de Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33924538, + 48.95442304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESOO1VY323", + "ref": "ESOO1VY323", + "name": "Châlons-en-Champagne, Avenue de Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36122, + 48.9579 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSEMCHAHMD", + "ref": "Semchahmd", + "name": "Châlons-en-Champagne, Haute-Mère-Dieu", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36122, + 48.9579 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSEMCHAHMD", + "ref": "Semchahmd", + "name": "Châlons-en-Champagne, Haute-Mère-Dieu", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36122, + 48.9579 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSEMCHAHMD", + "ref": "Semchahmd", + "name": "Châlons-en-Champagne, Haute-Mère-Dieu", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.352533, + 48.973217 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQQFB82S3YL", + "ref": "QQFB82S3YL", + "name": "Châlons en Champagne , Avenue Ampère", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.352533, + 48.973217 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQQFB82S3YL", + "ref": "QQFB82S3YL", + "name": "Châlons en Champagne , Avenue Ampère", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.352533, + 48.973217 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQQFB82S3YL", + "ref": "QQFB82S3YL", + "name": "Châlons en Champagne , Avenue Ampère", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.352533, + 48.973217 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQQFB82S3YL", + "ref": "QQFB82S3YL", + "name": "Châlons en Champagne , Avenue Ampère", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.691131, + 45.758969 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHYXQ9TJ10X4F", + "ref": "LLHYXQ9TJ10X4F", + "name": "BELLEY Rue de la résistance", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.691131, + 45.758969 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHYXQ9TJ10X4F", + "ref": "LLHYXQ9TJ10X4F", + "name": "BELLEY Rue de la résistance", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.691131, + 45.758969 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHYXQ9TJ10X4F", + "ref": "LLHYXQ9TJ10X4F", + "name": "BELLEY Rue de la résistance", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.691131, + 45.758969 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHYXQ9TJ10X4F", + "ref": "LLHYXQ9TJ10X4F", + "name": "BELLEY Rue de la résistance", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27616, + 49.14952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKVP217VGA5", + "ref": "KVP217VGA5", + "name": "Servigny-lès-Sainte-Barbe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27616, + 49.14952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKVP217VGA5", + "ref": "KVP217VGA5", + "name": "Servigny-lès-Sainte-Barbe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2535821, + 43.34597207 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIXBHNZDQGH", + "ref": "IXBHNZDQGH", + "name": "Béziers, Rue André Salmon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2535821, + 43.34597207 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIXBHNZDQGH", + "ref": "IXBHNZDQGH", + "name": "Béziers, Rue André Salmon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2535821, + 43.34597207 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIXBHNZDQGH", + "ref": "IXBHNZDQGH", + "name": "Béziers, Rue André Salmon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12032366, + 48.67408039 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRETLG65TD9", + "ref": "RETLG65TD9", + "name": "Troisfontaines, Schott VTF", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.435594, + 46.351146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA2NLTYQ2Z5", + "ref": "A2NLTYQ2Z5", + "name": "Anthy-sur-Léman, Satoriz", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.435594, + 46.351146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA2NLTYQ2Z5", + "ref": "A2NLTYQ2Z5", + "name": "Anthy-sur-Léman, Satoriz", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.435594, + 46.351146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA2NLTYQ2Z5", + "ref": "A2NLTYQ2Z5", + "name": "Anthy-sur-Léman, Satoriz", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.435594, + 46.351146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA2NLTYQ2Z5", + "ref": "A2NLTYQ2Z5", + "name": "Anthy-sur-Léman, Satoriz", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.435594, + 46.351146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA2NLTYQ2Z5", + "ref": "A2NLTYQ2Z5", + "name": "Anthy-sur-Léman, Satoriz", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.72547177, + 48.66115458 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWAHN3XCBEO", + "ref": "WAHN3XCBEO", + "name": "Vendenheim, Rue du Commerce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.72547177, + 48.66115458 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWAHN3XCBEO", + "ref": "WAHN3XCBEO", + "name": "Vendenheim, Rue du Commerce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12032366, + 48.67408039 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRETLG65TD9", + "ref": "RETLG65TD9", + "name": "Troisfontaines, Schott VTF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.625849, + 47.562551 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD7MMXLNJZN", + "ref": "D7MMXLNJZN", + "name": "Scipitternall, Nozay", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11662159, + 49.1137168 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS3YZBNLWII", + "ref": "S3YZBNLWII", + "name": "Scy-Chazelles, rue de l'Esplanade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.625849, + 47.562551 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD7MMXLNJZN", + "ref": "D7MMXLNJZN", + "name": "Scipitternall, Nozay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.113817, + 49.113535 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQZFN3KUU9F", + "ref": "QZFN3KUU9F", + "name": "Scy-Chazelles, rue de Crimée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11471684, + 49.11512365 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHZPNJOORZL", + "ref": "HZPNJOORZL", + "name": "Scy-Chazelles rue du Saint-Quentin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12215775, + 49.10941874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMVI0NG2BIC", + "ref": "MVI0NG2BIC", + "name": "Scy-Chazelles, rue de la Passerine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12215775, + 49.10941874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMVI0NG2BIC", + "ref": "MVI0NG2BIC", + "name": "Scy-Chazelles, rue de la Passerine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11471684, + 49.11512365 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHZPNJOORZL", + "ref": "HZPNJOORZL", + "name": "Scy-Chazelles rue du Saint-Quentin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.113817, + 49.113535 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQZFN3KUU9F", + "ref": "QZFN3KUU9F", + "name": "Scy-Chazelles, rue de Crimée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11662159, + 49.1137168 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS3YZBNLWII", + "ref": "S3YZBNLWII", + "name": "Scy-Chazelles, rue de l'Esplanade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.83789452, + 49.57962857 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRWQFMMRWHU", + "ref": "RWQFMMRWHU", + "name": "Lassigny, Parking", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.88313, + 49.4799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAYTBZ", + "ref": "SAYTBZ", + "name": "Thourotte, Maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.69736, + 49.3215 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNOGCX5IK1U", + "ref": "NOGCX5IK1U", + "name": "Longueil-Sainte-Marie, ZAC Paris-Oise", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-19", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64507, + 49.4259 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEAQLQS", + "ref": "EAQLQS", + "name": "Estrées-Saint-Denis, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.05025, + 49.6555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVFKUJC", + "ref": "VFKUJC", + "name": "Guiscard, Place de Magny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.95433, + 49.5433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRYTRGT", + "ref": "RYTRGT", + "name": "Chiry-Ourscamp, Place Jehan Froisart", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.95433, + 49.5433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRYTRGT", + "ref": "RYTRGT", + "name": "Chiry-Ourscamp, Place Jehan Froisart", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.05025, + 49.6555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVFKUJC", + "ref": "VFKUJC", + "name": "Guiscard, Place de Magny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.83884, + 49.5876 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPKDFX", + "ref": "NPKDFX", + "name": "Lassigny, Trésor Public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64299, + 49.4292 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PERHZAA", + "ref": "ERHZAA", + "name": "Estrées-Saint-Denis, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64299, + 49.4292 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PERHZAA", + "ref": "ERHZAA", + "name": "Estrées-Saint-Denis, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.45262, + 49.376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKJKQVT", + "ref": "KJKQVT", + "name": "Breuil-le-Sec, Emile Victor", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64507, + 49.4259 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEAQLQS", + "ref": "EAQLQS", + "name": "Estrées-Saint-Denis, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64194, + 49.2995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGCMJCV", + "ref": "GCMJCV", + "name": "Pontpoint, Sentier du Val des Haies", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.45262, + 49.376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKJKQVT", + "ref": "KJKQVT", + "name": "Breuil-le-Sec, Emile Victor", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.83884, + 49.5876 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNPKDFX", + "ref": "NPKDFX", + "name": "Lassigny, Trésor Public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.95344, + 49.1574 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTNSVNN", + "ref": "TNSVNN", + "name": "Betz, Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.95344, + 49.1574 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTNSVNN", + "ref": "TNSVNN", + "name": "Betz, Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58226, + 49.2589 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLUHPQG", + "ref": "LUHPQG", + "name": "Fleurines, Verneuil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58226, + 49.2589 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLUHPQG", + "ref": "LUHPQG", + "name": "Fleurines, Verneuil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.88124, + 49.4777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGFWJEG", + "ref": "GFWJEG", + "name": "Thourotte, Jean-Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.86353, + 49.4637 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRCMPVP", + "ref": "RCMPVP", + "name": "Longueil-Annel, De Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64194, + 49.2995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGCMJCV", + "ref": "GCMJCV", + "name": "Pontpoint, Sentier du Val des Haies", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.88124, + 49.4777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGFWJEG", + "ref": "GFWJEG", + "name": "Thourotte, Jean-Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87829, + 49.438 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCHOISYAUBACLEC", + "ref": "choisyaubaclec", + "name": "Choisy-au-Bac, Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.854015, + 49.49181 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZQ91ECZ6OH", + "ref": "ZQ91ECZ6OH", + "name": "Melicocq, rue Emerson White", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8454, + 49.4408 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCLAIROIX", + "ref": "clairoix", + "name": "Clairoix, De Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8454, + 49.4408 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCLAIROIX", + "ref": "clairoix", + "name": "Clairoix, De Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.88313, + 49.4799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAYTBZ", + "ref": "SAYTBZ", + "name": "Thourotte, Maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.71831, + 49.3573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRQBMXR", + "ref": "RQBMXR", + "name": "Longueil-Sainte-Marie, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.97103979, + 49.53518707 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKWJ35E2BFJ", + "ref": "KWJ35E2BFJ", + "name": "Chiry Ourscamp, Place Saint-Eloi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.854015, + 49.49181 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZQ91ECZ6OH", + "ref": "ZQ91ECZ6OH", + "name": "Melicocq, rue Emerson White", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.97103979, + 49.53518707 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKWJ35E2BFJ", + "ref": "KWJ35E2BFJ", + "name": "Chiry Ourscamp, Place Saint-Eloi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.83789452, + 49.57962857 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRWQFMMRWHU", + "ref": "RWQFMMRWHU", + "name": "Lassigny, Parking", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52149, + 49.5537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDRWCTS", + "ref": "DRWCTS", + "name": "Maignelay-Montigny, Rue de l'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50962, + 49.5474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSMBKVE", + "ref": "SMBKVE", + "name": "Maignelay-Montigny, François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77630573, + 49.52149139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POAKCAJ6OZP", + "ref": "OAKCAJ6OZP", + "name": "Margny-sur-Matz, Parking", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.71831, + 49.3573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRQBMXR", + "ref": "RQBMXR", + "name": "Longueil-Sainte-Marie, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77630573, + 49.52149139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POAKCAJ6OZP", + "ref": "OAKCAJ6OZP", + "name": "Margny-sur-Matz, Parking", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52149, + 49.5537 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDRWCTS", + "ref": "DRWCTS", + "name": "Maignelay-Montigny, Rue de l'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87829, + 49.438 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCHOISYAUBACLEC", + "ref": "choisyaubaclec", + "name": "Choisy-au-Bac, Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50962, + 49.5474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSMBKVE", + "ref": "SMBKVE", + "name": "Maignelay-Montigny, François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5354, + 49.3047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFJJSHD", + "ref": "FJJSHD", + "name": "Brenouille, Jean Rostand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5354, + 49.3047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFJJSHD", + "ref": "FJJSHD", + "name": "Brenouille, Jean Rostand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.435594, + 46.351146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA2NLTYQ2Z5", + "ref": "A2NLTYQ2Z5", + "name": "Anthy-sur-Léman, Satoriz", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.75706931, + 45.16480908 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNUQVEPZ8AW", + "ref": "NUQVEPZ8AW", + "name": "Saint-Martin-d'Hères, Rue du Béal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27727, + 48.6192 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRACFXH", + "ref": "RACFXH", + "name": "Saint-Nicolas-de-Port", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04492, + 49.0435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG2PBVFTJNU", + "ref": "G2PBVFTJNU", + "name": "Hambach, Rue Robert Schuman", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12927, + 48.6767 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSQMVNC", + "ref": "SQMVNC", + "name": "Troisfontaines, Station de Lavage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.11605, + 48.6709 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCHPBCT", + "ref": "CHPBCT", + "name": "Troisfontaines, Moselle Sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-22", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04749, + 48.719 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSARRBCOVOIT", + "ref": "sarrbcovoit", + "name": "Sarrebourg, Parking Covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.09613, + 48.743 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PREDINGGARE", + "ref": "redinggare", + "name": "Réding, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12927, + 48.6767 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSQMVNC", + "ref": "SQMVNC", + "name": "Troisfontaines, Station de Lavage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.06064, + 48.7339 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSARRBCINESTAR", + "ref": "sarrbcinestar", + "name": "Sarrebourg, CineStar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-21", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01936, + 48.8498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFENETRPARK", + "ref": "fenetrpark", + "name": "Fénétrange, Parking Remparts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-21", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01936, + 48.8498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFENETRPARK", + "ref": "fenetrpark", + "name": "Fénétrange, Parking Remparts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-21", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.00442, + 48.6655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSZFYN", + "ref": "LSZFYN", + "name": "Lorquin, Vosges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.10259, + 48.7109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLNZYE", + "ref": "XLNZYE", + "name": "Niderviller, Faïencerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.00442, + 48.6655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSZFYN", + "ref": "LSZFYN", + "name": "Lorquin, Vosges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.15556, + 48.6916 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVZBFA", + "ref": "TVZBFA", + "name": "Plaine-de-Walsch, Rehthal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.05345, + 48.7357 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSARRBCORD", + "ref": "sarrbcord", + "name": "Sarrebourg, Parking Cordeliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-21", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.06064, + 48.7339 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSARRBCINESTAR", + "ref": "sarrbcinestar", + "name": "Sarrebourg, CineStar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.80403, + 48.6874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXBWVSQ", + "ref": "XBWVSQ", + "name": "Moussey, Thomas Bata", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.05345, + 48.7357 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSARRBCORD", + "ref": "sarrbcord", + "name": "Sarrebourg, Parking Cordeliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-21", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.10259, + 48.7109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLNZYE", + "ref": "XLNZYE", + "name": "Niderviller, Faïencerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.05582, + 48.7341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSARREPIDE", + "ref": "sarrepide", + "name": "Sarrebourg, Mairie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.95799, + 48.7563 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMJLMPN", + "ref": "MJLMPN", + "name": "Langatte, Etang du Stock", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-22", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96478, + 48.6927 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXMSBUV", + "ref": "XMSBUV", + "name": "Héming, Parking Communal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.09613, + 48.743 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PREDINGGARE", + "ref": "redinggare", + "name": "Réding, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-21", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04749, + 48.719 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSARRBCOVOIT", + "ref": "sarrbcovoit", + "name": "Sarrebourg, Parking Covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-21", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.41478498, + 46.89444002 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIQXOTO9RCO", + "ref": "IQXOTO9RCO", + "name": "Montreverd, Parking", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27727, + 48.6192 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRACFXH", + "ref": "RACFXH", + "name": "Saint-Nicolas-de-Port", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27727, + 48.6192 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRACFXH", + "ref": "RACFXH", + "name": "Saint-Nicolas-de-Port", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27727, + 48.6192 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRACFXH", + "ref": "RACFXH", + "name": "Saint-Nicolas-de-Port", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27727, + 48.6192 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRACFXH", + "ref": "RACFXH", + "name": "Saint-Nicolas-de-Port", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27727, + 48.6192 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRACFXH", + "ref": "RACFXH", + "name": "Saint-Nicolas-de-Port", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27727, + 48.6192 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRACFXH", + "ref": "RACFXH", + "name": "Saint-Nicolas-de-Port", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27727, + 48.6192 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRACFXH", + "ref": "RACFXH", + "name": "Saint-Nicolas-de-Port", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.41478498, + 46.89444002 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIQXOTO9RCO", + "ref": "IQXOTO9RCO", + "name": "Montreverd, Parking", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73546, + 48.5968 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKJAUUA", + "ref": "KJAUUA", + "name": "Samins, Marché Gare Strasbourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.80403, + 48.6874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXBWVSQ", + "ref": "XBWVSQ", + "name": "Moussey, Thomas Bata", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73546, + 48.5968 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKJAUUA", + "ref": "KJAUUA", + "name": "Samins, Marché Gare Strasbourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.453555, + 42.719918 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBCNPMZIP3X", + "ref": "BCNPMZIP3X", + "name": "San-Martino-di-Lota, Hôtel Pietracap", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.31865954, + 42.50669575 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSFNDWUV1R9", + "ref": "SFNDWUV1R9", + "name": "Restaurant Accendi Pipa", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.31865954, + 42.50669575 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSFNDWUV1R9", + "ref": "SFNDWUV1R9", + "name": "Restaurant Accendi Pipa", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.20069, + 42.477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKEZTK8O7PQ", + "ref": "KEZTK8O7PQ", + "name": "Morosaglia, Sarl In Terra Corsa", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.20069, + 42.477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKEZTK8O7PQ", + "ref": "KEZTK8O7PQ", + "name": "Morosaglia, Sarl In Terra Corsa", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96478, + 48.6927 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXMSBUV", + "ref": "XMSBUV", + "name": "Héming, Parking Communal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.15556, + 48.6916 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVZBFA", + "ref": "TVZBFA", + "name": "Plaine-de-Walsch, Rehthal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.11605, + 48.6709 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCHPBCT", + "ref": "CHPBCT", + "name": "Troisfontaines, Moselle Sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-22", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.05301864, + 48.73824807 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUHPYPQ", + "ref": "UHPYPQ", + "name": "Sarrebourg, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04263, + 48.7223 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRULGFH", + "ref": "RULGFH", + "name": "Sarrebourg, CdC Moselle Sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-22", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.02753, + 48.9976 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVVUDTV", + "ref": "VVUDTV", + "name": "Sarralbe, Hôpital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.93729, + 49.0376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLJENBZ", + "ref": "LJENBZ", + "name": "Rémering-lès-Puttelange, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.07152, + 49.1048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHJTHIBWDZK", + "ref": "HJTHIBWDZK", + "name": "Sarreguemines, Place de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.07152, + 49.1048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHJTHIBWDZK", + "ref": "HJTHIBWDZK", + "name": "Sarreguemines, Place de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.02753, + 48.9976 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVVUDTV", + "ref": "VVUDTV", + "name": "Sarralbe, Hôpital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.03343, + 49.06 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSWOWXFTE8O", + "ref": "SWOWXFTE8O", + "name": "Hambach, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.03343, + 49.06 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSWOWXFTE8O", + "ref": "SWOWXFTE8O", + "name": "Hambach, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04137, + 49.0929 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFMWS019EB5", + "ref": "FMWS019EB5", + "name": "Sarreguemines, Rue de la Montagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.08275, + 49.1181 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHXH8KMZAIL", + "ref": "HXH8KMZAIL", + "name": "Sarreguemines, Services Techniques", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04137, + 49.0929 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFMWS019EB5", + "ref": "FMWS019EB5", + "name": "Sarreguemines, Rue de la Montagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.03067, + 49.0023 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW3Q7KKPBUP", + "ref": "W3Q7KKPBUP", + "name": "Sarralbe, Quai de l'Albe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.06484, + 49.1129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYXCRHH", + "ref": "YXCRHH", + "name": "Sarreguemines, Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.07077, + 49.1102 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCLXN7QZI6H", + "ref": "CLXN7QZI6H", + "name": "Sarreguemines, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.07077, + 49.1102 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCLXN7QZI6H", + "ref": "CLXN7QZI6H", + "name": "Sarreguemines, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.06484, + 49.1129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYXCRHH", + "ref": "YXCRHH", + "name": "Sarreguemines, Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92897, + 49.0529 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSDAFX", + "ref": "LSDAFX", + "name": "Puttelange-aux-Lacs, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04492, + 49.0435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG2PBVFTJNU", + "ref": "G2PBVFTJNU", + "name": "Hambach, Rue Robert Schuman", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.08275, + 49.1181 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHXH8KMZAIL", + "ref": "HXH8KMZAIL", + "name": "Sarreguemines, Services Techniques", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.08822, + 49.1075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYRFTXHDZQJ", + "ref": "YRFTXHDZQJ", + "name": "Sarreguemines, Centre Technique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.00797, + 49.0743 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFDDVWW", + "ref": "FDDVWW", + "name": "Woustviller, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.00797, + 49.0743 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFDDVWW", + "ref": "FDDVWW", + "name": "Woustviller, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.0921, + 48.6382 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSNGFSA", + "ref": "SNGFSA", + "name": "Abreschviller, Gal. Rampont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-02-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.08822, + 49.1075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYRFTXHDZQJ", + "ref": "YRFTXHDZQJ", + "name": "Sarreguemines, Centre Technique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04263, + 48.7223 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRULGFH", + "ref": "RULGFH", + "name": "Sarrebourg, CdC Moselle Sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-22", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.0921, + 48.6382 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSNGFSA", + "ref": "SNGFSA", + "name": "Abreschviller, Gal. Rampont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-02-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.95799, + 48.7563 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMJLMPN", + "ref": "MJLMPN", + "name": "Langatte, Etang du Stock", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.05582, + 48.7341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSARREPIDE", + "ref": "sarrepide", + "name": "Sarrebourg, Mairie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.05301864, + 48.73824807 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUHPYPQ", + "ref": "UHPYPQ", + "name": "Sarrebourg, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.05582, + 48.7341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSARREPIDE", + "ref": "sarrepide", + "name": "Sarrebourg, Mairie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.05582, + 48.7341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSARREPIDE", + "ref": "sarrepide", + "name": "Sarrebourg, Mairie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92897, + 49.0529 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSDAFX", + "ref": "LSDAFX", + "name": "Puttelange-aux-Lacs, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.03067, + 49.0023 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW3Q7KKPBUP", + "ref": "W3Q7KKPBUP", + "name": "Sarralbe, Quai de l'Albe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96526, + 49.0118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPMMYUQ", + "ref": "PMMYUQ", + "name": "Holving, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.08213, + 49.1176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCZTSR0FDO", + "ref": "DCZTSR0FDO", + "name": "Sarreguemines, Parking CASC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.08213, + 49.1176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCZTSR0FDO", + "ref": "DCZTSR0FDO", + "name": "Sarreguemines, Parking CASC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.09606, + 49.1007 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWLYDJRRTX4", + "ref": "WLYDJRRTX4", + "name": "Sarreguemines, Hôpital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.09606, + 49.1007 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWLYDJRRTX4", + "ref": "WLYDJRRTX4", + "name": "Sarreguemines, Hôpital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.06471, + 49.1104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMCKKXL", + "ref": "MCKKXL", + "name": "Sarreguemines, Rue des Chèvres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.93729, + 49.0376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLJENBZ", + "ref": "LJENBZ", + "name": "Rémering-lès-Puttelange, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.06471, + 49.1104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMCKKXL", + "ref": "MCKKXL", + "name": "Sarreguemines, Rue des Chèvres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96526, + 49.0118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPMMYUQ", + "ref": "PMMYUQ", + "name": "Holving, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2943012, + 48.07277426 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISTZ4SN1K16K", + "ref": "LLISTZ4SN1K16K", + "name": "Wintzenheim, Place des fêtes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.37103894, + 48.1594372 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIN9J8TI3OT4L", + "ref": "LLIN9J8TI3OT4L", + "name": "Ostheim, Place des cigognes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.010412, + 47.922145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PTCKN0ZQ234", + "ref": "TCKN0ZQ234", + "name": "Boigny, Rue de la commanderie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.136504, + 49.15887026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POFXXVP8UFL", + "ref": "OFXXVP8UFL", + "name": "Woippy, Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92863627, + 45.69404785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVBMK6MTPKS", + "ref": "VBMK6MTPKS", + "name": "Saint-Priest, Espace Mosaïque", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93282668, + 45.6972252 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXHQSUJ0P53", + "ref": "XHQSUJ0P53", + "name": "Saint-Priest, Parking Painlevé", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93282668, + 45.6972252 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXHQSUJ0P53", + "ref": "XHQSUJ0P53", + "name": "Saint-Priest, Parking Painlevé", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93282668, + 45.6972252 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXHQSUJ0P53", + "ref": "XHQSUJ0P53", + "name": "Saint-Priest, Parking Painlevé", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9369716, + 45.6954636 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POEGY4OXRSX", + "ref": "OEGY4OXRSX", + "name": "Saint-Priest, Parking Joly", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92489818, + 45.69760737 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POTTLB5IUZU", + "ref": "OTTLB5IUZU", + "name": "Saint-Priest, Parking Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92489818, + 45.69760737 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POTTLB5IUZU", + "ref": "OTTLB5IUZU", + "name": "Saint-Priest, Parking Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2242211, + 49.24604569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGDQJEBUTWF", + "ref": "GDQJEBUTWF", + "name": "Trémery, Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22220396, + 49.24518038 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVM0SB9N68T", + "ref": "VM0SB9N68T", + "name": "Trémery, Rue du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.224154, + 49.246869 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUATPZ39SAM", + "ref": "UATPZ39SAM", + "name": "Trémery, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.224154, + 49.246869 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUATPZ39SAM", + "ref": "UATPZ39SAM", + "name": "Trémery, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2242211, + 49.24604569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGDQJEBUTWF", + "ref": "GDQJEBUTWF", + "name": "Trémery, Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22220396, + 49.24518038 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVM0SB9N68T", + "ref": "VM0SB9N68T", + "name": "Trémery, Rue du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.98107938, + 43.4257894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZKPBHRQOWL", + "ref": "ZKPBHRQOWL", + "name": "Vaudreuille, Place de L'Eglise", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14954363, + 49.15113951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGWQCTT01WA", + "ref": "GWQCTT01WA", + "name": "Woippy, Place André Debs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.15382448, + 49.14641947 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGM3IKXS9DT", + "ref": "GM3IKXS9DT", + "name": "Woippy, Place de l'Olympium", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.15049265, + 49.1514963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUGJRF0YHEZ", + "ref": "UGJRF0YHEZ", + "name": "Woippy, Place de l'Hôtel de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.15382448, + 49.14641947 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGM3IKXS9DT", + "ref": "GM3IKXS9DT", + "name": "Woippy, Place de l'Olympium", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14954363, + 49.15113951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGWQCTT01WA", + "ref": "GWQCTT01WA", + "name": "Woippy, Place André Debs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978296, + 45.705913 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PECQW9RJZ8K", + "ref": "ECQW9RJZ8K", + "name": "Saint-Priest, La Xavière", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978296, + 45.705913 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PECQW9RJZ8K", + "ref": "ECQW9RJZ8K", + "name": "Saint-Priest, La Xavière", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92863627, + 45.69404785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVBMK6MTPKS", + "ref": "VBMK6MTPKS", + "name": "Saint-Priest, Espace Mosaïque", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36037, + 48.743353 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG9SVXXKLU9", + "ref": "G9SVXXKLU9", + "name": "Saverne, Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.73211, + 47.998104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR7NWGYM2SZ", + "ref": "R7NWGYM2SZ", + "name": "Saint Florentin, Rue du Faubourg du Pont", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.73211, + 47.998104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR7NWGYM2SZ", + "ref": "R7NWGYM2SZ", + "name": "Saint Florentin, Rue du Faubourg du Pont", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.73211, + 47.998104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR7NWGYM2SZ", + "ref": "R7NWGYM2SZ", + "name": "Saint Florentin, Rue du Faubourg du Pont", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36583159, + 48.74221383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMQXVLYFBDW", + "ref": "MQXVLYFBDW", + "name": "Saverne, Place du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36583159, + 48.74221383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMQXVLYFBDW", + "ref": "MQXVLYFBDW", + "name": "Saverne, Place du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36860288, + 48.73833298 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMP0UEPI09O", + "ref": "MP0UEPI09O", + "name": "Saverne, Place Saint Nicolas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36137953, + 48.73925281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLBVPKUWE5C", + "ref": "LBVPKUWE5C", + "name": "Saverne, Parking des Dragons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36137953, + 48.73925281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLBVPKUWE5C", + "ref": "LBVPKUWE5C", + "name": "Saverne, Parking des Dragons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36037, + 48.743353 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG9SVXXKLU9", + "ref": "G9SVXXKLU9", + "name": "Saverne, Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92863627, + 45.69404785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVBMK6MTPKS", + "ref": "VBMK6MTPKS", + "name": "Saint-Priest, Espace Mosaïque", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36860288, + 48.73833298 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMP0UEPI09O", + "ref": "MP0UEPI09O", + "name": "Saverne, Place Saint Nicolas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978296, + 45.705913 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PECQW9RJZ8K", + "ref": "ECQW9RJZ8K", + "name": "Saint-Priest, La Xavière", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9369716, + 45.6954636 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POEGY4OXRSX", + "ref": "OEGY4OXRSX", + "name": "Saint-Priest, Parking Joly", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978296, + 45.705913 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PECQW9RJZ8K", + "ref": "ECQW9RJZ8K", + "name": "Saint-Priest, La Xavière", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9369716, + 45.6954636 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POEGY4OXRSX", + "ref": "OEGY4OXRSX", + "name": "Saint-Priest, Parking Joly", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9369716, + 45.6954636 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POEGY4OXRSX", + "ref": "OEGY4OXRSX", + "name": "Saint-Priest, Parking Joly", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93282668, + 45.6972252 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXHQSUJ0P53", + "ref": "XHQSUJ0P53", + "name": "Saint-Priest, Parking Painlevé", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92863627, + 45.69404785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVBMK6MTPKS", + "ref": "VBMK6MTPKS", + "name": "Saint-Priest, Espace Mosaïque", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.15049265, + 49.1514963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUGJRF0YHEZ", + "ref": "UGJRF0YHEZ", + "name": "Woippy, Place de l'Hôtel de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.136504, + 49.15887026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POFXXVP8UFL", + "ref": "OFXXVP8UFL", + "name": "Woippy, Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.24298763, + 49.38597488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCG80SXBHI", + "ref": "SCG80SXBHI", + "name": "Basse-Ham, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16664588, + 49.14831143 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POURCDLLPBN", + "ref": "OURCDLLPBN", + "name": "Woippy, Rue du Dr Charcot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5726, + -21.204 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENGENCAFRES", + "ref": "Engencafres", + "name": "Engen, Plaine-des-Cafres avec partenariat", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.2307, + -21.0828 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENGENLAGON", + "ref": "Engenlagon", + "name": "Engen, Lagon avec partenariat", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.439, + -21.2976 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENGENSTPIER", + "ref": "Engenstpier", + "name": "Engen, RD26 avec partenariat", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4741, + -21.1373 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENGENCILAOS", + "ref": "Engencilaos", + "name": "Engen, Cilaos avec partenariat", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.304, + -21.04 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENGENGUILL", + "ref": "Engenguill", + "name": "Engen, Le Guillaume avec partenariat", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.25128, + -21.0427 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRITQEFPOJM", + "ref": "RITQEFPOJM", + "name": "Engen, L'Eperon - Saint-Paul IES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.31783, + -20.9791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO2JITRMIMN", + "ref": "O2JITRMIMN", + "name": "Engen, La Plaine - Saint-Paul IES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.29748, + -20.9429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEQRCK1OHOC", + "ref": "EQRCK1OHOC", + "name": "Engen, Oasis - Le Port IES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.29748, + -20.9429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEQRCK1OHOC", + "ref": "EQRCK1OHOC", + "name": "Engen, Oasis - Le Port IES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47581, + -21.3136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGWXQ3IKEQL", + "ref": "GWXQ3IKEQL", + "name": "Engen, Ligne Paradis - Saint-Pierre IES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3292, + -20.9426 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZCT8UV6EN8", + "ref": "ZCT8UV6EN8", + "name": "Engen, La Possession IES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47581, + -21.3136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGWXQ3IKEQL", + "ref": "GWXQ3IKEQL", + "name": "Engen, Ligne Paradis - Saint-Pierre IES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3292, + -20.9426 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZCT8UV6EN8", + "ref": "ZCT8UV6EN8", + "name": "Engen, La Possession IES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5298, + -20.9172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAVGUJC2YHB", + "ref": "AVGUJC2YHB", + "name": "Engen, Sainte-Marie Beauséjour IES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.31783, + -20.9791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO2JITRMIMN", + "ref": "O2JITRMIMN", + "name": "Engen, La Plaine - Saint-Paul IES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.25128, + -21.0427 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRITQEFPOJM", + "ref": "RITQEFPOJM", + "name": "Engen, L'Eperon - Saint-Paul IES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5298, + -20.9172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAVGUJC2YHB", + "ref": "AVGUJC2YHB", + "name": "Engen, Sainte-Marie Beauséjour IES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.492163, + -20.893393 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLG2QVY6WC6", + "ref": "LG2QVY6WC6", + "name": "Engen, Marli IES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.492163, + -20.893393 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLG2QVY6WC6", + "ref": "LG2QVY6WC6", + "name": "Engen, Marli IES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.7149, + -21.0522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENGENSTBEN", + "ref": "Engenstben", + "name": "Engen, Saint-Benoît Bras-Fusil avec partenariat", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5298, + -20.9172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PENGENSTEMARI", + "ref": "Engenstemari", + "name": "Engen, Sainte-Marie Beauséjour avec partenariat", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.33345, + -21.2441 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVORHPZSFUA", + "ref": "VORHPZSFUA", + "name": "Engen, Les Avirons Hager", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27735034, + 41.60411861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCAR0JL1LK", + "ref": "DCAR0JL1LK", + "name": "Porto Vecchio, Balesi Automobiles", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16664588, + 49.14831143 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POURCDLLPBN", + "ref": "OURCDLLPBN", + "name": "Woippy, Rue du Dr Charcot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55755, + 46.6963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNWWABU", + "ref": "NWWABU", + "name": "Villeneuve-sous-Pymont, Parking covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55755, + 46.6963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNWWABU", + "ref": "NWWABU", + "name": "Villeneuve-sous-Pymont, Parking covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.391367, + 49.85814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVWBTJN8VI5", + "ref": "VWBTJN8VI5", + "name": "BOVES, Vinci Facilities Picardie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.391367, + 49.85814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVWBTJN8VI5", + "ref": "VWBTJN8VI5", + "name": "BOVES, Vinci Facilities Picardie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.391367, + 49.85814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVWBTJN8VI5", + "ref": "VWBTJN8VI5", + "name": "BOVES, Vinci Facilities Picardie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.391367, + 49.85814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVWBTJN8VI5", + "ref": "VWBTJN8VI5", + "name": "BOVES, Vinci Facilities Picardie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27735034, + 41.60411861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCAR0JL1LK", + "ref": "DCAR0JL1LK", + "name": "Porto Vecchio, Balesi Automobiles", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27735034, + 41.60411861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCAR0JL1LK", + "ref": "DCAR0JL1LK", + "name": "Porto Vecchio, Balesi Automobiles", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46099, + -21.3341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLQAKGFHXPA", + "ref": "LQAKGFHXPA", + "name": "Engen, Ravine Blanche - Saint-Pierre Hager", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27735034, + 41.60411861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCAR0JL1LK", + "ref": "DCAR0JL1LK", + "name": "Porto Vecchio, Balesi Automobiles", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27735034, + 41.60411861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCAR0JL1LK", + "ref": "DCAR0JL1LK", + "name": "Porto Vecchio, Balesi Automobiles", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27735034, + 41.60411861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCAR0JL1LK", + "ref": "DCAR0JL1LK", + "name": "Porto Vecchio, Balesi Automobiles", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27735034, + 41.60411861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCAR0JL1LK", + "ref": "DCAR0JL1LK", + "name": "Porto Vecchio, Balesi Automobiles", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27735034, + 41.60411861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCAR0JL1LK", + "ref": "DCAR0JL1LK", + "name": "Porto Vecchio, Balesi Automobiles", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.29748, + -20.9429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRR8JDRWME6", + "ref": "RR8JDRWME6", + "name": "Engen, Oasis - Le Port Hager", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4886, + -20.8928 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJPMAOIPEVR", + "ref": "JPMAOIPEVR", + "name": "Engen, Chaudron - Saint-Denis Hager", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3292, + -20.9426 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGHOQAEUSKQ", + "ref": "GHOQAEUSKQ", + "name": "Engen, La Possession Hager", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.73211, + 47.998104 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR7NWGYM2SZ", + "ref": "R7NWGYM2SZ", + "name": "Saint Florentin, Rue du Faubourg du Pont", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.42990019, + 48.50642774 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIOCMBEAY1L", + "ref": "IOCMBEAY1L", + "name": "Rosenwiller, Parking du Flachsberg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.42990019, + 48.50642774 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIOCMBEAY1L", + "ref": "IOCMBEAY1L", + "name": "Rosenwiller, Parking du Flachsberg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.29936721, + 48.165309 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHGWIUU7WVJ", + "ref": "HGWIUU7WVJ", + "name": "Riquewihr, avenue Méquillet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.28102267, + 48.90789495 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLID3GFDC93UL5", + "ref": "LLID3GFDC93UL5", + "name": "Ville de Frohmuhl, Rue Principale", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125194, + 49.271734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POIMFWKQU3A", + "ref": "OIMFWKQU3A", + "name": "Gandrange, Rue des Ecoles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.146748, + 49.275899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPFK6JNKO3Z", + "ref": "PFK6JNKO3Z", + "name": "Gandrange, Impasse Pierre de Coubertin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.146748, + 49.275899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPFK6JNKO3Z", + "ref": "PFK6JNKO3Z", + "name": "Gandrange, Impasse Pierre de Coubertin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125194, + 49.271734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POIMFWKQU3A", + "ref": "OIMFWKQU3A", + "name": "Gandrange, Rue des Ecoles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1265192, + 49.27116133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXO3MVEDDXB", + "ref": "XO3MVEDDXB", + "name": "Gandrange, rue du stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1265192, + 49.27116133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXO3MVEDDXB", + "ref": "XO3MVEDDXB", + "name": "Gandrange, rue du stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.43960051, + 48.19754719 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYTUL8DKYPE", + "ref": "YTUL8DKYPE", + "name": "Golbey, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.43960051, + 48.19754719 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYTUL8DKYPE", + "ref": "YTUL8DKYPE", + "name": "Golbey, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.167827, + 49.253007 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBSTWKUXLHX", + "ref": "BSTWKUXLHX", + "name": "Hagondange, Rue Henri Hoffmann", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.167827, + 49.253007 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBSTWKUXLHX", + "ref": "BSTWKUXLHX", + "name": "Hagondange, Rue Henri Hoffmann", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.167827, + 49.253007 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBSTWKUXLHX", + "ref": "BSTWKUXLHX", + "name": "Hagondange, Rue Henri Hoffmann", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.167827, + 49.253007 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBSTWKUXLHX", + "ref": "BSTWKUXLHX", + "name": "Hagondange, Rue Henri Hoffmann", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.353634, + 43.49678 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC6TP29MAZB", + "ref": "C6TP29MAZB", + "name": "Lorgues, Stade Turchi", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.353634, + 43.49678 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC6TP29MAZB", + "ref": "C6TP29MAZB", + "name": "Lorgues, Stade Turchi", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.353634, + 43.49678 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC6TP29MAZB", + "ref": "C6TP29MAZB", + "name": "Lorgues, Stade Turchi", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.353634, + 43.49678 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC6TP29MAZB", + "ref": "C6TP29MAZB", + "name": "Lorgues, Stade Turchi", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.19667332, + 45.25360433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH7UOMYFMJX", + "ref": "H7UOMYFMJX", + "name": "Massiac, Place du Faura", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.19667332, + 45.25360433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH7UOMYFMJX", + "ref": "H7UOMYFMJX", + "name": "Massiac, Place du Faura", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.28102267, + 48.90789495 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLID3GFDC93UL5", + "ref": "LLID3GFDC93UL5", + "name": "Ville de Frohmuhl, Rue Principale", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.28102267, + 48.90789495 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLID3GFDC93UL5", + "ref": "LLID3GFDC93UL5", + "name": "Ville de Frohmuhl, Rue Principale", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.59967687, + 49.04399696 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV9N0HA5IKV", + "ref": "V9N0HA5IKV", + "name": "Faulquemont, Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8759267, + 48.97890724 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXFZEEO1KRT", + "ref": "XFZEEO1KRT", + "name": "Crégy-lès-Meaux, Centre médical", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.35852254, + 48.20551728 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUTHD3KC8DN", + "ref": "UTHD3KC8DN", + "name": "Bergheim, Rue des Vignerons", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.35852254, + 48.20551728 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUTHD3KC8DN", + "ref": "UTHD3KC8DN", + "name": "Bergheim, Rue des Vignerons", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91136916, + 50.38211025 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGUOMXU8IF3", + "ref": "GUOMXU8IF3", + "name": "Mairie, rue Placide Monchy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91136916, + 50.38211025 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGUOMXU8IF3", + "ref": "GUOMXU8IF3", + "name": "Mairie, rue Placide Monchy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3438463, + 50.84746188 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEIC8ALLHQN", + "ref": "EIC8ALLHQN", + "name": "Bruxelles, Parking Groupe - Rue des Six Jetons 49", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3438463, + 50.84746188 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEIC8ALLHQN", + "ref": "EIC8ALLHQN", + "name": "Bruxelles, Parking Groupe - Rue des Six Jetons 49", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.50518824, + 48.82134668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUJGVB4DZD2", + "ref": "UJGVB4DZD2", + "name": "Château-Salins, Place du Ruisseau Salé", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.50518824, + 48.82134668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUJGVB4DZD2", + "ref": "UJGVB4DZD2", + "name": "Château-Salins, Place du Ruisseau Salé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8759267, + 48.97890724 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXFZEEO1KRT", + "ref": "XFZEEO1KRT", + "name": "Crégy-lès-Meaux, Centre médical", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.59967687, + 49.04399696 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV9N0HA5IKV", + "ref": "V9N0HA5IKV", + "name": "Faulquemont, Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.98678458, + 50.43186345 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX9PLF6UY7Y", + "ref": "X9PLF6UY7Y", + "name": "Dourges, Place de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.98678458, + 50.43186345 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX9PLF6UY7Y", + "ref": "X9PLF6UY7Y", + "name": "Dourges, Place de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8748447, + 49.11924098 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQVUXSYMJAL", + "ref": "QVUXSYMJAL", + "name": "Farébersviller, Place du Marché", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8748447, + 49.11924098 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQVUXSYMJAL", + "ref": "QVUXSYMJAL", + "name": "Farébersviller, Place du Marché", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8748447, + 49.11924098 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQVUXSYMJAL", + "ref": "QVUXSYMJAL", + "name": "Farébersviller, Place du Marché", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8748447, + 49.11924098 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQVUXSYMJAL", + "ref": "QVUXSYMJAL", + "name": "Farébersviller, Place du Marché", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.602767944, + 49.05228424 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHDIXLRAADA", + "ref": "HDIXLRAADA", + "name": "Faulquemont, Rue de Pontpierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.602767944, + 49.05228424 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHDIXLRAADA", + "ref": "HDIXLRAADA", + "name": "Faulquemont, Rue de Pontpierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.19667332, + 45.25360433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH7UOMYFMJX", + "ref": "H7UOMYFMJX", + "name": "Massiac, Place du Faura", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.883098, + 48.967406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKDEIJGQQJG", + "ref": "KDEIJGQQJG", + "name": "Meaux, Rue Camille Guérin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.914641, + 48.95391 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD2IOI9VPRG", + "ref": "D2IOI9VPRG", + "name": "Meaux, Place de Beauval", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87922958, + 48.37586844 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFMDPPQ40YA", + "ref": "FMDPPQ40YA", + "name": "Ville de Moyenmoutier, 47 Avenue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.157056, + 49.102599 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB6QDXR7OOU", + "ref": "B6QDXR7OOU", + "name": "Montigny Lès Metz, parking Meurisse", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.157056, + 49.102599 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB6QDXR7OOU", + "ref": "B6QDXR7OOU", + "name": "Montigny Lès Metz, parking Meurisse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.157056, + 49.102599 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB6QDXR7OOU", + "ref": "B6QDXR7OOU", + "name": "Montigny Lès Metz, parking Meurisse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.157056, + 49.102599 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB6QDXR7OOU", + "ref": "B6QDXR7OOU", + "name": "Montigny Lès Metz, parking Meurisse", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87922958, + 48.37586844 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFMDPPQ40YA", + "ref": "FMDPPQ40YA", + "name": "Ville de Moyenmoutier, 47 Avenue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.68968931, + 48.35605654 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PULRXO0HBQH", + "ref": "ULRXO0HBQH", + "name": "Ville de Neufchâteau, 23 Rue de la 1ère Armée Française", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.68968931, + 48.35605654 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PULRXO0HBQH", + "ref": "ULRXO0HBQH", + "name": "Ville de Neufchâteau, 23 Rue de la 1ère Armée Française", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.68968931, + 48.35605654 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PULRXO0HBQH", + "ref": "ULRXO0HBQH", + "name": "Ville de Neufchâteau, 23 Rue de la 1ère Armée Française", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.68968931, + 48.35605654 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PULRXO0HBQH", + "ref": "ULRXO0HBQH", + "name": "Ville de Neufchâteau, 23 Rue de la 1ère Armée Française", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.304942, + 49.134465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVNW0SO2WZX", + "ref": "VNW0SO2WZX", + "name": "Retonfey, Place Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.304942, + 49.134465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVNW0SO2WZX", + "ref": "VNW0SO2WZX", + "name": "Retonfey, Place Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.29936721, + 48.165309 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHGWIUU7WVJ", + "ref": "HGWIUU7WVJ", + "name": "Riquewihr, avenue Méquillet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.29426496, + 48.1671087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZDNIEIV5PZ", + "ref": "ZDNIEIV5PZ", + "name": "Riquewihr, place des Charpentiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.29426496, + 48.1671087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZDNIEIV5PZ", + "ref": "ZDNIEIV5PZ", + "name": "Riquewihr, place des Charpentiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.905313, + 48.949848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFTHFZJ44NR", + "ref": "FTHFZJ44NR", + "name": "Meaux, Place Colbert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.883098, + 48.967406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKDEIJGQQJG", + "ref": "KDEIJGQQJG", + "name": "Meaux, Rue Camille Guérin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.914641, + 48.95391 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD2IOI9VPRG", + "ref": "D2IOI9VPRG", + "name": "Meaux, Place de Beauval", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.883098, + 48.967406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKDEIJGQQJG", + "ref": "KDEIJGQQJG", + "name": "Meaux, Rue Camille Guérin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90038, + 48.9435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZMOD3XW3U", + "ref": "KZMOD3XW3U", + "name": "Meaux, Parking Colisée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.905313, + 48.949848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFTHFZJ44NR", + "ref": "FTHFZJ44NR", + "name": "Meaux, Place Colbert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.883098, + 48.967406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKDEIJGQQJG", + "ref": "KDEIJGQQJG", + "name": "Meaux, Rue Camille Guérin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90038, + 48.9435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZMOD3XW3U", + "ref": "KZMOD3XW3U", + "name": "Meaux, Parking Colisée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV3RPWWAZKE", + "ref": "V3RPWWAZKE", + "name": "Ville de Meudon - Parking pointe de Trivaux", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902432, + 43.939949 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIKBWHPL24330", + "ref": "LLIKBWHPL24330", + "name": "Morières-lès-Avignon, Avenue Jean Monnet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.145892, + 43.685903 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC3JINN4OUP", + "ref": "C3JINN4OUP", + "name": "Lunel, rue Thomas Edison", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.145892, + 43.685903 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC3JINN4OUP", + "ref": "C3JINN4OUP", + "name": "Lunel, rue Thomas Edison", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94386558, + 43.5386752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR8SVAECJXV", + "ref": "R8SVAECJXV", + "name": "Mandelieu-la-Napoule, Hotel Ilot Du Golf", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.738635, + 45.978188 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRPDMF5LYE0", + "ref": "RPDMF5LYE0", + "name": "Villefranche-sur-Saône, 733 Av. Théodore Braun", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7394, + 45.97827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRPDMF5LYE0", + "ref": "RPDMF5LYE0", + "name": "Villefranche-sur-Saône, 733 Av. Théodore Braun", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.738635, + 45.978188 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRPDMF5LYE0", + "ref": "RPDMF5LYE0", + "name": "Villefranche-sur-Saône, 733 Av. Théodore Braun", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7394, + 45.97827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRPDMF5LYE0", + "ref": "RPDMF5LYE0", + "name": "Villefranche-sur-Saône, 733 Av. Théodore Braun", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7394, + 45.97827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRPDMF5LYE0", + "ref": "RPDMF5LYE0", + "name": "Villefranche-sur-Saône, 733 Av. Théodore Braun", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7394, + 45.97827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRPDMF5LYE0", + "ref": "RPDMF5LYE0", + "name": "Villefranche-sur-Saône, 733 Av. Théodore Braun", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7394, + 45.97827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRPDMF5LYE0", + "ref": "RPDMF5LYE0", + "name": "Villefranche-sur-Saône, 733 Av. Théodore Braun", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVIF7DKLUF", + "ref": "TVIF7DKLUF", + "name": "Les Pennes-Mirabeau, 603 Chemin des Pennes aux Pins", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVIF7DKLUF", + "ref": "TVIF7DKLUF", + "name": "Les Pennes-Mirabeau, 603 Chemin des Pennes aux Pins", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVIF7DKLUF", + "ref": "TVIF7DKLUF", + "name": "Les Pennes-Mirabeau, 603 Chemin des Pennes aux Pins", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVIF7DKLUF", + "ref": "TVIF7DKLUF", + "name": "Les Pennes-Mirabeau, 603 Chemin des Pennes aux Pins", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVIF7DKLUF", + "ref": "TVIF7DKLUF", + "name": "Les Pennes-Mirabeau, 603 Chemin des Pennes aux Pins", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVIF7DKLUF", + "ref": "TVIF7DKLUF", + "name": "Les Pennes-Mirabeau, 603 Chemin des Pennes aux Pins", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVIF7DKLUF", + "ref": "TVIF7DKLUF", + "name": "Les Pennes-Mirabeau, 603 Chemin des Pennes aux Pins", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVIF7DKLUF", + "ref": "TVIF7DKLUF", + "name": "Les Pennes-Mirabeau, 603 Chemin des Pennes aux Pins", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVIF7DKLUF", + "ref": "TVIF7DKLUF", + "name": "Les Pennes-Mirabeau, 603 Chemin des Pennes aux Pins", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVIF7DKLUF", + "ref": "TVIF7DKLUF", + "name": "Les Pennes-Mirabeau, 603 Chemin des Pennes aux Pins", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVIF7DKLUF", + "ref": "TVIF7DKLUF", + "name": "Les Pennes-Mirabeau, 603 Chemin des Pennes aux Pins", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVIF7DKLUF", + "ref": "TVIF7DKLUF", + "name": "Les Pennes-Mirabeau, 603 Chemin des Pennes aux Pins", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7394, + 45.97827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRPDMF5LYE0", + "ref": "RPDMF5LYE0", + "name": "Villefranche-sur-Saône, 733 Av. Théodore Braun", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7394, + 45.97827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRPDMF5LYE0", + "ref": "RPDMF5LYE0", + "name": "Villefranche-sur-Saône, 733 Av. Théodore Braun", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7394, + 45.97827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRPDMF5LYE0", + "ref": "RPDMF5LYE0", + "name": "Villefranche-sur-Saône, 733 Av. Théodore Braun", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.16122802, + 50.73713075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHNTCSOFD9", + "ref": "KHNTCSOFD9", + "name": "Tourcoing, Rue de Gand", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94386558, + 43.5386752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR8SVAECJXV", + "ref": "R8SVAECJXV", + "name": "Mandelieu-la-Napoule, Hotel Ilot Du Golf", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94386558, + 43.5386752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR8SVAECJXV", + "ref": "R8SVAECJXV", + "name": "Mandelieu-la-Napoule, Hotel Ilot Du Golf", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.16191, + 50.73734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHNTCSOFD9", + "ref": "KHNTCSOFD9", + "name": "Tourcoing, Rue de Gand", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.16122802, + 50.73713075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHNTCSOFD9", + "ref": "KHNTCSOFD9", + "name": "Tourcoing, Rue de Gand", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8719224, + 49.48156493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHNTCSOFD9", + "ref": "KHNTCSOFD9", + "name": "Tourcoing, Rue de Gand", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8719224, + 49.48156493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHNTCSOFD9", + "ref": "KHNTCSOFD9", + "name": "Tourcoing, Rue de Gand", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8719224, + 49.48156493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHNTCSOFD9", + "ref": "KHNTCSOFD9", + "name": "Tourcoing, Rue de Gand", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.16122802, + 50.73713075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHNTCSOFD9", + "ref": "KHNTCSOFD9", + "name": "Tourcoing, Rue de Gand", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.16122802, + 50.73713075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHNTCSOFD9", + "ref": "KHNTCSOFD9", + "name": "Tourcoing, Rue de Gand", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7394, + 45.97827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRPDMF5LYE0", + "ref": "RPDMF5LYE0", + "name": "Villefranche-sur-Saône, 733 Av. Théodore Braun", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.16122802, + 50.73713075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHNTCSOFD9", + "ref": "KHNTCSOFD9", + "name": "Tourcoing, Rue de Gand", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.16122802, + 50.73713075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHNTCSOFD9", + "ref": "KHNTCSOFD9", + "name": "Tourcoing, Rue de Gand", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.16122802, + 50.73713075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHNTCSOFD9", + "ref": "KHNTCSOFD9", + "name": "Tourcoing, Rue de Gand", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8719224, + 49.48156493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHNTCSOFD9", + "ref": "KHNTCSOFD9", + "name": "Tourcoing, Rue de Gand", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.16122802, + 50.73713075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHNTCSOFD9", + "ref": "KHNTCSOFD9", + "name": "Tourcoing, Rue de Gand", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.16122802, + 50.73713075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHNTCSOFD9", + "ref": "KHNTCSOFD9", + "name": "Tourcoing, Rue de Gand", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7394, + 45.97827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRPDMF5LYE0", + "ref": "RPDMF5LYE0", + "name": "Villefranche-sur-Saône, 733 Av. Théodore Braun", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7394, + 45.97827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRPDMF5LYE0", + "ref": "RPDMF5LYE0", + "name": "Villefranche-sur-Saône, 733 Av. Théodore Braun", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTVIF7DKLUF", + "ref": "TVIF7DKLUF", + "name": "Les Pennes-Mirabeau, 603 Chemin des Pennes aux Pins", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJAQ9DIPMFU", + "ref": "JAQ9DIPMFU", + "name": "Landivisiau, 137 Av. Maréchal Foch", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJAQ9DIPMFU", + "ref": "JAQ9DIPMFU", + "name": "Landivisiau, 137 Av. Maréchal Foch", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.33075422, + 49.37033692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQHFGR3GEVG", + "ref": "QHFGR3GEVG", + "name": "Intermarché, Belleu", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.80312534, + 49.13609064 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDKIVXKZFGA", + "ref": "DKIVXKZFGA", + "name": "Intermarché, Nanteuil le Haudoin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42526885, + 49.14977589 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDOAFWLQLHH", + "ref": "DOAFWLQLHH", + "name": "Intermarché, Lamorlaye", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800880408, + 49.13648941 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDKIVXKZFGA", + "ref": "DKIVXKZFGA", + "name": "Intermarché, Nanteuil le Haudoin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.80312534, + 49.13609064 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDKIVXKZFGA", + "ref": "DKIVXKZFGA", + "name": "Intermarché, Nanteuil le Haudoin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.80312534, + 49.13609064 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDKIVXKZFGA", + "ref": "DKIVXKZFGA", + "name": "Intermarché, Nanteuil le Haudoin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.80312534, + 49.13609064 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDKIVXKZFGA", + "ref": "DKIVXKZFGA", + "name": "Intermarché, Nanteuil le Haudoin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.80312534, + 49.13609064 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDKIVXKZFGA", + "ref": "DKIVXKZFGA", + "name": "Intermarché, Nanteuil le Haudoin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.80312534, + 49.13609064 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDKIVXKZFGA", + "ref": "DKIVXKZFGA", + "name": "Intermarché, Nanteuil le Haudoin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42526885, + 49.14977589 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDOAFWLQLHH", + "ref": "DOAFWLQLHH", + "name": "Intermarché, Lamorlaye", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.355598, + 49.399806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDBUNVRBU3K", + "ref": "DBUNVRBU3K", + "name": "Intermarché, Crouy", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42526885, + 49.14977589 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDOAFWLQLHH", + "ref": "DOAFWLQLHH", + "name": "Intermarché, Lamorlaye", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.355598, + 49.399806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDBUNVRBU3K", + "ref": "DBUNVRBU3K", + "name": "Intermarché, Crouy", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42526885, + 49.14977589 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDOAFWLQLHH", + "ref": "DOAFWLQLHH", + "name": "Intermarché, Lamorlaye", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29832077, + 48.79752977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTY2KJ0CUTI", + "ref": "TY2KJ0CUTI", + "name": "Bagneux, Charles de Gaulle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.351334, + 48.74368 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYZYQRLMOW", + "ref": "LYZYQRLMOW", + "name": "Rungis, Hôtel La Maison Blanche", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42526885, + 49.14977589 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDOAFWLQLHH", + "ref": "DOAFWLQLHH", + "name": "Intermarché, Lamorlaye", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29832077, + 48.79752977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTY2KJ0CUTI", + "ref": "TY2KJ0CUTI", + "name": "Bagneux, Charles de Gaulle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.351334, + 48.74368 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYZYQRLMOW", + "ref": "LYZYQRLMOW", + "name": "Rungis, Hôtel La Maison Blanche", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800880408, + 49.13648941 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDKIVXKZFGA", + "ref": "DKIVXKZFGA", + "name": "Intermarché, Nanteuil le Haudoin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22000316, + 48.88582386 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGQOVRUFGXB", + "ref": "GQOVRUFGXB", + "name": "Station service BP, Nantere", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJAQ9DIPMFU", + "ref": "JAQ9DIPMFU", + "name": "Landivisiau, 137 Av. Maréchal Foch", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJAQ9DIPMFU", + "ref": "JAQ9DIPMFU", + "name": "Landivisiau, 137 Av. Maréchal Foch", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468, + 48.51454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJAQ9DIPMFU", + "ref": "JAQ9DIPMFU", + "name": "Landivisiau, 137 Av. Maréchal Foch", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJAQ9DIPMFU", + "ref": "JAQ9DIPMFU", + "name": "Landivisiau, 137 Av. Maréchal Foch", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJAQ9DIPMFU", + "ref": "JAQ9DIPMFU", + "name": "Landivisiau, 137 Av. Maréchal Foch", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJAQ9DIPMFU", + "ref": "JAQ9DIPMFU", + "name": "Landivisiau, 137 Av. Maréchal Foch", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJAQ9DIPMFU", + "ref": "JAQ9DIPMFU", + "name": "Landivisiau, 137 Av. Maréchal Foch", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJAQ9DIPMFU", + "ref": "JAQ9DIPMFU", + "name": "Landivisiau, 137 Av. Maréchal Foch", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJAQ9DIPMFU", + "ref": "JAQ9DIPMFU", + "name": "Landivisiau, 137 Av. Maréchal Foch", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468, + 48.51454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJAQ9DIPMFU", + "ref": "JAQ9DIPMFU", + "name": "Landivisiau, 137 Av. Maréchal Foch", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJAQ9DIPMFU", + "ref": "JAQ9DIPMFU", + "name": "Landivisiau, 137 Av. Maréchal Foch", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22000316, + 48.88582386 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGQOVRUFGXB", + "ref": "GQOVRUFGXB", + "name": "Station service BP, Nantere", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66963736, + 46.8228002 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWRTQ7PSGYO", + "ref": "WRTQ7PSGYO", + "name": "Hôtel le Cerizay, Cerizay", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66963736, + 46.8228002 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWRTQ7PSGYO", + "ref": "WRTQ7PSGYO", + "name": "Hôtel le Cerizay, Cerizay", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90689544, + 49.22343788 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQ7UX0N0KS", + "ref": "FQ7UX0N0KS", + "name": "Netto, Crépy-en-Valois", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90689544, + 49.22343788 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQ7UX0N0KS", + "ref": "FQ7UX0N0KS", + "name": "Netto, Crépy-en-Valois", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90689544, + 49.22343788 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQ7UX0N0KS", + "ref": "FQ7UX0N0KS", + "name": "Netto, Crépy-en-Valois", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90689544, + 49.22343788 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQ7UX0N0KS", + "ref": "FQ7UX0N0KS", + "name": "Netto, Crépy-en-Valois", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42526885, + 49.14977589 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDOAFWLQLHH", + "ref": "DOAFWLQLHH", + "name": "Intermarché, Lamorlaye", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.33075422, + 49.37033692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQHFGR3GEVG", + "ref": "QHFGR3GEVG", + "name": "Intermarché, Belleu", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94386558, + 43.5386752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR8SVAECJXV", + "ref": "R8SVAECJXV", + "name": "Mandelieu-la-Napoule, Hotel Ilot Du Golf", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64138, + 48.8289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE6UKE8TVSU", + "ref": "E6UKE8TVSU", + "name": "Croissy-Beaubourg, avenue de la Soubriarde", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.89343597, + 42.67262319 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZU2CHSGYDT", + "ref": "ZU2CHSGYDT", + "name": "Chemin La Fauceille, Volvo Perpignan", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64138, + 48.8289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE6UKE8TVSU", + "ref": "E6UKE8TVSU", + "name": "Croissy-Beaubourg, avenue de la Soubriarde", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.44575301, + 48.63836796 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCCMOAYZWCU", + "ref": "CCMOAYZWCU", + "name": "Wasselonne, Cour du Château", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21187587, + 48.91193065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOWLLCAR", + "ref": "JSQOWLLCAR", + "name": "Nanterre, Wave Transport", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21187587, + 48.91193065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOWLLCAR", + "ref": "JSQOWLLCAR", + "name": "Nanterre, Wave Transport", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21187587, + 48.91193065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOWLLCAR", + "ref": "JSQOWLLCAR", + "name": "Nanterre, Wave Transport", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21187587, + 48.91193065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOWLLCAR", + "ref": "JSQOWLLCAR", + "name": "Nanterre, Wave Transport", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21187587, + 48.91193065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOWLLCAR", + "ref": "JSQOWLLCAR", + "name": "Nanterre, Wave Transport", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21187587, + 48.91193065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOWLLCAR", + "ref": "JSQOWLLCAR", + "name": "Nanterre, Wave Transport", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21187587, + 48.91193065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOWLLCAR", + "ref": "JSQOWLLCAR", + "name": "Nanterre, Wave Transport", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21187587, + 48.91193065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOWLLCAR", + "ref": "JSQOWLLCAR", + "name": "Nanterre, Wave Transport", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21187587, + 48.91193065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOWLLCAR", + "ref": "JSQOWLLCAR", + "name": "Nanterre, Wave Transport", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21187587, + 48.91193065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOWLLCAR", + "ref": "JSQOWLLCAR", + "name": "Nanterre, Wave Transport", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21187587, + 48.91193065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOWLLCAR", + "ref": "JSQOWLLCAR", + "name": "Nanterre, Wave Transport", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21187587, + 48.91193065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOWLLCAR", + "ref": "JSQOWLLCAR", + "name": "Nanterre, Wave Transport", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21187587, + 48.91193065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOWLLCAR", + "ref": "JSQOWLLCAR", + "name": "Nanterre, Wave Transport", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21187587, + 48.91193065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOWLLCAR", + "ref": "JSQOWLLCAR", + "name": "Nanterre, Wave Transport", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21187587, + 48.91193065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOWLLCAR", + "ref": "JSQOWLLCAR", + "name": "Nanterre, Wave Transport", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21187587, + 48.91193065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJSQOWLLCAR", + "ref": "JSQOWLLCAR", + "name": "Nanterre, Wave Transport", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3667517, + 43.12493158 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYXF37NMTW", + "ref": "MYXF37NMTW", + "name": "Bormes-Les-Mimosas, Yacht Club International", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3667517, + 43.12493158 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYXF37NMTW", + "ref": "MYXF37NMTW", + "name": "Bormes-Les-Mimosas, Yacht Club International", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.44575301, + 48.63836796 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCCMOAYZWCU", + "ref": "CCMOAYZWCU", + "name": "Wasselonne, Cour du Château", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.44575301, + 48.63836796 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCCMOAYZWCU", + "ref": "CCMOAYZWCU", + "name": "Wasselonne, Cour du Château", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.44575301, + 48.63836796 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCCMOAYZWCU", + "ref": "CCMOAYZWCU", + "name": "Wasselonne, Cour du Château", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31052875, + 43.2043724 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAMORX8BZO", + "ref": "LAMORX8BZO", + "name": "Volvo, Carcassonne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.89343597, + 42.67262319 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZU2CHSGYDT", + "ref": "ZU2CHSGYDT", + "name": "Chemin La Fauceille, Volvo Perpignan", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.74049362, + 48.50173471 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDAWXONRZ2Q", + "ref": "DAWXONRZ2Q", + "name": "Saint Brieuc, rue Pierre Gilles de Gennes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.74049362, + 48.50173471 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDAWXONRZ2Q", + "ref": "DAWXONRZ2Q", + "name": "Saint Brieuc, rue Pierre Gilles de Gennes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.74049362, + 48.50173471 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDAWXONRZ2Q", + "ref": "DAWXONRZ2Q", + "name": "Saint Brieuc, rue Pierre Gilles de Gennes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25805072, + 43.34891641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVK0TQGFDSG", + "ref": "VK0TQGFDSG", + "name": "Volvo, Béziers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25805072, + 43.34891641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVK0TQGFDSG", + "ref": "VK0TQGFDSG", + "name": "Volvo, Béziers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25805072, + 43.34891641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVK0TQGFDSG", + "ref": "VK0TQGFDSG", + "name": "Volvo, Béziers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25805072, + 43.34891641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVK0TQGFDSG", + "ref": "VK0TQGFDSG", + "name": "Volvo, Béziers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31052875, + 43.2043724 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAMORX8BZO", + "ref": "LAMORX8BZO", + "name": "Volvo, Carcassonne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.13137, + 48.8092 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVJBXXF", + "ref": "VJBXXF", + "name": "Waldorf Versailles, Boulevard de la Reine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.380722, + 48.022035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXYEYOSNA3V", + "ref": "XYEYOSNA3V", + "name": "Sainte-Croix-en-Plaine, Rue Jean Mermoz", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.380722, + 48.022035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXYEYOSNA3V", + "ref": "XYEYOSNA3V", + "name": "Sainte-Croix-en-Plaine, Rue Jean Mermoz", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.380722, + 48.022035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXYEYOSNA3V", + "ref": "XYEYOSNA3V", + "name": "Sainte-Croix-en-Plaine, Rue Jean Mermoz", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.380722, + 48.022035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXYEYOSNA3V", + "ref": "XYEYOSNA3V", + "name": "Sainte-Croix-en-Plaine, Rue Jean Mermoz", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.380722, + 48.022035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXYEYOSNA3V", + "ref": "XYEYOSNA3V", + "name": "Sainte-Croix-en-Plaine, Rue Jean Mermoz", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.380722, + 48.022035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXYEYOSNA3V", + "ref": "XYEYOSNA3V", + "name": "Sainte-Croix-en-Plaine, Rue Jean Mermoz", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24076, + 48.9003 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPA2YDVV83M", + "ref": "PA2YDVV83M", + "name": "Courbevoie, Vulco Truck Services", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.13137, + 48.8092 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVJBXXF", + "ref": "VJBXXF", + "name": "Waldorf Versailles, Boulevard de la Reine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3667517, + 43.12493158 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYXF37NMTW", + "ref": "MYXF37NMTW", + "name": "Bormes-Les-Mimosas, Yacht Club International", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3667517, + 43.12493158 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYXF37NMTW", + "ref": "MYXF37NMTW", + "name": "Bormes-Les-Mimosas, Yacht Club International", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3667517, + 43.12493158 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYXF37NMTW", + "ref": "MYXF37NMTW", + "name": "Bormes-Les-Mimosas, Yacht Club International", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64138, + 48.8289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE6UKE8TVSU", + "ref": "E6UKE8TVSU", + "name": "Croissy-Beaubourg, avenue de la Soubriarde", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25574, + 45.5513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBRUTSG", + "ref": "BRUTSG", + "name": "Issoire, Zone commerciale", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25574, + 45.5513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBRUTSG", + "ref": "BRUTSG", + "name": "Issoire, Zone commerciale", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25574, + 45.5513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBRUTSG", + "ref": "BRUTSG", + "name": "Issoire, Zone commerciale", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25574, + 45.5513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBRUTSG", + "ref": "BRUTSG", + "name": "Issoire, Zone commerciale", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64138, + 48.8289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE6UKE8TVSU", + "ref": "E6UKE8TVSU", + "name": "Croissy-Beaubourg, avenue de la Soubriarde", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64138, + 48.8289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE6UKE8TVSU", + "ref": "E6UKE8TVSU", + "name": "Croissy-Beaubourg, avenue de la Soubriarde", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64138, + 48.8289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE6UKE8TVSU", + "ref": "E6UKE8TVSU", + "name": "Croissy-Beaubourg, avenue de la Soubriarde", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64138, + 48.8289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE6UKE8TVSU", + "ref": "E6UKE8TVSU", + "name": "Croissy-Beaubourg, avenue de la Soubriarde", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64138, + 48.8289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE6UKE8TVSU", + "ref": "E6UKE8TVSU", + "name": "Croissy-Beaubourg, avenue de la Soubriarde", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64138, + 48.8289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE6UKE8TVSU", + "ref": "E6UKE8TVSU", + "name": "Croissy-Beaubourg, avenue de la Soubriarde", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64138, + 48.8289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE6UKE8TVSU", + "ref": "E6UKE8TVSU", + "name": "Croissy-Beaubourg, avenue de la Soubriarde", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64138, + 48.8289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE6UKE8TVSU", + "ref": "E6UKE8TVSU", + "name": "Croissy-Beaubourg, avenue de la Soubriarde", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64138, + 48.8289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE6UKE8TVSU", + "ref": "E6UKE8TVSU", + "name": "Croissy-Beaubourg, avenue de la Soubriarde", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64138, + 48.8289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE6UKE8TVSU", + "ref": "E6UKE8TVSU", + "name": "Croissy-Beaubourg, avenue de la Soubriarde", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64138, + 48.8289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE6UKE8TVSU", + "ref": "E6UKE8TVSU", + "name": "Croissy-Beaubourg, avenue de la Soubriarde", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3667517, + 43.12493158 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYXF37NMTW", + "ref": "MYXF37NMTW", + "name": "Bormes-Les-Mimosas, Yacht Club International", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381, + 48.7077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCDGJJ", + "ref": "SCDGJJ", + "name": "ZAC du Noyer aux Perdrix", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.24298763, + 49.38597488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCG80SXBHI", + "ref": "SCG80SXBHI", + "name": "Basse-Ham, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95523387, + 49.04616314 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQWFFJSO2PP", + "ref": "QWFFJSO2PP", + "name": "Epernay, Parking Rempart-Perrier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.101503, + 47.810705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIN9KDH82BXV2", + "ref": "LLIN9KDH82BXV2", + "name": "Thann, Place Joffre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.7171, + -21.0381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSTBENOITJAURES", + "ref": "stbenoitjaures", + "name": "TotalEnergies, Saint-Benoit", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10489, + 49.3621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQZARA0WGY", + "ref": "BQZARA0WGY", + "name": "Thionville, Parking P+R Metzange", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10489, + 49.3621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQZARA0WGY", + "ref": "BQZARA0WGY", + "name": "Thionville, Parking P+R Metzange", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10489, + 49.3621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQZARA0WGY", + "ref": "BQZARA0WGY", + "name": "Thionville, Parking P+R Metzange", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.456722, + 43.321568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJCTDVDU3YIRJ", + "ref": "LLJCTDVDU3YIRJ", + "name": "Villeneuve-Minervois, Tohmelec", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.49691, + -20.9015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCNMYXQ1FIG", + "ref": "CNMYXQ1FIG", + "name": "TotalEnergies, Bd Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.257, + -21.0889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSALINETAMARIN", + "ref": "salinetamarin", + "name": "TotalEnergies, Tamarins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4701, + -20.8856 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSTECLOTILDE", + "ref": "steclotilde", + "name": "TotalEnergies, Butor", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5675, + -20.8982 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAINTEMARIEN2", + "ref": "saintemarien2", + "name": "TotalEnergies, Ste-Marie-les-Cafés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5675, + -20.8982 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAINTEMARIEN2", + "ref": "saintemarien2", + "name": "TotalEnergies, Ste-Marie-les-Cafés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.7659, + -21.3598 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSTPHILIPREUNI", + "ref": "stphilipreuni", + "name": "TotalEnergies, Saint-Philippe", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.257, + -21.0889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSALINETAMARIN", + "ref": "salinetamarin", + "name": "TotalEnergies, Tamarins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.49691, + -20.9015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCNMYXQ1FIG", + "ref": "CNMYXQ1FIG", + "name": "TotalEnergies, Bd Sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.446, + -21.3213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPIERREFONDSRN", + "ref": "pierrefondsrn", + "name": "TotalEnergies, Pierrefond", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.447557, + -20.883698 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSKSFD8QFSZ", + "ref": "SKSFD8QFSZ", + "name": "Total, Lacaussade", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.503491, + -21.257457 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBMMQ9BPZYD", + "ref": "BMMQ9BPZYD", + "name": "TotalEnergies, Piscine", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.2237, + -21.0401 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSTGILLESTAMA", + "ref": "stgillestama", + "name": "TotalEnergies, Théâtre", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4001, + -21.2831 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSTPIERRELEGOL", + "ref": "stpierrelegol", + "name": "TotalEnergies, Le Gol", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3191, + -20.9499 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLEPORTZAC2000", + "ref": "leportzac2000", + "name": "TotalEnergies, ZAC 2000", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5014, + -21.28043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ2WYHZVZ7P", + "ref": "J2WYHZVZ7P", + "name": "TotalEnergies, La Châtoire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10489, + 49.3621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQZARA0WGY", + "ref": "BQZARA0WGY", + "name": "Thionville, Parking P+R Metzange", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1106, + 49.3569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJYFTYHFQUW", + "ref": "JYFTYHFQUW", + "name": "Thionville, Aire de covoiturage de Buchel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1106, + 49.3569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJYFTYHFQUW", + "ref": "JYFTYHFQUW", + "name": "Thionville, Aire de covoiturage de Buchel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86415, + 47.6568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PZCPMXK", + "ref": "ZCPMXK", + "name": "Offemont, Poste", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92004, + 47.4895 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PHFZCWL", + "ref": "HFZCWL", + "name": "Beaucourt, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92004, + 47.4895 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PHFZCWL", + "ref": "HFZCWL", + "name": "Beaucourt, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84753, + 47.7303 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PLVMKNE", + "ref": "LVMKNE", + "name": "Rougegoutte, SMRC Automotive", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86469, + 47.587 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PNQKUBV", + "ref": "NQKUBV", + "name": "Sevenans, Parking étudiant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86469, + 47.587 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PNQKUBV", + "ref": "NQKUBV", + "name": "Sevenans, Parking étudiant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86469, + 47.587 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PNQKUBV", + "ref": "NQKUBV", + "name": "Sevenans, Parking étudiant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86469, + 47.587 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PNQKUBV", + "ref": "NQKUBV", + "name": "Sevenans, Parking étudiant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86415, + 47.6568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PZCPMXK", + "ref": "ZCPMXK", + "name": "Offemont, Poste", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86415, + 47.6568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PZCPMXK", + "ref": "ZCPMXK", + "name": "Offemont, Poste", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39025, + 42.544 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1P58D90DAA7C461", + "ref": "58d90daa7c461", + "name": "Vernet les Bains, Thermes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17805, + 45.6899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQPWPW", + "ref": "FQPWPW", + "name": "Champniers, ZAC Montagnes Ouest", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-08", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2021-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17805, + 45.6899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQPWPW", + "ref": "FQPWPW", + "name": "Champniers, ZAC Montagnes Ouest", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2020-08-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17805, + 45.6899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQPWPW", + "ref": "FQPWPW", + "name": "Champniers, ZAC Montagnes Ouest", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2021-08-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17805, + 45.6899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQPWPW", + "ref": "FQPWPW", + "name": "Champniers, ZAC Montagnes Ouest", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17805, + 45.6899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQPWPW", + "ref": "FQPWPW", + "name": "Champniers, ZAC Montagnes Ouest", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-08", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2020-08-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17805, + 45.6899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQPWPW", + "ref": "FQPWPW", + "name": "Champniers, ZAC Montagnes Ouest", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-08-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17805, + 45.6899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQPWPW", + "ref": "FQPWPW", + "name": "Champniers, ZAC Montagnes Ouest", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-08", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39025, + 42.544 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1P58D90DAA7C461", + "ref": "58d90daa7c461", + "name": "Vernet les Bains, Thermes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.6487, + -20.9511 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSTANDREIDF", + "ref": "standreidf", + "name": "TotalEnergies, Saint-André", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.618326, + -20.914099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSHRWKOFQRZ", + "ref": "SHRWKOFQRZ", + "name": "Sainte Suzanne, Burger King La Marine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95061, + 49.0363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWOJ0SHUXRA", + "ref": "WOJ0SHUXRA", + "name": "Epernay, Parking Raoul Chandon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.618326, + -20.914099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSHRWKOFQRZ", + "ref": "SHRWKOFQRZ", + "name": "Sainte Suzanne, Burger King La Marine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42556, + 43.64235 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWFJRFUKQ6R", + "ref": "WFJRFUKQ6R", + "name": "Toulouse, zone 1", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42556, + 43.64235 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWFJRFUKQ6R", + "ref": "WFJRFUKQ6R", + "name": "Toulouse, zone 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.581165, + 50.52617 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGPB1IX5XMY", + "ref": "GPB1IX5XMY", + "name": "Touquet, Boulevard de la Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.58715882, + 50.520311 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGBTVFCOXRK", + "ref": "GBTVFCOXRK", + "name": "Touquet, Place Edouard VII", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.589047, + 50.526286 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQAHLNICPOS", + "ref": "QAHLNICPOS", + "name": "Touquet, Avenue Quentovic", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.595679, + 50.520015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP2SBBU9AIE", + "ref": "P2SBBU9AIE", + "name": "Touquet, Avenue de l'Hippodrome", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.58715882, + 50.520311 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGBTVFCOXRK", + "ref": "GBTVFCOXRK", + "name": "Touquet, Place Edouard VII", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.595679, + 50.520015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP2SBBU9AIE", + "ref": "P2SBBU9AIE", + "name": "Touquet, Avenue de l'Hippodrome", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.57934, + 50.516639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVLIGQ2PRQT", + "ref": "VLIGQ2PRQT", + "name": "Touquet, Boulevard Jules Pouget", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.57934, + 50.516639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVLIGQ2PRQT", + "ref": "VLIGQ2PRQT", + "name": "Touquet, Boulevard Jules Pouget", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.58046484, + 50.52363179 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIOMGH1LYJJ", + "ref": "IOMGH1LYJJ", + "name": "Touquet, Digue-promenade des Princes de Monaco", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.58046484, + 50.52363179 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIOMGH1LYJJ", + "ref": "IOMGH1LYJJ", + "name": "Touquet, Digue-promenade des Princes de Monaco", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.581165, + 50.52617 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGPB1IX5XMY", + "ref": "GPB1IX5XMY", + "name": "Touquet, Boulevard de la Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.618406, + 50.514246 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW31RKKRAWS", + "ref": "W31RKKRAWS", + "name": "Touquet, Avenue du Commandant Maurice Seneschal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.589047, + 50.526286 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQAHLNICPOS", + "ref": "QAHLNICPOS", + "name": "Touquet, Avenue Quentovic", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.618406, + 50.514246 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW31RKKRAWS", + "ref": "W31RKKRAWS", + "name": "Touquet, Avenue du Commandant Maurice Seneschal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.595679, + 50.520015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNW2L9MBAJT", + "ref": "NW2L9MBAJT", + "name": "Touquet, Avenue de l'Hippodrome", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.58715882, + 50.520311 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIOA9IKAACX", + "ref": "IOA9IKAACX", + "name": "Touquet, Place Edouard VII", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.507444, + 47.608292 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQGKCHS3PHE", + "ref": "QGKCHS3PHE", + "name": "Blotzheim, Track Complex", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.425368, + 43.64393 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW9MMBJJDP7", + "ref": "W9MMBJJDP7", + "name": "Toulouse, zone 2", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42556, + 43.64235 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWFJRFUKQ6R", + "ref": "WFJRFUKQ6R", + "name": "Toulouse, zone 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.425368, + 43.64393 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW9MMBJJDP7", + "ref": "W9MMBJJDP7", + "name": "Toulouse, zone 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3261, + -20.9621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPOSSESSJOLIZAC", + "ref": "possessjolizac", + "name": "TotalEnergies, Moulin Joli", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.618326, + -20.914099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSHRWKOFQRZ", + "ref": "SHRWKOFQRZ", + "name": "Sainte Suzanne, Burger King La Marine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.618326, + -20.914099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSHRWKOFQRZ", + "ref": "SHRWKOFQRZ", + "name": "Sainte Suzanne, Burger King La Marine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.618326, + -20.914099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZPQVODGTYL", + "ref": "ZPQVODGTYL", + "name": "TotalEnergies, La Marine", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.618326, + -20.914099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZPQVODGTYL", + "ref": "ZPQVODGTYL", + "name": "TotalEnergies, La Marine", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.618326, + -20.914099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZPQVODGTYL", + "ref": "ZPQVODGTYL", + "name": "TotalEnergies, La Marine", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.618326, + -20.914099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZPQVODGTYL", + "ref": "ZPQVODGTYL", + "name": "TotalEnergies, La Marine", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.618326, + -20.914099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZPQVODGTYL", + "ref": "ZPQVODGTYL", + "name": "TotalEnergies, La Marine", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.64261895, + -20.9385849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHLHDS2GGN", + "ref": "THLHDS2GGN", + "name": "TotalEnergies, Begue", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.6423, + -20.9323 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSTPIERREBOIS", + "ref": "stpierrebois", + "name": "TotalEnergies, Cambuston", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42556, + 43.64235 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWFJRFUKQ6R", + "ref": "WFJRFUKQ6R", + "name": "Toulouse, zone 1", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.64261895, + -20.9385849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHLHDS2GGN", + "ref": "THLHDS2GGN", + "name": "TotalEnergies, Begue", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.6787, + -20.9961 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBRASPANON2002", + "ref": "braspanon2002", + "name": "TotalEnergies, Bras-Panon", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88729, + 48.6753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHUXQMH", + "ref": "HUXQMH", + "name": "Toul, Ilôt des Teinturiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.89333, + 48.6713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PATVPPC", + "ref": "ATVPPC", + "name": "Toul, Parking Michonette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.89333, + 48.6713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PATVPPC", + "ref": "ATVPPC", + "name": "Toul, Parking Michonette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88729, + 48.6753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHUXQMH", + "ref": "HUXQMH", + "name": "Toul, Ilôt des Teinturiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.425368, + 43.64393 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW9MMBJJDP7", + "ref": "W9MMBJJDP7", + "name": "Toulouse, zone 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.425368, + 43.64393 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW9MMBJJDP7", + "ref": "W9MMBJJDP7", + "name": "Toulouse, zone 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84753, + 47.7303 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PLVMKNE", + "ref": "LVMKNE", + "name": "Rougegoutte, SMRC Automotive", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92004, + 47.4895 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PHFZCWL", + "ref": "HFZCWL", + "name": "Beaucourt, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84753, + 47.7303 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PLVMKNE", + "ref": "LVMKNE", + "name": "Rougegoutte, SMRC Automotive", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84753, + 47.7303 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PLVMKNE", + "ref": "LVMKNE", + "name": "Rougegoutte, SMRC Automotive", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86128, + 47.6411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PPWMZSD", + "ref": "PWMZSD", + "name": "Belfort, Rue de la Cavalerie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82891, + 47.6347 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PXCGVER", + "ref": "XCGVER", + "name": "Essert, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82891, + 47.6347 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PXCGVER", + "ref": "XCGVER", + "name": "Essert, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82891, + 47.6347 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PXCGVER", + "ref": "XCGVER", + "name": "Essert, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92317, + 47.7177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PLLNRGU", + "ref": "LLNRGU", + "name": "Étueffont, Piscine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92317, + 47.7177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PLLNRGU", + "ref": "LLNRGU", + "name": "Étueffont, Piscine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92317, + 47.7177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PLLNRGU", + "ref": "LLNRGU", + "name": "Étueffont, Piscine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.83139, + 47.6221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PARYNXY", + "ref": "ARYNXY", + "name": "Bavilliers, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.83139, + 47.6221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PARYNXY", + "ref": "ARYNXY", + "name": "Bavilliers, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.83139, + 47.6221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PARYNXY", + "ref": "ARYNXY", + "name": "Bavilliers, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.83139, + 47.6221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PARYNXY", + "ref": "ARYNXY", + "name": "Bavilliers, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81418, + 47.6841 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PTAEZPA", + "ref": "TAEZPA", + "name": "Sermamagny, Malsaucy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86136, + 47.6168 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PYUZJTE", + "ref": "YUZJTE", + "name": "Danjoutin, Parking Ibis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86136, + 47.6168 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PYUZJTE", + "ref": "YUZJTE", + "name": "Danjoutin, Parking Ibis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81418, + 47.6841 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PTAEZPA", + "ref": "TAEZPA", + "name": "Sermamagny, Malsaucy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92317, + 47.7177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PLLNRGU", + "ref": "LLNRGU", + "name": "Étueffont, Piscine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81418, + 47.6841 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PTAEZPA", + "ref": "TAEZPA", + "name": "Sermamagny, Malsaucy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81418, + 47.6841 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PTAEZPA", + "ref": "TAEZPA", + "name": "Sermamagny, Malsaucy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85294, + 47.5574 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PEGPJSR", + "ref": "EGPJSR", + "name": "Châtenois-les-Forges, Complexe Sportif", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86128, + 47.6411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PPWMZSD", + "ref": "PWMZSD", + "name": "Belfort, Rue de la Cavalerie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86128, + 47.6411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PPWMZSD", + "ref": "PWMZSD", + "name": "Belfort, Rue de la Cavalerie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86128, + 47.6411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PPWMZSD", + "ref": "PWMZSD", + "name": "Belfort, Rue de la Cavalerie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8633002, + 47.63998 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PSXHLTOEYHV", + "ref": "SXHLTOEYHV", + "name": "Belfort, rue Georges Pompidou", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.23530801, + 47.62172388 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISUCBTJ2EA96", + "ref": "LLISUCBTJ2EA96", + "name": "Altkirch, Place Xavier Jourdain", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.23530801, + 47.62172388 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLISUCBTJ2EA96", + "ref": "LLISUCBTJ2EA96", + "name": "Altkirch, Place Xavier Jourdain", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.919325, + 47.641882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PAGKHOMVXPL", + "ref": "AGKHOMVXPL", + "name": "Bessoncourt, Avenue du tilleul", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.919325, + 47.641882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PAGKHOMVXPL", + "ref": "AGKHOMVXPL", + "name": "Bessoncourt, Avenue du tilleul", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.919325, + 47.641882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PAGKHOMVXPL", + "ref": "AGKHOMVXPL", + "name": "Bessoncourt, Avenue du tilleul", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.919325, + 47.641882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PAGKHOMVXPL", + "ref": "AGKHOMVXPL", + "name": "Bessoncourt, Avenue du tilleul", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.919325, + 47.641882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PAGKHOMVXPL", + "ref": "AGKHOMVXPL", + "name": "Bessoncourt, Avenue du tilleul", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8633002, + 47.63998 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PSXHLTOEYHV", + "ref": "SXHLTOEYHV", + "name": "Belfort, rue Georges Pompidou", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8633002, + 47.63998 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PSXHLTOEYHV", + "ref": "SXHLTOEYHV", + "name": "Belfort, rue Georges Pompidou", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96892, + 47.7327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PKCTAPV", + "ref": "KCTAPV", + "name": "Rougemont-le-Château, Ancienne gare", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.919325, + 47.641882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PAGKHOMVXPL", + "ref": "AGKHOMVXPL", + "name": "Bessoncourt, Avenue du tilleul", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8633002, + 47.63998 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PSXHLTOEYHV", + "ref": "SXHLTOEYHV", + "name": "Belfort, rue Georges Pompidou", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96892, + 47.7327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PKCTAPV", + "ref": "KCTAPV", + "name": "Rougemont-le-Château, Ancienne gare", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96892, + 47.7327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PKCTAPV", + "ref": "KCTAPV", + "name": "Rougemont-le-Château, Ancienne gare", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82891, + 47.6347 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PXCGVER", + "ref": "XCGVER", + "name": "Essert, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96892, + 47.7327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PKCTAPV", + "ref": "KCTAPV", + "name": "Rougemont-le-Château, Ancienne gare", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86136, + 47.6168 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PYUZJTE", + "ref": "YUZJTE", + "name": "Danjoutin, Parking Ibis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86136, + 47.6168 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PYUZJTE", + "ref": "YUZJTE", + "name": "Danjoutin, Parking Ibis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85294, + 47.5574 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PEGPJSR", + "ref": "EGPJSR", + "name": "Châtenois-les-Forges, Complexe Sportif", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.93575, + 47.5493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PBLJKQY", + "ref": "BLJKQY", + "name": "Morvillars, Gare", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85294, + 47.5574 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PEGPJSR", + "ref": "EGPJSR", + "name": "Châtenois-les-Forges, Complexe Sportif", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82794, + 47.7413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PXLLFTL", + "ref": "XLLFTL", + "name": "Giromagny, Place Général de Gaulle", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86137, + 47.639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PZEDVRB", + "ref": "ZEDVRB", + "name": "Belfort, Place de la République", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92004, + 47.4895 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PHFZCWL", + "ref": "HFZCWL", + "name": "Beaucourt, Super U", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.99797, + 47.5083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PNJZRFY", + "ref": "NJZRFY", + "name": "Delle, rue du Château", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.99797, + 47.5083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PNJZRFY", + "ref": "NJZRFY", + "name": "Delle, rue du Château", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.99797, + 47.5083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PNJZRFY", + "ref": "NJZRFY", + "name": "Delle, rue du Château", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.99797, + 47.5083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PNJZRFY", + "ref": "NJZRFY", + "name": "Delle, rue du Château", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82794, + 47.7413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PXLLFTL", + "ref": "XLLFTL", + "name": "Giromagny, Place Général de Gaulle", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82794, + 47.7413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PXLLFTL", + "ref": "XLLFTL", + "name": "Giromagny, Place Général de Gaulle", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86114, + 47.6073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PDYDNZG", + "ref": "DYDNZG", + "name": "Andelnans, Leroy Merlin", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8492, + 47.6497 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PGEKNCN", + "ref": "GEKNCN", + "name": "Belfort, Avenue d'Alsace", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.89554, + 47.5837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PHMRLQZ", + "ref": "HMRLQZ", + "name": "Meroux-Moval, La Jonxion", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.89554, + 47.5837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PHMRLQZ", + "ref": "HMRLQZ", + "name": "Meroux-Moval, La Jonxion", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86415, + 47.6568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PZCPMXK", + "ref": "ZCPMXK", + "name": "Offemont, Poste", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.89564, + 47.5838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PHMRLQZ", + "ref": "HMRLQZ", + "name": "Meroux-Moval, La Jonxion", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86114, + 47.6073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PDYDNZG", + "ref": "DYDNZG", + "name": "Andelnans, Leroy Merlin", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86114, + 47.6073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PDYDNZG", + "ref": "DYDNZG", + "name": "Andelnans, Leroy Merlin", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.89564, + 47.5838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PHMRLQZ", + "ref": "HMRLQZ", + "name": "Meroux-Moval, La Jonxion", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82794, + 47.7413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PXLLFTL", + "ref": "XLLFTL", + "name": "Giromagny, Place Général de Gaulle", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86137, + 47.639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PZEDVRB", + "ref": "ZEDVRB", + "name": "Belfort, Place de la République", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86137, + 47.639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PZEDVRB", + "ref": "ZEDVRB", + "name": "Belfort, Place de la République", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.99513, + 47.6106 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PXURZAM", + "ref": "XURZAM", + "name": "Montreux-Château", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.93591, + 47.5493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PBLJKQY", + "ref": "BLJKQY", + "name": "Morvillars, Gare", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.99513, + 47.6106 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PXURZAM", + "ref": "XURZAM", + "name": "Montreux-Château", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85294, + 47.5574 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PEGPJSR", + "ref": "EGPJSR", + "name": "Châtenois-les-Forges, Complexe Sportif", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85343, + 47.6415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PXDHKLG", + "ref": "XDHKLG", + "name": "Belfort, Place de la Résistance", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85355, + 47.6415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PXDHKLG", + "ref": "XDHKLG", + "name": "Belfort, Place de la Résistance", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85355, + 47.6415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PXDHKLG", + "ref": "XDHKLG", + "name": "Belfort, Place de la Résistance", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85343, + 47.6415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PXDHKLG", + "ref": "XDHKLG", + "name": "Belfort, Place de la Résistance", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.93575, + 47.5493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PBLJKQY", + "ref": "BLJKQY", + "name": "Morvillars, Gare", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.93591, + 47.5493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PBLJKQY", + "ref": "BLJKQY", + "name": "Morvillars, Gare", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8492, + 47.6497 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PGEKNCN", + "ref": "GEKNCN", + "name": "Belfort, Avenue d'Alsace", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.99513, + 47.6106 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PXURZAM", + "ref": "XURZAM", + "name": "Montreux-Château", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8492, + 47.6497 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PGEKNCN", + "ref": "GEKNCN", + "name": "Belfort, Avenue d'Alsace", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8492, + 47.6497 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PGEKNCN", + "ref": "GEKNCN", + "name": "Belfort, Avenue d'Alsace", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84058, + 47.6449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PUNQYWG", + "ref": "UNQYWG", + "name": "Belfort, Avenue du Maréchal Juin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84058, + 47.6449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PUNQYWG", + "ref": "UNQYWG", + "name": "Belfort, Avenue du Maréchal Juin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84058, + 47.6449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PUNQYWG", + "ref": "UNQYWG", + "name": "Belfort, Avenue du Maréchal Juin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84058, + 47.6449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PUNQYWG", + "ref": "UNQYWG", + "name": "Belfort, Avenue du Maréchal Juin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86137, + 47.639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PZEDVRB", + "ref": "ZEDVRB", + "name": "Belfort, Place de la République", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.99513, + 47.6106 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS90PXURZAM", + "ref": "XURZAM", + "name": "Montreux-Château", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33566, + 48.8517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHGYDHN", + "ref": "HGYDHN", + "name": "Paris, Parking Marché Saint-Germain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33566, + 48.8517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHGYDHN", + "ref": "HGYDHN", + "name": "Paris, Parking Marché Saint-Germain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56499, + 44.8355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDPDFCD", + "ref": "DPDFCD", + "name": "Bordeaux, Parking Salinières", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.540882, + 45.313778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMDWQISHYA", + "ref": "HMDWQISHYA", + "name": "Les Belleville, Les Ménuires, Rue des Bruyères", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5753071, + 45.29810533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLT9ZDLYLLD", + "ref": "LT9ZDLYLLD", + "name": "Les Belleville, Parking P2 rue du Soleil", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58031545, + 45.29836569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSEBLOVH1UF", + "ref": "SEBLOVH1UF", + "name": "Les Belleville, Parking P1 Grande rue", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58031545, + 45.29836569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSEBLOVH1UF", + "ref": "SEBLOVH1UF", + "name": "Les Belleville, Parking P1 Grande rue", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58031545, + 45.29836569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSEBLOVH1UF", + "ref": "SEBLOVH1UF", + "name": "Les Belleville, Parking P1 Grande rue", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58031545, + 45.29836569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSEBLOVH1UF", + "ref": "SEBLOVH1UF", + "name": "Les Belleville, Parking P1 Grande rue", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.540882, + 45.313778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMDWQISHYA", + "ref": "HMDWQISHYA", + "name": "Les Belleville, Les Ménuires, Rue des Bruyères", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.540882, + 45.313778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMDWQISHYA", + "ref": "HMDWQISHYA", + "name": "Les Belleville, Les Ménuires, Rue des Bruyères", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.540882, + 45.313778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMDWQISHYA", + "ref": "HMDWQISHYA", + "name": "Les Belleville, Les Ménuires, Rue des Bruyères", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5753071, + 45.29810533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLT9ZDLYLLD", + "ref": "LT9ZDLYLLD", + "name": "Les Belleville, Parking P2 rue du Soleil", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58031545, + 45.29836569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSEBLOVH1UF", + "ref": "SEBLOVH1UF", + "name": "Les Belleville, Parking P1 Grande rue", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58031545, + 45.29836569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSEBLOVH1UF", + "ref": "SEBLOVH1UF", + "name": "Les Belleville, Parking P1 Grande rue", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.540882, + 45.313778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMDWQISHYA", + "ref": "HMDWQISHYA", + "name": "Les Belleville, Les Ménuires, Rue des Bruyères", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1963, + 45.6705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTDFPZ", + "ref": "BTDFPZ", + "name": "Van Genechten Angoulême - Clientèle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1963, + 45.6705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTDFPZ", + "ref": "BTDFPZ", + "name": "Van Genechten Angoulême - Clientèle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1296, + 48.8035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWYRLXZ", + "ref": "WYRLXZ", + "name": "Versailles, Europe", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1296, + 48.8035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWYRLXZ", + "ref": "WYRLXZ", + "name": "Versailles, Europe", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1296, + 48.8035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWYRLXZ", + "ref": "WYRLXZ", + "name": "Versailles, Europe", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1296, + 48.8035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWYRLXZ", + "ref": "WYRLXZ", + "name": "Versailles, Europe", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2669, + 45.5527 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLQAADPOMW", + "ref": "XLQAADPOMW", + "name": "Issoire, Vessely Quincaillerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5753071, + 45.29810533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLT9ZDLYLLD", + "ref": "LT9ZDLYLLD", + "name": "Les Belleville, Parking P2 rue du Soleil", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5753071, + 45.29810533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLT9ZDLYLLD", + "ref": "LT9ZDLYLLD", + "name": "Les Belleville, Parking P2 rue du Soleil", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.540882, + 45.313778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMDWQISHYA", + "ref": "HMDWQISHYA", + "name": "Les Belleville, Les Ménuires, Rue des Bruyères", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5362314, + 45.33017124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXMFRVU", + "ref": "XMFRVU", + "name": "Les Belleville, Avenue de la Croisette", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.540882, + 45.313778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMDWQISHYA", + "ref": "HMDWQISHYA", + "name": "Les Belleville, Les Ménuires, Rue des Bruyères", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58357924, + 45.29923357 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWDHVUHHABK", + "ref": "WDHVUHHABK", + "name": "Les Belleville, Parking P0 rue de la Boucle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5362314, + 45.33017124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXMFRVU", + "ref": "XMFRVU", + "name": "Les Belleville, Avenue de la Croisette", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5362314, + 45.33017124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXMFRVU", + "ref": "XMFRVU", + "name": "Les Belleville, Avenue de la Croisette", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58357924, + 45.29923357 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWDHVUHHABK", + "ref": "WDHVUHHABK", + "name": "Les Belleville, Parking P0 rue de la Boucle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5753071, + 45.29810533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLT9ZDLYLLD", + "ref": "LT9ZDLYLLD", + "name": "Les Belleville, Parking P2 rue du Soleil", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5753071, + 45.29810533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLT9ZDLYLLD", + "ref": "LT9ZDLYLLD", + "name": "Les Belleville, Parking P2 rue du Soleil", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5753071, + 45.29810533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLT9ZDLYLLD", + "ref": "LT9ZDLYLLD", + "name": "Les Belleville, Parking P2 rue du Soleil", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.540882, + 45.313778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMDWQISHYA", + "ref": "HMDWQISHYA", + "name": "Les Belleville, Les Ménuires, Rue des Bruyères", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5362314, + 45.33017124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXMFRVU", + "ref": "XMFRVU", + "name": "Les Belleville, Avenue de la Croisette", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5753071, + 45.29810533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLT9ZDLYLLD", + "ref": "LT9ZDLYLLD", + "name": "Les Belleville, Parking P2 rue du Soleil", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5362314, + 45.33017124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXMFRVU", + "ref": "XMFRVU", + "name": "Les Belleville, Avenue de la Croisette", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58357924, + 45.29923357 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWDHVUHHABK", + "ref": "WDHVUHHABK", + "name": "Les Belleville, Parking P0 rue de la Boucle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5362314, + 45.33017124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXMFRVU", + "ref": "XMFRVU", + "name": "Les Belleville, Avenue de la Croisette", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5362314, + 45.33017124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXMFRVU", + "ref": "XMFRVU", + "name": "Les Belleville, Avenue de la Croisette", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58357924, + 45.29923357 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWDHVUHHABK", + "ref": "WDHVUHHABK", + "name": "Les Belleville, Parking P0 rue de la Boucle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58357924, + 45.29923357 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWDHVUHHABK", + "ref": "WDHVUHHABK", + "name": "Les Belleville, Parking P0 rue de la Boucle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58357924, + 45.29923357 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWDHVUHHABK", + "ref": "WDHVUHHABK", + "name": "Les Belleville, Parking P0 rue de la Boucle", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2669, + 45.5527 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLQAADPOMW", + "ref": "XLQAADPOMW", + "name": "Issoire, Vessely Quincaillerie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13651315, + 46.53952848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIIL4KRO26MRR", + "ref": "LLIIL4KRO26MRR", + "name": "Bois-d'Amont, Village Club Cévéo", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13651315, + 46.53952848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIIL4KRO26MRR", + "ref": "LLIIL4KRO26MRR", + "name": "Bois-d'Amont, Village Club Cévéo", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95139562, + 49.0425801 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZISHTQLCPD", + "ref": "ZISHTQLCPD", + "name": "Epernay, Parking Centre-Ville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.69718371, + 48.40366517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSKBVB1WJM", + "ref": "WSKBVB1WJM", + "name": "Fontainebleau, rue de Ferrare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.701971, + 48.413216 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGW64CPZFD3", + "ref": "GW64CPZFD3", + "name": "Fontainebleau, rue René Quinton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.51500284, + 48.12402757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIEBNZSOUQ4", + "ref": "IEBNZSOUQ4", + "name": "Arches, Acacias", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.51500284, + 48.12402757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIEBNZSOUQ4", + "ref": "IEBNZSOUQ4", + "name": "Arches, Acacias", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28522576, + 44.88326108 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFHPCMFYE1W", + "ref": "FHPCMFYE1W", + "name": "Arveyres, Rue de Peytot", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28522576, + 44.88326108 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFHPCMFYE1W", + "ref": "FHPCMFYE1W", + "name": "Arveyres, Rue de Peytot", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95061, + 49.0363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWOJ0SHUXRA", + "ref": "WOJ0SHUXRA", + "name": "Epernay, Parking Raoul Chandon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95523387, + 49.04616314 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQWFFJSO2PP", + "ref": "QWFFJSO2PP", + "name": "Epernay, Parking Rempart-Perrier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96149989, + 49.04477778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO2O5X8CIOC", + "ref": "O2O5X8CIOC", + "name": "Epernay, Parking des Arts", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.696444, + 48.401405 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBLHRLNQFGY", + "ref": "BLHRLNQFGY", + "name": "Fontainebleau, boulevard Magenta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95139562, + 49.0425801 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZISHTQLCPD", + "ref": "ZISHTQLCPD", + "name": "Epernay, Parking Centre-Ville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95139562, + 49.0425801 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZISHTQLCPD", + "ref": "ZISHTQLCPD", + "name": "Epernay, Parking Centre-Ville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96149989, + 49.04477778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PO2O5X8CIOC", + "ref": "O2O5X8CIOC", + "name": "Epernay, Parking des Arts", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95139365, + 49.04118408 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMLRG4EJHTC", + "ref": "MLRG4EJHTC", + "name": "Epernay, Parking Gallice", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95139365, + 49.04118408 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMLRG4EJHTC", + "ref": "MLRG4EJHTC", + "name": "Epernay, Parking Gallice", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95139562, + 49.0425801 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZISHTQLCPD", + "ref": "ZISHTQLCPD", + "name": "Epernay, Parking Centre-Ville", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95139562, + 49.0425801 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZISHTQLCPD", + "ref": "ZISHTQLCPD", + "name": "Epernay, Parking Centre-Ville", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95139562, + 49.0425801 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZISHTQLCPD", + "ref": "ZISHTQLCPD", + "name": "Epernay, Parking Centre-Ville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.696444, + 48.401405 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBLHRLNQFGY", + "ref": "BLHRLNQFGY", + "name": "Fontainebleau, boulevard Magenta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.69718371, + 48.40366517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSKBVB1WJM", + "ref": "WSKBVB1WJM", + "name": "Fontainebleau, rue de Ferrare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM1POXHVSQW", + "ref": "M1POXHVSQW", + "name": "Aubervilliers, rue du port", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM1POXHVSQW", + "ref": "M1POXHVSQW", + "name": "Aubervilliers, rue du port", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM1POXHVSQW", + "ref": "M1POXHVSQW", + "name": "Aubervilliers, rue du port", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM1POXHVSQW", + "ref": "M1POXHVSQW", + "name": "Aubervilliers, rue du port", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM1POXHVSQW", + "ref": "M1POXHVSQW", + "name": "Aubervilliers, rue du port", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM1POXHVSQW", + "ref": "M1POXHVSQW", + "name": "Aubervilliers, rue du port", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM1POXHVSQW", + "ref": "M1POXHVSQW", + "name": "Aubervilliers, rue du port", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM1POXHVSQW", + "ref": "M1POXHVSQW", + "name": "Aubervilliers, rue du port", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM1POXHVSQW", + "ref": "M1POXHVSQW", + "name": "Aubervilliers, rue du port", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM1POXHVSQW", + "ref": "M1POXHVSQW", + "name": "Aubervilliers, rue du port", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM1POXHVSQW", + "ref": "M1POXHVSQW", + "name": "Aubervilliers, rue du port", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.701971, + 48.413216 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGW64CPZFD3", + "ref": "GW64CPZFD3", + "name": "Fontainebleau, rue René Quinton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM1POXHVSQW", + "ref": "M1POXHVSQW", + "name": "Aubervilliers, rue du port", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM1POXHVSQW", + "ref": "M1POXHVSQW", + "name": "Aubervilliers, rue du port", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM1POXHVSQW", + "ref": "M1POXHVSQW", + "name": "Aubervilliers, rue du port", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37747327, + 44.7449334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIJWV6HQ25LEY", + "ref": "LLIJWV6HQ25LEY", + "name": "Gourdon, Chemin de Mont Marsis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37747327, + 44.7449334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIJWV6HQ25LEY", + "ref": "LLIJWV6HQ25LEY", + "name": "Gourdon, Chemin de Mont Marsis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35359, + 45.4764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVKXMXT", + "ref": "VKXMXT", + "name": "Villars, Garage Fraisse", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.760692, + 42.546508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBK6QUX36OK", + "ref": "BK6QUX36OK", + "name": "Calvi, Villas Mandarine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.760692, + 42.546508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBK6QUX36OK", + "ref": "BK6QUX36OK", + "name": "Calvi, Villas Mandarine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.540882, + 45.313778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMDWQISHYA", + "ref": "HMDWQISHYA", + "name": "Les Belleville, Les Ménuires, Rue des Bruyères", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5362314, + 45.33017124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXMFRVU", + "ref": "XMFRVU", + "name": "Les Belleville, Avenue de la Croisette", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56499, + 44.8355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDPDFCD", + "ref": "DPDFCD", + "name": "Bordeaux, Parking Salinières", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5362314, + 45.33017124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXMFRVU", + "ref": "XMFRVU", + "name": "Les Belleville, Avenue de la Croisette", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9325, + 45.0932 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSGEMRSLVN3", + "ref": "SGEMRSLVN3", + "name": "Argentat, Transport Billy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9325, + 45.0932 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSGEMRSLVN3", + "ref": "SGEMRSLVN3", + "name": "Argentat, Transport Billy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9325, + 45.0932 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSGEMRSLVN3", + "ref": "SGEMRSLVN3", + "name": "Argentat, Transport Billy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.98651939, + 49.19050326 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXIXGQQFMOL", + "ref": "XIXGQQFMOL", + "name": "Treffert SAS , rue de la Jontière", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.98651939, + 49.19050326 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXIXGQQFMOL", + "ref": "XIXGQQFMOL", + "name": "Treffert SAS , rue de la Jontière", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.98651939, + 49.19050326 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXIXGQQFMOL", + "ref": "XIXGQQFMOL", + "name": "Treffert SAS , rue de la Jontière", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.129841, + 45.7587 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRPGBBAKTHH", + "ref": "RPGBBAKTHH", + "name": "Clermont-Ferrand, Turing 22", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.129841, + 45.7587 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRPGBBAKTHH", + "ref": "RPGBBAKTHH", + "name": "Clermont-Ferrand, Turing 22", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32510201, + 46.17974498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFGZWXSCGAV", + "ref": "FGZWXSCGAV", + "name": "Ceyzeriat, Route de Jasseron", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32510201, + 46.17974498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFGZWXSCGAV", + "ref": "FGZWXSCGAV", + "name": "Ceyzeriat, Route de Jasseron", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32510201, + 46.17974498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFGZWXSCGAV", + "ref": "FGZWXSCGAV", + "name": "Ceyzeriat, Route de Jasseron", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32510201, + 46.17974498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFGZWXSCGAV", + "ref": "FGZWXSCGAV", + "name": "Ceyzeriat, Route de Jasseron", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.733194, + 47.719212 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKOMG7EKARS", + "ref": "KOMG7EKARS", + "name": "Grand-Fougeray, Parc des Lizardais", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.733194, + 47.719212 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKOMG7EKARS", + "ref": "KOMG7EKARS", + "name": "Grand-Fougeray, Parc des Lizardais", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.733194, + 47.719212 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKOMG7EKARS", + "ref": "KOMG7EKARS", + "name": "Grand-Fougeray, Parc des Lizardais", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.86947191, + 45.73266223 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHSIVEYPWFI", + "ref": "HSIVEYPWFI", + "name": "Oradour-sur-Vayres, U Express", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.86947191, + 45.73266223 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHSIVEYPWFI", + "ref": "HSIVEYPWFI", + "name": "Oradour-sur-Vayres, U Express", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.52746, + 48.0176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMNDEBE", + "ref": "MNDEBE", + "name": "Neuf-Brisach, Place d'Armes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.52746, + 48.0176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMNDEBE", + "ref": "MNDEBE", + "name": "Neuf-Brisach, Place d'Armes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9325, + 45.0932 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSGEMRSLVN3", + "ref": "SGEMRSLVN3", + "name": "Argentat, Transport Billy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.04132712, + 48.7846607 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDXQVXC", + "ref": "DXQVXC", + "name": "Saint-Quentin-en-Yvelines, Espace St Quentin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.04132712, + 48.7846607 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDXQVXC", + "ref": "DXQVXC", + "name": "Saint-Quentin-en-Yvelines, Espace St Quentin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36746, + 43.3109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDC6ZL4PFH", + "ref": "PDC6ZL4PFH", + "name": "Transdev Park Marseille - Euromed public", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56499, + 44.8355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDPDFCD", + "ref": "DPDFCD", + "name": "Bordeaux, Parking Salinières", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56499, + 44.8355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDPDFCD", + "ref": "DPDFCD", + "name": "Bordeaux, Parking Salinières", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56499, + 44.8355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDPDFCD", + "ref": "DPDFCD", + "name": "Bordeaux, Parking Salinières", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56499, + 44.8355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDPDFCD", + "ref": "DPDFCD", + "name": "Bordeaux, Parking Salinières", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36746, + 43.3109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDC6ZL4PFH", + "ref": "PDC6ZL4PFH", + "name": "Transdev Park Marseille - Euromed public", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36746, + 43.3109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDC6ZL4PFH", + "ref": "PDC6ZL4PFH", + "name": "Transdev Park Marseille - Euromed public", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36746, + 43.3109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDC6ZL4PFH", + "ref": "PDC6ZL4PFH", + "name": "Transdev Park Marseille - Euromed public", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36746, + 43.3109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDC6ZL4PFH", + "ref": "PDC6ZL4PFH", + "name": "Transdev Park Marseille - Euromed public", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36746, + 43.3109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDC6ZL4PFH", + "ref": "PDC6ZL4PFH", + "name": "Transdev Park Marseille - Euromed public", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.04132712, + 48.7846607 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDXQVXC", + "ref": "DXQVXC", + "name": "Saint-Quentin-en-Yvelines, Espace St Quentin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33274, + 48.8785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEXBJBK", + "ref": "EXBJBK", + "name": "Paris, Parking Transdev Pigalle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33274, + 48.8785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEXBJBK", + "ref": "EXBJBK", + "name": "Paris, Parking Transdev Pigalle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56999, + 44.841 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYHVKCF", + "ref": "YHVKCF", + "name": "Bordeaux, Parking Jean-Jaurès", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56999, + 44.841 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVGVNSN", + "ref": "VGVNSN", + "name": "Bordeaux, Parking Bourse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56999, + 44.841 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYHVKCF", + "ref": "YHVKCF", + "name": "Bordeaux, Parking Jean-Jaurès", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56999, + 44.841 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVGVNSN", + "ref": "VGVNSN", + "name": "Bordeaux, Parking Bourse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56999, + 44.841 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYHVKCF", + "ref": "YHVKCF", + "name": "Bordeaux, Parking Jean-Jaurès", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.04132712, + 48.7846607 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDXQVXC", + "ref": "DXQVXC", + "name": "Saint-Quentin-en-Yvelines, Espace St Quentin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.52842377, + 44.50620136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFOXO36TF3N", + "ref": "FOXO36TF3N", + "name": "Mende, Aérodrome de Mende-Brenou", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.304028, + 47.877868 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE8G5ELE480", + "ref": "E8G5ELE480", + "name": "Ungersheim, Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31188, + 47.8772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQMLUBIPCHF", + "ref": "QMLUBIPCHF", + "name": "Ungersheim, Salle des Fêtes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4790376, + 50.38043065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXTEHCGKCGX", + "ref": "XTEHCGKCGX", + "name": "Petite-Forêt, Valmotors", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.132103, + 50.7366 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSY2XSTFI1W", + "ref": "SY2XSTFI1W", + "name": "Roncq, Valauto", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.132103, + 50.7366 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSY2XSTFI1W", + "ref": "SY2XSTFI1W", + "name": "Roncq, Valauto", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.132103, + 50.7366 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSY2XSTFI1W", + "ref": "SY2XSTFI1W", + "name": "Roncq, Valauto", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0463778, + 49.64518414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKIDYA8RB2N", + "ref": "KIDYA8RB2N", + "name": "Vallée Carburant, Varneville Bretteville", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0463778, + 49.64518414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKIDYA8RB2N", + "ref": "KIDYA8RB2N", + "name": "Vallée Carburant, Varneville Bretteville", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0463778, + 49.64518414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKIDYA8RB2N", + "ref": "KIDYA8RB2N", + "name": "Vallée Carburant, Varneville Bretteville", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.28853, + 48.3369 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZPSHR", + "ref": "UZPSHR", + "name": "Bassemberg, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.28853, + 48.3369 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZPSHR", + "ref": "UZPSHR", + "name": "Bassemberg, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4790376, + 50.38043065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXTEHCGKCGX", + "ref": "XTEHCGKCGX", + "name": "Petite-Forêt, Valmotors", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.132103, + 50.7366 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSY2XSTFI1W", + "ref": "SY2XSTFI1W", + "name": "Roncq, Valauto", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4790376, + 50.38043065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXTEHCGKCGX", + "ref": "XTEHCGKCGX", + "name": "Petite-Forêt, Valmotors", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4790376, + 50.38043065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXTEHCGKCGX", + "ref": "XTEHCGKCGX", + "name": "Petite-Forêt, Valmotors", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4790376, + 50.38043065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXTEHCGKCGX", + "ref": "XTEHCGKCGX", + "name": "Petite-Forêt, Valmotors", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5362314, + 45.33017124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXMFRVU", + "ref": "XMFRVU", + "name": "Les Belleville, Avenue de la Croisette", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5362314, + 45.33017124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXMFRVU", + "ref": "XMFRVU", + "name": "Les Belleville, Avenue de la Croisette", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537, + 45.3234 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXMFRVU", + "ref": "XMFRVU", + "name": "Les Belleville, Avenue de la Croisette", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5362314, + 45.33017124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXMFRVU", + "ref": "XMFRVU", + "name": "Les Belleville, Avenue de la Croisette", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5362314, + 45.33017124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXMFRVU", + "ref": "XMFRVU", + "name": "Les Belleville, Avenue de la Croisette", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.132103, + 50.7366 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSY2XSTFI1W", + "ref": "SY2XSTFI1W", + "name": "Roncq, Valauto", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.132103, + 50.7366 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSY2XSTFI1W", + "ref": "SY2XSTFI1W", + "name": "Roncq, Valauto", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.304028, + 47.877868 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE8G5ELE480", + "ref": "E8G5ELE480", + "name": "Ungersheim, Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55983046, + 50.58494308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFJFJ2RMYHE", + "ref": "FJFJ2RMYHE", + "name": "Liège, 8 Allée de la Découverte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31206953, + 47.87713109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQMLUBIPCHF", + "ref": "QMLUBIPCHF", + "name": "Ungersheim, Salle des Fêtes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31206953, + 47.87713109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQMLUBIPCHF", + "ref": "QMLUBIPCHF", + "name": "Ungersheim, Salle des Fêtes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31206953, + 47.87713109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQMLUBIPCHF", + "ref": "QMLUBIPCHF", + "name": "Ungersheim, Salle des Fêtes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.064793, + 47.31288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJYET1MT29ZIY", + "ref": "LLJYET1MT29ZIY", + "name": "Dijon, MSH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.064793, + 47.31288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJYET1MT29ZIY", + "ref": "LLJYET1MT29ZIY", + "name": "Dijon, MSH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06919251, + 47.31530824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJYEQ3G7O5R6V", + "ref": "LLJYEQ3G7O5R6V", + "name": "Dijon, Halle des Sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06919251, + 47.31530824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJYEQ3G7O5R6V", + "ref": "LLJYEQ3G7O5R6V", + "name": "Dijon, Halle des Sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55983046, + 50.58494308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFJFJ2RMYHE", + "ref": "FJFJ2RMYHE", + "name": "Liège, 8 Allée de la Découverte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67303924, + 44.83122754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBOK49QJWD", + "ref": "ZBOK49QJWD", + "name": "Mérignac, VOLVO CAP NORD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.01449823, + 50.64439773 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKXIPG0APTF", + "ref": "KXIPG0APTF", + "name": "Lambersart, Valauto borne rapide", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67303924, + 44.83122754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBOK49QJWD", + "ref": "ZBOK49QJWD", + "name": "Mérignac, VOLVO CAP NORD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67303924, + 44.83122754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBOK49QJWD", + "ref": "ZBOK49QJWD", + "name": "Mérignac, VOLVO CAP NORD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67303924, + 44.83122754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBOK49QJWD", + "ref": "ZBOK49QJWD", + "name": "Mérignac, VOLVO CAP NORD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67303924, + 44.83122754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBOK49QJWD", + "ref": "ZBOK49QJWD", + "name": "Mérignac, VOLVO CAP NORD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67303924, + 44.83122754 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBOK49QJWD", + "ref": "ZBOK49QJWD", + "name": "Mérignac, VOLVO CAP NORD", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.014525, + 50.644677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBB7LOI4JNQ", + "ref": "BB7LOI4JNQ", + "name": "Lambersart, Valauto borne accélérée", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.01449823, + 50.64439773 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKXIPG0APTF", + "ref": "KXIPG0APTF", + "name": "Lambersart, Valauto borne rapide", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.01449823, + 50.64439773 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKXIPG0APTF", + "ref": "KXIPG0APTF", + "name": "Lambersart, Valauto borne rapide", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1445625, + 48.29725934 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52POZAVWSNPPH", + "ref": "OZAVWSNPPH", + "name": "Froncles, Chemin des Carelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.218059, + 48.423374 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PVZFPF5S0ZN", + "ref": "VZFPF5S0ZN", + "name": "Poissons, Rue Neuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.039643, + 48.58377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PEH4IDAEXBO", + "ref": "EH4IDAEXBO", + "name": "Eurville-Bienville, Avenue Jacques Marcellot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.54689932, + 43.25016021 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPURIAGXR0E", + "ref": "PURIAGXR0E", + "name": "Cogolin, Renault", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.632473, + 50.18824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAZ7U5AZUP6", + "ref": "AZ7U5AZUP6", + "name": "Saint valery sur sommes , Quai du romerel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.632473, + 50.18824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAZ7U5AZUP6", + "ref": "AZ7U5AZUP6", + "name": "Saint valery sur sommes , Quai du romerel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.53604, + 45.118707 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRKXKTUYHMP", + "ref": "RKXKTUYHMP", + "name": "Lalouvesc, Rue des Alpes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.53604, + 45.118707 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRKXKTUYHMP", + "ref": "RKXKTUYHMP", + "name": "Lalouvesc, Rue des Alpes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0468139, + 44.51054854 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLLMSNVNT8", + "ref": "XLLMSNVNT8", + "name": "Gap, Zone de Lachaup-Est Public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0468139, + 44.51054854 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLLMSNVNT8", + "ref": "XLLMSNVNT8", + "name": "Gap, Zone de Lachaup-Est Public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0468139, + 44.51054854 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLLMSNVNT8", + "ref": "XLLMSNVNT8", + "name": "Gap, Zone de Lachaup-Est Public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0468139, + 44.51054854 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLLMSNVNT8", + "ref": "XLLMSNVNT8", + "name": "Gap, Zone de Lachaup-Est Public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0468139, + 44.51054854 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLLMSNVNT8", + "ref": "XLLMSNVNT8", + "name": "Gap, Zone de Lachaup-Est Public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0468139, + 44.51054854 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLLMSNVNT8", + "ref": "XLLMSNVNT8", + "name": "Gap, Zone de Lachaup-Est Public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.68480401, + 43.97449468 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVXKSVK", + "ref": "VXKSVK", + "name": "Rochefort-du-Gard, Renault Georges Pruvost", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.68480401, + 43.97449468 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVXKSVK", + "ref": "VXKSVK", + "name": "Rochefort-du-Gard, Renault Georges Pruvost", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5016092, + 45.10077504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHTQSBOQOG8", + "ref": "HTQSBOQOG8", + "name": "Langeac, Renault", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5016092, + 45.10077504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHTQSBOQOG8", + "ref": "HTQSBOQOG8", + "name": "Langeac, Renault", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06361322, + 43.93415882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBZR3NP5DYR", + "ref": "BZR3NP5DYR", + "name": "Cazaubon, Renault Sauvage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06361322, + 43.93415882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBZR3NP5DYR", + "ref": "BZR3NP5DYR", + "name": "Cazaubon, Renault Sauvage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.870892, + 49.433153 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIA7NV5H5IHN2", + "ref": "LLIA7NV5H5IHN2", + "name": "Choisy-au-Bac, rue du Pont-des-Rets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.870892, + 49.433153 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIA7NV5H5IHN2", + "ref": "LLIA7NV5H5IHN2", + "name": "Choisy-au-Bac, rue du Pont-des-Rets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.11311, + 45.1445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQP2QGHOLTL", + "ref": "QP2QGHOLTL", + "name": "Yssingeaux, Renault", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84149, + 48.4065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVLGWEW", + "ref": "VLGWEW", + "name": "Raon l'étape, Rue de la Tour", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84149, + 48.4065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVLGWEW", + "ref": "VLGWEW", + "name": "Raon l'étape, Rue de la Tour", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.7392731, + 47.89040974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG2PRGCPO0G", + "ref": "G2PRGCPO0G", + "name": "Ramonchamp, rue de l'Etat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.90296, + 46.00341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMPLJPJZBZ", + "ref": "HMPLJPJZBZ", + "name": "RSE, Ambérieux-en-Dombes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69769922, + 47.33501281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSRD9E7Z4IO", + "ref": "SRD9E7Z4IO", + "name": "Chambray-lès-Tours, rue Michael Faraday public", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69769922, + 47.33501281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSRD9E7Z4IO", + "ref": "SRD9E7Z4IO", + "name": "Chambray-lès-Tours, rue Michael Faraday public", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69769922, + 47.33501281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSRD9E7Z4IO", + "ref": "SRD9E7Z4IO", + "name": "Chambray-lès-Tours, rue Michael Faraday public", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99999768, + 48.77036487 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSYGATUARH8", + "ref": "SYGATUARH8", + "name": "Trappes, avenue Roger Hennequin public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99999768, + 48.77036487 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSYGATUARH8", + "ref": "SYGATUARH8", + "name": "Trappes, avenue Roger Hennequin public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.14079976, + 48.79469299 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFCDNW73QHC", + "ref": "FCDNW73QHC", + "name": "Versailles, rue des Chantiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.14079976, + 48.79469299 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFCDNW73QHC", + "ref": "FCDNW73QHC", + "name": "Versailles, rue des Chantiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.90296, + 46.00341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMPLJPJZBZ", + "ref": "HMPLJPJZBZ", + "name": "RSE, Ambérieux-en-Dombes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84652657, + 46.0010407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNIMTITM2R", + "ref": "KNIMTITM2R", + "name": "Savigneux, Route d'Ars", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.7392731, + 47.89040974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG2PRGCPO0G", + "ref": "G2PRGCPO0G", + "name": "Ramonchamp, rue de l'Etat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.95391, + 45.92802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG6UP3TUUTZ", + "ref": "G6UP3TUUTZ", + "name": "RSE, Saint-André-de-Corcy", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.95391, + 45.92802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG6UP3TUUTZ", + "ref": "G6UP3TUUTZ", + "name": "RSE, Saint-André-de-Corcy", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92995154, + 45.89566837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZ2ITISA9Y", + "ref": "UZ2ITISA9Y", + "name": "Mionnay, Rue Principale", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84652657, + 46.0010407 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKNIMTITM2R", + "ref": "KNIMTITM2R", + "name": "Savigneux, Route d'Ars", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.95391, + 45.92802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG6UP3TUUTZ", + "ref": "G6UP3TUUTZ", + "name": "RSE, Saint-André-de-Corcy", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92995154, + 45.89566837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZ2ITISA9Y", + "ref": "UZ2ITISA9Y", + "name": "Mionnay, Rue Principale", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21538, + 48.9918 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDLLYWL", + "ref": "DLLYWL", + "name": "Rahling, Fontaine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21538, + 48.9918 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDLLYWL", + "ref": "DLLYWL", + "name": "Rahling, Fontaine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.11311, + 45.1445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQP2QGHOLTL", + "ref": "QP2QGHOLTL", + "name": "Yssingeaux, Renault", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.54689932, + 43.25016021 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPURIAGXR0E", + "ref": "PURIAGXR0E", + "name": "Cogolin, Renault", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61628505, + 44.89138691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVTD24GRLDJ", + "ref": "VTD24GRLDJ", + "name": "Bruges, avenue de la Jalle Noire", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.60896065, + 43.42914778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PERYMURP2DU", + "ref": "ERYMURP2DU", + "name": "Renault, Mèze", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273899, + 49.855845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAFRSGAL53C", + "ref": "AFRSGAL53C", + "name": "Dury, Route D'Amiens", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273899, + 49.855845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAFRSGAL53C", + "ref": "AFRSGAL53C", + "name": "Dury, Route D'Amiens", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.08552, + 48.8379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVHBVTE", + "ref": "VHBVTE", + "name": "Roppenheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.08552, + 48.8379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVHBVTE", + "ref": "VHBVTE", + "name": "Roppenheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.30356, + 47.955 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PECHCTB", + "ref": "ECHCTB", + "name": "Rouffach, Rue des Vergers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.30356, + 47.955 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PECHCTB", + "ref": "ECHCTB", + "name": "Rouffach, Rue des Vergers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.30356, + 47.955 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PECHCTB", + "ref": "ECHCTB", + "name": "Rouffach, Rue des Vergers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.30356, + 47.955 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PECHCTB", + "ref": "ECHCTB", + "name": "Rouffach, Rue des Vergers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.877324, + 43.585564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJTRLOAXURL", + "ref": "JTRLOAXURL", + "name": "Montpellier, Rubis Automobile", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.877324, + 43.585564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJTRLOAXURL", + "ref": "JTRLOAXURL", + "name": "Montpellier, Rubis Automobile", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.877324, + 43.585564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJTRLOAXURL", + "ref": "JTRLOAXURL", + "name": "Montpellier, Rubis Automobile", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30042911, + -21.2188338 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POF2V5RUQC2", + "ref": "OF2V5RUQC2", + "name": "Saint-Leu, Rue du Pressoir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47542465, + -21.3231281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC2AJENOGKE", + "ref": "C2AJENOGKE", + "name": "3 Brasseurs Saint Pierre", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47474772, + -21.3225547 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQIGUDGQUCV", + "ref": "QIGUDGQUCV", + "name": "Burger King Saint Pierre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47542465, + -21.3231281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC2AJENOGKE", + "ref": "C2AJENOGKE", + "name": "3 Brasseurs Saint Pierre", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47542465, + -21.3231281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC2AJENOGKE", + "ref": "C2AJENOGKE", + "name": "3 Brasseurs Saint Pierre", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30042911, + -21.2188338 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POF2V5RUQC2", + "ref": "OF2V5RUQC2", + "name": "Saint-Leu, Rue du Pressoir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47542465, + -21.3231281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC2AJENOGKE", + "ref": "C2AJENOGKE", + "name": "3 Brasseurs Saint Pierre", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30042911, + -21.2188338 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POF2V5RUQC2", + "ref": "OF2V5RUQC2", + "name": "Saint-Leu, Rue du Pressoir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273899, + 49.855845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAFRSGAL53C", + "ref": "AFRSGAL53C", + "name": "Dury, Route D'Amiens", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273899, + 49.855845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAFRSGAL53C", + "ref": "AFRSGAL53C", + "name": "Dury, Route D'Amiens", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10311, + 47.2713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKLPHK", + "ref": "AKLPHK", + "name": "Roche-lez-Beaupré, Vinci Facilities", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269431, + 49.88548 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCJMEQHEFAA", + "ref": "CJMEQHEFAA", + "name": "Amiens, Restaurant Le Vivier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.60896065, + 43.42914778 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PERYMURP2DU", + "ref": "ERYMURP2DU", + "name": "Renault, Mèze", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.637342, + 48.130888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMP5DRUW85N", + "ref": "MP5DRUW85N", + "name": "Rennes, LS Group Rennes Longchamp", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.637342, + 48.130888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMP5DRUW85N", + "ref": "MP5DRUW85N", + "name": "Rennes, LS Group Rennes Longchamp", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.637342, + 48.130888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMP5DRUW85N", + "ref": "MP5DRUW85N", + "name": "Rennes, LS Group Rennes Longchamp", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.637342, + 48.130888 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMP5DRUW85N", + "ref": "MP5DRUW85N", + "name": "Rennes, LS Group Rennes Longchamp", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1289093, + 45.76876531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRMYYKKNR3R", + "ref": "RMYYKKNR3R", + "name": "Clermont-Ferrand, Restaurant Cacot", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.86641287, + 50.09835705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PONVUHSIC32", + "ref": "ONVUHSIC32", + "name": "Abbeville, restaurant Del Arte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.86641287, + 50.09835705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PONVUHSIC32", + "ref": "ONVUHSIC32", + "name": "Abbeville, restaurant Del Arte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269431, + 49.88548 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCJMEQHEFAA", + "ref": "CJMEQHEFAA", + "name": "Amiens, Restaurant Le Vivier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10311, + 47.2713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKLPHK", + "ref": "AKLPHK", + "name": "Roche-lez-Beaupré, Vinci Facilities", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269431, + 49.88548 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCJMEQHEFAA", + "ref": "CJMEQHEFAA", + "name": "Amiens, Restaurant Le Vivier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269431, + 49.88548 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCJMEQHEFAA", + "ref": "CJMEQHEFAA", + "name": "Amiens, Restaurant Le Vivier", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.61115417, + 45.72263008 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTCIFDITPA3", + "ref": "TCIFDITPA3", + "name": "Augerolles, Restaurant Les Chênes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.61115417, + 45.72263008 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTCIFDITPA3", + "ref": "TCIFDITPA3", + "name": "Augerolles, Restaurant Les Chênes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94949981, + 45.55631539 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTAUVNWVOHL", + "ref": "TAUVNWVOHL", + "name": "Rexel Grenoble Catm", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94949981, + 45.55631539 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTAUVNWVOHL", + "ref": "TAUVNWVOHL", + "name": "Rexel Grenoble Catm", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94949981, + 45.55631539 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTAUVNWVOHL", + "ref": "TAUVNWVOHL", + "name": "Rexel Grenoble Catm", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94949981, + 45.55631539 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTAUVNWVOHL", + "ref": "TAUVNWVOHL", + "name": "Rexel Grenoble Catm", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69769922, + 47.33501281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSRD9E7Z4IO", + "ref": "SRD9E7Z4IO", + "name": "Chambray-lès-Tours, rue Michael Faraday public", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69769922, + 47.33501281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSRD9E7Z4IO", + "ref": "SRD9E7Z4IO", + "name": "Chambray-lès-Tours, rue Michael Faraday public", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69769922, + 47.33501281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSRD9E7Z4IO", + "ref": "SRD9E7Z4IO", + "name": "Chambray-lès-Tours, rue Michael Faraday public", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69769922, + 47.33501281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSRD9E7Z4IO", + "ref": "SRD9E7Z4IO", + "name": "Chambray-lès-Tours, rue Michael Faraday public", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33105722, + 48.75868906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXQUMZ7QBK6", + "ref": "XQUMZ7QBK6", + "name": "Fresnes, RRG", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44541826, + 43.44886874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS6ZRQZX1D5", + "ref": "S6ZRQZX1D5", + "name": "Gardanne, RRG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44541826, + 43.44886874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS6ZRQZX1D5", + "ref": "S6ZRQZX1D5", + "name": "Gardanne, RRG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.951344, + 43.637547 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSN8XCGMXJ", + "ref": "VSN8XCGMXJ", + "name": "Grasse, RRG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.951344, + 43.637547 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSN8XCGMXJ", + "ref": "VSN8XCGMXJ", + "name": "Grasse, RRG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.253808, + 48.832043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKDY8UTUDA", + "ref": "YKDY8UTUDA", + "name": "Boulogne-Billancourt, Renault Issy", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48255792, + 43.29013381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXPD0Y4AZML", + "ref": "XPD0Y4AZML", + "name": "Marseille, montée Commandant de Robien", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48255792, + 43.29013381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXPD0Y4AZML", + "ref": "XPD0Y4AZML", + "name": "Marseille, montée Commandant de Robien", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48255792, + 43.29013381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXPD0Y4AZML", + "ref": "XPD0Y4AZML", + "name": "Marseille, montée Commandant de Robien", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48255792, + 43.29013381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXPD0Y4AZML", + "ref": "XPD0Y4AZML", + "name": "Marseille, montée Commandant de Robien", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48255792, + 43.29013381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXPD0Y4AZML", + "ref": "XPD0Y4AZML", + "name": "Marseille, montée Commandant de Robien", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48255792, + 43.29013381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXPD0Y4AZML", + "ref": "XPD0Y4AZML", + "name": "Marseille, montée Commandant de Robien", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17486406, + 47.98001177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYRPLK8JSQE", + "ref": "YRPLK8JSQE", + "name": "Le Mans, boulevard Demorieux public", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17486406, + 47.98001177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYRPLK8JSQE", + "ref": "YRPLK8JSQE", + "name": "Le Mans, boulevard Demorieux public", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17486406, + 47.98001177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYRPLK8JSQE", + "ref": "YRPLK8JSQE", + "name": "Le Mans, boulevard Demorieux public", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17486406, + 47.98001177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYRPLK8JSQE", + "ref": "YRPLK8JSQE", + "name": "Le Mans, boulevard Demorieux public", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29817629, + 48.89450073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSW0I6KKZAI", + "ref": "SW0I6KKZAI", + "name": "Levallois-Perret, rue Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29817629, + 48.89450073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSW0I6KKZAI", + "ref": "SW0I6KKZAI", + "name": "Levallois-Perret, rue Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512023, + 44.879618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJJWUMZACZF", + "ref": "JJWUMZACZF", + "name": "Lormont, RRG", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33105722, + 48.75868906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXQUMZ7QBK6", + "ref": "XQUMZ7QBK6", + "name": "Fresnes, RRG", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33105722, + 48.75868906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXQUMZ7QBK6", + "ref": "XQUMZ7QBK6", + "name": "Fresnes, RRG", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33105722, + 48.75868906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXQUMZ7QBK6", + "ref": "XQUMZ7QBK6", + "name": "Fresnes, RRG", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34122195, + 49.20863663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJFVT9N4ES5", + "ref": "JFVT9N4ES5", + "name": "Hérouville-Saint-Clair, RRG", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61628505, + 44.89138691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVTD24GRLDJ", + "ref": "VTD24GRLDJ", + "name": "Bruges, avenue de la Jalle Noire", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61628505, + 44.89138691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVTD24GRLDJ", + "ref": "VTD24GRLDJ", + "name": "Bruges, avenue de la Jalle Noire", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61628505, + 44.89138691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVTD24GRLDJ", + "ref": "VTD24GRLDJ", + "name": "Bruges, avenue de la Jalle Noire", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61628505, + 44.89138691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVTD24GRLDJ", + "ref": "VTD24GRLDJ", + "name": "Bruges, avenue de la Jalle Noire", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34122195, + 49.20863663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJFVT9N4ES5", + "ref": "JFVT9N4ES5", + "name": "Hérouville-Saint-Clair, RRG", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34122195, + 49.20863663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJFVT9N4ES5", + "ref": "JFVT9N4ES5", + "name": "Hérouville-Saint-Clair, RRG", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34122195, + 49.20863663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJFVT9N4ES5", + "ref": "JFVT9N4ES5", + "name": "Hérouville-Saint-Clair, RRG", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34122195, + 49.20863663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJFVT9N4ES5", + "ref": "JFVT9N4ES5", + "name": "Hérouville-Saint-Clair, RRG", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.17023421, + 43.65808451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWU01S8EWX9", + "ref": "WU01S8EWX9", + "name": "Cagnes-sur-Mer, promenade de la Plage", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33105722, + 48.75868906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXQUMZ7QBK6", + "ref": "XQUMZ7QBK6", + "name": "Fresnes, RRG", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.17023421, + 43.65808451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWU01S8EWX9", + "ref": "WU01S8EWX9", + "name": "Cagnes-sur-Mer, promenade de la Plage", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.17023421, + 43.65808451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWU01S8EWX9", + "ref": "WU01S8EWX9", + "name": "Cagnes-sur-Mer, promenade de la Plage", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96296, + 43.549931 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUYYZ1I5HC8", + "ref": "UYYZ1I5HC8", + "name": "Cannes, avenue Francis Tonner", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96296, + 43.549931 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUYYZ1I5HC8", + "ref": "UYYZ1I5HC8", + "name": "Cannes, avenue Francis Tonner", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40912, + 48.8192 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE48M4FWGEO", + "ref": "E48M4FWGEO", + "name": "Charenton, Renault", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273682, + 48.902848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHS9LF6WZTM", + "ref": "HS9LF6WZTM", + "name": "Courbevoie, boulevard Georges Clémenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273682, + 48.902848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHS9LF6WZTM", + "ref": "HS9LF6WZTM", + "name": "Courbevoie, boulevard Georges Clémenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33105722, + 48.75868906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXQUMZ7QBK6", + "ref": "XQUMZ7QBK6", + "name": "Fresnes, RRG", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512023, + 44.879618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJJWUMZACZF", + "ref": "JJWUMZACZF", + "name": "Lormont, RRG", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512023, + 44.879618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJJWUMZACZF", + "ref": "JJWUMZACZF", + "name": "Lormont, RRG", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512023, + 44.879618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJJWUMZACZF", + "ref": "JJWUMZACZF", + "name": "Lormont, RRG", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36010778, + 48.75808079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXG3TDDGOMM", + "ref": "XG3TDDGOMM", + "name": "Rungis, avenue des Trois Marchés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66541009, + 44.85796028 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEQLLJPVXCO", + "ref": "EQLLJPVXCO", + "name": "Mérignac, RRG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66541009, + 44.85796028 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEQLLJPVXCO", + "ref": "EQLLJPVXCO", + "name": "Mérignac, RRG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.29175456, + 43.70535597 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYGNJTREMMH", + "ref": "YGNJTREMMH", + "name": "Nice, Boulevard de l'Armée des Alpes public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.29175456, + 43.70535597 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYGNJTREMMH", + "ref": "YGNJTREMMH", + "name": "Nice, Boulevard de l'Armée des Alpes public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39833236, + 48.89512837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIWWUMCVSIG", + "ref": "IWWUMCVSIG", + "name": "Pantin, RRG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39833236, + 48.89512837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIWWUMCVSIG", + "ref": "IWWUMCVSIG", + "name": "Pantin, RRG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66234705, + 44.79974717 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPMDA7DOBMH", + "ref": "PMDA7DOBMH", + "name": "Pessac, avenue Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66234705, + 44.79974717 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPMDA7DOBMH", + "ref": "PMDA7DOBMH", + "name": "Pessac, avenue Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36010778, + 48.75808079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXG3TDDGOMM", + "ref": "XG3TDDGOMM", + "name": "Rungis, avenue des Trois Marchés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.00898542, + 43.58312267 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHTEZ3S19A", + "ref": "KHTEZ3S19A", + "name": "Mougins, RRG", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20301175, + 48.84189987 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAZTNSXMBHG", + "ref": "AZTNSXMBHG", + "name": "Saint-Cloud, rue Pasteur", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39307777, + 43.26494069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSLCGOXFVYX", + "ref": "SLCGOXFVYX", + "name": "Marseille, RRG Services Marseille Michelet public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39307777, + 43.26494069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSLCGOXFVYX", + "ref": "SLCGOXFVYX", + "name": "Marseille, RRG Services Marseille Michelet public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39307777, + 43.26494069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSLCGOXFVYX", + "ref": "SLCGOXFVYX", + "name": "Marseille, RRG Services Marseille Michelet public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39307777, + 43.26494069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSLCGOXFVYX", + "ref": "SLCGOXFVYX", + "name": "Marseille, RRG Services Marseille Michelet public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39307777, + 43.26494069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSLCGOXFVYX", + "ref": "SLCGOXFVYX", + "name": "Marseille, RRG Services Marseille Michelet public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39307777, + 43.26494069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSLCGOXFVYX", + "ref": "SLCGOXFVYX", + "name": "Marseille, RRG Services Marseille Michelet public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69769922, + 47.33501281 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSRD9E7Z4IO", + "ref": "SRD9E7Z4IO", + "name": "Chambray-lès-Tours, rue Michael Faraday public", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.00898542, + 43.58312267 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKHTEZ3S19A", + "ref": "KHTEZ3S19A", + "name": "Mougins, RRG", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418169, + 48.850197 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRUIWFEJLLK", + "ref": "RUIWFEJLLK", + "name": "Montreuil, rue Armand Carrel", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512023, + 44.879618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJJWUMZACZF", + "ref": "JJWUMZACZF", + "name": "Lormont, RRG", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854377, + 45.718486 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI9G0X0SWES", + "ref": "I9G0X0SWES", + "name": "Venissieux, Route de Vienne", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79997695, + 45.78016222 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQLLMFZXIXH", + "ref": "QLLMFZXIXH", + "name": "Lyon Nord, RRG", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79997695, + 45.78016222 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQLLMFZXIXH", + "ref": "QLLMFZXIXH", + "name": "Lyon Nord, RRG", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79997695, + 45.78016222 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQLLMFZXIXH", + "ref": "QLLMFZXIXH", + "name": "Lyon Nord, RRG", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79997695, + 45.78016222 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQLLMFZXIXH", + "ref": "QLLMFZXIXH", + "name": "Lyon Nord, RRG", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.877665, + 45.810311 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSHP7YQXTW6", + "ref": "SHP7YQXTW6", + "name": "Rillieux-la-Pape, rue du Companet public", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.877665, + 45.810311 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSHP7YQXTW6", + "ref": "SHP7YQXTW6", + "name": "Rillieux-la-Pape, rue du Companet public", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.877665, + 45.810311 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSHP7YQXTW6", + "ref": "SHP7YQXTW6", + "name": "Rillieux-la-Pape, rue du Companet public", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854377, + 45.718486 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI9G0X0SWES", + "ref": "I9G0X0SWES", + "name": "Venissieux, Route de Vienne", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854377, + 45.718486 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI9G0X0SWES", + "ref": "I9G0X0SWES", + "name": "Venissieux, Route de Vienne", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418169, + 48.850197 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRUIWFEJLLK", + "ref": "RUIWFEJLLK", + "name": "Montreuil, rue Armand Carrel", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854377, + 45.718486 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI9G0X0SWES", + "ref": "I9G0X0SWES", + "name": "Venissieux, Route de Vienne", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.854377, + 45.718486 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI9G0X0SWES", + "ref": "I9G0X0SWES", + "name": "Venissieux, Route de Vienne", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9332695, + 48.75836017 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHWDOP47ZNA", + "ref": "HWDOP47ZNA", + "name": "Coignières, RRG Maurepas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9332695, + 48.75836017 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHWDOP47ZNA", + "ref": "HWDOP47ZNA", + "name": "Coignières, RRG Maurepas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56279373, + 44.77185819 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIG8XKOL1LY", + "ref": "IG8XKOL1LY", + "name": "Villenave-d'Ornon, avenue des Pyrénées", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56279373, + 44.77185819 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIG8XKOL1LY", + "ref": "IG8XKOL1LY", + "name": "Villenave-d'Ornon, avenue des Pyrénées", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57193491, + 44.80363171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLUBXMBZUNZ", + "ref": "LUBXMBZUNZ", + "name": "Villenave-d'Ornon, Route de Toulouse", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418169, + 48.850197 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRUIWFEJLLK", + "ref": "RUIWFEJLLK", + "name": "Montreuil, rue Armand Carrel", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30042911, + -21.2188338 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POF2V5RUQC2", + "ref": "OF2V5RUQC2", + "name": "Saint-Leu, Rue du Pressoir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.366612, + -21.265831 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBUE8MYS7P9", + "ref": "BUE8MYS7P9", + "name": "Super U Etang Salé", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.366612, + -21.265831 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBUE8MYS7P9", + "ref": "BUE8MYS7P9", + "name": "Super U Etang Salé", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11751839, + 45.8038204 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSVJXFFR02", + "ref": "ZSVJXFFR02", + "name": "Clermont-Ferrand, Boulevard Edgar Quinet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZACLSUBH9M", + "ref": "ZACLSUBH9M", + "name": "Hermival-les-Vaux, SAS CERZA", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZACLSUBH9M", + "ref": "ZACLSUBH9M", + "name": "Hermival-les-Vaux, SAS CERZA", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZACLSUBH9M", + "ref": "ZACLSUBH9M", + "name": "Hermival-les-Vaux, SAS CERZA", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZACLSUBH9M", + "ref": "ZACLSUBH9M", + "name": "Hermival-les-Vaux, SAS CERZA", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZACLSUBH9M", + "ref": "ZACLSUBH9M", + "name": "Hermival-les-Vaux, SAS CERZA", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZACLSUBH9M", + "ref": "ZACLSUBH9M", + "name": "Hermival-les-Vaux, SAS CERZA", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZACLSUBH9M", + "ref": "ZACLSUBH9M", + "name": "Hermival-les-Vaux, SAS CERZA", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZACLSUBH9M", + "ref": "ZACLSUBH9M", + "name": "Hermival-les-Vaux, SAS CERZA", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZACLSUBH9M", + "ref": "ZACLSUBH9M", + "name": "Hermival-les-Vaux, SAS CERZA", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZACLSUBH9M", + "ref": "ZACLSUBH9M", + "name": "Hermival-les-Vaux, SAS CERZA", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZACLSUBH9M", + "ref": "ZACLSUBH9M", + "name": "Hermival-les-Vaux, SAS CERZA", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZACLSUBH9M", + "ref": "ZACLSUBH9M", + "name": "Hermival-les-Vaux, SAS CERZA", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZACLSUBH9M", + "ref": "ZACLSUBH9M", + "name": "Hermival-les-Vaux, SAS CERZA", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30936042, + 49.18389491 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZTXNJV4UMI", + "ref": "ZTXNJV4UMI", + "name": "Hermival-les-Vaux, SAS Cerza Safari Lodge", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30936042, + 49.18389491 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZTXNJV4UMI", + "ref": "ZTXNJV4UMI", + "name": "Hermival-les-Vaux, SAS Cerza Safari Lodge", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30936042, + 49.18389491 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZTXNJV4UMI", + "ref": "ZTXNJV4UMI", + "name": "Hermival-les-Vaux, SAS Cerza Safari Lodge", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30936042, + 49.18389491 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZTXNJV4UMI", + "ref": "ZTXNJV4UMI", + "name": "Hermival-les-Vaux, SAS Cerza Safari Lodge", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.79055845, + 41.93261788 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNR1CEVICM8", + "ref": "NR1CEVICM8", + "name": "Ajaccio, SAS DCL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.79055845, + 41.93261788 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNR1CEVICM8", + "ref": "NR1CEVICM8", + "name": "Ajaccio, SAS DCL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZACLSUBH9M", + "ref": "ZACLSUBH9M", + "name": "Hermival-les-Vaux, SAS CERZA", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZACLSUBH9M", + "ref": "ZACLSUBH9M", + "name": "Hermival-les-Vaux, SAS CERZA", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZACLSUBH9M", + "ref": "ZACLSUBH9M", + "name": "Hermival-les-Vaux, SAS CERZA", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225379, + 43.944127 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAAPOEUSRPM", + "ref": "AAPOEUSRPM", + "name": "Saint-Geniès-de-Malgoirès, SARL RODA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.812752, + 48.897855 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSO7YFPBWXL", + "ref": "SO7YFPBWXL", + "name": "Esbly, SARL Esbly Lavage", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.062039, + 45.57593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGKA7W3JCGW", + "ref": "GKA7W3JCGW", + "name": "Domaine de Roullet, Roullet-Saint-Estèphe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.062039, + 45.57593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGKA7W3JCGW", + "ref": "GKA7W3JCGW", + "name": "Domaine de Roullet, Roullet-Saint-Estèphe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.82486, + 41.9234 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB2HE7Y57KD", + "ref": "B2HE7Y57KD", + "name": "Bastelicaccia, Station Vito", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.82486, + 41.9234 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB2HE7Y57KD", + "ref": "B2HE7Y57KD", + "name": "Bastelicaccia, Station Vito", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04527063, + 48.72036468 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEEIECWCICF", + "ref": "EEIECWCICF", + "name": "Sarrebourg, SARL Joet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04527063, + 48.72036468 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEEIECWCICF", + "ref": "EEIECWCICF", + "name": "Sarrebourg, SARL Joet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225379, + 43.944127 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAAPOEUSRPM", + "ref": "AAPOEUSRPM", + "name": "Saint-Geniès-de-Malgoirès, SARL RODA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1586584, + 42.3161558 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWIUMZLWTQX", + "ref": "WIUMZLWTQX", + "name": "Relais Santa Maria, Lieu dit Pentone, Corte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.169949, + 49.216964 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWJPBSARJUV", + "ref": "WJPBSARJUV", + "name": "Louviers, Rue Saint-Germain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1586584, + 42.3161558 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWIUMZLWTQX", + "ref": "WIUMZLWTQX", + "name": "Relais Santa Maria, Lieu dit Pentone, Corte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.80107908, + 48.79664144 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU1KC483SJF", + "ref": "U1KC483SJF", + "name": "Haguenau, Ettore bugatti", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.80107908, + 48.79664144 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU1KC483SJF", + "ref": "U1KC483SJF", + "name": "Haguenau, Ettore bugatti", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.80107908, + 48.79664144 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU1KC483SJF", + "ref": "U1KC483SJF", + "name": "Haguenau, Ettore bugatti", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.80107908, + 48.79664144 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU1KC483SJF", + "ref": "U1KC483SJF", + "name": "Haguenau, Ettore bugatti", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.0444334, + 48.72012048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXXZV8DAA0C", + "ref": "XXZV8DAA0C", + "name": "Sarrebourg, Terrasse Champagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.0444334, + 48.72012048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXXZV8DAA0C", + "ref": "XXZV8DAA0C", + "name": "Sarrebourg, Terrasse Champagne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.169949, + 49.216964 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWJPBSARJUV", + "ref": "WJPBSARJUV", + "name": "Louviers, Rue Saint-Germain", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.99637, + 44.166397 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQGHU4NZ1E1", + "ref": "QGHU4NZ1E1", + "name": "Gigondas, Domaine du Grapillon d'Or", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.001487, + 43.514118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNWS9EZWLMB", + "ref": "NWS9EZWLMB", + "name": "Istres, garage Opel 1807", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.001487, + 43.514118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNWS9EZWLMB", + "ref": "NWS9EZWLMB", + "name": "Istres, garage Opel 1807", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.437717, + 42.623928 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHELMIXFOE8", + "ref": "HELMIXFOE8", + "name": "Biguglia, Route National", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56965905, + 48.64891781 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZXHQKBCDP8", + "ref": "ZXHQKBCDP8", + "name": "Combs-la-Ville, SAS Tando", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56965905, + 48.64891781 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZXHQKBCDP8", + "ref": "ZXHQKBCDP8", + "name": "Combs-la-Ville, SAS Tando", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56965905, + 48.64891781 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZXHQKBCDP8", + "ref": "ZXHQKBCDP8", + "name": "Combs-la-Ville, SAS Tando", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56965905, + 48.64891781 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZXHQKBCDP8", + "ref": "ZXHQKBCDP8", + "name": "Combs-la-Ville, SAS Tando", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56965905, + 48.64891781 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZXHQKBCDP8", + "ref": "ZXHQKBCDP8", + "name": "Combs-la-Ville, SAS Tando", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56965905, + 48.64891781 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZXHQKBCDP8", + "ref": "ZXHQKBCDP8", + "name": "Combs-la-Ville, SAS Tando", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.598411, + 48.642427 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVRSEKPOETD", + "ref": "VRSEKPOETD", + "name": "Wiwersheim, DM Automotive", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.598411, + 48.642427 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVRSEKPOETD", + "ref": "VRSEKPOETD", + "name": "Wiwersheim, DM Automotive", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.437717, + 42.623928 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHELMIXFOE8", + "ref": "HELMIXFOE8", + "name": "Biguglia, Route National", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7390536, + 44.40577777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUJZ0SC4ZZC", + "ref": "UJZ0SC4ZZC", + "name": "Villeneuve-sur-Lot, Rue Marguerite et René Filhol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.437717, + 42.623928 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHELMIXFOE8", + "ref": "HELMIXFOE8", + "name": "Biguglia, Route National", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.437717, + 42.623928 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHELMIXFOE8", + "ref": "HELMIXFOE8", + "name": "Biguglia, Route National", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42584685, + 47.33325318 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXZ5WPWTVHV", + "ref": "XZ5WPWTVHV", + "name": "Langeais, Ma Cuisine Création", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.254477, + 45.5423515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPGHWPZSVYM", + "ref": "PGHWPZSVYM", + "name": "Issoire, Chemin de Rocpierre", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.280159, + 49.165289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL0DBRWYOEI", + "ref": "L0DBRWYOEI", + "name": "Le-Mesnil-en-Thelle, Route de Chambly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.280159, + 49.165289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL0DBRWYOEI", + "ref": "L0DBRWYOEI", + "name": "Le-Mesnil-en-Thelle, Route de Chambly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7390536, + 44.40577777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUJZ0SC4ZZC", + "ref": "UJZ0SC4ZZC", + "name": "Villeneuve-sur-Lot, Rue Marguerite et René Filhol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.006119, + 46.137144 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUFKNQYMEB6", + "ref": "UFKNQYMEB6", + "name": "Rue des Biocarburants, Saint-Medard-d'Aunis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.078972, + 43.63446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSI6AYMQRSF", + "ref": "SI6AYMQRSF", + "name": "Salon de Provence, garage Opel 1807", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.824337, + 43.100862 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHYM3I892BB2I", + "ref": "LLHYM3I892BB2I", + "name": "Six fours les plages Avenue de la mer Quartier Bucarin", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.078972, + 43.63446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSI6AYMQRSF", + "ref": "SI6AYMQRSF", + "name": "Salon de Provence, garage Opel 1807", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1433, + 45.7588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBCUFNF", + "ref": "BCUFNF", + "name": "Aubière, Avenue Ernest Cristal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1433, + 45.7588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBCUFNF", + "ref": "BCUFNF", + "name": "Aubière, Avenue Ernest Cristal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.88983494, + 42.61057734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH1FDA2VWZ8", + "ref": "H1FDA2VWZ8", + "name": "Corbara, Foir’Fouille", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.88983494, + 42.61057734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH1FDA2VWZ8", + "ref": "H1FDA2VWZ8", + "name": "Corbara, Foir’Fouille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.441054, + 42.595654 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ7HVU7TKDJ", + "ref": "J7HVU7TKDJ", + "name": "Borgo, SI.AL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.441054, + 42.595654 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ7HVU7TKDJ", + "ref": "J7HVU7TKDJ", + "name": "Borgo, SI.AL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.824337, + 43.100862 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHYM3I892BB2I", + "ref": "LLHYM3I892BB2I", + "name": "Six fours les plages Avenue de la mer Quartier Bucarin", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.824337, + 43.100862 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHYM3I892BB2I", + "ref": "LLHYM3I892BB2I", + "name": "Six fours les plages Avenue de la mer Quartier Bucarin", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.006119, + 46.137144 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUFKNQYMEB6", + "ref": "UFKNQYMEB6", + "name": "Rue des Biocarburants, Saint-Medard-d'Aunis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.695758, + 48.954713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXEBBF2YBFN", + "ref": "XEBBF2YBFN", + "name": "Orbais-l'Abbaye, SCDC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.695758, + 48.954713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXEBBF2YBFN", + "ref": "XEBBF2YBFN", + "name": "Orbais-l'Abbaye, SCDC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.695758, + 48.954713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXEBBF2YBFN", + "ref": "XEBBF2YBFN", + "name": "Orbais-l'Abbaye, SCDC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.695758, + 48.954713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXEBBF2YBFN", + "ref": "XEBBF2YBFN", + "name": "Orbais-l'Abbaye, SCDC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.073343, + 48.739235 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCAWYATQLP8", + "ref": "CAWYATQLP8", + "name": "Sarrebourg, Rue Dessirier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.073343, + 48.739235 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCAWYATQLP8", + "ref": "CAWYATQLP8", + "name": "Sarrebourg, Rue Dessirier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23367, + 43.5136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBIJOFRFG1E", + "ref": "BIJOFRFG1E", + "name": "Velaux, rue André-Marie Ampère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23367, + 43.5136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBIJOFRFG1E", + "ref": "BIJOFRFG1E", + "name": "Velaux, rue André-Marie Ampère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11751839, + 45.8038204 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSVJXFFR02", + "ref": "ZSVJXFFR02", + "name": "Clermont-Ferrand, Boulevard Edgar Quinet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16736482, + 48.15411228 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIEKST5G1ZL", + "ref": "IEKST5G1ZL", + "name": "Lapoutroie, Hôtel Au Vieux Moulin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.39766347, + -21.2820316 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDIWE44BBM", + "ref": "PDIWE44BBM", + "name": "Burger King Saint Louis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16736482, + 48.15411228 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIEKST5G1ZL", + "ref": "IEKST5G1ZL", + "name": "Lapoutroie, Hôtel Au Vieux Moulin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.63364, + 48.9528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHSGDN5TMKB", + "ref": "HSGDN5TMKB", + "name": "Niederbronn, Place de la Gare", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.61174961, + 48.94217109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVIY9LSWFOF", + "ref": "VIY9LSWFOF", + "name": "Oberbronn, Place du Couvent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.65833, + 48.9341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBZGNBR", + "ref": "BZGNBR", + "name": "Reichshoffen, Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.63364, + 48.9528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHSGDN5TMKB", + "ref": "HSGDN5TMKB", + "name": "Niederbronn, Place de la Gare", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.63364, + 48.9528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHSGDN5TMKB", + "ref": "HSGDN5TMKB", + "name": "Niederbronn, Place de la Gare", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.64142021, + 48.95131715 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTWSE1GJQYS", + "ref": "TWSE1GJQYS", + "name": "Niederbronn, Parking du Bureau Central", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.64142021, + 48.95131715 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTWSE1GJQYS", + "ref": "TWSE1GJQYS", + "name": "Niederbronn, Parking du Bureau Central", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.65833, + 48.9341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBZGNBR", + "ref": "BZGNBR", + "name": "Reichshoffen, Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1696937, + 49.23708488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGXQCI6D93G", + "ref": "GXQCI6D93G", + "name": "Talange, Parking Aragon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16709009, + 49.23853082 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZP2XBRNY7Q", + "ref": "ZP2XBRNY7Q", + "name": "Talange, rue Simone de Beauvoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16726763, + 49.23699697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMTUB5LCGWL", + "ref": "MTUB5LCGWL", + "name": "Talange, Rue de l'Usine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16874509, + 49.23790821 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKJ5HXBD2S2", + "ref": "KJ5HXBD2S2", + "name": "Talange, rue de Metz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16874509, + 49.23790821 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKJ5HXBD2S2", + "ref": "KJ5HXBD2S2", + "name": "Talange, rue de Metz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16558187, + 49.23279051 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODZG0S8OHF", + "ref": "ODZG0S8OHF", + "name": "Talange, Rue Tabarly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16726763, + 49.23699697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMTUB5LCGWL", + "ref": "MTUB5LCGWL", + "name": "Talange, Rue de l'Usine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16709009, + 49.23853082 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZP2XBRNY7Q", + "ref": "ZP2XBRNY7Q", + "name": "Talange, rue Simone de Beauvoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1696937, + 49.23708488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGXQCI6D93G", + "ref": "GXQCI6D93G", + "name": "Talange, Parking Aragon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16558187, + 49.23279051 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PODZG0S8OHF", + "ref": "ODZG0S8OHF", + "name": "Talange, Rue Tabarly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.141376, + 49.232838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUH6ISR4DAZ", + "ref": "UH6ISR4DAZ", + "name": "Marange, Allée des Acacias", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.63364, + 48.9528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHSGDN5TMKB", + "ref": "HSGDN5TMKB", + "name": "Niederbronn, Place de la Gare", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.61174961, + 48.94217109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVIY9LSWFOF", + "ref": "VIY9LSWFOF", + "name": "Oberbronn, Place du Couvent", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.66379112, + 48.93055017 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJFFCKZAJSW", + "ref": "JFFCKZAJSW", + "name": "Reichshoffen, Parking de la Charte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.366612, + -21.265831 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBUE8MYS7P9", + "ref": "BUE8MYS7P9", + "name": "Super U Etang Salé", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46983122, + -21.3170725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PASJPOGWDW9", + "ref": "ASJPOGWDW9", + "name": "Tennis Club Saint Pierre", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.660558, + -20.961651 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM8SKCP6RWC", + "ref": "M8SKCP6RWC", + "name": "Atlas Saint André", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.660558, + -20.961651 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM8SKCP6RWC", + "ref": "M8SKCP6RWC", + "name": "Atlas Saint André", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46983122, + -21.3170725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PASJPOGWDW9", + "ref": "ASJPOGWDW9", + "name": "Tennis Club Saint Pierre", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.366612, + -21.265831 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBUE8MYS7P9", + "ref": "BUE8MYS7P9", + "name": "Super U Etang Salé", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.660558, + -20.961651 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM8SKCP6RWC", + "ref": "M8SKCP6RWC", + "name": "Atlas Saint André", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.39766347, + -21.2820316 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDIWE44BBM", + "ref": "PDIWE44BBM", + "name": "Burger King Saint Louis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46983122, + -21.3170725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PASJPOGWDW9", + "ref": "ASJPOGWDW9", + "name": "Tennis Club Saint Pierre", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47474772, + -21.3225547 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQIGUDGQUCV", + "ref": "QIGUDGQUCV", + "name": "Burger King Saint Pierre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.66379112, + 48.93055017 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJFFCKZAJSW", + "ref": "JFFCKZAJSW", + "name": "Reichshoffen, Parking de la Charte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46983122, + -21.3170725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PASJPOGWDW9", + "ref": "ASJPOGWDW9", + "name": "Tennis Club Saint Pierre", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.63067564, + -21.1329182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFE7WITDLPX", + "ref": "FE7WITDLPX", + "name": "Boulodrome - Plaine des Palmistes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.63067564, + -21.1329182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFE7WITDLPX", + "ref": "FE7WITDLPX", + "name": "Boulodrome - Plaine des Palmistes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.660558, + -20.961651 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM8SKCP6RWC", + "ref": "M8SKCP6RWC", + "name": "Atlas Saint André", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.65178355, + -20.9630462 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWPC00KCZXZ", + "ref": "WPC00KCZXZ", + "name": "Super U - Saint André", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.65178355, + -20.9630462 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWPC00KCZXZ", + "ref": "WPC00KCZXZ", + "name": "Super U - Saint André", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.65178355, + -20.9630462 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWPC00KCZXZ", + "ref": "WPC00KCZXZ", + "name": "Super U - Saint André", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.65178355, + -20.9630462 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWPC00KCZXZ", + "ref": "WPC00KCZXZ", + "name": "Super U - Saint André", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.141376, + 49.232838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUH6ISR4DAZ", + "ref": "UH6ISR4DAZ", + "name": "Marange, Allée des Acacias", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1152724, + 49.21443665 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNKA62CFRIP", + "ref": "NKA62CFRIP", + "name": "Marange, Place du Colibri", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1152724, + 49.21443665 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNKA62CFRIP", + "ref": "NKA62CFRIP", + "name": "Marange, Place du Colibri", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.353706, + 48.075534 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZEAQE62RQJ", + "ref": "ZEAQE62RQJ", + "name": "Colmar, Avenue de la Marne", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.39586, + 49.0128 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMLRMIEOLWC", + "ref": "MLRMIEOLWC", + "name": "Rémilly, Place Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.288081, + -21.168965 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRUIVJ6JIHW", + "ref": "RUIVJ6JIHW", + "name": "Saint-Leu, Rue du trésor", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.657465, + 41.908496 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN0JPXHXQ78", + "ref": "N0JPXHXQ78", + "name": "Ajaccio, Résidence Les Calanques", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.657465, + 41.908496 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN0JPXHXQ78", + "ref": "N0JPXHXQ78", + "name": "Ajaccio, Résidence Les Calanques", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.657465, + 41.908496 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN0JPXHXQ78", + "ref": "N0JPXHXQ78", + "name": "Ajaccio, Résidence Les Calanques", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.657465, + 41.908496 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN0JPXHXQ78", + "ref": "N0JPXHXQ78", + "name": "Ajaccio, Résidence Les Calanques", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.353706, + 48.075534 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZEAQE62RQJ", + "ref": "ZEAQE62RQJ", + "name": "Colmar, Avenue de la Marne", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.353706, + 48.075534 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZEAQE62RQJ", + "ref": "ZEAQE62RQJ", + "name": "Colmar, Avenue de la Marne", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", + "ref": "LLIX5ZKSM1M3T2", + "name": "Evry, SEM Genopole", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.00658, + 49.19142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI4EZXFLS0M", + "ref": "I4EZXFLS0M", + "name": "Sainte-Marie-aux-Chênes, Avenue Gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", + "ref": "LLIX5ZKSM1M3T2", + "name": "Evry, SEM Genopole", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", + "ref": "LLIX5ZKSM1M3T2", + "name": "Evry, SEM Genopole", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", + "ref": "LLIX5ZKSM1M3T2", + "name": "Evry, SEM Genopole", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", + "ref": "LLIX5ZKSM1M3T2", + "name": "Evry, SEM Genopole", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", + "ref": "LLIX5ZKSM1M3T2", + "name": "Evry, SEM Genopole", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", + "ref": "LLIX5ZKSM1M3T2", + "name": "Evry, SEM Genopole", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", + "ref": "LLIX5ZKSM1M3T2", + "name": "Evry, SEM Genopole", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIX5ZKSM1M3T2", + "ref": "LLIX5ZKSM1M3T2", + "name": "Evry, SEM Genopole", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.39586, + 49.0128 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMLRMIEOLWC", + "ref": "MLRMIEOLWC", + "name": "Rémilly, Place Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.00658, + 49.19142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI4EZXFLS0M", + "ref": "I4EZXFLS0M", + "name": "Sainte-Marie-aux-Chênes, Avenue Gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12425, + 49.222496 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWQWWODAWMW", + "ref": "WQWWODAWMW", + "name": "Marange, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46521082, + 43.5353684 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSZEY4Y1GS", + "ref": "WSZEY4Y1GS", + "name": "Draguignan, Parking de la Victoire", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12425, + 49.222496 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWQWWODAWMW", + "ref": "WQWWODAWMW", + "name": "Marange, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46521082, + 43.5353684 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSZEY4Y1GS", + "ref": "WSZEY4Y1GS", + "name": "Draguignan, Parking de la Victoire", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46104696, + 43.536261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHRKGJ6QXDH", + "ref": "HRKGJ6QXDH", + "name": "Draguignan, parking Azémar", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46521082, + 43.5353684 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSZEY4Y1GS", + "ref": "WSZEY4Y1GS", + "name": "Draguignan, Parking de la Victoire", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46521082, + 43.5353684 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSZEY4Y1GS", + "ref": "WSZEY4Y1GS", + "name": "Draguignan, Parking de la Victoire", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46104696, + 43.536261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHRKGJ6QXDH", + "ref": "HRKGJ6QXDH", + "name": "Draguignan, parking Azémar", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46104696, + 43.536261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHRKGJ6QXDH", + "ref": "HRKGJ6QXDH", + "name": "Draguignan, parking Azémar", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46521082, + 43.5353684 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSZEY4Y1GS", + "ref": "WSZEY4Y1GS", + "name": "Draguignan, Parking de la Victoire", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46521082, + 43.5353684 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSZEY4Y1GS", + "ref": "WSZEY4Y1GS", + "name": "Draguignan, Parking de la Victoire", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46521082, + 43.5353684 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSZEY4Y1GS", + "ref": "WSZEY4Y1GS", + "name": "Draguignan, Parking de la Victoire", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46521082, + 43.5353684 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSZEY4Y1GS", + "ref": "WSZEY4Y1GS", + "name": "Draguignan, Parking de la Victoire", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46521082, + 43.5353684 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSZEY4Y1GS", + "ref": "WSZEY4Y1GS", + "name": "Draguignan, Parking de la Victoire", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46521082, + 43.5353684 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSZEY4Y1GS", + "ref": "WSZEY4Y1GS", + "name": "Draguignan, Parking de la Victoire", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46104696, + 43.536261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHRKGJ6QXDH", + "ref": "HRKGJ6QXDH", + "name": "Draguignan, parking Azémar", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46579688, + 43.54076627 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNEI1A4E2LR", + "ref": "NEI1A4E2LR", + "name": "Draguignan, parking de l'îlot de l'Horloge", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46579688, + 43.54076627 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNEI1A4E2LR", + "ref": "NEI1A4E2LR", + "name": "Draguignan, parking de l'îlot de l'Horloge", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46579688, + 43.54076627 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNEI1A4E2LR", + "ref": "NEI1A4E2LR", + "name": "Draguignan, parking de l'îlot de l'Horloge", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46579688, + 43.54076627 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNEI1A4E2LR", + "ref": "NEI1A4E2LR", + "name": "Draguignan, parking de l'îlot de l'Horloge", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61628505, + 44.89138691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVTD24GRLDJ", + "ref": "VTD24GRLDJ", + "name": "Bruges, avenue de la Jalle Noire", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61628505, + 44.89138691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVTD24GRLDJ", + "ref": "VTD24GRLDJ", + "name": "Bruges, avenue de la Jalle Noire", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.336234, + 47.861831 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PVIYOCDWK2D", + "ref": "VIYOCDWK2D", + "name": "Langres, Parking Sous Bie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70319375, + 46.84935771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCSGDHJKZWQ", + "ref": "CSGDHJKZWQ", + "name": "Déols, Avenue de Gustaves EIFFEL", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEY9BGCXHTS", + "ref": "EY9BGCXHTS", + "name": "Dijon, Parking Hôpital Valmy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEY9BGCXHTS", + "ref": "EY9BGCXHTS", + "name": "Dijon, Parking Hôpital Valmy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEY9BGCXHTS", + "ref": "EY9BGCXHTS", + "name": "Dijon, Parking Hôpital Valmy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEY9BGCXHTS", + "ref": "EY9BGCXHTS", + "name": "Dijon, Parking Hôpital Valmy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEY9BGCXHTS", + "ref": "EY9BGCXHTS", + "name": "Dijon, Parking Hôpital Valmy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEY9BGCXHTS", + "ref": "EY9BGCXHTS", + "name": "Dijon, Parking Hôpital Valmy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEY9BGCXHTS", + "ref": "EY9BGCXHTS", + "name": "Dijon, Parking Hôpital Valmy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEY9BGCXHTS", + "ref": "EY9BGCXHTS", + "name": "Dijon, Parking Hôpital Valmy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEY9BGCXHTS", + "ref": "EY9BGCXHTS", + "name": "Dijon, Parking Hôpital Valmy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEY9BGCXHTS", + "ref": "EY9BGCXHTS", + "name": "Dijon, Parking Hôpital Valmy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEY9BGCXHTS", + "ref": "EY9BGCXHTS", + "name": "Dijon, Parking Hôpital Valmy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30034399, + -20.9435549 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5YRCO4MCH", + "ref": "Z5YRCO4MCH", + "name": "Le Port, Avenue Lénine, Parking Oasis 4ème étage", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30034399, + -20.9435549 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5YRCO4MCH", + "ref": "Z5YRCO4MCH", + "name": "Le Port, Avenue Lénine, Parking Oasis 4ème étage", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30034399, + -20.9435549 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ5YRCO4MCH", + "ref": "Z5YRCO4MCH", + "name": "Le Port, Avenue Lénine, Parking Oasis 4ème étage", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70319375, + 46.84935771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCSGDHJKZWQ", + "ref": "CSGDHJKZWQ", + "name": "Déols, Avenue de Gustaves EIFFEL", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70319375, + 46.84935771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCSGDHJKZWQ", + "ref": "CSGDHJKZWQ", + "name": "Déols, Avenue de Gustaves EIFFEL", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70319375, + 46.84935771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCSGDHJKZWQ", + "ref": "CSGDHJKZWQ", + "name": "Déols, Avenue de Gustaves EIFFEL", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70319375, + 46.84935771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCSGDHJKZWQ", + "ref": "CSGDHJKZWQ", + "name": "Déols, Avenue de Gustaves EIFFEL", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70319375, + 46.84935771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCSGDHJKZWQ", + "ref": "CSGDHJKZWQ", + "name": "Déols, Avenue de Gustaves EIFFEL", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEY9BGCXHTS", + "ref": "EY9BGCXHTS", + "name": "Dijon, Parking Hôpital Valmy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEY9BGCXHTS", + "ref": "EY9BGCXHTS", + "name": "Dijon, Parking Hôpital Valmy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEY9BGCXHTS", + "ref": "EY9BGCXHTS", + "name": "Dijon, Parking Hôpital Valmy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73573, + 48.5787 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYJMNZF", + "ref": "YJMNZF", + "name": "Strasbourg, Parking Petite-France", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.780682, + 48.571507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMTMBQ1VMJY", + "ref": "MTMBQ1VMJY", + "name": "Strasbourg, parking Dock 1", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.7635538, + 48.59868515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKKQLE6INYX", + "ref": "KKQLE6INYX", + "name": "Strasbourg, parking Europe Wacken publique", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.7635538, + 48.59868515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKKQLE6INYX", + "ref": "KKQLE6INYX", + "name": "Strasbourg, parking Europe Wacken publique", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74836, + 48.5814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAUCZWJ", + "ref": "AUCZWJ", + "name": "Strasbourg, Parking Gutenberg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74836, + 48.5814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAUCZWJ", + "ref": "AUCZWJ", + "name": "Strasbourg, Parking Gutenberg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73573, + 48.5787 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYJMNZF", + "ref": "YJMNZF", + "name": "Strasbourg, Parking Petite-France", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73573, + 48.5787 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYJMNZF", + "ref": "YJMNZF", + "name": "Strasbourg, Parking Petite-France", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73573, + 48.5787 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYJMNZF", + "ref": "YJMNZF", + "name": "Strasbourg, Parking Petite-France", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73573, + 48.5787 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYJMNZF", + "ref": "YJMNZF", + "name": "Strasbourg, Parking Petite-France", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEY9BGCXHTS", + "ref": "EY9BGCXHTS", + "name": "Dijon, Parking Hôpital Valmy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73573, + 48.5787 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYJMNZF", + "ref": "YJMNZF", + "name": "Strasbourg, Parking Petite-France", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74958, + 48.5756 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGKNGDZ", + "ref": "GKNGDZ", + "name": "Strasbourg, Parking Saint-Nicolas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74958, + 48.5756 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGKNGDZ", + "ref": "GKNGDZ", + "name": "Strasbourg, Parking Saint-Nicolas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.732935, + 48.582848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHTMKTM7ROT", + "ref": "HTMKTM7ROT", + "name": "Strasbourg, Parking Sainte-Aurélie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.732935, + 48.582848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHTMKTM7ROT", + "ref": "HTMKTM7ROT", + "name": "Strasbourg, Parking Sainte-Aurélie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.390306, + 43.87983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGTXAAQTG7", + "ref": "JGTXAAQTG7", + "name": "Parking George Santoni, APT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.390306, + 43.87983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGTXAAQTG7", + "ref": "JGTXAAQTG7", + "name": "Parking George Santoni, APT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEY9BGCXHTS", + "ref": "EY9BGCXHTS", + "name": "Dijon, Parking Hôpital Valmy", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70319375, + 46.84935771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCSGDHJKZWQ", + "ref": "CSGDHJKZWQ", + "name": "Déols, Avenue de Gustaves EIFFEL", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70319375, + 46.84935771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCSGDHJKZWQ", + "ref": "CSGDHJKZWQ", + "name": "Déols, Avenue de Gustaves EIFFEL", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61628505, + 44.89138691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVTD24GRLDJ", + "ref": "VTD24GRLDJ", + "name": "Bruges, avenue de la Jalle Noire", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2323784, + 49.09145112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA1OTAOVE13", + "ref": "A1OTAOVE13", + "name": "Metz, Parking Relais Foire Expo", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.424128, + 48.326655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMRQ8DJXDD", + "ref": "HMRQ8DJXDD", + "name": "Dambach-la-Ville, Parking des Charpentiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.424128, + 48.326655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHMRQ8DJXDD", + "ref": "HMRQ8DJXDD", + "name": "Dambach-la-Ville, Parking des Charpentiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.457815, + 48.410504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRYJXOYUE86", + "ref": "RYJXOYUE86", + "name": "Barr, Parking Jardin des Sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.457815, + 48.410504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRYJXOYUE86", + "ref": "RYJXOYUE86", + "name": "Barr, Parking Jardin des Sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43781, + 49.054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNBMZWT", + "ref": "NBMZWT", + "name": "Bitche, Communauté de communes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43781, + 49.054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNBMZWT", + "ref": "NBMZWT", + "name": "Bitche, Communauté de communes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43771407, + 49.05467492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNBMZWT", + "ref": "NBMZWT", + "name": "Bitche, Communauté de communes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43771407, + 49.05467492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNBMZWT", + "ref": "NBMZWT", + "name": "Bitche, Communauté de communes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.791854, + 43.436471 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIAN9F6VWO1", + "ref": "IAN9F6VWO1", + "name": "Saint-Raphaël, Voie Denis Papin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.080172, + 48.02775 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCMPLB7WHDW", + "ref": "CMPLB7WHDW", + "name": "Muhlbach-sur-Munster, Perle des Vosges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.080172, + 48.02775 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCMPLB7WHDW", + "ref": "CMPLB7WHDW", + "name": "Muhlbach-sur-Munster, Perle des Vosges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.935281, + 49.930116 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PETMIFQYXCA", + "ref": "ETMIFQYXCA", + "name": "Peronne, Rue Alfred Rey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.935281, + 49.930116 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PETMIFQYXCA", + "ref": "ETMIFQYXCA", + "name": "Peronne, Rue Alfred Rey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.932803, + 49.928808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSFV8O6KKAO", + "ref": "SFV8O6KKAO", + "name": "Place André AUDINOT, Péronne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.932803, + 49.928808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSFV8O6KKAO", + "ref": "SFV8O6KKAO", + "name": "Place André AUDINOT, Péronne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.892884, + 42.672587 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLTXRMEKMHM", + "ref": "LTXRMEKMHM", + "name": "Perpignan, Chemin de la Fauceille", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.889084, + 42.738149 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVLIOS1NEP", + "ref": "OVLIOS1NEP", + "name": "Perpignan, Rue Louis Delage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.886408, + 42.671744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRQ3Q8W8JZB", + "ref": "RQ3Q8W8JZB", + "name": "Perpignan, Avenue d'Espagne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.886408, + 42.671744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRQ3Q8W8JZB", + "ref": "RQ3Q8W8JZB", + "name": "Perpignan, Avenue d'Espagne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.529003, + 45.847791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEL3NQFHW0", + "ref": "VEL3NQFHW0", + "name": "Thiers , Av. Léo Lagrange", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.529003, + 45.847791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEL3NQFHW0", + "ref": "VEL3NQFHW0", + "name": "Thiers , Av. Léo Lagrange", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.135993, + 45.642895 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBII1ZEOITL", + "ref": "BII1ZEOITL", + "name": "Angouleme, Rue du Bordeaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17280653, + 49.15062261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQV1XBL32UC", + "ref": "QV1XBL32UC", + "name": "Woippy, Parking-Relais", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2323784, + 49.09145112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA1OTAOVE13", + "ref": "A1OTAOVE13", + "name": "Metz, Parking Relais Foire Expo", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17077408, + 49.13026545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSZ3N6E2YCW", + "ref": "SZ3N6E2YCW", + "name": "Rochambeau, Parking-Relais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2323784, + 49.09145112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA1OTAOVE13", + "ref": "A1OTAOVE13", + "name": "Metz, Parking Relais Foire Expo", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2323784, + 49.09145112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA1OTAOVE13", + "ref": "A1OTAOVE13", + "name": "Metz, Parking Relais Foire Expo", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17280653, + 49.15062261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQV1XBL32UC", + "ref": "QV1XBL32UC", + "name": "Woippy, Parking-Relais", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17077408, + 49.13026545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSZ3N6E2YCW", + "ref": "SZ3N6E2YCW", + "name": "Rochambeau, Parking-Relais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17280653, + 49.15062261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQV1XBL32UC", + "ref": "QV1XBL32UC", + "name": "Woippy, Parking-Relais", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17280653, + 49.15062261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQV1XBL32UC", + "ref": "QV1XBL32UC", + "name": "Woippy, Parking-Relais", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27165, + 48.828 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSUERDA", + "ref": "SUERDA", + "name": "Paris, Parking Parkélis Frères Voisin", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.135993, + 45.642895 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBII1ZEOITL", + "ref": "BII1ZEOITL", + "name": "Angouleme, Rue du Bordeaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27165, + 48.828 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSUERDA", + "ref": "SUERDA", + "name": "Paris, Parking Parkélis Frères Voisin", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27165, + 48.828 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSUERDA", + "ref": "SUERDA", + "name": "Paris, Parking Parkélis Frères Voisin", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27165, + 48.828 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSUERDA", + "ref": "SUERDA", + "name": "Paris, Parking Parkélis Frères Voisin", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27165, + 48.828 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSUERDA", + "ref": "SUERDA", + "name": "Paris, Parking Parkélis Frères Voisin", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67585831, + 44.84853261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBOTAXM1N9", + "ref": "ZBOTAXM1N9", + "name": "Mérignac, Partedis Public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67585831, + 44.84853261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZBOTAXM1N9", + "ref": "ZBOTAXM1N9", + "name": "Mérignac, Partedis Public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85657597, + 46.81367492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU8FM0DWWX8", + "ref": "U8FM0DWWX8", + "name": "Chalon-sur-Saône, Patachoux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85657597, + 46.81367492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU8FM0DWWX8", + "ref": "U8FM0DWWX8", + "name": "Chalon-sur-Saône, Patachoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.780682, + 48.571507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMTMBQ1VMJY", + "ref": "MTMBQ1VMJY", + "name": "Strasbourg, parking Dock 1", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.780682, + 48.571507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMTMBQ1VMJY", + "ref": "MTMBQ1VMJY", + "name": "Strasbourg, parking Dock 1", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.780682, + 48.571507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMTMBQ1VMJY", + "ref": "MTMBQ1VMJY", + "name": "Strasbourg, parking Dock 1", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.780682, + 48.571507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMTMBQ1VMJY", + "ref": "MTMBQ1VMJY", + "name": "Strasbourg, parking Dock 1", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71334804, + 48.55099453 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXVUDFL", + "ref": "XVUDFL", + "name": "Ostwald, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71334804, + 48.55099453 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXVUDFL", + "ref": "XVUDFL", + "name": "Ostwald, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6335347, + 47.23003877 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAHSA5KVF5H", + "ref": "AHSA5KVF5H", + "name": "Nantes, Avis Location", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6335347, + 47.23003877 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAHSA5KVF5H", + "ref": "AHSA5KVF5H", + "name": "Nantes, Avis Location", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6335347, + 47.23003877 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAHSA5KVF5H", + "ref": "AHSA5KVF5H", + "name": "Nantes, Avis Location", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.66796, + 48.7626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEUQNWG", + "ref": "EUQNWG", + "name": "Ozoir-la-Ferrière, Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.672, + 48.7617 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEACLKZ", + "ref": "EACLKZ", + "name": "Ozoir la Ferrière, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.66796, + 48.7626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEUQNWG", + "ref": "EUQNWG", + "name": "Ozoir-la-Ferrière, Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.672, + 48.7617 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEACLKZ", + "ref": "EACLKZ", + "name": "Ozoir la Ferrière, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37212484, + 47.56237043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXEIHBKLJME", + "ref": "XEIHBKLJME", + "name": "Patapain, Route Nationale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37212484, + 47.56237043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXEIHBKLJME", + "ref": "XEIHBKLJME", + "name": "Patapain, Route Nationale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34557791, + 47.04787699 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDGJQAA0FT", + "ref": "PDGJQAA0FT", + "name": "Patapain, rue Joseph Aristide Auxenfans", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34557791, + 47.04787699 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDGJQAA0FT", + "ref": "PDGJQAA0FT", + "name": "Patapain, rue Joseph Aristide Auxenfans", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70260771, + 46.85125182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWGALU8RLGY", + "ref": "WGALU8RLGY", + "name": "Patapain, Avenue Georges Hennequin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70260771, + 46.85125182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWGALU8RLGY", + "ref": "WGALU8RLGY", + "name": "Patapain, Avenue Georges Hennequin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9547898, + 46.57495515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG6EQG69JYG", + "ref": "G6EQG69JYG", + "name": "Saint-Laurent-en-Grandvaux, Rue du Parc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9547898, + 46.57495515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG6EQG69JYG", + "ref": "G6EQG69JYG", + "name": "Saint-Laurent-en-Grandvaux, Rue du Parc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31410268, + 48.92663827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPXF2LLPM8", + "ref": "CPXF2LLPM8", + "name": "Gennevilliers, avenue Louis Roche", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31410268, + 48.92663827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPXF2LLPM8", + "ref": "CPXF2LLPM8", + "name": "Gennevilliers, avenue Louis Roche", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79546, + 45.3585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD1LX7U3SHG", + "ref": "D1LX7U3SHG", + "name": "Bat 30, Osiris Labo", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79658, + 45.3585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRWFXPQAB4Q", + "ref": "RWFXPQAB4Q", + "name": "Bat 37, Osiris ADF et Accueil", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79658, + 45.3585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRWFXPQAB4Q", + "ref": "RWFXPQAB4Q", + "name": "Bat 37, Osiris ADF et Accueil", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.910526, + 47.905144 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PBXRRLVQJLH", + "ref": "BXRRLVQJLH", + "name": "Orléans, 25 Boulevard Alexandre Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046781, + 47.87412 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PTVHCOYXT0Q", + "ref": "TVHCOYXT0Q", + "name": "Bou, Place du Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046781, + 47.87412 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PTVHCOYXT0Q", + "ref": "TVHCOYXT0Q", + "name": "Bou, Place du Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.909853, + 47.905313 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PPSUDUL9MIJ", + "ref": "PSUDUL9MIJ", + "name": "Orléans, 29 Boulevard Alexandre Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8961, + 47.89256 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PPBVWXODJGA", + "ref": "PBVWXODJGA", + "name": "Orléans, Jardin des Plantes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.81417, + 47.94254 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PTDQIJPJMNC", + "ref": "TDQIJPJMNC", + "name": "Ormes, Parking Covoiturage Chemin des Plantes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.968126, + 47.832466 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PSDVWXZW1J4", + "ref": "SDVWXZW1J4", + "name": "Saint-Cyr-En-Val, Parking rue de La Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.90126, + 47.90074 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PI6GJEEHANQ", + "ref": "I6GJEEHANQ", + "name": "Orléans, Parking rue Notre Dame de Recouvrance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.910195, + 47.905229 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PH5QTPJILRB", + "ref": "H5QTPJILRB", + "name": "Orléans, 27 Boulevard Alexandre Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9046868, + 47.9028761 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRM45PMH4YHU6SK6", + "ref": "MH4YHU6SK6", + "name": "Orléans, rue Adolphe Crespin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79658, + 45.3585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRWFXPQAB4Q", + "ref": "RWFXPQAB4Q", + "name": "Bat 37, Osiris ADF et Accueil", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79759, + 45.3555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZAVKETLCQ", + "ref": "UZAVKETLCQ", + "name": "Bat 41c, Osiris Maintenance", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79693, + 45.3564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPP3BZRYFVB", + "ref": "PP3BZRYFVB", + "name": "Bat 40, Osiris Magasin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79759, + 45.3555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZAVKETLCQ", + "ref": "UZAVKETLCQ", + "name": "Bat 41c, Osiris Maintenance", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79658, + 45.3585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRWFXPQAB4Q", + "ref": "RWFXPQAB4Q", + "name": "Bat 37, Osiris ADF et Accueil", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79759, + 45.3555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUZAVKETLCQ", + "ref": "UZAVKETLCQ", + "name": "Bat 41c, Osiris Maintenance", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79693, + 45.3564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPP3BZRYFVB", + "ref": "PP3BZRYFVB", + "name": "Bat 40, Osiris Magasin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79546, + 45.3585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD1LX7U3SHG", + "ref": "D1LX7U3SHG", + "name": "Bat 30, Osiris Labo", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79546, + 45.3585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD1LX7U3SHG", + "ref": "D1LX7U3SHG", + "name": "Bat 30, Osiris Labo", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31410268, + 48.92663827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPXF2LLPM8", + "ref": "CPXF2LLPM8", + "name": "Gennevilliers, avenue Louis Roche", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31410268, + 48.92663827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPXF2LLPM8", + "ref": "CPXF2LLPM8", + "name": "Gennevilliers, avenue Louis Roche", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31410268, + 48.92663827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPXF2LLPM8", + "ref": "CPXF2LLPM8", + "name": "Gennevilliers, avenue Louis Roche", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76866, + 48.6005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAJGZJR", + "ref": "AJGZJR", + "name": "Strasbourg, Parking Coubertin", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75628, + 48.5812 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZMADJK", + "ref": "ZMADJK", + "name": "Strasbourg, Parking Bateliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74903, + 48.5856 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAHGUF", + "ref": "VAHGUF", + "name": "Strasbourg, Parking Broglie", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74903, + 48.5856 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAHGUF", + "ref": "VAHGUF", + "name": "Strasbourg, Parking Broglie", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74903, + 48.5856 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAHGUF", + "ref": "VAHGUF", + "name": "Strasbourg, Parking Broglie", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74903, + 48.5856 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAHGUF", + "ref": "VAHGUF", + "name": "Strasbourg, Parking Broglie", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74903, + 48.5856 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAHGUF", + "ref": "VAHGUF", + "name": "Strasbourg, Parking Broglie", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76866, + 48.6005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAJGZJR", + "ref": "AJGZJR", + "name": "Strasbourg, Parking Coubertin", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76866, + 48.6005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAJGZJR", + "ref": "AJGZJR", + "name": "Strasbourg, Parking Coubertin", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76866, + 48.6005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAJGZJR", + "ref": "AJGZJR", + "name": "Strasbourg, Parking Coubertin", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75179, + 48.578 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQUNHGB", + "ref": "QUNHGB", + "name": "Strasbourg, Parking Austerlitz", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76866, + 48.6005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAJGZJR", + "ref": "AJGZJR", + "name": "Strasbourg, Parking Coubertin", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76866, + 48.6005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAJGZJR", + "ref": "AJGZJR", + "name": "Strasbourg, Parking Coubertin", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76866, + 48.6005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAJGZJR", + "ref": "AJGZJR", + "name": "Strasbourg, Parking Coubertin", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76866, + 48.6005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAJGZJR", + "ref": "AJGZJR", + "name": "Strasbourg, Parking Coubertin", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76866, + 48.6005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAJGZJR", + "ref": "AJGZJR", + "name": "Strasbourg, Parking Coubertin", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76866, + 48.6005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAJGZJR", + "ref": "AJGZJR", + "name": "Strasbourg, Parking Coubertin", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76866, + 48.6005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAJGZJR", + "ref": "AJGZJR", + "name": "Strasbourg, Parking Coubertin", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76866, + 48.6005 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAJGZJR", + "ref": "AJGZJR", + "name": "Strasbourg, Parking Coubertin", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75628, + 48.5812 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZMADJK", + "ref": "ZMADJK", + "name": "Strasbourg, Parking Bateliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75179, + 48.578 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQUNHGB", + "ref": "QUNHGB", + "name": "Strasbourg, Parking Austerlitz", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31410268, + 48.92663827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPXF2LLPM8", + "ref": "CPXF2LLPM8", + "name": "Gennevilliers, avenue Louis Roche", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86179, + 45.7196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKDNDRR", + "ref": "KDNDRR", + "name": "Vénissieux, Parc du moulin à Vent", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 166.4454, + -22.1962 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSI2KB9XGYR", + "ref": "SI2KB9XGYR", + "name": "Dumbéa, Avenue des Télégraphes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 166.4454, + -22.1962 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSI2KB9XGYR", + "ref": "SI2KB9XGYR", + "name": "Dumbéa, Avenue des Télégraphes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95577706, + 45.05030241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZLOEP13R8Q", + "ref": "ZLOEP13R8Q", + "name": "Saint-Germain-La-Prade, rue Lamarck Jean-Baptiste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95577706, + 45.05030241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZLOEP13R8Q", + "ref": "ZLOEP13R8Q", + "name": "Saint-Germain-La-Prade, rue Lamarck Jean-Baptiste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -149.57666, + -17.7401472 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPX8CCIXVTW", + "ref": "PX8CCIXVTW", + "name": "Paea, LS TEHITI 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -149.57666, + -17.7401472 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPX8CCIXVTW", + "ref": "PX8CCIXVTW", + "name": "Paea, LS TEHITI 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402931, + 48.630265 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZOJVYBGVNI", + "ref": "ZOJVYBGVNI", + "name": "Ris-Orangis, Rue Jules Guesde", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402931, + 48.630265 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZOJVYBGVNI", + "ref": "ZOJVYBGVNI", + "name": "Ris-Orangis, Rue Jules Guesde", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86179, + 45.7196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKDNDRR", + "ref": "KDNDRR", + "name": "Vénissieux, Parc du moulin à Vent", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75179, + 48.578 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQUNHGB", + "ref": "QUNHGB", + "name": "Strasbourg, Parking Austerlitz", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86179, + 45.7196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKDNDRR", + "ref": "KDNDRR", + "name": "Vénissieux, Parc du moulin à Vent", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86179, + 45.7196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKDNDRR", + "ref": "KDNDRR", + "name": "Vénissieux, Parc du moulin à Vent", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86179, + 45.7196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKDNDRR", + "ref": "KDNDRR", + "name": "Vénissieux, Parc du moulin à Vent", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86179, + 45.7196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKDNDRR", + "ref": "KDNDRR", + "name": "Vénissieux, Parc du moulin à Vent", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86179, + 45.7196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKDNDRR", + "ref": "KDNDRR", + "name": "Vénissieux, Parc du moulin à Vent", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86179, + 45.7196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKDNDRR", + "ref": "KDNDRR", + "name": "Vénissieux, Parc du moulin à Vent", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75179, + 48.578 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQUNHGB", + "ref": "QUNHGB", + "name": "Strasbourg, Parking Austerlitz", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75179, + 48.578 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQUNHGB", + "ref": "QUNHGB", + "name": "Strasbourg, Parking Austerlitz", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.889084, + 42.738149 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVLIOS1NEP", + "ref": "OVLIOS1NEP", + "name": "Perpignan, Rue Louis Delage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28424, + 48.1954 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQYXETA", + "ref": "QYXETA", + "name": "Perrigny Immo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28424, + 48.1954 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQYXETA", + "ref": "QYXETA", + "name": "Perrigny Immo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29667692, + 43.25221254 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTAXW4NUFVF", + "ref": "TAXW4NUFVF", + "name": "Valras Plage, Port", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77243, + 49.4121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWZNSAM", + "ref": "WZNSAM", + "name": "Venette, Proméo", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77243, + 49.4121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWZNSAM", + "ref": "WZNSAM", + "name": "Venette, Proméo", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77243, + 49.4121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWZNSAM", + "ref": "WZNSAM", + "name": "Venette, Proméo", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77243, + 49.4121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWZNSAM", + "ref": "WZNSAM", + "name": "Venette, Proméo", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77243, + 49.4121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWZNSAM", + "ref": "WZNSAM", + "name": "Venette, Proméo", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77243, + 49.4121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWZNSAM", + "ref": "WZNSAM", + "name": "Venette, Proméo", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.124967, + 50.692625 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN9E3AHO598", + "ref": "N9E3AHO598", + "name": "Marcq en Baroeul, Parking CEPI Management", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.68619721, + 43.34195984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POIRPBLPGGO", + "ref": "OIRPBLPGGO", + "name": "Roquebrune-sur-Argens, Port des Issambres", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.68619721, + 43.34195984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POIRPBLPGGO", + "ref": "OIRPBLPGGO", + "name": "Roquebrune-sur-Argens, Port des Issambres", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.68619721, + 43.34195984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POIRPBLPGGO", + "ref": "OIRPBLPGGO", + "name": "Roquebrune-sur-Argens, Port des Issambres", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.68619721, + 43.34195984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POIRPBLPGGO", + "ref": "OIRPBLPGGO", + "name": "Roquebrune-sur-Argens, Port des Issambres", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.993125, + 50.470262 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYJRJT8ZFIK", + "ref": "YJRJT8ZFIK", + "name": "Oignies, Poste de police", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.993125, + 50.470262 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYJRJT8ZFIK", + "ref": "YJRJT8ZFIK", + "name": "Oignies, Poste de police", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.124967, + 50.692625 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN9E3AHO598", + "ref": "N9E3AHO598", + "name": "Marcq en Baroeul, Parking CEPI Management", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.124967, + 50.692625 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN9E3AHO598", + "ref": "N9E3AHO598", + "name": "Marcq en Baroeul, Parking CEPI Management", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.124967, + 50.692625 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN9E3AHO598", + "ref": "N9E3AHO598", + "name": "Marcq en Baroeul, Parking CEPI Management", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77243, + 49.4121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWZNSAM", + "ref": "WZNSAM", + "name": "Venette, Proméo", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.847807, + 43.935768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGID8GC3XH5", + "ref": "GID8GC3XH5", + "name": "Avignon, Premium Automobile Berbiguier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.847807, + 43.935768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGID8GC3XH5", + "ref": "GID8GC3XH5", + "name": "Avignon, Premium Automobile Berbiguier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13683557, + 45.74877581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHUMNVVMJLC", + "ref": "HUMNVVMJLC", + "name": "Aubière, Prestige Cars", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13683557, + 45.74877581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHUMNVVMJLC", + "ref": "HUMNVVMJLC", + "name": "Aubière, Prestige Cars", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13683557, + 45.74877581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHUMNVVMJLC", + "ref": "HUMNVVMJLC", + "name": "Aubière, Prestige Cars", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77243, + 49.4121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWZNSAM", + "ref": "WZNSAM", + "name": "Venette, Proméo", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77243, + 49.4121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWZNSAM", + "ref": "WZNSAM", + "name": "Venette, Proméo", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77243, + 49.4121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWZNSAM", + "ref": "WZNSAM", + "name": "Venette, Proméo", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.01650096, + 50.61827989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHJ4XH5K9DO", + "ref": "HJ4XH5K9DO", + "name": "Loos, Parking Lelievre", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87378, + 48.0024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSEYDG", + "ref": "VSEYDG", + "name": "La Bresse, Piscine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87378, + 48.0024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSEYDG", + "ref": "VSEYDG", + "name": "La Bresse, Piscine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.014157, + 50.615103 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJFZVVGX8O", + "ref": "RJFZVVGX8O", + "name": "Loos, Parking Salengro", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.009592, + 50.61748344 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POEKE1PI8DM", + "ref": "OEKE1PI8DM", + "name": "Loos, Rue Marcellin Berthelot", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.014157, + 50.615103 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJFZVVGX8O", + "ref": "RJFZVVGX8O", + "name": "Loos, Parking Salengro", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.009592, + 50.61748344 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POEKE1PI8DM", + "ref": "OEKE1PI8DM", + "name": "Loos, Rue Marcellin Berthelot", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.01599692, + 50.61302098 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWUZEQNBUU0", + "ref": "WUZEQNBUU0", + "name": "Loos, Parking de la Gare", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.009592, + 50.61748344 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POEKE1PI8DM", + "ref": "OEKE1PI8DM", + "name": "Loos, Rue Marcellin Berthelot", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.01599692, + 50.61302098 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWUZEQNBUU0", + "ref": "WUZEQNBUU0", + "name": "Loos, Parking de la Gare", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87378, + 48.0024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSEYDG", + "ref": "VSEYDG", + "name": "La Bresse, Piscine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.014157, + 50.615103 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJFZVVGX8O", + "ref": "RJFZVVGX8O", + "name": "Loos, Parking Salengro", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.01650096, + 50.61827989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHJ4XH5K9DO", + "ref": "HJ4XH5K9DO", + "name": "Loos, Parking Lelievre", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.01599692, + 50.61302098 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWUZEQNBUU0", + "ref": "WUZEQNBUU0", + "name": "Loos, Parking de la Gare", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.01650096, + 50.61827989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHJ4XH5K9DO", + "ref": "HJ4XH5K9DO", + "name": "Loos, Parking Lelievre", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.58479675, + 43.28824919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PILZU0QWCER", + "ref": "ILZU0QWCER", + "name": "Aubagne, RRG", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23698, + 48.8313 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHI8CYLTPBP", + "ref": "HI8CYLTPBP", + "name": "Boulogne-Billancourt, Renault", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46807, + 48.4143 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNTGG7P8XLF", + "ref": "NTGG7P8XLF", + "name": "Brest, route de Gouesnou public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46807, + 48.4143 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNTGG7P8XLF", + "ref": "NTGG7P8XLF", + "name": "Brest, route de Gouesnou public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.88569, + 48.0062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMAGQFS", + "ref": "MAGQFS", + "name": "La Bresse, Régie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-23", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87378, + 48.0024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSEYDG", + "ref": "VSEYDG", + "name": "La Bresse, Piscine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93139, + 46.896513 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJUD6RZJTTH", + "ref": "JUD6RZJTTH", + "name": "Puy du Fou, Parking Parc D", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -149.775508, + -17.4800938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZE3EDDITHO", + "ref": "ZE3EDDITHO", + "name": "Temae", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.042465, + 48.720608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW3NYJVVV4C", + "ref": "W3NYJVVV4C", + "name": "Sarrebourg, Terrasse Bretagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.042465, + 48.720608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW3NYJVVV4C", + "ref": "W3NYJVVV4C", + "name": "Sarrebourg, Terrasse Bretagne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -149.61231, + -17.600917 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTMUDQRXWDT", + "ref": "TMUDQRXWDT", + "name": "PK10", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-13", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -149.61231, + -17.600917 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTMUDQRXWDT", + "ref": "TMUDQRXWDT", + "name": "PK10", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-12", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.132567, + 50.602568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQIGYFMBDEQ", + "ref": "QIGYFMBDEQ", + "name": "Lezennes, Avenue Pierre et Marie Curie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.439726, + 42.599199 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMCARLUQ2VL", + "ref": "MCARLUQ2VL", + "name": "Biguglia, ZI de Tragone", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.439726, + 42.599199 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMCARLUQ2VL", + "ref": "MCARLUQ2VL", + "name": "Biguglia, ZI de Tragone", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -149.775508, + -17.4800938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZE3EDDITHO", + "ref": "ZE3EDDITHO", + "name": "Temae", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29667692, + 43.25221254 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTAXW4NUFVF", + "ref": "TAXW4NUFVF", + "name": "Valras Plage, Port", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.126527, + 43.520648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POWJJ5SAPNR", + "ref": "OWJJ5SAPNR", + "name": "Le Grau-du-Roi, Capitainerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.171193, + 44.505702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJLDOS4PD2H", + "ref": "JLDOS4PD2H", + "name": "Peugeot Bonachera, Prayssac", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.126213, + 43.517403 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PROA62NCPNF", + "ref": "ROA62NCPNF", + "name": "Le Grau-du-Roi, parking Chenal sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40785111, + 48.89914169 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCBMQXCFJ9L", + "ref": "CBMQXCFJ9L", + "name": "Halle de Pantin, Pantin Public", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40785111, + 48.89914169 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCBMQXCFJ9L", + "ref": "CBMQXCFJ9L", + "name": "Halle de Pantin, Pantin Public", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40785111, + 48.89914169 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCBMQXCFJ9L", + "ref": "CBMQXCFJ9L", + "name": "Halle de Pantin, Pantin Public", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40785111, + 48.89914169 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCBMQXCFJ9L", + "ref": "CBMQXCFJ9L", + "name": "Halle de Pantin, Pantin Public", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.370512, + 48.898419 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKBVONDUIIB", + "ref": "KBVONDUIIB", + "name": "Point P, Paris 18", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.370512, + 48.898419 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKBVONDUIIB", + "ref": "KBVONDUIIB", + "name": "Point P, Paris 18", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255949, + 43.366492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI4HXYDCXJI", + "ref": "I4HXYDCXJI", + "name": "Boujan-sur-Libron, Polyclinique St Privat", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255949, + 43.366492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI4HXYDCXJI", + "ref": "I4HXYDCXJI", + "name": "Boujan-sur-Libron, Polyclinique St Privat", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255949, + 43.366492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI4HXYDCXJI", + "ref": "I4HXYDCXJI", + "name": "Boujan-sur-Libron, Polyclinique St Privat", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255949, + 43.366492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI4HXYDCXJI", + "ref": "I4HXYDCXJI", + "name": "Boujan-sur-Libron, Polyclinique St Privat", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255949, + 43.366492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI4HXYDCXJI", + "ref": "I4HXYDCXJI", + "name": "Boujan-sur-Libron, Polyclinique St Privat", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255949, + 43.366492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI4HXYDCXJI", + "ref": "I4HXYDCXJI", + "name": "Boujan-sur-Libron, Polyclinique St Privat", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255949, + 43.366492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI4HXYDCXJI", + "ref": "I4HXYDCXJI", + "name": "Boujan-sur-Libron, Polyclinique St Privat", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255949, + 43.366492 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI4HXYDCXJI", + "ref": "I4HXYDCXJI", + "name": "Boujan-sur-Libron, Polyclinique St Privat", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.22644, + 43.3354 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHCGJJZ", + "ref": "HCGJJZ", + "name": "Polygone Béziers, Carrefour de l'Hours", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.22644, + 43.3354 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHCGJJZ", + "ref": "HCGJJZ", + "name": "Polygone Béziers, Carrefour de l'Hours", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.22644, + 43.3354 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHCGJJZ", + "ref": "HCGJJZ", + "name": "Polygone Béziers, Carrefour de l'Hours", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05049997, + 48.9043635 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNMFEQ90JG9", + "ref": "NMFEQ90JG9", + "name": "Pont a Mousson, PARKING LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053305, + 48.904986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIZU8ZFBXXB", + "ref": "IZU8ZFBXXB", + "name": "Pont a Mousson, PARKING PHILIPPE DE GUELDRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.389648, + 47.932087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDXWOUAPF4B", + "ref": "DXWOUAPF4B", + "name": "Ploërmel, Biocoop", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.389648, + 47.932087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDXWOUAPF4B", + "ref": "DXWOUAPF4B", + "name": "Ploërmel, Biocoop", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.174655, + 47.967881 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMWMLUQHPM0", + "ref": "MWMLUQHPM0", + "name": "Le Mans, Planet Auto", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65079, + 48.7963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRSX0LEKBQ0", + "ref": "RSX0LEKBQ0", + "name": "Roissy, Pharmacie de la gare", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.171193, + 44.505702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJLDOS4PD2H", + "ref": "JLDOS4PD2H", + "name": "Peugeot Bonachera, Prayssac", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.991944, + 43.609892 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGYNIQ5AGRO", + "ref": "GYNIQ5AGRO", + "name": "Pouillon, Peugeot", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.26321514, + 43.37836832 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLR8TGUULFU", + "ref": "LR8TGUULFU", + "name": "Flassans sur Issole, Parking", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.26321514, + 43.37836832 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLR8TGUULFU", + "ref": "LR8TGUULFU", + "name": "Flassans sur Issole, Parking", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.139421, + 14.650675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB9F5WIHHBL", + "ref": "B9F5WIHHBL", + "name": "Case-Pilote, Les Hauts de Maniba", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.139421, + 14.650675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB9F5WIHHBL", + "ref": "B9F5WIHHBL", + "name": "Case-Pilote, Les Hauts de Maniba", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.03207657, + 48.28769415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQBFZECLLXJ", + "ref": "QBFZECLLXJ", + "name": "La Rivière-de-Corps", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65079, + 48.7963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRSX0LEKBQ0", + "ref": "RSX0LEKBQ0", + "name": "Roissy, Pharmacie de la gare", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65079, + 48.7963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRSX0LEKBQ0", + "ref": "RSX0LEKBQ0", + "name": "Roissy, Pharmacie de la gare", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.174655, + 47.967881 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMWMLUQHPM0", + "ref": "MWMLUQHPM0", + "name": "Le Mans, Planet Auto", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65079, + 48.7963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRSX0LEKBQ0", + "ref": "RSX0LEKBQ0", + "name": "Roissy, Pharmacie de la gare", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65079, + 48.7963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRSX0LEKBQ0", + "ref": "RSX0LEKBQ0", + "name": "Roissy, Pharmacie de la gare", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65079, + 48.7963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRSX0LEKBQ0", + "ref": "RSX0LEKBQ0", + "name": "Roissy, Pharmacie de la gare", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65079, + 48.7963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRSX0LEKBQ0", + "ref": "RSX0LEKBQ0", + "name": "Roissy, Pharmacie de la gare", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65079, + 48.7963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRSX0LEKBQ0", + "ref": "RSX0LEKBQ0", + "name": "Roissy, Pharmacie de la gare", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65079, + 48.7963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRSX0LEKBQ0", + "ref": "RSX0LEKBQ0", + "name": "Roissy, Pharmacie de la gare", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65079, + 48.7963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRSX0LEKBQ0", + "ref": "RSX0LEKBQ0", + "name": "Roissy, Pharmacie de la gare", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.174655, + 47.967881 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMWMLUQHPM0", + "ref": "MWMLUQHPM0", + "name": "Le Mans, Planet Auto", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05778082, + 48.902702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPEUJAWCTR7", + "ref": "PEUJAWCTR7", + "name": "Pont a Mousson, PLACE DU PARADIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05049997, + 48.9043635 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNMFEQ90JG9", + "ref": "NMFEQ90JG9", + "name": "Pont a Mousson, PARKING LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053305, + 48.904986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIZU8ZFBXXB", + "ref": "IZU8ZFBXXB", + "name": "Pont a Mousson, PARKING PHILIPPE DE GUELDRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12670173, + 43.52180774 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCNTJBOJ10", + "ref": "JCNTJBOJ10", + "name": "Le Grau-du-Roi, atelier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0518438, + 48.900334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKLPPL4XTK", + "ref": "QKLPPL4XTK", + "name": "Pont-à-Mousson, Gare", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05438991, + 48.90910377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMAFQ9DQN6F", + "ref": "MAFQ9DQN6F", + "name": "Pont-à-Mousson, Piscine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0398713, + 48.9124041 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVXSL0B2ANU", + "ref": "VXSL0B2ANU", + "name": "Pont-à-Mousson, centre socio-culturel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05438991, + 48.90910377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMAFQ9DQN6F", + "ref": "MAFQ9DQN6F", + "name": "Pont-à-Mousson, Piscine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.126213, + 43.517403 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PROA62NCPNF", + "ref": "ROA62NCPNF", + "name": "Le Grau-du-Roi, parking Chenal sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.136678, + 43.518713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUK5JQUMRGT", + "ref": "UK5JQUMRGT", + "name": "Le Grau-du-Roi, Spinaker", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13157, + 43.518561 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDIEUSSXCH", + "ref": "JDIEUSSXCH", + "name": "Le Grau-du-Roi, Parking Lapérouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.135843, + 43.521069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDK6XS3IOSC", + "ref": "DK6XS3IOSC", + "name": "Le Grau-du-Roi, Terrasses de l'Espiguette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.137626, + 43.517815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHIPTHVIZZY", + "ref": "HIPTHVIZZY", + "name": "Le Grau-du-Roi, Triangle du Soleil sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05588657, + 48.90372981 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHJMFK5BNOH", + "ref": "HJMFK5BNOH", + "name": "Pont-à-Mousson, Place Saint-Antoine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.126149, + 43.5169 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQJPMFY9VDG", + "ref": "QJPMFY9VDG", + "name": "Le Grau-du-Roi, parking Jason", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13157, + 43.518561 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDIEUSSXCH", + "ref": "JDIEUSSXCH", + "name": "Le Grau-du-Roi, Parking Lapérouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.137626, + 43.517815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHIPTHVIZZY", + "ref": "HIPTHVIZZY", + "name": "Le Grau-du-Roi, Triangle du Soleil sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.136678, + 43.518713 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUK5JQUMRGT", + "ref": "UK5JQUMRGT", + "name": "Le Grau-du-Roi, Spinaker", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.126527, + 43.520648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POWJJ5SAPNR", + "ref": "OWJJ5SAPNR", + "name": "Le Grau-du-Roi, Capitainerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.135843, + 43.521069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDK6XS3IOSC", + "ref": "DK6XS3IOSC", + "name": "Le Grau-du-Roi, Terrasses de l'Espiguette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12670173, + 43.52180774 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCNTJBOJ10", + "ref": "JCNTJBOJ10", + "name": "Le Grau-du-Roi, atelier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.126149, + 43.5169 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQJPMFY9VDG", + "ref": "QJPMFY9VDG", + "name": "Le Grau-du-Roi, parking Jason", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0518438, + 48.900334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKLPPL4XTK", + "ref": "QKLPPL4XTK", + "name": "Pont-à-Mousson, Gare", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0518438, + 48.900334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKLPPL4XTK", + "ref": "QKLPPL4XTK", + "name": "Pont-à-Mousson, Gare", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.057684, + 48.89498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ2PTEQVKWN", + "ref": "J2PTEQVKWN", + "name": "Pont a Mousson, PARKING BOULODROME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0518438, + 48.900334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKLPPL4XTK", + "ref": "QKLPPL4XTK", + "name": "Pont-à-Mousson, Gare", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05778082, + 48.902702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPEUJAWCTR7", + "ref": "PEUJAWCTR7", + "name": "Pont a Mousson, PLACE DU PARADIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.059093, + 48.91675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZYJ7I0FGEH", + "ref": "ZYJ7I0FGEH", + "name": "Pont a Mousson, CENTRE DES SPORTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.057684, + 48.89498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ2PTEQVKWN", + "ref": "J2PTEQVKWN", + "name": "Pont a Mousson, PARKING BOULODROME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.059093, + 48.91675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZYJ7I0FGEH", + "ref": "ZYJ7I0FGEH", + "name": "Pont a Mousson, CENTRE DES SPORTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.063254, + 48.901667 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYEGFTTHMH7", + "ref": "YEGFTTHMH7", + "name": "Pont-à-Mousson, Port", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0518438, + 48.900334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKLPPL4XTK", + "ref": "QKLPPL4XTK", + "name": "Pont-à-Mousson, Gare", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0706, + 48.896979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWBYBTAJPL", + "ref": "JWBYBTAJPL", + "name": "Pont-à-Mousson, avenue des Etats-Unis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0518438, + 48.900334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKLPPL4XTK", + "ref": "QKLPPL4XTK", + "name": "Pont-à-Mousson, Gare", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0706, + 48.896979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWBYBTAJPL", + "ref": "JWBYBTAJPL", + "name": "Pont-à-Mousson, avenue des Etats-Unis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.057466, + 48.9158465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZPA4ATRQ2R", + "ref": "ZPA4ATRQ2R", + "name": "Pont-à-Mousson, centre des sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05588657, + 48.90372981 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHJMFK5BNOH", + "ref": "HJMFK5BNOH", + "name": "Pont-à-Mousson, Place Saint-Antoine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0518438, + 48.900334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKLPPL4XTK", + "ref": "QKLPPL4XTK", + "name": "Pont-à-Mousson, Gare", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.063254, + 48.901667 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYEGFTTHMH7", + "ref": "YEGFTTHMH7", + "name": "Pont-à-Mousson, Port", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05438991, + 48.90910377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMAFQ9DQN6F", + "ref": "MAFQ9DQN6F", + "name": "Pont-à-Mousson, Piscine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05438991, + 48.90910377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMAFQ9DQN6F", + "ref": "MAFQ9DQN6F", + "name": "Pont-à-Mousson, Piscine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0398713, + 48.9124041 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVXSL0B2ANU", + "ref": "VXSL0B2ANU", + "name": "Pont-à-Mousson, centre socio-culturel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0518438, + 48.900334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKLPPL4XTK", + "ref": "QKLPPL4XTK", + "name": "Pont-à-Mousson, Gare", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.057466, + 48.9158465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZPA4ATRQ2R", + "ref": "ZPA4ATRQ2R", + "name": "Pont-à-Mousson, centre des sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.557904, + 48.589523 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMMCTUADDCP", + "ref": "MMCTUADDCP", + "name": "Villenauxe-La-Grande, 25 Rue Cornuelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.039225, + 48.292272 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PXLCIFNNICB", + "ref": "XLCIFNNICB", + "name": "Sainte-Savine, 2 Rue jean baptiste corot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.290049, + 48.519764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PHIUZKM0QXB", + "ref": "HIUZKM0QXB", + "name": "Ramerupt, 16 rue Charles Delaunay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.935592, + 48.477265 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PCVPP0IT0WU", + "ref": "CVPP0IT0WU", + "name": "Droupt-Saint-Basle, RD14", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.500127, + 48.540725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PEOSAEXVXOL", + "ref": "EOSAEXVXOL", + "name": "La-Saulsotte, 1 Rue Saint-Fergel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.914111, + 48.026042 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PFTPT9EVHHC", + "ref": "FTPT9EVHHC", + "name": "Chessy-Les-Pres, 4 Rue du Moulin Jacotot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.729993, + 48.514019 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PH6MGEHRH8L", + "ref": "H6MGEHRH8L", + "name": "Romilly, 26 Av du Général Leclerc, Pkg de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.502292, + 48.064159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10POFTFKLBGGV", + "ref": "OFTFKLBGGV", + "name": "Loches-Sur-Ource, Rue du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.297369, + 48.084844 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PGCLIDDLXMP", + "ref": "GCLIDDLXMP", + "name": "Villemorien, 1 Place du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.19691, + 48.671467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNYOAPHU4JI", + "ref": "NYOAPHU4JI", + "name": "Mailly-Le-Camp, 36 Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.852836, + 48.501457 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMHAS1DBV2O", + "ref": "MHAS1DBV2O", + "name": "Chatres, 1 Rue du Four", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.935592, + 48.477265 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PCVPP0IT0WU", + "ref": "CVPP0IT0WU", + "name": "Droupt-Saint-Basle, RD14", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.039225, + 48.292272 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PXLCIFNNICB", + "ref": "XLCIFNNICB", + "name": "Sainte-Savine, 2 Rue jean baptiste corot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.975211, + 48.382891 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNO3UTM7ESA", + "ref": "NO3UTM7ESA", + "name": "Payns, 10 Voie riot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05944, + 48.295128 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PW0DDDMUY3L", + "ref": "W0DDDMUY3L", + "name": "Sainte-Savine, 1 BIS Rue gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.500127, + 48.540725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PEOSAEXVXOL", + "ref": "EOSAEXVXOL", + "name": "La-Saulsotte, 1 Rue Saint-Fergel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.290049, + 48.519764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PHIUZKM0QXB", + "ref": "HIUZKM0QXB", + "name": "Ramerupt, 16 rue Charles Delaunay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.975211, + 48.382891 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNO3UTM7ESA", + "ref": "NO3UTM7ESA", + "name": "Payns, 10 Voie riot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.785801, + 48.509162 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSM903GKE9B", + "ref": "SM903GKE9B", + "name": "Maizieres-La-Grande-Paroisse, Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7603, + 48.5033 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMEPTJ9OWEG", + "ref": "MEPTJ9OWEG", + "name": "Maizieres-La-Grande-Paroisse, Av du Gén de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05944, + 48.295128 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PW0DDDMUY3L", + "ref": "W0DDDMUY3L", + "name": "Sainte-Savine, 1 BIS Rue gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.297369, + 48.084844 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PGCLIDDLXMP", + "ref": "GCLIDDLXMP", + "name": "Villemorien, 1 Place du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.624693, + 48.233623 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PUZHYYMLXNA", + "ref": "UZHYYMLXNA", + "name": "Vulaines, 32 Route nationale 60", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.031631, + 48.311025 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PF6SJHLNDHA", + "ref": "F6SJHLNDHA", + "name": "La-Chapelle-Saint-Luc, Av de Neckarbischofsheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.926727, + 48.445215 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PRCTBEA2JQY", + "ref": "RCTBEA2JQY", + "name": "Saint-Mesmin, 35 Rue de Chily", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.518964, + 48.129514 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNHQEEP3OJC", + "ref": "NHQEEP3OJC", + "name": "Bertignolles, 5 Rue de la Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.395872, + 48.053815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PVPNHU2ZDUT", + "ref": "VPNHU2ZDUT", + "name": "Buxeuil, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.908456, + 48.042697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PR2QWWUUNL1", + "ref": "R2QWWUUNL1", + "name": "Ervy-Le-Chatel, 1 Rue du Tré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.364188, + 47.992499 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PYGET3T8P8P", + "ref": "YGET3T8P8P", + "name": "Les-Riceys, Rue du Parc Saint Vincent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5111747, + 48.4935616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PS5GFRFHWSW", + "ref": "S5GFRFHWSW", + "name": "Nogent-Sur-Seine, Avenue Saint Roch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.42743, + 48.028544 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJ2HGHKHSLJ", + "ref": "J2HGHKHSLJ", + "name": "Gye-Sur-Seine, 1 Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.386689, + 48.238867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PUATAXSIP73", + "ref": "UATAXSIP73", + "name": "La-Villeneuve-Au-Chene, 6 Rue de la Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.611208, + 48.451171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMPLFZRRCH2", + "ref": "MPLFZRRCH2", + "name": "Ferreux-Quincey, 18 Route de Nogent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.332113, + 48.364012 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PAW2Y62ZANM", + "ref": "AW2Y62ZANM", + "name": "Piney, Rue de la Halle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.498079, + 47.978213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PHFIJQKRTJJ", + "ref": "HFIJQKRTJJ", + "name": "Mussy-Sur-Seine, 18 Quai Interrompu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.104369, + 48.31798 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PFYOCOK9B3F", + "ref": "FYOCOK9B3F", + "name": "Pont-Sainte-Marie, 6 Rue du Moulinet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.101195, + 48.329628 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSGAGDZM0DN", + "ref": "SGAGDZM0DN", + "name": "Pont-Sainte-Marie, Voie Mac Arthur Glen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.101094, + 48.329641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PVLN2PSDDZH", + "ref": "VLN2PSDDZH", + "name": "Pont-Sainte-Marie, Voie Mac Arthur Glen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.535224, + 48.348173 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PL3BRA1Y7LX", + "ref": "L3BRA1Y7LX", + "name": "Dienville, 37 Avenue Paul Girard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.125956, + 48.332553 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PO8L0SVN1YZ", + "ref": "O8L0SVN1YZ", + "name": "Creney-Pres-Troyes, 45 Rue de la republique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.852836, + 48.501457 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMHAS1DBV2O", + "ref": "MHAS1DBV2O", + "name": "Chatres, 1 Rue du Four", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43476989, + 48.5110323 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PFIFWQ1FUV1", + "ref": "FIFWQ1FUV1", + "name": "Le-Meriot, Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.891382, + 48.207971 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PGO3LHWGD06", + "ref": "GO3LHWGD06", + "name": "Bercenay-En-Othe, 2 Rue du Prieuré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.682106, + 48.440882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PVDP80ZN7FA", + "ref": "VDP80ZN7FA", + "name": "Saint-Martin-De-Bossenay, 9 Rue de Chaillouet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.006239, + 48.360819 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PQJ1CPN7JU7", + "ref": "QJ1CPN7JU7", + "name": "Saint-Lye, 2 Impasse Louis X le Hutin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06958, + 48.312045 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PFT7GQAID6I", + "ref": "FT7GQAID6I", + "name": "Troyes, 22 Rue gregoire pierre herluison", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.017202, + 48.142109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PUCV3A9QN03", + "ref": "UCV3A9QN03", + "name": "Cresantignes, 40 Rue Principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.194289, + 48.531443 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PTNUS0N5LCV", + "ref": "TNUS0N5LCV", + "name": "Torcy-Le-Petit, 1 Rue de l'Enfer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.577552, + 48.550965 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PF3LFNNOE3M", + "ref": "F3LFNNOE3M", + "name": "Barbuise, 1 Route de Liours", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.395872, + 48.053815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PVPNHU2ZDUT", + "ref": "VPNHU2ZDUT", + "name": "Buxeuil, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.498079, + 47.978213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PHFIJQKRTJJ", + "ref": "HFIJQKRTJJ", + "name": "Mussy-Sur-Seine, 18 Quai Interrompu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.922544, + 48.493274 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PM1F8WRHMWF", + "ref": "M1F8WRHMWF", + "name": "Droupt-Ste-Marie, 12 Route de Méry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.443498, + 48.108046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PDVULJFPHTV", + "ref": "DVULJFPHTV", + "name": "Ville-Sur-Arce, 39 Gr Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.611208, + 48.451171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMPLFZRRCH2", + "ref": "MPLFZRRCH2", + "name": "Ferreux-Quincey, 18 Route de Nogent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.068311, + 48.29443 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PUYDC6UXCXN", + "ref": "UYDC6UXCXN", + "name": "Troyes, 5 Rue Marie Pascale Ragueneau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.067838, + 48.294424 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PW5FI5XLP32", + "ref": "W5FI5XLP32", + "name": "Troyes, 6 Boulevard Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.104369, + 48.31798 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PFYOCOK9B3F", + "ref": "FYOCOK9B3F", + "name": "Pont-Sainte-Marie, 6 Rue du Moulinet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.078809, + 48.294342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PWOWEZM3YVL", + "ref": "WOWEZM3YVL", + "name": "Troyes, 9 Boulevard du 14 Juillet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.335461, + 48.301693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PX98XY5WWHQ", + "ref": "X98XY5WWHQ", + "name": "Geraudot, 79 Les Hamberts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.068873, + 48.298083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PCI80EV2QJJ", + "ref": "CI80EV2QJJ", + "name": "Troyes, Boulevard Gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.068873, + 48.298083 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PCI80EV2QJJ", + "ref": "CI80EV2QJJ", + "name": "Troyes, Boulevard Gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.997767, + 48.194045 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PPCG9MT1EER", + "ref": "PCG9MT1EER", + "name": "Bouilly, 3 Rue du Champ Pile", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.789855, + 48.264099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PR2KKTURY5F", + "ref": "R2KKTURY5F", + "name": "Colombe-La-Fosse, 75 Rue Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0761, + 48.302682 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJX3WYHQ0GZ", + "ref": "JX3WYHQ0GZ", + "name": "Troyes, 15 Boulevard Danton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.52755, + 48.391572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PICAF2FYXD8", + "ref": "ICAF2FYXD8", + "name": "Brienne-Le-Chateau, 68 Rue de l'École Militaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.516982, + 48.399932 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJ4HVLFJXYB", + "ref": "J4HVLFJXYB", + "name": "Brienne-Le-Chateau, 29 Rue d'Arcis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.52974, + 48.392695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNWLLC5Y9PI", + "ref": "NWLLC5Y9PI", + "name": "Brienne-Le-Chateau, 11 Boulevard Napoléon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.624693, + 48.233623 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PUZHYYMLXNA", + "ref": "UZHYYMLXNA", + "name": "Vulaines, 32 Route nationale 60", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.137337, + 48.207034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PUIDOGADTJG", + "ref": "UIDOGADTJG", + "name": "Saint-Thibault, 5 Rue de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.085865, + 48.325312 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PXW3KNONHEE", + "ref": "XW3KNONHEE", + "name": "Lavau, 5 Rue de la Fin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.647877, + 48.267637 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PITQ6ULMJ59", + "ref": "ITQ6ULMJ59", + "name": "Arsonval, 5 Rue Tantane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17291, + 48.408332 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PC2C0H3ORFE", + "ref": "C2C0H3ORFE", + "name": "Charmont-Sous-Barbuise, 3 Place Collaverdey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.46641, + 48.239466 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PAL6PSPCLF8", + "ref": "AL6PSPCLF8", + "name": "Vendeuvre-Sur-Barse, 20 Avenue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9504, + 48.407601 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PHCL9EMOH18", + "ref": "HCL9EMOH18", + "name": "Savieres, 7 Place de la salle des fetes_x000D_", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.920259, + 48.099248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PQUNCIFCCI8", + "ref": "QUNCIFCCI8", + "name": "Auxon, 468 Grande Rue - Parking Intermarché", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.727224, + 48.257447 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PC16DS3V7VF", + "ref": "C16DS3V7VF", + "name": "Villemaur-Sur-Vanne, 3 Rue de l'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.914111, + 48.026042 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PFTPT9EVHHC", + "ref": "FTPT9EVHHC", + "name": "Chessy-Les-Pres, 4 Rue du Moulin Jacotot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.26666, + 48.252997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10POWCZOVJJDA", + "ref": "OWCZOVJJDA", + "name": "Lusigny-Sur-Barse, 4 Rue Louis Genevois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.829991, + 48.311377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PVE3I1SNXAY", + "ref": "VE3I1SNXAY", + "name": "Dierrey-Saint-Julien, 4 Rue du moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.483034, + 47.994615 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PITYFK2QUQW", + "ref": "ITYFK2QUQW", + "name": "Plaines-Saint-Lange, 6 Route départementale 671", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.372186, + 48.121911 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PIGEEE64TSJ", + "ref": "IGEEE64TSJ", + "name": "Bar-Sur-Seine, 2 rue du stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.708077, + 48.233992 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PCXZBMR0ZO1", + "ref": "CXZBMR0ZO1", + "name": "Bar-Sur-Aube, Parking Saint Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.668466, + 48.23801 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PRYCA2CSWBP", + "ref": "RYCA2CSWBP", + "name": "Saint-Benoist-Sur-Vanne, 21 route Nationale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.226495, + 48.179291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNU0UK8KQ1U", + "ref": "NU0UK8KQ1U", + "name": "Villemoyenne, 9 Rue René Deshons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.776899, + 48.198718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PAIFFRKY5XV", + "ref": "AIFFRKY5XV", + "name": "Bayel, 1 Pace de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.268967, + 48.254884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PKPYZDARPHY", + "ref": "KPYZDARPHY", + "name": "Lusigny-Sur-Barse, 14 Place Maurice Jacquinot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.534964, + 48.060667 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PM90FZ6RVEV", + "ref": "M90FZ6RVEV", + "name": "Essoyes, 34 Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.626185, + 48.548185 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PPZWWQPXHOM", + "ref": "PZWWQPXHOM", + "name": "Perigny-La-Rose, 2 Rue du Mousseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.968666, + 47.951248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PT9T4YNRQ8T", + "ref": "T9T4YNRQ8T", + "name": "Lignières, Rue des Quatre Vents", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.673175, + 48.484073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PHAKGNH2QU1", + "ref": "HAKGNH2QU1", + "name": "Gelannes, 1 Rue de la place Publique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.125956, + 48.332553 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PO8L0SVN1YZ", + "ref": "O8L0SVN1YZ", + "name": "Creney-Pres-Troyes, 45 Rue de la republique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.112504, + 48.635996 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PML8ZQJOCDL", + "ref": "ML8ZQJOCDL", + "name": "Villiers-Herbisse, 1 Rue de la Crayère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.776899, + 48.198718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PAIFFRKY5XV", + "ref": "AIFFRKY5XV", + "name": "Bayel, 1 Pace de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.516982, + 48.399932 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJ4HVLFJXYB", + "ref": "J4HVLFJXYB", + "name": "Brienne-Le-Chateau, 29 Rue d'Arcis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.078809, + 48.294342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PWOWEZM3YVL", + "ref": "WOWEZM3YVL", + "name": "Troyes, 9 Boulevard du 14 Juillet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.075898, + 48.293296 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSPHOAP76VH", + "ref": "SPHOAP76VH", + "name": "Troyes, 49 Boulevard du 14 Juillet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.068311, + 48.29443 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PUYDC6UXCXN", + "ref": "UYDC6UXCXN", + "name": "Troyes, 5 Rue Marie Pascale Ragueneau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.52974, + 48.392695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNWLLC5Y9PI", + "ref": "NWLLC5Y9PI", + "name": "Brienne-Le-Chateau, 11 Boulevard Napoléon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.067838, + 48.294424 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PW5FI5XLP32", + "ref": "W5FI5XLP32", + "name": "Troyes, 6 Boulevard Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.274361, + 48.503592 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PDEGQM5QJVX", + "ref": "DEGQM5QJVX", + "name": "Chaudrey, 26 Rue du Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43476989, + 48.5110323 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PFIFWQ1FUV1", + "ref": "FIFWQ1FUV1", + "name": "Le-Meriot, Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.716259, + 48.515358 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PRHQHGUNUJO", + "ref": "RHQHGUNUJO", + "name": "Romilly-Sur-Seine, 1 Rue Guy Môquet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.727739, + 48.524444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PE2RZPOTRBD", + "ref": "E2RZPOTRBD", + "name": "Romilly-Sur-Seine, 5 Avenue Jules Jacquemin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.975597, + 48.274322 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PTUOBRCUPX7", + "ref": "TUOBRCUPX7", + "name": "Torvilliers, 22 Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.138651, + 48.059752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PXPVDAUWIUL", + "ref": "XPVDAUWIUL", + "name": "Chaource, 15 Rue du Beaucaron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.726184, + 48.520456 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSX6GEG8ZZ9", + "ref": "SX6GEG8ZZ9", + "name": "Romilly-Sur-Seine, 41 Place des Martyrs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99599, + 47.988229 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PF2OPBGTHZ6", + "ref": "F2OPBGTHZ6", + "name": "Bernon, 13 Rue Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.73673, + 48.403725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PERKIMUKWMI", + "ref": "ERKIMUKWMI", + "name": "Marigny-Le-Chatel, 1 Ruelle des juifs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.577514, + 48.29715 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PVQEXLSVRD6", + "ref": "VQEXLSVRD6", + "name": "Jessains, 3 Rue de la Fontaine Saint-Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.52755, + 48.391572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PICAF2FYXD8", + "ref": "ICAF2FYXD8", + "name": "Brienne-Le-Chateau, 68 Rue de l'École Militaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.111696, + 48.624835 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJT57QTOIAB", + "ref": "JT57QTOIAB", + "name": "Herbisse, 3 Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.04579, + 48.278961 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PT9MXJNYNEM", + "ref": "T9MXJNYNEM", + "name": "Saint André les Vergers, Entrée des Antes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1623023, + 48.2884229 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMN2IP3OV9A", + "ref": "MN2IP3OV9A", + "name": "Thennelières, Aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.051992, + 48.283534 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSMUUIBGAX6", + "ref": "SMUUIBGAX6", + "name": "Saint-Andre-Les-Vergers, Avenue de l'Ile Germaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2163563, + 48.1705744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PLOQVFXXZ4U", + "ref": "LOQVFXXZ4U", + "name": "Saint-Parres-Les-Vaudes, Rue François Mothre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.968203, + 48.568551 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PP4F3QRFJ1V", + "ref": "P4F3QRFJ1V", + "name": "Plancy-L'Abbaye, 3 Place Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8726956, + 48.2785931 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNLRCCHATCF", + "ref": "NLRCCHATCF", + "name": "Fontvannes, Place de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3851649, + 48.5015677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PRIG9LCTQGX", + "ref": "RIG9LCTQGX", + "name": "Jasseines, Ruelle du Monument", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.201564, + 48.669258 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PENKBOA6MC5", + "ref": "ENKBOA6MC5", + "name": "Mailly-Le-Camp, 66 Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.310657, + 48.493503 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PP4GE5YC7JS", + "ref": "P4GE5YC7JS", + "name": "Nogent-Sur-Aube, 65 Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.059989, + 48.346367 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10POA0RW4NYDI", + "ref": "OA0RW4NYDI", + "name": "Sainte-Maure, 1 Rue de l'Essor", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08103, + 48.294271 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PUMJPQGG6NH", + "ref": "UMJPQGG6NH", + "name": "Troyes, 4 Rue Charles Desguerrois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.708251, + 48.288087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PWQKIXJ3XWI", + "ref": "WQKIXJ3XWI", + "name": "Palis, 2 Rue de la Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1623023, + 48.2884229 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMN2IP3OV9A", + "ref": "MN2IP3OV9A", + "name": "Thennelières, Aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.080508, + 48.293681 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PTAP2EUA8MR", + "ref": "TAP2EUA8MR", + "name": "Troyes, 7 Rue Nicolas SIRET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.070461, + 48.292115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PB6PXRPIOV4", + "ref": "B6PXRPIOV4", + "name": "Troyes, 1 1 Rue du Premier B C P", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.337234, + 48.256026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PFI7LYGYWRE", + "ref": "FI7LYGYWRE", + "name": "Mesnil-Saint-Pere, 5 Rue du Lac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.232003, + 48.592374 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PRSDAVBFCEE", + "ref": "RSDAVBFCEE", + "name": "Grandville, 5 Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.51705, + 48.297775 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PXYVVZLUAV4", + "ref": "XYVVZLUAV4", + "name": "Amance, 2 Place René Pietremont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.731123, + 48.221726 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PRSAKTATWHB", + "ref": "RSAKTATWHB", + "name": "Aix-En-Othe, 6 Rue d'Alma", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.65457, + 48.388611 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PAMRW3PLL2G", + "ref": "AMRW3PLL2G", + "name": "Avon-La-Peze, 1 Rue de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.721178, + 48.505446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSWGZXGSK7K", + "ref": "SWGZXGSK7K", + "name": "Romilly-Sur-Seine, 60 Rue du Colonel Fabien", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.727069, + 48.51718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PHNYSCUGFWO", + "ref": "HNYSCUGFWO", + "name": "Romilly-Sur-Seine, 16 Rue de l'Union", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.663522, + 48.51467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PC3XIBVJXZ3", + "ref": "C3XIBVJXZ3", + "name": "Saint-Hilaire-Sous-Romilly, 9 Les Ruchelats", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.110207, + 48.235708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PE3LX6DF0I4", + "ref": "E3LX6DF0I4", + "name": "Bucheres, 1 Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.665006, + 48.177289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PAIKEDRMXBL", + "ref": "AIKEDRMXBL", + "name": "Berulle, 1 Chemin du Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.017202, + 48.142109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PUCV3A9QN03", + "ref": "UCV3A9QN03", + "name": "Cresantignes, 40 Rue Principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06958, + 48.312045 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PFT7GQAID6I", + "ref": "FT7GQAID6I", + "name": "Troyes, 22 Rue gregoire pierre herluison", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.335461, + 48.301693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PX98XY5WWHQ", + "ref": "X98XY5WWHQ", + "name": "Geraudot, 79 Les Hamberts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.526286, + 48.348072 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PO67PC5Z8LO", + "ref": "O67PC5Z8LO", + "name": "Dienville, Port DIENVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.073498, + 48.269322 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PZ8YVZWSQIE", + "ref": "Z8YVZWSQIE", + "name": "Rosieres-Pres-Troyes, 19 Rue Gustave Eiffel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.577552, + 48.550965 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PF3LFNNOE3M", + "ref": "F3LFNNOE3M", + "name": "Barbuise, 1 Route de Liours", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.069758, + 48.276579 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PFHNPHFUR1P", + "ref": "FHNPHFUR1P", + "name": "Troyes, Avenue des Lombards", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.069551, + 48.31203 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PM8VPGPD5FN", + "ref": "M8VPGPD5FN", + "name": "Troyes, 22 Rue Grégoire Pierre Herluison", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.246403, + 48.166854 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNCLUISOFLF", + "ref": "NCLUISOFLF", + "name": "Chappes, 8 Place camille Bruy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.194289, + 48.531443 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PTNUS0N5LCV", + "ref": "TNUS0N5LCV", + "name": "Torcy-Le-Petit, 1 Rue de l'Enfer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.069551, + 48.31203 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PM8VPGPD5FN", + "ref": "M8VPGPD5FN", + "name": "Troyes, 22 Rue Grégoire Pierre Herluison", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2988, + 48.238953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNZLM3MS4GS", + "ref": "NZLM3MS4GS", + "name": "Montieramey, 41 Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.969593, + 48.422127 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PZKK7RLCGHF", + "ref": "ZKK7RLCGHF", + "name": "Chauchigny, 35 Rue des Grandes Communication", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.502756, + 48.357641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PDPY7WNXRYD", + "ref": "DPY7WNXRYD", + "name": "Radonvilliers, 35 Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400423, + 48.358925 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PTQAAFAZ1RT", + "ref": "TQAAFAZ1RT", + "name": "Brevonnes, 1 Rue de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.443498, + 48.108046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PDVULJFPHTV", + "ref": "DVULJFPHTV", + "name": "Ville-Sur-Arce, 39 Gr Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.922544, + 48.493274 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PM1F8WRHMWF", + "ref": "M1F8WRHMWF", + "name": "Droupt-Ste-Marie, 12 Route de Méry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.302821, + 48.142869 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PWX2E9X4IMC", + "ref": "WX2E9X4IMC", + "name": "Virey-Sous-Bar, 10 rue jean Monnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.122666, + 48.455884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMJJBMETL1P", + "ref": "MJJBMETL1P", + "name": "Voue, 2 Route de Montsuzain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.26242, + 48.345479 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNJ4BNTOLRY", + "ref": "NJ4BNTOLRY", + "name": "Rouilly-Sacey, 24 Route du Lac d'Orient", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.854229, + 48.225196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMMYWYPTXJS", + "ref": "MMYWYPTXJS", + "name": "Chennegy, 4 D23", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.997767, + 48.194045 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PPCG9MT1EER", + "ref": "PCG9MT1EER", + "name": "Bouilly, 3 Rue du Champ Pile", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.658171, + 48.418127 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PPWW4OVOZ6V", + "ref": "PWW4OVOZ6V", + "name": "Epothemont, 23 Rue de la Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.268967, + 48.254884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PKPYZDARPHY", + "ref": "KPYZDARPHY", + "name": "Lusigny-Sur-Barse, 14 Place Maurice Jacquinot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.26666, + 48.252997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10POWCZOVJJDA", + "ref": "OWCZOVJJDA", + "name": "Lusigny-Sur-Barse, 4 Rue Louis Genevois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.789855, + 48.264099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PR2KKTURY5F", + "ref": "R2KKTURY5F", + "name": "Colombe-La-Fosse, 75 Rue Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.572433, + 48.508902 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PVTLPHAV5IB", + "ref": "VTLPHAV5IB", + "name": "Chavanges, 1 Place de la Halle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.675846, + 48.140091 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJSBX7JXEXQ", + "ref": "JSBX7JXEXQ", + "name": "Champignol-Lez-Mondeville, 5 Rue de Mondeville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.733153, + 48.375387 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJMNDZF5K60", + "ref": "JMNDZF5K60", + "name": "Soulaines-Dhuys, 4 Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.623987, + 48.202677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PBWBZ2WP2CP", + "ref": "BWBZ2WP2CP", + "name": "Meurville, Rue de la Montée des Canes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.035952, + 48.129995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PFZQRL62BMY", + "ref": "FZQRL62BMY", + "name": "Jeugny, 3 Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.201564, + 48.669258 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PENKBOA6MC5", + "ref": "ENKBOA6MC5", + "name": "Mailly-Le-Camp, 66 Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702219, + 48.236231 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PBCIKXNCWR9", + "ref": "BCIKXNCWR9", + "name": "Bar-Sur-Aube, 27 Avenue du Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.029734, + 48.368461 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PO1EWBAVT2R", + "ref": "O1EWBAVT2R", + "name": "Saint-Benoit-Sur-Seine, Rue de Thurey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.706075, + 48.233498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PLRX5I5HMT3", + "ref": "LRX5I5HMT3", + "name": "Bar-Sur-Aube, 1 Place Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07005, + 48.279567 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PKAI86XVIQL", + "ref": "KAI86XVIQL", + "name": "Troyes, Rue Louis le Clert - Parking P1 Hôpital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.022728, + 48.333103 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10POKPUUNPHL4", + "ref": "OKPUUNPHL4", + "name": "Lavau, Chemin des Corvées", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.029734, + 48.368461 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PO1EWBAVT2R", + "ref": "O1EWBAVT2R", + "name": "Saint-Benoit-Sur-Seine, Rue de Thurey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.122666, + 48.455884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMJJBMETL1P", + "ref": "MJJBMETL1P", + "name": "Voue, 2 Route de Montsuzain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07617181, + 48.3027356 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PP5KHA01Q5Y", + "ref": "P5KHA01Q5Y", + "name": "Troyes, 10 Boulevard Danton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.854229, + 48.225196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMMYWYPTXJS", + "ref": "MMYWYPTXJS", + "name": "Chennegy, 4 D23", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0761, + 48.302682 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJX3WYHQ0GZ", + "ref": "JX3WYHQ0GZ", + "name": "Troyes, 15 Boulevard Danton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.716259, + 48.515358 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PRHQHGUNUJO", + "ref": "RHQHGUNUJO", + "name": "Romilly-Sur-Seine, 1 Rue Guy Môquet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.913283, + 48.031301 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PQDNIU62V9N", + "ref": "QDNIU62V9N", + "name": "Chateauvillain, Parking Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.218059, + 48.423374 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PVZFPF5S0ZN", + "ref": "VZFPF5S0ZN", + "name": "Poissons, Rue Neuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1445625, + 48.29725934 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52POZAVWSNPPH", + "ref": "OZAVWSNPPH", + "name": "Froncles, Chemin des Carelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.413374, + 48.271275 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PX2IJYCW9UM", + "ref": "X2IJYCW9UM", + "name": "Saint Blin, Rue de l'Hôtel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.039643, + 48.58377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PEH4IDAEXBO", + "ref": "EH4IDAEXBO", + "name": "Eurville-Bienville, Avenue Jacques Marcellot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.331652, + 47.85822 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PEFHFMNWM27", + "ref": "EFHFMNWM27", + "name": "Langres, Place Bel Air", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.372734, + 47.868638 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PD2ZQGJMFFF", + "ref": "D2ZQGJMFFF", + "name": "Peigney, Rue de la Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.296041, + 48.088101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PKZLRAD1NK3", + "ref": "KZLRAD1NK3", + "name": "Biesles, Rue Memasse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.331652, + 47.85822 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PEFHFMNWM27", + "ref": "EFHFMNWM27", + "name": "Langres, Place Bel Air", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.140287, + 48.201938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PE2LLOSSIAV", + "ref": "E2LLOSSIAV", + "name": "Bologne, Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.491682, + 47.999145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PROSGBVYDNK", + "ref": "ROSGBVYDNK", + "name": "Val de Meuse, Place de Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.006872, + 47.948425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PC6FVVB3MVR", + "ref": "C6FVVB3MVR", + "name": "Arc en Barrois, Rue Instituteur André", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.111945, + 48.524954 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PCJNS7ETPCQ", + "ref": "CJNS7ETPCQ", + "name": "Chevillon, Parking de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.483057, + 48.009488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PPGS8EFRLLN", + "ref": "PGS8EFRLLN", + "name": "Val de Meuse, Parking Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.379166, + 47.91356 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PJMO7A9PAVP", + "ref": "JMO7A9PAVP", + "name": "Changey, Rue du Lac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.434096, + 47.803967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PUHYAW6LFGQ", + "ref": "UHYAW6LFGQ", + "name": "Chalindrey, Rue des Frères Lumières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.005376, + 47.950708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PUX0C74ZEDL", + "ref": "UX0C74ZEDL", + "name": "Arc en Barrois, Route d'Aubepierre - Parc National", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.005376, + 47.950708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PUX0C74ZEDL", + "ref": "UX0C74ZEDL", + "name": "Arc en Barrois, Route d'Aubepierre - Parc National", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.061774, + 47.785968 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PSMOCKAISVV", + "ref": "SMOCKAISVV", + "name": "Auberive, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.948368, + 48.498106 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PTR0POUQCGY", + "ref": "TR0POUQCGY", + "name": "Wassy, Rue du Général de France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.016524, + 48.465158 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PXKFIUVLHYL", + "ref": "XKFIUVLHYL", + "name": "Les-Grandes-Chapelles, 1 Place du Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.675846, + 48.140091 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJSBX7JXEXQ", + "ref": "JSBX7JXEXQ", + "name": "Champignol-Lez-Mondeville, 5 Rue de Mondeville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.42743, + 48.028544 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJ2HGHKHSLJ", + "ref": "J2HGHKHSLJ", + "name": "Gye-Sur-Seine, 1 Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06433811, + 48.25635205 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PGTF6ZJQHLQ", + "ref": "GTF6ZJQHLQ", + "name": "Rosières-prés-Troyes, Parking Place Charles De Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06433811, + 48.25635205 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PGTF6ZJQHLQ", + "ref": "GTF6ZJQHLQ", + "name": "Rosières-prés-Troyes, Parking Place Charles De Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2988, + 48.238953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNZLM3MS4GS", + "ref": "NZLM3MS4GS", + "name": "Montieramey, 41 Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.975597, + 48.274322 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PTUOBRCUPX7", + "ref": "TUOBRCUPX7", + "name": "Torvilliers, 22 Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.89093336, + 48.509824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PWCGDKEJF4J", + "ref": "WCGDKEJF4J", + "name": "Méry-sur-Seine, Rue de Bourdeaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.89093336, + 48.509824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PWCGDKEJF4J", + "ref": "WCGDKEJF4J", + "name": "Méry-sur-Seine, Rue de Bourdeaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.727739, + 48.524444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PE2RZPOTRBD", + "ref": "E2RZPOTRBD", + "name": "Romilly-Sur-Seine, 5 Avenue Jules Jacquemin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.138651, + 48.059752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PXPVDAUWIUL", + "ref": "XPVDAUWIUL", + "name": "Chaource, 15 Rue du Beaucaron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.059989, + 48.346367 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10POA0RW4NYDI", + "ref": "OA0RW4NYDI", + "name": "Sainte-Maure, 1 Rue de l'Essor", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.01989401, + 48.32645419 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PEGU6AL9UI6", + "ref": "EGU6AL9UI6", + "name": "Barberey-Saint-Sulpice, Parking de l'aéroport", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99599, + 47.988229 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PF2OPBGTHZ6", + "ref": "F2OPBGTHZ6", + "name": "Bernon, 13 Rue Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.21452042, + 48.29891165 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMWJ3AW8XB5", + "ref": "MWJ3AW8XB5", + "name": "Laubressel, rue du Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.727069, + 48.51718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PHNYSCUGFWO", + "ref": "HNYSCUGFWO", + "name": "Romilly-Sur-Seine, 16 Rue de l'Union", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.572433, + 48.508902 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PVTLPHAV5IB", + "ref": "VTLPHAV5IB", + "name": "Chavanges, 1 Place de la Halle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.577514, + 48.29715 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PVQEXLSVRD6", + "ref": "VQEXLSVRD6", + "name": "Jessains, 3 Rue de la Fontaine Saint-Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.733153, + 48.375387 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJMNDZF5K60", + "ref": "JMNDZF5K60", + "name": "Soulaines-Dhuys, 4 Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.663522, + 48.51467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PC3XIBVJXZ3", + "ref": "C3XIBVJXZ3", + "name": "Saint-Hilaire-Sous-Romilly, 9 Les Ruchelats", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.21452042, + 48.29891165 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMWJ3AW8XB5", + "ref": "MWJ3AW8XB5", + "name": "Laubressel, rue du Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.288711, + 47.654848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PQFDR0FZIXG", + "ref": "QFDR0FZIXG", + "name": "Le Montsaugeonnais, ZAE Champs Miollin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.320626, + 47.74663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PQNU5WLRMLT", + "ref": "QNU5WLRMLT", + "name": "Villegusien Le Lac, Rue de Villegusien à Percey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32932, + 47.83289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PKWFKOG6DAH", + "ref": "KWFKOG6DAH", + "name": "Saints Geosmes, Pôle socio-culturel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.061774, + 47.785968 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PSMOCKAISVV", + "ref": "SMOCKAISVV", + "name": "Auberive, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.745718, + 47.951446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PETNBV1EF5O", + "ref": "ETNBV1EF5O", + "name": "Bourbonne Les Bains, Parking Clocheton", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.372734, + 47.868638 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PD2ZQGJMFFF", + "ref": "D2ZQGJMFFF", + "name": "Peigney, Rue de la Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.320626, + 47.74663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PQNU5WLRMLT", + "ref": "QNU5WLRMLT", + "name": "Villegusien Le Lac, Rue de Villegusien à Percey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.331652, + 47.85822 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PEFHFMNWM27", + "ref": "EFHFMNWM27", + "name": "Langres, Place Bel Air", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.140287, + 48.201938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PE2LLOSSIAV", + "ref": "E2LLOSSIAV", + "name": "Bologne, Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32932, + 47.83289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PKWFKOG6DAH", + "ref": "KWFKOG6DAH", + "name": "Saints Geosmes, Pôle socio-culturel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.321319, + 48.246578 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PTEXAQQOGXS", + "ref": "TEXAQQOGXS", + "name": "Rimaucourt, Parking Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.288711, + 47.654848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PQFDR0FZIXG", + "ref": "QFDR0FZIXG", + "name": "Le Montsaugeonnais, ZAE Champs Miollin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.770701, + 48.47764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PKAEYN5LYTA", + "ref": "KAEYN5LYTA", + "name": "Montier en Der, Place Notre-Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.584236, + 48.199717 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PJKZFBQGI7U", + "ref": "JKZFBQGI7U", + "name": "Bourmont, Rue du Faubourg de France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.601061, + 47.782577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PUDQVGJDSB8", + "ref": "UDQVGJDSB8", + "name": "Fayl-Billot, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.745718, + 47.951446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PETNBV1EF5O", + "ref": "ETNBV1EF5O", + "name": "Bourbonne Les Bains, Parking Clocheton", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.886258, + 48.22296 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PVIUG8CLD3R", + "ref": "VIUG8CLD3R", + "name": "Colombey les Deux Eglises, Rue Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.621137, + 47.895943 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PB3UGVAMI5V", + "ref": "B3UGVAMI5V", + "name": "Varennes sur Amance, Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.793289, + 48.55213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PAXLL5QQDT9", + "ref": "AXLL5QQDT9", + "name": "Braucourt, Parking de l'école Dép. de Voile - D153", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.336234, + 47.861831 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PVIYOCDWK2D", + "ref": "VIYOCDWK2D", + "name": "Langres, Parking Sous Bie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.331652, + 47.85822 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PEFHFMNWM27", + "ref": "EFHFMNWM27", + "name": "Langres, Place Bel Air", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865491, + 48.589547 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PYV5RIITPOT", + "ref": "YV5RIITPOT", + "name": "Eclaron, Rue Lebon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.111945, + 48.524954 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PCJNS7ETPCQ", + "ref": "CJNS7ETPCQ", + "name": "Chevillon, Parking de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.434096, + 47.803967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PUHYAW6LFGQ", + "ref": "UHYAW6LFGQ", + "name": "Chalindrey, Rue des Frères Lumières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.621137, + 47.895943 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PB3UGVAMI5V", + "ref": "B3UGVAMI5V", + "name": "Varennes sur Amance, Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.04174, + 48.60593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PZLMJZJ3PZH", + "ref": "ZLMJZJ3PZH", + "name": "Chamouilley, Rue de la Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.584236, + 48.199717 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PJKZFBQGI7U", + "ref": "JKZFBQGI7U", + "name": "Bourmont, Rue du Faubourg de France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.293038, + 47.680423 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PY6GAKTDMGZ", + "ref": "Y6GAKTDMGZ", + "name": "Le Montsaugeonnais Prauthoy, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92133, + 48.036006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PYPPLUMHPKQ", + "ref": "YPPLUMHPKQ", + "name": "Chateauvillain, Rue du parc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.293038, + 47.680423 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PY6GAKTDMGZ", + "ref": "Y6GAKTDMGZ", + "name": "Le Montsaugeonnais Prauthoy, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.793289, + 48.55213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PAXLL5QQDT9", + "ref": "AXLL5QQDT9", + "name": "Braucourt, Parking de l'école Dép. de Voile - D153", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865491, + 48.589547 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PYV5RIITPOT", + "ref": "YV5RIITPOT", + "name": "Eclaron, Rue Lebon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.745718, + 47.951446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PETNBV1EF5O", + "ref": "ETNBV1EF5O", + "name": "Bourbonne Les Bains, Parking Clocheton", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.745718, + 47.951446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PETNBV1EF5O", + "ref": "ETNBV1EF5O", + "name": "Bourbonne Les Bains, Parking Clocheton", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.34095, + 48.027216 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PP6GDR6CG8R", + "ref": "P6GDR6CG8R", + "name": "Nogent, Place Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.133981, + 48.110928 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PMIVDIW60ET", + "ref": "MIVDIW60ET", + "name": "Chaumont, Avenue du Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.770701, + 48.47764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PKAEYN5LYTA", + "ref": "KAEYN5LYTA", + "name": "Montier en Der, Place Notre-Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.133981, + 48.110928 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PMIVDIW60ET", + "ref": "MIVDIW60ET", + "name": "Chaumont, Avenue du Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.135303, + 48.108849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PQH0DVWC2XY", + "ref": "QH0DVWC2XY", + "name": "Chaumont, Rue Henri Dunant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.886258, + 48.22296 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PVIUG8CLD3R", + "ref": "VIUG8CLD3R", + "name": "Colombey les Deux Eglises, Rue Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.34095, + 48.027216 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PP6GDR6CG8R", + "ref": "P6GDR6CG8R", + "name": "Nogent, Place Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.601061, + 47.782577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PUDQVGJDSB8", + "ref": "UDQVGJDSB8", + "name": "Fayl-Billot, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.948368, + 48.498106 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PTR0POUQCGY", + "ref": "TR0POUQCGY", + "name": "Wassy, Rue du Général de France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.135303, + 48.108849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS52PQH0DVWC2XY", + "ref": "QH0DVWC2XY", + "name": "Chaumont, Rue Henri Dunant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.01989401, + 48.32645419 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PEGU6AL9UI6", + "ref": "EGU6AL9UI6", + "name": "Barberey-Saint-Sulpice, Parking de l'aéroport", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.726184, + 48.520456 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSX6GEG8ZZ9", + "ref": "SX6GEG8ZZ9", + "name": "Romilly-Sur-Seine, 41 Place des Martyrs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07617181, + 48.3027356 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PP5KHA01Q5Y", + "ref": "P5KHA01Q5Y", + "name": "Troyes, 10 Boulevard Danton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.721178, + 48.505446 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSWGZXGSK7K", + "ref": "SWGZXGSK7K", + "name": "Romilly-Sur-Seine, 60 Rue du Colonel Fabien", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.070461, + 48.292115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PB6PXRPIOV4", + "ref": "B6PXRPIOV4", + "name": "Troyes, 1 1 Rue du Premier B C P", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.65457, + 48.388611 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PAMRW3PLL2G", + "ref": "AMRW3PLL2G", + "name": "Avon-La-Peze, 1 Rue de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.069551, + 48.31203 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PM8VPGPD5FN", + "ref": "M8VPGPD5FN", + "name": "Troyes, 22 Rue Grégoire Pierre Herluison", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08103, + 48.294271 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PUMJPQGG6NH", + "ref": "UMJPQGG6NH", + "name": "Troyes, 4 Rue Charles Desguerrois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.337234, + 48.256026 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PFI7LYGYWRE", + "ref": "FI7LYGYWRE", + "name": "Mesnil-Saint-Pere, 5 Rue du Lac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.730059, + 48.513979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSOLRFLNSDQ", + "ref": "SOLRFLNSDQ", + "name": "Romilly, 26 Av du Général Leclerc, Pkg de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.708251, + 48.288087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PWQKIXJ3XWI", + "ref": "WQKIXJ3XWI", + "name": "Palis, 2 Rue de la Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.731123, + 48.221726 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PRSAKTATWHB", + "ref": "RSAKTATWHB", + "name": "Aix-En-Othe, 6 Rue d'Alma", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.673175, + 48.484073 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PHAKGNH2QU1", + "ref": "HAKGNH2QU1", + "name": "Gelannes, 1 Rue de la place Publique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.502756, + 48.357641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PDPY7WNXRYD", + "ref": "DPY7WNXRYD", + "name": "Radonvilliers, 35 Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.232003, + 48.592374 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PRSDAVBFCEE", + "ref": "RSDAVBFCEE", + "name": "Grandville, 5 Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.969593, + 48.422127 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PZKK7RLCGHF", + "ref": "ZKK7RLCGHF", + "name": "Chauchigny, 35 Rue des Grandes Communication", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400423, + 48.358925 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PTQAAFAZ1RT", + "ref": "TQAAFAZ1RT", + "name": "Brevonnes, 1 Rue de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.51705, + 48.297775 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PXYVVZLUAV4", + "ref": "XYVVZLUAV4", + "name": "Amance, 2 Place René Pietremont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.274361, + 48.503592 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PDEGQM5QJVX", + "ref": "DEGQM5QJVX", + "name": "Chaudrey, 26 Rue du Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.665006, + 48.177289 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PAIKEDRMXBL", + "ref": "AIKEDRMXBL", + "name": "Berulle, 1 Chemin du Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07005, + 48.279567 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PKAI86XVIQL", + "ref": "KAI86XVIQL", + "name": "Troyes, Rue Louis le Clert - Parking P1 Hôpital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.729993, + 48.514019 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PH6MGEHRH8L", + "ref": "H6MGEHRH8L", + "name": "Romilly, 26 Av du Général Leclerc, Pkg de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.502292, + 48.064159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10POFTFKLBGGV", + "ref": "OFTFKLBGGV", + "name": "Loches-Sur-Ource, Rue du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.030422, + 48.335985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PLLKGXP4CHU0PTM", + "ref": "LLKGXP4CHU0PTM", + "name": "Barberey-Saint-Sulpice, Rue Jules Ferry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.829991, + 48.311377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PVE3I1SNXAY", + "ref": "VE3I1SNXAY", + "name": "Dierrey-Saint-Julien, 4 Rue du moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.080508, + 48.293681 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PTAP2EUA8MR", + "ref": "TAP2EUA8MR", + "name": "Troyes, 7 Rue Nicolas SIRET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.386689, + 48.238867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PUATAXSIP73", + "ref": "UATAXSIP73", + "name": "La-Villeneuve-Au-Chene, 6 Rue de la Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.031631, + 48.311025 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PF6SJHLNDHA", + "ref": "F6SJHLNDHA", + "name": "La-Chapelle-Saint-Luc, Av de Neckarbischofsheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.364188, + 47.992499 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PYGET3T8P8P", + "ref": "YGET3T8P8P", + "name": "Les-Riceys, Rue du Parc Saint Vincent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.101094, + 48.329641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PVLN2PSDDZH", + "ref": "VLN2PSDDZH", + "name": "Pont-Sainte-Marie, Voie Mac Arthur Glen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.101195, + 48.329628 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSGAGDZM0DN", + "ref": "SGAGDZM0DN", + "name": "Pont-Sainte-Marie, Voie Mac Arthur Glen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.908456, + 48.042697 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PR2QWWUUNL1", + "ref": "R2QWWUUNL1", + "name": "Ervy-Le-Chatel, 1 Rue du Tré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.658171, + 48.418127 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PPWW4OVOZ6V", + "ref": "PWW4OVOZ6V", + "name": "Epothemont, 23 Rue de la Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.26242, + 48.345479 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNJ4BNTOLRY", + "ref": "NJ4BNTOLRY", + "name": "Rouilly-Sacey, 24 Route du Lac d'Orient", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5111747, + 48.4935616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PS5GFRFHWSW", + "ref": "S5GFRFHWSW", + "name": "Nogent-Sur-Seine, Avenue Saint Roch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.620832, + 48.380433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PFHE4S0TLNK", + "ref": "FHE4S0TLNK", + "name": "Morvilliers, 1 Rue Saint Laurent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.075898, + 48.293296 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSPHOAP76VH", + "ref": "SPHOAP76VH", + "name": "Troyes, 49 Boulevard du 14 Juillet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.180425, + 48.311709 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PYQJEVUUE5V", + "ref": "YQJEVUUE5V", + "name": "Bouranton, 3 Rue de l'Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.73673, + 48.403725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PERKIMUKWMI", + "ref": "ERKIMUKWMI", + "name": "Marigny-Le-Chatel, 1 Ruelle des juifs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.444622, + 48.020072 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PCIGMXJMDAM", + "ref": "CIGMXJMDAM", + "name": "Courteron, 4 Rue de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.103553, + 48.016814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PTAI6K956YE", + "ref": "TAI6K956YE", + "name": "Cussangy, 11 Rue des cannes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.051992, + 48.283534 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSMUUIBGAX6", + "ref": "SMUUIBGAX6", + "name": "Saint-Andre-Les-Vergers, Avenue de l'Ile Germaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.730125, + 48.513939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PATGU49BCSH", + "ref": "ATGU49BCSH", + "name": "Romilly, 26 Av du Général Leclerc, Pkg de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05667, + 48.29276 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PD2FWMEF7HF", + "ref": "D2FWMEF7HF", + "name": "Sainte-Savine, 1 Rue Lamoricière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.50281, + 48.493278 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJBVMTPZMH6", + "ref": "JBVMTPZMH6", + "name": "Nogent-Sur-Seine, Place d'Armes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.518964, + 48.129514 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNHQEEP3OJC", + "ref": "NHQEEP3OJC", + "name": "Bertignolles, 5 Rue de la Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.626185, + 48.548185 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PPZWWQPXHOM", + "ref": "PZWWQPXHOM", + "name": "Perigny-La-Rose, 2 Rue du Mousseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.926727, + 48.445215 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PRCTBEA2JQY", + "ref": "RCTBEA2JQY", + "name": "Saint-Mesmin, 35 Rue de Chily", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.110207, + 48.235708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PE3LX6DF0I4", + "ref": "E3LX6DF0I4", + "name": "Bucheres, 1 Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37420322, + 48.11391691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PDZTTFA557P", + "ref": "DZTTFA557P", + "name": "Bar-sur-Seine, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7603, + 48.5033 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMEPTJ9OWEG", + "ref": "MEPTJ9OWEG", + "name": "Maizieres-La-Grande-Paroisse, Av du Gén de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.785801, + 48.509162 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSM903GKE9B", + "ref": "SM903GKE9B", + "name": "Maizieres-La-Grande-Paroisse, Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37313472, + 48.11517825 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PWZXY6YXQKL", + "ref": "WZXY6YXQKL", + "name": "Bar-sur-Seine, Grande Rue de la Résistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.682106, + 48.440882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PVDP80ZN7FA", + "ref": "VDP80ZN7FA", + "name": "Saint-Martin-De-Bossenay, 9 Rue de Chaillouet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.557904, + 48.589523 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMMCTUADDCP", + "ref": "MMCTUADDCP", + "name": "Villenauxe-La-Grande, 25 Rue Cornuelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37313472, + 48.11517825 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PWZXY6YXQKL", + "ref": "WZXY6YXQKL", + "name": "Bar-sur-Seine, Grande Rue de la Résistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.891382, + 48.207971 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PGO3LHWGD06", + "ref": "GO3LHWGD06", + "name": "Bercenay-En-Othe, 2 Rue du Prieuré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.069758, + 48.276579 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PFHNPHFUR1P", + "ref": "FHNPHFUR1P", + "name": "Troyes, Avenue des Lombards", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.473429, + 48.071427 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PQQCJJBHN5V", + "ref": "QQCJJBHN5V", + "name": "Landreville, 47 Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.157508, + 48.533428 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PPNTCUBAVK3", + "ref": "PNTCUBAVK3", + "name": "Arcis-Sur-Aube, 1 Route de Brienne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.022728, + 48.333103 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10POKPUUNPHL4", + "ref": "OKPUUNPHL4", + "name": "Lavau, Chemin des Corvées", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.708077, + 48.233992 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PCXZBMR0ZO1", + "ref": "CXZBMR0ZO1", + "name": "Bar-Sur-Aube, Parking Saint Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.129385, + 48.535128 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PQ2NDRSYOYC", + "ref": "Q2NDRSYOYC", + "name": "Arcis-Sur-Aube, 104 Rue de PARIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.006239, + 48.360819 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PQJ1CPN7JU7", + "ref": "QJ1CPN7JU7", + "name": "Saint-Lye, 2 Impasse Louis X le Hutin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.372186, + 48.121911 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PIGEEE64TSJ", + "ref": "IGEEE64TSJ", + "name": "Bar-Sur-Seine, 2 rue du stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.668466, + 48.23801 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PRYCA2CSWBP", + "ref": "RYCA2CSWBP", + "name": "Saint-Benoist-Sur-Vanne, 21 route Nationale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.498121, + 48.492224 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PHSYIJGUBSD", + "ref": "HSYIJGUBSD", + "name": "Nogent-Sur-Seine, 1 Place de l'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37420322, + 48.11391691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PDZTTFA557P", + "ref": "DZTTFA557P", + "name": "Bar-sur-Seine, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9504, + 48.407601 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PHCL9EMOH18", + "ref": "HCL9EMOH18", + "name": "Savieres, 7 Place de la salle des fetes_x000D_", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.534964, + 48.060667 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PM90FZ6RVEV", + "ref": "M90FZ6RVEV", + "name": "Essoyes, 34 Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.706075, + 48.233498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PLRX5I5HMT3", + "ref": "LRX5I5HMT3", + "name": "Bar-Sur-Aube, 1 Place Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.968666, + 47.951248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PT9T4YNRQ8T", + "ref": "T9T4YNRQ8T", + "name": "Lignières, Rue des Quatre Vents", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.623987, + 48.202677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PBWBZ2WP2CP", + "ref": "BWBZ2WP2CP", + "name": "Meurville, Rue de la Montée des Canes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.502358, + 48.495221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSK1TRPWVYS", + "ref": "SK1TRPWVYS", + "name": "Nogent-Sur-Seine, 9 Rue Paul Fournier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.130872, + 47.957248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PKICUPJFZY5", + "ref": "KICUPJFZY5", + "name": "Etourvy, 2 Route de Quincerot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.46641, + 48.239466 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PAL6PSPCLF8", + "ref": "AL6PSPCLF8", + "name": "Vendeuvre-Sur-Barse, 20 Avenue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17291, + 48.408332 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PC2C0H3ORFE", + "ref": "C2C0H3ORFE", + "name": "Charmont-Sous-Barbuise, 3 Place Collaverdey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9976, + 48.119941 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PHC39F8XCC0", + "ref": "HC39F8XCC0", + "name": "Saint-Phal, 2 2 Rue des Combattants en Afn", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702219, + 48.236231 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PBCIKXNCWR9", + "ref": "BCIKXNCWR9", + "name": "Bar-Sur-Aube, 27 Avenue du Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.477906, + 48.069531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PHQBEJCHF0S", + "ref": "HQBEJCHF0S", + "name": "Landreville, 7 Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.137337, + 48.207034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PUIDOGADTJG", + "ref": "UIDOGADTJG", + "name": "Saint-Thibault, 5 Rue de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.246403, + 48.166854 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNCLUISOFLF", + "ref": "NCLUISOFLF", + "name": "Chappes, 8 Place camille Bruy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.526286, + 48.348072 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PO67PC5Z8LO", + "ref": "O67PC5Z8LO", + "name": "Dienville, Port DIENVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.535224, + 48.348173 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PL3BRA1Y7LX", + "ref": "L3BRA1Y7LX", + "name": "Dienville, 37 Avenue Paul Girard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.073498, + 48.269322 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PZ8YVZWSQIE", + "ref": "Z8YVZWSQIE", + "name": "Rosieres-Pres-Troyes, 19 Rue Gustave Eiffel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.035952, + 48.129995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PFZQRL62BMY", + "ref": "FZQRL62BMY", + "name": "Jeugny, 3 Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.085865, + 48.325312 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PXW3KNONHEE", + "ref": "XW3KNONHEE", + "name": "Lavau, 5 Rue de la Fin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.647877, + 48.267637 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PITQ6ULMJ59", + "ref": "ITQ6ULMJ59", + "name": "Arsonval, 5 Rue Tantane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.302821, + 48.142869 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PWX2E9X4IMC", + "ref": "WX2E9X4IMC", + "name": "Virey-Sous-Bar, 10 rue jean Monnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.50281, + 48.493278 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJBVMTPZMH6", + "ref": "JBVMTPZMH6", + "name": "Nogent-Sur-Seine, Place d'Armes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.730125, + 48.513939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PATGU49BCSH", + "ref": "ATGU49BCSH", + "name": "Romilly, 26 Av du Général Leclerc, Pkg de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7392818, + 48.3318444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PLX4TJ9LIGD", + "ref": "LX4TJ9LIGD", + "name": "Faux-Villecerf, Rue Saint Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.52286, + 44.0762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PXWWSHW", + "ref": "XWWSHW", + "name": "Nègrepelisse, Saint-Blaise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43645, + 43.8904 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PVYKWNA", + "ref": "VYKWNA", + "name": "Nohic, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43645, + 43.8904 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PVYKWNA", + "ref": "VYKWNA", + "name": "Nohic, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46289, + 44.0498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PFWWAKK", + "ref": "FWWAKK", + "name": "Saint-Etienne-de-Tulmont, Tulmonenc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.58615, + 43.9654 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONCLAR", + "ref": "monclar", + "name": "Monclar-de-Quercy, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.58615, + 43.9654 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONCLAR", + "ref": "monclar", + "name": "Monclar-de-Quercy, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.35197, + 44.016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTAUBANTO", + "ref": "montaubanto", + "name": "Montauban, annexe Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.36029, + 44.1895 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMOLIERES", + "ref": "molieres", + "name": "Molières, Perrine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24065, + 43.8921 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONBEQUITO", + "ref": "monbequito", + "name": "Monbéqui, Toulouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24065, + 43.8921 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONBEQUITO", + "ref": "monbequito", + "name": "Monbéqui, Toulouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.20252, + 44.2267 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PUKXZTU", + "ref": "UKXZTU", + "name": "Cazes-Mondenard, Vicariat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53981, + 44.1626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PKMNJNR", + "ref": "KMNJNR", + "name": "Caussade, Récollets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53609, + 44.0892 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PEKYSEG", + "ref": "EKYSEG", + "name": "Bioule, Cardaillac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.36029, + 44.1895 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMOLIERES", + "ref": "molieres", + "name": "Molières, Perrine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53981, + 44.1626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PKMNJNR", + "ref": "KMNJNR", + "name": "Caussade, Récollets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24075, + 44.0886 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMAUZA", + "ref": "mauza", + "name": "Meauzac, 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24075, + 44.0886 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMAUZA", + "ref": "mauza", + "name": "Meauzac, 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-27", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.20252, + 44.2267 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PUKXZTU", + "ref": "UKXZTU", + "name": "Cazes-Mondenard, Vicariat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08815, + 44.3308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PEDJWMR", + "ref": "EDJWMR", + "name": "Belvèze, D24", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.90065, + 44.069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PZZXQHP", + "ref": "ZZXQHP", + "name": "Auvillar, Papayette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.44965, + 44.0079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PFADXTQ", + "ref": "FADXTQ", + "name": "Léojac, St-Etienne de Tulmont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.97333, + 44.0914 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PGNRKMK", + "ref": "GNRKMK", + "name": "Malause, Acacias", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53388, + 44.071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PNEGREPELISSE", + "ref": "Negrepelisse", + "name": "Nègrepelisse, Lilas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47746, + 44.2403 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PNUMQRW", + "ref": "NUMQRW", + "name": "Montpezat-de-Quercy, 19 Mars 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.934072, + 44.0996 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PPOMMEVIC", + "ref": "pommevic", + "name": "Pommevic, Ancienne École", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-06-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.52286, + 44.0762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PXWWSHW", + "ref": "XWWSHW", + "name": "Nègrepelisse, Saint-Blaise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.44965, + 44.0079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PFADXTQ", + "ref": "FADXTQ", + "name": "Léojac, St-Etienne de Tulmont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47746, + 44.2403 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PNUMQRW", + "ref": "NUMQRW", + "name": "Montpezat-de-Quercy, 19 Mars 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.820325, + 44.124733 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PLAMAGISTERE", + "ref": "lamagistere", + "name": "Lamagistère, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21728, + 44.0343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PLAVILDIEUT", + "ref": "lavildieut", + "name": "La ville-Dieu-du-Temple, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.317544, + 44.155169 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PNTXBJ7UOFO", + "ref": "NTXBJ7UOFO", + "name": "Puycornet, Salle Communale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.317544, + 44.155169 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PNTXBJ7UOFO", + "ref": "NTXBJ7UOFO", + "name": "Puycornet, Salle Communale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24118, + 44.1274 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PLAFRANCAISE", + "ref": "Lafrancaise", + "name": "Lafrançaise, Gustave Bosc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.35648, + 44.016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PWEEQKT", + "ref": "WEEQKT", + "name": "Montauban, Empereur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24118, + 44.1274 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PLAFRANCAISE", + "ref": "Lafrancaise", + "name": "Lafrançaise, Gustave Bosc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46289, + 44.0498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PFWWAKK", + "ref": "FWWAKK", + "name": "Saint-Etienne-de-Tulmont, Tulmonenc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.97333, + 44.0914 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PGNRKMK", + "ref": "GNRKMK", + "name": "Malause, Acacias", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.35648, + 44.016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PWEEQKT", + "ref": "WEEQKT", + "name": "Montauban, Empereur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.04088, + 44.0282 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PYWHVYH", + "ref": "YWHVYH", + "name": "Castelmayran, Ronde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6183, + 44.077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTRICOUX", + "ref": "Montricoux", + "name": "Montricoux, Ronde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.04088, + 44.0282 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PYWHVYH", + "ref": "YWHVYH", + "name": "Castelmayran, Ronde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41975, + 44.1449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PQJGGHJ", + "ref": "QJGGHJ", + "name": "Mirabel, Montpezat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.90065, + 44.069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PZZXQHP", + "ref": "ZZXQHP", + "name": "Auvillar, Papayette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21728, + 44.0343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PLAVILDIEUT", + "ref": "lavildieut", + "name": "La ville-Dieu-du-Temple, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17001, + 43.9423 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PJDZMJF", + "ref": "JDZMJF", + "name": "Bourret, Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13775, + 44.257 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PLAUZERTEMAIR", + "ref": "Lauzertemair", + "name": "Lauzerte, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.92209, + 44.1975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTJOIFETES", + "ref": "montjoifetes", + "name": "Montjoi, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.365778, + 43.916864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PFOWAWH8MMK", + "ref": "FOWAWH8MMK", + "name": "Labastide-Saint-Pierre, Rue d'Occitanie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.365778, + 43.916864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PFOWAWH8MMK", + "ref": "FOWAWH8MMK", + "name": "Labastide-Saint-Pierre, Rue d'Occitanie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08475, + 44.1002 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMOISSAC", + "ref": "moissac", + "name": "Moissac, Sancert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.820325, + 44.124733 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PLAMAGISTERE", + "ref": "lamagistere", + "name": "Lamagistère, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08389, + 43.9314 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PPMVNFH", + "ref": "PMVNFH", + "name": "Larrazet, Camille-Bégué", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-02", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.92209, + 44.1975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTJOIFETES", + "ref": "montjoifetes", + "name": "Montjoi, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.26419, + 43.9241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTBARTGAR", + "ref": "montbartgar", + "name": "Montbartier, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13775, + 44.257 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PLAUZERTEMAIR", + "ref": "Lauzertemair", + "name": "Lauzerte, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06601, + 43.9777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PCGXFXH", + "ref": "CGXFXH", + "name": "Garganvillar, 19 Mars 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.28907, + 44.0114 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTBETONMAIR", + "ref": "montbetonmair", + "name": "Montbeton, Centre Commercial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.28907, + 44.0114 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTBETONMAIR", + "ref": "montbetonmair", + "name": "Montbeton, Centre Commercial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.26419, + 43.9241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTBARTGAR", + "ref": "montbartgar", + "name": "Montbartier, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.77329, + 44.2365 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PCAYLUSBASCULE", + "ref": "caylusbascule", + "name": "Caylus, Bascule", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39826, + 43.9183 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PXVDHGA", + "ref": "XVDHGA", + "name": "Reyniès, Albert de Reyniès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02194, + 44.0619 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PSAINTNICOLAS", + "ref": "saintnicolas", + "name": "Saint-Nicolas-de-la-Grave, Champ de l'eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17738, + 44.0048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PSAINTPORQUIER", + "ref": "SaintPorquier", + "name": "Saint-Porquier, Platanes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02194, + 44.0619 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PSAINTNICOLAS", + "ref": "saintnicolas", + "name": "Saint-Nicolas-de-la-Grave, Champ de l'eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21719, + 43.8016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PAUCAMTOUL", + "ref": "aucamtoul", + "name": "Aucamville, Toulouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.35255, + 44.0261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTAUBANROGER", + "ref": "montaubanroger", + "name": "Montauban, Cimetière urbain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08815, + 44.3308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PEDJWMR", + "ref": "EDJWMR", + "name": "Belvèze, D24", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76829, + 43.9365 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PGRAMONTCIM", + "ref": "Gramontcim", + "name": "Gramont, Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17001, + 43.9423 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PJDZMJF", + "ref": "JDZMJF", + "name": "Bourret, Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.85681, + 44.2662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PPARISOTCAFE", + "ref": "parisotcafe", + "name": "Parisot, Café-bar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99106, + 43.8804 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PCQADCS", + "ref": "CQADCS", + "name": "Beaumont-de-Lomagne, Brassens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99106, + 43.8804 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PCQADCS", + "ref": "CQADCS", + "name": "Beaumont-de-Lomagne, Brassens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.27172, + 43.9124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTBARTMAIR", + "ref": "montbartmair", + "name": "Montbartier, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.27172, + 43.9124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTBARTMAIR", + "ref": "montbartmair", + "name": "Montbartier, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.85681, + 44.2662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PPARISOTCAFE", + "ref": "parisotcafe", + "name": "Parisot, Café-bar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08475, + 44.1002 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMOISSAC", + "ref": "moissac", + "name": "Moissac, Sancert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06601, + 43.9777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PCGXFXH", + "ref": "CGXFXH", + "name": "Garganvillar, 19 Mars 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34416, + 44.0238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTAUBANDR", + "ref": "montaubandr", + "name": "Montauban, Dragons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.35197, + 44.016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTAUBANTO", + "ref": "montaubanto", + "name": "Montauban, annexe Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21719, + 43.8016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PAUCAMTOUL", + "ref": "aucamtoul", + "name": "Aucamville, Toulouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76829, + 43.9365 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PGRAMONTCIM", + "ref": "Gramontcim", + "name": "Gramont, Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-02", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08389, + 43.9314 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PPMVNFH", + "ref": "PMVNFH", + "name": "Larrazet, Camille-Bégué", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34416, + 44.0238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTAUBANDR", + "ref": "montaubandr", + "name": "Montauban, Dragons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53609, + 44.0892 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PEKYSEG", + "ref": "EKYSEG", + "name": "Bioule, Cardaillac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37541, + 44.0791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PFKHQQM", + "ref": "FKHQQM", + "name": "Lamothe-Capdeville, Ardus", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37541, + 44.0791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PFKHQQM", + "ref": "FKHQQM", + "name": "Lamothe-Capdeville, Ardus", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53388, + 44.071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PNEGREPELISSE", + "ref": "Negrepelisse", + "name": "Nègrepelisse, Lilas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30265, + 43.8271 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PEBTDSH", + "ref": "EBTDSH", + "name": "Grisolles, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1353, + 43.8973 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PUEEYXZ", + "ref": "UEEYXZ", + "name": "Saint-Sardos, Languedoc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22428, + 43.9138 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PSADYAZ", + "ref": "SADYAZ", + "name": "Finhan, RN61", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46760856, + 49.09464425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDDDCJBIC9", + "ref": "PDDDCJBIC9", + "name": "Vernon, Boulevard Jean Jaurès", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04282596, + 48.72047793 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAVGTCZQU9B", + "ref": "AVGTCZQU9B", + "name": "Sarrebourg, SCI TSPO", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04282596, + 48.72047793 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAVGTCZQU9B", + "ref": "AVGTCZQU9B", + "name": "Sarrebourg, SCI TSPO", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04282596, + 48.72047793 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAVGTCZQU9B", + "ref": "AVGTCZQU9B", + "name": "Sarrebourg, SCI TSPO", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589431, + 49.0887 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSWHWM", + "ref": "VSWHWM", + "name": "Bernay, rue Guillaume de la Tremblay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589431, + 49.0887 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSWHWM", + "ref": "VSWHWM", + "name": "Bernay, rue Guillaume de la Tremblay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.61512866, + 48.57647776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGMQ6WNJ7DC", + "ref": "GMQ6WNJ7DC", + "name": "Vert-Saint-Denis, SCI Vertsenart", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.61512866, + 48.57647776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGMQ6WNJ7DC", + "ref": "GMQ6WNJ7DC", + "name": "Vert-Saint-Denis, SCI Vertsenart", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.61512866, + 48.57647776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGMQ6WNJ7DC", + "ref": "GMQ6WNJ7DC", + "name": "Vert-Saint-Denis, SCI Vertsenart", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.61512866, + 48.57647776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGMQ6WNJ7DC", + "ref": "GMQ6WNJ7DC", + "name": "Vert-Saint-Denis, SCI Vertsenart", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.61512866, + 48.57647776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGMQ6WNJ7DC", + "ref": "GMQ6WNJ7DC", + "name": "Vert-Saint-Denis, SCI Vertsenart", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.61512866, + 48.57647776 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGMQ6WNJ7DC", + "ref": "GMQ6WNJ7DC", + "name": "Vert-Saint-Denis, SCI Vertsenart", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313924, + 48.925919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJCP3OVP21SAS", + "ref": "LLJCP3OVP21SAS", + "name": "Gennevilliers, SCI de la Combe", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313924, + 48.925919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJCP3OVP21SAS", + "ref": "LLJCP3OVP21SAS", + "name": "Gennevilliers, SCI de la Combe", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313924, + 48.925919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJCP3OVP21SAS", + "ref": "LLJCP3OVP21SAS", + "name": "Gennevilliers, SCI de la Combe", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313924, + 48.925919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJCP3OVP21SAS", + "ref": "LLJCP3OVP21SAS", + "name": "Gennevilliers, SCI de la Combe", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313924, + 48.925919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJCP3OVP21SAS", + "ref": "LLJCP3OVP21SAS", + "name": "Gennevilliers, SCI de la Combe", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313924, + 48.925919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJCP3OVP21SAS", + "ref": "LLJCP3OVP21SAS", + "name": "Gennevilliers, SCI de la Combe", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74004948, + 50.31345769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMLFLCWKQQC", + "ref": "MLFLCWKQQC", + "name": "Anzin-Saint-Aubin, Best Western Plus Hôtel", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46760856, + 49.09464425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDDDCJBIC9", + "ref": "PDDDCJBIC9", + "name": "Vernon, Boulevard Jean Jaurès", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46760856, + 49.09464425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDDDCJBIC9", + "ref": "PDDDCJBIC9", + "name": "Vernon, Boulevard Jean Jaurès", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46760856, + 49.09464425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDDDCJBIC9", + "ref": "PDDDCJBIC9", + "name": "Vernon, Boulevard Jean Jaurès", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13402839, + 49.49892174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUHMXW9N8BO", + "ref": "UHMXW9N8BO", + "name": "Saint Germainmont, SCI Linard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIBDZ4WIOAT", + "ref": "IBDZ4WIOAT", + "name": "Ceyzériat, Les Soudanières", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13402839, + 49.49892174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUHMXW9N8BO", + "ref": "UHMXW9N8BO", + "name": "Saint Germainmont, SCI Linard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13402839, + 49.49892174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUHMXW9N8BO", + "ref": "UHMXW9N8BO", + "name": "Saint Germainmont, SCI Linard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13402839, + 49.49892174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUHMXW9N8BO", + "ref": "UHMXW9N8BO", + "name": "Saint Germainmont, SCI Linard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13402839, + 49.49892174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUHMXW9N8BO", + "ref": "UHMXW9N8BO", + "name": "Saint Germainmont, SCI Linard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74004948, + 50.31345769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMLFLCWKQQC", + "ref": "MLFLCWKQQC", + "name": "Anzin-Saint-Aubin, Best Western Plus Hôtel", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74004948, + 50.31345769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMLFLCWKQQC", + "ref": "MLFLCWKQQC", + "name": "Anzin-Saint-Aubin, Best Western Plus Hôtel", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74004948, + 50.31345769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMLFLCWKQQC", + "ref": "MLFLCWKQQC", + "name": "Anzin-Saint-Aubin, Best Western Plus Hôtel", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6183, + 44.077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTRICOUX", + "ref": "Montricoux", + "name": "Montricoux, Ronde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.116768, + 50.579123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMY72KDYCBP", + "ref": "MY72KDYCBP", + "name": "Fretin, SDC Parc de la Haie", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.116768, + 50.579123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMY72KDYCBP", + "ref": "MY72KDYCBP", + "name": "Fretin, SDC Parc de la Haie", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.116768, + 50.579123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMY72KDYCBP", + "ref": "MY72KDYCBP", + "name": "Fretin, SDC Parc de la Haie", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34418, + 44.0165 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTABANNORD", + "ref": "MONTABANNORD", + "name": "Montauban, Lalaque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34938, + 44.0909 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PDHRGVC", + "ref": "DHRGVC", + "name": "L'Honor-de-Cos, Biscardel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30265, + 43.8271 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PEBTDSH", + "ref": "EBTDSH", + "name": "Grisolles, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34938, + 44.0909 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PDHRGVC", + "ref": "DHRGVC", + "name": "L'Honor-de-Cos, Biscardel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55389, + 44.166 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTEILS", + "ref": "monteils", + "name": "Monteils, Pigeonniers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34418, + 44.0165 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTABANNORD", + "ref": "MONTABANNORD", + "name": "Montauban, Lalaque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.116768, + 50.579123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMY72KDYCBP", + "ref": "MY72KDYCBP", + "name": "Fretin, SDC Parc de la Haie", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55389, + 44.166 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTEILS", + "ref": "monteils", + "name": "Monteils, Pigeonniers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08375, + 44.106 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PDUJPRC", + "ref": "DUJPRC", + "name": "Moissac, Brienne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08375, + 44.106 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PDUJPRC", + "ref": "DUJPRC", + "name": "Moissac, Brienne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.35255, + 44.0261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTAUBANROGER", + "ref": "montaubanroger", + "name": "Montauban, Cimetière urbain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41975, + 44.1449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PQJGGHJ", + "ref": "QJGGHJ", + "name": "Mirabel, Montpezat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22428, + 43.9138 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PSADYAZ", + "ref": "SADYAZ", + "name": "Finhan, RN61", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.365982697, + 44.01496349 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTAUBANED", + "ref": "Montaubaned", + "name": "Montauban, Edouard Herriot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3659827, + 44.01496349 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMONTAUBANED", + "ref": "Montaubaned", + "name": "Montauban, Edouard Herriot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.116768, + 50.579123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMY72KDYCBP", + "ref": "MY72KDYCBP", + "name": "Fretin, SDC Parc de la Haie", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.116768, + 50.579123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMY72KDYCBP", + "ref": "MY72KDYCBP", + "name": "Fretin, SDC Parc de la Haie", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZQEWY01JS", + "ref": "EZQEWY01JS", + "name": "Fleury-Mérogis, Z.I de la Croix Blanche", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZQEWY01JS", + "ref": "EZQEWY01JS", + "name": "Fleury-Mérogis, Z.I de la Croix Blanche", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZQEWY01JS", + "ref": "EZQEWY01JS", + "name": "Fleury-Mérogis, Z.I de la Croix Blanche", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZQEWY01JS", + "ref": "EZQEWY01JS", + "name": "Fleury-Mérogis, Z.I de la Croix Blanche", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZQEWY01JS", + "ref": "EZQEWY01JS", + "name": "Fleury-Mérogis, Z.I de la Croix Blanche", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZQEWY01JS", + "ref": "EZQEWY01JS", + "name": "Fleury-Mérogis, Z.I de la Croix Blanche", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZQEWY01JS", + "ref": "EZQEWY01JS", + "name": "Fleury-Mérogis, Z.I de la Croix Blanche", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZQEWY01JS", + "ref": "EZQEWY01JS", + "name": "Fleury-Mérogis, Z.I de la Croix Blanche", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZQEWY01JS", + "ref": "EZQEWY01JS", + "name": "Fleury-Mérogis, Z.I de la Croix Blanche", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZQEWY01JS", + "ref": "EZQEWY01JS", + "name": "Fleury-Mérogis, Z.I de la Croix Blanche", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZQEWY01JS", + "ref": "EZQEWY01JS", + "name": "Fleury-Mérogis, Z.I de la Croix Blanche", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.080079, + 45.777011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUW81KMON2C", + "ref": "UW81KMON2C", + "name": "Clermont-Ferrand, Rue Blatin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZQEWY01JS", + "ref": "EZQEWY01JS", + "name": "Fleury-Mérogis, Z.I de la Croix Blanche", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZQEWY01JS", + "ref": "EZQEWY01JS", + "name": "Fleury-Mérogis, Z.I de la Croix Blanche", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZQEWY01JS", + "ref": "EZQEWY01JS", + "name": "Fleury-Mérogis, Z.I de la Croix Blanche", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZQEWY01JS", + "ref": "EZQEWY01JS", + "name": "Fleury-Mérogis, Z.I de la Croix Blanche", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZQEWY01JS", + "ref": "EZQEWY01JS", + "name": "Fleury-Mérogis, Z.I de la Croix Blanche", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.080079, + 45.777011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUW81KMON2C", + "ref": "UW81KMON2C", + "name": "Clermont-Ferrand, Rue Blatin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.080079, + 45.777011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUW81KMON2C", + "ref": "UW81KMON2C", + "name": "Clermont-Ferrand, Rue Blatin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.080079, + 45.777011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUW81KMON2C", + "ref": "UW81KMON2C", + "name": "Clermont-Ferrand, Rue Blatin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88195, + 44.1801 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PPWCMEH", + "ref": "PWCMEH", + "name": "Perville, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.04943, + 44.2729 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PRNYVZB", + "ref": "RNYVZB", + "name": "Touffailles, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.730059, + 48.513979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSOLRFLNSDQ", + "ref": "SOLRFLNSDQ", + "name": "Romilly, 26 Av du Général Leclerc, Pkg de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.149279, + 48.534902 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PLY7DK5AD7N", + "ref": "LY7DK5AD7N", + "name": "Arcis-sur-Aube, Rue Napoléon", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.030422, + 48.335985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PLLKGXP4CHU0PTM", + "ref": "LLKGXP4CHU0PTM", + "name": "Barberey-Saint-Sulpice, Rue Jules Ferry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96937277, + 48.28691395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PIXWB4EBYDV", + "ref": "IXWB4EBYDV", + "name": "Torvilliers, aire de covoiturage", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.04579, + 48.278961 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PT9MXJNYNEM", + "ref": "T9MXJNYNEM", + "name": "Saint André les Vergers, Entrée des Antes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.109849, + 48.299744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PX7LH2QZYGH", + "ref": "X7LH2QZYGH", + "name": "Saint Parres aux Tertre, Rue Jean Moulin", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33627881, + 48.36390886 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMGSFFZIVNT", + "ref": "MGSFFZIVNT", + "name": "Piney", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.920259, + 48.099248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PQUNCIFCCI8", + "ref": "QUNCIFCCI8", + "name": "Auxon, 468 Grande Rue - Parking Intermarché", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424326, + 48.027595 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10POI2ALZD0UQ", + "ref": "OI2ALZD0UQ", + "name": "Gyé sur Seine, RD671", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.531585, + 48.396975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PYV9WPIXPRX", + "ref": "YV9WPIXPRX", + "name": "Brienne le Château, Avenue Pasteur", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96937277, + 48.28691395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PIXWB4EBYDV", + "ref": "IXWB4EBYDV", + "name": "Torvilliers, aire de covoiturage", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.149279, + 48.534902 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PLY7DK5AD7N", + "ref": "LY7DK5AD7N", + "name": "Arcis-sur-Aube, Rue Napoléon", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.110326, + 48.235741 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PIA7F7BLY0N", + "ref": "IA7F7BLY0N", + "name": "Buchères, 1 Rue de la Mairie", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08079663, + 48.29366661 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PC16QZJT72Y", + "ref": "C16QZJT72Y", + "name": "Pont-Sainte-Marie, Parking cinéma culturel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62488, + 48.23362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PUOMK81HGEB", + "ref": "UOMK81HGEB", + "name": "Vulaines, route nationale 660", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.142932, + 48.059765 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PXB2FPTW6L6", + "ref": "XB2FPTW6L6", + "name": "Chaource, Route de Troyes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.142932, + 48.059765 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PXB2FPTW6L6", + "ref": "XB2FPTW6L6", + "name": "Chaource, Route de Troyes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96937277, + 48.28691395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PIXWB4EBYDV", + "ref": "IXWB4EBYDV", + "name": "Torvilliers, aire de covoiturage", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.781652, + 48.501213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PU45NFW8DLO", + "ref": "U45NFW8DLO", + "name": "Maizières-la-Grande-Paroisse, 27 avenue du général de gaulle", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.466387, + 48.23941 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PROHSARMMTL", + "ref": "ROHSARMMTL", + "name": "Vendeuvre-sur-Barse, 20 Avenue de la République", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.078485, + 48.23566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PIBKH2LGDHV", + "ref": "IBKH2LGDHV", + "name": "Saint-Léger-pres-Troyes, Rue de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.531585, + 48.396975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PYV9WPIXPRX", + "ref": "YV9WPIXPRX", + "name": "Brienne le Château, Avenue Pasteur", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.149279, + 48.534902 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PLY7DK5AD7N", + "ref": "LY7DK5AD7N", + "name": "Arcis-sur-Aube, Rue Napoléon", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62488, + 48.23362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PUOMK81HGEB", + "ref": "UOMK81HGEB", + "name": "Vulaines, route nationale 660", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.781652, + 48.501213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PU45NFW8DLO", + "ref": "U45NFW8DLO", + "name": "Maizières-la-Grande-Paroisse, 27 avenue du général de gaulle", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.109849, + 48.299744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PX7LH2QZYGH", + "ref": "X7LH2QZYGH", + "name": "Saint Parres aux Tertre, Rue Jean Moulin", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.097222, + 48.308883 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSGEMIBGXBY", + "ref": "SGEMIBGXBY", + "name": "Troyes, Avenue Robert Schumann", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08079663, + 48.29366661 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PC16QZJT72Y", + "ref": "C16QZJT72Y", + "name": "Pont-Sainte-Marie, Parking cinéma culturel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.097222, + 48.308883 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSGEMIBGXBY", + "ref": "SGEMIBGXBY", + "name": "Troyes, Avenue Robert Schumann", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08079663, + 48.29366661 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJJYAMZXUCU", + "ref": "JJYAMZXUCU", + "name": "Pont-Sainte-Marie, Parking cinéma culturel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08079663, + 48.29366661 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJJYAMZXUCU", + "ref": "JJYAMZXUCU", + "name": "Pont-Sainte-Marie, Parking cinéma culturel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.781652, + 48.501213 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PU45NFW8DLO", + "ref": "U45NFW8DLO", + "name": "Maizières-la-Grande-Paroisse, 27 avenue du général de gaulle", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.110326, + 48.235741 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PIA7F7BLY0N", + "ref": "IA7F7BLY0N", + "name": "Buchères, 1 Rue de la Mairie", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.920259, + 48.099248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PQUNCIFCCI8", + "ref": "QUNCIFCCI8", + "name": "Auxon, 468 Grande Rue - Parking Intermarché", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.466387, + 48.23941 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PROHSARMMTL", + "ref": "ROHSARMMTL", + "name": "Vendeuvre-sur-Barse, 20 Avenue de la République", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.110326, + 48.235741 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PIA7F7BLY0N", + "ref": "IA7F7BLY0N", + "name": "Buchères, 1 Rue de la Mairie", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.435283, + 48.18069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PN4MBOOZ97B", + "ref": "N4MBOOZ97B", + "name": "Magnant, aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38777907, + 48.07744194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PENFWY3FHBW", + "ref": "ENFWY3FHBW", + "name": "Polisot, rue des Herbues", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.435283, + 48.18069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PN4MBOOZ97B", + "ref": "N4MBOOZ97B", + "name": "Magnant, aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.04579, + 48.278961 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PT9MXJNYNEM", + "ref": "T9MXJNYNEM", + "name": "Saint André les Vergers, Entrée des Antes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38777907, + 48.07744194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PENFWY3FHBW", + "ref": "ENFWY3FHBW", + "name": "Polisot, rue des Herbues", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.920259, + 48.099248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PQUNCIFCCI8", + "ref": "QUNCIFCCI8", + "name": "Auxon, 468 Grande Rue - Parking Intermarché", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424326, + 48.027595 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10POI2ALZD0UQ", + "ref": "OI2ALZD0UQ", + "name": "Gyé sur Seine, RD671", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96937277, + 48.28691395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PIXWB4EBYDV", + "ref": "IXWB4EBYDV", + "name": "Torvilliers, aire de covoiturage", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.078485, + 48.23566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PIBKH2LGDHV", + "ref": "IBKH2LGDHV", + "name": "Saint-Léger-pres-Troyes, Rue de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62488, + 48.23362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PUOMK81HGEB", + "ref": "UOMK81HGEB", + "name": "Vulaines, route nationale 660", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8726956, + 48.2785931 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNLRCCHATCF", + "ref": "NLRCCHATCF", + "name": "Fontvannes, Place de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.477906, + 48.069531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PHQBEJCHF0S", + "ref": "HQBEJCHF0S", + "name": "Landreville, 7 Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.473429, + 48.071427 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PQQCJJBHN5V", + "ref": "QQCJJBHN5V", + "name": "Landreville, 47 Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9976, + 48.119941 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PHC39F8XCC0", + "ref": "HC39F8XCC0", + "name": "Saint-Phal, 2 2 Rue des Combattants en Afn", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.920259, + 48.099248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PQUNCIFCCI8", + "ref": "QUNCIFCCI8", + "name": "Auxon, 468 Grande Rue - Parking Intermarché", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.130872, + 47.957248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PKICUPJFZY5", + "ref": "KICUPJFZY5", + "name": "Etourvy, 2 Route de Quincerot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05667, + 48.29276 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PD2FWMEF7HF", + "ref": "D2FWMEF7HF", + "name": "Sainte-Savine, 1 Rue Lamoricière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.968203, + 48.568551 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PP4F3QRFJ1V", + "ref": "P4F3QRFJ1V", + "name": "Plancy-L'Abbaye, 3 Place Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2163563, + 48.1705744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PLOQVFXXZ4U", + "ref": "LOQVFXXZ4U", + "name": "Saint-Parres-Les-Vaudes, Rue François Mothre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0980575, + 48.3143585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PQ60WEBZNBK", + "ref": "Q60WEBZNBK", + "name": "Pont-Sainte-Marie, Parking de l'ile du Beauséjour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.498121, + 48.492224 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PHSYIJGUBSD", + "ref": "HSYIJGUBSD", + "name": "Nogent-Sur-Seine, 1 Place de l'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0284165, + 48.2861626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJJGA8L3JV7", + "ref": "JJGA8L3JV7", + "name": "La-Riviere-De-Corps, Allée Forestière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7392818, + 48.3318444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PLX4TJ9LIGD", + "ref": "LX4TJ9LIGD", + "name": "Faux-Villecerf, Rue Saint Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3851649, + 48.5015677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PRIG9LCTQGX", + "ref": "RIG9LCTQGX", + "name": "Jasseines, Ruelle du Monument", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.310657, + 48.493503 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PP4GE5YC7JS", + "ref": "P4GE5YC7JS", + "name": "Nogent-Sur-Aube, 65 Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0980575, + 48.3143585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PQ60WEBZNBK", + "ref": "Q60WEBZNBK", + "name": "Pont-Sainte-Marie, Parking de l'ile du Beauséjour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4033642, + 48.0404528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNWRWARYFKP", + "ref": "NWRWARYFKP", + "name": "Neuville-Sur-Seine, Carrefour D671 et D26", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0665713, + 48.5411282 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PP0XP87AAJ7", + "ref": "P0XP87AAJ7", + "name": "Pouan-Les-Vallees, 3 Place de la Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0284165, + 48.2861626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJJGA8L3JV7", + "ref": "JJGA8L3JV7", + "name": "La-Riviere-De-Corps, Allée Forestière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.727224, + 48.257447 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PC16DS3V7VF", + "ref": "C16DS3V7VF", + "name": "Villemaur-Sur-Vanne, 3 Rue de l'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.016524, + 48.465158 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PXKFIUVLHYL", + "ref": "XKFIUVLHYL", + "name": "Les-Grandes-Chapelles, 1 Place du Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.142932, + 48.059765 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PXB2FPTW6L6", + "ref": "XB2FPTW6L6", + "name": "Chaource, Route de Troyes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-30", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.112504, + 48.635996 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PML8ZQJOCDL", + "ref": "ML8ZQJOCDL", + "name": "Villiers-Herbisse, 1 Rue de la Crayère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.466387, + 48.23941 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PROHSARMMTL", + "ref": "ROHSARMMTL", + "name": "Vendeuvre-sur-Barse, 20 Avenue de la République", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.531585, + 48.396975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PYV9WPIXPRX", + "ref": "YV9WPIXPRX", + "name": "Brienne le Château, Avenue Pasteur", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.109849, + 48.299744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PX7LH2QZYGH", + "ref": "X7LH2QZYGH", + "name": "Saint Parres aux Tertre, Rue Jean Moulin", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12797109, + 48.22545366 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PTYTYI3MTEH", + "ref": "TYTYI3MTEH", + "name": "Buchères, aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.111696, + 48.624835 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PJT57QTOIAB", + "ref": "JT57QTOIAB", + "name": "Herbisse, 3 Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.332113, + 48.364012 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PAW2Y62ZANM", + "ref": "AW2Y62ZANM", + "name": "Piney, Rue de la Halle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.19691, + 48.671467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNYOAPHU4JI", + "ref": "NYOAPHU4JI", + "name": "Mailly-Le-Camp, 36 Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.129385, + 48.535128 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PQ2NDRSYOYC", + "ref": "Q2NDRSYOYC", + "name": "Arcis-Sur-Aube, 104 Rue de PARIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0665713, + 48.5411282 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PP0XP87AAJ7", + "ref": "P0XP87AAJ7", + "name": "Pouan-Les-Vallees, 3 Place de la Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.502358, + 48.495221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSK1TRPWVYS", + "ref": "SK1TRPWVYS", + "name": "Nogent-Sur-Seine, 9 Rue Paul Fournier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.180425, + 48.311709 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PYQJEVUUE5V", + "ref": "YQJEVUUE5V", + "name": "Bouranton, 3 Rue de l'Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.103553, + 48.016814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PTAI6K956YE", + "ref": "TAI6K956YE", + "name": "Cussangy, 11 Rue des cannes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.620832, + 48.380433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PFHE4S0TLNK", + "ref": "FHE4S0TLNK", + "name": "Morvilliers, 1 Rue Saint Laurent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4033642, + 48.0404528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNWRWARYFKP", + "ref": "NWRWARYFKP", + "name": "Neuville-Sur-Seine, Carrefour D671 et D26", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.444622, + 48.020072 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PCIGMXJMDAM", + "ref": "CIGMXJMDAM", + "name": "Courteron, 4 Rue de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.157508, + 48.533428 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PPNTCUBAVK3", + "ref": "PNTCUBAVK3", + "name": "Arcis-Sur-Aube, 1 Route de Brienne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.226495, + 48.179291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PNU0UK8KQ1U", + "ref": "NU0UK8KQ1U", + "name": "Villemoyenne, 9 Rue René Deshons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.483034, + 47.994615 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PITYFK2QUQW", + "ref": "ITYFK2QUQW", + "name": "Plaines-Saint-Lange, 6 Route départementale 671", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.097222, + 48.308883 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PSGEMIBGXBY", + "ref": "SGEMIBGXBY", + "name": "Troyes, Avenue Robert Schumann", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.045015, + 48.307569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PVLM91FGX8V", + "ref": "VLM91FGX8V", + "name": "Troyes, Rue Henri Matisse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1353, + 43.8973 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PUEEYXZ", + "ref": "UEEYXZ", + "name": "Saint-Sardos, Languedoc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.045015, + 48.307569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PVLM91FGX8V", + "ref": "VLM91FGX8V", + "name": "Troyes, Rue Henri Matisse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47908, + 44.1159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PREALVILLE", + "ref": "realville", + "name": "Realville, Raymond Laurent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99949, + 44.0194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PENXVSY", + "ref": "ENXVSY", + "name": "Caumont, Allée de la Promenade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.10945, + 44.0399 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PCAPUCINS", + "ref": "capucins", + "name": "Castelsarrasin, Capucins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.10945, + 44.0399 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PCAPUCINS", + "ref": "capucins", + "name": "Castelsarrasin, Capucins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11176, + 44.0411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PJRZPUA", + "ref": "JRZPUA", + "name": "Castelsarrasin, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.155, + 44.1864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PDURFORT", + "ref": "durfort", + "name": "Durfort-Lacapelette, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.94508, + 44.3232 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PROQUECOR", + "ref": "Roquecor", + "name": "Roquecor, Pétanque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99949, + 44.0194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PENXVSY", + "ref": "ENXVSY", + "name": "Caumont, Allée de la Promenade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-03", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.89291, + 44.1574 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PXVHDDR", + "ref": "XVHDDR", + "name": "Varen, D958", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.89291, + 44.1574 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PXVHDDR", + "ref": "XVHDDR", + "name": "Varen, D958", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76934, + 44.0918 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PDUNES", + "ref": "dunes", + "name": "Dunes, André Vidalot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.61063, + 44.2515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PLIBERATION", + "ref": "Liberation", + "name": "Puylaroque, Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47908, + 44.1159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PREALVILLE", + "ref": "realville", + "name": "Realville, Raymond Laurent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.934072, + 44.0996 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PPOMMEVIC", + "ref": "pommevic", + "name": "Pommevic, Ancienne École", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.769343, + 44.0918 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PDUNES", + "ref": "dunes", + "name": "Dunes, André Vidalot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.36766, + 43.9437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PCORBARIEU", + "ref": "corbarieu", + "name": "Corbarieu, Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7517, + 44.1527 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PVRAGJQ", + "ref": "VRAGJQ", + "name": "Saint-Antonin-Noble-Val, Pradel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11143, + 44.0404 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PVNJXRX", + "ref": "VNJXRX", + "name": "Castelsarrasin, Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-24", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.918499, + 43.9577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PGCUBLN", + "ref": "GCUBLN", + "name": "Lavit, Jean Sabathé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4493, + 44.0922 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PALBIAS", + "ref": "albias", + "name": "Albias, Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5339, + 44.1621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PCAUSSADEGARE", + "ref": "caussadegare", + "name": "Caussade, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11143, + 44.0404 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PVNJXRX", + "ref": "VNJXRX", + "name": "Castelsarrasin, Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.19435, + 43.9861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PABVXRQ", + "ref": "ABVXRQ", + "name": "Escatalens, Station service", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.94508, + 44.3232 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PROQUECOR", + "ref": "Roquecor", + "name": "Roquecor, Pétanque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88195, + 44.1801 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PPWCMEH", + "ref": "PWCMEH", + "name": "Perville, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17738, + 44.0048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PSAINTPORQUIER", + "ref": "SaintPorquier", + "name": "Saint-Porquier, Platanes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33743, + 43.9678 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PEGDEZM", + "ref": "EGDEZM", + "name": "Bressols, Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.19435, + 43.9861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PABVXRQ", + "ref": "ABVXRQ", + "name": "Escatalens, Station service", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.61552, + 44.1758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PSEPTFONDS", + "ref": "septfonds", + "name": "Septfonds, Marcel Lacassagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.84019, + 43.967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PLDVNFW", + "ref": "LDVNFW", + "name": "Poupas, Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33743, + 43.9678 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PEGDEZM", + "ref": "EGDEZM", + "name": "Bressols, Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.19997, + 43.8291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PSAVENES", + "ref": "savenes", + "name": "Savenès, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11176, + 44.0411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PJRZPUA", + "ref": "JRZPUA", + "name": "Castelsarrasin, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-24", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.19997, + 43.8291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PSAVENES", + "ref": "savenes", + "name": "Savenès, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.61552, + 44.1758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PSEPTFONDS", + "ref": "septfonds", + "name": "Septfonds, Marcel Lacassagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.95683, + 44.2619 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PBOURGDEVISA", + "ref": "bourgdevisa", + "name": "Bourg de visa, Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-26", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.95683, + 44.2619 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PBOURGDEVISA", + "ref": "bourgdevisa", + "name": "Bourg de visa, Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.04943, + 44.2729 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PRNYVZB", + "ref": "RNYVZB", + "name": "Touffailles, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5339, + 44.1621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PCAUSSADEGARE", + "ref": "caussadegare", + "name": "Caussade, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.61063, + 44.2515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PLIBERATION", + "ref": "Liberation", + "name": "Puylaroque, Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.36766, + 43.9437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PCORBARIEU", + "ref": "corbarieu", + "name": "Corbarieu, Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.81618, + 44.1103 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMNENFV", + "ref": "MNENFV", + "name": "Donzac, Brulhois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-02", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.19525, + 44.0841 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PVUYNGD", + "ref": "VUYNGD", + "name": "Labastide-du-Temple, Grand Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.918499, + 43.9577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PGCUBLN", + "ref": "GCUBLN", + "name": "Lavit, Jean Sabathé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89554161, + 44.10916252 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PVALENCEJEAN", + "ref": "valencejean", + "name": "Valence, Jean Baylet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08605, + 44.1034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PSZTURH", + "ref": "SZTURH", + "name": "Moissac, Récollets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02026, + 44.3406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PRUMFHQ", + "ref": "RUMFHQ", + "name": "Montaigu-de-Quercy, Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23461, + 43.8518 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PVERDUN", + "ref": "verdun", + "name": "Verdun-sur-Garonne, Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53556, + 43.9639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PYYSPNW", + "ref": "YYSPNW", + "name": "La Salvetat-Belmontet, D8", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-30", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02086, + 43.9209 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PSERIGNAC", + "ref": "serignac", + "name": "Serignac, Ecoliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02086, + 43.9209 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PSERIGNAC", + "ref": "serignac", + "name": "Serignac, Ecoliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-05-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.89554161, + 44.10916252 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PVALENCEJEAN", + "ref": "valencejean", + "name": "Valence, Jean Baylet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.84019, + 43.967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PLDVNFW", + "ref": "LDVNFW", + "name": "Poupas, Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56976, + 44.0336 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PFXFDDN", + "ref": "FXFDDN", + "name": "Vaïssac, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-30", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7517, + 44.1527 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PVRAGJQ", + "ref": "VRAGJQ", + "name": "Saint-Antonin-Noble-Val, Pradel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02026, + 44.3406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PRUMFHQ", + "ref": "RUMFHQ", + "name": "Montaigu-de-Quercy, Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08605, + 44.1034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PSZTURH", + "ref": "SZTURH", + "name": "Moissac, Récollets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56976, + 44.0336 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PFXFDDN", + "ref": "FXFDDN", + "name": "Vaïssac, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.60696477, + 48.2349464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PYDITYHBJKS", + "ref": "YDITYHBJKS", + "name": "Vulaines, Halte des Joncs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.60696477, + 48.2349464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PYDITYHBJKS", + "ref": "YDITYHBJKS", + "name": "Vulaines, Halte des Joncs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12797109, + 48.22545366 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PTYTYI3MTEH", + "ref": "TYTYI3MTEH", + "name": "Buchères, aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424326, + 48.027595 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10POI2ALZD0UQ", + "ref": "OI2ALZD0UQ", + "name": "Gyé sur Seine, RD671", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33627881, + 48.36390886 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS10PMGSFFZIVNT", + "ref": "MGSFFZIVNT", + "name": "Piney", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53556, + 43.9639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PYYSPNW", + "ref": "YYSPNW", + "name": "La Salvetat-Belmontet, D8", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.155, + 44.1864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PDURFORT", + "ref": "durfort", + "name": "Durfort-Lacapelette, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.95794, + 43.825 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PFAUDOAS", + "ref": "faudoas", + "name": "Faudoas, Lenclos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.77329, + 44.2365 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PCAYLUSBASCULE", + "ref": "caylusbascule", + "name": "Caylus, Bascule", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-10", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.35363, + 44.0197 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMMQAZA", + "ref": "MMQAZA", + "name": "Montauban, Mandoune", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.36016, + 44.0242 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PYEMVUR", + "ref": "YEMVUR", + "name": "Montauban, Salvador-Allende", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.36016, + 44.0242 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PYEMVUR", + "ref": "YEMVUR", + "name": "Montauban, Salvador-Allende", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.81618, + 44.1103 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMNENFV", + "ref": "MNENFV", + "name": "Donzac, Brulhois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.957942, + 43.825 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PFAUDOAS", + "ref": "faudoas", + "name": "Faudoas, Lenclos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.35363, + 44.0197 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PMMQAZA", + "ref": "MMQAZA", + "name": "Montauban, Mandoune", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-09-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1063, + 44.0384 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PCHATEAU", + "ref": "chateau", + "name": "Castelsarrasin, Chateau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.19525, + 44.0841 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PVUYNGD", + "ref": "VUYNGD", + "name": "Labastide-du-Temple, Grand Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-24", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29594, + 43.8269 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PGRISOLLES", + "ref": "grisolles", + "name": "Grisolles, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.854061, + 44.1133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PGOLFECH", + "ref": "golfech", + "name": "Golfech, Midi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39826, + 43.9183 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PXVDHGA", + "ref": "XVDHGA", + "name": "Reyniès, Albert de Reyniès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-15", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4493, + 44.0922 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PALBIAS", + "ref": "albias", + "name": "Albias, Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66197, + 44.0556 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PBRUNIQUEL", + "ref": "bruniquel", + "name": "Bruniquel, Ravelin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.85406, + 44.1133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PGOLFECH", + "ref": "golfech", + "name": "Golfech, Midi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66197, + 44.0556 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PBRUNIQUEL", + "ref": "bruniquel", + "name": "Bruniquel, Ravelin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1063, + 44.0384 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PCHATEAU", + "ref": "chateau", + "name": "Castelsarrasin, Chateau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29594, + 43.8269 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PGRISOLLES", + "ref": "grisolles", + "name": "Grisolles, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23461, + 43.8518 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS82PVERDUN", + "ref": "verdun", + "name": "Verdun-sur-Garonne, Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55017662, + 42.11461946 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRBUT3DZJBH", + "ref": "RBUT3DZJBH", + "name": "La Cave d'Aléria, Rue du Lustincone", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.428335, + 45.894845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT8CJCVP99U", + "ref": "T8CJCVP99U", + "name": "Tarare, 1 Rte de Feurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8491821, + 47.07137504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMSJI4GKDMB", + "ref": "MSJI4GKDMB", + "name": "Cholet, La Casse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74000524, + 48.63124584 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQOTMBBSOOH", + "ref": "QOTMBBSOOH", + "name": "Souffelweyersheim, Rue des sept Arpents", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.64040425, + 48.51599671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHZSKCRY3NQ", + "ref": "HZSKCRY3NQ", + "name": "Geispolsheim, Place André Malraux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.60441602, + 48.57708272 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHC303G1OWT", + "ref": "HC303G1OWT", + "name": "Breuschwickersheim, Chemin du Schwall", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.64040425, + 48.51599671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHZSKCRY3NQ", + "ref": "HZSKCRY3NQ", + "name": "Geispolsheim, Place André Malraux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.6880618, + 48.57846688 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PICW8FUK8MQ", + "ref": "ICW8FUK8MQ", + "name": "Eckbolsheim, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.72080967, + 48.52261672 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY3QEBNRC6N", + "ref": "Y3QEBNRC6N", + "name": "Illkirch, Avenue André Malraux Pharmacie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75892412, + 48.62711533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUJRBFAQ6K8", + "ref": "UJRBFAQ6K8", + "name": "Hoenheim, Parking Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.72080967, + 48.52261672 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY3QEBNRC6N", + "ref": "Y3QEBNRC6N", + "name": "Illkirch, Avenue André Malraux Pharmacie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.70999028, + 48.54336154 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGXEHLA3ZLD", + "ref": "GXEHLA3ZLD", + "name": "Ostwald, Rue des Vosges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.70999028, + 48.54336154 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGXEHLA3ZLD", + "ref": "GXEHLA3ZLD", + "name": "Ostwald, Rue des Vosges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.681792, + 48.55731002 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU3BIAJ1J75", + "ref": "U3BIAJ1J75", + "name": "Lingolsheim, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.695667, + 48.652245 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PURXXMQBEJN", + "ref": "URXXMQBEJN", + "name": "Lampertheim, Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.681792, + 48.55731002 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU3BIAJ1J75", + "ref": "U3BIAJ1J75", + "name": "Lingolsheim, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.7414585, + 48.63558163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMTQXSIJ3RN", + "ref": "MTQXSIJ3RN", + "name": "Souffelweyersheim, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74000524, + 48.63124584 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQOTMBBSOOH", + "ref": "QOTMBBSOOH", + "name": "Souffelweyersheim, Rue des sept Arpents", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.7414585, + 48.63558163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMTQXSIJ3RN", + "ref": "MTQXSIJ3RN", + "name": "Souffelweyersheim, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.695667, + 48.652245 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PURXXMQBEJN", + "ref": "URXXMQBEJN", + "name": "Lampertheim, Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.69120588, + 48.55196971 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDNX2FL4ZPW", + "ref": "DNX2FL4ZPW", + "name": "Lingolsheim, Rue des Alouettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.69120588, + 48.55196971 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDNX2FL4ZPW", + "ref": "DNX2FL4ZPW", + "name": "Lingolsheim, Rue des Alouettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.708257, + 48.636797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVGP2D1IL1W", + "ref": "VGP2D1IL1W", + "name": "Mundolsheim, Rue Berlioz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74018981, + 48.57834976 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJIRIL0QKRW", + "ref": "JIRIL0QKRW", + "name": "Strasbourg, place du Cygne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75892412, + 48.62711533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUJRBFAQ6K8", + "ref": "UJRBFAQ6K8", + "name": "Hoenheim, Parking Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.60441602, + 48.57708272 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHC303G1OWT", + "ref": "HC303G1OWT", + "name": "Breuschwickersheim, Chemin du Schwall", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75065853, + 48.60082459 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWUW4LZ9TPI", + "ref": "WUW4LZ9TPI", + "name": "Schiltigheim, Rue Albert Calmette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76165303, + 48.59813197 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWRZVCPI5NC", + "ref": "WRZVCPI5NC", + "name": "Strasbourg, allée du printemps", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.72367353, + 48.56510643 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY6VC4OKUHC", + "ref": "Y6VC4OKUHC", + "name": "Elsau, rue Gréco", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.72367353, + 48.56510643 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY6VC4OKUHC", + "ref": "Y6VC4OKUHC", + "name": "Elsau, rue Gréco", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.789755, + 48.613729 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN4XRQBUHJY", + "ref": "N4XRQBUHJY", + "name": "Strasbourg, Rue de la renaissance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75255764, + 48.58694488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAXT8TBMQPM", + "ref": "AXT8TBMQPM", + "name": "Strasbourg, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.79087169, + 48.59887343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE7KRECKCYE", + "ref": "E7KRECKCYE", + "name": "Strasbourg, rue de la breme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.79087169, + 48.59887343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE7KRECKCYE", + "ref": "E7KRECKCYE", + "name": "Strasbourg, rue de la breme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74978484, + 48.60648253 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMPGVWJFVRH", + "ref": "MPGVWJFVRH", + "name": "Schiltigheim, rue des pompiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76008955, + 48.56607557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNSDP4YBGRR", + "ref": "NSDP4YBGRR", + "name": "Strasbourg, rue de Rathsamhausen", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74978484, + 48.60648253 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMPGVWJFVRH", + "ref": "MPGVWJFVRH", + "name": "Schiltigheim, rue des pompiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.7504505, + 48.6086072 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVYYQLRBQLG", + "ref": "VYYQLRBQLG", + "name": "Schiltigheim, Route de Bischwiller", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.61308864, + 48.55933735 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRXZDFS3J0N", + "ref": "RXZDFS3J0N", + "name": "Hangenbieten, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.7504505, + 48.6086072 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVYYQLRBQLG", + "ref": "VYYQLRBQLG", + "name": "Schiltigheim, Route de Bischwiller", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.634685, + 48.532983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMBIIAYIANW", + "ref": "MBIIAYIANW", + "name": "Entzheim, rue de la mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76165303, + 48.59813197 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWRZVCPI5NC", + "ref": "WRZVCPI5NC", + "name": "Strasbourg, allée du printemps", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.634685, + 48.532983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMBIIAYIANW", + "ref": "MBIIAYIANW", + "name": "Entzheim, rue de la mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74018981, + 48.57834976 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJIRIL0QKRW", + "ref": "JIRIL0QKRW", + "name": "Strasbourg, place du Cygne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.66487713, + 48.49009967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSO1ITMVT8N", + "ref": "SO1ITMVT8N", + "name": "Lipsheim, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.66487713, + 48.49009967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSO1ITMVT8N", + "ref": "SO1ITMVT8N", + "name": "Lipsheim, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.61308864, + 48.55933735 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRXZDFS3J0N", + "ref": "RXZDFS3J0N", + "name": "Hangenbieten, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.6880618, + 48.57846688 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PICW8FUK8MQ", + "ref": "ICW8FUK8MQ", + "name": "Eckbolsheim, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.708257, + 48.636797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVGP2D1IL1W", + "ref": "VGP2D1IL1W", + "name": "Mundolsheim, Rue Berlioz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73381, + 48.6156857 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPL7JHFSCKK", + "ref": "PL7JHFSCKK", + "name": "Bischheim, Rue de Vendenheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42697, + 49.8128 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPVJDXV", + "ref": "PVJDXV", + "name": "Thézy-Glimont, Gande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73469123, + 48.5403391 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTFZRLAD58K", + "ref": "TFZRLAD58K", + "name": "Illkirch - Graffenstaden, avenue de Strasbourg", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.7087178, + 48.52607392 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PET9YQKHSFE", + "ref": "ET9YQKHSFE", + "name": "Illkirch - Graffenstaden, Route de Lyon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.64368157, + 48.55733488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN8A8OYWIZN", + "ref": "N8A8OYWIZN", + "name": "Holtzheim, Rue de Lingolsheim", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.64368157, + 48.55733488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN8A8OYWIZN", + "ref": "N8A8OYWIZN", + "name": "Holtzheim, Rue de Lingolsheim", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.69038189, + 48.53288699 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW0RMJ2P85R", + "ref": "W0RMJ2P85R", + "name": "Geispolsheim, Petite rue de l'Industrie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.780618, + 48.600507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXVWJDFBNAT", + "ref": "XVWJDFBNAT", + "name": "Strasbourg, Rue Boecklin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.67902255, + 48.49009256 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLZBDAYDH0Y", + "ref": "LZBDAYDH0Y", + "name": "Fegersheim, Rue de Lyon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73469123, + 48.5403391 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTFZRLAD58K", + "ref": "TFZRLAD58K", + "name": "Illkirch - Graffenstaden, avenue de Strasbourg", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.7087178, + 48.52607392 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PET9YQKHSFE", + "ref": "ET9YQKHSFE", + "name": "Illkirch - Graffenstaden, Route de Lyon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.67902255, + 48.49009256 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLZBDAYDH0Y", + "ref": "LZBDAYDH0Y", + "name": "Fegersheim, Rue de Lyon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.55657, + 48.5864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYVTKWXLYSL", + "ref": "YVTKWXLYSL", + "name": "Osthoffen, Rue Principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.72328975, + 48.60248479 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF4ZNRA9TDQ", + "ref": "F4ZNRA9TDQ", + "name": "Strasbourg, Rue de Hochfelden", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76678128, + 48.5557229 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM6GVZ6JYET", + "ref": "M6GVZ6JYET", + "name": "Strasbourg, Avenue du Neuhof", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.7264, + 48.4703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZJWTUKQRTE", + "ref": "ZJWTUKQRTE", + "name": "Plobsheim, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.62519, + 48.5779 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF4V8VL9UIA", + "ref": "F4V8VL9UIA", + "name": "Achenheim, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.762804, + 48.539679 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYWEZEFEDKH", + "ref": "YWEZEFEDKH", + "name": "Strasbourg, Rue des Jésuites", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.66684282, + 48.58700166 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBOHVRKIAYW", + "ref": "BOHVRKIAYW", + "name": "Wolfisheim, Square du Boeuf Rouge", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.66684282, + 48.58700166 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBOHVRKIAYW", + "ref": "BOHVRKIAYW", + "name": "Wolfisheim, Square du Boeuf Rouge", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.762804, + 48.539679 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYWEZEFEDKH", + "ref": "YWEZEFEDKH", + "name": "Strasbourg, Rue des Jésuites", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.60808, + 48.5037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPOVZLZ0M4M", + "ref": "POVZLZ0M4M", + "name": "Blaesheim, Rue du Lavoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.70227, + 48.6259 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA3MGRRDRGB", + "ref": "A3MGRRDRGB", + "name": "Niederhausbergen, Rue de Haldenbourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.59062026, + 48.56154565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQQYRC2FCMZ", + "ref": "QQYRC2FCMZ", + "name": "Kolbsheim, rue Jacques Maritain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71293388, + 48.6110297 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHKLD3MTZJB", + "ref": "HKLD3MTZJB", + "name": "Schiltigheim, Avenue de l'Europe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73381, + 48.6156857 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPL7JHFSCKK", + "ref": "PL7JHFSCKK", + "name": "Bischheim, Rue de Vendenheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76907797, + 48.62156963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKSPUBKEN0J", + "ref": "KSPUBKEN0J", + "name": "Hoenheim, Le Ried", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73614247, + 48.60646479 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZUMX4SSUME", + "ref": "ZUMX4SSUME", + "name": "Schiltigheim, Route du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75065853, + 48.60082459 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWUW4LZ9TPI", + "ref": "WUW4LZ9TPI", + "name": "Schiltigheim, Rue Albert Calmette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73614247, + 48.60646479 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZUMX4SSUME", + "ref": "ZUMX4SSUME", + "name": "Schiltigheim, Route du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76584763, + 48.6120157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJRTM1TGUD", + "ref": "RJRTM1TGUD", + "name": "Bischheim, Parking Match", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.77268, + 48.578641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POOWFA5K8PB", + "ref": "OOWFA5K8PB", + "name": "Esplanade, rue de Londres", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76907797, + 48.62156963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKSPUBKEN0J", + "ref": "KSPUBKEN0J", + "name": "Hoenheim, Le Ried", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.77268, + 48.578641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POOWFA5K8PB", + "ref": "OOWFA5K8PB", + "name": "Esplanade, rue de Londres", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.69828916, + 48.68518797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXUJE2L5JUY", + "ref": "XUJE2L5JUY", + "name": "Eckwersheim, Hippodrome", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.69828916, + 48.68518797 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXUJE2L5JUY", + "ref": "XUJE2L5JUY", + "name": "Eckwersheim, Hippodrome", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75676, + 48.576303 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBNAYVYPNUE", + "ref": "BNAYVYPNUE", + "name": "Krutenau, Rue de Lausanne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.59062026, + 48.56154565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQQYRC2FCMZ", + "ref": "QQYRC2FCMZ", + "name": "Kolbsheim, rue Jacques Maritain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75676, + 48.576303 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBNAYVYPNUE", + "ref": "BNAYVYPNUE", + "name": "Krutenau, Rue de Lausanne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76584763, + 48.6120157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJRTM1TGUD", + "ref": "RJRTM1TGUD", + "name": "Bischheim, Parking Match", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75144085, + 48.61340599 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJE9YSXAOIJ", + "ref": "JE9YSXAOIJ", + "name": "Bischheim, Place Saint-Laurent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75144085, + 48.61340599 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJE9YSXAOIJ", + "ref": "JE9YSXAOIJ", + "name": "Bischheim, Place Saint-Laurent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75548706, + 48.62134977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX8N8GBP7Y5", + "ref": "X8N8GBP7Y5", + "name": "Hoenheim, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75548706, + 48.62134977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX8N8GBP7Y5", + "ref": "X8N8GBP7Y5", + "name": "Hoenheim, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.72863261, + 48.61987814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYE8TVC3QFK", + "ref": "YE8TVC3QFK", + "name": "Hoenheim, rue Emile Mathis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.72863261, + 48.61987814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYE8TVC3QFK", + "ref": "YE8TVC3QFK", + "name": "Hoenheim, rue Emile Mathis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.72328975, + 48.60248479 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF4ZNRA9TDQ", + "ref": "F4ZNRA9TDQ", + "name": "Strasbourg, Rue de Hochfelden", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.77311452, + 48.56601877 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPWVZRTY6Z8", + "ref": "PWVZRTY6Z8", + "name": "Neudorf-Musau, rue d'Orbey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.77311452, + 48.56601877 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPWVZRTY6Z8", + "ref": "PWVZRTY6Z8", + "name": "Neudorf-Musau, rue d'Orbey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74919464, + 48.58859135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM53GGW3ONZ", + "ref": "M53GGW3ONZ", + "name": "Strasbourg, Rue Saint Léon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.7264, + 48.4703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZJWTUKQRTE", + "ref": "ZJWTUKQRTE", + "name": "Plobsheim, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08572, + 43.2086 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1P58E28A0851F24", + "ref": "58e28a0851f24", + "name": "Cazères, Tourte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50304314, + 47.48143352 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBSKY08VNWK", + "ref": "BSKY08VNWK", + "name": "Saint-Barthelemy-d'Anjou, rue de Champfleur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50304314, + 47.48143352 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBSKY08VNWK", + "ref": "BSKY08VNWK", + "name": "Saint-Barthelemy-d'Anjou, rue de Champfleur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.70724, + 47.62246 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POY9U2KDFHP", + "ref": "OY9U2KDFHP", + "name": "Elivia - Public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.70724, + 47.62246 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POY9U2KDFHP", + "ref": "OY9U2KDFHP", + "name": "Elivia - Public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.65306, + 48.5868 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRPIAIAYUIP", + "ref": "RPIAIAYUIP", + "name": "Oberschaeffolsheim, Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.70962, + 48.5904 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP5V9XI99Z7", + "ref": "P5V9XI99Z7", + "name": "Strasbourg, Rue Albert Calmette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.62519, + 48.5779 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF4V8VL9UIA", + "ref": "F4V8VL9UIA", + "name": "Achenheim, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.55657, + 48.5864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYVTKWXLYSL", + "ref": "YVTKWXLYSL", + "name": "Osthoffen, Rue Principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.69365, + 48.5988 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNKMDJTOUDC", + "ref": "NKMDJTOUDC", + "name": "Strasbourg, Rue Baden Powell", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.70227, + 48.6259 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA3MGRRDRGB", + "ref": "A3MGRRDRGB", + "name": "Niederhausbergen, Rue de Haldenbourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.7118, + 48.6001 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA8NFE2AVUQ", + "ref": "A8NFE2AVUQ", + "name": "Strasbourg, Route de Mittelhausbergen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.69668, + 48.593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBNOETWSQ8N", + "ref": "BNOETWSQ8N", + "name": "Strasbourg, Avenue Pierre Corneille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71734, + 48.595 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGBETNRGWTT", + "ref": "GBETNRGWTT", + "name": "Strasbourg, Place Mathieu Zell", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.82755, + 48.6581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR9JCWHPGKT", + "ref": "R9JCWHPGKT", + "name": "La Wantzenau, Rue des Héros", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.69643, + 48.5867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW2JSXIFDDM", + "ref": "W2JSXIFDDM", + "name": "Strasbourg, Avenue François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71434, + 48.4875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWGX350GV80", + "ref": "WGX350GV80", + "name": "Eschau, Rue des Merles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74951, + 48.5489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRBN9SNHY0", + "ref": "LRBN9SNHY0", + "name": "Strasbourg, Rue de Bourgogne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71291, + 48.6692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH2EMHAFSLS", + "ref": "H2EMHAFSLS", + "name": "Vendenheim, Rue de la Bique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08572, + 43.2086 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1P58E28A0851F24", + "ref": "58e28a0851f24", + "name": "Cazères, Tourte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75315794, + 48.5760783 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUHG7FBMQYH", + "ref": "UHG7FBMQYH", + "name": "Strasbourg, Place de la Bourse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.606897, + 43.652523 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ8GYI0419GG7", + "ref": "LLJ8GYI0419GG7", + "name": "Auch, route de Toulouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.606897, + 43.652523 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ8GYI0419GG7", + "ref": "LLJ8GYI0419GG7", + "name": "Auch, route de Toulouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.38042863, + 43.33825342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFVL8IDQLIP", + "ref": "FVL8IDQLIP", + "name": "Avenue des Martyrs du Pont Long, Lons", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.38042863, + 43.33825342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFVL8IDQLIP", + "ref": "FVL8IDQLIP", + "name": "Avenue des Martyrs du Pont Long, Lons", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.38042863, + 43.33825342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFVL8IDQLIP", + "ref": "FVL8IDQLIP", + "name": "Avenue des Martyrs du Pont Long, Lons", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13152792, + 50.60986071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POVRR1M5NIJ", + "ref": "OVRR1M5NIJ", + "name": "Villeneuve d'ascq, Rue de la volonté", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75189555, + 48.56849302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN9PUFD9IQX", + "ref": "N9PUFD9IQX", + "name": "Strasbourg, Place du Schluthfeld", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75189555, + 48.56849302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN9PUFD9IQX", + "ref": "N9PUFD9IQX", + "name": "Strasbourg, Place du Schluthfeld", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76878, + 48.6012 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYFBVDEVTCQ", + "ref": "YFBVDEVTCQ", + "name": "Strasbourg, Rue Pierre de Coubertin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73150775, + 48.57936478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPRZ9UEOLLL", + "ref": "PRZ9UEOLLL", + "name": "Strasbourg, Rue de Wasselonne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74341535, + 48.59109997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMB9F5TKRPJ", + "ref": "MB9F5TKRPJ", + "name": "Strasbourg, Place de Haguenau", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74069188, + 48.60021087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYFBKCUHMCA", + "ref": "YFBKCUHMCA", + "name": "Schiltigheim, Rue nouvelle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74653853, + 48.55950369 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHSR5CVUBSN", + "ref": "HSR5CVUBSN", + "name": "Strasbourg, Rue du Maréchal Lefèbvre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.711155, + 48.579078 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POJGQG93S4C", + "ref": "OJGQG93S4C", + "name": "Strasbourg, Route des romains", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.70918636, + 48.59542856 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWOJVP7XK3S", + "ref": "WOJVP7XK3S", + "name": "Strasbourg, Route d'Oberhausbergen", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.70918636, + 48.59542856 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWOJVP7XK3S", + "ref": "WOJVP7XK3S", + "name": "Strasbourg, Route d'Oberhausbergen", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75792403, + 48.58786038 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POTAUCDKBHT", + "ref": "OTAUCDKBHT", + "name": "Strasbourg, Avenue des Vosges", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.746767, + 48.578964 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQJZPGZZJNW", + "ref": "QJZPGZZJNW", + "name": "Strasbourg, Quai Saint Thomas", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75792403, + 48.58786038 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POTAUCDKBHT", + "ref": "OTAUCDKBHT", + "name": "Strasbourg, Avenue des Vosges", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75911345, + 48.57833911 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV2WYTXUEVW", + "ref": "V2WYTXUEVW", + "name": "Strasbourg, Rue de l'Hôpital Militaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76878, + 48.6012 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYFBVDEVTCQ", + "ref": "YFBVDEVTCQ", + "name": "Strasbourg, Rue Pierre de Coubertin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75911345, + 48.57833911 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV2WYTXUEVW", + "ref": "V2WYTXUEVW", + "name": "Strasbourg, Rue de l'Hôpital Militaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.744273, + 48.5535346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWVTOWOSAH", + "ref": "JWVTOWOSAH", + "name": "Strasbourg, Avenue de Colmar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73150775, + 48.57936478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPRZ9UEOLLL", + "ref": "PRZ9UEOLLL", + "name": "Strasbourg, Rue de Wasselonne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.746767, + 48.578964 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQJZPGZZJNW", + "ref": "QJZPGZZJNW", + "name": "Strasbourg, Quai Saint Thomas", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76008955, + 48.56607557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNSDP4YBGRR", + "ref": "NSDP4YBGRR", + "name": "Strasbourg, rue de Rathsamhausen", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.781838, + 48.611075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ34FCKPU91", + "ref": "Z34FCKPU91", + "name": "Strasbourg, rue de la papeterie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.781838, + 48.611075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ34FCKPU91", + "ref": "Z34FCKPU91", + "name": "Strasbourg, rue de la papeterie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75315794, + 48.5760783 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUHG7FBMQYH", + "ref": "UHG7FBMQYH", + "name": "Strasbourg, Place de la Bourse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75255764, + 48.58694488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAXT8TBMQPM", + "ref": "AXT8TBMQPM", + "name": "Strasbourg, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74919464, + 48.58859135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM53GGW3ONZ", + "ref": "M53GGW3ONZ", + "name": "Strasbourg, Rue Saint Léon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74341535, + 48.59109997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMB9F5TKRPJ", + "ref": "MB9F5TKRPJ", + "name": "Strasbourg, Place de Haguenau", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74069188, + 48.60021087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYFBKCUHMCA", + "ref": "YFBKCUHMCA", + "name": "Schiltigheim, Rue nouvelle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.70678376, + 48.56592647 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNRG9ZX5F3C", + "ref": "NRG9ZX5F3C", + "name": "Strasbourg, Rue du Roethig", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.6824582, + 48.55583297 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBVSTOGZT0R", + "ref": "BVSTOGZT0R", + "name": "Lingolsheim, mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75126537, + 48.65379283 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKVA6WUBXU", + "ref": "YKVA6WUBXU", + "name": "Reichstett, Aire de covoiturage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75126537, + 48.65379283 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKVA6WUBXU", + "ref": "YKVA6WUBXU", + "name": "Reichstett, Aire de covoiturage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.6824582, + 48.55583297 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBVSTOGZT0R", + "ref": "BVSTOGZT0R", + "name": "Lingolsheim, mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74341535, + 48.59109997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMB9F5TKRPJ", + "ref": "MB9F5TKRPJ", + "name": "Strasbourg, Place de Haguenau", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.60808, + 48.5037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPOVZLZ0M4M", + "ref": "POVZLZ0M4M", + "name": "Blaesheim, Rue du Lavoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71717115, + 48.64182763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN3JWK6WYPH", + "ref": "N3JWK6WYPH", + "name": "Mundolsheim, Rue du Général Leclerc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.69038189, + 48.53288699 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW0RMJ2P85R", + "ref": "W0RMJ2P85R", + "name": "Geispolsheim, Petite rue de l'Industrie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71717115, + 48.64182763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN3JWK6WYPH", + "ref": "N3JWK6WYPH", + "name": "Mundolsheim, Rue du Général Leclerc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.68763, + 48.6051 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXSXPKS4QIH", + "ref": "XSXPKS4QIH", + "name": "Oberhausbergen, Rue Albert Schweitzer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.69643, + 48.5867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW2JSXIFDDM", + "ref": "W2JSXIFDDM", + "name": "Strasbourg, Avenue François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.69668, + 48.593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBNOETWSQ8N", + "ref": "BNOETWSQ8N", + "name": "Strasbourg, Avenue Pierre Corneille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.69365, + 48.5988 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNKMDJTOUDC", + "ref": "NKMDJTOUDC", + "name": "Strasbourg, Rue Baden Powell", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74951, + 48.5489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLRBN9SNHY0", + "ref": "LRBN9SNHY0", + "name": "Strasbourg, Rue de Bourgogne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.68763, + 48.6051 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXSXPKS4QIH", + "ref": "XSXPKS4QIH", + "name": "Oberhausbergen, Rue Albert Schweitzer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.74653853, + 48.55950369 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHSR5CVUBSN", + "ref": "HSR5CVUBSN", + "name": "Strasbourg, Rue du Maréchal Lefèbvre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.70678376, + 48.56592647 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNRG9ZX5F3C", + "ref": "NRG9ZX5F3C", + "name": "Strasbourg, Rue du Roethig", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.744273, + 48.5535346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWVTOWOSAH", + "ref": "JWVTOWOSAH", + "name": "Strasbourg, Avenue de Colmar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.711155, + 48.579078 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POJGQG93S4C", + "ref": "OJGQG93S4C", + "name": "Strasbourg, Route des romains", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.70962, + 48.5904 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP5V9XI99Z7", + "ref": "P5V9XI99Z7", + "name": "Strasbourg, Rue Albert Calmette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.7118, + 48.6001 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA8NFE2AVUQ", + "ref": "A8NFE2AVUQ", + "name": "Strasbourg, Route de Mittelhausbergen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71293388, + 48.6110297 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHKLD3MTZJB", + "ref": "HKLD3MTZJB", + "name": "Schiltigheim, Avenue de l'Europe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14318, + 45.7882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXHCTBI3W6P", + "ref": "XHCTBI3W6P", + "name": "Clermont-Ferrand, Eurodorthz", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.269749, + 48.770422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUY61K2MLMX", + "ref": "UY61K2MLMX", + "name": "Phalsbourg, Chemin des Dames", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.269749, + 48.770422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUY61K2MLMX", + "ref": "UY61K2MLMX", + "name": "Phalsbourg, Chemin des Dames", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.269749, + 48.770422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUY61K2MLMX", + "ref": "UY61K2MLMX", + "name": "Phalsbourg, Chemin des Dames", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.269749, + 48.770422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUY61K2MLMX", + "ref": "UY61K2MLMX", + "name": "Phalsbourg, Chemin des Dames", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1649234, + 41.3905216 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHU7YHXF1J6VY", + "ref": "LLHU7YHXF1J6VY", + "name": "Bonifacio, Ets Botti", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1649234, + 41.3905216 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLHU7YHXF1J6VY", + "ref": "LLHU7YHXF1J6VY", + "name": "Bonifacio, Ets Botti", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14318, + 45.7882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXHCTBI3W6P", + "ref": "XHCTBI3W6P", + "name": "Clermont-Ferrand, Eurodorthz", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14318, + 45.7882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXHCTBI3W6P", + "ref": "XHCTBI3W6P", + "name": "Clermont-Ferrand, Eurodorthz", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14318, + 45.7882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXHCTBI3W6P", + "ref": "XHCTBI3W6P", + "name": "Clermont-Ferrand, Eurodorthz", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71339, + 48.5802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWZYXEF", + "ref": "WZYXEF", + "name": "Strasbourg, rue Gerlinde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2020-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.727858, + 48.621889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC1UPCJWJBM", + "ref": "C1UPCJWJBM", + "name": "Hoenheim, Espace H public", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76138, + 48.5808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGMSKN", + "ref": "JGMSKN", + "name": "Strasbourg, Balayeurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76987, + 48.5923 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAMBXBA", + "ref": "AMBXBA", + "name": "Strasbourg, Robertsau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73864, + 48.5814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRTRSPB", + "ref": "RTRSPB", + "name": "Strasbourg, Quai Turckheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76987, + 48.5923 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAMBXBA", + "ref": "AMBXBA", + "name": "Strasbourg, Robertsau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76138, + 48.5808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJGMSKN", + "ref": "JGMSKN", + "name": "Strasbourg, Balayeurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73864, + 48.5814 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRTRSPB", + "ref": "RTRSPB", + "name": "Strasbourg, Quai Turckheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2020-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71339, + 48.5802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWZYXEF", + "ref": "WZYXEF", + "name": "Strasbourg, rue Gerlinde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2020-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75043642, + 48.60862138 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXETDNE", + "ref": "XETDNE", + "name": "Schiltigheim, route de Bischwiller", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2021-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.70818, + 48.5291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQAMRV", + "ref": "YQAMRV", + "name": "Illkirch-Graffenstaden, François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.269749, + 48.770422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUY61K2MLMX", + "ref": "UY61K2MLMX", + "name": "Phalsbourg, Chemin des Dames", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.495616, + 48.455622 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGBLJBTXKT8", + "ref": "GBLJBTXKT8", + "name": "Obernai, Espace H Public", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWE4EWS3MA", + "ref": "XWE4EWS3MA", + "name": "Lyon, Espace Commercial Saint Chamond La Varizelle", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.43693124, + 42.62800905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCF7MTSVDNC", + "ref": "CF7MTSVDNC", + "name": "Biguglia, Espace Elec Ceppe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWE4EWS3MA", + "ref": "XWE4EWS3MA", + "name": "Lyon, Espace Commercial Saint Chamond La Varizelle", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93933154, + 43.58083775 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIYOKNX7TZR", + "ref": "IYOKNX7TZR", + "name": "Pérols, Espace Concorde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93933154, + 43.58083775 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIYOKNX7TZR", + "ref": "IYOKNX7TZR", + "name": "Pérols, Espace Concorde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.8048678, + 41.95966708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLIRJJZROMK", + "ref": "LIRJJZROMK", + "name": "Afa, Espace Elec Baleone", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.8048678, + 41.95966708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLIRJJZROMK", + "ref": "LIRJJZROMK", + "name": "Afa, Espace Elec Baleone", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1708877, + 42.29943501 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGWBBXYWGGI", + "ref": "GWBBXYWGGI", + "name": "Corte, Espace Elec", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.43693124, + 42.62800905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCF7MTSVDNC", + "ref": "CF7MTSVDNC", + "name": "Biguglia, Espace Elec Ceppe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.76546431, + 41.94692817 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP2VQPNZVP8", + "ref": "P2VQPNZVP8", + "name": "Ajaccio, Espace Elec", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.45076287, + 42.54955641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB4S2UL0ROL", + "ref": "B4S2UL0ROL", + "name": "Lucciana, Espace Elec", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.88945378, + 42.61074882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEPVLVLOVWF", + "ref": "EPVLVLOVWF", + "name": "Ile-Rousse, Espace Elec", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.727858, + 48.621889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC1UPCJWJBM", + "ref": "C1UPCJWJBM", + "name": "Hoenheim, Espace H public", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.727858, + 48.621889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC1UPCJWJBM", + "ref": "C1UPCJWJBM", + "name": "Hoenheim, Espace H public", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.727858, + 48.621889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC1UPCJWJBM", + "ref": "C1UPCJWJBM", + "name": "Hoenheim, Espace H public", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.727858, + 48.621889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC1UPCJWJBM", + "ref": "C1UPCJWJBM", + "name": "Hoenheim, Espace H public", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.727858, + 48.621889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC1UPCJWJBM", + "ref": "C1UPCJWJBM", + "name": "Hoenheim, Espace H public", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.727858, + 48.621889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC1UPCJWJBM", + "ref": "C1UPCJWJBM", + "name": "Hoenheim, Espace H public", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.727858, + 48.621889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC1UPCJWJBM", + "ref": "C1UPCJWJBM", + "name": "Hoenheim, Espace H public", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.495616, + 48.455622 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGBLJBTXKT8", + "ref": "GBLJBTXKT8", + "name": "Obernai, Espace H Public", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.495616, + 48.455622 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGBLJBTXKT8", + "ref": "GBLJBTXKT8", + "name": "Obernai, Espace H Public", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.495616, + 48.455622 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGBLJBTXKT8", + "ref": "GBLJBTXKT8", + "name": "Obernai, Espace H Public", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.70818, + 48.5291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQAMRV", + "ref": "YQAMRV", + "name": "Illkirch-Graffenstaden, François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75916, + 48.5945 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNETJXB", + "ref": "NETJXB", + "name": "Strasbourg, Place de Bordeaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75916, + 48.5945 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNETJXB", + "ref": "NETJXB", + "name": "Strasbourg, Place de Bordeaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.536033, + 46.675049 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTNUUY1QGPQ", + "ref": "TNUUY1QGPQ", + "name": "Montmorot, Rue des Pre des dames", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.425199, + 48.440343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIQYT3DE6ZN", + "ref": "IQYT3DE6ZN", + "name": "Europcar Brest Saint-Tudon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.15163708, + 47.01451245 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNV41MYEPGH", + "ref": "NV41MYEPGH", + "name": "Varennes-Vauzelles, Parking Europe Hôtel 58", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.80631757, + 48.87602133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6TZIUSYVL", + "ref": "L6TZIUSYVL", + "name": "Magny le Hongre, Hotel Explorers", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.80631757, + 48.87602133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6TZIUSYVL", + "ref": "L6TZIUSYVL", + "name": "Magny le Hongre, Hotel Explorers", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.80631757, + 48.87602133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6TZIUSYVL", + "ref": "L6TZIUSYVL", + "name": "Magny le Hongre, Hotel Explorers", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.80631757, + 48.87602133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6TZIUSYVL", + "ref": "L6TZIUSYVL", + "name": "Magny le Hongre, Hotel Explorers", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.80631757, + 48.87602133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6TZIUSYVL", + "ref": "L6TZIUSYVL", + "name": "Magny le Hongre, Hotel Explorers", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.80631757, + 48.87602133 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6TZIUSYVL", + "ref": "L6TZIUSYVL", + "name": "Magny le Hongre, Hotel Explorers", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.536033, + 46.675049 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTNUUY1QGPQ", + "ref": "TNUUY1QGPQ", + "name": "Montmorot, Rue des Pre des dames", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31526251, + 44.93999197 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ5RGFW83IU2L", + "ref": "LLJ5RGFW83IU2L", + "name": "Eyrignac, Eyrignac et ses jardins", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75247, + 48.587 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PASSGXF", + "ref": "ASSGXF", + "name": "Strasbourg, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2020-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31526251, + 44.93999197 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ5RGFW83IU2L", + "ref": "LLJ5RGFW83IU2L", + "name": "Eyrignac, Eyrignac et ses jardins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.19972481, + 42.45139658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMK1KUGXZJN", + "ref": "MK1KUGXZJN", + "name": "Piedigriggio, FB Automobiles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.19972481, + 42.45139658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMK1KUGXZJN", + "ref": "MK1KUGXZJN", + "name": "Piedigriggio, FB Automobiles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.647152, + 49.745562 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PYPGAPL", + "ref": "YPGAPL", + "name": "Arvillers, Place de l'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20023, + 49.9279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PMJEMLB", + "ref": "MJEMLB", + "name": "Ailly-sur-Somme, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42697, + 49.8128 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPVJDXV", + "ref": "PVJDXV", + "name": "Thézy-Glimont, Gande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94363, + 49.7018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PMPGGBH", + "ref": "MPGGBH", + "name": "Ercheu, Rue Soeur Saint-Vincent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29797, + 49.8914 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PDXDFXN", + "ref": "DXDFXN", + "name": "Amiens, Parking Jacobins 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29797, + 49.8914 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PDXDFXN", + "ref": "DXDFXN", + "name": "Amiens, Parking Jacobins 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.739464, + 48.501783 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDP1GJBV0RC", + "ref": "DP1GJBV0RC", + "name": "Europcar Saint-Brieuc", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.739464, + 48.501783 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDP1GJBV0RC", + "ref": "DP1GJBV0RC", + "name": "Europcar Saint-Brieuc", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.32667051, + 47.78896545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLTNIZVT1SZ", + "ref": "LTNIZVT1SZ", + "name": "Lorient Caudan", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.32667051, + 47.78896545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLTNIZVT1SZ", + "ref": "LTNIZVT1SZ", + "name": "Lorient Caudan", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75043642, + 48.60862138 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXETDNE", + "ref": "XETDNE", + "name": "Schiltigheim, route de Bischwiller", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75247, + 48.587 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PASSGXF", + "ref": "ASSGXF", + "name": "Strasbourg, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2020-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75301, + 48.5761 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBRYYWZ", + "ref": "BRYYWZ", + "name": "Strasbourg, Maréchal de Lattre de Tassigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2020-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75301, + 48.5761 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBRYYWZ", + "ref": "BRYYWZ", + "name": "Strasbourg, Maréchal de Lattre de Tassigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.", + "source:date": "2020-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.46104976, + 48.74956787 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPM3WP4TS73", + "ref": "PM3WP4TS73", + "name": "Europcar Lannion", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.425199, + 48.440343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIQYT3DE6ZN", + "ref": "IQYT3DE6ZN", + "name": "Europcar Brest Saint-Tudon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.720353, + 47.654622 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIRFUTY0EAR", + "ref": "IRFUTY0EAR", + "name": "Europcar Vannes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.074529, + 47.662287 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGJUJZ8EFOO", + "ref": "GJUJZ8EFOO", + "name": "Europcar Redon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.074529, + 47.662287 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGJUJZ8EFOO", + "ref": "GJUJZ8EFOO", + "name": "Europcar Redon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.720353, + 47.654622 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIRFUTY0EAR", + "ref": "IRFUTY0EAR", + "name": "Europcar Vannes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.720353, + 47.654622 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIRFUTY0EAR", + "ref": "IRFUTY0EAR", + "name": "Europcar Vannes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47967769, + 48.41308043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQFRX2Z7OPB", + "ref": "QFRX2Z7OPB", + "name": "Europcar Brest Pen Ar Chleuz", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47967769, + 48.41308043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQFRX2Z7OPB", + "ref": "QFRX2Z7OPB", + "name": "Europcar Brest Pen Ar Chleuz", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96248, + 48.056962 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPHEETVQ3IH", + "ref": "PHEETVQ3IH", + "name": "Europcar Pontivy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.46104976, + 48.74956787 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPM3WP4TS73", + "ref": "PM3WP4TS73", + "name": "Europcar Lannion", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.425199, + 48.440343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIQYT3DE6ZN", + "ref": "IQYT3DE6ZN", + "name": "Europcar Brest Saint-Tudon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.739464, + 48.501783 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDP1GJBV0RC", + "ref": "DP1GJBV0RC", + "name": "Europcar Saint-Brieuc", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.425199, + 48.440343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIQYT3DE6ZN", + "ref": "IQYT3DE6ZN", + "name": "Europcar Brest Saint-Tudon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.425199, + 48.440343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIQYT3DE6ZN", + "ref": "IQYT3DE6ZN", + "name": "Europcar Brest Saint-Tudon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWE4EWS3MA", + "ref": "XWE4EWS3MA", + "name": "Lyon, Espace Commercial Saint Chamond La Varizelle", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWE4EWS3MA", + "ref": "XWE4EWS3MA", + "name": "Lyon, Espace Commercial Saint Chamond La Varizelle", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76678128, + 48.5557229 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM6GVZ6JYET", + "ref": "M6GVZ6JYET", + "name": "Strasbourg, Avenue du Neuhof", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64034267, + 43.66406096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMCN2TV5DLV", + "ref": "MCN2TV5DLV", + "name": "Arles, BMW", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.78046908, + 48.58577742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFWEIOZ4CNV", + "ref": "FWEIOZ4CNV", + "name": "Strasbourg, Rue d'Ypres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.402546, + 43.507929 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTQFRQ15WCK", + "ref": "TQFRQ15WCK", + "name": "Aix-en-Provence, BMW", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.402546, + 43.507929 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTQFRQ15WCK", + "ref": "TQFRQ15WCK", + "name": "Aix-en-Provence, BMW", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.402546, + 43.507929 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTQFRQ15WCK", + "ref": "TQFRQ15WCK", + "name": "Aix-en-Provence, BMW", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.402546, + 43.507929 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTQFRQ15WCK", + "ref": "TQFRQ15WCK", + "name": "Aix-en-Provence, BMW", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.402546, + 43.507929 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTQFRQ15WCK", + "ref": "TQFRQ15WCK", + "name": "Aix-en-Provence, BMW", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10953875, + 44.12057025 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDYII1VYXNM", + "ref": "DYII1VYXNM", + "name": "Alès, BMW", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64034267, + 43.66406096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMCN2TV5DLV", + "ref": "MCN2TV5DLV", + "name": "Arles, BMW", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64034267, + 43.66406096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMCN2TV5DLV", + "ref": "MCN2TV5DLV", + "name": "Arles, BMW", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64034267, + 43.66406096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMCN2TV5DLV", + "ref": "MCN2TV5DLV", + "name": "Arles, BMW", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.77277653, + 48.58551838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZU4GWOCMMU", + "ref": "ZU4GWOCMMU", + "name": "Strasbourg, rue Beethoven", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45660198, + 43.490553 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSJWL0JJWCZ", + "ref": "SJWL0JJWCZ", + "name": "Bayonne, BMW", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13058583, + 44.60943264 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQUXPFGFXNE", + "ref": "QUXPFGFXNE", + "name": "La-Teste-de-Buch, BMW", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23002847, + 43.42249234 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTQ4MET9QHH", + "ref": "TQ4MET9QHH", + "name": "Marignane, BMW", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13202835, + 43.71686462 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQQHZ79XAXR", + "ref": "QQHZ79XAXR", + "name": "Mees, BMW", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44292094, + 43.92378544 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSAZHIGU1P", + "ref": "ZSAZHIGU1P", + "name": "Mont de Marsan, BMW", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44292094, + 43.92378544 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSAZHIGU1P", + "ref": "ZSAZHIGU1P", + "name": "Mont de Marsan, BMW", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44292094, + 43.92378544 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSAZHIGU1P", + "ref": "ZSAZHIGU1P", + "name": "Mont de Marsan, BMW", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44292094, + 43.92378544 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZSAZHIGU1P", + "ref": "ZSAZHIGU1P", + "name": "Mont de Marsan, BMW", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66772761, + 44.8484796 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYPNGGQLI7H", + "ref": "YPNGGQLI7H", + "name": "Mérignac, BMW", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.78046908, + 48.58577742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFWEIOZ4CNV", + "ref": "FWEIOZ4CNV", + "name": "Strasbourg, Rue d'Ypres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.77277653, + 48.58551838 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZU4GWOCMMU", + "ref": "ZU4GWOCMMU", + "name": "Strasbourg, rue Beethoven", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWE4EWS3MA", + "ref": "XWE4EWS3MA", + "name": "Lyon, Espace Commercial Saint Chamond La Varizelle", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.79588108, + 48.57091745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUWENEDCQPA", + "ref": "UWENEDCQPA", + "name": "Strasbourg, rue François Noblat", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71734, + 48.595 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGBETNRGWTT", + "ref": "GBETNRGWTT", + "name": "Strasbourg, Place Mathieu Zell", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.65306, + 48.5868 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRPIAIAYUIP", + "ref": "RPIAIAYUIP", + "name": "Oberschaeffolsheim, Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71291, + 48.6692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH2EMHAFSLS", + "ref": "H2EMHAFSLS", + "name": "Vendenheim, Rue de la Bique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.82755, + 48.6581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PR9JCWHPGKT", + "ref": "R9JCWHPGKT", + "name": "La Wantzenau, Rue des Héros", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.71434, + 48.4875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWGX350GV80", + "ref": "WGX350GV80", + "name": "Eschau, Rue des Merles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.780618, + 48.600507 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXVWJDFBNAT", + "ref": "XVWJDFBNAT", + "name": "Strasbourg, Rue Boecklin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.79588108, + 48.57091745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUWENEDCQPA", + "ref": "UWENEDCQPA", + "name": "Strasbourg, rue François Noblat", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.789755, + 48.613729 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN4XRQBUHJY", + "ref": "N4XRQBUHJY", + "name": "Strasbourg, Rue de la renaissance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75325004, + 48.59336011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSFFNZXZEQO", + "ref": "SFFNZXZEQO", + "name": "Tribunal-Contades, rue Jacques Kablé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.738545, + 48.584503 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ60YP7CO65", + "ref": "Q60YP7CO65", + "name": "Strasbourg, rue Kageneck", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75677983, + 48.5720959 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDCFCTPI49", + "ref": "JDCFCTPI49", + "name": "Neudorf-Musau, rue de la colonne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.77001443, + 48.59239504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQ2K0BBPT6", + "ref": "CQ2K0BBPT6", + "name": "Orangerie-Cons XV, allée de la Robertsau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.738545, + 48.584503 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQ60YP7CO65", + "ref": "Q60YP7CO65", + "name": "Strasbourg, rue Kageneck", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76552942, + 48.58840328 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFOREKRBQZH", + "ref": "FOREKRBQZH", + "name": "Strasbourg, 33 allée de la Robertsau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76552942, + 48.58840328 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFOREKRBQZH", + "ref": "FOREKRBQZH", + "name": "Strasbourg, 33 allée de la Robertsau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75325004, + 48.59336011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSFFNZXZEQO", + "ref": "SFFNZXZEQO", + "name": "Tribunal-Contades, rue Jacques Kablé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.7639826, + 48.57274546 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PETJO1NSOE0", + "ref": "ETJO1NSOE0", + "name": "Neudorf-Musau, avenue du Rhin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.75677983, + 48.5720959 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDCFCTPI49", + "ref": "JDCFCTPI49", + "name": "Neudorf-Musau, rue de la colonne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.77001443, + 48.59239504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCQ2K0BBPT6", + "ref": "CQ2K0BBPT6", + "name": "Orangerie-Cons XV, allée de la Robertsau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.7639826, + 48.57274546 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PETJO1NSOE0", + "ref": "ETJO1NSOE0", + "name": "Neudorf-Musau, avenue du Rhin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66772761, + 44.8484796 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYPNGGQLI7H", + "ref": "YPNGGQLI7H", + "name": "Mérignac, BMW", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66772761, + 44.8484796 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYPNGGQLI7H", + "ref": "YPNGGQLI7H", + "name": "Mérignac, BMW", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66772761, + 44.8484796 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYPNGGQLI7H", + "ref": "YPNGGQLI7H", + "name": "Mérignac, BMW", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.192515, + 45.733642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVRCUMHLPYR", + "ref": "VRCUMHLPYR", + "name": "Cournon-d'Auvergne, Avenue de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.365753, + -21.279779 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPOYTUZYBZT", + "ref": "POYTUZYBZT", + "name": "Engen Etang Salé DELTA", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.7149, + -21.0522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POJHMGCHDSF", + "ref": "OJHMGCHDSF", + "name": "Engen, Saint-Benoît Bras-Fusil DELTA", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 166.462, + -22.2461 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZSSVQ", + "ref": "EZSSVQ", + "name": "Nouméa, Engie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 166.462, + -22.2461 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEZSSVQ", + "ref": "EZSSVQ", + "name": "Nouméa, Engie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.35392, + 47.8642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVXFWFN", + "ref": "VXFWFN", + "name": "Ensisheim, rue du Cerf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.35392, + 47.8642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVXFWFN", + "ref": "VXFWFN", + "name": "Ensisheim, rue du Cerf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.858266, + 50.10722 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAR9PTVOSJU", + "ref": "AR9PTVOSJU", + "name": "EEP, rue Vendémiaire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95629924, + 43.30156711 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKA6HPW7M1J", + "ref": "KA6HPW7M1J", + "name": "Castelnaudary, Avenue des Pyrénées", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95629924, + 43.30156711 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKA6HPW7M1J", + "ref": "KA6HPW7M1J", + "name": "Castelnaudary, Avenue des Pyrénées", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.192515, + 45.733642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVRCUMHLPYR", + "ref": "VRCUMHLPYR", + "name": "Cournon-d'Auvergne, Avenue de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66772761, + 44.8484796 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYPNGGQLI7H", + "ref": "YPNGGQLI7H", + "name": "Mérignac, BMW", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWE4EWS3MA", + "ref": "XWE4EWS3MA", + "name": "Lyon, Espace Commercial Saint Chamond La Varizelle", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWE4EWS3MA", + "ref": "XWE4EWS3MA", + "name": "Lyon, Espace Commercial Saint Chamond La Varizelle", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWE4EWS3MA", + "ref": "XWE4EWS3MA", + "name": "Lyon, Espace Commercial Saint Chamond La Varizelle", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWE4EWS3MA", + "ref": "XWE4EWS3MA", + "name": "Lyon, Espace Commercial Saint Chamond La Varizelle", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWE4EWS3MA", + "ref": "XWE4EWS3MA", + "name": "Lyon, Espace Commercial Saint Chamond La Varizelle", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWE4EWS3MA", + "ref": "XWE4EWS3MA", + "name": "Lyon, Espace Commercial Saint Chamond La Varizelle", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWE4EWS3MA", + "ref": "XWE4EWS3MA", + "name": "Lyon, Espace Commercial Saint Chamond La Varizelle", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWE4EWS3MA", + "ref": "XWE4EWS3MA", + "name": "Lyon, Espace Commercial Saint Chamond La Varizelle", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWE4EWS3MA", + "ref": "XWE4EWS3MA", + "name": "Lyon, Espace Commercial Saint Chamond La Varizelle", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.7149, + -21.0522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POJHMGCHDSF", + "ref": "OJHMGCHDSF", + "name": "Engen, Saint-Benoît Bras-Fusil DELTA", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.365753, + -21.279779 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPOYTUZYBZT", + "ref": "POYTUZYBZT", + "name": "Engen Etang Salé DELTA", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.7149, + -21.0522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POJHMGCHDSF", + "ref": "OJHMGCHDSF", + "name": "Engen, Saint-Benoît Bras-Fusil DELTA", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.365753, + -21.279779 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPOYTUZYBZT", + "ref": "POYTUZYBZT", + "name": "Engen Etang Salé DELTA", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.371961, + 43.808823 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYSZ671LQHR", + "ref": "YSZ671LQHR", + "name": "Nîmes, BMW", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30565142, + 46.55255239 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA46LM1G17J", + "ref": "A46LM1G17J", + "name": "Poitiers, BMW", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30565142, + 46.55255239 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA46LM1G17J", + "ref": "A46LM1G17J", + "name": "Poitiers, BMW", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30565142, + 46.55255239 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA46LM1G17J", + "ref": "A46LM1G17J", + "name": "Poitiers, BMW", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09245, + 43.619574 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWQLJIEOSPD", + "ref": "WQLJIEOSPD", + "name": "Salon de Provence, BMW", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.052942, + 50.551433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPW4BJOEDV", + "ref": "CPW4BJOEDV", + "name": "Seclin, BMW", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.120852, + 50.641032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYNNVONFVX", + "ref": "LYNNVONFVX", + "name": "Villeneuve D'Ascq, BMW", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.120852, + 50.641032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYNNVONFVX", + "ref": "LYNNVONFVX", + "name": "Villeneuve D'Ascq, BMW", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.120852, + 50.641032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYNNVONFVX", + "ref": "LYNNVONFVX", + "name": "Villeneuve D'Ascq, BMW", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.120852, + 50.641032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYNNVONFVX", + "ref": "LYNNVONFVX", + "name": "Villeneuve D'Ascq, BMW", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.120852, + 50.641032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYNNVONFVX", + "ref": "LYNNVONFVX", + "name": "Villeneuve D'Ascq, BMW", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.120852, + 50.641032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYNNVONFVX", + "ref": "LYNNVONFVX", + "name": "Villeneuve D'Ascq, BMW", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.120852, + 50.641032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLYNNVONFVX", + "ref": "LYNNVONFVX", + "name": "Villeneuve D'Ascq, BMW", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47946398, + 43.56572253 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXOPBHY1L2B", + "ref": "XOPBHY1L2B", + "name": "Toulouse, Bâtiment Hymans", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48143, + 43.5669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNDHQTP", + "ref": "NDHQTP", + "name": "Toulouse, ENAC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47946398, + 43.56572253 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXOPBHY1L2B", + "ref": "XOPBHY1L2B", + "name": "Toulouse, Bâtiment Hymans", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48143, + 43.5669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNDHQTP", + "ref": "NDHQTP", + "name": "Toulouse, ENAC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48143, + 43.5669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNDHQTP", + "ref": "NDHQTP", + "name": "Toulouse, ENAC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48143, + 43.5669 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNDHQTP", + "ref": "NDHQTP", + "name": "Toulouse, ENAC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.047618, + 48.719808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXJ5L0C9ZRQ", + "ref": "XJ5L0C9ZRQ", + "name": "Sarrebourg, Terrasses Rhône Alpes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.047618, + 48.719808 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXJ5L0C9ZRQ", + "ref": "XJ5L0C9ZRQ", + "name": "Sarrebourg, Terrasses Rhône Alpes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.733662, + 47.653039 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH7PMEQE0EW", + "ref": "H7PMEQE0EW", + "name": "Séné, Easy Rool", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.05305481, + 50.54928528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PICFNBQATMH", + "ref": "ICFNBQATMH", + "name": "E. Leclerc, Seclin Public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.71976362, + 48.0198099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PDZPQJFHGIZ", + "ref": "DZPQJFHGIZ", + "name": "E.Leclerc, Scaer", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.71976362, + 48.0198099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PDZPQJFHGIZ", + "ref": "DZPQJFHGIZ", + "name": "E.Leclerc, Scaer", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.71976362, + 48.0198099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PDZPQJFHGIZ", + "ref": "DZPQJFHGIZ", + "name": "E.Leclerc, Scaer", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.71976362, + 48.0198099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PDZPQJFHGIZ", + "ref": "DZPQJFHGIZ", + "name": "E.Leclerc, Scaer", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0546981, + 50.55028063 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PICFNBQATMH", + "ref": "ICFNBQATMH", + "name": "E. Leclerc, Seclin Public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.05305481, + 50.54928528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PICFNBQATMH", + "ref": "ICFNBQATMH", + "name": "E. Leclerc, Seclin Public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0546981, + 50.55028063 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PICFNBQATMH", + "ref": "ICFNBQATMH", + "name": "E. Leclerc, Seclin Public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.05305481, + 50.54928528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PICFNBQATMH", + "ref": "ICFNBQATMH", + "name": "E. Leclerc, Seclin Public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.05305481, + 50.54928528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PICFNBQATMH", + "ref": "ICFNBQATMH", + "name": "E. Leclerc, Seclin Public", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92722788, + 49.69853929 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLJMKO2YP5BIF6", + "ref": "LLJMKO2YP5BIF6", + "name": "E.Leclerc Sedan", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92722788, + 49.69853929 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLJMKO2YP5BIF6", + "ref": "LLJMKO2YP5BIF6", + "name": "E.Leclerc Sedan", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92722788, + 49.69853929 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLJMKO2YP5BIF6", + "ref": "LLJMKO2YP5BIF6", + "name": "E.Leclerc Sedan", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92722788, + 49.69853929 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLJMKO2YP5BIF6", + "ref": "LLJMKO2YP5BIF6", + "name": "E.Leclerc Sedan", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92722788, + 49.69853929 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLJMKO2YP5BIF6", + "ref": "LLJMKO2YP5BIF6", + "name": "E.Leclerc Sedan", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92722788, + 49.69853929 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLJMKO2YP5BIF6", + "ref": "LLJMKO2YP5BIF6", + "name": "E.Leclerc Sedan", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92722788, + 49.69853929 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLJMKO2YP5BIF6", + "ref": "LLJMKO2YP5BIF6", + "name": "E.Leclerc Sedan", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92722788, + 49.69853929 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLJMKO2YP5BIF6", + "ref": "LLJMKO2YP5BIF6", + "name": "E.Leclerc Sedan", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZERYWQHLC", + "ref": "KZERYWQHLC", + "name": "E.Leclerc, Sautel La Rochelle", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92722788, + 49.69853929 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLJMKO2YP5BIF6", + "ref": "LLJMKO2YP5BIF6", + "name": "E.Leclerc Sedan", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92722788, + 49.69853929 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLJMKO2YP5BIF6", + "ref": "LLJMKO2YP5BIF6", + "name": "E.Leclerc Sedan", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87841511, + 47.6791211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFPVIHBM6KU", + "ref": "FPVIHBM6KU", + "name": "E.Leclerc, Segrè", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53655714, + 45.84920245 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGN7DXMH144", + "ref": "GN7DXMH144", + "name": "E.Leclerc, Thiers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZ5LMBLQWL", + "ref": "SZ5LMBLQWL", + "name": "E.Leclerc, Surgères", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZ5LMBLQWL", + "ref": "SZ5LMBLQWL", + "name": "E.Leclerc, Surgères", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZ5LMBLQWL", + "ref": "SZ5LMBLQWL", + "name": "E.Leclerc, Surgères", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.44358433, + 50.30178494 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAQAS4AR37L", + "ref": "AQAS4AR37L", + "name": "E.Leclerc, Thiant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.44358433, + 50.30178494 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAQAS4AR37L", + "ref": "AQAS4AR37L", + "name": "E.Leclerc, Thiant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.44358433, + 50.30178494 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAQAS4AR37L", + "ref": "AQAS4AR37L", + "name": "E.Leclerc, Thiant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.44358433, + 50.30178494 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAQAS4AR37L", + "ref": "AQAS4AR37L", + "name": "E.Leclerc, Thiant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53655714, + 45.84920245 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGN7DXMH144", + "ref": "GN7DXMH144", + "name": "E.Leclerc, Thiers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53655714, + 45.84920245 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGN7DXMH144", + "ref": "GN7DXMH144", + "name": "E.Leclerc, Thiers", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53655714, + 45.84920245 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGN7DXMH144", + "ref": "GN7DXMH144", + "name": "E.Leclerc, Thiers", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87841511, + 47.6791211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFPVIHBM6KU", + "ref": "FPVIHBM6KU", + "name": "E.Leclerc, Segrè", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53655714, + 45.84920245 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGN7DXMH144", + "ref": "GN7DXMH144", + "name": "E.Leclerc, Thiers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53655714, + 45.84920245 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGN7DXMH144", + "ref": "GN7DXMH144", + "name": "E.Leclerc, Thiers", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53655714, + 45.84920245 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGN7DXMH144", + "ref": "GN7DXMH144", + "name": "E.Leclerc, Thiers", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.53655714, + 45.84920245 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGN7DXMH144", + "ref": "GN7DXMH144", + "name": "E.Leclerc, Thiers", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10975616, + 49.36198763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUNE1XEQJFU", + "ref": "UNE1XEQJFU", + "name": "E. Leclerc, Thionville", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10975616, + 49.36198763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUNE1XEQJFU", + "ref": "UNE1XEQJFU", + "name": "E. Leclerc, Thionville", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10975616, + 49.36198763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUNE1XEQJFU", + "ref": "UNE1XEQJFU", + "name": "E. Leclerc, Thionville", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10975616, + 49.36198763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUNE1XEQJFU", + "ref": "UNE1XEQJFU", + "name": "E. Leclerc, Thionville", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10975616, + 49.36198763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUNE1XEQJFU", + "ref": "UNE1XEQJFU", + "name": "E. Leclerc, Thionville", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZ5LMBLQWL", + "ref": "SZ5LMBLQWL", + "name": "E.Leclerc, Surgères", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZ5LMBLQWL", + "ref": "SZ5LMBLQWL", + "name": "E.Leclerc, Surgères", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZ5LMBLQWL", + "ref": "SZ5LMBLQWL", + "name": "E.Leclerc, Surgères", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZ5LMBLQWL", + "ref": "SZ5LMBLQWL", + "name": "E.Leclerc, Surgères", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87841511, + 47.6791211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFPVIHBM6KU", + "ref": "FPVIHBM6KU", + "name": "E.Leclerc, Segrè", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87841511, + 47.6791211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFPVIHBM6KU", + "ref": "FPVIHBM6KU", + "name": "E.Leclerc, Segrè", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46184814, + 44.8986309 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLCYZMPMIOE", + "ref": "LCYZMPMIOE", + "name": "E.Leclerc, Souillac", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46184814, + 44.8986309 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLCYZMPMIOE", + "ref": "LCYZMPMIOE", + "name": "E.Leclerc, Souillac", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46184814, + 44.8986309 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLCYZMPMIOE", + "ref": "LCYZMPMIOE", + "name": "E.Leclerc, Souillac", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46184814, + 44.8986309 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLCYZMPMIOE", + "ref": "LCYZMPMIOE", + "name": "E.Leclerc, Souillac", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46184814, + 44.8986309 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLCYZMPMIOE", + "ref": "LCYZMPMIOE", + "name": "E.Leclerc, Souillac", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46184814, + 44.8986309 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLCYZMPMIOE", + "ref": "LCYZMPMIOE", + "name": "E.Leclerc, Souillac", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46184814, + 44.8986309 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLCYZMPMIOE", + "ref": "LCYZMPMIOE", + "name": "E.Leclerc, Souillac", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46184814, + 44.8986309 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLCYZMPMIOE", + "ref": "LCYZMPMIOE", + "name": "E.Leclerc, Souillac", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.79230519, + 48.57494952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSYTNVNRXVA", + "ref": "SYTNVNRXVA", + "name": "E.Leclerc, Strasbourg Port du Rhin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76681958, + 48.54503679 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAVEKYZHJ5W", + "ref": "AVEKYZHJ5W", + "name": "E.Leclerc, Strasbourg Neuhof", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.76681958, + 48.54503679 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAVEKYZHJ5W", + "ref": "AVEKYZHJ5W", + "name": "E.Leclerc, Strasbourg Neuhof", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73570337, + 48.5974961 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQFEYWXCVA1", + "ref": "QFEYWXCVA1", + "name": "E.Leclerc, Strasbourg Marché Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73570337, + 48.5974961 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQFEYWXCVA1", + "ref": "QFEYWXCVA1", + "name": "E.Leclerc, Strasbourg Marché Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.79230519, + 48.57494952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSYTNVNRXVA", + "ref": "SYTNVNRXVA", + "name": "E.Leclerc, Strasbourg Port du Rhin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZ5LMBLQWL", + "ref": "SZ5LMBLQWL", + "name": "E.Leclerc, Surgères", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZ5LMBLQWL", + "ref": "SZ5LMBLQWL", + "name": "E.Leclerc, Surgères", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZ5LMBLQWL", + "ref": "SZ5LMBLQWL", + "name": "E.Leclerc, Surgères", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10975616, + 49.36198763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUNE1XEQJFU", + "ref": "UNE1XEQJFU", + "name": "E. Leclerc, Thionville", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04559503, + 43.73217763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZJ0HFJ186C", + "ref": "ZJ0HFJ186C", + "name": "E.Leclerc, Saint-Paul-lès-Dax", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0783013, + 47.64704237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYKZJX4FHI", + "ref": "ZYKZJX4FHI", + "name": "E.Leclerc, Saint-Nicolas-de-Redon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12308566, + 49.05785284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PC0EV8XYVBH", + "ref": "C0EV8XYVBH", + "name": "E.Leclerc, Saint-Ouen L'Aumône", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12308566, + 49.05785284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PC0EV8XYVBH", + "ref": "C0EV8XYVBH", + "name": "E.Leclerc, Saint-Ouen L'Aumône", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12308566, + 49.05785284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PC0EV8XYVBH", + "ref": "C0EV8XYVBH", + "name": "E.Leclerc, Saint-Ouen L'Aumône", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12308566, + 49.05785284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PC0EV8XYVBH", + "ref": "C0EV8XYVBH", + "name": "E.Leclerc, Saint-Ouen L'Aumône", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12308566, + 49.05785284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PC0EV8XYVBH", + "ref": "C0EV8XYVBH", + "name": "E.Leclerc, Saint-Ouen L'Aumône", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12308566, + 49.05785284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PC0EV8XYVBH", + "ref": "C0EV8XYVBH", + "name": "E.Leclerc, Saint-Ouen L'Aumône", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12308566, + 49.05785284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PC0EV8XYVBH", + "ref": "C0EV8XYVBH", + "name": "E.Leclerc, Saint-Ouen L'Aumône", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12308566, + 49.05785284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PC0EV8XYVBH", + "ref": "C0EV8XYVBH", + "name": "E.Leclerc, Saint-Ouen L'Aumône", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04559503, + 43.73217763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZJ0HFJ186C", + "ref": "ZJ0HFJ186C", + "name": "E.Leclerc, Saint-Paul-lès-Dax", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0783013, + 47.64704237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYKZJX4FHI", + "ref": "ZYKZJX4FHI", + "name": "E.Leclerc, Saint-Nicolas-de-Redon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04559503, + 43.73217763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZJ0HFJ186C", + "ref": "ZJ0HFJ186C", + "name": "E.Leclerc, Saint-Paul-lès-Dax", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04559503, + 43.73217763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZJ0HFJ186C", + "ref": "ZJ0HFJ186C", + "name": "E.Leclerc, Saint-Paul-lès-Dax", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PB4SFETIVZ4", + "ref": "B4SFETIVZ4", + "name": "E.Leclerc, Saint-Pol-de-Leon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PB4SFETIVZ4", + "ref": "B4SFETIVZ4", + "name": "E.Leclerc, Saint-Pol-de-Leon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PB4SFETIVZ4", + "ref": "B4SFETIVZ4", + "name": "E.Leclerc, Saint-Pol-de-Leon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PB4SFETIVZ4", + "ref": "B4SFETIVZ4", + "name": "E.Leclerc, Saint-Pol-de-Leon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PB4SFETIVZ4", + "ref": "B4SFETIVZ4", + "name": "E.Leclerc, Saint-Pol-de-Leon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PB4SFETIVZ4", + "ref": "B4SFETIVZ4", + "name": "E.Leclerc, Saint-Pol-de-Leon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PB4SFETIVZ4", + "ref": "B4SFETIVZ4", + "name": "E.Leclerc, Saint-Pol-de-Leon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0783013, + 47.64704237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYKZJX4FHI", + "ref": "ZYKZJX4FHI", + "name": "E.Leclerc, Saint-Nicolas-de-Redon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0783013, + 47.64704237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYKZJX4FHI", + "ref": "ZYKZJX4FHI", + "name": "E.Leclerc, Saint-Nicolas-de-Redon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0783013, + 47.64704237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYKZJX4FHI", + "ref": "ZYKZJX4FHI", + "name": "E.Leclerc, Saint-Nicolas-de-Redon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0783013, + 47.64704237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYKZJX4FHI", + "ref": "ZYKZJX4FHI", + "name": "E.Leclerc, Saint-Nicolas-de-Redon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PB4SFETIVZ4", + "ref": "B4SFETIVZ4", + "name": "E.Leclerc, Saint-Pol-de-Leon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PB4SFETIVZ4", + "ref": "B4SFETIVZ4", + "name": "E.Leclerc, Saint-Pol-de-Leon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PB4SFETIVZ4", + "ref": "B4SFETIVZ4", + "name": "E.Leclerc, Saint-Pol-de-Leon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38309193, + 45.47548009 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJRR1WB5NO2", + "ref": "JRR1WB5NO2", + "name": "E.Leclerc, Saint-Priest-en-Jarez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.03988977, + 48.73041824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTQJ9C4BJCW", + "ref": "TQJ9C4BJCW", + "name": "E.Leclerc, Sarrebourg Brico", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04323706, + 48.73226878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCNKO7ZKC7", + "ref": "RCNKO7ZKC7", + "name": "E.Leclerc, Sarrebourg", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.03988977, + 48.73041824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTQJ9C4BJCW", + "ref": "TQJ9C4BJCW", + "name": "E.Leclerc, Sarrebourg Brico", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38309193, + 45.47548009 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJRR1WB5NO2", + "ref": "JRR1WB5NO2", + "name": "E.Leclerc, Saint-Priest-en-Jarez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.80605137, + 43.43204993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PX6FFTH2H2I", + "ref": "X6FFTH2H2I", + "name": "E. Leclerc, Saint-Raphael", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.80605137, + 43.43204993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PX6FFTH2H2I", + "ref": "X6FFTH2H2I", + "name": "E. Leclerc, Saint-Raphael", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.80605137, + 43.43204993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PX6FFTH2H2I", + "ref": "X6FFTH2H2I", + "name": "E. Leclerc, Saint-Raphael", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.80605137, + 43.43204993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PX6FFTH2H2I", + "ref": "X6FFTH2H2I", + "name": "E. Leclerc, Saint-Raphael", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62493383, + 45.741693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PST9EIX80RW", + "ref": "ST9EIX80RW", + "name": "E.Leclerc, Saintes-Abbaye-Maine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62493383, + 45.741693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PST9EIX80RW", + "ref": "ST9EIX80RW", + "name": "E.Leclerc, Saintes-Abbaye-Maine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62493383, + 45.741693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PST9EIX80RW", + "ref": "ST9EIX80RW", + "name": "E.Leclerc, Saintes-Abbaye-Maine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62493383, + 45.741693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PST9EIX80RW", + "ref": "ST9EIX80RW", + "name": "E.Leclerc, Saintes-Abbaye-Maine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26086318, + 49.87034034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIVCJMMNKKB", + "ref": "IVCJMMNKKB", + "name": "E.Leclerc, Salouel", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26086318, + 49.87034034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIVCJMMNKKB", + "ref": "IVCJMMNKKB", + "name": "E.Leclerc, Salouel", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26086318, + 49.87034034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIVCJMMNKKB", + "ref": "IVCJMMNKKB", + "name": "E.Leclerc, Salouel", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26086318, + 49.87034034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIVCJMMNKKB", + "ref": "IVCJMMNKKB", + "name": "E.Leclerc, Salouel", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5473872, + 42.26291493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PV7SFAZJTXG", + "ref": "V7SFAZJTXG", + "name": "E.Leclerc, San Giuliano", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5473872, + 42.26291493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PV7SFAZJTXG", + "ref": "V7SFAZJTXG", + "name": "E.Leclerc, San Giuliano", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5473872, + 42.26291493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PV7SFAZJTXG", + "ref": "V7SFAZJTXG", + "name": "E.Leclerc, San Giuliano", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5473872, + 42.26291493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PV7SFAZJTXG", + "ref": "V7SFAZJTXG", + "name": "E.Leclerc, San Giuliano", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04613784, + 48.73360275 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKGVGVFMDMV", + "ref": "KGVGVFMDMV", + "name": "E.Leclerc, Sarrebourg Marché Bio", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04613784, + 48.73360275 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKGVGVFMDMV", + "ref": "KGVGVFMDMV", + "name": "E.Leclerc, Sarrebourg Marché Bio", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10975616, + 49.36198763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUNE1XEQJFU", + "ref": "UNE1XEQJFU", + "name": "E. Leclerc, Thionville", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10975616, + 49.36198763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUNE1XEQJFU", + "ref": "UNE1XEQJFU", + "name": "E. Leclerc, Thionville", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23304351, + 49.11482753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWWFF9DHV9P", + "ref": "WWFF9DHV9P", + "name": "Clef Vallée d'Eure, rue de Louviers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31413997, + 48.08631445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCVPTFRAEJ5", + "ref": "CVPTFRAEJ5", + "name": "E.Leclerc, Wintzenheim", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.20907889, + 50.69865957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHKXDNK2J5W", + "ref": "HKXDNK2J5W", + "name": "E.Leclerc, Wattrelos", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.20907889, + 50.69865957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHKXDNK2J5W", + "ref": "HKXDNK2J5W", + "name": "E.Leclerc, Wattrelos", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31413997, + 48.08631445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCVPTFRAEJ5", + "ref": "CVPTFRAEJ5", + "name": "E.Leclerc, Wintzenheim", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31413997, + 48.08631445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCVPTFRAEJ5", + "ref": "CVPTFRAEJ5", + "name": "E.Leclerc, Wintzenheim", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31413997, + 48.08631445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCVPTFRAEJ5", + "ref": "CVPTFRAEJ5", + "name": "E.Leclerc, Wintzenheim", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31413997, + 48.08631445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCVPTFRAEJ5", + "ref": "CVPTFRAEJ5", + "name": "E.Leclerc, Wintzenheim", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31413997, + 48.08631445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCVPTFRAEJ5", + "ref": "CVPTFRAEJ5", + "name": "E.Leclerc, Wintzenheim", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31413997, + 48.08631445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCVPTFRAEJ5", + "ref": "CVPTFRAEJ5", + "name": "E.Leclerc, Wintzenheim", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31413997, + 48.08631445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCVPTFRAEJ5", + "ref": "CVPTFRAEJ5", + "name": "E.Leclerc, Wintzenheim", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16298, + 47.7958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCK6TYRZRSZ", + "ref": "CK6TYRZRSZ", + "name": "E.Leclerc, Zone Ciné-Loisirs Cernay", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.20907889, + 50.69865957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHKXDNK2J5W", + "ref": "HKXDNK2J5W", + "name": "E.Leclerc, Wattrelos", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16298, + 47.7958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCK6TYRZRSZ", + "ref": "CK6TYRZRSZ", + "name": "E.Leclerc, Zone Ciné-Loisirs Cernay", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16298, + 47.7958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCK6TYRZRSZ", + "ref": "CK6TYRZRSZ", + "name": "E.Leclerc, Zone Ciné-Loisirs Cernay", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16298, + 47.7958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCK6TYRZRSZ", + "ref": "CK6TYRZRSZ", + "name": "E.Leclerc, Zone Ciné-Loisirs Cernay", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16298, + 47.7958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCK6TYRZRSZ", + "ref": "CK6TYRZRSZ", + "name": "E.Leclerc, Zone Ciné-Loisirs Cernay", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16298, + 47.7958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCK6TYRZRSZ", + "ref": "CK6TYRZRSZ", + "name": "E.Leclerc, Zone Ciné-Loisirs Cernay", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16298, + 47.7958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCK6TYRZRSZ", + "ref": "CK6TYRZRSZ", + "name": "E.Leclerc, Zone Ciné-Loisirs Cernay", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16298, + 47.7958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCK6TYRZRSZ", + "ref": "CK6TYRZRSZ", + "name": "E.Leclerc, Zone Ciné-Loisirs Cernay", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16298, + 47.7958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCK6TYRZRSZ", + "ref": "CK6TYRZRSZ", + "name": "E.Leclerc, Zone Ciné-Loisirs Cernay", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16298, + 47.7958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCK6TYRZRSZ", + "ref": "CK6TYRZRSZ", + "name": "E.Leclerc, Zone Ciné-Loisirs Cernay", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.20907889, + 50.69865957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHKXDNK2J5W", + "ref": "HKXDNK2J5W", + "name": "E.Leclerc, Wattrelos", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.20907889, + 50.69865957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHKXDNK2J5W", + "ref": "HKXDNK2J5W", + "name": "E.Leclerc, Wattrelos", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74550877, + 50.4868159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJTNVJKIPME", + "ref": "JTNVJKIPME", + "name": "E.Leclerc, Vermelles", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.798617, + 50.54055576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PO3TJBYM5LC", + "ref": "O3TJBYM5LC", + "name": "E.Leclerc, Violaines", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.65781418, + 49.07382725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXF6G40NMKY", + "ref": "XF6G40NMKY", + "name": "E.Leclerc, Villers-Bocage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.65781418, + 49.07382725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXF6G40NMKY", + "ref": "XF6G40NMKY", + "name": "E.Leclerc, Villers-Bocage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.798617, + 50.54055576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PO3TJBYM5LC", + "ref": "O3TJBYM5LC", + "name": "E.Leclerc, Violaines", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.798617, + 50.54055576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PO3TJBYM5LC", + "ref": "O3TJBYM5LC", + "name": "E.Leclerc, Violaines", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.798625, + 50.5405618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYLUVTVJOGE", + "ref": "YLUVTVJOGE", + "name": "E.Leclerc Violaines - Parking 2", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.798625, + 50.5405618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYLUVTVJOGE", + "ref": "YLUVTVJOGE", + "name": "E.Leclerc Violaines - Parking 2", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.798625, + 50.5405618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYLUVTVJOGE", + "ref": "YLUVTVJOGE", + "name": "E.Leclerc Violaines - Parking 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.798625, + 50.5405618 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYLUVTVJOGE", + "ref": "YLUVTVJOGE", + "name": "E.Leclerc Violaines - Parking 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.798617, + 50.54055576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PO3TJBYM5LC", + "ref": "O3TJBYM5LC", + "name": "E.Leclerc, Violaines", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNCNAZHKRLA", + "ref": "NCNAZHKRLA", + "name": "E.Leclerc, Vitry-sur-Seine", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.20907889, + 50.69865957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHKXDNK2J5W", + "ref": "HKXDNK2J5W", + "name": "E.Leclerc, Wattrelos", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNCNAZHKRLA", + "ref": "NCNAZHKRLA", + "name": "E.Leclerc, Vitry-sur-Seine", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNCNAZHKRLA", + "ref": "NCNAZHKRLA", + "name": "E.Leclerc, Vitry-sur-Seine", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNCNAZHKRLA", + "ref": "NCNAZHKRLA", + "name": "E.Leclerc, Vitry-sur-Seine", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNCNAZHKRLA", + "ref": "NCNAZHKRLA", + "name": "E.Leclerc, Vitry-sur-Seine", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNCNAZHKRLA", + "ref": "NCNAZHKRLA", + "name": "E.Leclerc, Vitry-sur-Seine", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNCNAZHKRLA", + "ref": "NCNAZHKRLA", + "name": "E.Leclerc, Vitry-sur-Seine", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNCNAZHKRLA", + "ref": "NCNAZHKRLA", + "name": "E.Leclerc, Vitry-sur-Seine", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNCNAZHKRLA", + "ref": "NCNAZHKRLA", + "name": "E.Leclerc, Vitry-sur-Seine", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNCNAZHKRLA", + "ref": "NCNAZHKRLA", + "name": "E.Leclerc, Vitry-sur-Seine", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16298, + 47.7958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCK6TYRZRSZ", + "ref": "CK6TYRZRSZ", + "name": "E.Leclerc, Zone Ciné-Loisirs Cernay", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16298, + 47.7958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCK6TYRZRSZ", + "ref": "CK6TYRZRSZ", + "name": "E.Leclerc, Zone Ciné-Loisirs Cernay", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9299, + 49.51772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV7UHB3KKC", + "ref": "HV7UHB3KKC", + "name": "Ribécourt-Dreslincourt, E.leclerc", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9459234, + 50.13571053 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTNM3OXB3T1", + "ref": "TNM3OXB3T1", + "name": "Saint-Riquier, Rue de L Hôpital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.51739226, + 47.68397952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYGBUJHGBQ", + "ref": "CYGBUJHGBQ", + "name": "E.leclerc, Lure", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.98099938, + 44.48613399 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVRAPXJYUMM", + "ref": "VRAPXJYUMM", + "name": "E.Leclerc, Montayral Brico", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.98099938, + 44.48613399 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVRAPXJYUMM", + "ref": "VRAPXJYUMM", + "name": "E.Leclerc, Montayral Brico", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28992534, + 45.25771148 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMNZELUZI7A", + "ref": "MNZELUZI7A", + "name": "st pal de mons, ld prunieres", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.697092, + 49.320022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRT1WHVS374", + "ref": "RT1WHVS374", + "name": "Longueil-Sainte-Marie, Avenue de Paris", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.697092, + 49.320022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRT1WHVS374", + "ref": "RT1WHVS374", + "name": "Longueil-Sainte-Marie, Avenue de Paris", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.697092, + 49.320022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRT1WHVS374", + "ref": "RT1WHVS374", + "name": "Longueil-Sainte-Marie, Avenue de Paris", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.697092, + 49.320022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRT1WHVS374", + "ref": "RT1WHVS374", + "name": "Longueil-Sainte-Marie, Avenue de Paris", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9459234, + 50.13571053 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTNM3OXB3T1", + "ref": "TNM3OXB3T1", + "name": "Saint-Riquier, Rue de L Hôpital", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.93129551, + 42.69295972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEJ0APYSPRG", + "ref": "EJ0APYSPRG", + "name": "Médipôle, ?Avenue Ambroise Croizat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9299, + 49.51772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV7UHB3KKC", + "ref": "HV7UHB3KKC", + "name": "Ribécourt-Dreslincourt, E.leclerc", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.93129551, + 42.69295972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEJ0APYSPRG", + "ref": "EJ0APYSPRG", + "name": "Médipôle, ?Avenue Ambroise Croizat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.93129551, + 42.69295972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEJ0APYSPRG", + "ref": "EJ0APYSPRG", + "name": "Médipôle, ?Avenue Ambroise Croizat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.93129551, + 42.69295972 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEJ0APYSPRG", + "ref": "EJ0APYSPRG", + "name": "Médipôle, ?Avenue Ambroise Croizat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.138694, + 48.70367 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIIF9G1T2E4ZZ", + "ref": "LLIIF9G1T2E4ZZ", + "name": "Maxeville, Rue Blaise Pascal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.138694, + 48.70367 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIIF9G1T2E4ZZ", + "ref": "LLIIF9G1T2E4ZZ", + "name": "Maxeville, Rue Blaise Pascal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.07815007, + 49.033704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAEFATBNYGL", + "ref": "AEFATBNYGL", + "name": "Cergy, ESSEC Business School", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.07815007, + 49.033704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAEFATBNYGL", + "ref": "AEFATBNYGL", + "name": "Cergy, ESSEC Business School", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.74828741, + 43.43612069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNSOAC8FZQK", + "ref": "NSOAC8FZQK", + "name": "Fréjus, ETS Kuentz", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23304351, + 49.11482753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWWFF9DHV9P", + "ref": "WWFF9DHV9P", + "name": "Clef Vallée d'Eure, rue de Louviers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.51739226, + 47.68397952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYGBUJHGBQ", + "ref": "CYGBUJHGBQ", + "name": "E.leclerc, Lure", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.51739226, + 47.68397952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYGBUJHGBQ", + "ref": "CYGBUJHGBQ", + "name": "E.leclerc, Lure", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.51739226, + 47.68397952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYGBUJHGBQ", + "ref": "CYGBUJHGBQ", + "name": "E.leclerc, Lure", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.51739226, + 47.68397952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYGBUJHGBQ", + "ref": "CYGBUJHGBQ", + "name": "E.leclerc, Lure", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9299, + 49.51772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV7UHB3KKC", + "ref": "HV7UHB3KKC", + "name": "Ribécourt-Dreslincourt, E.leclerc", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9299, + 49.51772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV7UHB3KKC", + "ref": "HV7UHB3KKC", + "name": "Ribécourt-Dreslincourt, E.leclerc", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9299, + 49.51772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV7UHB3KKC", + "ref": "HV7UHB3KKC", + "name": "Ribécourt-Dreslincourt, E.leclerc", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9299, + 49.51772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV7UHB3KKC", + "ref": "HV7UHB3KKC", + "name": "Ribécourt-Dreslincourt, E.leclerc", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9299, + 49.51772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV7UHB3KKC", + "ref": "HV7UHB3KKC", + "name": "Ribécourt-Dreslincourt, E.leclerc", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9299, + 49.51772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV7UHB3KKC", + "ref": "HV7UHB3KKC", + "name": "Ribécourt-Dreslincourt, E.leclerc", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9299, + 49.51772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV7UHB3KKC", + "ref": "HV7UHB3KKC", + "name": "Ribécourt-Dreslincourt, E.leclerc", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9299, + 49.51772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV7UHB3KKC", + "ref": "HV7UHB3KKC", + "name": "Ribécourt-Dreslincourt, E.leclerc", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9299, + 49.51772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV7UHB3KKC", + "ref": "HV7UHB3KKC", + "name": "Ribécourt-Dreslincourt, E.leclerc", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9299, + 49.51772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV7UHB3KKC", + "ref": "HV7UHB3KKC", + "name": "Ribécourt-Dreslincourt, E.leclerc", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9299, + 49.51772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV7UHB3KKC", + "ref": "HV7UHB3KKC", + "name": "Ribécourt-Dreslincourt, E.leclerc", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9299, + 49.51772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV7UHB3KKC", + "ref": "HV7UHB3KKC", + "name": "Ribécourt-Dreslincourt, E.leclerc", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9299, + 49.51772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV7UHB3KKC", + "ref": "HV7UHB3KKC", + "name": "Ribécourt-Dreslincourt, E.leclerc", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9299, + 49.51772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHV7UHB3KKC", + "ref": "HV7UHB3KKC", + "name": "Ribécourt-Dreslincourt, E.leclerc", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32445998, + 47.61544993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMA9BCHTCYB", + "ref": "MA9BCHTCYB", + "name": "E.leclerc, Blois", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32445998, + 47.61544993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMA9BCHTCYB", + "ref": "MA9BCHTCYB", + "name": "E.leclerc, Blois", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32445998, + 47.61544993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMA9BCHTCYB", + "ref": "MA9BCHTCYB", + "name": "E.leclerc, Blois", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32445998, + 47.61544993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMA9BCHTCYB", + "ref": "MA9BCHTCYB", + "name": "E.leclerc, Blois", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.51739226, + 47.68397952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYGBUJHGBQ", + "ref": "CYGBUJHGBQ", + "name": "E.leclerc, Lure", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74550877, + 50.4868159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJTNVJKIPME", + "ref": "JTNVJKIPME", + "name": "E.Leclerc, Vermelles", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74550877, + 50.4868159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJTNVJKIPME", + "ref": "JTNVJKIPME", + "name": "E.Leclerc, Vermelles", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10975616, + 49.36198763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUNE1XEQJFU", + "ref": "UNE1XEQJFU", + "name": "E. Leclerc, Thionville", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74550877, + 50.4868159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJTNVJKIPME", + "ref": "JTNVJKIPME", + "name": "E.Leclerc, Vermelles", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10975616, + 49.36198763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUNE1XEQJFU", + "ref": "UNE1XEQJFU", + "name": "E. Leclerc, Thionville", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10975616, + 49.36198763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUNE1XEQJFU", + "ref": "UNE1XEQJFU", + "name": "E. Leclerc, Thionville", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10975616, + 49.36198763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUNE1XEQJFU", + "ref": "UNE1XEQJFU", + "name": "E. Leclerc, Thionville", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10975616, + 49.36198763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUNE1XEQJFU", + "ref": "UNE1XEQJFU", + "name": "E. Leclerc, Thionville", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10975616, + 49.36198763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUNE1XEQJFU", + "ref": "UNE1XEQJFU", + "name": "E. Leclerc, Thionville", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.86960437, + 49.48253449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYLDCBBAVTS", + "ref": "YLDCBBAVTS", + "name": "E.Leclerc, Thourotte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.86960437, + 49.48253449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYLDCBBAVTS", + "ref": "YLDCBBAVTS", + "name": "E.Leclerc, Thourotte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59145925, + 49.63226055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGABMQWRAIZ", + "ref": "GABMQWRAIZ", + "name": "E.Leclerc, Tourlaville", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3347204, + 47.14713038 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXGXZ9LPBQY", + "ref": "XGXZ9LPBQY", + "name": "E.Leclerc Valdahon", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29830986, + 45.54410263 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG3CWYWKLKX", + "ref": "G3CWYWKLKX", + "name": "E.Leclerc, Ussel Hyper", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29830986, + 45.54410263 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG3CWYWKLKX", + "ref": "G3CWYWKLKX", + "name": "E.Leclerc, Ussel Hyper", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29830986, + 45.54410263 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG3CWYWKLKX", + "ref": "G3CWYWKLKX", + "name": "E.Leclerc, Ussel Hyper", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29830986, + 45.54410263 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG3CWYWKLKX", + "ref": "G3CWYWKLKX", + "name": "E.Leclerc, Ussel Hyper", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3347204, + 47.14713038 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXGXZ9LPBQY", + "ref": "XGXZ9LPBQY", + "name": "E.Leclerc Valdahon", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3347204, + 47.14713038 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXGXZ9LPBQY", + "ref": "XGXZ9LPBQY", + "name": "E.Leclerc Valdahon", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3347204, + 47.14713038 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXGXZ9LPBQY", + "ref": "XGXZ9LPBQY", + "name": "E.Leclerc Valdahon", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3347204, + 47.14713038 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXGXZ9LPBQY", + "ref": "XGXZ9LPBQY", + "name": "E.Leclerc Valdahon", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3347204, + 47.14713038 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXGXZ9LPBQY", + "ref": "XGXZ9LPBQY", + "name": "E.Leclerc Valdahon", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3347204, + 47.14713038 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXGXZ9LPBQY", + "ref": "XGXZ9LPBQY", + "name": "E.Leclerc Valdahon", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7634402, + 45.19078196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PM4TBD6CVLX", + "ref": "M4TBD6CVLX", + "name": "E.Leclerc, Trélissac Parking Magasin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3347204, + 47.14713038 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXGXZ9LPBQY", + "ref": "XGXZ9LPBQY", + "name": "E.Leclerc Valdahon", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.793664, + 47.66908 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUX2IS8EDAX", + "ref": "UX2IS8EDAX", + "name": "E.Leclerc, Vannes", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.793664, + 47.66908 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUX2IS8EDAX", + "ref": "UX2IS8EDAX", + "name": "E.Leclerc, Vannes", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.793664, + 47.66908 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUX2IS8EDAX", + "ref": "UX2IS8EDAX", + "name": "E.Leclerc, Vannes", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.793664, + 47.66908 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUX2IS8EDAX", + "ref": "UX2IS8EDAX", + "name": "E.Leclerc, Vannes", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.793664, + 47.66908 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUX2IS8EDAX", + "ref": "UX2IS8EDAX", + "name": "E.Leclerc, Vannes", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.793664, + 47.66908 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUX2IS8EDAX", + "ref": "UX2IS8EDAX", + "name": "E.Leclerc, Vannes", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.793664, + 47.66908 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUX2IS8EDAX", + "ref": "UX2IS8EDAX", + "name": "E.Leclerc, Vannes", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.793664, + 47.66908 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUX2IS8EDAX", + "ref": "UX2IS8EDAX", + "name": "E.Leclerc, Vannes", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29830986, + 45.54410263 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG3CWYWKLKX", + "ref": "G3CWYWKLKX", + "name": "E.Leclerc, Ussel Hyper", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29830986, + 45.54410263 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG3CWYWKLKX", + "ref": "G3CWYWKLKX", + "name": "E.Leclerc, Ussel Hyper", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3010889, + 45.53600566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBBNL2YXVNI", + "ref": "BBNL2YXVNI", + "name": "E.Leclerc, Ussel Brico", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3010889, + 45.53600566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBBNL2YXVNI", + "ref": "BBNL2YXVNI", + "name": "E.Leclerc, Ussel Brico", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76363868, + 45.19216184 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PT9THS0ZXQQ", + "ref": "T9THS0ZXQQ", + "name": "E.Leclerc, Trélissac Parking Couvert à étages", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76363868, + 45.19216184 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PT9THS0ZXQQ", + "ref": "T9THS0ZXQQ", + "name": "E.Leclerc, Trélissac Parking Couvert à étages", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76363868, + 45.19216184 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PT9THS0ZXQQ", + "ref": "T9THS0ZXQQ", + "name": "E.Leclerc, Trélissac Parking Couvert à étages", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7634402, + 45.19078196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PM4TBD6CVLX", + "ref": "M4TBD6CVLX", + "name": "E.Leclerc, Trélissac Parking Magasin", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76363868, + 45.19216184 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PT9THS0ZXQQ", + "ref": "T9THS0ZXQQ", + "name": "E.Leclerc, Trélissac Parking Couvert à étages", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7634402, + 45.19078196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PM4TBD6CVLX", + "ref": "M4TBD6CVLX", + "name": "E.Leclerc, Trélissac Parking Magasin", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7634402, + 45.19078196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PM4TBD6CVLX", + "ref": "M4TBD6CVLX", + "name": "E.Leclerc, Trélissac Parking Magasin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7634402, + 45.19078196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PM4TBD6CVLX", + "ref": "M4TBD6CVLX", + "name": "E.Leclerc, Trélissac Parking Magasin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7634402, + 45.19078196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PM4TBD6CVLX", + "ref": "M4TBD6CVLX", + "name": "E.Leclerc, Trélissac Parking Magasin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76363868, + 45.19216184 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PT9THS0ZXQQ", + "ref": "T9THS0ZXQQ", + "name": "E.Leclerc, Trélissac Parking Couvert à étages", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76363868, + 45.19216184 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PT9THS0ZXQQ", + "ref": "T9THS0ZXQQ", + "name": "E.Leclerc, Trélissac Parking Couvert à étages", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67798147, + 43.37472105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRE6ZKCKSUU", + "ref": "RE6ZKCKSUU", + "name": "E. Leclerc, Urrugne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67798147, + 43.37472105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRE6ZKCKSUU", + "ref": "RE6ZKCKSUU", + "name": "E. Leclerc, Urrugne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67798147, + 43.37472105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRE6ZKCKSUU", + "ref": "RE6ZKCKSUU", + "name": "E. Leclerc, Urrugne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67798147, + 43.37472105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRE6ZKCKSUU", + "ref": "RE6ZKCKSUU", + "name": "E. Leclerc, Urrugne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67798147, + 43.37472105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRE6ZKCKSUU", + "ref": "RE6ZKCKSUU", + "name": "E. Leclerc, Urrugne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67798147, + 43.37472105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRE6ZKCKSUU", + "ref": "RE6ZKCKSUU", + "name": "E. Leclerc, Urrugne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67798147, + 43.37472105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRE6ZKCKSUU", + "ref": "RE6ZKCKSUU", + "name": "E. Leclerc, Urrugne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67798147, + 43.37472105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRE6ZKCKSUU", + "ref": "RE6ZKCKSUU", + "name": "E. Leclerc, Urrugne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94363, + 49.7018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PMPGGBH", + "ref": "MPGGBH", + "name": "Ercheu, Rue Soeur Saint-Vincent", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30029, + 49.8926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSZJUJC", + "ref": "SZJUJC", + "name": "Amiens, Parking 3 Cailloux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.48002, + 47.0473 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PGILLEYCRET", + "ref": "gilleycret", + "name": "Gilley, Crêt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.073609, + 47.423647 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PYVHJEWG2DD", + "ref": "YVHJEWG2DD", + "name": "Rioz, Rue Clair Soleil", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.174664, + 47.62926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PEYOQWAPMBZ", + "ref": "EYOQWAPMBZ", + "name": "Frotey Les Vesoul, Eurotel", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.174664, + 47.62926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PEYOQWAPMBZ", + "ref": "EYOQWAPMBZ", + "name": "Frotey Les Vesoul, Eurotel", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.34236, + 46.9226 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PDOUBSHYPER", + "ref": "doubshyper", + "name": "Doubs, Hypermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.377671, + 47.392855 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PCDMZFUQMXL", + "ref": "CDMZFUQMXL", + "name": "Autechaux - ZA EUROPOLYS", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.377671, + 47.392855 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PCDMZFUQMXL", + "ref": "CDMZFUQMXL", + "name": "Autechaux - ZA EUROPOLYS", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.377671, + 47.392855 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PCDMZFUQMXL", + "ref": "CDMZFUQMXL", + "name": "Autechaux - ZA EUROPOLYS", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.60476, + 47.054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PMORTEAUCOLL", + "ref": "morteaucoll", + "name": "Morteau, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.34571, + 46.9019 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PPONTARCINE", + "ref": "pontarcine", + "name": "Pontarlier, Cinéma", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.377671, + 47.392855 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PCDMZFUQMXL", + "ref": "CDMZFUQMXL", + "name": "Autechaux - ZA EUROPOLYS", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.073609, + 47.423647 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PYVHJEWG2DD", + "ref": "YVHJEWG2DD", + "name": "Rioz, Rue Clair Soleil", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.33487, + 46.8551 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25POYEPALLETSDF", + "ref": "oyepalletsdf", + "name": "Oye-et-Pallet, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06973, + 47.0391 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PAEDHEK", + "ref": "AEDHEK", + "name": "Amancey, Grand Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.33487, + 46.8551 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25POYEPALLETSDF", + "ref": "oyepalletsdf", + "name": "Oye-et-Pallet, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65814, + 47.2621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PYZWNLR", + "ref": "YZWNLR", + "name": "Belleherbe, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.34571, + 46.9019 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PPONTARCINE", + "ref": "pontarcine", + "name": "Pontarlier, Cinéma", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3396, + 47.0948 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PUBXXUV", + "ref": "UBXXUV", + "name": "Nods, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.48002, + 47.0473 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PGILLEYCRET", + "ref": "gilleycret", + "name": "Gilley, Crêt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65814, + 47.2621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PYZWNLR", + "ref": "YZWNLR", + "name": "Belleherbe, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3396, + 47.0948 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PUBXXUV", + "ref": "UBXXUV", + "name": "Nods, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.073609, + 47.423647 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PYVHJEWG2DD", + "ref": "YVHJEWG2DD", + "name": "Rioz, Rue Clair Soleil", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.174664, + 47.62926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PEYOQWAPMBZ", + "ref": "EYOQWAPMBZ", + "name": "Frotey Les Vesoul, Eurotel", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.60546, + 47.0585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PMORTEAUGARE", + "ref": "Morteaugare", + "name": "Morteau, Collège", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.895957, + 47.709747 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PMK1AHL8ZA7", + "ref": "MK1AHL8ZA7", + "name": "Combeaufontaine, Place de la gare", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16127, + 47.6224 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVESOULMEILLIER", + "ref": "Vesoulmeillier", + "name": "Vesoul, Meillier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.25794, + 47.4665 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVNXAGJ", + "ref": "VNXAGJ", + "name": "Montbozon, Com-com", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.76654, + 47.5766 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PHERICOURTBERE", + "ref": "hericourtbere", + "name": "Héricourt, Bérégovoy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.588925, + 47.650833 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PRQEQVHLYFO", + "ref": "RQEQVHLYFO", + "name": "Lyoffans, Cimetière", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.78137498, + 47.59207727 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PDORRYWA2NF", + "ref": "DORRYWA2NF", + "name": "Echenans, ZA Guinottes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.78137498, + 47.59207727 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PDORRYWA2NF", + "ref": "DORRYWA2NF", + "name": "Echenans, ZA Guinottes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.588925, + 47.650833 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PRQEQVHLYFO", + "ref": "RQEQVHLYFO", + "name": "Lyoffans, Cimetière", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.588925, + 47.650833 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PRQEQVHLYFO", + "ref": "RQEQVHLYFO", + "name": "Lyoffans, Cimetière", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.895957, + 47.709747 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PMK1AHL8ZA7", + "ref": "MK1AHL8ZA7", + "name": "Combeaufontaine, Place de la gare", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.895957, + 47.709747 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PMK1AHL8ZA7", + "ref": "MK1AHL8ZA7", + "name": "Combeaufontaine, Place de la gare", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.143673, + 47.64323 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PQI8FOZJERH", + "ref": "QI8FOZJERH", + "name": "Pusey, Foyer des jeunes travailleurs", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.78137498, + 47.59207727 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PDORRYWA2NF", + "ref": "DORRYWA2NF", + "name": "Echenans, ZA Guinottes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.993921, + 47.917131 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PSL7L7X7UFK", + "ref": "SL7L7X7UFK", + "name": "Corre, Place Général de Gaulle", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.365601, + 47.774631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PCMIXYEGR9U", + "ref": "CMIXYEGR9U", + "name": "Chapelle Les Luxeuil, Station service", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.993921, + 47.917131 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PSL7L7X7UFK", + "ref": "SL7L7X7UFK", + "name": "Corre, Place Général de Gaulle", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.365601, + 47.774631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PCMIXYEGR9U", + "ref": "CMIXYEGR9U", + "name": "Chapelle Les Luxeuil, Station service", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.365601, + 47.774631 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PCMIXYEGR9U", + "ref": "CMIXYEGR9U", + "name": "Chapelle Les Luxeuil, Station service", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.143673, + 47.64323 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PQI8FOZJERH", + "ref": "QI8FOZJERH", + "name": "Pusey, Foyer des jeunes travailleurs", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.143673, + 47.64323 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PQI8FOZJERH", + "ref": "QI8FOZJERH", + "name": "Pusey, Foyer des jeunes travailleurs", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.993921, + 47.917131 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PSL7L7X7UFK", + "ref": "SL7L7X7UFK", + "name": "Corre, Place Général de Gaulle", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1953, + 46.7144 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PYLQMYY", + "ref": "YLQMYY", + "name": "Mouthe, Supermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1953, + 46.7144 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PYLQMYY", + "ref": "YLQMYY", + "name": "Mouthe, Supermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62812, + 50.2155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80P58AEC90FE0C22", + "ref": "58aec90fe0c22", + "name": "Le Crotoy, Jules Verne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.813725, + 47.318939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PLLIOK3JAN1K99S", + "ref": "LLIOK3JAN1K99S", + "name": "Saint Hippolyte, Esplanade des fêtes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.53992, + 47.2143 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PPIERREFONMAIR", + "ref": "pierrefonmair", + "name": "Pierrefontaine, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.30319, + 46.8135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PUULUVH", + "ref": "UULUVH", + "name": "Saint-Point-Lac, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84116, + 47.4815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PAUDINCOURPOS", + "ref": "audincourpos", + "name": "Audincourt, Poste", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.813725, + 47.318939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PLLIOK3JAN1K99S", + "ref": "LLIOK3JAN1K99S", + "name": "Saint Hippolyte, Esplanade des fêtes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84116, + 47.4815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PAUDINCOURPOS", + "ref": "audincourpos", + "name": "Audincourt, Poste", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84116, + 47.4815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PAUDINCOURPOS", + "ref": "audincourpos", + "name": "Audincourt, Poste", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.813725, + 47.318939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PLLIOK3JAN1K99S", + "ref": "LLIOK3JAN1K99S", + "name": "Saint Hippolyte, Esplanade des fêtes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.580701, + 47.44912 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PLLIO765R6CG78K", + "ref": "LLIO765R6CG78K", + "name": "L'Isle sur le Doubs, Rue Aristide Briand", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.580701, + 47.44912 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PLLIO765R6CG78K", + "ref": "LLIO765R6CG78K", + "name": "L'Isle sur le Doubs, Rue Aristide Briand", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.580701, + 47.44912 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PLLIO765R6CG78K", + "ref": "LLIO765R6CG78K", + "name": "L'Isle sur le Doubs, Rue Aristide Briand", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78209, + 47.0399 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PARCETSENANS", + "ref": "arcetsenans", + "name": "Arc-et-Senans, Rans", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.15813, + 46.8575 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PFRASNEGARE", + "ref": "Frasnegare", + "name": "Frasne, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.38398, + 46.9452 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PKHXZGS", + "ref": "KHXZGS", + "name": "Arçon, Pont de l'Oie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.38398, + 46.9452 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PKHXZGS", + "ref": "KHXZGS", + "name": "Arçon, Pont de l'Oie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.76868, + 47.3894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PLQHELL", + "ref": "LQHELL", + "name": "Pont-de-Roide, Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35128, + 46.9011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PPONTARROC", + "ref": "pontarroc", + "name": "Pontarlier, Rocade Pompidou", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.31933, + 47.0162 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PBKYNQA", + "ref": "BKYNQA", + "name": "Saint-Gorgon-Main, Fruitière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.31933, + 47.0162 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PBKYNQA", + "ref": "BKYNQA", + "name": "Saint-Gorgon-Main, Fruitière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06973, + 47.0391 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PAEDHEK", + "ref": "AEDHEK", + "name": "Amancey, Grand Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14793, + 47.1071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PNNYTYC", + "ref": "NNYTYC", + "name": "Ornans, Parking voie de contournement", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78209, + 47.0399 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PARCETSENANS", + "ref": "arcetsenans", + "name": "Arc-et-Senans, Rans", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.53992, + 47.2143 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PPIERREFONMAIR", + "ref": "pierrefonmair", + "name": "Pierrefontaine, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58382, + 47.2943 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PYJNMSJ", + "ref": "YJNMSJ", + "name": "Sancey, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.272181, + 47.147744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PGQUH2Z082H", + "ref": "GQUH2Z082H", + "name": "Etalans, Grande Rue", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58382, + 47.2943 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PYJNMSJ", + "ref": "YJNMSJ", + "name": "Sancey, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.272181, + 47.147744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PGQUH2Z082H", + "ref": "GQUH2Z082H", + "name": "Etalans, Grande Rue", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.67085, + 47.0591 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PVILLERBARTHO", + "ref": "villerbartho", + "name": "Villers-le-Lac, Place Droz Bartholet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81312, + 47.448 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PMANDEURESUPER", + "ref": "mandeuresuper", + "name": "Mandeure, supermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.60476, + 47.054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PMORTEAUCOLL", + "ref": "morteaucoll", + "name": "Morteau, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81312, + 47.448 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PMANDEURESUPER", + "ref": "mandeuresuper", + "name": "Mandeure, supermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.28735, + 47.0477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PRGGHFS", + "ref": "RGGHFS", + "name": "Hautepierre-le-Châtelet, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.377671, + 47.392855 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PCDMZFUQMXL", + "ref": "CDMZFUQMXL", + "name": "Autechaux - ZA EUROPOLYS", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35128, + 46.9011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PPONTARROC", + "ref": "pontarroc", + "name": "Pontarlier, Rocade Pompidou", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.34236, + 46.9226 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PDOUBSHYPER", + "ref": "doubshyper", + "name": "Doubs, Hypermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96517, + 47.2132 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PXFPUWS", + "ref": "XFPUWS", + "name": "Besançon, Siège SYDED", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.28735, + 47.0477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PRGGHFS", + "ref": "RGGHFS", + "name": "Hautepierre-le-Châtelet, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.76868, + 47.3894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PLQHELL", + "ref": "LQHELL", + "name": "Pont-de-Roide, Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35128, + 46.9011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PPONTARROC", + "ref": "pontarroc", + "name": "Pontarlier, Rocade Pompidou", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.60546, + 47.0585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PMORTEAUGARE", + "ref": "Morteaugare", + "name": "Morteau, Collège", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.272181, + 47.147744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PGQUH2Z082H", + "ref": "GQUH2Z082H", + "name": "Etalans, Grande Rue", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14584, + 47.1068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PVVCNFQ", + "ref": "VVCNFQ", + "name": "Ornans, Place Gustave Courbet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.39595, + 47.1819 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PVERCELVILLE", + "ref": "vercelville", + "name": "Vercel-Villedieu, Carrefour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.39595, + 47.1819 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PVERCELVILLE", + "ref": "vercelville", + "name": "Vercel-Villedieu, Carrefour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84116, + 47.4815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PAUDINCOURPOS", + "ref": "audincourpos", + "name": "Audincourt, Poste", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1288, + 47.6294 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PPATTYH", + "ref": "PATTYH", + "name": "Vaivre et Montoille, Parking du lac 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.49285865, + 47.68422427 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PPYZKRX", + "ref": "PYZKRX", + "name": "Lure, De Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.15301, + 47.6215 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVESOULFAURE", + "ref": "vesoulfaure", + "name": "Vesoul, Edgar Fauré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88738, + 47.7118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PCOMBEAU15JUIN", + "ref": "Combeau15juin", + "name": "Combeaufontaine, 15 Juin 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.56167, + 47.8413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PFAUCOGNEYMER", + "ref": "Faucogneymer", + "name": "Faucogney-et-la-Mer, Place du Champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13954, + 47.63 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVESOULHABERGES", + "ref": "Vesoulhaberges", + "name": "Vesoul, Haberges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.07924, + 47.4261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PTPLBGP", + "ref": "TPLBGP", + "name": "Rioz, Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63035209, + 47.69877138 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PROMCHAMP14UIL", + "ref": "romchamp14uil", + "name": "Ronchamp, 14 Juillet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.25794, + 47.4665 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVNXAGJ", + "ref": "VNXAGJ", + "name": "Montbozon, Com-com", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63035209, + 47.69877138 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PROMCHAMP14UIL", + "ref": "romchamp14uil", + "name": "Ronchamp, 14 Juillet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.37407, + 47.8193 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PWTQUNF", + "ref": "WTQUNF", + "name": "Luxeuil-les-Bains, Casino", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.56167, + 47.8413 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PFAUCOGNEYMER", + "ref": "Faucogneymer", + "name": "Faucogney-et-la-Mer, Place du Champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10379, + 47.7652 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PFAVERNEYDRUAIS", + "ref": "Faverneydruais", + "name": "Faverney, Druais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10379, + 47.7652 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PFAVERNEYDRUAIS", + "ref": "Faverneydruais", + "name": "Faverney, Druais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.67749, + 47.5569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PDAMPIERMAIRIE", + "ref": "dampiermairie", + "name": "Dampierre-sur-Salon, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27306, + 47.885 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PSTLOUPMAIRIE", + "ref": "stloupmairie", + "name": "Saint-Loup-sur-Semouse, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.57684, + 47.753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PMELISEYGARE", + "ref": "meliseygare", + "name": "Mélisey, Route de Lure", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.57684, + 47.753 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PMELISEYGARE", + "ref": "meliseygare", + "name": "Mélisey, Route de Lure", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13818, + 47.601 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVAIVRETMONTO", + "ref": "vaivretmonto", + "name": "Echenoz-la-Méline, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13818, + 47.601 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVAIVRETMONTO", + "ref": "vaivretmonto", + "name": "Echenoz-la-Méline, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73722, + 47.7555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PPLANCHERMARCEL", + "ref": "Planchermarcel", + "name": "Plancher-les-Mines, Marcel Gênez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.159957, + 47.62037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PK5HNSQ9L6I", + "ref": "K5HNSQ9L6I", + "name": "Vesoul, Place Renet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.159957, + 47.62037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PK5HNSQ9L6I", + "ref": "K5HNSQ9L6I", + "name": "Vesoul, Place Renet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.15962, + 47.6208 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVESOULGERLINGEN", + "ref": "VesoulGerlingen", + "name": "Vesoul, Renet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9035, + 47.8267 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PJUSSEYFOIRE", + "ref": "jusseyfoire", + "name": "Jussey, Champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9035, + 47.8267 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PJUSSEYFOIRE", + "ref": "jusseyfoire", + "name": "Jussey, Champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14939, + 47.6185 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVESOUL2", + "ref": "vesoul2", + "name": "Vesoul, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11513399, + 45.77976191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTIVE2CNYCX", + "ref": "TIVE2CNYCX", + "name": "Intermarché Anatole", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5944044, + 43.55145892 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTPWWYVYVMM", + "ref": "TPWWYVYVMM", + "name": "Sainte Foy d'Aigrefeuille, Avenue Roland Garros", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5944044, + 43.55145892 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTPWWYVYVMM", + "ref": "TPWWYVYVMM", + "name": "Sainte Foy d'Aigrefeuille, Avenue Roland Garros", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71262906, + 43.59593996 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF9HUXNS8SF", + "ref": "F9HUXNS8SF", + "name": "Bourg-Saint-Bernard, Lieu dit le Pestre, Fournié Grospaud Réseau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5944044, + 43.55145892 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTPWWYVYVMM", + "ref": "TPWWYVYVMM", + "name": "Sainte Foy d'Aigrefeuille, Avenue Roland Garros", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5944044, + 43.55145892 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTPWWYVYVMM", + "ref": "TPWWYVYVMM", + "name": "Sainte Foy d'Aigrefeuille, Avenue Roland Garros", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71262906, + 43.59593996 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF9HUXNS8SF", + "ref": "F9HUXNS8SF", + "name": "Bourg-Saint-Bernard, Lieu dit le Pestre, Fournié Grospaud Réseau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.00364, + 48.1824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXFMCZX", + "ref": "XFMCZX", + "name": "Fraize, Rue Général François Ingold", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.00364, + 48.1824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXFMCZX", + "ref": "XFMCZX", + "name": "Fraize, Rue Général François Ingold", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22667, + 49.092118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXPV9T9CG13", + "ref": "XPV9T9CG13", + "name": "Vaudemange, Francart", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.51691828, + 45.84284844 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWPBREMU4YX", + "ref": "WPBREMU4YX", + "name": "Intermarché Thiers", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56555, + 47.2795 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PPESMEMARCHE", + "ref": "pesmemarche", + "name": "Pesmes, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11513399, + 45.77976191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTIVE2CNYCX", + "ref": "TIVE2CNYCX", + "name": "Intermarché Anatole", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.20113639, + 46.07864515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKG7R2ZWEFC", + "ref": "KG7R2ZWEFC", + "name": "Intermarché Gannat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.20113639, + 46.07864515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKG7R2ZWEFC", + "ref": "KG7R2ZWEFC", + "name": "Intermarché Gannat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09598, + 47.9226 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVRUSJX", + "ref": "VRUSJX", + "name": "Vauvillers, Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.67749, + 47.5569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PDAMPIERMAIRIE", + "ref": "dampiermairie", + "name": "Dampierre-sur-Salon, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73722, + 47.7555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PPLANCHERMARCEL", + "ref": "Planchermarcel", + "name": "Plancher-les-Mines, Marcel Gênez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.38046, + 47.8128 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PLUXEUILMAI", + "ref": "Luxeuilmai", + "name": "Luxeuil-les-Bains, 8 Mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.38046, + 47.8128 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PLUXEUILMAI", + "ref": "Luxeuilmai", + "name": "Luxeuil-les-Bains, 8 Mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56555, + 47.2795 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PPESMEMARCHE", + "ref": "pesmemarche", + "name": "Pesmes, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.76654, + 47.5766 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PHERICOURTBERE", + "ref": "hericourtbere", + "name": "Héricourt, Bérégovoy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.75739, + 47.5739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PHERICOURTEUROP", + "ref": "Hericourteurop", + "name": "Héricourt, Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.04208, + 47.6837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PPORTSURSAONE", + "ref": "PortsurSaone", + "name": "Port sur Saone, Place du 8 mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59027, + 47.4546 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PSKHFUU", + "ref": "SKHFUU", + "name": "Arc-lès-Gray, Couyba", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.76207, + 47.5763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PHERICOURTBRO", + "ref": "Hericourtbro", + "name": "Héricourt, Brossolette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59214, + 47.4339 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PGRAY", + "ref": "gray", + "name": "Gray, Maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14253, + 47.6406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVESOUL1", + "ref": "vesoul1", + "name": "Vesoul, Intermarché Vaugine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14253, + 47.6406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVESOUL1", + "ref": "vesoul1", + "name": "Vesoul, Intermarché Vaugine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.81502, + 47.4071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PGYMAIRIE", + "ref": "Gymairie", + "name": "Gy, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.58802, + 47.4488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PGRAYMAVIA", + "ref": "Graymavia", + "name": "Gray, Mavia", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.75739, + 47.5739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PHERICOURTEUROP", + "ref": "Hericourteurop", + "name": "Héricourt, Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16127, + 47.6224 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVESOULMEILLIER", + "ref": "Vesoulmeillier", + "name": "Vesoul, Meillier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59027, + 47.4546 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PSKHFUU", + "ref": "SKHFUU", + "name": "Arc-lès-Gray, Couyba", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.58802, + 47.4488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PGRAYMAVIA", + "ref": "Graymavia", + "name": "Gray, Mavia", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27956, + 47.6956 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PSAULXGDSPUITS", + "ref": "saulxgdspuits", + "name": "Saulx, Grands Puits", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.37407, + 47.8193 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PWTQUNF", + "ref": "WTQUNF", + "name": "Luxeuil-les-Bains, Casino", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1288, + 47.6294 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PPATTYH", + "ref": "PATTYH", + "name": "Vaivre et Montoille, Parking du lac 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.859, + 47.5493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PFRESNECARREFOUR", + "ref": "Fresnecarrefour", + "name": "Fresne-Saint-Mamès, Parking Carrefour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.859, + 47.5493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PFRESNECARREFOUR", + "ref": "Fresnecarrefour", + "name": "Fresne-Saint-Mamès, Parking Carrefour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.04208, + 47.6837 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PPORTSURSAONE", + "ref": "PortsurSaone", + "name": "Port sur Saone, Place du 8 mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.07924, + 47.4261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PTPLBGP", + "ref": "TPLBGP", + "name": "Rioz, Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.68407, + 47.7044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PCHAMPAGNEYREN", + "ref": "Champagneyren", + "name": "Champagney, Frères Renaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.68407, + 47.7044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PCHAMPAGNEYREN", + "ref": "Champagneyren", + "name": "Champagney, Frères Renaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88738, + 47.7118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PCOMBEAU15JUIN", + "ref": "Combeau15juin", + "name": "Combeaufontaine, 15 Juin 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.76207, + 47.5763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PHERICOURTBRO", + "ref": "Hericourtbro", + "name": "Héricourt, Brossolette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14939, + 47.6185 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVESOUL2", + "ref": "vesoul2", + "name": "Vesoul, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.18114, + 47.6209 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PFROTEYLESVESL", + "ref": "FroteyLesVesl", + "name": "Frotey Les Vesoul, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.49285865, + 47.68422427 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PPYZKRX", + "ref": "PYZKRX", + "name": "Lure, De Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42996, + 47.5491 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVILLERSEXEL", + "ref": "villersexel", + "name": "Villersexel, Parking Loup", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27956, + 47.6956 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PSAULXGDSPUITS", + "ref": "saulxgdspuits", + "name": "Saulx, Grands Puits", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09598, + 47.9226 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVRUSJX", + "ref": "VRUSJX", + "name": "Vauvillers, Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27306, + 47.885 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PSTLOUPMAIRIE", + "ref": "stloupmairie", + "name": "Saint-Loup-sur-Semouse, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.77339, + 47.2915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PMARNAYCHAUFF", + "ref": "marnaychauff", + "name": "Marnay, Chaufferie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.77339, + 47.2915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PMARNAYCHAUFF", + "ref": "marnaychauff", + "name": "Marnay, Chaufferie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.51136, + 47.6723 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PQFLQSK", + "ref": "QFLQSK", + "name": "Lure, Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42996, + 47.5491 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVILLERSEXEL", + "ref": "villersexel", + "name": "Villersexel, Parking Loup", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.51136, + 47.6723 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PQFLQSK", + "ref": "QFLQSK", + "name": "Lure, Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59214, + 47.4339 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PGRAY", + "ref": "gray", + "name": "Gray, Maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.51354, + 47.6169 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PNWMJTK", + "ref": "NWMJTK", + "name": "Champlitte, Musée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.49847161, + 47.68532935 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PLUREINTER", + "ref": "lureinter", + "name": "Lure, Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.49847161, + 47.68532935 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PLUREINTER", + "ref": "lureinter", + "name": "Lure, Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.51354, + 47.6169 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PNWMJTK", + "ref": "NWMJTK", + "name": "Champlitte, Musée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.15962, + 47.6208 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVESOULGERLINGEN", + "ref": "VesoulGerlingen", + "name": "Vesoul, Renet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.18114, + 47.6209 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PFROTEYLESVESL", + "ref": "FroteyLesVesl", + "name": "Frotey Les Vesoul, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13954, + 47.63 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVESOULHABERGES", + "ref": "Vesoulhaberges", + "name": "Vesoul, Haberges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.15301, + 47.6215 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PVESOULFAURE", + "ref": "vesoulfaure", + "name": "Vesoul, Edgar Fauré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.81502, + 47.4071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS70PGYMAIRIE", + "ref": "Gymairie", + "name": "Gy, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14584, + 47.1068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PVVCNFQ", + "ref": "VVCNFQ", + "name": "Ornans, Place Gustave Courbet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8824, + 47.1039 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PXRTQBE", + "ref": "XRTQBE", + "name": "Quingey, Parking Rue des Fossés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14793, + 47.1071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PNNYTYC", + "ref": "NNYTYC", + "name": "Ornans, Parking voie de contournement", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POAJVPG4P9J", + "ref": "OAJVPG4P9J", + "name": "Gennevilliers, Geodis", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.45052567, + 48.95732671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVQODSEY6PD", + "ref": "VQODSEY6PD", + "name": "Bonneuil-en-France, Geodis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.45052567, + 48.95732671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVQODSEY6PD", + "ref": "VQODSEY6PD", + "name": "Bonneuil-en-France, Geodis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POAJVPG4P9J", + "ref": "OAJVPG4P9J", + "name": "Gennevilliers, Geodis", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POAJVPG4P9J", + "ref": "OAJVPG4P9J", + "name": "Gennevilliers, Geodis", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POAJVPG4P9J", + "ref": "OAJVPG4P9J", + "name": "Gennevilliers, Geodis", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POAJVPG4P9J", + "ref": "OAJVPG4P9J", + "name": "Gennevilliers, Geodis", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POAJVPG4P9J", + "ref": "OAJVPG4P9J", + "name": "Gennevilliers, Geodis", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POAJVPG4P9J", + "ref": "OAJVPG4P9J", + "name": "Gennevilliers, Geodis", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POAJVPG4P9J", + "ref": "OAJVPG4P9J", + "name": "Gennevilliers, Geodis", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POAJVPG4P9J", + "ref": "OAJVPG4P9J", + "name": "Gennevilliers, Geodis", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.45052567, + 48.95732671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVQODSEY6PD", + "ref": "VQODSEY6PD", + "name": "Bonneuil-en-France, Geodis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POAJVPG4P9J", + "ref": "OAJVPG4P9J", + "name": "Gennevilliers, Geodis", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDY183MWVK", + "ref": "BDY183MWVK", + "name": "Gennevilliers, route Principale du Port", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDY183MWVK", + "ref": "BDY183MWVK", + "name": "Gennevilliers, route Principale du Port", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDY183MWVK", + "ref": "BDY183MWVK", + "name": "Gennevilliers, route Principale du Port", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDY183MWVK", + "ref": "BDY183MWVK", + "name": "Gennevilliers, route Principale du Port", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDY183MWVK", + "ref": "BDY183MWVK", + "name": "Gennevilliers, route Principale du Port", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDY183MWVK", + "ref": "BDY183MWVK", + "name": "Gennevilliers, route Principale du Port", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDY183MWVK", + "ref": "BDY183MWVK", + "name": "Gennevilliers, route Principale du Port", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDY183MWVK", + "ref": "BDY183MWVK", + "name": "Gennevilliers, route Principale du Port", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.45052567, + 48.95732671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVQODSEY6PD", + "ref": "VQODSEY6PD", + "name": "Bonneuil-en-France, Geodis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47166975, + 47.509418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSRNTWNCMBI", + "ref": "SRNTWNCMBI", + "name": "Verrières-en-Anjou, Geodis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.026832, + 43.136314 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJVRK3JQHGA", + "ref": "JVRK3JQHGA", + "name": "La Garde, Garage Foch", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44448, + 46.6534 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRP1ODR0UNU", + "ref": "RP1ODR0UNU", + "name": "La Roche-sur-Yon, Garage Phelippeau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53880496, + 49.26570602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBNRBDCEV7P", + "ref": "BNRBDCEV7P", + "name": "Richeville, Route Nationale", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53880496, + 49.26570602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBNRBDCEV7P", + "ref": "BNRBDCEV7P", + "name": "Richeville, Route Nationale", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53880496, + 49.26570602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBNRBDCEV7P", + "ref": "BNRBDCEV7P", + "name": "Richeville, Route Nationale", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.584887, + 44.163136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIMEFMD4DXW", + "ref": "IMEFMD4DXW", + "name": "Garage Loxane, Estillac", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.584887, + 44.163136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIMEFMD4DXW", + "ref": "IMEFMD4DXW", + "name": "Garage Loxane, Estillac", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.97435221, + 48.60121199 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA3NZTZQNQG", + "ref": "A3NZTZQNQG", + "name": "Saint-Jouan-des-Guérets, Garage Lucas", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.173208, + 48.262531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZO7EL7PRD6", + "ref": "ZO7EL7PRD6", + "name": "Velotte-et-Tatignécourt, Garage Marulier public", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.173208, + 48.262531 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZO7EL7PRD6", + "ref": "ZO7EL7PRD6", + "name": "Velotte-et-Tatignécourt, Garage Marulier public", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.596117, + 46.344752 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPU8TVQEFNN", + "ref": "PU8TVQEFNN", + "name": "Montluçon, Garage Norville", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1287134, + 48.3137515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTFPYCFK3HI", + "ref": "TFPYCFK3HI", + "name": "Poussay, Garage Robert Automobiles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47166975, + 47.509418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSRNTWNCMBI", + "ref": "SRNTWNCMBI", + "name": "Verrières-en-Anjou, Geodis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1287134, + 48.3137515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTFPYCFK3HI", + "ref": "TFPYCFK3HI", + "name": "Poussay, Garage Robert Automobiles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.47535476, + 46.37295353 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PETLUKKUNU7", + "ref": "ETLUKKUNU7", + "name": "Huriel, Garage Schlaeppi", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.47535476, + 46.37295353 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PETLUKKUNU7", + "ref": "ETLUKKUNU7", + "name": "Huriel, Garage Schlaeppi", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.879608, + 43.121525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDUTLZQEJL", + "ref": "JDUTLZQEJL", + "name": "Ollioules, Garage Star", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.879608, + 43.121525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDUTLZQEJL", + "ref": "JDUTLZQEJL", + "name": "Ollioules, Garage Star", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.25024844, + 43.55967202 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXYOLENOBWF", + "ref": "XYOLENOBWF", + "name": "Salernes, Garage de la Baume", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03143944, + 43.76706704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUVBI4ZPDJG", + "ref": "UVBI4ZPDJG", + "name": "Nogaro, Avenue du Midour", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93816102, + 44.92160355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIU98V8U1LGVB", + "ref": "LLIU98V8U1LGVB", + "name": "Valence, Route de Chabeuil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93816102, + 44.92160355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIU98V8U1LGVB", + "ref": "LLIU98V8U1LGVB", + "name": "Valence, Route de Chabeuil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDY183MWVK", + "ref": "BDY183MWVK", + "name": "Gennevilliers, route Principale du Port", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDY183MWVK", + "ref": "BDY183MWVK", + "name": "Gennevilliers, route Principale du Port", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDY183MWVK", + "ref": "BDY183MWVK", + "name": "Gennevilliers, route Principale du Port", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.460499, + 43.7579 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PKVTXUX", + "ref": "KVTXUX", + "name": "Jegun, Blvd Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.591807, + 43.6078 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PWKRCQX", + "ref": "WKRCQX", + "name": "Pavie, Lamartine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.591807, + 43.6078 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PWKRCQX", + "ref": "WKRCQX", + "name": "Pavie, Lamartine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.201134, + 43.951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PYAQVWC", + "ref": "YAQVWC", + "name": "Montréal, Bvld Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.201134, + 43.951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PYAQVWC", + "ref": "YAQVWC", + "name": "Montréal, Bvld Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18727, + 43.7773 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PJPBEPL", + "ref": "JPBEPL", + "name": "Le Houga, Route de Mont-de-Marsan", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0320663, + 43.7578 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PSUVZHC", + "ref": "SUVZHC", + "name": "Nogaro, Colonel Parisot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58347, + 43.6476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PGCCRUJ", + "ref": "GCCRUJ", + "name": "Auch, Place Denfert Rochereau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58347, + 43.6476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PGCCRUJ", + "ref": "GCCRUJ", + "name": "Auch, Place Denfert Rochereau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.87569078, + 43.77025322 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PPJHOAYDA3O", + "ref": "PJHOAYDA3O", + "name": "Labrie, Parking Cimetière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.733544, + 43.4498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PJXNFKK", + "ref": "JXNFKK", + "name": "Simorre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDY183MWVK", + "ref": "BDY183MWVK", + "name": "Gennevilliers, route Principale du Port", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.54465243, + 43.34520961 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PJT0PXWXNVC", + "ref": "JT0PXWXNVC", + "name": "Chelan, Au Village", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.54465243, + 43.34520961 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PJT0PXWXNVC", + "ref": "JT0PXWXNVC", + "name": "Chelan, Au Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.87569078, + 43.77025322 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PPJHOAYDA3O", + "ref": "PJHOAYDA3O", + "name": "Labrie, Parking Cimetière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.761998, + 43.5214 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PQWTCYQ", + "ref": "QWTCYQ", + "name": "Saramon, Place du Foirail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.981634, + 43.5983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PKDDWBQ", + "ref": "KDDWBQ", + "name": "Monferran-Savès, Route du Calvaire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.625572, + 43.712 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PATYZJR", + "ref": "ATYZJR", + "name": "Preignan, Elie Charlas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.625572, + 43.712 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PATYZJR", + "ref": "ATYZJR", + "name": "Preignan, Elie Charlas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.761998, + 43.5214 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PQWTCYQ", + "ref": "QWTCYQ", + "name": "Saramon, Place du Foirail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.770562, + 43.891 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PJSVRYT", + "ref": "JSVRYT", + "name": "Saint-Clar, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.046019, + 43.6044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PTURUTF", + "ref": "TURUTF", + "name": "Plaisance, Place Bataillon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.046019, + 43.6044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PTURUTF", + "ref": "TURUTF", + "name": "Plaisance, Place Bataillon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0320663, + 43.7578 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PSUVZHC", + "ref": "SUVZHC", + "name": "Nogaro, Colonel Parisot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.144442241, + 45.52735706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTQ4EGZPKGL", + "ref": "TQ4EGZPKGL", + "name": "Coise-Saint-Jean-Pied-Gauthier, Geoffroy EURL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDY183MWVK", + "ref": "BDY183MWVK", + "name": "Gennevilliers, route Principale du Port", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDY183MWVK", + "ref": "BDY183MWVK", + "name": "Gennevilliers, route Principale du Port", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDY183MWVK", + "ref": "BDY183MWVK", + "name": "Gennevilliers, route Principale du Port", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBDY183MWVK", + "ref": "BDY183MWVK", + "name": "Gennevilliers, route Principale du Port", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32457891, + 49.47435194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTBTJI4QVE3", + "ref": "TBTJI4QVE3", + "name": "Saint-Vigor-d'Ymon, Geodis Le Havre public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32457891, + 49.47435194 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTBTJI4QVE3", + "ref": "TBTJI4QVE3", + "name": "Saint-Vigor-d'Ymon, Geodis Le Havre public", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35606084, + 48.60678758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMQMBBYPLTF", + "ref": "MQMBBYPLTF", + "name": "Le Plessis-Pâté, Geodis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35606084, + 48.60678758 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMQMBBYPLTF", + "ref": "MQMBBYPLTF", + "name": "Le Plessis-Pâté, Geodis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.47526696, + 48.75911403 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT6DFD4JXKG", + "ref": "T6DFD4JXKG", + "name": "Geodis Limeil public, rue Jean Monnet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.47526696, + 48.75911403 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PT6DFD4JXKG", + "ref": "T6DFD4JXKG", + "name": "Geodis Limeil public, rue Jean Monnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8535064, + 47.95248388 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAMULMNANEO", + "ref": "AMULMNANEO", + "name": "Saran, Geodis Orléans public", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8535064, + 47.95248388 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAMULMNANEO", + "ref": "AMULMNANEO", + "name": "Saran, Geodis Orléans public", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.130678, + 49.048734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJO5BRM2AZJ", + "ref": "JO5BRM2AZJ", + "name": "Saint-Ouen-l'Aumône, Geodis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.130678, + 49.048734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJO5BRM2AZJ", + "ref": "JO5BRM2AZJ", + "name": "Saint-Ouen-l'Aumône, Geodis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72062678, + 47.44773522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFC0CGPMFFS", + "ref": "FC0CGPMFFS", + "name": "Parçay-Meslay, Geodis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72062678, + 47.44773522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFC0CGPMFFS", + "ref": "FC0CGPMFFS", + "name": "Parçay-Meslay, Geodis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72062678, + 47.44773522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFC0CGPMFFS", + "ref": "FC0CGPMFFS", + "name": "Parçay-Meslay, Geodis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72062678, + 47.44773522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFC0CGPMFFS", + "ref": "FC0CGPMFFS", + "name": "Parçay-Meslay, Geodis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.144442241, + 45.52735706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTQ4EGZPKGL", + "ref": "TQ4EGZPKGL", + "name": "Coise-Saint-Jean-Pied-Gauthier, Geoffroy EURL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.026832, + 43.136314 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJVRK3JQHGA", + "ref": "JVRK3JQHGA", + "name": "La Garde, Garage Foch", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.026832, + 43.136314 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJVRK3JQHGA", + "ref": "JVRK3JQHGA", + "name": "La Garde, Garage Foch", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96517, + 47.2132 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PXFPUWS", + "ref": "XFPUWS", + "name": "Besançon, Siège SYDED", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5892723, + 16.25229414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE2ZYVDEZCI", + "ref": "E2ZYVDEZCI", + "name": "Destreland, boulevard de Destrellan", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81137, + 49.1498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSUUVYU", + "ref": "SUUVYU", + "name": "Freyming-Merlebach, Gare routière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81137, + 49.1498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSUUVYU", + "ref": "SUUVYU", + "name": "Freyming-Merlebach, Gare routière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34369826, + 48.70459912 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKU6VNMWPRI", + "ref": "KU6VNMWPRI", + "name": "Pointel, Fromentel Autos", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.021222, + 46.881075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNIIRDBT67N", + "ref": "NIIRDBT67N", + "name": "Les Herbiers, Fun Bowling 85", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.021222, + 46.881075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNIIRDBT67N", + "ref": "NIIRDBT67N", + "name": "Les Herbiers, Fun Bowling 85", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.021222, + 46.881075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNIIRDBT67N", + "ref": "NIIRDBT67N", + "name": "Les Herbiers, Fun Bowling 85", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.021222, + 46.881075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNIIRDBT67N", + "ref": "NIIRDBT67N", + "name": "Les Herbiers, Fun Bowling 85", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.743227, + 43.459331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPOTRT2UKUG", + "ref": "POTRT2UKUG", + "name": "Fun Fréjus, 1810 route de Malpasset", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.743227, + 43.459331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPOTRT2UKUG", + "ref": "POTRT2UKUG", + "name": "Fun Fréjus, 1810 route de Malpasset", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5892723, + 16.25229414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE2ZYVDEZCI", + "ref": "E2ZYVDEZCI", + "name": "Destreland, boulevard de Destrellan", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.3336, + 47.7442 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQPFAVF", + "ref": "QPFAVF", + "name": "Freshmile M2A, Parking Trois Rois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5892723, + 16.25229414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE2ZYVDEZCI", + "ref": "E2ZYVDEZCI", + "name": "Destreland, boulevard de Destrellan", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.2751846, + 16.25790761 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTA9HIA7WJP", + "ref": "TA9HIA7WJP", + "name": "Carrefour Saint-François, ZAC de Pradel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5413194, + 16.25249499 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBGK8U5EEDE", + "ref": "BGK8U5EEDE", + "name": "Carrefour Grand-Camp, Les Abymes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.2751846, + 16.25790761 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTA9HIA7WJP", + "ref": "TA9HIA7WJP", + "name": "Carrefour Saint-François, ZAC de Pradel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.2751846, + 16.25790761 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTA9HIA7WJP", + "ref": "TA9HIA7WJP", + "name": "Carrefour Saint-François, ZAC de Pradel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.2751846, + 16.25790761 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTA9HIA7WJP", + "ref": "TA9HIA7WJP", + "name": "Carrefour Saint-François, ZAC de Pradel", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5413194, + 16.25249499 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBGK8U5EEDE", + "ref": "BGK8U5EEDE", + "name": "Carrefour Grand-Camp, Les Abymes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5892723, + 16.25229414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE2ZYVDEZCI", + "ref": "E2ZYVDEZCI", + "name": "Destreland, boulevard de Destrellan", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5892723, + 16.25229414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE2ZYVDEZCI", + "ref": "E2ZYVDEZCI", + "name": "Destreland, boulevard de Destrellan", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36838, + 47.7493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJREWFN", + "ref": "JREWFN", + "name": "Freshmile M2A, Riedisheim Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.36838, + 47.7493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJREWFN", + "ref": "JREWFN", + "name": "Freshmile M2A, Riedisheim Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.026832, + 43.136314 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJVRK3JQHGA", + "ref": "JVRK3JQHGA", + "name": "La Garde, Garage Foch", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.774542, + 47.23433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PRTZIYHR634", + "ref": "RTZIYHR634", + "name": "Lantenne Vertière, Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8824, + 47.1039 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PXRTQBE", + "ref": "XRTQBE", + "name": "Quingey, Parking Rue des Fossés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46326, + 46.9924 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PSRUYZT", + "ref": "SRUYZT", + "name": "Montbenoit, Abbaye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.30319, + 46.8135 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PUULUVH", + "ref": "UULUVH", + "name": "Saint-Point-Lac, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35128, + 46.9011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PPONTARROC", + "ref": "pontarroc", + "name": "Pontarlier, Rocade Pompidou", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46326, + 46.9924 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PSRUYZT", + "ref": "SRUYZT", + "name": "Montbenoit, Abbaye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.15813, + 46.8575 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PFRASNEGARE", + "ref": "Frasnegare", + "name": "Frasne, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35128, + 46.9011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PPONTARROC", + "ref": "pontarroc", + "name": "Pontarlier, Rocade Pompidou", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35128, + 46.9011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PPONTARROC", + "ref": "pontarroc", + "name": "Pontarlier, Rocade Pompidou", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.774542, + 47.23433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PRTZIYHR634", + "ref": "RTZIYHR634", + "name": "Lantenne Vertière, Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.893086, + 47.47642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PVRIXQATI3S", + "ref": "VRIXQATI3S", + "name": "Dasle, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.27853, + 47.7594 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCTUDSJ", + "ref": "CTUDSJ", + "name": "Lutterbach, Carrefour Express", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.893086, + 47.47642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PVRIXQATI3S", + "ref": "VRIXQATI3S", + "name": "Dasle, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.67085, + 47.0591 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PVILLERBARTHO", + "ref": "villerbartho", + "name": "Villers-le-Lac, Place Droz Bartholet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.61761, + 48.5401 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJWFFPT", + "ref": "JWFFPT", + "name": "Entzheim, Freshmile", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.34306, + 47.7484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYCHBY", + "ref": "MYCHBY", + "name": "Freshmile M2A, Parking Salvator", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.27853, + 47.7594 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCTUDSJ", + "ref": "CTUDSJ", + "name": "Lutterbach, Carrefour Express", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.33398, + 47.7486 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRNAAVM", + "ref": "RNAAVM", + "name": "Freshmile M2A, Parking Kennedy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.3336, + 47.7442 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQPFAVF", + "ref": "QPFAVF", + "name": "Freshmile M2A, Parking Trois Rois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.33398, + 47.7486 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRNAAVM", + "ref": "RNAAVM", + "name": "Freshmile M2A, Parking Kennedy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.34306, + 47.7484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYCHBY", + "ref": "MYCHBY", + "name": "Freshmile M2A, Parking Salvator", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5892723, + 16.25229414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE2ZYVDEZCI", + "ref": "E2ZYVDEZCI", + "name": "Destreland, boulevard de Destrellan", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5892723, + 16.25229414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE2ZYVDEZCI", + "ref": "E2ZYVDEZCI", + "name": "Destreland, boulevard de Destrellan", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5892723, + 16.25229414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE2ZYVDEZCI", + "ref": "E2ZYVDEZCI", + "name": "Destreland, boulevard de Destrellan", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57887062, + 43.35958975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCN71UXKBKD", + "ref": "CN71UXKBKD", + "name": "Saint-Pée-sur-Nivelle, Garage Antao", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.412251, + 43.477805 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXGGXMZDHIA", + "ref": "XGGXMZDHIA", + "name": "Aix-en-Provence, Gagneraud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.412251, + 43.477805 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXGGXMZDHIA", + "ref": "XGGXMZDHIA", + "name": "Aix-en-Provence, Gagneraud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84408174, + 47.00910414 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTD9JKXMCX6", + "ref": "TD9JKXMCX6", + "name": "Beaune, Rue Buffon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9460659, + 47.21332426 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXIGDYUXUYP", + "ref": "XIGDYUXUYP", + "name": "Besançon, Games Factory", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9460659, + 47.21332426 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXIGDYUXUYP", + "ref": "XIGDYUXUYP", + "name": "Besançon, Games Factory", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.059057, + 47.351112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POTBAPZKKLS", + "ref": "OTBAPZKKLS", + "name": "Dijon, Games Factory", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.059057, + 47.351112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POTBAPZKKLS", + "ref": "OTBAPZKKLS", + "name": "Dijon, Games Factory", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77367206, + 50.41933336 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPSHJETZDTQ", + "ref": "PSHJETZDTQ", + "name": "Liévin, Arthur Lamendin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57887062, + 43.35958975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCN71UXKBKD", + "ref": "CN71UXKBKD", + "name": "Saint-Pée-sur-Nivelle, Garage Antao", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57887062, + 43.35958975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCN71UXKBKD", + "ref": "CN71UXKBKD", + "name": "Saint-Pée-sur-Nivelle, Garage Antao", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -60.9737496, + 14.55460115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ6XHLSS2QBEH", + "ref": "LLJ6XHLSS2QBEH", + "name": "Centre Commercial Genipa", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57887062, + 43.35958975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCN71UXKBKD", + "ref": "CN71UXKBKD", + "name": "Saint-Pée-sur-Nivelle, Garage Antao", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.03418893, + 48.11934037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBOAWXOY1RL", + "ref": "BOAWXOY1RL", + "name": "ZA LA BALORAIS , SAINT-PIERRE-LA-COUR", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.33156329, + 46.90606168 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVUY2EBKCXJ", + "ref": "VUY2EBKCXJ", + "name": "Garage Cassani Dubois, Rue Donnet Zedel", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.795416392, + 43.9707591 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMWG2J2DVGU", + "ref": "MWG2J2DVGU", + "name": "Villeneuve-lès-Avignon, boulevard Frédéric Mistral", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29830466, + 49.6976649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEUXBWQWQXS", + "ref": "EUXBWQWQXS", + "name": "Florenville, Garage Didier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29830466, + 49.6976649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEUXBWQWQXS", + "ref": "EUXBWQWQXS", + "name": "Florenville, Garage Didier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8491821, + 47.07137504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMSJI4GKDMB", + "ref": "MSJI4GKDMB", + "name": "Cholet, La Casse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.64799158, + 48.90295368 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI4EPKQ72IF9C", + "ref": "LLI4EPKQ72IF9C", + "name": "Gundershoffen, Garage Duchmann", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.64799158, + 48.90295368 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI4EPKQ72IF9C", + "ref": "LLI4EPKQ72IF9C", + "name": "Gundershoffen, Garage Duchmann", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.850912, + 47.910303 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHW2NLV0GF", + "ref": "THW2NLV0GF", + "name": "Ingré, rue Emile Leconte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.850912, + 47.910303 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTHW2NLV0GF", + "ref": "THW2NLV0GF", + "name": "Ingré, rue Emile Leconte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.926031, + 49.938496 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMEHMD1BJY0", + "ref": "MEHMD1BJY0", + "name": "Péronne, Garage François", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.926031, + 49.938496 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMEHMD1BJY0", + "ref": "MEHMD1BJY0", + "name": "Péronne, Garage François", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -60.9737496, + 14.55460115 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ6XHLSS2QBEH", + "ref": "LLJ6XHLSS2QBEH", + "name": "Centre Commercial Genipa", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.728289, + 46.098816 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKEWBFH2LZO", + "ref": "KEWBFH2LZO", + "name": "Belleville en Beaujolais, Rue des Terres aux Dames", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.728289, + 46.098816 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKEWBFH2LZO", + "ref": "KEWBFH2LZO", + "name": "Belleville en Beaujolais, Rue des Terres aux Dames", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.728289, + 46.098816 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKEWBFH2LZO", + "ref": "KEWBFH2LZO", + "name": "Belleville en Beaujolais, Rue des Terres aux Dames", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70944237, + 45.19387613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDRPCRSDJXN", + "ref": "DRPCRSDJXN", + "name": "Grenoble, GEG", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70944237, + 45.19387613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDRPCRSDJXN", + "ref": "DRPCRSDJXN", + "name": "Grenoble, GEG", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70944237, + 45.19387613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDRPCRSDJXN", + "ref": "DRPCRSDJXN", + "name": "Grenoble, GEG", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26174, + 43.699974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWHUT1OA2QQ", + "ref": "WHUT1OA2QQ", + "name": "Aire-sur-l'Adour, Mairie-SDIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26194, + 43.699975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIASECPLLXC", + "ref": "IASECPLLXC", + "name": "Aire-sur-l'Adour, Mairie-Médiathèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26194, + 43.699975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIASECPLLXC", + "ref": "IASECPLLXC", + "name": "Aire-sur-l'Adour, Mairie-Médiathèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.261654, + 43.702444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI6QFCRFVXE", + "ref": "I6QFCRFVXE", + "name": "Aire-sur-l'Adour, Poste - 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.261654, + 43.702444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI6QFCRFVXE", + "ref": "I6QFCRFVXE", + "name": "Aire-sur-l'Adour, Poste - 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26174, + 43.699974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWHUT1OA2QQ", + "ref": "WHUT1OA2QQ", + "name": "Aire-sur-l'Adour, Mairie-SDIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26354, + 43.701569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS5MAYKG1DE", + "ref": "S5MAYKG1DE", + "name": "Aire-sur-l'Adour, Parking VERDUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26142, + 43.7024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEBBPTU", + "ref": "EBBPTU", + "name": "Aire sur l'Adour, Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26141, + 43.7024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEBBPTU", + "ref": "EBBPTU", + "name": "Aire sur l'Adour, Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26354, + 43.715637 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAOUCGH4D2", + "ref": "SAOUCGH4D2", + "name": "Aire-sur-l'Adour, Parking GES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26354, + 43.715637 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSAOUCGH4D2", + "ref": "SAOUCGH4D2", + "name": "Aire-sur-l'Adour, Parking GES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26354, + 43.701569 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS5MAYKG1DE", + "ref": "S5MAYKG1DE", + "name": "Aire-sur-l'Adour, Parking VERDUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.059012, + 49.099824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYYLOA44OQ", + "ref": "MYYLOA44OQ", + "name": "Sarreguemines, Route de Nancy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.059012, + 49.099824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYYLOA44OQ", + "ref": "MYYLOA44OQ", + "name": "Sarreguemines, Route de Nancy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.059012, + 49.099824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYYLOA44OQ", + "ref": "MYYLOA44OQ", + "name": "Sarreguemines, Route de Nancy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37073, + 49.8643 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBOVESINDES", + "ref": "Bovesindes", + "name": "Boves, Indes Noires", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30791, + 49.8919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PAWXSQD", + "ref": "AWXSQD", + "name": "Amiens, Gare Routière", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30589, + 49.8895 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PYGXHDL", + "ref": "YGXHDL", + "name": "Amiens, Parking Perret", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3058, + 49.8894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PYGXHDL", + "ref": "YGXHDL", + "name": "Amiens, Parking Perret", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3058, + 49.8894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PYGXHDL", + "ref": "YGXHDL", + "name": "Amiens, Parking Perret", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56401, + 50.215 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PCAYEUXARGOU", + "ref": "cayeuxargou", + "name": "Cayeux-sur-Mer, Argousiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56401, + 50.215 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PCAYEUXARGOU", + "ref": "cayeuxargou", + "name": "Cayeux-sur-Mer, Argousiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67121, + 50.2714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PRUEVERDUN", + "ref": "rueverdun", + "name": "Rue, Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56315, + 50.3394 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFTMAHONTOURIS", + "ref": "ftmahontouris", + "name": "Fort-Mahon, Office de Tourisme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67121, + 50.2714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PRUEVERDUN", + "ref": "rueverdun", + "name": "Rue, Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3919, + 49.8582 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBOVESORENO", + "ref": "Bovesoreno", + "name": "Boves, Orenoque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.70682475, + 49.81575871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPJXCC6BZCI", + "ref": "PJXCC6BZCI", + "name": "Rosières-en-Santerre, Rue Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.176, + 49.7761 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PYHMTEU", + "ref": "YHMTEU", + "name": "Loeuilly, Rue d'Amiens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90787, + 49.7763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PMESNILECOLES", + "ref": "mesnilecoles", + "name": "Mesnil-Saint-Nicaise, Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90787, + 49.7763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PMESNILECOLES", + "ref": "mesnilecoles", + "name": "Mesnil-Saint-Nicaise, Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83478, + 50.1061 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PABBEVILMAIR", + "ref": "Abbevilmair", + "name": "Abbeville, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.98128, + 49.7751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPOIXREPUBLIQUE", + "ref": "poixrepublique", + "name": "Poix-de-Picardie, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83478, + 50.1061 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PABBEVILMAIR", + "ref": "Abbevilmair", + "name": "Abbeville, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31097, + 49.9519 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PZCLHFY", + "ref": "ZCLHFY", + "name": "Poulainville, Hippopotamus", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83392, + 50.1087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PABBECAPU", + "ref": "Abbecapu", + "name": "Abbeville, Capucins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34281, + 50.1542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PDOULLENSGORET", + "ref": "doullensgoret", + "name": "Doullens, Pauchet Goret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30589, + 49.8895 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PYGXHDL", + "ref": "YGXHDL", + "name": "Amiens, Parking Perret", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.70682475, + 49.81575871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPJXCC6BZCI", + "ref": "PJXCC6BZCI", + "name": "Rosières-en-Santerre, Rue Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48249, + 49.7722 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PMOREUILMALTER", + "ref": "moreuilmalter", + "name": "Moreuil, Norbert Malterre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.98128, + 49.7751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPOIXREPUBLIQUE", + "ref": "poixrepublique", + "name": "Poix-de-Picardie, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34536, + 50.157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PDOULLENSPISCI", + "ref": "doullenspisci", + "name": "Doullens, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34536, + 50.157 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PDOULLENSPISCI", + "ref": "doullenspisci", + "name": "Doullens, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.14021, + 50.0526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PVFTYGS", + "ref": "VFTYGS", + "name": "Saint-Léger-lès-Domart, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36253, + 49.7565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PUVJGEM", + "ref": "UVJGEM", + "name": "Ailly-sur-Noye, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.14021, + 50.0526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PVFTYGS", + "ref": "VFTYGS", + "name": "Saint-Léger-lès-Domart, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48249, + 49.7722 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PMOREUILMALTER", + "ref": "moreuilmalter", + "name": "Moreuil, Norbert Malterre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.79988, + 49.8186 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBZJXPH", + "ref": "BZJXPH", + "name": "Chaulnes, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3919, + 49.8582 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBOVESORENO", + "ref": "Bovesoreno", + "name": "Boves, Orenoque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.98929, + 49.7777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPOIXGARE", + "ref": "poixgare", + "name": "Poix-de-Picardie, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30787, + 49.8918 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PAWXSQD", + "ref": "AWXSQD", + "name": "Amiens, Gare Routière", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30094, + 49.8964 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PVYXQKS", + "ref": "VYXQKS", + "name": "Amiens, Parking Saint-Leu 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30791, + 49.8919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PAWXSQD", + "ref": "AWXSQD", + "name": "Amiens, Gare Routière", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30787, + 49.8918 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PAWXSQD", + "ref": "AWXSQD", + "name": "Amiens, Gare Routière", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83392, + 50.1087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PABBECAPU", + "ref": "Abbecapu", + "name": "Abbeville, Capucins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31097, + 49.9519 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PZCLHFY", + "ref": "ZCLHFY", + "name": "Poulainville, Hippopotamus", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83241, + 50.1046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PABBEVILPONT", + "ref": "Abbevilpont", + "name": "Abbeville, Collégiale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83149, + 50.1058 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PABBEVIROY", + "ref": "Abbeviroy", + "name": "Abbeville, Moulin du Roy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83241, + 50.1046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PABBEVILPONT", + "ref": "Abbevilpont", + "name": "Abbeville, Collégiale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30094, + 49.8965 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PRCDEAM", + "ref": "RCDEAM", + "name": "Amiens, Parking Saint-Leu 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30094, + 49.8965 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PRCDEAM", + "ref": "RCDEAM", + "name": "Amiens, Parking Saint-Leu 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56315, + 50.3394 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFTMAHONTOURIS", + "ref": "ftmahontouris", + "name": "Fort-Mahon, Office de Tourisme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34281, + 50.1542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PDOULLENSGORET", + "ref": "doullensgoret", + "name": "Doullens, Pauchet Goret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.61484, + 50.2231 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PLECROTOYVADIC", + "ref": "lecrotoyvadic", + "name": "Le Crotoy, Jean Vadicocq", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6347, + 50.3164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSXESMW", + "ref": "SXESMW", + "name": "Quend, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.547, + 50.3221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PNGTDGD", + "ref": "NGTDGD", + "name": "Quend, Picardie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.88484, + 50.2525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PKNVSCR", + "ref": "KNVSCR", + "name": "Crécy-en-Ponthieu, 8 Mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.547, + 50.3221 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PNGTDGD", + "ref": "NGTDGD", + "name": "Quend, Picardie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.54923, + 50.0905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PWBRCYE", + "ref": "WBRCYE", + "name": "Friville-Escarbotin, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.54923, + 50.0905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PWBRCYE", + "ref": "WBRCYE", + "name": "Friville-Escarbotin, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.88484, + 50.2525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PKNVSCR", + "ref": "KNVSCR", + "name": "Crécy-en-Ponthieu, 8 Mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31279, + 49.9465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80P58D24440E77BF", + "ref": "58d24440e77bf", + "name": "Poulainville, Place du 8 mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31279, + 49.9465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80P58D24440E77BF", + "ref": "58d24440e77bf", + "name": "Poulainville, Place du 8 mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31327, + 50.0036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPKNFQU", + "ref": "PKNFQU", + "name": "Villers-Bocage, Zone Commerciale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6347, + 50.3164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSXESMW", + "ref": "SXESMW", + "name": "Quend, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37073, + 49.8643 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBOVESINDES", + "ref": "Bovesindes", + "name": "Boves, Indes Noires", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.47597, + 49.7768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PJZXHUL", + "ref": "JZXHUL", + "name": "Moreuil, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.47597, + 49.7768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PJZXHUL", + "ref": "JZXHUL", + "name": "Moreuil, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39232, + 49.7994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSLFNQF", + "ref": "SLFNQF", + "name": "Dommartin, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25834, + 50.1074 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PLLQVXS", + "ref": "LLQVXS", + "name": "Candas, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39232, + 49.7994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSLFNQF", + "ref": "SLFNQF", + "name": "Dommartin, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44312, + 49.9422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PWJLBKW", + "ref": "WJLBKW", + "name": "Pont Noyelles, Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83717, + 50.1072 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PEGMDVD", + "ref": "EGMDVD", + "name": "Abbeville, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83717, + 50.1072 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PEGMDVD", + "ref": "EGMDVD", + "name": "Abbeville, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.06713, + 49.7043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBLSJNA", + "ref": "BLSJNA", + "name": "Thoix, Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25834, + 50.1074 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PLLQVXS", + "ref": "LLQVXS", + "name": "Candas, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35330023, + 49.74584581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PVSJVFY", + "ref": "VSJVFY", + "name": "Ailly-sur-Noye, Berny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35330023, + 49.74584581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PVSJVFY", + "ref": "VSJVFY", + "name": "Ailly-sur-Noye, Berny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.546898, + 49.721911 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PKZMJLP", + "ref": "KZMJLP", + "name": "Contoire, Maison Médicale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2748, + 50.0338 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PTEXNBQ", + "ref": "TEXNBQ", + "name": "Naours, Marais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2748, + 50.0338 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PTEXNBQ", + "ref": "TEXNBQ", + "name": "Naours, Marais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48123, + 50.0887 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBEEUFP", + "ref": "BEEUFP", + "name": "Friaucourt, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26056625, + 50.00290897 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PJEGRRW", + "ref": "JEGRRW", + "name": "Flesselles, Place Septime", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48123, + 50.0887 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBEEUFP", + "ref": "BEEUFP", + "name": "Friaucourt, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75093, + 50.0251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PWVTPRJ", + "ref": "WVTPRJ", + "name": "Huppy, Route Nationale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53337, + 50.0721 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PGXTYVE", + "ref": "GXTYVE", + "name": "Acheux-en-Amiénois, Wazière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53337, + 50.0721 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PGXTYVE", + "ref": "GXTYVE", + "name": "Acheux-en-Amiénois, Wazière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39265, + 50.0858 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSNGDFA", + "ref": "SNGDFA", + "name": "Beauquesne, Bac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75093, + 50.0251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PWVTPRJ", + "ref": "WVTPRJ", + "name": "Huppy, Route Nationale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39265, + 50.0858 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSNGDFA", + "ref": "SNGDFA", + "name": "Beauquesne, Bac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.333792, + 50.108029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PLXGKYT9YHC", + "ref": "LXGKYT9YHC", + "name": "Beauval, Rue Charles Cagny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.924962, + 49.759965 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PI76W2YJNXA", + "ref": "I76W2YJNXA", + "name": "Nesle, Route de Ham", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.333792, + 50.108029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PLXGKYT9YHC", + "ref": "LXGKYT9YHC", + "name": "Beauval, Rue Charles Cagny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62313, + 50.214967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PIQIL9BNYXZ", + "ref": "IQIL9BNYXZ", + "name": "Le Crotoy, Rue Pierre Guerlin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62313, + 50.214967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PIQIL9BNYXZ", + "ref": "IQIL9BNYXZ", + "name": "Le Crotoy, Rue Pierre Guerlin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.924962, + 49.759965 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PI76W2YJNXA", + "ref": "I76W2YJNXA", + "name": "Nesle, Route de Ham", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.546898, + 49.721911 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PKZMJLP", + "ref": "KZMJLP", + "name": "Contoire, Maison Médicale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26056625, + 50.00290897 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PJEGRRW", + "ref": "JEGRRW", + "name": "Flesselles, Place Septime", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.77914, + 49.8437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBEAUCAMPSEGL", + "ref": "beaucampsegl", + "name": "Beaucamps-le-Vieux, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.77914, + 49.8437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBEAUCAMPSEGL", + "ref": "beaucampsegl", + "name": "Beaucamps-le-Vieux, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.06713, + 49.7043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBLSJNA", + "ref": "BLSJNA", + "name": "Thoix, Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8217, + 50.0498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PXREDGG", + "ref": "XREDGG", + "name": "Flers, Mémorial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8654, + 50.0086 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFFVRKQ", + "ref": "FFVRKQ", + "name": "Combles, Candelier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.81664, + 49.8557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PGPZAXD", + "ref": "GPZAXD", + "name": "Liomer, Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59817, + 50.0689 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFEUQUIERESZI", + "ref": "feuquiereszi", + "name": "Feuquières-en-Vimeu, Parking Z.I", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.81664, + 49.8557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PGPZAXD", + "ref": "GPZAXD", + "name": "Liomer, Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99244, + 50.0106 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PLONGPRESTADE", + "ref": "Longprestade", + "name": "Longpré-les-Corps-Saints, Parking Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99244, + 50.0106 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PLONGPRESTADE", + "ref": "Longprestade", + "name": "Longpré-les-Corps-Saints, Parking Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3022, + 50.1682 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PUPVMTH", + "ref": "UPVMTH", + "name": "Hem Hardinval, Risquetout", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.81289081, + 50.15544663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PXCDNKJ", + "ref": "XCDNKJ", + "name": "Buigny-Saint-Maclou, Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3022, + 50.1682 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PUPVMTH", + "ref": "UPVMTH", + "name": "Hem Hardinval, Risquetout", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8217, + 50.0498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PXREDGG", + "ref": "XREDGG", + "name": "Flers, Mémorial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6274, + 49.9366 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PEYMSLB", + "ref": "EYMSLB", + "name": "Bouttencourt, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9789, + 50.0389 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PQKKLGT", + "ref": "QKKLGT", + "name": "Long, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9789, + 50.0389 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PQKKLGT", + "ref": "QKKLGT", + "name": "Long, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7041, + 50.1874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PCWRWXB", + "ref": "CWRWXB", + "name": "Noyelles-sur-Mer, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.81289081, + 50.15544663 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PXCDNKJ", + "ref": "XCDNKJ", + "name": "Buigny-Saint-Maclou, Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7041, + 50.1874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PCWRWXB", + "ref": "CWRWXB", + "name": "Noyelles-sur-Mer, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59817, + 50.0689 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFEUQUIERESZI", + "ref": "feuquiereszi", + "name": "Feuquières-en-Vimeu, Parking Z.I", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.68852, + 50.0526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PGUCKJF", + "ref": "GUCKJF", + "name": "Thiepval, Musée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.609513, + 49.908878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPGVTTD", + "ref": "PGVTTD", + "name": "Sailly-Laurette, Rue d'Albert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.68852, + 50.0526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PGUCKJF", + "ref": "GUCKJF", + "name": "Thiepval, Musée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8654, + 50.0086 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFFVRKQ", + "ref": "FFVRKQ", + "name": "Combles, Candelier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.04167, + 50.0336 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPBCCRA", + "ref": "PBCCRA", + "name": "Fins, Pavé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.82438593, + 50.20570326 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PH6BUUJO0HS", + "ref": "H6BUUJO0HS", + "name": "Forest-l'Abbaye, Place des Templiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59001, + 50.2692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PXRQKGG", + "ref": "XRQKGG", + "name": "Saint-Quentin-en-Tourmont, Garennes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30029, + 49.8926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSZJUJC", + "ref": "SZJUJC", + "name": "Amiens, Parking 3 Cailloux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.95655, + 49.8963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBHCEYP", + "ref": "BHCEYP", + "name": "Mesnil-Bruntel, Jeu de Paume", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.98929, + 49.7777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPOIXGARE", + "ref": "poixgare", + "name": "Poix-de-Picardie, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83149, + 50.1058 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PABBEVIROY", + "ref": "Abbeviroy", + "name": "Abbeville, Moulin du Roy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.95655, + 49.8963 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBHCEYP", + "ref": "BHCEYP", + "name": "Mesnil-Bruntel, Jeu de Paume", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30024, + 49.8925 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSZJUJC", + "ref": "SZJUJC", + "name": "Amiens, Parking 3 Cailloux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31097, + 49.8912 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PNUUUFQ", + "ref": "NUUUFQ", + "name": "Amiens, Parking Gare la Vallée", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31097, + 49.8912 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PNUUUFQ", + "ref": "NUUUFQ", + "name": "Amiens, Parking Gare la Vallée", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30024, + 49.8925 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSZJUJC", + "ref": "SZJUJC", + "name": "Amiens, Parking 3 Cailloux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59001, + 50.2692 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PXRQKGG", + "ref": "XRQKGG", + "name": "Saint-Quentin-en-Tourmont, Garennes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6274, + 49.9366 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PEYMSLB", + "ref": "EYMSLB", + "name": "Bouttencourt, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.647152, + 49.745562 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PYPGAPL", + "ref": "YPGAPL", + "name": "Arvillers, Place de l'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6175, + 49.6602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PTBRBZZ", + "ref": "TBRBZZ", + "name": "Ételfay, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44307, + 49.9861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PDJGFUS", + "ref": "DJGFUS", + "name": "Beaucourt-sur-l'Hallue, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44307, + 49.9861 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PDJGFUS", + "ref": "DJGFUS", + "name": "Beaucourt-sur-l'Hallue, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29792, + 49.8914 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PDLEYBP", + "ref": "DLEYBP", + "name": "Amiens, Parking Jacobins 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29792, + 49.8914 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PDLEYBP", + "ref": "DLEYBP", + "name": "Amiens, Parking Jacobins 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6175, + 49.6602 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PTBRBZZ", + "ref": "TBRBZZ", + "name": "Ételfay, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31095, + 49.8911 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PNUUUFQ", + "ref": "NUUUFQ", + "name": "Amiens, Parking Gare la Vallée", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31095, + 49.8911 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PNUUUFQ", + "ref": "NUUUFQ", + "name": "Amiens, Parking Gare la Vallée", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65235, + 49.9795 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PXWTTNG", + "ref": "XWTTNG", + "name": "Méaulte, Monument aux Morts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65235, + 49.9795 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PXWTTNG", + "ref": "XWTTNG", + "name": "Méaulte, Monument aux Morts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.94704, + 50.1327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80P58AEBBFECE386", + "ref": "58aebbfece386", + "name": "Saint-Riquier, Ecole des Garçons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.54158, + 50.0717 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PWOINCOURTKLEB", + "ref": "Woincourtkleb", + "name": "Woincourt, Kléber", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.64344, + 50.1832 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSTVALPERREE", + "ref": "stvalperree", + "name": "Saint-Valéry-sur-Somme, Perrée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3163, + 49.8155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSAINSENAMIEN", + "ref": "Sainsenamien", + "name": "Sains-en-Amiénois, Place de la Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.54158, + 50.0717 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PWOINCOURTKLEB", + "ref": "Woincourtkleb", + "name": "Woincourt, Kléber", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3163, + 49.8155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSAINSENAMIEN", + "ref": "Sainsenamien", + "name": "Sains-en-Amiénois, Place de la Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21363, + 49.9392 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSTSAUVEUR", + "ref": "Stsauveur", + "name": "Saint-Sauveur, Jean Paszek", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21363, + 49.9392 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSTSAUVEUR", + "ref": "Stsauveur", + "name": "Saint-Sauveur, Jean Paszek", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47289, + 50.0369 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHLQJWN", + "ref": "HLQJWN", + "name": "Oust-Marest, Rue Adolphe Mihatseck", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47289, + 50.0369 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHLQJWN", + "ref": "HLQJWN", + "name": "Oust-Marest, Rue Adolphe Mihatseck", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.54158, + 50.0717 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PWOINCOURTKLEB", + "ref": "Woincourtkleb", + "name": "Woincourt, Kléber", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.54158, + 50.0717 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PWOINCOURTKLEB", + "ref": "Woincourtkleb", + "name": "Woincourt, Kléber", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62812, + 50.2155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80P58AEC90FE0C22", + "ref": "58aec90fe0c22", + "name": "Le Crotoy, Jules Verne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75484, + 50.314 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBPQRSK", + "ref": "BPQRSK", + "name": "Vron, Friez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56457, + 50.3346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSJSVRY", + "ref": "SJSVRY", + "name": "Fort-Mahon, Pierre et Vacances Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46179, + 50.0637 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PZSEFWZ", + "ref": "ZSEFWZ", + "name": "Saint-Quentin-la-Motte, Long Champ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36253, + 49.7565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PUVJGEM", + "ref": "UVJGEM", + "name": "Ailly-sur-Noye, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46179, + 50.0637 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PZSEFWZ", + "ref": "ZSEFWZ", + "name": "Saint-Quentin-la-Motte, Long Champ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75484, + 50.314 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBPQRSK", + "ref": "BPQRSK", + "name": "Vron, Friez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56457, + 50.3346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSJSVRY", + "ref": "SJSVRY", + "name": "Fort-Mahon, Pierre et Vacances Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.82438593, + 50.20570326 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PH6BUUJO0HS", + "ref": "H6BUUJO0HS", + "name": "Forest-l'Abbaye, Place des Templiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.61484, + 50.2231 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PLECROTOYVADIC", + "ref": "lecrotoyvadic", + "name": "Le Crotoy, Jean Vadicocq", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.64344, + 50.1832 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSTVALPERREE", + "ref": "stvalperree", + "name": "Saint-Valéry-sur-Somme, Perrée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42916, + 49.9383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PKQJTGP", + "ref": "KQJTGP", + "name": "Querrieu, Route Nationale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.176, + 49.7761 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PYHMTEU", + "ref": "YHMTEU", + "name": "Loeuilly, Rue d'Amiens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42916, + 49.9383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PKQJTGP", + "ref": "KQJTGP", + "name": "Querrieu, Route Nationale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.94704, + 50.1327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80P58AEBBFECE386", + "ref": "58aebbfece386", + "name": "Saint-Riquier, Ecole des Garçons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.609513, + 49.908878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPGVTTD", + "ref": "PGVTTD", + "name": "Sailly-Laurette, Rue d'Albert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20023, + 49.9279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PMJEMLB", + "ref": "MJEMLB", + "name": "Ailly-sur-Somme, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45285, + 50.0733 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSTQUENTEGLISE", + "ref": "stquenteglise", + "name": "Saint-Quentin-la-Motte, Parking Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34641, + 49.8592 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PCAGNYBARBUSSE", + "ref": "cagnybarbusse", + "name": "Cagny, Barbusse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45285, + 50.0733 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSTQUENTEGLISE", + "ref": "stquenteglise", + "name": "Saint-Quentin-la-Motte, Parking Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.49746, + 50.1807 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80P58C7C56DB5CE3", + "ref": "58c7c56db5ce3", + "name": "Cayeux-sur-Mer, Corderies", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.49746, + 50.1807 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80P58C7C56DB5CE3", + "ref": "58c7c56db5ce3", + "name": "Cayeux-sur-Mer, Corderies", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56517, + 49.9533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PGDZSRJ", + "ref": "GDZSRJ", + "name": "Méricourt-l'Abbé, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56517, + 49.9533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PGDZSRJ", + "ref": "GDZSRJ", + "name": "Méricourt-l'Abbé, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.90118, + 49.8468 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHORNOYDUFOUR", + "ref": "hornoydufour", + "name": "Hornoy-le-Bourg, Dufour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34641, + 49.8592 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PCAGNYBARBUSSE", + "ref": "cagnybarbusse", + "name": "Cagny, Barbusse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.90118, + 49.8468 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHORNOYDUFOUR", + "ref": "hornoydufour", + "name": "Hornoy-le-Bourg, Dufour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30094, + 49.8964 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PVYXQKS", + "ref": "VYXQKS", + "name": "Amiens, Parking Saint-Leu 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.79988, + 49.8186 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBZJXPH", + "ref": "BZJXPH", + "name": "Chaulnes, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0659, + 50.0286 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PNUHCFA", + "ref": "NUHCFA", + "name": "Flixecourt, ZAC Rue du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08244, + 49.8227 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PQUEVAUVIFET", + "ref": "Quevauvifet", + "name": "Quevauvillers, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0659, + 50.0286 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PNUHCFA", + "ref": "NUHCFA", + "name": "Flixecourt, ZAC Rue du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08244, + 49.8227 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PQUEVAUVIFET", + "ref": "Quevauvifet", + "name": "Quevauvillers, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44312, + 49.9422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PWJLBKW", + "ref": "WJLBKW", + "name": "Pont Noyelles, Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.82567, + 50.1022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PXXXBPV", + "ref": "XXXBPV", + "name": "Abbeville, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.059012, + 49.099824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMYYLOA44OQ", + "ref": "MYYLOA44OQ", + "name": "Sarreguemines, Route de Nancy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56131, + 49.9857 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PGAMACHESMAIRIE", + "ref": "gamachesmairie", + "name": "Gamaches, Parking Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56131, + 49.9857 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PGAMACHESMAIRIE", + "ref": "gamachesmairie", + "name": "Gamaches, Parking Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56131, + 49.9857 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PGAMACHESMAIRIE", + "ref": "gamachesmairie", + "name": "Gamaches, Parking Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.77945, + 50.2116 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PNOUVIONMAIRIE", + "ref": "nouvionmairie", + "name": "Nouvion, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63651, + 50.1836 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSTVALERYSTPIER", + "ref": "stvalerystpier", + "name": "St-Valéry/Somme, St-Pierre (Park. Corderies)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.77945, + 50.2116 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PNOUVIONMAIRIE", + "ref": "nouvionmairie", + "name": "Nouvion, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.88311, + 50.0638 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PEAUCOURTPONT", + "ref": "eaucourtpont", + "name": "Eaucourt-sur-Somme, Pont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99503, + 50.079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PAILLYHAUTCLOC", + "ref": "aillyhautcloc", + "name": "Ailly-le-Haut-Clocher, D1001", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.88311, + 50.0638 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PEAUCOURTPONT", + "ref": "eaucourtpont", + "name": "Eaucourt-sur-Somme, Pont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56131, + 49.9857 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PGAMACHESMAIRIE", + "ref": "gamachesmairie", + "name": "Gamaches, Parking Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99503, + 50.079 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PAILLYHAUTCLOC", + "ref": "aillyhautcloc", + "name": "Ailly-le-Haut-Clocher, D1001", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28636, + 49.8942 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBXBPRQ", + "ref": "BXBPRQ", + "name": "Amiens, Garibaldi", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60418, + 49.7547 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHANGESTMAIRIE", + "ref": "hangestmairie", + "name": "Hangest-en-Santerre, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53544, + 50.0747 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFRIVILLEESCAR", + "ref": "frivilleescar", + "name": "Friville-Escarbotin, Marettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53544, + 50.0747 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFRIVILLEESCAR", + "ref": "frivilleescar", + "name": "Friville-Escarbotin, Marettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60418, + 49.7547 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHANGESTMAIRIE", + "ref": "hangestmairie", + "name": "Hangest-en-Santerre, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.019612, + 49.485848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PALEJNTJITP", + "ref": "ALEJNTJITP", + "name": "Saint-Jean-du-Cardonnay, Rue Pierre Gilles de Gennes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.856747, + 46.17183 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQEKHJI0HSD", + "ref": "QEKHJI0HSD", + "name": "Le Crozet, Chemin du Bas Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.856747, + 46.17183 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQEKHJI0HSD", + "ref": "QEKHJI0HSD", + "name": "Le Crozet, Chemin du Bas Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.074223, + 49.217853 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD4GOUTGVDY", + "ref": "D4GOUTGVDY", + "name": "Taissy, Rue Edouard Branly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.074223, + 49.217853 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD4GOUTGVDY", + "ref": "D4GOUTGVDY", + "name": "Taissy, Rue Edouard Branly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6087, + 50.061 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFEUQUIEREMAI", + "ref": "feuquieremai", + "name": "Feuquières-en-Vimeu, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28636, + 49.8942 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBXBPRQ", + "ref": "BXBPRQ", + "name": "Amiens, Garibaldi", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.76749, + 49.9557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80POISEMONT", + "ref": "oisemont", + "name": "Oisemont, Jules Ferry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38828882, + 50.0634183 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PTCSM2FPN91", + "ref": "TCSM2FPN91", + "name": "Mers-Les-Bains, Rue du 4 Septembre", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.76749, + 49.9557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80POISEMONT", + "ref": "oisemont", + "name": "Oisemont, Jules Ferry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87841, + 49.9917 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHALLENCOURTREP", + "ref": "hallencourtrep", + "name": "Hallencourt, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.78809782, + 49.69999386 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBTSJDPSCWJ", + "ref": "BTSJDPSCWJ", + "name": "Roye, Place des Combattants", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.78809782, + 49.69999386 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBTSJDPSCWJ", + "ref": "BTSJDPSCWJ", + "name": "Roye, Place des Combattants", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34355, + 49.8875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PMBFALP", + "ref": "MBFALP", + "name": "Camon, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5901, + 50.0709 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFEUQUEBAIE", + "ref": "feuquebaie", + "name": "Feuquières-en-Vimeu, Baie de Somme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5901, + 50.0709 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFEUQUEBAIE", + "ref": "feuquebaie", + "name": "Feuquières-en-Vimeu, Baie de Somme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38828882, + 50.0634183 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PTCSM2FPN91", + "ref": "TCSM2FPN91", + "name": "Mers-Les-Bains, Rue du 4 Septembre", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38828882, + 50.0634183 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PTCSM2FPN91", + "ref": "TCSM2FPN91", + "name": "Mers-Les-Bains, Rue du 4 Septembre", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08123, + 50.0148 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80P58D2452CB39D7", + "ref": "58d2452cb39d7", + "name": "Flixecourt, Strasbourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63651, + 50.1836 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSTVALERYSTPIER", + "ref": "stvalerystpier", + "name": "St-Valéry/Somme, St-Pierre (Park. Corderies)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31327, + 50.0036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPKNFQU", + "ref": "PKNFQU", + "name": "Villers-Bocage, Zone Commerciale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31397, + 49.8367 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PQXFFCP", + "ref": "QXFFCP", + "name": "Saint-Fuscien, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91150034, + 49.75711771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80P58D245BB6A2BF", + "ref": "58d245bb6a2bf", + "name": "Nesle, Jeanne d'Arc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.15622483, + 49.74154882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PCONTYGARE", + "ref": "contygare", + "name": "Conty, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91150034, + 49.75711771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80P58D245BB6A2BF", + "ref": "58d245bb6a2bf", + "name": "Nesle, Jeanne d'Arc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31397, + 49.8367 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PQXFFCP", + "ref": "QXFFCP", + "name": "Saint-Fuscien, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.94523, + 49.9649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PAIRAINESSEYM", + "ref": "airainesseym", + "name": "Airaines, Seymour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34355, + 49.8875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PMBFALP", + "ref": "MBFALP", + "name": "Camon, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6087, + 50.061 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFEUQUIEREMAI", + "ref": "feuquieremai", + "name": "Feuquières-en-Vimeu, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604848, + 49.054628 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIKISQUTAT2", + "ref": "IKISQUTAT2", + "name": "Faulquemont, Hôtel communautaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.61464, + 49.0454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEGZJSX", + "ref": "EGZJSX", + "name": "Faulquemont, Rue Jean Monnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604848, + 49.054628 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIKISQUTAT2", + "ref": "IKISQUTAT2", + "name": "Faulquemont, Hôtel communautaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.18957371, + 48.63837151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6FBP3FUUF", + "ref": "L6FBP3FUUF", + "name": "Fléville-devant-Nancy, rue Jacqueline Auriol", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93019521, + 44.92151277 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZAWGJI2HTH", + "ref": "ZAWGJI2HTH", + "name": "Valence, Fidsud CDBA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93019521, + 44.92151277 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZAWGJI2HTH", + "ref": "ZAWGJI2HTH", + "name": "Valence, Fidsud CDBA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73848707, + 48.52228948 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTDNK46PZBA", + "ref": "TDNK46PZBA", + "name": "Illkirch-Graffenstaden, 150 Rue Urs Graf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.73848707, + 48.52228948 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTDNK46PZBA", + "ref": "TDNK46PZBA", + "name": "Illkirch-Graffenstaden, 150 Rue Urs Graf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65936, + 43.8566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLOMAGNEHOPI", + "ref": "Lomagnehopi", + "name": "Fleurance, EPS Lomagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65936, + 43.8566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLOMAGNEHOPI", + "ref": "Lomagnehopi", + "name": "Fleurance, EPS Lomagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.18957371, + 48.63837151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6FBP3FUUF", + "ref": "L6FBP3FUUF", + "name": "Fléville-devant-Nancy, rue Jacqueline Auriol", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.18957371, + 48.63837151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6FBP3FUUF", + "ref": "L6FBP3FUUF", + "name": "Fléville-devant-Nancy, rue Jacqueline Auriol", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.18957371, + 48.63837151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL6FBP3FUUF", + "ref": "L6FBP3FUUF", + "name": "Fléville-devant-Nancy, rue Jacqueline Auriol", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87593955, + 43.91875606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESPSCBXVJ3", + "ref": "ESPSCBXVJ3", + "name": "Avignon, Foch Automobiles", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.61464, + 49.0454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEGZJSX", + "ref": "EGZJSX", + "name": "Faulquemont, Rue Jean Monnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87593955, + 43.91875606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESPSCBXVJ3", + "ref": "ESPSCBXVJ3", + "name": "Avignon, Foch Automobiles", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87593955, + 43.91875606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESPSCBXVJ3", + "ref": "ESPSCBXVJ3", + "name": "Avignon, Foch Automobiles", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87593955, + 43.91875606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESPSCBXVJ3", + "ref": "ESPSCBXVJ3", + "name": "Avignon, Foch Automobiles", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87593955, + 43.91875606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESPSCBXVJ3", + "ref": "ESPSCBXVJ3", + "name": "Avignon, Foch Automobiles", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87593955, + 43.91875606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESPSCBXVJ3", + "ref": "ESPSCBXVJ3", + "name": "Avignon, Foch Automobiles", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87593955, + 43.91875606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESPSCBXVJ3", + "ref": "ESPSCBXVJ3", + "name": "Avignon, Foch Automobiles", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87593955, + 43.91875606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESPSCBXVJ3", + "ref": "ESPSCBXVJ3", + "name": "Avignon, Foch Automobiles", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87593955, + 43.91875606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESPSCBXVJ3", + "ref": "ESPSCBXVJ3", + "name": "Avignon, Foch Automobiles", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87593955, + 43.91875606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PESPSCBXVJ3", + "ref": "ESPSCBXVJ3", + "name": "Avignon, Foch Automobiles", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3375268, + 43.8147048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSG4BBYR1FY", + "ref": "SG4BBYR1FY", + "name": "Nîmes, Rue John Mac Adam", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25736117, + 43.3444747 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZXIBYMRXBH", + "ref": "ZXIBYMRXBH", + "name": "Béziers, Rue Max Jacob", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.86681986, + 43.5796737 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP9ZRAMGL0G", + "ref": "P9ZRAMGL0G", + "name": "Montpellier, Rue Ettore Bugatti", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3375268, + 43.8147048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSG4BBYR1FY", + "ref": "SG4BBYR1FY", + "name": "Nîmes, Rue John Mac Adam", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.45532, + 48.97678 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD1TG2DDEOE", + "ref": "D1TG2DDEOE", + "name": "Woimbey, Chemin des Vignerons", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.45532, + 48.97678 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD1TG2DDEOE", + "ref": "D1TG2DDEOE", + "name": "Woimbey, Chemin des Vignerons", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.531192, + 49.150015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKB1PIN41BH", + "ref": "KB1PIN41BH", + "name": "Châtillon-sous-les-Côtes, Rue du Pressoir", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10757, + 46.256 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1P58CAB98E76BD3", + "ref": "58cab98e76bd3", + "name": "Ferney-Voltaire, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11770382, + 46.26114326 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POCRUUMPHSX", + "ref": "OCRUUMPHSX", + "name": "Ferney-Voltaire, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10757, + 46.256 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1P58CAB98E76BD3", + "ref": "58cab98e76bd3", + "name": "Ferney-Voltaire, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10757, + 46.256 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZZMXAN", + "ref": "ZZMXAN", + "name": "Ferney-Voltaire, Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10757, + 46.256 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZZMXAN", + "ref": "ZZMXAN", + "name": "Ferney-Voltaire, Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11770382, + 46.26114326 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POCRUUMPHSX", + "ref": "OCRUUMPHSX", + "name": "Ferney-Voltaire, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.53424, + 47.9172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXPBHMS", + "ref": "XPBHMS", + "name": "Fessenheim, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.53424, + 47.9172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXPBHMS", + "ref": "XPBHMS", + "name": "Fessenheim, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3375268, + 43.8147048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSG4BBYR1FY", + "ref": "SG4BBYR1FY", + "name": "Nîmes, Rue John Mac Adam", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3375268, + 43.8147048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSG4BBYR1FY", + "ref": "SG4BBYR1FY", + "name": "Nîmes, Rue John Mac Adam", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25736117, + 43.3444747 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZXIBYMRXBH", + "ref": "ZXIBYMRXBH", + "name": "Béziers, Rue Max Jacob", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.120019, + 44.11633 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUMSFRRANOQ", + "ref": "UMSFRRANOQ", + "name": "Ales, Chemin du mas de la bedosse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0312769, + 43.1758711 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPUMXEJQLLD", + "ref": "PUMXEJQLLD", + "name": "Narbonne, Rue demoge", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.86681986, + 43.5796737 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PP9ZRAMGL0G", + "ref": "P9ZRAMGL0G", + "name": "Montpellier, Rue Ettore Bugatti", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.120019, + 44.11633 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUMSFRRANOQ", + "ref": "UMSFRRANOQ", + "name": "Ales, Chemin du mas de la bedosse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0312769, + 43.1758711 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPUMXEJQLLD", + "ref": "PUMXEJQLLD", + "name": "Narbonne, Rue demoge", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.15622483, + 49.74154882 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PCONTYGARE", + "ref": "contygare", + "name": "Conty, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87841, + 49.9917 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHALLENCOURTREP", + "ref": "hallencourtrep", + "name": "Hallencourt, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51509, + 49.9121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PCORBIE11NOV", + "ref": "corbie11nov", + "name": "Corbie, 11 Novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01321, + 50.0101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PCONDE22", + "ref": "conde22", + "name": "Condé Folie, 22E RMVE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.82981, + 49.874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PESTREESCOMCOM", + "ref": "estreescomcom", + "name": "Estrées-Deniécourt, Com de Com", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50076, + 49.9112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PCORBIEGARE", + "ref": "Corbiegare", + "name": "Corbie, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.82981, + 49.874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PESTREESCOMCOM", + "ref": "estreescomcom", + "name": "Estrées-Deniécourt, Com de Com", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.90322, + 50.0542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPONTREMYSAV", + "ref": "Pontremysav", + "name": "Pont-Rémy, Saveuse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39839, + 49.8774 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PGLISYMAIRIE", + "ref": "glisymairie", + "name": "Glisy, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.82567, + 50.1022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PXXXBPV", + "ref": "XXXBPV", + "name": "Abbeville, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.10149066, + 49.97754705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PW39IDRPDKI", + "ref": "W39IDRPDKI", + "name": "Villers Faucon, rue Saint-Quentin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.90322, + 50.0542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPONTREMYSAV", + "ref": "Pontremysav", + "name": "Pont-Rémy, Saveuse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.10149066, + 49.97754705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PW39IDRPDKI", + "ref": "W39IDRPDKI", + "name": "Villers Faucon, rue Saint-Quentin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01321, + 50.0101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PCONDE22", + "ref": "conde22", + "name": "Condé Folie, 22E RMVE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39839, + 49.8774 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PGLISYMAIRIE", + "ref": "glisymairie", + "name": "Glisy, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1435, + 49.946 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPICQUIGNYGARE", + "ref": "Picquignygare", + "name": "Picquigny, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65116478, + 50.00111548 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PENT7R39M9K", + "ref": "ENT7R39M9K", + "name": "Albert, allée Georges Lamant", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1435, + 49.946 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPICQUIGNYGARE", + "ref": "Picquignygare", + "name": "Picquigny, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.82272, + 50.3471 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PARGOULESVAL", + "ref": "argoulesval", + "name": "Argoules, Valloires", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65116478, + 50.00111548 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PENT7R39M9K", + "ref": "ENT7R39M9K", + "name": "Albert, allée Georges Lamant", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50076, + 49.9112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PCORBIEGARE", + "ref": "Corbiegare", + "name": "Corbie, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65116478, + 50.00111548 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PENT7R39M9K", + "ref": "ENT7R39M9K", + "name": "Albert, allée Georges Lamant", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.82272, + 50.3471 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PARGOULESVAL", + "ref": "argoulesval", + "name": "Argoules, Valloires", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07323, + 49.7436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHAMESPLA", + "ref": "hamespla", + "name": "Ham, Esplanade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07323, + 49.7436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHAMESPLA", + "ref": "hamespla", + "name": "Ham, Esplanade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12083, + 50.0741 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PDOMARTETOILE", + "ref": "domartetoile", + "name": "Domart-en-Ponthieu, Etoile", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.94523, + 49.9649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PAIRAINESSEYM", + "ref": "airainesseym", + "name": "Airaines, Seymour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83891, + 50.1103 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PVYEBQY", + "ref": "VYEBQY", + "name": "Abbeville, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38758, + 50.0655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSTFUZJ", + "ref": "STFUZJ", + "name": "Mers-les-Bains, Canadiens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65116478, + 50.00111548 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PENT7R39M9K", + "ref": "ENT7R39M9K", + "name": "Albert, allée Georges Lamant", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7295, + 50.0924 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PMIRAUMONMAIR", + "ref": "Miraumonmair", + "name": "Miraumont, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65116478, + 50.00111548 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PENT7R39M9K", + "ref": "ENT7R39M9K", + "name": "Albert, allée Georges Lamant", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38758, + 50.0655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSTFUZJ", + "ref": "STFUZJ", + "name": "Mers-les-Bains, Canadiens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25249, + 49.7366 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFLERSPARIS", + "ref": "flersparis", + "name": "Flers-sur-Noye, Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12083, + 50.0741 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PDOMARTETOILE", + "ref": "domartetoile", + "name": "Domart-en-Ponthieu, Etoile", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25249, + 49.7366 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFLERSPARIS", + "ref": "flersparis", + "name": "Flers-sur-Noye, Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83891, + 50.1103 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PVYEBQY", + "ref": "VYEBQY", + "name": "Abbeville, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11913, + 50.0381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPMHGVH", + "ref": "PMHGVH", + "name": "Saint-Ouen, Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.82875, + 50.1039 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PABBEVITAL", + "ref": "Abbevital", + "name": "Abbeville, Talance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11913, + 50.0381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPMHGVH", + "ref": "PMHGVH", + "name": "Saint-Ouen, Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.04167, + 50.0336 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PPBCCRA", + "ref": "PBCCRA", + "name": "Fins, Pavé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09822, + 49.9466 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PDFJTTX", + "ref": "DFJTTX", + "name": "Roisel, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09822, + 49.9466 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PDFJTTX", + "ref": "DFJTTX", + "name": "Roisel, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.82875, + 50.1039 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PABBEVITAL", + "ref": "Abbevital", + "name": "Abbeville, Talance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71779, + 49.8906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSENARPAUM", + "ref": "Senarpaum", + "name": "Senarpont, Jeu de Paume", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7295, + 50.0924 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PMIRAUMONMAIR", + "ref": "Miraumonmair", + "name": "Miraumont, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71779, + 49.8906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSENARPAUM", + "ref": "Senarpaum", + "name": "Senarpont, Jeu de Paume", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51509, + 49.9121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PCORBIE11NOV", + "ref": "corbie11nov", + "name": "Corbie, 11 Novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08123, + 50.0148 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80P58D2452CB39D7", + "ref": "58d2452cb39d7", + "name": "Flixecourt, Strasbourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07243, + 49.7479 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHAMHAM", + "ref": "hamham", + "name": "Ham, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07243, + 49.7479 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHAMHAM", + "ref": "hamham", + "name": "Ham, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29526, + 49.8878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBPJAZA", + "ref": "BPJAZA", + "name": "Amiens, Longueville", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31302, + 49.8769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHUDFPP", + "ref": "HUDFPP", + "name": "Amiens, Cimetière Saint-Acheul", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2906, + 49.8898 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PTCYXHU", + "ref": "TCYXHU", + "name": "Amiens, Branly", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.266507, + 49.897935 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PJGPERV", + "ref": "JGPERV", + "name": "Amiens, Zénith", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5247, + 50.0124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSEFWCP", + "ref": "SEFWCP", + "name": "Warloy-Baillon, Maison médicale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5247, + 50.0124 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSEFWCP", + "ref": "SEFWCP", + "name": "Warloy-Baillon, Maison médicale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.266507, + 49.897935 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PJGPERV", + "ref": "JGPERV", + "name": "Amiens, Zénith", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.266507, + 49.897935 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PJGPERV", + "ref": "JGPERV", + "name": "Amiens, Zénith", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.266507, + 49.897935 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PJGPERV", + "ref": "JGPERV", + "name": "Amiens, Zénith", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29526, + 49.8878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBPJAZA", + "ref": "BPJAZA", + "name": "Amiens, Longueville", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29526, + 49.8878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBPJAZA", + "ref": "BPJAZA", + "name": "Amiens, Longueville", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63007, + 50.1874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSTVALERYSOMME", + "ref": "stvalerysomme", + "name": "St-Valéry-sur-Somme, Jeu de Battoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6702662, + 49.84988351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHARBONNIERES", + "ref": "harbonnieres", + "name": "Harbonnières, Mesmy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28636, + 49.8942 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBXBPRQ", + "ref": "BXBPRQ", + "name": "Amiens, Garibaldi", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29526, + 49.8878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBPJAZA", + "ref": "BPJAZA", + "name": "Amiens, Longueville", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31302, + 49.8769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHUDFPP", + "ref": "HUDFPP", + "name": "Amiens, Cimetière Saint-Acheul", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31302, + 49.8769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHUDFPP", + "ref": "HUDFPP", + "name": "Amiens, Cimetière Saint-Acheul", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31302, + 49.8769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHUDFPP", + "ref": "HUDFPP", + "name": "Amiens, Cimetière Saint-Acheul", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30784, + 49.8923 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PQGBZJG", + "ref": "QGBZJG", + "name": "Amiens, Alsace-Lorraine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30784, + 49.8923 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PQGBZJG", + "ref": "QGBZJG", + "name": "Amiens, Alsace-Lorraine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28636, + 49.8942 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBXBPRQ", + "ref": "BXBPRQ", + "name": "Amiens, Garibaldi", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2906, + 49.8898 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PTCYXHU", + "ref": "TCYXHU", + "name": "Amiens, Branly", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2906, + 49.8898 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PTCYXHU", + "ref": "TCYXHU", + "name": "Amiens, Branly", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2906, + 49.8898 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PTCYXHU", + "ref": "TCYXHU", + "name": "Amiens, Branly", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6702662, + 49.84988351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PHARBONNIERES", + "ref": "harbonnieres", + "name": "Harbonnières, Mesmy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55556, + 50.3396 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFORTMAHONPARIS", + "ref": "fortmahonparis", + "name": "Fort-Mahon, Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63007, + 50.1874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PSTVALERYSOMME", + "ref": "stvalerysomme", + "name": "St-Valéry-sur-Somme, Jeu de Battoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66911, + 50.2723 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PRUEBEFFROI", + "ref": "ruebeffroi", + "name": "Rue, Beffroi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0206, + 49.8835 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PMOLLIENSDREUIL", + "ref": "molliensdreuil", + "name": "Molliens-Dreuil, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0206, + 49.8835 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PMOLLIENSDREUIL", + "ref": "molliensdreuil", + "name": "Molliens-Dreuil, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.94277, + 49.9656 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PAIRAINES53E", + "ref": "airaines53e", + "name": "Airaines, 53e RICMS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66911, + 50.2723 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PRUEBEFFROI", + "ref": "ruebeffroi", + "name": "Rue, Beffroi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.94277, + 49.9656 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PAIRAINES53E", + "ref": "airaines53e", + "name": "Airaines, 53e RICMS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36584, + 49.8644 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBOVESFDE80", + "ref": "bovesfde80", + "name": "Boves, Parking FDE 80", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.57406822, + 50.06773373 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFRESSENNETI", + "ref": "fressenneti", + "name": "Fressenneville, Tilleuls", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36584, + 49.8644 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBOVESFDE80", + "ref": "bovesfde80", + "name": "Boves, Parking FDE 80", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1629, + 50.1325 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBERNADUPREZ", + "ref": "bernaduprez", + "name": "Bernaville, Duprez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1629, + 50.1325 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PBERNADUPREZ", + "ref": "bernaduprez", + "name": "Bernaville, Duprez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.57406822, + 50.06773373 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFRESSENNETI", + "ref": "fressenneti", + "name": "Fressenneville, Tilleuls", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00316, + 50.0094 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PZROITA", + "ref": "ZROITA", + "name": "Longpré-les-Corps-Saints, Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55556, + 50.3396 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PFORTMAHONPARIS", + "ref": "fortmahonparis", + "name": "Fort-Mahon, Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00316, + 50.0094 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PZROITA", + "ref": "ZROITA", + "name": "Longpré-les-Corps-Saints, Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.44889318, + 50.10042512 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PAULT11NOV1918", + "ref": "ault11nov1918", + "name": "Ault, 11 Nov.1918", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4552586, + 50.11000381 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS80PAULT11NOV1918", + "ref": "ault11nov1918", + "name": "Ault, 11 Nov.1918", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08563, + 43.657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PDTWFUM", + "ref": "DTWFUM", + "name": "Riscle, Pyrénées", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143985, + 45.83580508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVE2SNJRWXL", + "ref": "VE2SNJRWXL", + "name": "E.Leclerc, Brico Bourcefranc", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIMSVTLL4KF", + "ref": "IMSVTLL4KF", + "name": "E.Leclerc, Brico Andrézieux-Bouthéon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIMSVTLL4KF", + "ref": "IMSVTLL4KF", + "name": "E.Leclerc, Brico Andrézieux-Bouthéon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143985, + 45.83580508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVE2SNJRWXL", + "ref": "VE2SNJRWXL", + "name": "E.Leclerc, Brico Bourcefranc", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143985, + 45.83580508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVE2SNJRWXL", + "ref": "VE2SNJRWXL", + "name": "E.Leclerc, Brico Bourcefranc", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143985, + 45.83580508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVE2SNJRWXL", + "ref": "VE2SNJRWXL", + "name": "E.Leclerc, Brico Bourcefranc", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143985, + 45.83580508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVE2SNJRWXL", + "ref": "VE2SNJRWXL", + "name": "E.Leclerc, Brico Bourcefranc", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143985, + 45.83580508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVE2SNJRWXL", + "ref": "VE2SNJRWXL", + "name": "E.Leclerc, Brico Bourcefranc", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143985, + 45.83580508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVE2SNJRWXL", + "ref": "VE2SNJRWXL", + "name": "E.Leclerc, Brico Bourcefranc", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143985, + 45.83580508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVE2SNJRWXL", + "ref": "VE2SNJRWXL", + "name": "E.Leclerc, Brico Bourcefranc", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42513259, + 43.6455718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWFAMGXB1VA", + "ref": "WFAMGXB1VA", + "name": "E.Leclerc, Capbreton", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIMSVTLL4KF", + "ref": "IMSVTLL4KF", + "name": "E.Leclerc, Brico Andrézieux-Bouthéon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42513259, + 43.6455718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWFAMGXB1VA", + "ref": "WFAMGXB1VA", + "name": "E.Leclerc, Capbreton", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42513259, + 43.6455718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWFAMGXB1VA", + "ref": "WFAMGXB1VA", + "name": "E.Leclerc, Capbreton", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42513259, + 43.6455718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWFAMGXB1VA", + "ref": "WFAMGXB1VA", + "name": "E.Leclerc, Capbreton", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67113874, + 44.1818174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVYJZUKWZHX", + "ref": "VYJZUKWZHX", + "name": "E.Leclerc, Castelculier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67113874, + 44.1818174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVYJZUKWZHX", + "ref": "VYJZUKWZHX", + "name": "E.Leclerc, Castelculier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67113874, + 44.1818174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVYJZUKWZHX", + "ref": "VYJZUKWZHX", + "name": "E.Leclerc, Castelculier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67113874, + 44.1818174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVYJZUKWZHX", + "ref": "VYJZUKWZHX", + "name": "E.Leclerc, Castelculier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42826847, + 50.12985016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYOTRGWFRUD", + "ref": "YOTRGWFRUD", + "name": "E.Leclerc, Caudry", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42826847, + 50.12985016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYOTRGWFRUD", + "ref": "YOTRGWFRUD", + "name": "E.Leclerc, Caudry", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIMSVTLL4KF", + "ref": "IMSVTLL4KF", + "name": "E.Leclerc, Brico Andrézieux-Bouthéon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIMSVTLL4KF", + "ref": "IMSVTLL4KF", + "name": "E.Leclerc, Brico Andrézieux-Bouthéon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42826847, + 50.12985016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYOTRGWFRUD", + "ref": "YOTRGWFRUD", + "name": "E.Leclerc, Caudry", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIMSVTLL4KF", + "ref": "IMSVTLL4KF", + "name": "E.Leclerc, Brico Andrézieux-Bouthéon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38717162, + 47.08218504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGHA5BJRBDD", + "ref": "GHA5BJRBDD", + "name": "E. Leclerc, Bourges / Le Prado", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38717162, + 47.08218504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGHA5BJRBDD", + "ref": "GHA5BJRBDD", + "name": "E. Leclerc, Bourges / Le Prado", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27879131, + 49.64119521 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYLN1E5ASLE", + "ref": "YLN1E5ASLE", + "name": "E. Leclerc, Breteuil", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27879131, + 49.64119521 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYLN1E5ASLE", + "ref": "YLN1E5ASLE", + "name": "E. Leclerc, Breteuil", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27879131, + 49.64119521 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYLN1E5ASLE", + "ref": "YLN1E5ASLE", + "name": "E. Leclerc, Breteuil", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27879131, + 49.64119521 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYLN1E5ASLE", + "ref": "YLN1E5ASLE", + "name": "E. Leclerc, Breteuil", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42826847, + 50.12985016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYOTRGWFRUD", + "ref": "YOTRGWFRUD", + "name": "E.Leclerc, Caudry", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42826847, + 50.12985016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYOTRGWFRUD", + "ref": "YOTRGWFRUD", + "name": "E.Leclerc, Caudry", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.15069214, + 48.12488625 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUYYBBC9H8B", + "ref": "UYYBBC9H8B", + "name": "E.Leclerc, Chaumont", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25665585, + 49.15548873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBJPQZ2JJPW", + "ref": "BJPQZ2JJPW", + "name": "E.Leclerc, Chambly", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25665585, + 49.15548873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBJPQZ2JJPW", + "ref": "BJPQZ2JJPW", + "name": "E.Leclerc, Chambly", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08726284, + 48.2001145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIFYOQREIHG", + "ref": "IFYOQREIHG", + "name": "E.Leclerc, Chateaulin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08726284, + 48.2001145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIFYOQREIHG", + "ref": "IFYOQREIHG", + "name": "E.Leclerc, Chateaulin", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08726284, + 48.2001145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIFYOQREIHG", + "ref": "IFYOQREIHG", + "name": "E.Leclerc, Chateaulin", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08726284, + 48.2001145 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIFYOQREIHG", + "ref": "IFYOQREIHG", + "name": "E.Leclerc, Chateaulin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.15069214, + 48.12488625 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUYYBBC9H8B", + "ref": "UYYBBC9H8B", + "name": "E.Leclerc, Chaumont", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.15069214, + 48.12488625 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUYYBBC9H8B", + "ref": "UYYBBC9H8B", + "name": "E.Leclerc, Chaumont", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.15069214, + 48.12488625 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUYYBBC9H8B", + "ref": "UYYBBC9H8B", + "name": "E.Leclerc, Chaumont", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.15069214, + 48.12488625 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUYYBBC9H8B", + "ref": "UYYBBC9H8B", + "name": "E.Leclerc, Chaumont", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25665585, + 49.15548873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBJPQZ2JJPW", + "ref": "BJPQZ2JJPW", + "name": "E.Leclerc, Chambly", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.15069214, + 48.12488625 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUYYBBC9H8B", + "ref": "UYYBBC9H8B", + "name": "E.Leclerc, Chaumont", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.15069214, + 48.12488625 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUYYBBC9H8B", + "ref": "UYYBBC9H8B", + "name": "E.Leclerc, Chaumont", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.15069214, + 48.12488625 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUYYBBC9H8B", + "ref": "UYYBBC9H8B", + "name": "E.Leclerc, Chaumont", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.740703, + 45.425126 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYYJ7KQJT6G", + "ref": "YYJ7KQJT6G", + "name": "E.Leclerc, Chavanay", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.740703, + 45.425126 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYYJ7KQJT6G", + "ref": "YYJ7KQJT6G", + "name": "E.Leclerc, Chavanay", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.740703, + 45.425126 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYYJ7KQJT6G", + "ref": "YYJ7KQJT6G", + "name": "E.Leclerc, Chavanay", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.740703, + 45.425126 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYYJ7KQJT6G", + "ref": "YYJ7KQJT6G", + "name": "E.Leclerc, Chavanay", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72378857, + 47.2367842 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVWWWTFPIOK", + "ref": "VWWWTFPIOK", + "name": "E.Leclerc, Chemillé", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72378857, + 47.2367842 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVWWWTFPIOK", + "ref": "VWWWTFPIOK", + "name": "E.Leclerc, Chemillé", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25665585, + 49.15548873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBJPQZ2JJPW", + "ref": "BJPQZ2JJPW", + "name": "E.Leclerc, Chambly", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.168861, + 47.793686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PK5IED349PE", + "ref": "K5IED349PE", + "name": "E.Leclerc Cernay SAV", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42826847, + 50.12985016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYOTRGWFRUD", + "ref": "YOTRGWFRUD", + "name": "E.Leclerc, Caudry", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16551303, + 47.79450475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUKTY6ATECR", + "ref": "UKTY6ATECR", + "name": "E. Leclerc, Cernay Parking", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42826847, + 50.12985016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYOTRGWFRUD", + "ref": "YOTRGWFRUD", + "name": "E.Leclerc, Caudry", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42826847, + 50.12985016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYOTRGWFRUD", + "ref": "YOTRGWFRUD", + "name": "E.Leclerc, Caudry", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4145895, + 46.33485885 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKCAJTARK3I", + "ref": "KCAJTARK3I", + "name": "E.Leclerc, Centre Auto Niort Mendes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4145895, + 46.33485885 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKCAJTARK3I", + "ref": "KCAJTARK3I", + "name": "E.Leclerc, Centre Auto Niort Mendes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16551303, + 47.79450475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUKTY6ATECR", + "ref": "UKTY6ATECR", + "name": "E. Leclerc, Cernay Parking", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16551303, + 47.79450475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUKTY6ATECR", + "ref": "UKTY6ATECR", + "name": "E. Leclerc, Cernay Parking", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16551303, + 47.79450475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUKTY6ATECR", + "ref": "UKTY6ATECR", + "name": "E. Leclerc, Cernay Parking", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16551303, + 47.79450475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUKTY6ATECR", + "ref": "UKTY6ATECR", + "name": "E. Leclerc, Cernay Parking", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.168861, + 47.793686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PK5IED349PE", + "ref": "K5IED349PE", + "name": "E.Leclerc Cernay SAV", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16551303, + 47.79450475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUKTY6ATECR", + "ref": "UKTY6ATECR", + "name": "E. Leclerc, Cernay Parking", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16551303, + 47.79450475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUKTY6ATECR", + "ref": "UKTY6ATECR", + "name": "E. Leclerc, Cernay Parking", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16551303, + 47.79450475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUKTY6ATECR", + "ref": "UKTY6ATECR", + "name": "E. Leclerc, Cernay Parking", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.168861, + 47.793686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJDCTMIKNGY", + "ref": "JDCTMIKNGY", + "name": "E.Leclerc Cernay, parking salariés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16551303, + 47.79450475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUKTY6ATECR", + "ref": "UKTY6ATECR", + "name": "E. Leclerc, Cernay Parking", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.16551303, + 47.79450475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PUKTY6ATECR", + "ref": "UKTY6ATECR", + "name": "E. Leclerc, Cernay Parking", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.168861, + 47.793686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PK5IED349PE", + "ref": "K5IED349PE", + "name": "E.Leclerc Cernay SAV", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.168861, + 47.793686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJDCTMIKNGY", + "ref": "JDCTMIKNGY", + "name": "E.Leclerc Cernay, parking salariés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.168861, + 47.793686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PK5IED349PE", + "ref": "K5IED349PE", + "name": "E.Leclerc Cernay SAV", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.168861, + 47.793686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PK5IED349PE", + "ref": "K5IED349PE", + "name": "E.Leclerc Cernay SAV", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.168861, + 47.793686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PK5IED349PE", + "ref": "K5IED349PE", + "name": "E.Leclerc Cernay SAV", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.95592362, + 44.64292431 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAJQJUM9B3C", + "ref": "AJQJUM9B3C", + "name": "E.Leclerc, Biganos", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4461115, + 44.83617327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POXHA7QGZKR", + "ref": "OXHA7QGZKR", + "name": "E.Leclerc, Bergerac", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4461115, + 44.83617327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POXHA7QGZKR", + "ref": "OXHA7QGZKR", + "name": "E.Leclerc, Bergerac", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4461115, + 44.83617327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POXHA7QGZKR", + "ref": "OXHA7QGZKR", + "name": "E.Leclerc, Bergerac", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4461115, + 44.83617327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POXHA7QGZKR", + "ref": "OXHA7QGZKR", + "name": "E.Leclerc, Bergerac", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4461115, + 44.83617327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POXHA7QGZKR", + "ref": "OXHA7QGZKR", + "name": "E.Leclerc, Bergerac", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.84331096, + 44.92429655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PEGZ64DHCH9", + "ref": "EGZ64DHCH9", + "name": "E.Leclerc, Biars-sur-Cère", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.84331096, + 44.92429655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PEGZ64DHCH9", + "ref": "EGZ64DHCH9", + "name": "E.Leclerc, Biars-sur-Cère", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.84331096, + 44.92429655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PEGZ64DHCH9", + "ref": "EGZ64DHCH9", + "name": "E.Leclerc, Biars-sur-Cère", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.84331096, + 44.92429655 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PEGZ64DHCH9", + "ref": "EGZ64DHCH9", + "name": "E.Leclerc, Biars-sur-Cère", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.95592362, + 44.64292431 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAJQJUM9B3C", + "ref": "AJQJUM9B3C", + "name": "E.Leclerc, Biganos", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43088091, + 50.365493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYIYEOEVU2D", + "ref": "YIYEOEVU2D", + "name": "E.Leclerc, Bellaing", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.95592362, + 44.64292431 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAJQJUM9B3C", + "ref": "AJQJUM9B3C", + "name": "E.Leclerc, Biganos", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.95592362, + 44.64292431 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAJQJUM9B3C", + "ref": "AJQJUM9B3C", + "name": "E.Leclerc, Biganos", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.95592362, + 44.64292431 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAJQJUM9B3C", + "ref": "AJQJUM9B3C", + "name": "E.Leclerc, Biganos", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.95592362, + 44.64292431 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAJQJUM9B3C", + "ref": "AJQJUM9B3C", + "name": "E.Leclerc, Biganos", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16893921, + 44.40991852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAJUHLGDXWB", + "ref": "AJUHLGDXWB", + "name": "E.Leclerc, Biscarrosse Hyper", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16893921, + 44.40991852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAJUHLGDXWB", + "ref": "AJUHLGDXWB", + "name": "E.Leclerc, Biscarrosse Hyper", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16893921, + 44.40991852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAJUHLGDXWB", + "ref": "AJUHLGDXWB", + "name": "E.Leclerc, Biscarrosse Hyper", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16893921, + 44.40991852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAJUHLGDXWB", + "ref": "AJUHLGDXWB", + "name": "E.Leclerc, Biscarrosse Hyper", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16893921, + 44.40991852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAJUHLGDXWB", + "ref": "AJUHLGDXWB", + "name": "E.Leclerc, Biscarrosse Hyper", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4461115, + 44.83617327 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POXHA7QGZKR", + "ref": "OXHA7QGZKR", + "name": "E.Leclerc, Bergerac", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43088091, + 50.365493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYIYEOEVU2D", + "ref": "YIYEOEVU2D", + "name": "E.Leclerc, Bellaing", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44558967, + 43.50467849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYJFU0A6IJ3", + "ref": "YJFU0A6IJ3", + "name": "E.Leclerc, Bayonne Nord", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.44111853, + 42.66602431 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTXBSNOD426", + "ref": "TXBSNOD426", + "name": "E.Leclerc, Bastia", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.44111853, + 42.66602431 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTXBSNOD426", + "ref": "TXBSNOD426", + "name": "E.Leclerc, Bastia", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.44111853, + 42.66602431 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTXBSNOD426", + "ref": "TXBSNOD426", + "name": "E.Leclerc, Bastia", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.44111853, + 42.66602431 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTXBSNOD426", + "ref": "TXBSNOD426", + "name": "E.Leclerc, Bastia", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44558967, + 43.50467849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYJFU0A6IJ3", + "ref": "YJFU0A6IJ3", + "name": "E.Leclerc, Bayonne Nord", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44558967, + 43.50467849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYJFU0A6IJ3", + "ref": "YJFU0A6IJ3", + "name": "E.Leclerc, Bayonne Nord", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44558967, + 43.50467849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYJFU0A6IJ3", + "ref": "YJFU0A6IJ3", + "name": "E.Leclerc, Bayonne Nord", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44558967, + 43.50467849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYJFU0A6IJ3", + "ref": "YJFU0A6IJ3", + "name": "E.Leclerc, Bayonne Nord", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44558967, + 43.50467849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYJFU0A6IJ3", + "ref": "YJFU0A6IJ3", + "name": "E.Leclerc, Bayonne Nord", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43088091, + 50.365493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYIYEOEVU2D", + "ref": "YIYEOEVU2D", + "name": "E.Leclerc, Bellaing", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43088091, + 50.365493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYIYEOEVU2D", + "ref": "YIYEOEVU2D", + "name": "E.Leclerc, Bellaing", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43088091, + 50.365493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYIYEOEVU2D", + "ref": "YIYEOEVU2D", + "name": "E.Leclerc, Bellaing", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43088091, + 50.365493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYIYEOEVU2D", + "ref": "YIYEOEVU2D", + "name": "E.Leclerc, Bellaing", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43088091, + 50.365493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYIYEOEVU2D", + "ref": "YIYEOEVU2D", + "name": "E.Leclerc, Bellaing", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43088091, + 50.365493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYIYEOEVU2D", + "ref": "YIYEOEVU2D", + "name": "E.Leclerc, Bellaing", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43088091, + 50.365493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYIYEOEVU2D", + "ref": "YIYEOEVU2D", + "name": "E.Leclerc, Bellaing", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43088091, + 50.365493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYIYEOEVU2D", + "ref": "YIYEOEVU2D", + "name": "E.Leclerc, Bellaing", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43088091, + 50.365493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYIYEOEVU2D", + "ref": "YIYEOEVU2D", + "name": "E.Leclerc, Bellaing", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43088091, + 50.365493 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYIYEOEVU2D", + "ref": "YIYEOEVU2D", + "name": "E.Leclerc, Bellaing", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16893921, + 44.40991852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAJUHLGDXWB", + "ref": "AJUHLGDXWB", + "name": "E.Leclerc, Biscarrosse Hyper", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75343753, + 47.47545122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKXNEVQRIEC", + "ref": "KXNEVQRIEC", + "name": "E.Leclerc, Blaindis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75343753, + 47.47545122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKXNEVQRIEC", + "ref": "KXNEVQRIEC", + "name": "E.Leclerc, Blaindis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75343753, + 47.47545122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKXNEVQRIEC", + "ref": "KXNEVQRIEC", + "name": "E.Leclerc, Blaindis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POTM9WEDT93", + "ref": "OTM9WEDT93", + "name": "E.Leclerc, Bourg-les-Valence", + "capacity": "40", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVFD81PSSR", + "ref": "NVFD81PSSR", + "name": "E. Leclerc, Bonneuil-sur-Marne hyper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVFD81PSSR", + "ref": "NVFD81PSSR", + "name": "E. Leclerc, Bonneuil-sur-Marne hyper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75343753, + 47.47545122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKXNEVQRIEC", + "ref": "KXNEVQRIEC", + "name": "E.Leclerc, Blaindis", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PADPZNMBHJV", + "ref": "ADPZNMBHJV", + "name": "E.Leclerc, Blanc-Mesnil", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PADPZNMBHJV", + "ref": "ADPZNMBHJV", + "name": "E.Leclerc, Blanc-Mesnil", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PADPZNMBHJV", + "ref": "ADPZNMBHJV", + "name": "E.Leclerc, Blanc-Mesnil", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PADPZNMBHJV", + "ref": "ADPZNMBHJV", + "name": "E.Leclerc, Blanc-Mesnil", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PADPZNMBHJV", + "ref": "ADPZNMBHJV", + "name": "E.Leclerc, Blanc-Mesnil", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PADPZNMBHJV", + "ref": "ADPZNMBHJV", + "name": "E.Leclerc, Blanc-Mesnil", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PADPZNMBHJV", + "ref": "ADPZNMBHJV", + "name": "E.Leclerc, Blanc-Mesnil", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PADPZNMBHJV", + "ref": "ADPZNMBHJV", + "name": "E.Leclerc, Blanc-Mesnil", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PADPZNMBHJV", + "ref": "ADPZNMBHJV", + "name": "E.Leclerc, Blanc-Mesnil", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PADPZNMBHJV", + "ref": "ADPZNMBHJV", + "name": "E.Leclerc, Blanc-Mesnil", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVFD81PSSR", + "ref": "NVFD81PSSR", + "name": "E. Leclerc, Bonneuil-sur-Marne hyper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVFD81PSSR", + "ref": "NVFD81PSSR", + "name": "E. Leclerc, Bonneuil-sur-Marne hyper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVFD81PSSR", + "ref": "NVFD81PSSR", + "name": "E. Leclerc, Bonneuil-sur-Marne hyper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVFD81PSSR", + "ref": "NVFD81PSSR", + "name": "E. Leclerc, Bonneuil-sur-Marne hyper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVFD81PSSR", + "ref": "NVFD81PSSR", + "name": "E. Leclerc, Bonneuil-sur-Marne hyper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVFD81PSSR", + "ref": "NVFD81PSSR", + "name": "E. Leclerc, Bonneuil-sur-Marne hyper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVFD81PSSR", + "ref": "NVFD81PSSR", + "name": "E. Leclerc, Bonneuil-sur-Marne hyper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVFD81PSSR", + "ref": "NVFD81PSSR", + "name": "E. Leclerc, Bonneuil-sur-Marne hyper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72378857, + 47.2367842 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVWWWTFPIOK", + "ref": "VWWWTFPIOK", + "name": "E.Leclerc, Chemillé", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72378857, + 47.2367842 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVWWWTFPIOK", + "ref": "VWWWTFPIOK", + "name": "E.Leclerc, Chemillé", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26441649, + 47.18261187 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PDHAZIJAXIY", + "ref": "DHAZIJAXIY", + "name": "E.Leclerc, Chinon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.88858, + 48.6986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGILDOVEZFC", + "ref": "GILDOVEZFC", + "name": "E.Leclerc, Fontenay-Tresigny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82106973, + 46.46429151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLUORMJVPMO", + "ref": "LUORMJVPMO", + "name": "E.Leclerc, Fontenay Le Comte", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82252126, + 46.46420899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLUORMJVPMO", + "ref": "LUORMJVPMO", + "name": "E.Leclerc, Fontenay Le Comte", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82252126, + 46.46420899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLUORMJVPMO", + "ref": "LUORMJVPMO", + "name": "E.Leclerc, Fontenay Le Comte", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82106973, + 46.46429151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLUORMJVPMO", + "ref": "LUORMJVPMO", + "name": "E.Leclerc, Fontenay Le Comte", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82106973, + 46.46429151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLUORMJVPMO", + "ref": "LUORMJVPMO", + "name": "E.Leclerc, Fontenay Le Comte", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82106973, + 46.46429151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLUORMJVPMO", + "ref": "LUORMJVPMO", + "name": "E.Leclerc, Fontenay Le Comte", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82106973, + 46.46429151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLUORMJVPMO", + "ref": "LUORMJVPMO", + "name": "E.Leclerc, Fontenay Le Comte", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82106973, + 46.46429151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLUORMJVPMO", + "ref": "LUORMJVPMO", + "name": "E.Leclerc, Fontenay Le Comte", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82106973, + 46.46429151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLUORMJVPMO", + "ref": "LUORMJVPMO", + "name": "E.Leclerc, Fontenay Le Comte", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.88858, + 48.6986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGILDOVEZFC", + "ref": "GILDOVEZFC", + "name": "E.Leclerc, Fontenay-Tresigny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82252126, + 46.46420899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLUORMJVPMO", + "ref": "LUORMJVPMO", + "name": "E.Leclerc, Fontenay Le Comte", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.88858, + 48.6986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGILDOVEZFC", + "ref": "GILDOVEZFC", + "name": "E.Leclerc, Fontenay-Tresigny", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.88858, + 48.6986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGILDOVEZFC", + "ref": "GILDOVEZFC", + "name": "E.Leclerc, Fontenay-Tresigny", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36467022, + 49.7261819 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PL0KOZZ2ARU", + "ref": "L0KOZZ2ARU", + "name": "E.Leclerc, Fécamp Saint-Léonard 2", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36467022, + 49.7261819 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PL0KOZZ2ARU", + "ref": "L0KOZZ2ARU", + "name": "E.Leclerc, Fécamp Saint-Léonard 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82106973, + 46.46429151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLUORMJVPMO", + "ref": "LUORMJVPMO", + "name": "E.Leclerc, Fontenay Le Comte", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82106973, + 46.46429151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLUORMJVPMO", + "ref": "LUORMJVPMO", + "name": "E.Leclerc, Fontenay Le Comte", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11928029, + 49.30662926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQNFNXLNAJV", + "ref": "QNFNXLNAJV", + "name": "E.Leclerc, Fameck", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91940238, + 47.94408873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNBQHPADN4M", + "ref": "NBQHPADN4M", + "name": "E.Leclerc, Fleury-les-Aubrais", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11928029, + 49.30662926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQNFNXLNAJV", + "ref": "QNFNXLNAJV", + "name": "E.Leclerc, Fameck", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11928029, + 49.30662926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQNFNXLNAJV", + "ref": "QNFNXLNAJV", + "name": "E.Leclerc, Fameck", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11928029, + 49.30662926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQNFNXLNAJV", + "ref": "QNFNXLNAJV", + "name": "E.Leclerc, Fameck", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11928029, + 49.30662926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQNFNXLNAJV", + "ref": "QNFNXLNAJV", + "name": "E.Leclerc, Fameck", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11928029, + 49.30662926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQNFNXLNAJV", + "ref": "QNFNXLNAJV", + "name": "E.Leclerc, Fameck", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11928029, + 49.30662926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQNFNXLNAJV", + "ref": "QNFNXLNAJV", + "name": "E.Leclerc, Fameck", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11928029, + 49.30662926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQNFNXLNAJV", + "ref": "QNFNXLNAJV", + "name": "E.Leclerc, Fameck", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91940238, + 47.94408873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNBQHPADN4M", + "ref": "NBQHPADN4M", + "name": "E.Leclerc, Fleury-les-Aubrais", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91940238, + 47.94408873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNBQHPADN4M", + "ref": "NBQHPADN4M", + "name": "E.Leclerc, Fleury-les-Aubrais", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91940238, + 47.94408873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNBQHPADN4M", + "ref": "NBQHPADN4M", + "name": "E.Leclerc, Fleury-les-Aubrais", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82106973, + 46.46429151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLUORMJVPMO", + "ref": "LUORMJVPMO", + "name": "E.Leclerc, Fontenay Le Comte", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91940238, + 47.94408873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNBQHPADN4M", + "ref": "NBQHPADN4M", + "name": "E.Leclerc, Fleury-les-Aubrais", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91940238, + 47.94408873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNBQHPADN4M", + "ref": "NBQHPADN4M", + "name": "E.Leclerc, Fleury-les-Aubrais", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5057343, + 42.44829656 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCUECDGTUQW", + "ref": "CUECDGTUQW", + "name": "E.Leclerc, Folelli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5057343, + 42.44829656 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCUECDGTUQW", + "ref": "CUECDGTUQW", + "name": "E.Leclerc, Folelli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.605439, + 47.403165 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFKHA6QWCW9", + "ref": "FKHA6QWCW9", + "name": "E.Leclerc, Fondettes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.605439, + 47.403165 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFKHA6QWCW9", + "ref": "FKHA6QWCW9", + "name": "E.Leclerc, Fondettes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.605439, + 47.403165 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFKHA6QWCW9", + "ref": "FKHA6QWCW9", + "name": "E.Leclerc, Fondettes", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.605439, + 47.403165 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFKHA6QWCW9", + "ref": "FKHA6QWCW9", + "name": "E.Leclerc, Fondettes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82252126, + 46.46420899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLUORMJVPMO", + "ref": "LUORMJVPMO", + "name": "E.Leclerc, Fontenay Le Comte", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36467022, + 49.7261819 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PL0KOZZ2ARU", + "ref": "L0KOZZ2ARU", + "name": "E.Leclerc, Fécamp Saint-Léonard 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36467022, + 49.7261819 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PL0KOZZ2ARU", + "ref": "L0KOZZ2ARU", + "name": "E.Leclerc, Fécamp Saint-Léonard 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36467022, + 49.7261819 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PL0KOZZ2ARU", + "ref": "L0KOZZ2ARU", + "name": "E.Leclerc, Fécamp Saint-Léonard 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36467022, + 49.7261819 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PL0KOZZ2ARU", + "ref": "L0KOZZ2ARU", + "name": "E.Leclerc, Fécamp Saint-Léonard 2", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36551805, + 49.72609867 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMMIX8ETSRI", + "ref": "MMIX8ETSRI", + "name": "E.Leclerc, Fécamp Saint-Léonard", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.700099, + 45.98354035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PV5BA5FDJUH", + "ref": "V5BA5FDJUH", + "name": "E.Leclerc, Gleize", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.700099, + 45.98354035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PV5BA5FDJUH", + "ref": "V5BA5FDJUH", + "name": "E.Leclerc, Gleize", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.700099, + 45.98354035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PV5BA5FDJUH", + "ref": "V5BA5FDJUH", + "name": "E.Leclerc, Gleize", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.700099, + 45.98354035 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PV5BA5FDJUH", + "ref": "V5BA5FDJUH", + "name": "E.Leclerc, Gleize", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11928029, + 49.30662926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQNFNXLNAJV", + "ref": "QNFNXLNAJV", + "name": "E.Leclerc, Fameck", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11928029, + 49.30662926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQNFNXLNAJV", + "ref": "QNFNXLNAJV", + "name": "E.Leclerc, Fameck", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26441649, + 47.18261187 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PDHAZIJAXIY", + "ref": "DHAZIJAXIY", + "name": "E.Leclerc, Chinon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08536519, + 49.00859509 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PX1P794WYD9", + "ref": "X1P794WYD9", + "name": "E.Leclerc, Conflans-Sainte-Honorine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08536519, + 49.00859509 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PX1P794WYD9", + "ref": "X1P794WYD9", + "name": "E.Leclerc, Conflans-Sainte-Honorine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08536519, + 49.00859509 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PX1P794WYD9", + "ref": "X1P794WYD9", + "name": "E.Leclerc, Conflans-Sainte-Honorine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08536519, + 49.00859509 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PX1P794WYD9", + "ref": "X1P794WYD9", + "name": "E.Leclerc, Conflans-Sainte-Honorine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.17782179, + 47.01083247 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PF1FD6Q9XWL", + "ref": "F1FD6Q9XWL", + "name": "E.Leclerc, Coulange-lès-Nevers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.17782179, + 47.01083247 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PF1FD6Q9XWL", + "ref": "F1FD6Q9XWL", + "name": "E.Leclerc, Coulange-lès-Nevers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11928029, + 49.30662926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQNFNXLNAJV", + "ref": "QNFNXLNAJV", + "name": "E.Leclerc, Fameck", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39134625, + 49.03762432 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKIGSJKBXAQ", + "ref": "KIGSJKBXAQ", + "name": "E.Leclerc, Château-Thierry", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26441649, + 47.18261187 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PDHAZIJAXIY", + "ref": "DHAZIJAXIY", + "name": "E.Leclerc, Chinon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26441649, + 47.18261187 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PDHAZIJAXIY", + "ref": "DHAZIJAXIY", + "name": "E.Leclerc, Chinon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26441649, + 47.18261187 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PDHAZIJAXIY", + "ref": "DHAZIJAXIY", + "name": "E.Leclerc, Chinon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26441649, + 47.18261187 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PDHAZIJAXIY", + "ref": "DHAZIJAXIY", + "name": "E.Leclerc, Chinon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39134625, + 49.03762432 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKIGSJKBXAQ", + "ref": "KIGSJKBXAQ", + "name": "E.Leclerc, Château-Thierry", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39134625, + 49.03762432 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKIGSJKBXAQ", + "ref": "KIGSJKBXAQ", + "name": "E.Leclerc, Château-Thierry", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39134625, + 49.03762432 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKIGSJKBXAQ", + "ref": "KIGSJKBXAQ", + "name": "E.Leclerc, Château-Thierry", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39134625, + 49.03762432 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKIGSJKBXAQ", + "ref": "KIGSJKBXAQ", + "name": "E.Leclerc, Château-Thierry", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39134625, + 49.03762432 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKIGSJKBXAQ", + "ref": "KIGSJKBXAQ", + "name": "E.Leclerc, Château-Thierry", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39134625, + 49.03762432 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKIGSJKBXAQ", + "ref": "KIGSJKBXAQ", + "name": "E.Leclerc, Château-Thierry", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNJNRQHE26R", + "ref": "NJNRQHE26R", + "name": "E.Leclerc, Clisson", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39134625, + 49.03762432 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKIGSJKBXAQ", + "ref": "KIGSJKBXAQ", + "name": "E.Leclerc, Château-Thierry", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38766148, + 47.70646222 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDMLYUQSSU", + "ref": "HDMLYUQSSU", + "name": "E.Leclerc, Châteaubriant", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38766148, + 47.70646222 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDMLYUQSSU", + "ref": "HDMLYUQSSU", + "name": "E.Leclerc, Châteaubriant", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38766148, + 47.70646222 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDMLYUQSSU", + "ref": "HDMLYUQSSU", + "name": "E.Leclerc, Châteaubriant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38766148, + 47.70646222 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHDMLYUQSSU", + "ref": "HDMLYUQSSU", + "name": "E.Leclerc, Châteaubriant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.8195264, + 48.19529571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPPUUMBSESC", + "ref": "PPUUMBSESC", + "name": "E.Leclerc, Châteauneuf-du-Faou", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.8195264, + 48.19529571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPPUUMBSESC", + "ref": "PPUUMBSESC", + "name": "E.Leclerc, Châteauneuf-du-Faou", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.8195264, + 48.19529571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPPUUMBSESC", + "ref": "PPUUMBSESC", + "name": "E.Leclerc, Châteauneuf-du-Faou", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.8195264, + 48.19529571 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPPUUMBSESC", + "ref": "PPUUMBSESC", + "name": "E.Leclerc, Châteauneuf-du-Faou", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12198064, + 45.04544248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQK9VIQB32M", + "ref": "QK9VIQB32M", + "name": "E.Leclerc, Coutras", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12198064, + 45.04544248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQK9VIQB32M", + "ref": "QK9VIQB32M", + "name": "E.Leclerc, Coutras", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12198064, + 45.04544248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQK9VIQB32M", + "ref": "QK9VIQB32M", + "name": "E.Leclerc, Coutras", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.65832098, + 48.42879477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXFYFEZAQNO", + "ref": "XFYFEZAQNO", + "name": "E.Leclerc, Erstein", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07824542, + 47.4360704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDMHCEAKTI", + "ref": "GDMHCEAKTI", + "name": "E.Leclerc, Drive Pontchâteau", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07824542, + 47.4360704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDMHCEAKTI", + "ref": "GDMHCEAKTI", + "name": "E.Leclerc, Drive Pontchâteau", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07824542, + 47.4360704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDMHCEAKTI", + "ref": "GDMHCEAKTI", + "name": "E.Leclerc, Drive Pontchâteau", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33390795, + 48.95405795 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAPIQOKQASS", + "ref": "APIQOKQASS", + "name": "E.Leclerc, Epinay-sur-Seine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33390795, + 48.95405795 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAPIQOKQASS", + "ref": "APIQOKQASS", + "name": "E.Leclerc, Epinay-sur-Seine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33390795, + 48.95405795 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAPIQOKQASS", + "ref": "APIQOKQASS", + "name": "E.Leclerc, Epinay-sur-Seine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33390795, + 48.95405795 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAPIQOKQASS", + "ref": "APIQOKQASS", + "name": "E.Leclerc, Epinay-sur-Seine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.65832098, + 48.42879477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXFYFEZAQNO", + "ref": "XFYFEZAQNO", + "name": "E.Leclerc, Erstein", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.65832098, + 48.42879477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXFYFEZAQNO", + "ref": "XFYFEZAQNO", + "name": "E.Leclerc, Erstein", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.65832098, + 48.42879477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXFYFEZAQNO", + "ref": "XFYFEZAQNO", + "name": "E.Leclerc, Erstein", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12198064, + 45.04544248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQK9VIQB32M", + "ref": "QK9VIQB32M", + "name": "E.Leclerc, Coutras", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.65832098, + 48.42879477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXFYFEZAQNO", + "ref": "XFYFEZAQNO", + "name": "E.Leclerc, Erstein", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.65832098, + 48.42879477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXFYFEZAQNO", + "ref": "XFYFEZAQNO", + "name": "E.Leclerc, Erstein", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62805264, + 50.52631526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAYO1HIHEPX", + "ref": "AYO1HIHEPX", + "name": "E.Leclerc, Etaples", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62805264, + 50.52631526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAYO1HIHEPX", + "ref": "AYO1HIHEPX", + "name": "E.Leclerc, Etaples", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62805264, + 50.52631526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAYO1HIHEPX", + "ref": "AYO1HIHEPX", + "name": "E.Leclerc, Etaples", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62805264, + 50.52631526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAYO1HIHEPX", + "ref": "AYO1HIHEPX", + "name": "E.Leclerc, Etaples", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11928029, + 49.30662926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQNFNXLNAJV", + "ref": "QNFNXLNAJV", + "name": "E.Leclerc, Fameck", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11928029, + 49.30662926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQNFNXLNAJV", + "ref": "QNFNXLNAJV", + "name": "E.Leclerc, Fameck", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11928029, + 49.30662926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQNFNXLNAJV", + "ref": "QNFNXLNAJV", + "name": "E.Leclerc, Fameck", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07824542, + 47.4360704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDMHCEAKTI", + "ref": "GDMHCEAKTI", + "name": "E.Leclerc, Drive Pontchâteau", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07824542, + 47.4360704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDMHCEAKTI", + "ref": "GDMHCEAKTI", + "name": "E.Leclerc, Drive Pontchâteau", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07824542, + 47.4360704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDMHCEAKTI", + "ref": "GDMHCEAKTI", + "name": "E.Leclerc, Drive Pontchâteau", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.64296856, + 49.07614302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNRA1F3Q2QE", + "ref": "NRA1F3Q2QE", + "name": "E.Leclerc, Dormans", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS1YCYKCLFA", + "ref": "S1YCYKCLFA", + "name": "E.Leclerc, Crozon", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS1YCYKCLFA", + "ref": "S1YCYKCLFA", + "name": "E.Leclerc, Crozon", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS1YCYKCLFA", + "ref": "S1YCYKCLFA", + "name": "E.Leclerc, Crozon", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS1YCYKCLFA", + "ref": "S1YCYKCLFA", + "name": "E.Leclerc, Crozon", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS1YCYKCLFA", + "ref": "S1YCYKCLFA", + "name": "E.Leclerc, Crozon", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS1YCYKCLFA", + "ref": "S1YCYKCLFA", + "name": "E.Leclerc, Crozon", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS1YCYKCLFA", + "ref": "S1YCYKCLFA", + "name": "E.Leclerc, Crozon", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS1YCYKCLFA", + "ref": "S1YCYKCLFA", + "name": "E.Leclerc, Crozon", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS1YCYKCLFA", + "ref": "S1YCYKCLFA", + "name": "E.Leclerc, Crozon", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS1YCYKCLFA", + "ref": "S1YCYKCLFA", + "name": "E.Leclerc, Crozon", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS1YCYKCLFA", + "ref": "S1YCYKCLFA", + "name": "E.Leclerc, Crozon", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS1YCYKCLFA", + "ref": "S1YCYKCLFA", + "name": "E.Leclerc, Crozon", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.46957587, + 46.83499718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCKUSIH2KYG", + "ref": "CKUSIH2KYG", + "name": "E.Leclerc, Decize", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.46957587, + 46.83499718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCKUSIH2KYG", + "ref": "CKUSIH2KYG", + "name": "E.Leclerc, Decize", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.46957587, + 46.83499718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCKUSIH2KYG", + "ref": "CKUSIH2KYG", + "name": "E.Leclerc, Decize", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.46957587, + 46.83499718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCKUSIH2KYG", + "ref": "CKUSIH2KYG", + "name": "E.Leclerc, Decize", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.46957587, + 46.83499718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCKUSIH2KYG", + "ref": "CKUSIH2KYG", + "name": "E.Leclerc, Decize", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.46957587, + 46.83499718 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCKUSIH2KYG", + "ref": "CKUSIH2KYG", + "name": "E.Leclerc, Decize", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.64296856, + 49.07614302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNRA1F3Q2QE", + "ref": "NRA1F3Q2QE", + "name": "E.Leclerc, Dormans", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45423361, + 48.64595371 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PN3LWFBBFVR", + "ref": "N3LWFBBFVR", + "name": "E. Leclerc, Wasselonne Parking Magasin", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45423361, + 48.64595371 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PN3LWFBBFVR", + "ref": "N3LWFBBFVR", + "name": "E. Leclerc, Wasselonne Parking Magasin", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45208043, + 48.64571592 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PU5VKNYZZH8", + "ref": "U5VKNYZZH8", + "name": "E. Leclerc, Wasselonne Parking Restaurant", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45208043, + 48.64571592 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PU5VKNYZZH8", + "ref": "U5VKNYZZH8", + "name": "E. Leclerc, Wasselonne Parking Restaurant", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45423361, + 48.64595371 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PN3LWFBBFVR", + "ref": "N3LWFBBFVR", + "name": "E. Leclerc, Wasselonne Parking Magasin", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45423361, + 48.64595371 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PN3LWFBBFVR", + "ref": "N3LWFBBFVR", + "name": "E. Leclerc, Wasselonne Parking Magasin", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45423361, + 48.64595371 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PN3LWFBBFVR", + "ref": "N3LWFBBFVR", + "name": "E. Leclerc, Wasselonne Parking Magasin", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45423361, + 48.64595371 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PN3LWFBBFVR", + "ref": "N3LWFBBFVR", + "name": "E. Leclerc, Wasselonne Parking Magasin", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45423361, + 48.64595371 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PN3LWFBBFVR", + "ref": "N3LWFBBFVR", + "name": "E. Leclerc, Wasselonne Parking Magasin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45423361, + 48.64595371 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PN3LWFBBFVR", + "ref": "N3LWFBBFVR", + "name": "E. Leclerc, Wasselonne Parking Magasin", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60774973, + 48.95311449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZEWFPVSRKI", + "ref": "ZEWFPVSRKI", + "name": "E. Leclerc, Villeparisis", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88181591, + 44.90926121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYCDY4DXWFE", + "ref": "YCDY4DXWFE", + "name": "E. Leclerc, Valence", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88181591, + 44.90926121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYCDY4DXWFE", + "ref": "YCDY4DXWFE", + "name": "E. Leclerc, Valence", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88181591, + 44.90926121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYCDY4DXWFE", + "ref": "YCDY4DXWFE", + "name": "E. Leclerc, Valence", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88181591, + 44.90926121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYCDY4DXWFE", + "ref": "YCDY4DXWFE", + "name": "E. Leclerc, Valence", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60774973, + 48.95311449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZEWFPVSRKI", + "ref": "ZEWFPVSRKI", + "name": "E. Leclerc, Villeparisis", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.43113034, + 47.68657067 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZRLDYDOYI6", + "ref": "ZRLDYDOYI6", + "name": "E. Leclerc, Vouvray-Sur-Loir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60774973, + 48.95311449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZEWFPVSRKI", + "ref": "ZEWFPVSRKI", + "name": "E. Leclerc, Villeparisis", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60774973, + 48.95311449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZEWFPVSRKI", + "ref": "ZEWFPVSRKI", + "name": "E. Leclerc, Villeparisis", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60774973, + 48.95311449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZEWFPVSRKI", + "ref": "ZEWFPVSRKI", + "name": "E. Leclerc, Villeparisis", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60774973, + 48.95311449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZEWFPVSRKI", + "ref": "ZEWFPVSRKI", + "name": "E. Leclerc, Villeparisis", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60774973, + 48.95311449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZEWFPVSRKI", + "ref": "ZEWFPVSRKI", + "name": "E. Leclerc, Villeparisis", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60774973, + 48.95311449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZEWFPVSRKI", + "ref": "ZEWFPVSRKI", + "name": "E. Leclerc, Villeparisis", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.43113034, + 47.68657067 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZRLDYDOYI6", + "ref": "ZRLDYDOYI6", + "name": "E. Leclerc, Vouvray-Sur-Loir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.43113034, + 47.68657067 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZRLDYDOYI6", + "ref": "ZRLDYDOYI6", + "name": "E. Leclerc, Vouvray-Sur-Loir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.43113034, + 47.68657067 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZRLDYDOYI6", + "ref": "ZRLDYDOYI6", + "name": "E. Leclerc, Vouvray-Sur-Loir", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145051, + 45.746572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHGR47RDIT0", + "ref": "HGR47RDIT0", + "name": "E.Leclerc Express, Charvieu-Chavagneux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43076228, + 48.98947576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGHORFZQQIB", + "ref": "GHORFZQQIB", + "name": "E.Leclerc, Gonesse", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43076228, + 48.98947576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGHORFZQQIB", + "ref": "GHORFZQQIB", + "name": "E.Leclerc, Gonesse", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43076228, + 48.98947576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGHORFZQQIB", + "ref": "GHORFZQQIB", + "name": "E.Leclerc, Gonesse", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43076228, + 48.98947576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGHORFZQQIB", + "ref": "GHORFZQQIB", + "name": "E.Leclerc, Gonesse", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43076228, + 48.98947576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGHORFZQQIB", + "ref": "GHORFZQQIB", + "name": "E.Leclerc, Gonesse", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43076228, + 48.98947576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGHORFZQQIB", + "ref": "GHORFZQQIB", + "name": "E.Leclerc, Gonesse", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43076228, + 48.98947576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGHORFZQQIB", + "ref": "GHORFZQQIB", + "name": "E.Leclerc, Gonesse", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43076228, + 48.98947576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGHORFZQQIB", + "ref": "GHORFZQQIB", + "name": "E.Leclerc, Gonesse", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145051, + 45.746572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHGR47RDIT0", + "ref": "HGR47RDIT0", + "name": "E.Leclerc Express, Charvieu-Chavagneux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145051, + 45.746572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHGR47RDIT0", + "ref": "HGR47RDIT0", + "name": "E.Leclerc Express, Charvieu-Chavagneux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145051, + 45.746572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHGR47RDIT0", + "ref": "HGR47RDIT0", + "name": "E.Leclerc Express, Charvieu-Chavagneux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145051, + 45.746572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHGR47RDIT0", + "ref": "HGR47RDIT0", + "name": "E.Leclerc Express, Charvieu-Chavagneux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145051, + 45.746572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHGR47RDIT0", + "ref": "HGR47RDIT0", + "name": "E.Leclerc Express, Charvieu-Chavagneux", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8222, + 49.2848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY0OSAKHGA8", + "ref": "Y0OSAKHGA8", + "name": "Jonchery, E.Leclerc", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8222, + 49.2848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY0OSAKHGA8", + "ref": "Y0OSAKHGA8", + "name": "Jonchery, E.Leclerc", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8222, + 49.2848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY0OSAKHGA8", + "ref": "Y0OSAKHGA8", + "name": "Jonchery, E.Leclerc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8222, + 49.2848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PY0OSAKHGA8", + "ref": "Y0OSAKHGA8", + "name": "Jonchery, E.Leclerc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33766291, + 49.91268377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX2P436SZ2U", + "ref": "X2P436SZ2U", + "name": "E.Leclerc Rivery", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33766291, + 49.91268377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX2P436SZ2U", + "ref": "X2P436SZ2U", + "name": "E.Leclerc Rivery", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43076228, + 48.98947576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGHORFZQQIB", + "ref": "GHORFZQQIB", + "name": "E.Leclerc, Gonesse", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43076228, + 48.98947576 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGHORFZQQIB", + "ref": "GHORFZQQIB", + "name": "E.Leclerc, Gonesse", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774255, + 49.612418 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYE4ZWF9SHX", + "ref": "YE4ZWF9SHX", + "name": "E. Leclerc, Yvetot", + "capacity": "38", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33766291, + 49.91268377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX2P436SZ2U", + "ref": "X2P436SZ2U", + "name": "E.Leclerc Rivery", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSOUICAHQGU", + "ref": "SOUICAHQGU", + "name": "E. Leclerc, Sarlat", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26082407, + 49.00313849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PEOJBWKSCLF", + "ref": "EOJBWKSCLF", + "name": "E. Leclerc, Saint-Prix", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSOUICAHQGU", + "ref": "SOUICAHQGU", + "name": "E. Leclerc, Sarlat", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSOUICAHQGU", + "ref": "SOUICAHQGU", + "name": "E. Leclerc, Sarlat", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSOUICAHQGU", + "ref": "SOUICAHQGU", + "name": "E. Leclerc, Sarlat", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSOUICAHQGU", + "ref": "SOUICAHQGU", + "name": "E. Leclerc, Sarlat", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSOUICAHQGU", + "ref": "SOUICAHQGU", + "name": "E. Leclerc, Sarlat", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSOUICAHQGU", + "ref": "SOUICAHQGU", + "name": "E. Leclerc, Sarlat", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSOUICAHQGU", + "ref": "SOUICAHQGU", + "name": "E. Leclerc, Sarlat", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSOUICAHQGU", + "ref": "SOUICAHQGU", + "name": "E. Leclerc, Sarlat", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSOUICAHQGU", + "ref": "SOUICAHQGU", + "name": "E. Leclerc, Sarlat", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26082407, + 49.00313849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PEOJBWKSCLF", + "ref": "EOJBWKSCLF", + "name": "E. Leclerc, Saint-Prix", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.09547022, + 48.93084288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POH8L29VRNN", + "ref": "OH8L29VRNN", + "name": "E. Leclerc, Sarre-Union", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.09547022, + 48.93084288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POH8L29VRNN", + "ref": "OH8L29VRNN", + "name": "E. Leclerc, Sarre-Union", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.09547022, + 48.93084288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POH8L29VRNN", + "ref": "OH8L29VRNN", + "name": "E. Leclerc, Sarre-Union", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.09547022, + 48.93084288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POH8L29VRNN", + "ref": "OH8L29VRNN", + "name": "E. Leclerc, Sarre-Union", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.09547022, + 48.93084288 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POH8L29VRNN", + "ref": "OH8L29VRNN", + "name": "E. Leclerc, Sarre-Union", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBGJEL6OX17", + "ref": "BGJEL6OX17", + "name": "E. Leclerc, Scachap Ruffec", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBGJEL6OX17", + "ref": "BGJEL6OX17", + "name": "E. Leclerc, Scachap Ruffec", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBGJEL6OX17", + "ref": "BGJEL6OX17", + "name": "E. Leclerc, Scachap Ruffec", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBGJEL6OX17", + "ref": "BGJEL6OX17", + "name": "E. Leclerc, Scachap Ruffec", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26082407, + 49.00313849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PEOJBWKSCLF", + "ref": "EOJBWKSCLF", + "name": "E. Leclerc, Saint-Prix", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26082407, + 49.00313849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PEOJBWKSCLF", + "ref": "EOJBWKSCLF", + "name": "E. Leclerc, Saint-Prix", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.63342444, + 43.40173857 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLHFKUTTBHP", + "ref": "LHFKUTTBHP", + "name": "E. Leclerc, Saint-Jean-de-Luz privé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36738503, + 47.12095734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLBBOWNBKO6", + "ref": "LBBOWNBKO6", + "name": "E. Leclerc, Saint-Doulchard", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.72131004, + 46.05259811 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKIXKMOIV8M", + "ref": "KIXKMOIV8M", + "name": "E. Leclerc, Saint-Georges-de-Reneins", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.72131004, + 46.05259811 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKIXKMOIV8M", + "ref": "KIXKMOIV8M", + "name": "E. Leclerc, Saint-Georges-de-Reneins", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.72131004, + 46.05259811 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKIXKMOIV8M", + "ref": "KIXKMOIV8M", + "name": "E. Leclerc, Saint-Georges-de-Reneins", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.72131004, + 46.05259811 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKIXKMOIV8M", + "ref": "KIXKMOIV8M", + "name": "E. Leclerc, Saint-Georges-de-Reneins", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6332048, + 43.40185939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCVNUCGJWB", + "ref": "RCVNUCGJWB", + "name": "E. Leclerc, Saint-Jean-de-Luz", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6332048, + 43.40185939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCVNUCGJWB", + "ref": "RCVNUCGJWB", + "name": "E. Leclerc, Saint-Jean-de-Luz", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6332048, + 43.40185939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCVNUCGJWB", + "ref": "RCVNUCGJWB", + "name": "E. Leclerc, Saint-Jean-de-Luz", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6332048, + 43.40185939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRCVNUCGJWB", + "ref": "RCVNUCGJWB", + "name": "E. Leclerc, Saint-Jean-de-Luz", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.63342444, + 43.40173857 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLHFKUTTBHP", + "ref": "LHFKUTTBHP", + "name": "E. Leclerc, Saint-Jean-de-Luz privé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48017663, + 43.86358416 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJBMCIPOQG1", + "ref": "JBMCIPOQG1", + "name": "E. Leclerc, Saint-Pierre-du-Mont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18150558, + 43.51775442 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR84F9WYP2R", + "ref": "R84F9WYP2R", + "name": "E. Leclerc, Saint-Lys", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18150558, + 43.51775442 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR84F9WYP2R", + "ref": "R84F9WYP2R", + "name": "E. Leclerc, Saint-Lys", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18150558, + 43.51775442 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR84F9WYP2R", + "ref": "R84F9WYP2R", + "name": "E. Leclerc, Saint-Lys", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18150558, + 43.51775442 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR84F9WYP2R", + "ref": "R84F9WYP2R", + "name": "E. Leclerc, Saint-Lys", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35140609, + 46.19570678 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWQV2RNZM6H", + "ref": "WQV2RNZM6H", + "name": "E. Leclerc, Saint-Martin-de-Ré", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35140609, + 46.19570678 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWQV2RNZM6H", + "ref": "WQV2RNZM6H", + "name": "E. Leclerc, Saint-Martin-de-Ré", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35140609, + 46.19570678 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWQV2RNZM6H", + "ref": "WQV2RNZM6H", + "name": "E. Leclerc, Saint-Martin-de-Ré", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35140609, + 46.19570678 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWQV2RNZM6H", + "ref": "WQV2RNZM6H", + "name": "E. Leclerc, Saint-Martin-de-Ré", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48017663, + 43.86358416 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJBMCIPOQG1", + "ref": "JBMCIPOQG1", + "name": "E. Leclerc, Saint-Pierre-du-Mont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBGJEL6OX17", + "ref": "BGJEL6OX17", + "name": "E. Leclerc, Scachap Ruffec", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBGJEL6OX17", + "ref": "BGJEL6OX17", + "name": "E. Leclerc, Scachap Ruffec", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBGJEL6OX17", + "ref": "BGJEL6OX17", + "name": "E. Leclerc, Scachap Ruffec", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.462073, + 48.281484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PF8CISMNBL6", + "ref": "F8CISMNBL6", + "name": "E. Leclerc, Sélestat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84975347, + 46.74662089 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCKOSSK9SU8", + "ref": "CKOSSK9SU8", + "name": "E. Leclerc, Sevrey", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.462073, + 48.281484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PF8CISMNBL6", + "ref": "F8CISMNBL6", + "name": "E. Leclerc, Sélestat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.462073, + 48.281484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PF8CISMNBL6", + "ref": "F8CISMNBL6", + "name": "E. Leclerc, Sélestat", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.462073, + 48.281484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PF8CISMNBL6", + "ref": "F8CISMNBL6", + "name": "E. Leclerc, Sélestat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.462073, + 48.281484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PF8CISMNBL6", + "ref": "F8CISMNBL6", + "name": "E. Leclerc, Sélestat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.462073, + 48.281484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PF8CISMNBL6", + "ref": "F8CISMNBL6", + "name": "E. Leclerc, Sélestat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.462073, + 48.281484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PF8CISMNBL6", + "ref": "F8CISMNBL6", + "name": "E. Leclerc, Sélestat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.462073, + 48.281484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PF8CISMNBL6", + "ref": "F8CISMNBL6", + "name": "E. Leclerc, Sélestat", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.462073, + 48.281484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PF8CISMNBL6", + "ref": "F8CISMNBL6", + "name": "E. Leclerc, Sélestat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.462073, + 48.281484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PF8CISMNBL6", + "ref": "F8CISMNBL6", + "name": "E. Leclerc, Sélestat", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBGJEL6OX17", + "ref": "BGJEL6OX17", + "name": "E. Leclerc, Scachap Ruffec", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07980652, + 43.22059845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKZWEVDDHH9", + "ref": "KZWEVDDHH9", + "name": "E. Leclerc, Tarbes", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84975347, + 46.74662089 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCKOSSK9SU8", + "ref": "CKOSSK9SU8", + "name": "E. Leclerc, Sevrey", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBGJEL6OX17", + "ref": "BGJEL6OX17", + "name": "E. Leclerc, Scachap Ruffec", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBGJEL6OX17", + "ref": "BGJEL6OX17", + "name": "E. Leclerc, Scachap Ruffec", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34673378, + 48.98199846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFYPYBGCKG4", + "ref": "FYPYBGCKG4", + "name": "E. Leclerc, Saint-Martin-sur-le-Pré", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33766291, + 49.91268377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX2P436SZ2U", + "ref": "X2P436SZ2U", + "name": "E.Leclerc Rivery", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33766291, + 49.91268377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX2P436SZ2U", + "ref": "X2P436SZ2U", + "name": "E.Leclerc Rivery", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68989667, + 47.85978662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPLJGCICCQV", + "ref": "PLJGCICCQV", + "name": "E.Leclerc, Bain-de-Bretagne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.58004253, + 47.79731994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRAWNYUUG7H", + "ref": "RAWNYUUG7H", + "name": "E.Leclerc, Auxerre", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.58004253, + 47.79731994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRAWNYUUG7H", + "ref": "RAWNYUUG7H", + "name": "E.Leclerc, Auxerre", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.58004253, + 47.79731994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRAWNYUUG7H", + "ref": "RAWNYUUG7H", + "name": "E.Leclerc, Auxerre", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.58004253, + 47.79731994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRAWNYUUG7H", + "ref": "RAWNYUUG7H", + "name": "E.Leclerc, Auxerre", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.58004253, + 47.79731994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRAWNYUUG7H", + "ref": "RAWNYUUG7H", + "name": "E.Leclerc, Auxerre", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.58004253, + 47.79731994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRAWNYUUG7H", + "ref": "RAWNYUUG7H", + "name": "E.Leclerc, Auxerre", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.58004253, + 47.79731994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRAWNYUUG7H", + "ref": "RAWNYUUG7H", + "name": "E.Leclerc, Auxerre", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.58004253, + 47.79731994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRAWNYUUG7H", + "ref": "RAWNYUUG7H", + "name": "E.Leclerc, Auxerre", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68989667, + 47.85978662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPLJGCICCQV", + "ref": "PLJGCICCQV", + "name": "E.Leclerc, Bain-de-Bretagne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68989667, + 47.85978662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPLJGCICCQV", + "ref": "PLJGCICCQV", + "name": "E.Leclerc, Bain-de-Bretagne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.84147316, + 50.19839846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVSZIZOKFFF", + "ref": "VSZIZOKFFF", + "name": "E.Leclerc, Aulnoye-Aymeries", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68989667, + 47.85978662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPLJGCICCQV", + "ref": "PLJGCICCQV", + "name": "E.Leclerc, Bain-de-Bretagne", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.19355476, + 48.75647905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS2IIJS4XG5", + "ref": "S2IIJS4XG5", + "name": "E.Leclerc, Bar-le-Duc", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.19355476, + 48.75647905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS2IIJS4XG5", + "ref": "S2IIJS4XG5", + "name": "E.Leclerc, Bar-le-Duc", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.19355476, + 48.75647905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS2IIJS4XG5", + "ref": "S2IIJS4XG5", + "name": "E.Leclerc, Bar-le-Duc", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.19355476, + 48.75647905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS2IIJS4XG5", + "ref": "S2IIJS4XG5", + "name": "E.Leclerc, Bar-le-Duc", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.19355476, + 48.75647905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS2IIJS4XG5", + "ref": "S2IIJS4XG5", + "name": "E.Leclerc, Bar-le-Duc", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.19355476, + 48.75647905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS2IIJS4XG5", + "ref": "S2IIJS4XG5", + "name": "E.Leclerc, Bar-le-Duc", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.19355476, + 48.75647905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS2IIJS4XG5", + "ref": "S2IIJS4XG5", + "name": "E.Leclerc, Bar-le-Duc", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.19355476, + 48.75647905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS2IIJS4XG5", + "ref": "S2IIJS4XG5", + "name": "E.Leclerc, Bar-le-Duc", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.58004253, + 47.79731994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRAWNYUUG7H", + "ref": "RAWNYUUG7H", + "name": "E.Leclerc, Auxerre", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.84147316, + 50.19839846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVSZIZOKFFF", + "ref": "VSZIZOKFFF", + "name": "E.Leclerc, Aulnoye-Aymeries", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961078, + 48.31750806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PA12RW4GWRR", + "ref": "A12RW4GWRR", + "name": "E.Leclerc Angerville", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3816455, + 44.59720568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL98XANBWT", + "ref": "HL98XANBWT", + "name": "E.Leclerc, Aubenas", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75765321, + 50.48235716 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PY7RR8FAT3Y", + "ref": "Y7RR8FAT3Y", + "name": "E.Leclerc, Attin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75531417, + 50.48283163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKGCAZGUM9A", + "ref": "KGCAZGUM9A", + "name": "E. Leclerc, Attin parking collaborateur", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75531417, + 50.48283163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKGCAZGUM9A", + "ref": "KGCAZGUM9A", + "name": "E. Leclerc, Attin parking collaborateur", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75765321, + 50.48235716 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PY7RR8FAT3Y", + "ref": "Y7RR8FAT3Y", + "name": "E.Leclerc, Attin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75531417, + 50.48283163 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKGCAZGUM9A", + "ref": "KGCAZGUM9A", + "name": "E. Leclerc, Attin parking collaborateur", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3816455, + 44.59720568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL98XANBWT", + "ref": "HL98XANBWT", + "name": "E.Leclerc, Aubenas", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3816455, + 44.59720568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL98XANBWT", + "ref": "HL98XANBWT", + "name": "E.Leclerc, Aubenas", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3816455, + 44.59720568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL98XANBWT", + "ref": "HL98XANBWT", + "name": "E.Leclerc, Aubenas", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3816455, + 44.59720568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL98XANBWT", + "ref": "HL98XANBWT", + "name": "E.Leclerc, Aubenas", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3816455, + 44.59720568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL98XANBWT", + "ref": "HL98XANBWT", + "name": "E.Leclerc, Aubenas", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.84147316, + 50.19839846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVSZIZOKFFF", + "ref": "VSZIZOKFFF", + "name": "E.Leclerc, Aulnoye-Aymeries", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3816455, + 44.59720568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL98XANBWT", + "ref": "HL98XANBWT", + "name": "E.Leclerc, Aubenas", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3816455, + 44.59720568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL98XANBWT", + "ref": "HL98XANBWT", + "name": "E.Leclerc, Aubenas", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3816455, + 44.59720568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL98XANBWT", + "ref": "HL98XANBWT", + "name": "E.Leclerc, Aubenas", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3816455, + 44.59720568 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL98XANBWT", + "ref": "HL98XANBWT", + "name": "E.Leclerc, Aubenas", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8417437, + 50.198508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWMUMKDAJTR", + "ref": "WMUMKDAJTR", + "name": "E.Leclerc, Aulnoye-Aymeries", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8417437, + 50.198508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWMUMKDAJTR", + "ref": "WMUMKDAJTR", + "name": "E.Leclerc, Aulnoye-Aymeries", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.84147316, + 50.19839846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVSZIZOKFFF", + "ref": "VSZIZOKFFF", + "name": "E.Leclerc, Aulnoye-Aymeries", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.84147316, + 50.19839846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVSZIZOKFFF", + "ref": "VSZIZOKFFF", + "name": "E.Leclerc, Aulnoye-Aymeries", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.84147316, + 50.19839846 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVSZIZOKFFF", + "ref": "VSZIZOKFFF", + "name": "E.Leclerc, Aulnoye-Aymeries", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70271636, + 48.23802276 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLIU1YABC2MHX2", + "ref": "LLIU1YABC2MHX2", + "name": "E.Leclerc, Bar-sur-Aube", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70271636, + 48.23802276 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLIU1YABC2MHX2", + "ref": "LLIU1YABC2MHX2", + "name": "E.Leclerc, Bar-sur-Aube", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70271636, + 48.23802276 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLIU1YABC2MHX2", + "ref": "LLIU1YABC2MHX2", + "name": "E.Leclerc, Bar-sur-Aube", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70271636, + 48.23802276 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLIU1YABC2MHX2", + "ref": "LLIU1YABC2MHX2", + "name": "E.Leclerc, Bar-sur-Aube", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70271636, + 48.23802276 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLIU1YABC2MHX2", + "ref": "LLIU1YABC2MHX2", + "name": "E.Leclerc, Bar-sur-Aube", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70271636, + 48.23802276 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLIU1YABC2MHX2", + "ref": "LLIU1YABC2MHX2", + "name": "E.Leclerc, Bar-sur-Aube", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYEDSCSTTC", + "ref": "CYEDSCSTTC", + "name": "E.Leclerc, Barjouville", + "capacity": "46", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961078, + 48.31750806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PA12RW4GWRR", + "ref": "A12RW4GWRR", + "name": "E.Leclerc Angerville", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961078, + 48.31750806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PA12RW4GWRR", + "ref": "A12RW4GWRR", + "name": "E.Leclerc Angerville", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33766291, + 49.91268377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX2P436SZ2U", + "ref": "X2P436SZ2U", + "name": "E.Leclerc Rivery", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08745032, + 48.40887156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088952, + 48.398951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088952, + 48.398951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088952, + 48.398951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088952, + 48.398951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088952, + 48.398951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088952, + 48.398951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088952, + 48.398951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088952, + 48.398951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088952, + 48.398951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088952, + 48.398951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088952, + 48.398951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08745032, + 48.40887156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08745032, + 48.40887156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08745032, + 48.40887156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08745032, + 48.40887156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08745032, + 48.40887156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08745032, + 48.40887156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08745032, + 48.40887156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08745032, + 48.40887156 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVEWFZ6V02A", + "ref": "VEWFZ6V02A", + "name": "E.Leclerc, Alès", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088952, + 48.398951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088952, + 48.398951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961078, + 48.31750806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PA12RW4GWRR", + "ref": "A12RW4GWRR", + "name": "E.Leclerc Angerville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.89812, + 48.9298 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS3UNUSE4ZE", + "ref": "S3UNUSE4ZE", + "name": "Soultz-sous-Forêts, E.Leclerc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33766291, + 49.91268377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX2P436SZ2U", + "ref": "X2P436SZ2U", + "name": "E.Leclerc Rivery", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33766291, + 49.91268377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX2P436SZ2U", + "ref": "X2P436SZ2U", + "name": "E.Leclerc Rivery", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33766291, + 49.91268377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX2P436SZ2U", + "ref": "X2P436SZ2U", + "name": "E.Leclerc Rivery", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33766291, + 49.91268377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX2P436SZ2U", + "ref": "X2P436SZ2U", + "name": "E.Leclerc Rivery", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33766291, + 49.91268377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX2P436SZ2U", + "ref": "X2P436SZ2U", + "name": "E.Leclerc Rivery", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33766291, + 49.91268377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX2P436SZ2U", + "ref": "X2P436SZ2U", + "name": "E.Leclerc Rivery", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33766291, + 49.91268377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX2P436SZ2U", + "ref": "X2P436SZ2U", + "name": "E.Leclerc Rivery", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.89812, + 48.9298 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS3UNUSE4ZE", + "ref": "S3UNUSE4ZE", + "name": "Soultz-sous-Forêts, E.Leclerc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.89812, + 48.9298 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS3UNUSE4ZE", + "ref": "S3UNUSE4ZE", + "name": "Soultz-sous-Forêts, E.Leclerc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.89812, + 48.9298 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS3UNUSE4ZE", + "ref": "S3UNUSE4ZE", + "name": "Soultz-sous-Forêts, E.Leclerc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088952, + 48.398951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88167512, + 48.18844301 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJAKVHCRJTT", + "ref": "JAKVHCRJTT", + "name": "E.Leclerc, Contrexéville Public", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88167512, + 48.18844301 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJAKVHCRJTT", + "ref": "JAKVHCRJTT", + "name": "E.Leclerc, Contrexéville Public", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88167512, + 48.18844301 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJAKVHCRJTT", + "ref": "JAKVHCRJTT", + "name": "E.Leclerc, Contrexéville Public", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88167512, + 48.18844301 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJAKVHCRJTT", + "ref": "JAKVHCRJTT", + "name": "E.Leclerc, Contrexéville Public", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17732201, + 48.65391331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQUSUN2DQKD", + "ref": "QUSUN2DQKD", + "name": "E.Leclerc, Vandoeuvre-lès-Nancy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17732201, + 48.65391331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQUSUN2DQKD", + "ref": "QUSUN2DQKD", + "name": "E.Leclerc, Vandoeuvre-lès-Nancy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17732201, + 48.65391331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQUSUN2DQKD", + "ref": "QUSUN2DQKD", + "name": "E.Leclerc, Vandoeuvre-lès-Nancy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17732201, + 48.65391331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQUSUN2DQKD", + "ref": "QUSUN2DQKD", + "name": "E.Leclerc, Vandoeuvre-lès-Nancy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088952, + 48.398951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR7NKMNWNJE", + "ref": "R7NKMNWNJE", + "name": "E.Leclerc, Alençon Arconnay", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVEWFZ6V02A", + "ref": "VEWFZ6V02A", + "name": "E.Leclerc, Alès", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVEWFZ6V02A", + "ref": "VEWFZ6V02A", + "name": "E.Leclerc, Alès", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVEWFZ6V02A", + "ref": "VEWFZ6V02A", + "name": "E.Leclerc, Alès", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVEWFZ6V02A", + "ref": "VEWFZ6V02A", + "name": "E.Leclerc, Alès", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961078, + 48.31750806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PA12RW4GWRR", + "ref": "A12RW4GWRR", + "name": "E.Leclerc Angerville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961078, + 48.31750806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PA12RW4GWRR", + "ref": "A12RW4GWRR", + "name": "E.Leclerc Angerville", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961078, + 48.31750806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PA12RW4GWRR", + "ref": "A12RW4GWRR", + "name": "E.Leclerc Angerville", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961078, + 48.31750806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PA12RW4GWRR", + "ref": "A12RW4GWRR", + "name": "E.Leclerc Angerville", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POWQGWF0OGT", + "ref": "OWQGWF0OGT", + "name": "E.Leclerc, Angers", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVEWFZ6V02A", + "ref": "VEWFZ6V02A", + "name": "E.Leclerc, Alès", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVEWFZ6V02A", + "ref": "VEWFZ6V02A", + "name": "E.Leclerc, Alès", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVEWFZ6V02A", + "ref": "VEWFZ6V02A", + "name": "E.Leclerc, Alès", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVEWFZ6V02A", + "ref": "VEWFZ6V02A", + "name": "E.Leclerc, Alès", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVEWFZ6V02A", + "ref": "VEWFZ6V02A", + "name": "E.Leclerc, Alès", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZVJ9WGG12K", + "ref": "ZVJ9WGG12K", + "name": "E.Leclerc, Amboise", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZVJ9WGG12K", + "ref": "ZVJ9WGG12K", + "name": "E.Leclerc, Amboise", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZVJ9WGG12K", + "ref": "ZVJ9WGG12K", + "name": "E.Leclerc, Amboise", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZVJ9WGG12K", + "ref": "ZVJ9WGG12K", + "name": "E.Leclerc, Amboise", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZVJ9WGG12K", + "ref": "ZVJ9WGG12K", + "name": "E.Leclerc, Amboise", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZVJ9WGG12K", + "ref": "ZVJ9WGG12K", + "name": "E.Leclerc, Amboise", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZVJ9WGG12K", + "ref": "ZVJ9WGG12K", + "name": "E.Leclerc, Amboise", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZVJ9WGG12K", + "ref": "ZVJ9WGG12K", + "name": "E.Leclerc, Amboise", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZVJ9WGG12K", + "ref": "ZVJ9WGG12K", + "name": "E.Leclerc, Amboise", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZVJ9WGG12K", + "ref": "ZVJ9WGG12K", + "name": "E.Leclerc, Amboise", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45767958, + 48.86253975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZFEKUTTULE", + "ref": "ZFEKUTTULE", + "name": "E.Leclerc, Anet", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45767958, + 48.86253975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZFEKUTTULE", + "ref": "ZFEKUTTULE", + "name": "E.Leclerc, Anet", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45767958, + 48.86253975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZFEKUTTULE", + "ref": "ZFEKUTTULE", + "name": "E.Leclerc, Anet", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45767958, + 48.86253975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZFEKUTTULE", + "ref": "ZFEKUTTULE", + "name": "E.Leclerc, Anet", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34803255, + 48.38331171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGIAIHIV8XR", + "ref": "GIAIHIV8XR", + "name": "E.Leclerc, Plougastel", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77855612, + 48.49861058 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYBRK29KKAC", + "ref": "YBRK29KKAC", + "name": "E.Leclerc, Ploufragan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77855612, + 48.49861058 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYBRK29KKAC", + "ref": "YBRK29KKAC", + "name": "E.Leclerc, Ploufragan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77855612, + 48.49861058 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYBRK29KKAC", + "ref": "YBRK29KKAC", + "name": "E.Leclerc, Ploufragan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77855612, + 48.49861058 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYBRK29KKAC", + "ref": "YBRK29KKAC", + "name": "E.Leclerc, Ploufragan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34803255, + 48.38331171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGIAIHIV8XR", + "ref": "GIAIHIV8XR", + "name": "E.Leclerc, Plougastel", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34803255, + 48.38331171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGIAIHIV8XR", + "ref": "GIAIHIV8XR", + "name": "E.Leclerc, Plougastel", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34803255, + 48.38331171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGIAIHIV8XR", + "ref": "GIAIHIV8XR", + "name": "E.Leclerc, Plougastel", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34803255, + 48.38331171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGIAIHIV8XR", + "ref": "GIAIHIV8XR", + "name": "E.Leclerc, Plougastel", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34803255, + 48.38331171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGIAIHIV8XR", + "ref": "GIAIHIV8XR", + "name": "E.Leclerc, Plougastel", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34803255, + 48.38331171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGIAIHIV8XR", + "ref": "GIAIHIV8XR", + "name": "E.Leclerc, Plougastel", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.40592341, + 47.93877206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PL1KKD299J9", + "ref": "L1KKD299J9", + "name": "E.Leclerc, Ploermel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34803255, + 48.38331171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGIAIHIV8XR", + "ref": "GIAIHIV8XR", + "name": "E.Leclerc, Plougastel", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.40592341, + 47.93877206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PL1KKD299J9", + "ref": "L1KKD299J9", + "name": "E.Leclerc, Ploermel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02938061, + 47.9004567 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQNCX1RC4JP", + "ref": "QNCX1RC4JP", + "name": "E.Leclerc, Pleuven", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5346073, + 48.58220745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYCCDL67FO4", + "ref": "YCCDL67FO4", + "name": "E.Leclerc, Pleneuf Val André", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30127614, + -21.21755 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYQWPOFVGFO", + "ref": "YQWPOFVGFO", + "name": "E.Leclerc, Piton-Saint-Leu", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30127614, + -21.21755 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYQWPOFVGFO", + "ref": "YQWPOFVGFO", + "name": "E.Leclerc, Piton-Saint-Leu", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30127614, + -21.21755 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYQWPOFVGFO", + "ref": "YQWPOFVGFO", + "name": "E.Leclerc, Piton-Saint-Leu", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30127614, + -21.21755 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYQWPOFVGFO", + "ref": "YQWPOFVGFO", + "name": "E.Leclerc, Piton-Saint-Leu", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30127614, + -21.21755 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYQWPOFVGFO", + "ref": "YQWPOFVGFO", + "name": "E.Leclerc, Piton-Saint-Leu", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30127614, + -21.21755 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYQWPOFVGFO", + "ref": "YQWPOFVGFO", + "name": "E.Leclerc, Piton-Saint-Leu", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5346073, + 48.58220745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYCCDL67FO4", + "ref": "YCCDL67FO4", + "name": "E.Leclerc, Pleneuf Val André", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5346073, + 48.58220745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYCCDL67FO4", + "ref": "YCCDL67FO4", + "name": "E.Leclerc, Pleneuf Val André", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5346073, + 48.58220745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYCCDL67FO4", + "ref": "YCCDL67FO4", + "name": "E.Leclerc, Pleneuf Val André", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91751857, + 48.17635366 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POMOWLNFECU", + "ref": "OMOWLNFECU", + "name": "E.Leclerc, Pleumeleuc", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02284172, + 47.89907447 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIRPP8IVUJA", + "ref": "IRPP8IVUJA", + "name": "E.Leclerc, Pleuven Retail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91751857, + 48.17635366 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POMOWLNFECU", + "ref": "OMOWLNFECU", + "name": "E.Leclerc, Pleumeleuc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91751857, + 48.17635366 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POMOWLNFECU", + "ref": "OMOWLNFECU", + "name": "E.Leclerc, Pleumeleuc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91751857, + 48.17635366 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POMOWLNFECU", + "ref": "OMOWLNFECU", + "name": "E.Leclerc, Pleumeleuc", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02973957, + 47.90055518 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAQQEZYTWL4", + "ref": "AQQEZYTWL4", + "name": "E.Leclerc, Pleuven Hyper", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02973957, + 47.90055518 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAQQEZYTWL4", + "ref": "AQQEZYTWL4", + "name": "E.Leclerc, Pleuven Hyper", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02973957, + 47.90055518 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAQQEZYTWL4", + "ref": "AQQEZYTWL4", + "name": "E.Leclerc, Pleuven Hyper", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02938061, + 47.9004567 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQNCX1RC4JP", + "ref": "QNCX1RC4JP", + "name": "E.Leclerc, Pleuven", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02284172, + 47.89907447 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIRPP8IVUJA", + "ref": "IRPP8IVUJA", + "name": "E.Leclerc, Pleuven Retail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02973957, + 47.90055518 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAQQEZYTWL4", + "ref": "AQQEZYTWL4", + "name": "E.Leclerc, Pleuven Hyper", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PD2EUNOUMJS", + "ref": "D2EUNOUMJS", + "name": "E.Leclerc, Porto Vecchio", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.89656484, + 50.05887052 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZA8JA9BSVY", + "ref": "ZA8JA9BSVY", + "name": "E.Leclerc, Pont-Rémy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.89656484, + 50.05887052 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZA8JA9BSVY", + "ref": "ZA8JA9BSVY", + "name": "E.Leclerc, Pont-Rémy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08114988, + 47.43337469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSILXS1RMLH", + "ref": "SILXS1RMLH", + "name": "E.Leclerc, Pontchâteau", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08114988, + 47.43337469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSILXS1RMLH", + "ref": "SILXS1RMLH", + "name": "E.Leclerc, Pontchâteau", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08114988, + 47.43337469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSILXS1RMLH", + "ref": "SILXS1RMLH", + "name": "E.Leclerc, Pontchâteau", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08114988, + 47.43337469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSILXS1RMLH", + "ref": "SILXS1RMLH", + "name": "E.Leclerc, Pontchâteau", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08114988, + 47.43337469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSILXS1RMLH", + "ref": "SILXS1RMLH", + "name": "E.Leclerc, Pontchâteau", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08114988, + 47.43337469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSILXS1RMLH", + "ref": "SILXS1RMLH", + "name": "E.Leclerc, Pontchâteau", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PD2EUNOUMJS", + "ref": "D2EUNOUMJS", + "name": "E.Leclerc, Porto Vecchio", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PD2EUNOUMJS", + "ref": "D2EUNOUMJS", + "name": "E.Leclerc, Porto Vecchio", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35404564, + 46.56548395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQWRHODBYDL", + "ref": "QWRHODBYDL", + "name": "E.Leclerc, Poitiers", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PD2EUNOUMJS", + "ref": "D2EUNOUMJS", + "name": "E.Leclerc, Porto Vecchio", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PD2EUNOUMJS", + "ref": "D2EUNOUMJS", + "name": "E.Leclerc, Porto Vecchio", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PD2EUNOUMJS", + "ref": "D2EUNOUMJS", + "name": "E.Leclerc, Porto Vecchio", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PD2EUNOUMJS", + "ref": "D2EUNOUMJS", + "name": "E.Leclerc, Porto Vecchio", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PD2EUNOUMJS", + "ref": "D2EUNOUMJS", + "name": "E.Leclerc, Porto Vecchio", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14377052, + 47.6447619 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLINATGFY10GT3", + "ref": "LLINATGFY10GT3", + "name": "E.Leclerc, Pusey", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14377052, + 47.6447619 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLINATGFY10GT3", + "ref": "LLINATGFY10GT3", + "name": "E.Leclerc, Pusey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71811691, + 45.18910526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAGMLBZ12K4", + "ref": "AGMLBZ12K4", + "name": "E.Leclerc, Périgueux", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71811691, + 45.18910526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAGMLBZ12K4", + "ref": "AGMLBZ12K4", + "name": "E.Leclerc, Périgueux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35404564, + 46.56548395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQWRHODBYDL", + "ref": "QWRHODBYDL", + "name": "E.Leclerc, Poitiers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35404564, + 46.56548395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQWRHODBYDL", + "ref": "QWRHODBYDL", + "name": "E.Leclerc, Poitiers", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35404564, + 46.56548395 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQWRHODBYDL", + "ref": "QWRHODBYDL", + "name": "E.Leclerc, Poitiers", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIKQI33EAGO", + "ref": "IKQI33EAGO", + "name": "E.Leclerc, Plérin", + "capacity": "32", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30127614, + -21.21755 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYQWPOFVGFO", + "ref": "YQWPOFVGFO", + "name": "E.Leclerc, Piton-Saint-Leu", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30127614, + -21.21755 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYQWPOFVGFO", + "ref": "YQWPOFVGFO", + "name": "E.Leclerc, Piton-Saint-Leu", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22571194, + 44.82527227 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PW7KDI5HCIN", + "ref": "W7KDI5HCIN", + "name": "E.Leclerc, Pineuilh", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53047358, + 48.12114958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRYFDYJESIX", + "ref": "RYFDYJESIX", + "name": "E.Leclerc, Noyal-sur-Vilaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53047358, + 48.12114958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRYFDYJESIX", + "ref": "RYFDYJESIX", + "name": "E.Leclerc, Noyal-sur-Vilaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCQPVKJX8F5", + "ref": "CQPVKJX8F5", + "name": "E.Leclerc, Orly", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22571194, + 44.82527227 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PW7KDI5HCIN", + "ref": "W7KDI5HCIN", + "name": "E.Leclerc, Pineuilh", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83145571, + 48.3298175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKDPI0FF7U9", + "ref": "KDPI0FF7U9", + "name": "E.Leclerc, Nogent-le-Rotrou", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.67904098, + 50.47633241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYQSQKGBPL", + "ref": "CYQSQKGBPL", + "name": "E.Leclerc, Noeux-les-Mines", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.67904098, + 50.47633241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYQSQKGBPL", + "ref": "CYQSQKGBPL", + "name": "E.Leclerc, Noeux-les-Mines", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.67904098, + 50.47633241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYQSQKGBPL", + "ref": "CYQSQKGBPL", + "name": "E.Leclerc, Noeux-les-Mines", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83145571, + 48.3298175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKDPI0FF7U9", + "ref": "KDPI0FF7U9", + "name": "E.Leclerc, Nogent-le-Rotrou", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83145571, + 48.3298175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKDPI0FF7U9", + "ref": "KDPI0FF7U9", + "name": "E.Leclerc, Nogent-le-Rotrou", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83145571, + 48.3298175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKDPI0FF7U9", + "ref": "KDPI0FF7U9", + "name": "E.Leclerc, Nogent-le-Rotrou", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83145571, + 48.3298175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKDPI0FF7U9", + "ref": "KDPI0FF7U9", + "name": "E.Leclerc, Nogent-le-Rotrou", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83145571, + 48.3298175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKDPI0FF7U9", + "ref": "KDPI0FF7U9", + "name": "E.Leclerc, Nogent-le-Rotrou", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83145571, + 48.3298175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKDPI0FF7U9", + "ref": "KDPI0FF7U9", + "name": "E.Leclerc, Nogent-le-Rotrou", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83145571, + 48.3298175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKDPI0FF7U9", + "ref": "KDPI0FF7U9", + "name": "E.Leclerc, Nogent-le-Rotrou", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNSMOIFZBLP", + "ref": "NSMOIFZBLP", + "name": "E.Leclerc, Normanville", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCQPVKJX8F5", + "ref": "CQPVKJX8F5", + "name": "E.Leclerc, Orly", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCQPVKJX8F5", + "ref": "CQPVKJX8F5", + "name": "E.Leclerc, Orly", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCQPVKJX8F5", + "ref": "CQPVKJX8F5", + "name": "E.Leclerc, Orly", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTABXYFOLK", + "ref": "BTABXYFOLK", + "name": "E.Leclerc, Pessac", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00522909, + 47.10985352 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHEDAVFNBCX", + "ref": "HEDAVFNBCX", + "name": "E.Leclerc, Perrusson", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00522909, + 47.10985352 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHEDAVFNBCX", + "ref": "HEDAVFNBCX", + "name": "E.Leclerc, Perrusson", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTABXYFOLK", + "ref": "BTABXYFOLK", + "name": "E.Leclerc, Pessac", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTABXYFOLK", + "ref": "BTABXYFOLK", + "name": "E.Leclerc, Pessac", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTABXYFOLK", + "ref": "BTABXYFOLK", + "name": "E.Leclerc, Pessac", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTABXYFOLK", + "ref": "BTABXYFOLK", + "name": "E.Leclerc, Pessac", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTABXYFOLK", + "ref": "BTABXYFOLK", + "name": "E.Leclerc, Pessac", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTABXYFOLK", + "ref": "BTABXYFOLK", + "name": "E.Leclerc, Pessac", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTABXYFOLK", + "ref": "BTABXYFOLK", + "name": "E.Leclerc, Pessac", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTABXYFOLK", + "ref": "BTABXYFOLK", + "name": "E.Leclerc, Pessac", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCQPVKJX8F5", + "ref": "CQPVKJX8F5", + "name": "E.Leclerc, Orly", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTABXYFOLK", + "ref": "BTABXYFOLK", + "name": "E.Leclerc, Pessac", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTABXYFOLK", + "ref": "BTABXYFOLK", + "name": "E.Leclerc, Pessac", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTABXYFOLK", + "ref": "BTABXYFOLK", + "name": "E.Leclerc, Pessac", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTABXYFOLK", + "ref": "BTABXYFOLK", + "name": "E.Leclerc, Pessac", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTABXYFOLK", + "ref": "BTABXYFOLK", + "name": "E.Leclerc, Pessac", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTABXYFOLK", + "ref": "BTABXYFOLK", + "name": "E.Leclerc, Pessac", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTABXYFOLK", + "ref": "BTABXYFOLK", + "name": "E.Leclerc, Pessac", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22571194, + 44.82527227 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PW7KDI5HCIN", + "ref": "W7KDI5HCIN", + "name": "E.Leclerc, Pineuilh", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22571194, + 44.82527227 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PW7KDI5HCIN", + "ref": "W7KDI5HCIN", + "name": "E.Leclerc, Pineuilh", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00522909, + 47.10985352 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHEDAVFNBCX", + "ref": "HEDAVFNBCX", + "name": "E.Leclerc, Perrusson", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00522909, + 47.10985352 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHEDAVFNBCX", + "ref": "HEDAVFNBCX", + "name": "E.Leclerc, Perrusson", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00522909, + 47.10985352 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHEDAVFNBCX", + "ref": "HEDAVFNBCX", + "name": "E.Leclerc, Perrusson", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00522909, + 47.10985352 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHEDAVFNBCX", + "ref": "HEDAVFNBCX", + "name": "E.Leclerc, Perrusson", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCQPVKJX8F5", + "ref": "CQPVKJX8F5", + "name": "E.Leclerc, Orly", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCQPVKJX8F5", + "ref": "CQPVKJX8F5", + "name": "E.Leclerc, Orly", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCQPVKJX8F5", + "ref": "CQPVKJX8F5", + "name": "E.Leclerc, Orly", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCQPVKJX8F5", + "ref": "CQPVKJX8F5", + "name": "E.Leclerc, Orly", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCQPVKJX8F5", + "ref": "CQPVKJX8F5", + "name": "E.Leclerc, Orly", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCQPVKJX8F5", + "ref": "CQPVKJX8F5", + "name": "E.Leclerc, Orly", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCQPVKJX8F5", + "ref": "CQPVKJX8F5", + "name": "E.Leclerc, Orly", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYQJMOPCAAH", + "ref": "YQJMOPCAAH", + "name": "E.Leclerc, Osny", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYQJMOPCAAH", + "ref": "YQJMOPCAAH", + "name": "E.Leclerc, Osny", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYQJMOPCAAH", + "ref": "YQJMOPCAAH", + "name": "E.Leclerc, Osny", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYQJMOPCAAH", + "ref": "YQJMOPCAAH", + "name": "E.Leclerc, Osny", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYQJMOPCAAH", + "ref": "YQJMOPCAAH", + "name": "E.Leclerc, Osny", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYQJMOPCAAH", + "ref": "YQJMOPCAAH", + "name": "E.Leclerc, Osny", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYQJMOPCAAH", + "ref": "YQJMOPCAAH", + "name": "E.Leclerc, Osny", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYQJMOPCAAH", + "ref": "YQJMOPCAAH", + "name": "E.Leclerc, Osny", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22413016, + 46.64877332 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPWO9NBXWE4", + "ref": "PWO9NBXWE4", + "name": "E.Leclerc, Parthenay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.22413016, + 46.64877332 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPWO9NBXWE4", + "ref": "PWO9NBXWE4", + "name": "E.Leclerc, Parthenay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00522909, + 47.10985352 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHEDAVFNBCX", + "ref": "HEDAVFNBCX", + "name": "E.Leclerc, Perrusson", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00522909, + 47.10985352 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHEDAVFNBCX", + "ref": "HEDAVFNBCX", + "name": "E.Leclerc, Perrusson", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71811691, + 45.18910526 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAGMLBZ12K4", + "ref": "AGMLBZ12K4", + "name": "E.Leclerc, Périgueux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRXLCWHBKRY", + "ref": "RXLCWHBKRY", + "name": "E.Leclerc, Quimper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRXLCWHBKRY", + "ref": "RXLCWHBKRY", + "name": "E.Leclerc, Quimper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.00184627, + 49.28107517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWV21IYOQMR", + "ref": "WV21IYOQMR", + "name": "E.Leclerc, Saint-Brice-Courcelles - Parking Centre Auto", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.00039995, + 49.28251109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTXZL7KODSA", + "ref": "TXZL7KODSA", + "name": "E.Leclerc, Saint-Brice-Courcelles - Parking Hyper", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.00039995, + 49.28251109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTXZL7KODSA", + "ref": "TXZL7KODSA", + "name": "E.Leclerc, Saint-Brice-Courcelles - Parking Hyper", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.00039995, + 49.28251109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTXZL7KODSA", + "ref": "TXZL7KODSA", + "name": "E.Leclerc, Saint-Brice-Courcelles - Parking Hyper", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.00039995, + 49.28251109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTXZL7KODSA", + "ref": "TXZL7KODSA", + "name": "E.Leclerc, Saint-Brice-Courcelles - Parking Hyper", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.00039995, + 49.28251109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTXZL7KODSA", + "ref": "TXZL7KODSA", + "name": "E.Leclerc, Saint-Brice-Courcelles - Parking Hyper", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.00184627, + 49.28107517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWV21IYOQMR", + "ref": "WV21IYOQMR", + "name": "E.Leclerc, Saint-Brice-Courcelles - Parking Centre Auto", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.00184627, + 49.28107517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWV21IYOQMR", + "ref": "WV21IYOQMR", + "name": "E.Leclerc, Saint-Brice-Courcelles - Parking Centre Auto", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.00184627, + 49.28107517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWV21IYOQMR", + "ref": "WV21IYOQMR", + "name": "E.Leclerc, Saint-Brice-Courcelles - Parking Centre Auto", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.00039995, + 49.28251109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTXZL7KODSA", + "ref": "TXZL7KODSA", + "name": "E.Leclerc, Saint-Brice-Courcelles - Parking Hyper", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.21628188, + 46.98382924 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJAXAX0EZZT", + "ref": "JAXAX0EZZT", + "name": "E.Leclerc, Saint-Eloi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89759651, + 48.40075355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVRYGY9TY8G", + "ref": "VRYGY9TY8G", + "name": "E.Leclerc, Saint-Brandan", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.21628188, + 46.98382924 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJAXAX0EZZT", + "ref": "JAXAX0EZZT", + "name": "E.Leclerc, Saint-Eloi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.07381283, + 49.38695036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDZIWFR8Y4", + "ref": "GDZIWFR8Y4", + "name": "E.Leclerc, Saint-Etienne-du-Rouvray", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.07381283, + 49.38695036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDZIWFR8Y4", + "ref": "GDZIWFR8Y4", + "name": "E.Leclerc, Saint-Etienne-du-Rouvray", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.07381283, + 49.38695036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDZIWFR8Y4", + "ref": "GDZIWFR8Y4", + "name": "E.Leclerc, Saint-Etienne-du-Rouvray", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.07381283, + 49.38695036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDZIWFR8Y4", + "ref": "GDZIWFR8Y4", + "name": "E.Leclerc, Saint-Etienne-du-Rouvray", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.07381283, + 49.38695036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDZIWFR8Y4", + "ref": "GDZIWFR8Y4", + "name": "E.Leclerc, Saint-Etienne-du-Rouvray", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.07381283, + 49.38695036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDZIWFR8Y4", + "ref": "GDZIWFR8Y4", + "name": "E.Leclerc, Saint-Etienne-du-Rouvray", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.07381283, + 49.38695036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDZIWFR8Y4", + "ref": "GDZIWFR8Y4", + "name": "E.Leclerc, Saint-Etienne-du-Rouvray", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.07381283, + 49.38695036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDZIWFR8Y4", + "ref": "GDZIWFR8Y4", + "name": "E.Leclerc, Saint-Etienne-du-Rouvray", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89759651, + 48.40075355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVRYGY9TY8G", + "ref": "VRYGY9TY8G", + "name": "E.Leclerc, Saint-Brandan", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89759651, + 48.40075355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVRYGY9TY8G", + "ref": "VRYGY9TY8G", + "name": "E.Leclerc, Saint-Brandan", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80743472, + 48.06397015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBBULJZHSML", + "ref": "BBULJZHSML", + "name": "E.Leclerc Saint Berthevin", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91620303, + 45.89561984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWT3OVRA4UG", + "ref": "WT3OVRA4UG", + "name": "E.Leclerc Saint Junien", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80743472, + 48.06397015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBBULJZHSML", + "ref": "BBULJZHSML", + "name": "E.Leclerc Saint Berthevin", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80743472, + 48.06397015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBBULJZHSML", + "ref": "BBULJZHSML", + "name": "E.Leclerc Saint Berthevin", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80743472, + 48.06397015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBBULJZHSML", + "ref": "BBULJZHSML", + "name": "E.Leclerc Saint Berthevin", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80743472, + 48.06397015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBBULJZHSML", + "ref": "BBULJZHSML", + "name": "E.Leclerc Saint Berthevin", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91620303, + 45.89561984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWT3OVRA4UG", + "ref": "WT3OVRA4UG", + "name": "E.Leclerc Saint Junien", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91620303, + 45.89561984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWT3OVRA4UG", + "ref": "WT3OVRA4UG", + "name": "E.Leclerc Saint Junien", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91620303, + 45.89561984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWT3OVRA4UG", + "ref": "WT3OVRA4UG", + "name": "E.Leclerc Saint Junien", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91466843, + 45.89626572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHUD0LV94TU", + "ref": "HUD0LV94TU", + "name": "E.Leclerc Saint Junien", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91466843, + 45.89626572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHUD0LV94TU", + "ref": "HUD0LV94TU", + "name": "E.Leclerc Saint Junien", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91664318, + 45.89638519 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR82R4YH1ZS", + "ref": "R82R4YH1ZS", + "name": "E.Leclerc Saint Junien, Centre Auto", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89759651, + 48.40075355 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVRYGY9TY8G", + "ref": "VRYGY9TY8G", + "name": "E.Leclerc, Saint-Brandan", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91664318, + 45.89638519 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR82R4YH1ZS", + "ref": "R82R4YH1ZS", + "name": "E.Leclerc Saint Junien, Centre Auto", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91620303, + 45.89561984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWT3OVRA4UG", + "ref": "WT3OVRA4UG", + "name": "E.Leclerc Saint Junien", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91620303, + 45.89561984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWT3OVRA4UG", + "ref": "WT3OVRA4UG", + "name": "E.Leclerc Saint Junien", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91620303, + 45.89561984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWT3OVRA4UG", + "ref": "WT3OVRA4UG", + "name": "E.Leclerc Saint Junien", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91620303, + 45.89561984 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWT3OVRA4UG", + "ref": "WT3OVRA4UG", + "name": "E.Leclerc Saint Junien", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54661705, + 46.72399705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKAHQKZVTML", + "ref": "KAHQKZVTML", + "name": "E.Leclerc, Saint-Amand-Montrond", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54661705, + 46.72399705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKAHQKZVTML", + "ref": "KAHQKZVTML", + "name": "E.Leclerc, Saint-Amand-Montrond", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54661705, + 46.72399705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKAHQKZVTML", + "ref": "KAHQKZVTML", + "name": "E.Leclerc, Saint-Amand-Montrond", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54661705, + 46.72399705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PKAHQKZVTML", + "ref": "KAHQKZVTML", + "name": "E.Leclerc, Saint-Amand-Montrond", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.07381283, + 49.38695036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDZIWFR8Y4", + "ref": "GDZIWFR8Y4", + "name": "E.Leclerc, Saint-Etienne-du-Rouvray", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.07381283, + 49.38695036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDZIWFR8Y4", + "ref": "GDZIWFR8Y4", + "name": "E.Leclerc, Saint-Etienne-du-Rouvray", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.07381283, + 49.38695036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDZIWFR8Y4", + "ref": "GDZIWFR8Y4", + "name": "E.Leclerc, Saint-Etienne-du-Rouvray", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLC5TWHDA5O", + "ref": "LC5TWHDA5O", + "name": "E.Leclerc, Saint-Maur", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.973002, + 48.657533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXARMSHHUZH", + "ref": "XARMSHHUZH", + "name": "E.Leclerc, Saint-Malo", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.973002, + 48.657533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXARMSHHUZH", + "ref": "XARMSHHUZH", + "name": "E.Leclerc, Saint-Malo", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.973002, + 48.657533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXARMSHHUZH", + "ref": "XARMSHHUZH", + "name": "E.Leclerc, Saint-Malo", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.973002, + 48.657533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXARMSHHUZH", + "ref": "XARMSHHUZH", + "name": "E.Leclerc, Saint-Malo", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.973002, + 48.657533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXARMSHHUZH", + "ref": "XARMSHHUZH", + "name": "E.Leclerc, Saint-Malo", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLC5TWHDA5O", + "ref": "LC5TWHDA5O", + "name": "E.Leclerc, Saint-Maur", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLC5TWHDA5O", + "ref": "LC5TWHDA5O", + "name": "E.Leclerc, Saint-Maur", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLC5TWHDA5O", + "ref": "LC5TWHDA5O", + "name": "E.Leclerc, Saint-Maur", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLC5TWHDA5O", + "ref": "LC5TWHDA5O", + "name": "E.Leclerc, Saint-Maur", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLC5TWHDA5O", + "ref": "LC5TWHDA5O", + "name": "E.Leclerc, Saint-Maur", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.07381283, + 49.38695036 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGDZIWFR8Y4", + "ref": "GDZIWFR8Y4", + "name": "E.Leclerc, Saint-Etienne-du-Rouvray", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLC5TWHDA5O", + "ref": "LC5TWHDA5O", + "name": "E.Leclerc, Saint-Maur", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLC5TWHDA5O", + "ref": "LC5TWHDA5O", + "name": "E.Leclerc, Saint-Maur", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJJVAYN6WHW", + "ref": "JJVAYN6WHW", + "name": "E.Leclerc, Saint-Médard-en-Jalles", + "capacity": "30", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.973002, + 48.657533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXARMSHHUZH", + "ref": "XARMSHHUZH", + "name": "E.Leclerc, Saint-Malo", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43341, + 49.5119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMCOGHNKVCW", + "ref": "MCOGHNKVCW", + "name": "E.Leclerc, Saint-Just-en-Chaussée", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43341, + 49.5119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMCOGHNKVCW", + "ref": "MCOGHNKVCW", + "name": "E.Leclerc, Saint-Just-en-Chaussée", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43341, + 49.5119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMCOGHNKVCW", + "ref": "MCOGHNKVCW", + "name": "E.Leclerc, Saint-Just-en-Chaussée", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFVPEOSH3BV", + "ref": "FVPEOSH3BV", + "name": "E.Leclerc, Saint-Jean-de-Linières", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFVPEOSH3BV", + "ref": "FVPEOSH3BV", + "name": "E.Leclerc, Saint-Jean-de-Linières", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFVPEOSH3BV", + "ref": "FVPEOSH3BV", + "name": "E.Leclerc, Saint-Jean-de-Linières", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFVPEOSH3BV", + "ref": "FVPEOSH3BV", + "name": "E.Leclerc, Saint-Jean-de-Linières", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFVPEOSH3BV", + "ref": "FVPEOSH3BV", + "name": "E.Leclerc, Saint-Jean-de-Linières", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFVPEOSH3BV", + "ref": "FVPEOSH3BV", + "name": "E.Leclerc, Saint-Jean-de-Linières", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFVPEOSH3BV", + "ref": "FVPEOSH3BV", + "name": "E.Leclerc, Saint-Jean-de-Linières", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFVPEOSH3BV", + "ref": "FVPEOSH3BV", + "name": "E.Leclerc, Saint-Jean-de-Linières", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFVPEOSH3BV", + "ref": "FVPEOSH3BV", + "name": "E.Leclerc, Saint-Jean-de-Linières", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFVPEOSH3BV", + "ref": "FVPEOSH3BV", + "name": "E.Leclerc, Saint-Jean-de-Linières", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43341, + 49.5119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMCOGHNKVCW", + "ref": "MCOGHNKVCW", + "name": "E.Leclerc, Saint-Just-en-Chaussée", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43341, + 49.5119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMCOGHNKVCW", + "ref": "MCOGHNKVCW", + "name": "E.Leclerc, Saint-Just-en-Chaussée", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43341, + 49.5119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMCOGHNKVCW", + "ref": "MCOGHNKVCW", + "name": "E.Leclerc, Saint-Just-en-Chaussée", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43341, + 49.5119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMCOGHNKVCW", + "ref": "MCOGHNKVCW", + "name": "E.Leclerc, Saint-Just-en-Chaussée", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43341, + 49.5119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMCOGHNKVCW", + "ref": "MCOGHNKVCW", + "name": "E.Leclerc, Saint-Just-en-Chaussée", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43341, + 49.5119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMCOGHNKVCW", + "ref": "MCOGHNKVCW", + "name": "E.Leclerc, Saint-Just-en-Chaussée", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43341, + 49.5119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMCOGHNKVCW", + "ref": "MCOGHNKVCW", + "name": "E.Leclerc, Saint-Just-en-Chaussée", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43341, + 49.5119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMCOGHNKVCW", + "ref": "MCOGHNKVCW", + "name": "E.Leclerc, Saint-Just-en-Chaussée", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43341, + 49.5119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMCOGHNKVCW", + "ref": "MCOGHNKVCW", + "name": "E.Leclerc, Saint-Just-en-Chaussée", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80743472, + 48.06397015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBBULJZHSML", + "ref": "BBULJZHSML", + "name": "E.Leclerc Saint Berthevin", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80743472, + 48.06397015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBBULJZHSML", + "ref": "BBULJZHSML", + "name": "E.Leclerc Saint Berthevin", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRXLCWHBKRY", + "ref": "RXLCWHBKRY", + "name": "E.Leclerc, Quimper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG7YCDUZGUS", + "ref": "G7YCDUZGUS", + "name": "E.Leclerc, Rennes Saint Gregoire", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG7YCDUZGUS", + "ref": "G7YCDUZGUS", + "name": "E.Leclerc, Rennes Saint Gregoire", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG7YCDUZGUS", + "ref": "G7YCDUZGUS", + "name": "E.Leclerc, Rennes Saint Gregoire", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG7YCDUZGUS", + "ref": "G7YCDUZGUS", + "name": "E.Leclerc, Rennes Saint Gregoire", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG7YCDUZGUS", + "ref": "G7YCDUZGUS", + "name": "E.Leclerc, Rennes Saint Gregoire", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG7YCDUZGUS", + "ref": "G7YCDUZGUS", + "name": "E.Leclerc, Rennes Saint Gregoire", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG7YCDUZGUS", + "ref": "G7YCDUZGUS", + "name": "E.Leclerc, Rennes Saint Gregoire", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG7YCDUZGUS", + "ref": "G7YCDUZGUS", + "name": "E.Leclerc, Rennes Saint Gregoire", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG7YCDUZGUS", + "ref": "G7YCDUZGUS", + "name": "E.Leclerc, Rennes Saint Gregoire", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG7YCDUZGUS", + "ref": "G7YCDUZGUS", + "name": "E.Leclerc, Rennes Saint Gregoire", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG7YCDUZGUS", + "ref": "G7YCDUZGUS", + "name": "E.Leclerc, Rennes Saint Gregoire", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG7YCDUZGUS", + "ref": "G7YCDUZGUS", + "name": "E.Leclerc, Rennes Saint Gregoire", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG7YCDUZGUS", + "ref": "G7YCDUZGUS", + "name": "E.Leclerc, Rennes Saint Gregoire", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG7YCDUZGUS", + "ref": "G7YCDUZGUS", + "name": "E.Leclerc, Rennes Saint Gregoire", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.33768229, + 48.19015659 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAUUTZ5ZPWK", + "ref": "AUUTZ5ZPWK", + "name": "E.Leclerc, Ribeauvillé", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.33768229, + 48.19015659 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAUUTZ5ZPWK", + "ref": "AUUTZ5ZPWK", + "name": "E.Leclerc, Ribeauvillé", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.33768229, + 48.19015659 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAUUTZ5ZPWK", + "ref": "AUUTZ5ZPWK", + "name": "E.Leclerc, Ribeauvillé", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.33768229, + 48.19015659 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAUUTZ5ZPWK", + "ref": "AUUTZ5ZPWK", + "name": "E.Leclerc, Ribeauvillé", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05470158, + 46.04503677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXL2OE745FF", + "ref": "XL2OE745FF", + "name": "E.Leclerc, Riorges", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05470158, + 46.04503677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXL2OE745FF", + "ref": "XL2OE745FF", + "name": "E.Leclerc, Riorges", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05470158, + 46.04503677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXL2OE745FF", + "ref": "XL2OE745FF", + "name": "E.Leclerc, Riorges", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG7YCDUZGUS", + "ref": "G7YCDUZGUS", + "name": "E.Leclerc, Rennes Saint Gregoire", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG7YCDUZGUS", + "ref": "G7YCDUZGUS", + "name": "E.Leclerc, Rennes Saint Gregoire", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80743472, + 48.06397015 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBBULJZHSML", + "ref": "BBULJZHSML", + "name": "E.Leclerc Saint Berthevin", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.85628406, + 48.64680402 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCITGXODUAA", + "ref": "CITGXODUAA", + "name": "E.Leclerc, Rambouillet", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRXLCWHBKRY", + "ref": "RXLCWHBKRY", + "name": "E.Leclerc, Quimper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRXLCWHBKRY", + "ref": "RXLCWHBKRY", + "name": "E.Leclerc, Quimper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRXLCWHBKRY", + "ref": "RXLCWHBKRY", + "name": "E.Leclerc, Quimper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRXLCWHBKRY", + "ref": "RXLCWHBKRY", + "name": "E.Leclerc, Quimper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRXLCWHBKRY", + "ref": "RXLCWHBKRY", + "name": "E.Leclerc, Quimper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRXLCWHBKRY", + "ref": "RXLCWHBKRY", + "name": "E.Leclerc, Quimper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRXLCWHBKRY", + "ref": "RXLCWHBKRY", + "name": "E.Leclerc, Quimper", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.85628406, + 48.64680402 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCITGXODUAA", + "ref": "CITGXODUAA", + "name": "E.Leclerc, Rambouillet", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.85628406, + 48.64680402 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCITGXODUAA", + "ref": "CITGXODUAA", + "name": "E.Leclerc, Rambouillet", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.85628406, + 48.64680402 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCITGXODUAA", + "ref": "CITGXODUAA", + "name": "E.Leclerc, Rambouillet", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFADPDFV1VI", + "ref": "FADPDFV1VI", + "name": "E.Leclerc, Rennes", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFADPDFV1VI", + "ref": "FADPDFV1VI", + "name": "E.Leclerc, Rennes", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFADPDFV1VI", + "ref": "FADPDFV1VI", + "name": "E.Leclerc, Rennes", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFADPDFV1VI", + "ref": "FADPDFV1VI", + "name": "E.Leclerc, Rennes", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFADPDFV1VI", + "ref": "FADPDFV1VI", + "name": "E.Leclerc, Rennes", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFADPDFV1VI", + "ref": "FADPDFV1VI", + "name": "E.Leclerc, Rennes", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFADPDFV1VI", + "ref": "FADPDFV1VI", + "name": "E.Leclerc, Rennes", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFADPDFV1VI", + "ref": "FADPDFV1VI", + "name": "E.Leclerc, Rennes", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFADPDFV1VI", + "ref": "FADPDFV1VI", + "name": "E.Leclerc, Rennes", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFADPDFV1VI", + "ref": "FADPDFV1VI", + "name": "E.Leclerc, Rennes", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05470158, + 46.04503677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXL2OE745FF", + "ref": "XL2OE745FF", + "name": "E.Leclerc, Riorges", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05470158, + 46.04503677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXL2OE745FF", + "ref": "XL2OE745FF", + "name": "E.Leclerc, Riorges", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05470158, + 46.04503677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXL2OE745FF", + "ref": "XL2OE745FF", + "name": "E.Leclerc, Riorges", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PY6GYO7OHI0", + "ref": "Y6GYO7OHI0", + "name": "E.Leclerc, Rueil-Malmaison", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ9YFZ96UNZ", + "ref": "J9YFZ96UNZ", + "name": "E.Leclerc, Royan", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ9YFZ96UNZ", + "ref": "J9YFZ96UNZ", + "name": "E.Leclerc, Royan", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PY6GYO7OHI0", + "ref": "Y6GYO7OHI0", + "name": "E.Leclerc, Rueil-Malmaison", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PY6GYO7OHI0", + "ref": "Y6GYO7OHI0", + "name": "E.Leclerc, Rueil-Malmaison", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PY6GYO7OHI0", + "ref": "Y6GYO7OHI0", + "name": "E.Leclerc, Rueil-Malmaison", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PY6GYO7OHI0", + "ref": "Y6GYO7OHI0", + "name": "E.Leclerc, Rueil-Malmaison", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PY6GYO7OHI0", + "ref": "Y6GYO7OHI0", + "name": "E.Leclerc, Rueil-Malmaison", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PY6GYO7OHI0", + "ref": "Y6GYO7OHI0", + "name": "E.Leclerc, Rueil-Malmaison", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PY6GYO7OHI0", + "ref": "Y6GYO7OHI0", + "name": "E.Leclerc, Rueil-Malmaison", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PY6GYO7OHI0", + "ref": "Y6GYO7OHI0", + "name": "E.Leclerc, Rueil-Malmaison", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGRUBML7KD", + "ref": "PGRUBML7KD", + "name": "E.Leclerc, Romorantin", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PY6GYO7OHI0", + "ref": "Y6GYO7OHI0", + "name": "E.Leclerc, Rueil-Malmaison", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77789362, + 46.51400657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXPTGCMDV0U", + "ref": "XPTGCMDV0U", + "name": "E.Leclerc, Sables d'Olonne", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77789362, + 46.51400657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXPTGCMDV0U", + "ref": "XPTGCMDV0U", + "name": "E.Leclerc, Sables d'Olonne", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77789362, + 46.51400657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXPTGCMDV0U", + "ref": "XPTGCMDV0U", + "name": "E.Leclerc, Sables d'Olonne", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77789362, + 46.51400657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXPTGCMDV0U", + "ref": "XPTGCMDV0U", + "name": "E.Leclerc, Sables d'Olonne", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77789362, + 46.51400657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXPTGCMDV0U", + "ref": "XPTGCMDV0U", + "name": "E.Leclerc, Sables d'Olonne", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77789362, + 46.51400657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXPTGCMDV0U", + "ref": "XPTGCMDV0U", + "name": "E.Leclerc, Sables d'Olonne", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77789362, + 46.51400657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXPTGCMDV0U", + "ref": "XPTGCMDV0U", + "name": "E.Leclerc, Sables d'Olonne", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77789362, + 46.51400657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXPTGCMDV0U", + "ref": "XPTGCMDV0U", + "name": "E.Leclerc, Sables d'Olonne", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ9YFZ96UNZ", + "ref": "J9YFZ96UNZ", + "name": "E.Leclerc, Royan", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ9YFZ96UNZ", + "ref": "J9YFZ96UNZ", + "name": "E.Leclerc, Royan", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ9YFZ96UNZ", + "ref": "J9YFZ96UNZ", + "name": "E.Leclerc, Royan", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ9YFZ96UNZ", + "ref": "J9YFZ96UNZ", + "name": "E.Leclerc, Royan", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGRUBML7KD", + "ref": "PGRUBML7KD", + "name": "E.Leclerc, Romorantin", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGRUBML7KD", + "ref": "PGRUBML7KD", + "name": "E.Leclerc, Romorantin", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGRUBML7KD", + "ref": "PGRUBML7KD", + "name": "E.Leclerc, Romorantin", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGRUBML7KD", + "ref": "PGRUBML7KD", + "name": "E.Leclerc, Romorantin", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGRUBML7KD", + "ref": "PGRUBML7KD", + "name": "E.Leclerc, Romorantin", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGRUBML7KD", + "ref": "PGRUBML7KD", + "name": "E.Leclerc, Romorantin", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGRUBML7KD", + "ref": "PGRUBML7KD", + "name": "E.Leclerc, Romorantin", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGRUBML7KD", + "ref": "PGRUBML7KD", + "name": "E.Leclerc, Romorantin", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGRUBML7KD", + "ref": "PGRUBML7KD", + "name": "E.Leclerc, Romorantin", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGRUBML7KD", + "ref": "PGRUBML7KD", + "name": "E.Leclerc, Romorantin", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PPGRUBML7KD", + "ref": "PGRUBML7KD", + "name": "E.Leclerc, Romorantin", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41551462, + 51.04589991 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS9CNIAGWFB", + "ref": "S9CNIAGWFB", + "name": "E.Leclerc, Rosendael", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41551462, + 51.04589991 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS9CNIAGWFB", + "ref": "S9CNIAGWFB", + "name": "E.Leclerc, Rosendael", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41551462, + 51.04589991 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS9CNIAGWFB", + "ref": "S9CNIAGWFB", + "name": "E.Leclerc, Rosendael", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41551462, + 51.04589991 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS9CNIAGWFB", + "ref": "S9CNIAGWFB", + "name": "E.Leclerc, Rosendael", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ9YFZ96UNZ", + "ref": "J9YFZ96UNZ", + "name": "E.Leclerc, Royan", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ9YFZ96UNZ", + "ref": "J9YFZ96UNZ", + "name": "E.Leclerc, Royan", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ9YFZ96UNZ", + "ref": "J9YFZ96UNZ", + "name": "E.Leclerc, Royan", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ9YFZ96UNZ", + "ref": "J9YFZ96UNZ", + "name": "E.Leclerc, Royan", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.67904098, + 50.47633241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PCYQSQKGBPL", + "ref": "CYQSQKGBPL", + "name": "E.Leclerc, Noeux-les-Mines", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40923015, + 46.3375545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGU3XHH5FGE", + "ref": "GU3XHH5FGE", + "name": "E.Leclerc, Niort Station B Location", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40923015, + 46.3375545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGU3XHH5FGE", + "ref": "GU3XHH5FGE", + "name": "E.Leclerc, Niort Station B Location", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92669753, + 44.20242742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PW9UNHTTQOI", + "ref": "W9UNHTTQOI", + "name": "E.Leclerc Labouheyre", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.56037166, + -20.8976211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", + "ref": "NVOX3RW4SD", + "name": "E.Leclerc, La Réserve", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.56037166, + -20.8976211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", + "ref": "NVOX3RW4SD", + "name": "E.Leclerc, La Réserve", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.56037166, + -20.8976211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", + "ref": "NVOX3RW4SD", + "name": "E.Leclerc, La Réserve", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.56037166, + -20.8976211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", + "ref": "NVOX3RW4SD", + "name": "E.Leclerc, La Réserve", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.56037166, + -20.8976211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", + "ref": "NVOX3RW4SD", + "name": "E.Leclerc, La Réserve", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77707723, + 49.35859995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZTSPFG0NRB", + "ref": "ZTSPFG0NRB", + "name": "E.Leclerc, La-Croix-Saint-Ouen", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77707723, + 49.35859995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZTSPFG0NRB", + "ref": "ZTSPFG0NRB", + "name": "E.Leclerc, La-Croix-Saint-Ouen", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77707723, + 49.35859995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZTSPFG0NRB", + "ref": "ZTSPFG0NRB", + "name": "E.Leclerc, La-Croix-Saint-Ouen", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77707723, + 49.35859995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZTSPFG0NRB", + "ref": "ZTSPFG0NRB", + "name": "E.Leclerc, La-Croix-Saint-Ouen", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92669753, + 44.20242742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PW9UNHTTQOI", + "ref": "W9UNHTTQOI", + "name": "E.Leclerc Labouheyre", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.56037166, + -20.8976211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", + "ref": "NVOX3RW4SD", + "name": "E.Leclerc, La Réserve", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92669753, + 44.20242742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PW9UNHTTQOI", + "ref": "W9UNHTTQOI", + "name": "E.Leclerc Labouheyre", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92669753, + 44.20242742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PW9UNHTTQOI", + "ref": "W9UNHTTQOI", + "name": "E.Leclerc Labouheyre", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92669753, + 44.20242742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PW9UNHTTQOI", + "ref": "W9UNHTTQOI", + "name": "E.Leclerc Labouheyre", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92669753, + 44.20242742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PW9UNHTTQOI", + "ref": "W9UNHTTQOI", + "name": "E.Leclerc Labouheyre", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92669753, + 44.20242742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PW9UNHTTQOI", + "ref": "W9UNHTTQOI", + "name": "E.Leclerc Labouheyre", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92669753, + 44.20242742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PW9UNHTTQOI", + "ref": "W9UNHTTQOI", + "name": "E.Leclerc Labouheyre", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716476, + 46.17291786 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAGK8IODLYI", + "ref": "AGK8IODLYI", + "name": "E.Leclerc, Lagord Charent", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716476, + 46.17291786 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAGK8IODLYI", + "ref": "AGK8IODLYI", + "name": "E.Leclerc, Lagord Charent", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716476, + 46.17291786 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAGK8IODLYI", + "ref": "AGK8IODLYI", + "name": "E.Leclerc, Lagord Charent", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.56037166, + -20.8976211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", + "ref": "NVOX3RW4SD", + "name": "E.Leclerc, La Réserve", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.56037166, + -20.8976211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", + "ref": "NVOX3RW4SD", + "name": "E.Leclerc, La Réserve", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37042547, + 48.57633739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12757874, + 45.76126962 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQLTQGIT4ND", + "ref": "QLTQGIT4ND", + "name": "E.Leclerc, La Pardieu", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37042547, + 48.57633739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37042547, + 48.57633739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37042547, + 48.57633739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36859046, + 48.57543588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36859046, + 48.57543588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36859046, + 48.57543588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37042547, + 48.57633739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37042547, + 48.57633739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37042547, + 48.57633739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12757874, + 45.76126962 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQLTQGIT4ND", + "ref": "QLTQGIT4ND", + "name": "E.Leclerc, La Pardieu", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.56037166, + -20.8976211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", + "ref": "NVOX3RW4SD", + "name": "E.Leclerc, La Réserve", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12757874, + 45.76126962 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQLTQGIT4ND", + "ref": "QLTQGIT4ND", + "name": "E.Leclerc, La Pardieu", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12757874, + 45.76126962 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQLTQGIT4ND", + "ref": "QLTQGIT4ND", + "name": "E.Leclerc, La Pardieu", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12757874, + 45.76126962 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQLTQGIT4ND", + "ref": "QLTQGIT4ND", + "name": "E.Leclerc, La Pardieu", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12757874, + 45.76126962 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQLTQGIT4ND", + "ref": "QLTQGIT4ND", + "name": "E.Leclerc, La Pardieu", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.56037166, + -20.8976211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", + "ref": "NVOX3RW4SD", + "name": "E.Leclerc, La Réserve", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.56037166, + -20.8976211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", + "ref": "NVOX3RW4SD", + "name": "E.Leclerc, La Réserve", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.56037166, + -20.8976211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", + "ref": "NVOX3RW4SD", + "name": "E.Leclerc, La Réserve", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.56037166, + -20.8976211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", + "ref": "NVOX3RW4SD", + "name": "E.Leclerc, La Réserve", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.56037166, + -20.8976211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PNVOX3RW4SD", + "ref": "NVOX3RW4SD", + "name": "E.Leclerc, La Réserve", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716476, + 46.17291786 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAGK8IODLYI", + "ref": "AGK8IODLYI", + "name": "E.Leclerc, Lagord Charent", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716476, + 46.17291786 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAGK8IODLYI", + "ref": "AGK8IODLYI", + "name": "E.Leclerc, Lagord Charent", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716476, + 46.17291786 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAGK8IODLYI", + "ref": "AGK8IODLYI", + "name": "E.Leclerc, Lagord Charent", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.33482504, + 47.83245411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMFHGZELL9S", + "ref": "MFHGZELL9S", + "name": "E. Leclerc, Langres", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXBRG7YCKY2", + "ref": "XBRG7YCKY2", + "name": "E.Leclerc, Langon", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXBRG7YCKY2", + "ref": "XBRG7YCKY2", + "name": "E.Leclerc, Langon", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXBRG7YCKY2", + "ref": "XBRG7YCKY2", + "name": "E.Leclerc, Langon", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXBRG7YCKY2", + "ref": "XBRG7YCKY2", + "name": "E.Leclerc, Langon", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXBRG7YCKY2", + "ref": "XBRG7YCKY2", + "name": "E.Leclerc, Langon", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXBRG7YCKY2", + "ref": "XBRG7YCKY2", + "name": "E.Leclerc, Langon", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXBRG7YCKY2", + "ref": "XBRG7YCKY2", + "name": "E.Leclerc, Langon", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXBRG7YCKY2", + "ref": "XBRG7YCKY2", + "name": "E.Leclerc, Langon", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXBRG7YCKY2", + "ref": "XBRG7YCKY2", + "name": "E.Leclerc, Langon", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.33482504, + 47.83245411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMFHGZELL9S", + "ref": "MFHGZELL9S", + "name": "E. Leclerc, Langres", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716476, + 46.17291786 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAGK8IODLYI", + "ref": "AGK8IODLYI", + "name": "E.Leclerc, Lagord Charent", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.33482504, + 47.83245411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMFHGZELL9S", + "ref": "MFHGZELL9S", + "name": "E. Leclerc, Langres", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.33482504, + 47.83245411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMFHGZELL9S", + "ref": "MFHGZELL9S", + "name": "E. Leclerc, Langres", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73548402, + 48.05367287 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQXCGZMJ0WQ", + "ref": "QXCGZMJ0WQ", + "name": "E.Leclerc, Laval", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73548402, + 48.05367287 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQXCGZMJ0WQ", + "ref": "QXCGZMJ0WQ", + "name": "E.Leclerc, Laval", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73548402, + 48.05367287 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQXCGZMJ0WQ", + "ref": "QXCGZMJ0WQ", + "name": "E.Leclerc, Laval", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73548402, + 48.05367287 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQXCGZMJ0WQ", + "ref": "QXCGZMJ0WQ", + "name": "E.Leclerc, Laval", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73548402, + 48.05367287 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQXCGZMJ0WQ", + "ref": "QXCGZMJ0WQ", + "name": "E.Leclerc, Laval", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73548402, + 48.05367287 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQXCGZMJ0WQ", + "ref": "QXCGZMJ0WQ", + "name": "E.Leclerc, Laval", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06253811, + 46.63950321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PU7TAQTYQRD", + "ref": "U7TAQTYQRD", + "name": "E.Leclerc, Le Blanc", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXBRG7YCKY2", + "ref": "XBRG7YCKY2", + "name": "E.Leclerc, Langon", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXBRG7YCKY2", + "ref": "XBRG7YCKY2", + "name": "E.Leclerc, Langon", + "capacity": "13", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXBRG7YCKY2", + "ref": "XBRG7YCKY2", + "name": "E.Leclerc, Langon", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXBRG7YCKY2", + "ref": "XBRG7YCKY2", + "name": "E.Leclerc, Langon", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716476, + 46.17291786 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAGK8IODLYI", + "ref": "AGK8IODLYI", + "name": "E.Leclerc, Lagord Charent", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLGDRVNGNWU", + "ref": "LGDRVNGNWU", + "name": "E.Leclerc, Lamballe-Armor", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37042547, + 48.57633739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37042547, + 48.57633739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06253811, + 46.63950321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PU7TAQTYQRD", + "ref": "U7TAQTYQRD", + "name": "E.Leclerc, Le Blanc", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQJ0OJAZ1J", + "ref": "IQJ0OJAZ1J", + "name": "E.Leclerc, Guingamp", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94642684, + 43.65040657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQ6OD1KDAIZ", + "ref": "Q6OD1KDAIZ", + "name": "E.Leclerc, Grasse", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94642684, + 43.65040657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQ6OD1KDAIZ", + "ref": "Q6OD1KDAIZ", + "name": "E.Leclerc, Grasse", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94642684, + 43.65040657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQ6OD1KDAIZ", + "ref": "Q6OD1KDAIZ", + "name": "E.Leclerc, Grasse", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQJ0OJAZ1J", + "ref": "IQJ0OJAZ1J", + "name": "E.Leclerc, Guingamp", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQJ0OJAZ1J", + "ref": "IQJ0OJAZ1J", + "name": "E.Leclerc, Guingamp", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQJ0OJAZ1J", + "ref": "IQJ0OJAZ1J", + "name": "E.Leclerc, Guingamp", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQJ0OJAZ1J", + "ref": "IQJ0OJAZ1J", + "name": "E.Leclerc, Guingamp", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQJ0OJAZ1J", + "ref": "IQJ0OJAZ1J", + "name": "E.Leclerc, Guingamp", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQJ0OJAZ1J", + "ref": "IQJ0OJAZ1J", + "name": "E.Leclerc, Guingamp", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQJ0OJAZ1J", + "ref": "IQJ0OJAZ1J", + "name": "E.Leclerc, Guingamp", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94642684, + 43.65040657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQ6OD1KDAIZ", + "ref": "Q6OD1KDAIZ", + "name": "E.Leclerc, Grasse", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQJ0OJAZ1J", + "ref": "IQJ0OJAZ1J", + "name": "E.Leclerc, Guingamp", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQJ0OJAZ1J", + "ref": "IQJ0OJAZ1J", + "name": "E.Leclerc, Guingamp", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQJ0OJAZ1J", + "ref": "IQJ0OJAZ1J", + "name": "E.Leclerc, Guingamp", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQJ0OJAZ1J", + "ref": "IQJ0OJAZ1J", + "name": "E.Leclerc, Guingamp", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQJ0OJAZ1J", + "ref": "IQJ0OJAZ1J", + "name": "E.Leclerc, Guingamp", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQJ0OJAZ1J", + "ref": "IQJ0OJAZ1J", + "name": "E.Leclerc, Guingamp", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQJ0OJAZ1J", + "ref": "IQJ0OJAZ1J", + "name": "E.Leclerc, Guingamp", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PIQJ0OJAZ1J", + "ref": "IQJ0OJAZ1J", + "name": "E.Leclerc, Guingamp", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235812, + 49.84268062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PATCMVSJYLE", + "ref": "ATCMVSJYLE", + "name": "E.Leclerc, Harly", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94642684, + 43.65040657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQ6OD1KDAIZ", + "ref": "Q6OD1KDAIZ", + "name": "E.Leclerc, Grasse", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94642684, + 43.65040657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQ6OD1KDAIZ", + "ref": "Q6OD1KDAIZ", + "name": "E.Leclerc, Grasse", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37042547, + 48.57633739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46967649, + 48.43008916 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTADFEWONYG", + "ref": "TADFEWONYG", + "name": "E.Leclerc, Gouesnou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46967649, + 48.43008916 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTADFEWONYG", + "ref": "TADFEWONYG", + "name": "E.Leclerc, Gouesnou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBL46XIQUQH", + "ref": "BL46XIQUQH", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMNRKQHLAFM", + "ref": "MNRKQHLAFM", + "name": "E.Leclerc, Gouesnou", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7206684, + 44.78683159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBVXNEXLOLK", + "ref": "BVXNEXLOLK", + "name": "E.Leclerc, Gramat", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94642684, + 43.65040657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQ6OD1KDAIZ", + "ref": "Q6OD1KDAIZ", + "name": "E.Leclerc, Grasse", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7206684, + 44.78683159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBVXNEXLOLK", + "ref": "BVXNEXLOLK", + "name": "E.Leclerc, Gramat", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7206684, + 44.78683159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBVXNEXLOLK", + "ref": "BVXNEXLOLK", + "name": "E.Leclerc, Gramat", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7206684, + 44.78683159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBVXNEXLOLK", + "ref": "BVXNEXLOLK", + "name": "E.Leclerc, Gramat", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7206684, + 44.78683159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBVXNEXLOLK", + "ref": "BVXNEXLOLK", + "name": "E.Leclerc, Gramat", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7206684, + 44.78683159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBVXNEXLOLK", + "ref": "BVXNEXLOLK", + "name": "E.Leclerc, Gramat", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7206684, + 44.78683159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBVXNEXLOLK", + "ref": "BVXNEXLOLK", + "name": "E.Leclerc, Gramat", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7206684, + 44.78683159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBVXNEXLOLK", + "ref": "BVXNEXLOLK", + "name": "E.Leclerc, Gramat", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94642684, + 43.65040657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQ6OD1KDAIZ", + "ref": "Q6OD1KDAIZ", + "name": "E.Leclerc, Grasse", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94642684, + 43.65040657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQ6OD1KDAIZ", + "ref": "Q6OD1KDAIZ", + "name": "E.Leclerc, Grasse", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235812, + 49.84268062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PATCMVSJYLE", + "ref": "ATCMVSJYLE", + "name": "E.Leclerc, Harly", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235812, + 49.84268062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PATCMVSJYLE", + "ref": "ATCMVSJYLE", + "name": "E.Leclerc, Harly", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235812, + 49.84268062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PATCMVSJYLE", + "ref": "ATCMVSJYLE", + "name": "E.Leclerc, Harly", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06614609, + 43.15138995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR8YVCQZTND", + "ref": "R8YVCQZTND", + "name": "E.Leclerc, La Crau", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.24040872, + 47.90261331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAVW2LZTUA9", + "ref": "AVW2LZTUA9", + "name": "E.Leclerc, Issenheim", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.24040872, + 47.90261331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAVW2LZTUA9", + "ref": "AVW2LZTUA9", + "name": "E.Leclerc, Issenheim", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4388861, + 45.45249078 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXGDLZYXS0Z", + "ref": "XGDLZYXS0Z", + "name": "E.Leclerc, Jonzac", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4388861, + 45.45249078 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXGDLZYXS0Z", + "ref": "XGDLZYXS0Z", + "name": "E.Leclerc, Jonzac", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4388861, + 45.45249078 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXGDLZYXS0Z", + "ref": "XGDLZYXS0Z", + "name": "E.Leclerc, Jonzac", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4388861, + 45.45249078 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXGDLZYXS0Z", + "ref": "XGDLZYXS0Z", + "name": "E.Leclerc, Jonzac", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06614609, + 43.15138995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR8YVCQZTND", + "ref": "R8YVCQZTND", + "name": "E.Leclerc, La Crau", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06614609, + 43.15138995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR8YVCQZTND", + "ref": "R8YVCQZTND", + "name": "E.Leclerc, La Crau", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06614609, + 43.15138995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR8YVCQZTND", + "ref": "R8YVCQZTND", + "name": "E.Leclerc, La Crau", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06614609, + 43.15138995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR8YVCQZTND", + "ref": "R8YVCQZTND", + "name": "E.Leclerc, La Crau", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235812, + 49.84268062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PATCMVSJYLE", + "ref": "ATCMVSJYLE", + "name": "E.Leclerc, Harly", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06614609, + 43.15138995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR8YVCQZTND", + "ref": "R8YVCQZTND", + "name": "E.Leclerc, La Crau", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06614609, + 43.15138995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR8YVCQZTND", + "ref": "R8YVCQZTND", + "name": "E.Leclerc, La Crau", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06614609, + 43.15138995 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PR8YVCQZTND", + "ref": "R8YVCQZTND", + "name": "E.Leclerc, La Crau", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37042547, + 48.57633739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37042547, + 48.57633739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36859046, + 48.57543588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36859046, + 48.57543588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37042547, + 48.57633739 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36859046, + 48.57543588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHINBFLC45F", + "ref": "HINBFLC45F", + "name": "E.Leclerc, La Ferté-Macé", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.24040872, + 47.90261331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAVW2LZTUA9", + "ref": "AVW2LZTUA9", + "name": "E.Leclerc, Issenheim", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.24040872, + 47.90261331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PAVW2LZTUA9", + "ref": "AVW2LZTUA9", + "name": "E.Leclerc, Issenheim", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07420586, + 49.91226323 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PX4XISCA2J2", + "ref": "X4XISCA2J2", + "name": "E.Leclerc, Hirson", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07420586, + 49.91226323 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PX4XISCA2J2", + "ref": "X4XISCA2J2", + "name": "E.Leclerc, Hirson", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235812, + 49.84268062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PATCMVSJYLE", + "ref": "ATCMVSJYLE", + "name": "E.Leclerc, Harly", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235812, + 49.84268062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PATCMVSJYLE", + "ref": "ATCMVSJYLE", + "name": "E.Leclerc, Harly", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235812, + 49.84268062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PATCMVSJYLE", + "ref": "ATCMVSJYLE", + "name": "E.Leclerc, Harly", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235812, + 49.84268062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PATCMVSJYLE", + "ref": "ATCMVSJYLE", + "name": "E.Leclerc, Harly", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235812, + 49.84268062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PATCMVSJYLE", + "ref": "ATCMVSJYLE", + "name": "E.Leclerc, Harly", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235812, + 49.84268062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PATCMVSJYLE", + "ref": "ATCMVSJYLE", + "name": "E.Leclerc, Harly", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235812, + 49.84268062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PATCMVSJYLE", + "ref": "ATCMVSJYLE", + "name": "E.Leclerc, Harly", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235812, + 49.84268062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PATCMVSJYLE", + "ref": "ATCMVSJYLE", + "name": "E.Leclerc, Harly", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235812, + 49.84268062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PATCMVSJYLE", + "ref": "ATCMVSJYLE", + "name": "E.Leclerc, Harly", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235812, + 49.84268062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PATCMVSJYLE", + "ref": "ATCMVSJYLE", + "name": "E.Leclerc, Harly", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3235812, + 49.84268062 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PATCMVSJYLE", + "ref": "ATCMVSJYLE", + "name": "E.Leclerc, Harly", + "capacity": "16", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.31497627, + 47.45070608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVEPHSK0X97", + "ref": "VEPHSK0X97", + "name": "E.Leclerc, Herbignac", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.31497627, + 47.45070608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVEPHSK0X97", + "ref": "VEPHSK0X97", + "name": "E.Leclerc, Herbignac", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.31497627, + 47.45070608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVEPHSK0X97", + "ref": "VEPHSK0X97", + "name": "E.Leclerc, Herbignac", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.31497627, + 47.45070608 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVEPHSK0X97", + "ref": "VEPHSK0X97", + "name": "E.Leclerc, Herbignac", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33110231, + 50.36434323 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PM31REAHFB0", + "ref": "M31REAHFB0", + "name": "E.Leclerc, Herlin-Le-Sec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33110231, + 50.36434323 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PM31REAHFB0", + "ref": "M31REAHFB0", + "name": "E.Leclerc, Herlin-Le-Sec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07420586, + 49.91226323 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PX4XISCA2J2", + "ref": "X4XISCA2J2", + "name": "E.Leclerc, Hirson", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07420586, + 49.91226323 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PX4XISCA2J2", + "ref": "X4XISCA2J2", + "name": "E.Leclerc, Hirson", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06253811, + 46.63950321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PU7TAQTYQRD", + "ref": "U7TAQTYQRD", + "name": "E.Leclerc, Le Blanc", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06253811, + 46.63950321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PU7TAQTYQRD", + "ref": "U7TAQTYQRD", + "name": "E.Leclerc, Le Blanc", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40923015, + 46.3375545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGU3XHH5FGE", + "ref": "GU3XHH5FGE", + "name": "E.Leclerc, Niort Station B Location", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22077205, + 44.20556967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHV5IVJHUQH", + "ref": "HV5IVJHUQH", + "name": "E.Leclerc, Mimizan", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91854355, + 48.9573293 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTJGAVFF5GW", + "ref": "TJGAVFF5GW", + "name": "E.Leclerc, Drive Meaux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36077988, + 43.28039009 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRVQEOVVA6G", + "ref": "RVQEOVVA6G", + "name": "E.Leclerc, Mazères-Lezons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.36077988, + 43.28039009 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PRVQEOVVA6G", + "ref": "RVQEOVVA6G", + "name": "E.Leclerc, Mazères-Lezons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91594919, + 48.95876899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PINAACCIR9R", + "ref": "INAACCIR9R", + "name": "E.Leclerc, Meaux", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91594919, + 48.95876899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PINAACCIR9R", + "ref": "INAACCIR9R", + "name": "E.Leclerc, Meaux", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91594919, + 48.95876899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PINAACCIR9R", + "ref": "INAACCIR9R", + "name": "E.Leclerc, Meaux", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91854355, + 48.9573293 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTJGAVFF5GW", + "ref": "TJGAVFF5GW", + "name": "E.Leclerc, Drive Meaux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91594919, + 48.95876899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PINAACCIR9R", + "ref": "INAACCIR9R", + "name": "E.Leclerc, Meaux", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91594919, + 48.95876899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PINAACCIR9R", + "ref": "INAACCIR9R", + "name": "E.Leclerc, Meaux", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91854355, + 48.9573293 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTJGAVFF5GW", + "ref": "TJGAVFF5GW", + "name": "E.Leclerc, Drive Meaux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91854355, + 48.9573293 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PTJGAVFF5GW", + "ref": "TJGAVFF5GW", + "name": "E.Leclerc, Drive Meaux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22077205, + 44.20556967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHV5IVJHUQH", + "ref": "HV5IVJHUQH", + "name": "E.Leclerc, Mimizan", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91594919, + 48.95876899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PINAACCIR9R", + "ref": "INAACCIR9R", + "name": "E.Leclerc, Meaux", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91594919, + 48.95876899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PINAACCIR9R", + "ref": "INAACCIR9R", + "name": "E.Leclerc, Meaux", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91594919, + 48.95876899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PINAACCIR9R", + "ref": "INAACCIR9R", + "name": "E.Leclerc, Meaux", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22077205, + 44.20556967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHV5IVJHUQH", + "ref": "HV5IVJHUQH", + "name": "E.Leclerc, Mimizan", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22077205, + 44.20556967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHV5IVJHUQH", + "ref": "HV5IVJHUQH", + "name": "E.Leclerc, Mimizan", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22077205, + 44.20556967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHV5IVJHUQH", + "ref": "HV5IVJHUQH", + "name": "E.Leclerc, Mimizan", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22077205, + 44.20556967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHV5IVJHUQH", + "ref": "HV5IVJHUQH", + "name": "E.Leclerc, Mimizan", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22077205, + 44.20556967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHV5IVJHUQH", + "ref": "HV5IVJHUQH", + "name": "E.Leclerc, Mimizan", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22077205, + 44.20556967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHV5IVJHUQH", + "ref": "HV5IVJHUQH", + "name": "E.Leclerc, Mimizan", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "ZYW3BNYUDP", + "name": "E.Leclerc, Mios", + "capacity": "24", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.978028, + 44.48583474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVD9HES2EX5", + "ref": "VD9HES2EX5", + "name": "E.Leclerc, Montayral Hypermarché", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41059155, + 46.33838782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWPHL8KYUMW", + "ref": "WPHL8KYUMW", + "name": "E.Leclerc, Niort Station A hyper", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43276288, + 49.73437363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL3QNBDPQC", + "ref": "HL3QNBDPQC", + "name": "E.Leclerc, Neufchâtel-en-Bray", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43276288, + 49.73437363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL3QNBDPQC", + "ref": "HL3QNBDPQC", + "name": "E.Leclerc, Neufchâtel-en-Bray", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43276288, + 49.73437363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL3QNBDPQC", + "ref": "HL3QNBDPQC", + "name": "E.Leclerc, Neufchâtel-en-Bray", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43276288, + 49.73437363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL3QNBDPQC", + "ref": "HL3QNBDPQC", + "name": "E.Leclerc, Neufchâtel-en-Bray", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43276288, + 49.73437363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL3QNBDPQC", + "ref": "HL3QNBDPQC", + "name": "E.Leclerc, Neufchâtel-en-Bray", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43276288, + 49.73437363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL3QNBDPQC", + "ref": "HL3QNBDPQC", + "name": "E.Leclerc, Neufchâtel-en-Bray", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43276288, + 49.73437363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL3QNBDPQC", + "ref": "HL3QNBDPQC", + "name": "E.Leclerc, Neufchâtel-en-Bray", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41059155, + 46.33838782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWPHL8KYUMW", + "ref": "WPHL8KYUMW", + "name": "E.Leclerc, Niort Station A hyper", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41059155, + 46.33838782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWPHL8KYUMW", + "ref": "WPHL8KYUMW", + "name": "E.Leclerc, Niort Station A hyper", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41059155, + 46.33838782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWPHL8KYUMW", + "ref": "WPHL8KYUMW", + "name": "E.Leclerc, Niort Station A hyper", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.978028, + 44.48583474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVD9HES2EX5", + "ref": "VD9HES2EX5", + "name": "E.Leclerc, Montayral Hypermarché", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40923015, + 46.3375545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGU3XHH5FGE", + "ref": "GU3XHH5FGE", + "name": "E.Leclerc, Niort Station B Location", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41059155, + 46.33838782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWPHL8KYUMW", + "ref": "WPHL8KYUMW", + "name": "E.Leclerc, Niort Station A hyper", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41059155, + 46.33838782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWPHL8KYUMW", + "ref": "WPHL8KYUMW", + "name": "E.Leclerc, Niort Station A hyper", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41059155, + 46.33838782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWPHL8KYUMW", + "ref": "WPHL8KYUMW", + "name": "E.Leclerc, Niort Station A hyper", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40923015, + 46.3375545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGU3XHH5FGE", + "ref": "GU3XHH5FGE", + "name": "E.Leclerc, Niort Station B Location", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40923015, + 46.3375545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGU3XHH5FGE", + "ref": "GU3XHH5FGE", + "name": "E.Leclerc, Niort Station B Location", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40923015, + 46.3375545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGU3XHH5FGE", + "ref": "GU3XHH5FGE", + "name": "E.Leclerc, Niort Station B Location", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41059155, + 46.33838782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PWPHL8KYUMW", + "ref": "WPHL8KYUMW", + "name": "E.Leclerc, Niort Station A hyper", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40923015, + 46.3375545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PGU3XHH5FGE", + "ref": "GU3XHH5FGE", + "name": "E.Leclerc, Niort Station B Location", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43276288, + 49.73437363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL3QNBDPQC", + "ref": "HL3QNBDPQC", + "name": "E.Leclerc, Neufchâtel-en-Bray", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43276288, + 49.73437363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL3QNBDPQC", + "ref": "HL3QNBDPQC", + "name": "E.Leclerc, Neufchâtel-en-Bray", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43276288, + 49.73437363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PHL3QNBDPQC", + "ref": "HL3QNBDPQC", + "name": "E.Leclerc, Neufchâtel-en-Bray", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70409613, + 48.36969308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PP3UZJUWQJR", + "ref": "P3UZJUWQJR", + "name": "E.Leclerc, Neufchâteau", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.978028, + 44.48583474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVD9HES2EX5", + "ref": "VD9HES2EX5", + "name": "E.Leclerc, Montayral Hypermarché", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.978028, + 44.48583474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PVD9HES2EX5", + "ref": "VD9HES2EX5", + "name": "E.Leclerc, Montayral Hypermarché", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.372855, + 46.68264 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDV6PHDO51M", + "ref": "DV6PHDO51M", + "name": "E. Leclerc, Montceau-les-Mines parking location", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.372855, + 46.68264 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDV6PHDO51M", + "ref": "DV6PHDO51M", + "name": "E. Leclerc, Montceau-les-Mines parking location", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58079788, + 49.64795518 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXAXIZNFOSG", + "ref": "XAXIZNFOSG", + "name": "E.Leclerc, Montdidier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58079788, + 49.64795518 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXAXIZNFOSG", + "ref": "XAXIZNFOSG", + "name": "E.Leclerc, Montdidier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58079788, + 49.64795518 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXAXIZNFOSG", + "ref": "XAXIZNFOSG", + "name": "E.Leclerc, Montdidier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58967133, + 49.6477769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYHEYYGZWWB", + "ref": "YHEYYGZWWB", + "name": "E.Leclerc, Montdidier Drive", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58967133, + 49.6477769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PYHEYYGZWWB", + "ref": "YHEYYGZWWB", + "name": "E.Leclerc, Montdidier Drive", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58079788, + 49.64795518 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PXAXIZNFOSG", + "ref": "XAXIZNFOSG", + "name": "E.Leclerc, Montdidier", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20428736, + 48.88284716 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLSQHXACDBJ", + "ref": "LSQHXACDBJ", + "name": "E.Leclerc, Nanterre", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20428736, + 48.88284716 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLSQHXACDBJ", + "ref": "LSQHXACDBJ", + "name": "E.Leclerc, Nanterre", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20428736, + 48.88284716 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLSQHXACDBJ", + "ref": "LSQHXACDBJ", + "name": "E.Leclerc, Nanterre", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20428736, + 48.88284716 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLSQHXACDBJ", + "ref": "LSQHXACDBJ", + "name": "E.Leclerc, Nanterre", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20428736, + 48.88284716 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLSQHXACDBJ", + "ref": "LSQHXACDBJ", + "name": "E.Leclerc, Nanterre", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20428736, + 48.88284716 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLSQHXACDBJ", + "ref": "LSQHXACDBJ", + "name": "E.Leclerc, Nanterre", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70409613, + 48.36969308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PP3UZJUWQJR", + "ref": "P3UZJUWQJR", + "name": "E.Leclerc, Neufchâteau", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70409613, + 48.36969308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PP3UZJUWQJR", + "ref": "P3UZJUWQJR", + "name": "E.Leclerc, Neufchâteau", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70409613, + 48.36969308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PP3UZJUWQJR", + "ref": "P3UZJUWQJR", + "name": "E.Leclerc, Neufchâteau", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06253811, + 46.63950321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PU7TAQTYQRD", + "ref": "U7TAQTYQRD", + "name": "E.Leclerc, Le Blanc", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12089792, + 45.04597649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFHLQ03DZIG", + "ref": "FHLQ03DZIG", + "name": "E.Leclerc, Libourne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.01433123, + 46.85754993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS8BGCQIRE8", + "ref": "S8BGCQIRE8", + "name": "E.Leclerc, Les Herbiers", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.01433123, + 46.85754993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS8BGCQIRE8", + "ref": "S8BGCQIRE8", + "name": "E.Leclerc, Les Herbiers", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.01433123, + 46.85754993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS8BGCQIRE8", + "ref": "S8BGCQIRE8", + "name": "E.Leclerc, Les Herbiers", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.01433123, + 46.85754993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PS8BGCQIRE8", + "ref": "S8BGCQIRE8", + "name": "E.Leclerc, Les Herbiers", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92415692, + 45.28977905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQSN0XM5KUX", + "ref": "QSN0XM5KUX", + "name": "E.Leclerc, Lesparre-Médoc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92415692, + 45.28977905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQSN0XM5KUX", + "ref": "QSN0XM5KUX", + "name": "E.Leclerc, Lesparre-Médoc", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92415692, + 45.28977905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQSN0XM5KUX", + "ref": "QSN0XM5KUX", + "name": "E.Leclerc, Lesparre-Médoc", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92415692, + 45.28977905 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PQSN0XM5KUX", + "ref": "QSN0XM5KUX", + "name": "E.Leclerc, Lesparre-Médoc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12089792, + 45.04597649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFHLQ03DZIG", + "ref": "FHLQ03DZIG", + "name": "E.Leclerc, Libourne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12089792, + 45.04597649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFHLQ03DZIG", + "ref": "FHLQ03DZIG", + "name": "E.Leclerc, Libourne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408368, + 48.399504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZZB9I4EIY", + "ref": "SZZB9I4EIY", + "name": "E.Leclerc, Le Relecq-Kerhuon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12089792, + 45.04597649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFHLQ03DZIG", + "ref": "FHLQ03DZIG", + "name": "E.Leclerc, Libourne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12089792, + 45.04597649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFHLQ03DZIG", + "ref": "FHLQ03DZIG", + "name": "E.Leclerc, Libourne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12089792, + 45.04597649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFHLQ03DZIG", + "ref": "FHLQ03DZIG", + "name": "E.Leclerc, Libourne", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12089792, + 45.04597649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFHLQ03DZIG", + "ref": "FHLQ03DZIG", + "name": "E.Leclerc, Libourne", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12089792, + 45.04597649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PFHLQ03DZIG", + "ref": "FHLQ03DZIG", + "name": "E.Leclerc, Libourne", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43093846, + 50.36551557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POOAD2XGWNN", + "ref": "OOAD2XGWNN", + "name": "E.Leclerc, Lieu-Saint-Amand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43093846, + 50.36551557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2POOAD2XGWNN", + "ref": "OOAD2XGWNN", + "name": "E.Leclerc, Lieu-Saint-Amand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22248369, + 43.07297112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSTGP4YXUIC", + "ref": "STGP4YXUIC", + "name": "E.Leclerc, Limoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22248369, + 43.07297112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSTGP4YXUIC", + "ref": "STGP4YXUIC", + "name": "E.Leclerc, Limoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408368, + 48.399504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZZB9I4EIY", + "ref": "SZZB9I4EIY", + "name": "E.Leclerc, Le Relecq-Kerhuon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408368, + 48.399504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZZB9I4EIY", + "ref": "SZZB9I4EIY", + "name": "E.Leclerc, Le Relecq-Kerhuon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133546, + 45.780771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMQMCLP8KZX", + "ref": "MQMCLP8KZX", + "name": "E.Leclerc, Le Brezet", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06253811, + 46.63950321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PU7TAQTYQRD", + "ref": "U7TAQTYQRD", + "name": "E.Leclerc, Le Blanc", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.47654804, + 46.80530308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMOHBRNPVBT", + "ref": "MOHBRNPVBT", + "name": "E.Leclerc, Le Breuil", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.47654804, + 46.80530308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMOHBRNPVBT", + "ref": "MOHBRNPVBT", + "name": "E.Leclerc, Le Breuil", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.47654804, + 46.80530308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMOHBRNPVBT", + "ref": "MOHBRNPVBT", + "name": "E.Leclerc, Le Breuil", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.47654804, + 46.80530308 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMOHBRNPVBT", + "ref": "MOHBRNPVBT", + "name": "E.Leclerc, Le Breuil", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133546, + 45.780771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMQMCLP8KZX", + "ref": "MQMCLP8KZX", + "name": "E.Leclerc, Le Brezet", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133546, + 45.780771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMQMCLP8KZX", + "ref": "MQMCLP8KZX", + "name": "E.Leclerc, Le Brezet", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133546, + 45.780771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMQMCLP8KZX", + "ref": "MQMCLP8KZX", + "name": "E.Leclerc, Le Brezet", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133546, + 45.780771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMQMCLP8KZX", + "ref": "MQMCLP8KZX", + "name": "E.Leclerc, Le Brezet", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133546, + 45.780771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMQMCLP8KZX", + "ref": "MQMCLP8KZX", + "name": "E.Leclerc, Le Brezet", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408368, + 48.399504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZZB9I4EIY", + "ref": "SZZB9I4EIY", + "name": "E.Leclerc, Le Relecq-Kerhuon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133546, + 45.780771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMQMCLP8KZX", + "ref": "MQMCLP8KZX", + "name": "E.Leclerc, Le Brezet", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133546, + 45.780771 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PMQMCLP8KZX", + "ref": "MQMCLP8KZX", + "name": "E.Leclerc, Le Brezet", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03791806, + 49.51315177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLJIJ0TTT18I05", + "ref": "LLJIJ0TTT18I05", + "name": "E.Leclerc, Le Houlme", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03791806, + 49.51315177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLJIJ0TTT18I05", + "ref": "LLJIJ0TTT18I05", + "name": "E.Leclerc, Le Houlme", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03791806, + 49.51315177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLJIJ0TTT18I05", + "ref": "LLJIJ0TTT18I05", + "name": "E.Leclerc, Le Houlme", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03791806, + 49.51315177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLJIJ0TTT18I05", + "ref": "LLJIJ0TTT18I05", + "name": "E.Leclerc, Le Houlme", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03791806, + 49.51315177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLJIJ0TTT18I05", + "ref": "LLJIJ0TTT18I05", + "name": "E.Leclerc, Le Houlme", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408368, + 48.399504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZZB9I4EIY", + "ref": "SZZB9I4EIY", + "name": "E.Leclerc, Le Relecq-Kerhuon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408368, + 48.399504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PSZZB9I4EIY", + "ref": "SZZB9I4EIY", + "name": "E.Leclerc, Le Relecq-Kerhuon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26550488, + 49.14339336 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PESUZWRLXFC", + "ref": "ESUZWRLXFC", + "name": "E.Leclerc, Lisieux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26550488, + 49.14339336 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PESUZWRLXFC", + "ref": "ESUZWRLXFC", + "name": "E.Leclerc, Lisieux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.86452709, + 50.44629974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PU4PSSV51LQ", + "ref": "U4PSSV51LQ", + "name": "E.Leclerc, Loison-sous-Lens", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02025, + 47.2802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG2MLRX4ZEK", + "ref": "G2MLRX4ZEK", + "name": "E.Leclerc, Marsannay-la-Côte", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02025, + 47.2802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG2MLRX4ZEK", + "ref": "G2MLRX4ZEK", + "name": "E.Leclerc, Marsannay-la-Côte", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02025, + 47.2802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG2MLRX4ZEK", + "ref": "G2MLRX4ZEK", + "name": "E.Leclerc, Marsannay-la-Côte", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02025, + 47.2802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PG2MLRX4ZEK", + "ref": "G2MLRX4ZEK", + "name": "E.Leclerc, Marsannay-la-Côte", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.86452709, + 50.44629974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PU4PSSV51LQ", + "ref": "U4PSSV51LQ", + "name": "E.Leclerc, Loison-sous-Lens", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PE23HKPXHU0", + "ref": "E23HKPXHU0", + "name": "E.Leclerc, Mazères Brico", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.20923656, + 43.41121455 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTSTFI6AAL", + "ref": "BTSTFI6AAL", + "name": "E.Leclerc, Marignane", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.20923656, + 43.41121455 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTSTFI6AAL", + "ref": "BTSTFI6AAL", + "name": "E.Leclerc, Marignane", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.20923656, + 43.41121455 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTSTFI6AAL", + "ref": "BTSTFI6AAL", + "name": "E.Leclerc, Marignane", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.20923656, + 43.41121455 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PBTSTFI6AAL", + "ref": "BTSTFI6AAL", + "name": "E.Leclerc, Marignane", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.86452709, + 50.44629974 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PU4PSSV51LQ", + "ref": "U4PSSV51LQ", + "name": "E.Leclerc, Loison-sous-Lens", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78752324, + 49.14671702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PACOVDL0ZZ4", + "ref": "ACOVDL0ZZ4", + "name": "E. Leclerc, Magny-en-Vexin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78752324, + 49.14671702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PACOVDL0ZZ4", + "ref": "ACOVDL0ZZ4", + "name": "E. Leclerc, Magny-en-Vexin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78752324, + 49.14671702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PACOVDL0ZZ4", + "ref": "ACOVDL0ZZ4", + "name": "E. Leclerc, Magny-en-Vexin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78752324, + 49.14671702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PACOVDL0ZZ4", + "ref": "ACOVDL0ZZ4", + "name": "E. Leclerc, Magny-en-Vexin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78752324, + 49.14671702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PACOVDL0ZZ4", + "ref": "ACOVDL0ZZ4", + "name": "E. Leclerc, Magny-en-Vexin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78752324, + 49.14671702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PACOVDL0ZZ4", + "ref": "ACOVDL0ZZ4", + "name": "E. Leclerc, Magny-en-Vexin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78752324, + 49.14671702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PACOVDL0ZZ4", + "ref": "ACOVDL0ZZ4", + "name": "E. Leclerc, Magny-en-Vexin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78752324, + 49.14671702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PACOVDL0ZZ4", + "ref": "ACOVDL0ZZ4", + "name": "E. Leclerc, Magny-en-Vexin", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10322397, + 45.82316068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ9REMMMQYE", + "ref": "J9REMMMQYE", + "name": "E.Leclerc, Marennes", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10322397, + 45.82316068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ9REMMMQYE", + "ref": "J9REMMMQYE", + "name": "E.Leclerc, Marennes", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10322397, + 45.82316068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ9REMMMQYE", + "ref": "J9REMMMQYE", + "name": "E.Leclerc, Marennes", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10322397, + 45.82316068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ9REMMMQYE", + "ref": "J9REMMMQYE", + "name": "E.Leclerc, Marennes", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10322397, + 45.82316068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ9REMMMQYE", + "ref": "J9REMMMQYE", + "name": "E.Leclerc, Marennes", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10322397, + 45.82316068 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PJ9REMMMQYE", + "ref": "J9REMMMQYE", + "name": "E.Leclerc, Marennes", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87814407, + 48.93710762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLI360U001X0NX", + "ref": "LLI360U001X0NX", + "name": "E.Leclerc, Mareuil-les-Meaux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87814407, + 48.93710762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLI360U001X0NX", + "ref": "LLI360U001X0NX", + "name": "E.Leclerc, Mareuil-les-Meaux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87814407, + 48.93710762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLI360U001X0NX", + "ref": "LLI360U001X0NX", + "name": "E.Leclerc, Mareuil-les-Meaux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87814407, + 48.93710762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRLE2PLLI360U001X0NX", + "ref": "LLI360U001X0NX", + "name": "E.Leclerc, Mareuil-les-Meaux", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.770562, + 43.891 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PJSVRYT", + "ref": "JSVRYT", + "name": "Saint-Clar, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.65493811, + 48.70277172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGXUJA6EA0H", + "ref": "GXUJA6EA0H", + "name": "Mittelschaeffolsheim, Garage Diestel", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42744, + 43.8057 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PLALSSE", + "ref": "LALSSE", + "name": "Castéra-Verduzan, Place du 8 Juillet 1977", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.297844, + 48.166445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGX0S6HFHSI", + "ref": "GX0S6HFHSI", + "name": "Riquewihr, Hôtel de la Couronne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78531, + 43.2498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDCSTE", + "ref": "JDCSTE", + "name": "Le Castellet, Hôtel du Castellet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31206103, + 48.09960583 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PARF6FRWSZ6", + "ref": "ARF6FRWSZ6", + "name": "Ingersheim, Quai de la Fecht", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31206103, + 48.09960583 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PARF6FRWSZ6", + "ref": "ARF6FRWSZ6", + "name": "Ingersheim, Quai de la Fecht", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31206103, + 48.09960583 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PARF6FRWSZ6", + "ref": "ARF6FRWSZ6", + "name": "Ingersheim, Quai de la Fecht", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31206103, + 48.09960583 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PARF6FRWSZ6", + "ref": "ARF6FRWSZ6", + "name": "Ingersheim, Quai de la Fecht", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31206103, + 48.09960583 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PARF6FRWSZ6", + "ref": "ARF6FRWSZ6", + "name": "Ingersheim, Quai de la Fecht", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31206103, + 48.09960583 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PARF6FRWSZ6", + "ref": "ARF6FRWSZ6", + "name": "Ingersheim, Quai de la Fecht", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.870604, + 48.072849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWHJ7GPLUQ", + "ref": "XWHJ7GPLUQ", + "name": "Gérardmer, Hôtel de la Jamagne", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.870604, + 48.072849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWHJ7GPLUQ", + "ref": "XWHJ7GPLUQ", + "name": "Gérardmer, Hôtel de la Jamagne", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.870604, + 48.072849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWHJ7GPLUQ", + "ref": "XWHJ7GPLUQ", + "name": "Gérardmer, Hôtel de la Jamagne", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.870604, + 48.072849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWHJ7GPLUQ", + "ref": "XWHJ7GPLUQ", + "name": "Gérardmer, Hôtel de la Jamagne", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.870604, + 48.072849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXWHJ7GPLUQ", + "ref": "XWHJ7GPLUQ", + "name": "Gérardmer, Hôtel de la Jamagne", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.297844, + 48.166445 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGX0S6HFHSI", + "ref": "GX0S6HFHSI", + "name": "Riquewihr, Hôtel de la Couronne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.091863, + 45.78029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGSIMII44WZ", + "ref": "GSIMII44WZ", + "name": "Clermont-Ferrand, Hôtel Vialatte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.04393, + 48.4501 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJEPQK", + "ref": "RJEPQK", + "name": "Dinan, Hôtel du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.091863, + 45.78029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGSIMII44WZ", + "ref": "GSIMII44WZ", + "name": "Clermont-Ferrand, Hôtel Vialatte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.14258278, + 48.04076238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUR6Z3WPAH1", + "ref": "UR6Z3WPAH1", + "name": "Munster, Verte Vallée - Rue Alfred Hartmann", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.14264016, + 48.0407261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUR6Z3WPAH1", + "ref": "UR6Z3WPAH1", + "name": "Munster, Verte Vallée - Rue Alfred Hartmann", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.14258278, + 48.04076238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUR6Z3WPAH1", + "ref": "UR6Z3WPAH1", + "name": "Munster, Verte Vallée - Rue Alfred Hartmann", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.14264016, + 48.0407261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUR6Z3WPAH1", + "ref": "UR6Z3WPAH1", + "name": "Munster, Verte Vallée - Rue Alfred Hartmann", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.14258278, + 48.04076238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUR6Z3WPAH1", + "ref": "UR6Z3WPAH1", + "name": "Munster, Verte Vallée - Rue Alfred Hartmann", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.14258278, + 48.04076238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUR6Z3WPAH1", + "ref": "UR6Z3WPAH1", + "name": "Munster, Verte Vallée - Rue Alfred Hartmann", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35012218, + 46.95691921 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI6PHLSC2S6", + "ref": "I6PHLSC2S6", + "name": "Montaigu-Vendée, Hôtel Saint James", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35012218, + 46.95691921 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI6PHLSC2S6", + "ref": "I6PHLSC2S6", + "name": "Montaigu-Vendée, Hôtel Saint James", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35012218, + 46.95691921 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI6PHLSC2S6", + "ref": "I6PHLSC2S6", + "name": "Montaigu-Vendée, Hôtel Saint James", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35012218, + 46.95691921 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI6PHLSC2S6", + "ref": "I6PHLSC2S6", + "name": "Montaigu-Vendée, Hôtel Saint James", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.030098, + 43.769336 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHR010KHJWD", + "ref": "HR010KHJWD", + "name": "Nogaro, Hôtel Restaurant Solenca", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.030098, + 43.769336 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHR010KHJWD", + "ref": "HR010KHJWD", + "name": "Nogaro, Hôtel Restaurant Solenca", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78531, + 43.2498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJDCSTE", + "ref": "JDCSTE", + "name": "Le Castellet, Hôtel du Castellet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.04393, + 48.4501 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJEPQK", + "ref": "RJEPQK", + "name": "Dinan, Hôtel du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.610648, + 46.40711 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJIVUAO3AA0", + "ref": "JIVUAO3AA0", + "name": "Saint-Victor, Hôtel Restaurant Logis Le Jardin Délice", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.83550402, + 43.64251785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRTZPPN1BPO", + "ref": "RTZPPN1BPO", + "name": "Montpellier, Hôtel du Parc Euromédecine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFO6DYAVEZA", + "ref": "FO6DYAVEZA", + "name": "BOURGOIN-JALLIEU , Avenue du Medipole", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFO6DYAVEZA", + "ref": "FO6DYAVEZA", + "name": "BOURGOIN-JALLIEU , Avenue du Medipole", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFO6DYAVEZA", + "ref": "FO6DYAVEZA", + "name": "BOURGOIN-JALLIEU , Avenue du Medipole", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFO6DYAVEZA", + "ref": "FO6DYAVEZA", + "name": "BOURGOIN-JALLIEU , Avenue du Medipole", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFO6DYAVEZA", + "ref": "FO6DYAVEZA", + "name": "BOURGOIN-JALLIEU , Avenue du Medipole", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFO6DYAVEZA", + "ref": "FO6DYAVEZA", + "name": "BOURGOIN-JALLIEU , Avenue du Medipole", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88935, + 50.50677 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNDOJ4662KH", + "ref": "NDOJ4662KH", + "name": "SPA, Balmoral 28", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.584135, + 45.296859 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ6FDZYEANJ", + "ref": "Z6FDZYEANJ", + "name": "Hôtel le Sherpa", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.136389, + 48.060172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI8V0FNI2LL61", + "ref": "LLI8V0FNI2LL61", + "name": "HOHROD, Hôtel le Panorama", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.136389, + 48.060172 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI8V0FNI2LL61", + "ref": "LLI8V0FNI2LL61", + "name": "HOHROD, Hôtel le Panorama", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41340377, + 43.54042536 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS7OUF5KWNV", + "ref": "S7OUF5KWNV", + "name": "Portet-sur-Garonne, Route d'Espagne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76673, + 48.4924 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGOI4WEQ4K", + "ref": "AGOI4WEQ4K", + "name": "Trégueux, Hôtel l'Eskemm", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76673, + 48.4924 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGOI4WEQ4K", + "ref": "AGOI4WEQ4K", + "name": "Trégueux, Hôtel l'Eskemm", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.83550402, + 43.64251785 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRTZPPN1BPO", + "ref": "RTZPPN1BPO", + "name": "Montpellier, Hôtel du Parc Euromédecine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.66641541, + 49.46825563 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSXIAVCPQMS", + "ref": "SXIAVCPQMS", + "name": "Chamouille, Rue Du chemin des Dames", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.806072, + 45.730848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWGU09TC7OO", + "ref": "WGU09TC7OO", + "name": "Sainte-Foy-lès-Lyon, Hôtel du Parc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.806072, + 45.730848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWGU09TC7OO", + "ref": "WGU09TC7OO", + "name": "Sainte-Foy-lès-Lyon, Hôtel du Parc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36597, + 49.760985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQOS8EYYCTL", + "ref": "QOS8EYYCTL", + "name": "Fécamp, Hôtel du Grand Pavois", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36597, + 49.760985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQOS8EYYCTL", + "ref": "QOS8EYYCTL", + "name": "Fécamp, Hôtel du Grand Pavois", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36597, + 49.760985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQOS8EYYCTL", + "ref": "QOS8EYYCTL", + "name": "Fécamp, Hôtel du Grand Pavois", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36597, + 49.760985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQOS8EYYCTL", + "ref": "QOS8EYYCTL", + "name": "Fécamp, Hôtel du Grand Pavois", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36597, + 49.760985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQOS8EYYCTL", + "ref": "QOS8EYYCTL", + "name": "Fécamp, Hôtel du Grand Pavois", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36597, + 49.760985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQOS8EYYCTL", + "ref": "QOS8EYYCTL", + "name": "Fécamp, Hôtel du Grand Pavois", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36597, + 49.760985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQOS8EYYCTL", + "ref": "QOS8EYYCTL", + "name": "Fécamp, Hôtel du Grand Pavois", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36597, + 49.760985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQOS8EYYCTL", + "ref": "QOS8EYYCTL", + "name": "Fécamp, Hôtel du Grand Pavois", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.66641541, + 49.46825563 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSXIAVCPQMS", + "ref": "SXIAVCPQMS", + "name": "Chamouille, Rue Du chemin des Dames", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.66641541, + 49.46825563 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSXIAVCPQMS", + "ref": "SXIAVCPQMS", + "name": "Chamouille, Rue Du chemin des Dames", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.66641541, + 49.46825563 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSXIAVCPQMS", + "ref": "SXIAVCPQMS", + "name": "Chamouille, Rue Du chemin des Dames", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.610648, + 46.40711 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJIVUAO3AA0", + "ref": "JIVUAO3AA0", + "name": "Saint-Victor, Hôtel Restaurant Logis Le Jardin Délice", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883309, + 43.606377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRKIXOAPMW8", + "ref": "RKIXOAPMW8", + "name": "Montpellier, Hôtel Privilège Eurociel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.804629, + 48.874334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLA2MZRBDKK", + "ref": "LA2MZRBDKK", + "name": "Magny-le-Hongre, Hôtel Dream", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43373965, + 48.09236037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSHTHJSG61", + "ref": "WSHTHJSG61", + "name": "Bischwihr, Grand Rue", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.76242327, + 45.21069827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLJS7NW956Z", + "ref": "LJS7NW956Z", + "name": "Corenc, Hôtel Les 3 Roses", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.76242327, + 45.21069827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLJS7NW956Z", + "ref": "LJS7NW956Z", + "name": "Corenc, Hôtel Les 3 Roses", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31707683, + 46.18655661 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN7CMCZKXED", + "ref": "N7CMCZKXED", + "name": "La Flotte, Hôtel Le Richelieu", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31707683, + 46.18655661 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN7CMCZKXED", + "ref": "N7CMCZKXED", + "name": "La Flotte, Hôtel Le Richelieu", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31707683, + 46.18655661 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN7CMCZKXED", + "ref": "N7CMCZKXED", + "name": "La Flotte, Hôtel Le Richelieu", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31707683, + 46.18655661 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN7CMCZKXED", + "ref": "N7CMCZKXED", + "name": "La Flotte, Hôtel Le Richelieu", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31707683, + 46.18655661 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN7CMCZKXED", + "ref": "N7CMCZKXED", + "name": "La Flotte, Hôtel Le Richelieu", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31707683, + 46.18655661 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN7CMCZKXED", + "ref": "N7CMCZKXED", + "name": "La Flotte, Hôtel Le Richelieu", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43373965, + 48.09236037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSHTHJSG61", + "ref": "WSHTHJSG61", + "name": "Bischwihr, Grand Rue", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43373965, + 48.09236037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSHTHJSG61", + "ref": "WSHTHJSG61", + "name": "Bischwihr, Grand Rue", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43373965, + 48.09236037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSHTHJSG61", + "ref": "WSHTHJSG61", + "name": "Bischwihr, Grand Rue", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43373965, + 48.09236037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSHTHJSG61", + "ref": "WSHTHJSG61", + "name": "Bischwihr, Grand Rue", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43373965, + 48.09236037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSHTHJSG61", + "ref": "WSHTHJSG61", + "name": "Bischwihr, Grand Rue", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43373965, + 48.09236037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSHTHJSG61", + "ref": "WSHTHJSG61", + "name": "Bischwihr, Grand Rue", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.76242327, + 45.21069827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLJS7NW956Z", + "ref": "LJS7NW956Z", + "name": "Corenc, Hôtel Les 3 Roses", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43373965, + 48.09236037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSHTHJSG61", + "ref": "WSHTHJSG61", + "name": "Bischwihr, Grand Rue", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43373965, + 48.09236037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSHTHJSG61", + "ref": "WSHTHJSG61", + "name": "Bischwihr, Grand Rue", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43373965, + 48.09236037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSHTHJSG61", + "ref": "WSHTHJSG61", + "name": "Bischwihr, Grand Rue", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43373965, + 48.09236037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSHTHJSG61", + "ref": "WSHTHJSG61", + "name": "Bischwihr, Grand Rue", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43373965, + 48.09236037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSHTHJSG61", + "ref": "WSHTHJSG61", + "name": "Bischwihr, Grand Rue", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43373965, + 48.09236037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSHTHJSG61", + "ref": "WSHTHJSG61", + "name": "Bischwihr, Grand Rue", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43373965, + 48.09236037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSHTHJSG61", + "ref": "WSHTHJSG61", + "name": "Bischwihr, Grand Rue", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43373965, + 48.09236037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSHTHJSG61", + "ref": "WSHTHJSG61", + "name": "Bischwihr, Grand Rue", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43373965, + 48.09236037 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWSHTHJSG61", + "ref": "WSHTHJSG61", + "name": "Bischwihr, Grand Rue", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65746865, + 45.24507897 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX0KAYOBXRZ", + "ref": "X0KAYOBXRZ", + "name": "Fontanil-Cornillon, Hôtel Le Néron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65746865, + 45.24507897 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PX0KAYOBXRZ", + "ref": "X0KAYOBXRZ", + "name": "Fontanil-Cornillon, Hôtel Le Néron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.73772034, + 46.28927651 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJYBDYJJ4TC", + "ref": "JYBDYJJ4TC", + "name": "Commentry, Hôtel Le Lyon Vert", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.73772034, + 46.28927651 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJYBDYJJ4TC", + "ref": "JYBDYJJ4TC", + "name": "Commentry, Hôtel Le Lyon Vert", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.76242327, + 45.21069827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLJS7NW956Z", + "ref": "LJS7NW956Z", + "name": "Corenc, Hôtel Les 3 Roses", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.83278305, + 45.13686827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJYQST9D00N", + "ref": "JYQST9D00N", + "name": "Le Boulloud, rue des Mésanges", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883309, + 43.606377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRKIXOAPMW8", + "ref": "RKIXOAPMW8", + "name": "Montpellier, Hôtel Privilège Eurociel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.77615, + 45.46779 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIQW3O95EW", + "ref": "YIQW3O95EW", + "name": "Hôtel Mercure - Les Arc 1800", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.61906492, + 45.85932994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN4CQ41LAFG", + "ref": "N4CQ41LAFG", + "name": "Megève, Route Nationale", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.61906492, + 45.85932994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN4CQ41LAFG", + "ref": "N4CQ41LAFG", + "name": "Megève, Route Nationale", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.61906492, + 45.85932994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN4CQ41LAFG", + "ref": "N4CQ41LAFG", + "name": "Megève, Route Nationale", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.61906492, + 45.85932994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN4CQ41LAFG", + "ref": "N4CQ41LAFG", + "name": "Megève, Route Nationale", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.61906492, + 45.85932994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN4CQ41LAFG", + "ref": "N4CQ41LAFG", + "name": "Megève, Route Nationale", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.61906492, + 45.85932994 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN4CQ41LAFG", + "ref": "N4CQ41LAFG", + "name": "Megève, Route Nationale", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74974182, + 45.78160822 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQUK3HWUQM", + "ref": "YQUK3HWUQM", + "name": "Hôtel Mercure Charbonnières-les-Bains, route de Paris", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74974182, + 45.78160822 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYQUK3HWUQM", + "ref": "YQUK3HWUQM", + "name": "Hôtel Mercure Charbonnières-les-Bains, route de Paris", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83762445, + 47.01736159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKCALTA6R9C", + "ref": "KCALTA6R9C", + "name": "Beaune, Hôtel Mercure", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83762445, + 47.01736159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKCALTA6R9C", + "ref": "KCALTA6R9C", + "name": "Beaune, Hôtel Mercure", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83762445, + 47.01736159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKCALTA6R9C", + "ref": "KCALTA6R9C", + "name": "Beaune, Hôtel Mercure", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83762445, + 47.01736159 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKCALTA6R9C", + "ref": "KCALTA6R9C", + "name": "Beaune, Hôtel Mercure", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.77615, + 45.46779 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIQW3O95EW", + "ref": "YIQW3O95EW", + "name": "Hôtel Mercure - Les Arc 1800", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.77615, + 45.46779 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYIQW3O95EW", + "ref": "YIQW3O95EW", + "name": "Hôtel Mercure - Les Arc 1800", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.83278305, + 45.13686827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJYQST9D00N", + "ref": "JYQST9D00N", + "name": "Le Boulloud, rue des Mésanges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8066987, + 48.87171566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYEVZGBQW8O", + "ref": "YEVZGBQW8O", + "name": "Magny-le-Hongre, Hôtel Magic", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8066987, + 48.87171566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYEVZGBQW8O", + "ref": "YEVZGBQW8O", + "name": "Magny-le-Hongre, Hôtel Magic", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8066987, + 48.87171566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYEVZGBQW8O", + "ref": "YEVZGBQW8O", + "name": "Magny-le-Hongre, Hôtel Magic", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8066987, + 48.87171566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYEVZGBQW8O", + "ref": "YEVZGBQW8O", + "name": "Magny-le-Hongre, Hôtel Magic", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8066987, + 48.87171566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYEVZGBQW8O", + "ref": "YEVZGBQW8O", + "name": "Magny-le-Hongre, Hôtel Magic", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8066987, + 48.87171566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYEVZGBQW8O", + "ref": "YEVZGBQW8O", + "name": "Magny-le-Hongre, Hôtel Magic", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.919372, + 46.537886 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PB3IBLOQRWG", + "ref": "B3IBLOQRWG", + "name": "Hôtel Lou Granva", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11060367, + 49.03166095 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGJ2TZ198MT", + "ref": "GJ2TZ198MT", + "name": "Féy, Hôtel Les Tuileries", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11060367, + 49.03166095 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGJ2TZ198MT", + "ref": "GJ2TZ198MT", + "name": "Féy, Hôtel Les Tuileries", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11060367, + 49.03166095 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGJ2TZ198MT", + "ref": "GJ2TZ198MT", + "name": "Féy, Hôtel Les Tuileries", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11060367, + 49.03166095 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGJ2TZ198MT", + "ref": "GJ2TZ198MT", + "name": "Féy, Hôtel Les Tuileries", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55611542, + 45.04765628 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPGHLVV2XSS", + "ref": "PGHLVV2XSS", + "name": "Villard-de-Lans, Hôtel Les Playes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55611542, + 45.04765628 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPGHLVV2XSS", + "ref": "PGHLVV2XSS", + "name": "Villard-de-Lans, Hôtel Les Playes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFO6DYAVEZA", + "ref": "FO6DYAVEZA", + "name": "BOURGOIN-JALLIEU , Avenue du Medipole", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFO6DYAVEZA", + "ref": "FO6DYAVEZA", + "name": "BOURGOIN-JALLIEU , Avenue du Medipole", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFO6DYAVEZA", + "ref": "FO6DYAVEZA", + "name": "BOURGOIN-JALLIEU , Avenue du Medipole", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3543, + 48.7458 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSRXQZC", + "ref": "SRXQZC", + "name": "Rungis, Dakar", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35005, + 48.7419 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWMESPU", + "ref": "WMESPU", + "name": "Rungis, Manille", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35306, + 48.7436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKXCVB", + "ref": "AKXCVB", + "name": "Rungis, Caracas", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35005, + 48.7419 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWMESPU", + "ref": "WMESPU", + "name": "Rungis, Manille", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35306, + 48.7436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKXCVB", + "ref": "AKXCVB", + "name": "Rungis, Caracas", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35306, + 48.7436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKXCVB", + "ref": "AKXCVB", + "name": "Rungis, Caracas", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.757224, + 43.9983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PZRTKJD", + "ref": "ZRTKJD", + "name": "Miradoux, Place du Foirail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35306, + 48.7436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKXCVB", + "ref": "AKXCVB", + "name": "Rungis, Caracas", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35306, + 48.7436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKXCVB", + "ref": "AKXCVB", + "name": "Rungis, Caracas", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35927, + 48.7443 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTEAKY", + "ref": "BTEAKY", + "name": "Rungis, Perth", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35306, + 48.7436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKXCVB", + "ref": "AKXCVB", + "name": "Rungis, Caracas", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35377, + 48.7481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFBYYXG", + "ref": "FBYYXG", + "name": "Rungis, Cardiff", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3543, + 48.7458 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSRXQZC", + "ref": "SRXQZC", + "name": "Rungis, Dakar", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35377, + 48.7481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFBYYXG", + "ref": "FBYYXG", + "name": "Rungis, Cardiff", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35446974, + 48.74618634 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNWJ7TJ2XQR", + "ref": "NWJ7TJ2XQR", + "name": "Rungis, Barcelone", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35377, + 48.7481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFBYYXG", + "ref": "FBYYXG", + "name": "Rungis, Cardiff", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35446974, + 48.74618634 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNWJ7TJ2XQR", + "ref": "NWJ7TJ2XQR", + "name": "Rungis, Barcelone", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35446974, + 48.74618634 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNWJ7TJ2XQR", + "ref": "NWJ7TJ2XQR", + "name": "Rungis, Barcelone", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35582, + 48.7465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXYSYT", + "ref": "TXYSYT", + "name": "Rungis, Calgary", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35582, + 48.7465 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTXYSYT", + "ref": "TXYSYT", + "name": "Rungis, Calgary", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3543, + 48.7458 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSRXQZC", + "ref": "SRXQZC", + "name": "Rungis, Dakar", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3543, + 48.7458 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSRXQZC", + "ref": "SRXQZC", + "name": "Rungis, Dakar", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.368547, + 48.903675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHDQRXKN1N0", + "ref": "HDQRXKN1N0", + "name": "Aubervilliers, Avenue des géomètres bat 264", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.368547, + 48.903675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHDQRXKN1N0", + "ref": "HDQRXKN1N0", + "name": "Aubervilliers, Avenue des géomètres bat 264", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36208, + 48.9039 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJDZKR", + "ref": "RJDZKR", + "name": "Saint-Denis, Rue des bateliers", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36208, + 48.9039 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJDZKR", + "ref": "RJDZKR", + "name": "Saint-Denis, Rue des bateliers", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36208, + 48.9039 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJDZKR", + "ref": "RJDZKR", + "name": "Saint-Denis, Rue des bateliers", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.368547, + 48.903675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHDQRXKN1N0", + "ref": "HDQRXKN1N0", + "name": "Aubervilliers, Avenue des géomètres bat 264", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.368547, + 48.903675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHDQRXKN1N0", + "ref": "HDQRXKN1N0", + "name": "Aubervilliers, Avenue des géomètres bat 264", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35377, + 48.7481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFBYYXG", + "ref": "FBYYXG", + "name": "Rungis, Cardiff", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35927, + 48.7443 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTEAKY", + "ref": "BTEAKY", + "name": "Rungis, Perth", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFO6DYAVEZA", + "ref": "FO6DYAVEZA", + "name": "BOURGOIN-JALLIEU , Avenue du Medipole", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11788002, + 45.83878616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSMJ9I3RMS", + "ref": "LSMJ9I3RMS", + "name": "Cébazat, rue Verte", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11788002, + 45.83878616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSMJ9I3RMS", + "ref": "LSMJ9I3RMS", + "name": "Cébazat, rue Verte", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508738, + 45.51496871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRHN6Y2IMIA", + "ref": "RHN6Y2IMIA", + "name": "Vienne, Avenue du Général Leclerc", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11788002, + 45.83878616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSMJ9I3RMS", + "ref": "LSMJ9I3RMS", + "name": "Cébazat, rue Verte", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508738, + 45.51496871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRHN6Y2IMIA", + "ref": "RHN6Y2IMIA", + "name": "Vienne, Avenue du Général Leclerc", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508738, + 45.51496871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRHN6Y2IMIA", + "ref": "RHN6Y2IMIA", + "name": "Vienne, Avenue du Général Leclerc", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508738, + 45.51496871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRHN6Y2IMIA", + "ref": "RHN6Y2IMIA", + "name": "Vienne, Avenue du Général Leclerc", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11788002, + 45.83878616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSMJ9I3RMS", + "ref": "LSMJ9I3RMS", + "name": "Cébazat, rue Verte", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508738, + 45.51496871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRHN6Y2IMIA", + "ref": "RHN6Y2IMIA", + "name": "Vienne, Avenue du Général Leclerc", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508738, + 45.51496871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRHN6Y2IMIA", + "ref": "RHN6Y2IMIA", + "name": "Vienne, Avenue du Général Leclerc", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11788002, + 45.83878616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSMJ9I3RMS", + "ref": "LSMJ9I3RMS", + "name": "Cébazat, rue Verte", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508738, + 45.51496871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRHN6Y2IMIA", + "ref": "RHN6Y2IMIA", + "name": "Vienne, Avenue du Général Leclerc", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11788002, + 45.83878616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSMJ9I3RMS", + "ref": "LSMJ9I3RMS", + "name": "Cébazat, rue Verte", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11788002, + 45.83878616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSMJ9I3RMS", + "ref": "LSMJ9I3RMS", + "name": "Cébazat, rue Verte", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11788002, + 45.83878616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSMJ9I3RMS", + "ref": "LSMJ9I3RMS", + "name": "Cébazat, rue Verte", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35446974, + 48.74618634 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNWJ7TJ2XQR", + "ref": "NWJ7TJ2XQR", + "name": "Rungis, Barcelone", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11788002, + 45.83878616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSMJ9I3RMS", + "ref": "LSMJ9I3RMS", + "name": "Cébazat, rue Verte", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.868463, + 48.946306 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEQOI2FVJKI", + "ref": "EQOI2FVJKI", + "name": "Villenoy, Jean-Pierre Plicque", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.868463, + 48.946306 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEQOI2FVJKI", + "ref": "EQOI2FVJKI", + "name": "Villenoy, Jean-Pierre Plicque", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.868463, + 48.946306 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEQOI2FVJKI", + "ref": "EQOI2FVJKI", + "name": "Villenoy, Jean-Pierre Plicque", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.868463, + 48.946306 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEQOI2FVJKI", + "ref": "EQOI2FVJKI", + "name": "Villenoy, Jean-Pierre Plicque", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.62611, + 49.0529 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZTZRSG", + "ref": "ZTZRSG", + "name": "Faulquemont, Incinéris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2021-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.62611, + 49.0529 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZTZRSG", + "ref": "ZTZRSG", + "name": "Faulquemont, Incinéris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2021-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35377, + 48.7481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFBYYXG", + "ref": "FBYYXG", + "name": "Rungis, Cardiff", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35446974, + 48.74618634 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNWJ7TJ2XQR", + "ref": "NWJ7TJ2XQR", + "name": "Rungis, Barcelone", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35446974, + 48.74618634 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNWJ7TJ2XQR", + "ref": "NWJ7TJ2XQR", + "name": "Rungis, Barcelone", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35377, + 48.7481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFBYYXG", + "ref": "FBYYXG", + "name": "Rungis, Cardiff", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35005, + 48.7419 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWMESPU", + "ref": "WMESPU", + "name": "Rungis, Manille", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35005, + 48.7419 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWMESPU", + "ref": "WMESPU", + "name": "Rungis, Manille", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36208, + 48.9039 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRJDZKR", + "ref": "RJDZKR", + "name": "Saint-Denis, Rue des bateliers", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36463848, + 48.90400096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFVCJPT", + "ref": "FVCJPT", + "name": "Saint-Denis, Avenues des arrimeurs", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36463848, + 48.90400096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFVCJPT", + "ref": "FVCJPT", + "name": "Saint-Denis, Avenues des arrimeurs", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46815625, + -21.3289511 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNNF0FAFIC", + "ref": "JNNF0FAFIC", + "name": "Saint-Pierre, IMMODEX", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.137653, + 49.046195 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUUGQOG3Q0H", + "ref": "UUGQOG3Q0H", + "name": "Saint-Ouen-l'Aumône, Rue Du Limousin", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.137653, + 49.046195 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUUGQOG3Q0H", + "ref": "UUGQOG3Q0H", + "name": "Saint-Ouen-l'Aumône, Rue Du Limousin", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.137653, + 49.046195 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUUGQOG3Q0H", + "ref": "UUGQOG3Q0H", + "name": "Saint-Ouen-l'Aumône, Rue Du Limousin", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.364032, + 46.653018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRHNENTGU8Q", + "ref": "RHNENTGU8Q", + "name": "Chasseneuil du Poitou, Allée du Haut Poitou", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.364032, + 46.653018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRHNENTGU8Q", + "ref": "RHNENTGU8Q", + "name": "Chasseneuil du Poitou, Allée du Haut Poitou", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.97879207, + 43.45844847 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPAR6SVC8CT", + "ref": "PAR6SVC8CT", + "name": "Revel, Isotech", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.97879207, + 43.45844847 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPAR6SVC8CT", + "ref": "PAR6SVC8CT", + "name": "Revel, Isotech", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.09649, + 49.4552 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFWNUUR", + "ref": "FWNUUR", + "name": "Isagri", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.09649, + 49.4552 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFWNUUR", + "ref": "FWNUUR", + "name": "Isagri", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.09649, + 49.4552 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFWNUUR", + "ref": "FWNUUR", + "name": "Isagri", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.09649, + 49.4552 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFWNUUR", + "ref": "FWNUUR", + "name": "Isagri", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46816129, + -21.3289489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNNF0FAFIC", + "ref": "JNNF0FAFIC", + "name": "Saint-Pierre, IMMODEX", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46814331, + -21.3289464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNNF0FAFIC", + "ref": "JNNF0FAFIC", + "name": "Saint-Pierre, IMMODEX", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46817615, + -21.3289264 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNNF0FAFIC", + "ref": "JNNF0FAFIC", + "name": "Saint-Pierre, IMMODEX", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36463848, + 48.90400096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFVCJPT", + "ref": "FVCJPT", + "name": "Saint-Denis, Avenues des arrimeurs", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46815448, + -21.3289464 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNNF0FAFIC", + "ref": "JNNF0FAFIC", + "name": "Saint-Pierre, IMMODEX", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4681296, + -21.3289561 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNNF0FAFIC", + "ref": "JNNF0FAFIC", + "name": "Saint-Pierre, IMMODEX", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46813475, + -21.3289361 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNNF0FAFIC", + "ref": "JNNF0FAFIC", + "name": "Saint-Pierre, IMMODEX", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46815089, + -21.3289561 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJNNF0FAFIC", + "ref": "JNNF0FAFIC", + "name": "Saint-Pierre, IMMODEX", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.569035, + 50.598908 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWYZVCJ7RTY", + "ref": "WYZVCJ7RTY", + "name": "Angleur, Avenue du Pré Aily", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.569035, + 50.598908 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWYZVCJ7RTY", + "ref": "WYZVCJ7RTY", + "name": "Angleur, Avenue du Pré Aily", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.569035, + 50.598908 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWYZVCJ7RTY", + "ref": "WYZVCJ7RTY", + "name": "Angleur, Avenue du Pré Aily", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.569035, + 50.598908 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWYZVCJ7RTY", + "ref": "WYZVCJ7RTY", + "name": "Angleur, Avenue du Pré Aily", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23518, + 45.56136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU1DFZSVSVG", + "ref": "U1DFZSVSVG", + "name": "Issoire, IFP", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23518, + 45.56136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU1DFZSVSVG", + "ref": "U1DFZSVSVG", + "name": "Issoire, IFP", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23518, + 45.56136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PU1DFZSVSVG", + "ref": "U1DFZSVSVG", + "name": "Issoire, IFP", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1525197, + 48.64828872 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ17WV9RWME", + "ref": "J17WV9RWME", + "name": "ICL, avenue de Bourgogne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1525197, + 48.64828872 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ17WV9RWME", + "ref": "J17WV9RWME", + "name": "ICL, avenue de Bourgogne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047, + 48.7555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFRESNESCERIS", + "ref": "Fresnesceris", + "name": "Fresnes, La Cerisaie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047, + 48.7555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFRESNESCERIS", + "ref": "Fresnesceris", + "name": "Fresnes, La Cerisaie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047, + 48.7555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFRESNESCERIS", + "ref": "Fresnesceris", + "name": "Fresnes, La Cerisaie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047, + 48.7555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFRESNESCERIS", + "ref": "Fresnesceris", + "name": "Fresnes, La Cerisaie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36463848, + 48.90400096 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFVCJPT", + "ref": "FVCJPT", + "name": "Saint-Denis, Avenues des arrimeurs", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36821393, + 48.90413143 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVCJWZZ6OLJ", + "ref": "VCJWZZ6OLJ", + "name": "Aubervilliers, 12 Avenue Chemin de Fers Industriels", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36821393, + 48.90413143 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVCJWZZ6OLJ", + "ref": "VCJWZZ6OLJ", + "name": "Aubervilliers, 12 Avenue Chemin de Fers Industriels", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3682, + 48.9034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLPLHU", + "ref": "XLPLHU", + "name": "Aubervilliers, Rue du Lin", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3682, + 48.9034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLPLHU", + "ref": "XLPLHU", + "name": "Aubervilliers, Rue du Lin", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3682, + 48.9034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLPLHU", + "ref": "XLPLHU", + "name": "Aubervilliers, Rue du Lin", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3682, + 48.9034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLPLHU", + "ref": "XLPLHU", + "name": "Aubervilliers, Rue du Lin", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3682, + 48.9034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLPLHU", + "ref": "XLPLHU", + "name": "Aubervilliers, Rue du Lin", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3682, + 48.9034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLPLHU", + "ref": "XLPLHU", + "name": "Aubervilliers, Rue du Lin", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3624, + 48.9046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXSCWYL", + "ref": "XSCWYL", + "name": "Saint-Denis, Rue du Café", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3624, + 48.9046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXSCWYL", + "ref": "XSCWYL", + "name": "Saint-Denis, Rue du Café", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37188056, + 48.90376471 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMPQTMN", + "ref": "MPQTMN", + "name": "Aubervilliers, 50 Avenue Chemin de Fers Industriels", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3624, + 48.9046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXSCWYL", + "ref": "XSCWYL", + "name": "Saint-Denis, Rue du Café", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3624, + 48.9046 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXSCWYL", + "ref": "XSCWYL", + "name": "Saint-Denis, Rue du Café", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3682, + 48.9034 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXLPLHU", + "ref": "XLPLHU", + "name": "Aubervilliers, Rue du Lin", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37188056, + 48.90376471 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMPQTMN", + "ref": "MPQTMN", + "name": "Aubervilliers, 50 Avenue Chemin de Fers Industriels", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37998112, + 48.89706454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PASYWTL", + "ref": "ASYWTL", + "name": "Paris, Flandre ext.", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37998112, + 48.89706454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PASYWTL", + "ref": "ASYWTL", + "name": "Paris, Flandre ext.", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37998112, + 48.89706454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PASYWTL", + "ref": "ASYWTL", + "name": "Paris, Flandre ext.", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37998112, + 48.89706454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PASYWTL", + "ref": "ASYWTL", + "name": "Paris, Flandre ext.", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37998112, + 48.89706454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PASYWTL", + "ref": "ASYWTL", + "name": "Paris, Flandre ext.", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37998112, + 48.89706454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PASYWTL", + "ref": "ASYWTL", + "name": "Paris, Flandre ext.", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047, + 48.7555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFRESNESCERIS", + "ref": "Fresnesceris", + "name": "Fresnes, La Cerisaie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047, + 48.7555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFRESNESCERIS", + "ref": "Fresnesceris", + "name": "Fresnes, La Cerisaie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047, + 48.7555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFRESNESCERIS", + "ref": "Fresnesceris", + "name": "Fresnes, La Cerisaie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047, + 48.7555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFRESNESCERIS", + "ref": "Fresnesceris", + "name": "Fresnes, La Cerisaie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047, + 48.7555 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFRESNESCERIS", + "ref": "Fresnesceris", + "name": "Fresnes, La Cerisaie", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.712898, + 48.034409 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI1BMCT7WYC", + "ref": "I1BMCT7WYC", + "name": "Chartres-de-Bretagne, Hôtel La Chaussairie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.712898, + 48.034409 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI1BMCT7WYC", + "ref": "I1BMCT7WYC", + "name": "Chartres-de-Bretagne, Hôtel La Chaussairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.712898, + 48.034409 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI1BMCT7WYC", + "ref": "I1BMCT7WYC", + "name": "Chartres-de-Bretagne, Hôtel La Chaussairie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31019479, + 45.68013251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POB8ETW7HKF", + "ref": "OB8ETW7HKF", + "name": "Chateaubernard, rue Pierre Latecoere", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47866314, + 44.82811635 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCS0IZRKH3Q", + "ref": "CS0IZRKH3Q", + "name": "Bergerac, ZA Valade", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47866314, + 44.82811635 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCS0IZRKH3Q", + "ref": "CS0IZRKH3Q", + "name": "Bergerac, ZA Valade", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47866314, + 44.82811635 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCS0IZRKH3Q", + "ref": "CS0IZRKH3Q", + "name": "Bergerac, ZA Valade", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67772, + 48.990862 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJBWAJLPSDU", + "ref": "JBWAJLPSDU", + "name": "Buchelay, Rue des Gamelines", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67772, + 48.990862 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJBWAJLPSDU", + "ref": "JBWAJLPSDU", + "name": "Buchelay, Rue des Gamelines", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.368334, + 49.228624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVKVLRRWSU5", + "ref": "VKVLRRWSU5", + "name": "Biéville-Beuville, Boulevard de Souffolk", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.368334, + 49.228624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVKVLRRWSU5", + "ref": "VKVLRRWSU5", + "name": "Biéville-Beuville, Boulevard de Souffolk", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.050956, + 48.904821 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSMUJWYXIBS", + "ref": "SMUJWYXIBS", + "name": "Chambourcy, Rue Camille Blanc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.050956, + 48.904821 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSMUJWYXIBS", + "ref": "SMUJWYXIBS", + "name": "Chambourcy, Rue Camille Blanc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18227025, + 45.68803044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POOFJAHVKOS", + "ref": "OOFJAHVKOS", + "name": "Champniers, Rue de l'Entrait", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18227025, + 45.68803044 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POOFJAHVKOS", + "ref": "OOFJAHVKOS", + "name": "Champniers, Rue de l'Entrait", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12183284, + 45.77891706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDEOKKTJKAX", + "ref": "DEOKKTJKAX", + "name": "Clermont-Ferrand, Avenue de l'Agriculture", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12183284, + 45.77891706 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDEOKKTJKAX", + "ref": "DEOKKTJKAX", + "name": "Clermont-Ferrand, Avenue de l'Agriculture", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31019479, + 45.68013251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POB8ETW7HKF", + "ref": "OB8ETW7HKF", + "name": "Chateaubernard, rue Pierre Latecoere", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68789218, + 49.28357489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVLVQIHN4G6", + "ref": "VLVQIHN4G6", + "name": "Bayeux, Hyundai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.8052, + 48.794997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCGRR6UGO53", + "ref": "CGRR6UGO53", + "name": "Haguenau, Route De Marienthal", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.8052, + 48.794997 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCGRR6UGO53", + "ref": "CGRR6UGO53", + "name": "Haguenau, Route De Marienthal", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206145, + 48.688707 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSSVCNY8HH", + "ref": "VSSVCNY8HH", + "name": "Villebon-sur-Yvette, Hyundai", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206145, + 48.688707 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSSVCNY8HH", + "ref": "VSSVCNY8HH", + "name": "Villebon-sur-Yvette, Hyundai", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206145, + 48.688707 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSSVCNY8HH", + "ref": "VSSVCNY8HH", + "name": "Villebon-sur-Yvette, Hyundai", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206145, + 48.688707 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSSVCNY8HH", + "ref": "VSSVCNY8HH", + "name": "Villebon-sur-Yvette, Hyundai", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206145, + 48.688707 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSSVCNY8HH", + "ref": "VSSVCNY8HH", + "name": "Villebon-sur-Yvette, Hyundai", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206145, + 48.688707 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVSSVCNY8HH", + "ref": "VSSVCNY8HH", + "name": "Villebon-sur-Yvette, Hyundai", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.268832, + 45.868085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI9Q4QKTKIG", + "ref": "I9Q4QKTKIG", + "name": "Limoges, Hyundai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.268832, + 45.868085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI9Q4QKTKIG", + "ref": "I9Q4QKTKIG", + "name": "Limoges, Hyundai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.28527514, + 49.14325703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPHETZJE3DT", + "ref": "PHETZJE3DT", + "name": "Glos, Hyundai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.28527514, + 49.14325703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPHETZJE3DT", + "ref": "PHETZJE3DT", + "name": "Glos, Hyundai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81263702, + 46.28645376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSOEDIIY83S", + "ref": "SOEDIIY83S", + "name": "Mâcon, Hyundai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68789218, + 49.28357489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVLVQIHN4G6", + "ref": "VLVQIHN4G6", + "name": "Bayeux, Hyundai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.644976, + 43.665405 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWNIBH3CHGH", + "ref": "WNIBH3CHGH", + "name": "Hyundai Arles, Avenue des Arches", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16499, + 49.1302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMUR6AGZUL1", + "ref": "MUR6AGZUL1", + "name": "Volvo Metz, rue des Alliés", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3083, + 48.9545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCLWYD", + "ref": "SCLWYD", + "name": "Epinay-sur-Seine, Luckytel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93959, + 48.30733 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVN9MGBRYJV", + "ref": "VN9MGBRYJV", + "name": "Ernée, Heude Bâtiment", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.250787, + 48.772359 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI4N9U0V2FH74", + "ref": "LLI4N9U0V2FH74", + "name": "Phalsbourg, Impasse de l'Europe", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.250787, + 48.772359 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI4N9U0V2FH74", + "ref": "LLI4N9U0V2FH74", + "name": "Phalsbourg, Impasse de l'Europe", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.250787, + 48.772359 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI4N9U0V2FH74", + "ref": "LLI4N9U0V2FH74", + "name": "Phalsbourg, Impasse de l'Europe", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.250787, + 48.772359 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI4N9U0V2FH74", + "ref": "LLI4N9U0V2FH74", + "name": "Phalsbourg, Impasse de l'Europe", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.250787, + 48.772359 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI4N9U0V2FH74", + "ref": "LLI4N9U0V2FH74", + "name": "Phalsbourg, Impasse de l'Europe", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.250787, + 48.772359 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI4N9U0V2FH74", + "ref": "LLI4N9U0V2FH74", + "name": "Phalsbourg, Impasse de l'Europe", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.250787, + 48.772359 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI4N9U0V2FH74", + "ref": "LLI4N9U0V2FH74", + "name": "Phalsbourg, Impasse de l'Europe", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.77454, + 49.1237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDFUDNBMUJ3", + "ref": "DFUDNBMUJ3", + "name": "Hombourg-Haut, Rue de Metz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.77454, + 49.1237 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDFUDNBMUJ3", + "ref": "DFUDNBMUJ3", + "name": "Hombourg-Haut, Rue de Metz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.447477, + 48.63802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI6ROSRNMR1", + "ref": "I6ROSRNMR1", + "name": "Wasselonne, Hostellerie de l'Etoile", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.447477, + 48.63802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI6ROSRNMR1", + "ref": "I6ROSRNMR1", + "name": "Wasselonne, Hostellerie de l'Etoile", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08837, + 49.3624 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFVYKCQ", + "ref": "FVYKCQ", + "name": "Trouville-sur-Mer, Hostellerie du Vallon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3083, + 48.9545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSCLWYD", + "ref": "SCLWYD", + "name": "Epinay-sur-Seine, Luckytel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.644976, + 43.665405 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWNIBH3CHGH", + "ref": "WNIBH3CHGH", + "name": "Hyundai Arles, Avenue des Arches", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.862838, + 47.646763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBKKQY5R3K6", + "ref": "BKKQY5R3K6", + "name": "Hôtel Mercure Belfort, Avenue Jean Moulin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.862838, + 47.646763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBKKQY5R3K6", + "ref": "BKKQY5R3K6", + "name": "Hôtel Mercure Belfort, Avenue Jean Moulin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.862838, + 47.646763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBKKQY5R3K6", + "ref": "BKKQY5R3K6", + "name": "Hôtel Mercure Belfort, Avenue Jean Moulin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.862838, + 47.646763 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBKKQY5R3K6", + "ref": "BKKQY5R3K6", + "name": "Hôtel Mercure Belfort, Avenue Jean Moulin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.401075, + 43.520193 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVWCR0TPAP3", + "ref": "VWCR0TPAP3", + "name": "Portet-sur-Garonne, Hotel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.401075, + 43.520193 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVWCR0TPAP3", + "ref": "VWCR0TPAP3", + "name": "Portet-sur-Garonne, Hotel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.506584, + 48.225123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJH8ANW0TM25Q", + "ref": "LLJH8ANW0TM25Q", + "name": "Crozon, Hotel l'Escale Marine", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69210433, + 44.83526429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPMVU9IRAML", + "ref": "PMVU9IRAML", + "name": "Mérignac, Hôtel Mercure", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69210433, + 44.83526429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPMVU9IRAML", + "ref": "PMVU9IRAML", + "name": "Mérignac, Hôtel Mercure", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69210433, + 44.83526429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPMVU9IRAML", + "ref": "PMVU9IRAML", + "name": "Mérignac, Hôtel Mercure", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69210433, + 44.83526429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPMVU9IRAML", + "ref": "PMVU9IRAML", + "name": "Mérignac, Hôtel Mercure", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.256181, + 48.956538 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTULYZ5QK8S", + "ref": "TULYZ5QK8S", + "name": "Argenteuil, Boulebard Jean Allemane", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.256181, + 48.956538 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTULYZ5QK8S", + "ref": "TULYZ5QK8S", + "name": "Argenteuil, Boulebard Jean Allemane", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81263702, + 46.28645376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSOEDIIY83S", + "ref": "SOEDIIY83S", + "name": "Mâcon, Hyundai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27224721, + 48.64780704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMLAZLGVW42", + "ref": "MLAZLGVW42", + "name": "Monthlery, Route d'Orléans", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27224721, + 48.64780704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMLAZLGVW42", + "ref": "MLAZLGVW42", + "name": "Monthlery, Route d'Orléans", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07022881, + 44.14649426 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPHXLM9QQUG", + "ref": "PHXLM9QQUG", + "name": "Saint-Martin-de-Valgalgues, Rocade Nord", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.917405, + 46.531099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUGEM4LBMME", + "ref": "UGEM4LBMME", + "name": "Hôtel A.B.I", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37255875, + 45.41546181 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLOG48IHQH0", + "ref": "LOG48IHQH0", + "name": "La Ricamarie, L'Acropole/La Boucherie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37255875, + 45.41546181 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLOG48IHQH0", + "ref": "LOG48IHQH0", + "name": "La Ricamarie, L'Acropole/La Boucherie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.881069, + 45.28534 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTFQU7A1NFU", + "ref": "TFQU7A1NFU", + "name": "Val-Cenis, Hôtel Alpazur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.881069, + 45.28534 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTFQU7A1NFU", + "ref": "TFQU7A1NFU", + "name": "Val-Cenis, Hôtel Alpazur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.407229, + 45.4200166 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMXFE5YVCKF", + "ref": "MXFE5YVCKF", + "name": "Saint-Etienne, Hôtel Astoria", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.407229, + 45.4200166 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMXFE5YVCKF", + "ref": "MXFE5YVCKF", + "name": "Saint-Etienne, Hôtel Astoria", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.15086097, + 47.00840403 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXVXRIKKVWZ", + "ref": "XVXRIKKVWZ", + "name": "Varennes-Vauzelles, Boulevard Camille Dagonneau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.15086097, + 47.00840403 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXVXRIKKVWZ", + "ref": "XVXRIKKVWZ", + "name": "Varennes-Vauzelles, Boulevard Camille Dagonneau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.305312, + 47.83651 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC7JGYCFWRS", + "ref": "C7JGYCFWRS", + "name": "Pulversheim, Rue d'Ensisheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.305312, + 47.83651 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC7JGYCFWRS", + "ref": "C7JGYCFWRS", + "name": "Pulversheim, Rue d'Ensisheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07022881, + 44.14649426 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPHXLM9QQUG", + "ref": "PHXLM9QQUG", + "name": "Saint-Martin-de-Valgalgues, Rocade Nord", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07022881, + 44.14649426 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPHXLM9QQUG", + "ref": "PHXLM9QQUG", + "name": "Saint-Martin-de-Valgalgues, Rocade Nord", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07022881, + 44.14649426 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPHXLM9QQUG", + "ref": "PHXLM9QQUG", + "name": "Saint-Martin-de-Valgalgues, Rocade Nord", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34729512, + 43.8199057 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQURNW8BWEM", + "ref": "QURNW8BWEM", + "name": "Hyundai Nîmes, Rue du Père Brottier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.89312701, + 49.01167572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF0NR8K9NFG", + "ref": "F0NR8K9NFG", + "name": "Rott, Le Cleebourg", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.89312701, + 49.01167572 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PF0NR8K9NFG", + "ref": "F0NR8K9NFG", + "name": "Rott, Le Cleebourg", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.43852197, + 43.52868452 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCLKIBX2TKQ", + "ref": "CLKIBX2TKQ", + "name": "Draguigan, Avenue de Tuttlingen", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.362787, + 48.099197 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFIXHIOIBDN", + "ref": "FIXHIOIBDN", + "name": "Colmar, Hôtel Comfort", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.362787, + 48.099197 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFIXHIOIBDN", + "ref": "FIXHIOIBDN", + "name": "Colmar, Hôtel Comfort", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.64545, + 43.2659 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDHBBNU", + "ref": "DHBBNU", + "name": "Saint-Tropez, Hôtel Villa Cosy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.64545, + 43.2659 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDHBBNU", + "ref": "DHBBNU", + "name": "Saint-Tropez, Hôtel Villa Cosy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.64545, + 43.2659 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDHBBNU", + "ref": "DHBBNU", + "name": "Saint-Tropez, Hôtel Villa Cosy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.64545, + 43.2659 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDHBBNU", + "ref": "DHBBNU", + "name": "Saint-Tropez, Hôtel Villa Cosy", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.391097, + 49.203711 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRMDZXYQQKA", + "ref": "RMDZXYQQKA", + "name": "Caen, Hôtel Crocus", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.391097, + 49.203711 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRMDZXYQQKA", + "ref": "RMDZXYQQKA", + "name": "Caen, Hôtel Crocus", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.391097, + 49.203711 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRMDZXYQQKA", + "ref": "RMDZXYQQKA", + "name": "Caen, Hôtel Crocus", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.639236, + 41.909315 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBAHAHGV1PV", + "ref": "BAHAHGV1PV", + "name": "Ajaccio, Hôtel Dolce Vita", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.19763794, + 47.97468621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIWW36VL49NY2", + "ref": "LLIWW36VL49NY2", + "name": "Soultzmatt, Hôtel A l'Arbre Vert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.19763794, + 47.97468621 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIWW36VL49NY2", + "ref": "LLIWW36VL49NY2", + "name": "Soultzmatt, Hôtel A l'Arbre Vert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64404, + 46.03226 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA6NNCC3AAE", + "ref": "A6NNCC3AAE", + "name": "Hôtel - Le Savigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64404, + 46.03226 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA6NNCC3AAE", + "ref": "A6NNCC3AAE", + "name": "Hôtel - Le Savigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34729512, + 43.8199057 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQURNW8BWEM", + "ref": "QURNW8BWEM", + "name": "Hyundai Nîmes, Rue du Père Brottier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319827, + 46.608804 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ0CNZYBUQL", + "ref": "Z0CNZYBUQL", + "name": "Hyundai Poitiers, 166 Avenue du Plateau des Glières", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319827, + 46.608804 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZ0CNZYBUQL", + "ref": "Z0CNZYBUQL", + "name": "Hyundai Poitiers, 166 Avenue du Plateau des Glières", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9855801, + 45.63093544 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQZ44DT842", + "ref": "BQZ44DT842", + "name": "Médis, Rue Marco Polo", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9855801, + 45.63093544 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQZ44DT842", + "ref": "BQZ44DT842", + "name": "Médis, Rue Marco Polo", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62615129, + 50.68792454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVNWWAFPBW9", + "ref": "VNWWAFPBW9", + "name": "Saint-Léonard, Avenue du Docteur Croquelois", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62615129, + 50.68792454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVNWWAFPBW9", + "ref": "VNWWAFPBW9", + "name": "Saint-Léonard, Avenue du Docteur Croquelois", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.120087, + 49.034662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAN1EK83QC", + "ref": "LAN1EK83QC", + "name": "Saint-Ouen l'Aumône, Rue Louis Delage", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.120087, + 49.034662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAN1EK83QC", + "ref": "LAN1EK83QC", + "name": "Saint-Ouen l'Aumône, Rue Louis Delage", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.120087, + 49.034662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAN1EK83QC", + "ref": "LAN1EK83QC", + "name": "Saint-Ouen l'Aumône, Rue Louis Delage", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.120087, + 49.034662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAN1EK83QC", + "ref": "LAN1EK83QC", + "name": "Saint-Ouen l'Aumône, Rue Louis Delage", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.120087, + 49.034662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAN1EK83QC", + "ref": "LAN1EK83QC", + "name": "Saint-Ouen l'Aumône, Rue Louis Delage", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.120087, + 49.034662 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLAN1EK83QC", + "ref": "LAN1EK83QC", + "name": "Saint-Ouen l'Aumône, Rue Louis Delage", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.63991607, + 45.72249332 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCJYWF7AUNG", + "ref": "CJYWF7AUNG", + "name": "Saintes, Rue de Gemozac", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.63991607, + 45.72249332 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCJYWF7AUNG", + "ref": "CJYWF7AUNG", + "name": "Saintes, Rue de Gemozac", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.027515, + 48.326696 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE95FKFHLMJ", + "ref": "E95FKFHLMJ", + "name": "Hyundai Troyes, Groupe Froment", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.027515, + 48.326696 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE95FKFHLMJ", + "ref": "E95FKFHLMJ", + "name": "Hyundai Troyes, Groupe Froment", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.446859, + 48.738614 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC7QSS7UZXI", + "ref": "C7QSS7UZXI", + "name": "Villeneuve-Saint-Georges, rue de Paris", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.446859, + 48.738614 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC7QSS7UZXI", + "ref": "C7QSS7UZXI", + "name": "Villeneuve-Saint-Georges, rue de Paris", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.559006, + 48.958653 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUJGU41XRPM", + "ref": "UJGU41XRPM", + "name": "Villepinte, avenue charles de Gaulle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.559006, + 48.958653 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUJGU41XRPM", + "ref": "UJGU41XRPM", + "name": "Villepinte, avenue charles de Gaulle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.105858, + 49.105122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS1JONUHSPU", + "ref": "S1JONUHSPU", + "name": "Saint-Lô, Hôpital Mémorial", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.105858, + 49.105122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS1JONUHSPU", + "ref": "S1JONUHSPU", + "name": "Saint-Lô, Hôpital Mémorial", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.105858, + 49.105122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS1JONUHSPU", + "ref": "S1JONUHSPU", + "name": "Saint-Lô, Hôpital Mémorial", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.105858, + 49.105122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS1JONUHSPU", + "ref": "S1JONUHSPU", + "name": "Saint-Lô, Hôpital Mémorial", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.105858, + 49.105122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS1JONUHSPU", + "ref": "S1JONUHSPU", + "name": "Saint-Lô, Hôpital Mémorial", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.105858, + 49.105122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PS1JONUHSPU", + "ref": "S1JONUHSPU", + "name": "Saint-Lô, Hôpital Mémorial", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93959, + 48.30733 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVN9MGBRYJV", + "ref": "VN9MGBRYJV", + "name": "Ernée, Heude Bâtiment", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16499, + 49.1302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMUR6AGZUL1", + "ref": "MUR6AGZUL1", + "name": "Volvo Metz, rue des Alliés", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.712898, + 48.034409 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PI1BMCT7WYC", + "ref": "I1BMCT7WYC", + "name": "Chartres-de-Bretagne, Hôtel La Chaussairie", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.804629, + 48.874334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLA2MZRBDKK", + "ref": "LA2MZRBDKK", + "name": "Magny-le-Hongre, Hôtel Dream", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4726431, + 50.37769734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPRXH55YOEF", + "ref": "PRXH55YOEF", + "name": "Petite-Forêt, Hôtel Ibis Styles et Ibis Budget", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4726431, + 50.37769734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPRXH55YOEF", + "ref": "PRXH55YOEF", + "name": "Petite-Forêt, Hôtel Ibis Styles et Ibis Budget", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4726431, + 50.37769734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPRXH55YOEF", + "ref": "PRXH55YOEF", + "name": "Petite-Forêt, Hôtel Ibis Styles et Ibis Budget", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4726431, + 50.37769734 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPRXH55YOEF", + "ref": "PRXH55YOEF", + "name": "Petite-Forêt, Hôtel Ibis Styles et Ibis Budget", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22049675, + 47.96471951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLDEBFXD6F6", + "ref": "LDEBFXD6F6", + "name": "Le Mans, Hôtel H24", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22049675, + 47.96471951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLDEBFXD6F6", + "ref": "LDEBFXD6F6", + "name": "Le Mans, Hôtel H24", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22049675, + 47.96471951 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLDEBFXD6F6", + "ref": "LDEBFXD6F6", + "name": "Le Mans, Hôtel H24", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78003218, + 43.93196066 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKBQ9A4IX7P", + "ref": "KBQ9A4IX7P", + "name": "Avignon, Hôtel Festival Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78003218, + 43.93196066 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKBQ9A4IX7P", + "ref": "KBQ9A4IX7P", + "name": "Avignon, Hôtel Festival Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.3980443, + 48.75665765 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFNL0YUZD9U", + "ref": "FNL0YUZD9U", + "name": "Steinbourg, Hôtel Ecluse 34", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.3980443, + 48.75665765 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFNL0YUZD9U", + "ref": "FNL0YUZD9U", + "name": "Steinbourg, Hôtel Ecluse 34", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.804629, + 48.874334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLA2MZRBDKK", + "ref": "LA2MZRBDKK", + "name": "Magny-le-Hongre, Hôtel Dream", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.804629, + 48.874334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLA2MZRBDKK", + "ref": "LA2MZRBDKK", + "name": "Magny-le-Hongre, Hôtel Dream", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.804629, + 48.874334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLA2MZRBDKK", + "ref": "LA2MZRBDKK", + "name": "Magny-le-Hongre, Hôtel Dream", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.398596, + 45.442679 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJVDXH7QTI9", + "ref": "JVDXH7QTI9", + "name": "Hôtel Ibis Gare Châteaucreux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.804629, + 48.874334 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLA2MZRBDKK", + "ref": "LA2MZRBDKK", + "name": "Magny-le-Hongre, Hôtel Dream", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.13137, + 43.652371 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCA9CCNHNBW", + "ref": "CA9CCNHNBW", + "name": "Salon de Provence, Route du Val de Cuech", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.481858, + 45.147704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL1DBJXVP6P", + "ref": "L1DBJXVP6P", + "name": "Brive-La-Gaillarde, Avenue Cyprien Faurie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.481858, + 45.147704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL1DBJXVP6P", + "ref": "L1DBJXVP6P", + "name": "Brive-La-Gaillarde, Avenue Cyprien Faurie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.789685, + 43.452269 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIOXGW7EMIU", + "ref": "IOXGW7EMIU", + "name": "Saint-Raphaël, Boulevard Darby", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.789685, + 43.452269 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIOXGW7EMIU", + "ref": "IOXGW7EMIU", + "name": "Saint-Raphaël, Boulevard Darby", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.789685, + 43.452269 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIOXGW7EMIU", + "ref": "IOXGW7EMIU", + "name": "Saint-Raphaël, Boulevard Darby", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.789685, + 43.452269 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIOXGW7EMIU", + "ref": "IOXGW7EMIU", + "name": "Saint-Raphaël, Boulevard Darby", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88988, + 44.960648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRNDADH3NG0", + "ref": "RNDADH3NG0", + "name": "Bourg-lès-Valence, Allée Ninon Vallin", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88988, + 44.960648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRNDADH3NG0", + "ref": "RNDADH3NG0", + "name": "Bourg-lès-Valence, Allée Ninon Vallin", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88988, + 44.960648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRNDADH3NG0", + "ref": "RNDADH3NG0", + "name": "Bourg-lès-Valence, Allée Ninon Vallin", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88988, + 44.960648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRNDADH3NG0", + "ref": "RNDADH3NG0", + "name": "Bourg-lès-Valence, Allée Ninon Vallin", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33668507, + 45.78753257 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSYZW93FWG5", + "ref": "SYZW93FWG5", + "name": "Panissières, parking", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.398596, + 45.442679 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJVDXH7QTI9", + "ref": "JVDXH7QTI9", + "name": "Hôtel Ibis Gare Châteaucreux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378455, + 45.465818 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMKXKYJ22DI", + "ref": "MKXKYJ22DI", + "name": "Hôtel Ibis La Terrasse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16499, + 49.1302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMUR6AGZUL1", + "ref": "MUR6AGZUL1", + "name": "Volvo Metz, rue des Alliés", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9603301, + 45.70767024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCSYLN7MJO0", + "ref": "CSYLN7MJO0", + "name": "Saint-Priest , Rue Aimé Cotton", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80192, + 45.5369 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK9AVBWZHUY", + "ref": "K9AVBWZHUY", + "name": "Treignac, Hôtel La Brasserie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80192, + 45.5369 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK9AVBWZHUY", + "ref": "K9AVBWZHUY", + "name": "Treignac, Hôtel La Brasserie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.139213798, + 45.89527515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE2YEK1N0HS", + "ref": "E2YEK1N0HS", + "name": "Riom, Rue Louis Armstrong", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.139213798, + 45.89527515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE2YEK1N0HS", + "ref": "E2YEK1N0HS", + "name": "Riom, Rue Louis Armstrong", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.139213798, + 45.89527515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE2YEK1N0HS", + "ref": "E2YEK1N0HS", + "name": "Riom, Rue Louis Armstrong", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1392138, + 45.89527515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE2YEK1N0HS", + "ref": "E2YEK1N0HS", + "name": "Riom, Rue Louis Armstrong", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.139213798, + 45.89527515 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE2YEK1N0HS", + "ref": "E2YEK1N0HS", + "name": "Riom, Rue Louis Armstrong", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17871845, + 49.11377766 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQNSBIB36O", + "ref": "BQNSBIB36O", + "name": "Metz, Hôtel Kyriad", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17871845, + 49.11377766 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBQNSBIB36O", + "ref": "BQNSBIB36O", + "name": "Metz, Hôtel Kyriad", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9079, + 48.9564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZN2DDHBYGZ", + "ref": "ZN2DDHBYGZ", + "name": "Meaux, Kyriad Hôtel", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9079, + 48.9564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZN2DDHBYGZ", + "ref": "ZN2DDHBYGZ", + "name": "Meaux, Kyriad Hôtel", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9079, + 48.9564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZN2DDHBYGZ", + "ref": "ZN2DDHBYGZ", + "name": "Meaux, Kyriad Hôtel", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9603301, + 45.70767024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCSYLN7MJO0", + "ref": "CSYLN7MJO0", + "name": "Saint-Priest , Rue Aimé Cotton", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9603301, + 45.70767024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCSYLN7MJO0", + "ref": "CSYLN7MJO0", + "name": "Saint-Priest , Rue Aimé Cotton", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378455, + 45.465818 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMKXKYJ22DI", + "ref": "MKXKYJ22DI", + "name": "Hôtel Ibis La Terrasse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9603301, + 45.70767024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCSYLN7MJO0", + "ref": "CSYLN7MJO0", + "name": "Saint-Priest , Rue Aimé Cotton", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.18397726, + 48.42329139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMS24BWDH9Z", + "ref": "MS24BWDH9Z", + "name": "Fouday, Hôtel Julien", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.18397726, + 48.42329139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMS24BWDH9Z", + "ref": "MS24BWDH9Z", + "name": "Fouday, Hôtel Julien", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.18397726, + 48.42329139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMS24BWDH9Z", + "ref": "MS24BWDH9Z", + "name": "Fouday, Hôtel Julien", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.18397726, + 48.42329139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMS24BWDH9Z", + "ref": "MS24BWDH9Z", + "name": "Fouday, Hôtel Julien", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4993222, + 43.30801307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE2J6I5CRAL", + "ref": "E2J6I5CRAL", + "name": "Ainhoa, Rue Karrika", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4993222, + 43.30801307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE2J6I5CRAL", + "ref": "E2J6I5CRAL", + "name": "Ainhoa, Rue Karrika", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.770523, + 46.513922 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEJISQ1M00E", + "ref": "EJISQ1M00E", + "name": "Les Sables-d'Olonne, Hôtel Ibis STYLES & BUDGET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.770523, + 46.513922 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEJISQ1M00E", + "ref": "EJISQ1M00E", + "name": "Les Sables-d'Olonne, Hôtel Ibis STYLES & BUDGET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.770523, + 46.513922 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEJISQ1M00E", + "ref": "EJISQ1M00E", + "name": "Les Sables-d'Olonne, Hôtel Ibis STYLES & BUDGET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.770523, + 46.513922 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEJISQ1M00E", + "ref": "EJISQ1M00E", + "name": "Les Sables-d'Olonne, Hôtel Ibis STYLES & BUDGET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.179008, + 45.6934 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYXBALB", + "ref": "YXBALB", + "name": "Champniers, Hôtel Ibis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.179008, + 45.6934 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYXBALB", + "ref": "YXBALB", + "name": "Champniers, Hôtel Ibis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33668507, + 45.78753257 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSYZW93FWG5", + "ref": "SYZW93FWG5", + "name": "Panissières, parking", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.62903136, + 48.0967915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWBFROMXNDZ", + "ref": "WBFROMXNDZ", + "name": "Rennes, Immeuble le Lotus", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.62903136, + 48.0967915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWBFROMXNDZ", + "ref": "WBFROMXNDZ", + "name": "Rennes, Immeuble le Lotus", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2741488, + 47.83939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWX7L1CMZ069", + "ref": "LLJWX7L1CMZ069", + "name": "Staffelfelden, 100D Rue Marie Louise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025142, + 47.30362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUB39VOTDAV", + "ref": "UB39VOTDAV", + "name": "Guyot Zone de réception, Dijon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025142, + 47.30362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUB39VOTDAV", + "ref": "UB39VOTDAV", + "name": "Guyot Zone de réception, Dijon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.04838712, + 44.08577017 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWULLAX36A5", + "ref": "WULLAX36A5", + "name": "Creissels, Hyundai Millau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.04838712, + 44.08577017 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWULLAX36A5", + "ref": "WULLAX36A5", + "name": "Creissels, Hyundai Millau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.49791327, + 45.17219105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAWKTLVRWO", + "ref": "VAWKTLVRWO", + "name": "Valmeiner, Place de la Roche Noire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.49791327, + 45.17219105 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVAWKTLVRWO", + "ref": "VAWKTLVRWO", + "name": "Valmeiner, Place de la Roche Noire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.274226, + 47.8393865 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWX6MFX20G9C", + "ref": "LLJWX6MFX20G9C", + "name": "Staffelfelden, 100B Rue Marie Louise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2741853, + 47.8397671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWX8IC2K8Q24", + "ref": "LLJWX8IC2K8Q24", + "name": "Staffelfelden, 100G Rue Marie Louise", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2741907, + 47.8390091 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJIKOK0H2BMCU", + "ref": "LLJIKOK0H2BMCU", + "name": "Staffelfelden, 100A Rue Marie Louise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2741907, + 47.8390091 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJIKOK0H2BMCU", + "ref": "LLJIKOK0H2BMCU", + "name": "Staffelfelden, 100A Rue Marie Louise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.274226, + 47.8393865 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWX6MFX20G9C", + "ref": "LLJWX6MFX20G9C", + "name": "Staffelfelden, 100B Rue Marie Louise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2737274, + 47.8390095 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWX7Z4MYYXND", + "ref": "LLJWX7Z4MYYXND", + "name": "Staffelfelden,100F Rue Marie Louise", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2741136, + 47.8390122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWX736V2AAFY", + "ref": "LLJWX736V2AAFY", + "name": "Staffelfelden, 100C Rue Marie Louise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2741488, + 47.83939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWX7L1CMZ069", + "ref": "LLJWX7L1CMZ069", + "name": "Staffelfelden, 100D Rue Marie Louise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.459112, + 48.419313 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTK3O6QSGPC", + "ref": "TK3O6QSGPC", + "name": "Brest, Groupe Pandora", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2737274, + 47.8390095 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWX7Z4MYYXND", + "ref": "LLJWX7Z4MYYXND", + "name": "Staffelfelden,100F Rue Marie Louise", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2741136, + 47.8390122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWX736V2AAFY", + "ref": "LLJWX736V2AAFY", + "name": "Staffelfelden, 100C Rue Marie Louise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2737274, + 47.8390095 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWX7Z4MYYXND", + "ref": "LLJWX7Z4MYYXND", + "name": "Staffelfelden,100F Rue Marie Louise", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2737274, + 47.8390095 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWX7Z4MYYXND", + "ref": "LLJWX7Z4MYYXND", + "name": "Staffelfelden,100F Rue Marie Louise", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2741853, + 47.8397671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWX8IC2K8Q24", + "ref": "LLJWX8IC2K8Q24", + "name": "Staffelfelden, 100G Rue Marie Louise", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2741853, + 47.8397671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWX8IC2K8Q24", + "ref": "LLJWX8IC2K8Q24", + "name": "Staffelfelden, 100G Rue Marie Louise", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2741853, + 47.8397671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWX8IC2K8Q24", + "ref": "LLJWX8IC2K8Q24", + "name": "Staffelfelden, 100G Rue Marie Louise", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.19705, + 43.6853 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYSGFNL", + "ref": "YSGFNL", + "name": "Nice, Help Dépannage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.19705, + 43.6853 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYSGFNL", + "ref": "YSGFNL", + "name": "Nice, Help Dépannage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.316336, + 43.32296 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI2T0PJ21SQ0A", + "ref": "LLI2T0PJ21SQ0A", + "name": "PAU, Boulevard du cami salié", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16499, + 49.1302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMUR6AGZUL1", + "ref": "MUR6AGZUL1", + "name": "Volvo Metz, rue des Alliés", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16499, + 49.1302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMUR6AGZUL1", + "ref": "MUR6AGZUL1", + "name": "Volvo Metz, rue des Alliés", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16499, + 49.1302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMUR6AGZUL1", + "ref": "MUR6AGZUL1", + "name": "Volvo Metz, rue des Alliés", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025142, + 47.30362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUB39VOTDAV", + "ref": "UB39VOTDAV", + "name": "Guyot Zone de réception, Dijon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025142, + 47.30362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUB39VOTDAV", + "ref": "UB39VOTDAV", + "name": "Guyot Zone de réception, Dijon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025142, + 47.30362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUB39VOTDAV", + "ref": "UB39VOTDAV", + "name": "Guyot Zone de réception, Dijon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025142, + 47.30362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUB39VOTDAV", + "ref": "UB39VOTDAV", + "name": "Guyot Zone de réception, Dijon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.459112, + 48.419313 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTK3O6QSGPC", + "ref": "TK3O6QSGPC", + "name": "Brest, Groupe Pandora", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.647216, + 47.263248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQVONONBFDE", + "ref": "QVONONBFDE", + "name": "Orvault, Groupe Pandora", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.62903136, + 48.0967915 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWBFROMXNDZ", + "ref": "WBFROMXNDZ", + "name": "Rennes, Immeuble le Lotus", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.647216, + 47.263248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQVONONBFDE", + "ref": "QVONONBFDE", + "name": "Orvault, Groupe Pandora", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.647216, + 47.263248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQVONONBFDE", + "ref": "QVONONBFDE", + "name": "Orvault, Groupe Pandora", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.204654, + 46.152179 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKQ9R7VJ1CG", + "ref": "KQ9R7VJ1CG", + "name": "La Rochelle, rue de Québec", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.204654, + 46.152179 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKQ9R7VJ1CG", + "ref": "KQ9R7VJ1CG", + "name": "La Rochelle, rue de Québec", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49336, + 49.5474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGLFNH", + "ref": "AGLFNH", + "name": "Gruchet-le-Valasse, Centre commercial", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49336, + 49.5474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGLFNH", + "ref": "AGLFNH", + "name": "Gruchet-le-Valasse, Centre commercial", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49336, + 49.5474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGLFNH", + "ref": "AGLFNH", + "name": "Gruchet-le-Valasse, Centre commercial", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2020-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49336, + 49.5474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAGLFNH", + "ref": "AGLFNH", + "name": "Gruchet-le-Valasse, Centre commercial", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2020-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024663, + 47.301901 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBALHQJMGSA", + "ref": "BALHQJMGSA", + "name": "Guyot, Station Total des Diables Bleus", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024663, + 47.301901 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBALHQJMGSA", + "ref": "BALHQJMGSA", + "name": "Guyot, Station Total des Diables Bleus", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POAZ5L2OFUL", + "ref": "OAZ5L2OFUL", + "name": "Guyot, Mitsubishi Dijon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POAZ5L2OFUL", + "ref": "OAZ5L2OFUL", + "name": "Guyot, Mitsubishi Dijon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POAZ5L2OFUL", + "ref": "OAZ5L2OFUL", + "name": "Guyot, Mitsubishi Dijon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POAZ5L2OFUL", + "ref": "OAZ5L2OFUL", + "name": "Guyot, Mitsubishi Dijon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEVCZWWHW9", + "ref": "VEVCZWWHW9", + "name": "Guyot, Renault Dijon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEVCZWWHW9", + "ref": "VEVCZWWHW9", + "name": "Guyot, Renault Dijon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEVCZWWHW9", + "ref": "VEVCZWWHW9", + "name": "Guyot, Renault Dijon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEVCZWWHW9", + "ref": "VEVCZWWHW9", + "name": "Guyot, Renault Dijon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEVCZWWHW9", + "ref": "VEVCZWWHW9", + "name": "Guyot, Renault Dijon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEVCZWWHW9", + "ref": "VEVCZWWHW9", + "name": "Guyot, Renault Dijon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEVCZWWHW9", + "ref": "VEVCZWWHW9", + "name": "Guyot, Renault Dijon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEVCZWWHW9", + "ref": "VEVCZWWHW9", + "name": "Guyot, Renault Dijon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEVCZWWHW9", + "ref": "VEVCZWWHW9", + "name": "Guyot, Renault Dijon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVEVCZWWHW9", + "ref": "VEVCZWWHW9", + "name": "Guyot, Renault Dijon", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11788002, + 45.83878616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSMJ9I3RMS", + "ref": "LSMJ9I3RMS", + "name": "Cébazat, rue Verte", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508738, + 45.51496871 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRHN6Y2IMIA", + "ref": "RHN6Y2IMIA", + "name": "Vienne, Avenue du Général Leclerc", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11788002, + 45.83878616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSMJ9I3RMS", + "ref": "LSMJ9I3RMS", + "name": "Cébazat, rue Verte", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.463361, + 48.418952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPBDRSCXA3", + "ref": "CPBDRSCXA3", + "name": "Groupe Etoile de l'Ouest - Brest VI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.07803362, + 48.89969182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQ5XVNKIGI", + "ref": "FQ5XVNKIGI", + "name": "Saint-Germain-en-Laye, LS Group", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.07803362, + 48.89969182 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFQ5XVNKIGI", + "ref": "FQ5XVNKIGI", + "name": "Saint-Germain-en-Laye, LS Group", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67808295, + 48.08433633 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEIFCSLELR2", + "ref": "EIFCSLELR2", + "name": "Rennes, LS Group", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.691828, + 48.978725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH5EHPPZSMJ", + "ref": "H5EHPPZSMJ", + "name": "Mantes-la-Ville, LS Group", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.691828, + 48.978725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PH5EHPPZSMJ", + "ref": "H5EHPPZSMJ", + "name": "Mantes-la-Ville, LS Group", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56617758, + 48.58069919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEAREAOIQCM", + "ref": "EAREAOIQCM", + "name": "Maintenon, LS Group", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56617758, + 48.58069919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEAREAOIQCM", + "ref": "EAREAOIQCM", + "name": "Maintenon, LS Group", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56617758, + 48.58069919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEAREAOIQCM", + "ref": "EAREAOIQCM", + "name": "Maintenon, LS Group", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55033209, + 48.83297261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRFKYFA0B17", + "ref": "RFKYFA0B17", + "name": "Granville, LS Group", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55033209, + 48.83297261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRFKYFA0B17", + "ref": "RFKYFA0B17", + "name": "Granville, LS Group", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55033209, + 48.83297261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRFKYFA0B17", + "ref": "RFKYFA0B17", + "name": "Granville, LS Group", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55033209, + 48.83297261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRFKYFA0B17", + "ref": "RFKYFA0B17", + "name": "Granville, LS Group", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01379, + 43.5738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFLPKSQ", + "ref": "FLPKSQ", + "name": "Le Cannet, Rue Notre-Dame des Anges", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.796775, + 48.546048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTFABMXZF7B", + "ref": "TFABMXZF7B", + "name": "Groupe Etoile de l'Ouest - Plérin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99288892, + 48.65405506 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRZMUAPWE9V", + "ref": "RZMUAPWE9V", + "name": "Saint-Malo, LS Group St Malo", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.796775, + 48.546048 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTFABMXZF7B", + "ref": "TFABMXZF7B", + "name": "Groupe Etoile de l'Ouest - Plérin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.690373, + 48.181674 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POMMSBZGWY6", + "ref": "OMMSBZGWY6", + "name": "Groupe Etoile de l'Ouest - Loudéac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.690373, + 48.181674 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POMMSBZGWY6", + "ref": "OMMSBZGWY6", + "name": "Groupe Etoile de l'Ouest - Loudéac", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.019182, + 47.982768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUK3CJTWPKE", + "ref": "UK3CJTWPKE", + "name": "Groupe Etoile de l'Ouest - Quimper VI", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.463361, + 48.418952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCPBDRSCXA3", + "ref": "CPBDRSCXA3", + "name": "Groupe Etoile de l'Ouest - Brest VI", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.019182, + 47.982768 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUK3CJTWPKE", + "ref": "UK3CJTWPKE", + "name": "Groupe Etoile de l'Ouest - Quimper VI", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022432, + 47.303241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLCOPFREFDC", + "ref": "LCOPFREFDC", + "name": "Jean Jaurès, Groupe Guyot", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022432, + 47.303241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLCOPFREFDC", + "ref": "LCOPFREFDC", + "name": "Jean Jaurès, Groupe Guyot", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022432, + 47.303241 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLCOPFREFDC", + "ref": "LCOPFREFDC", + "name": "Jean Jaurès, Groupe Guyot", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63722, + 43.4613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLKZWHQ", + "ref": "LKZWHQ", + "name": "Roquebrune, Mercedes", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02929, + 43.136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTTYQJ", + "ref": "BTTYQJ", + "name": "La Garde, Mercedes VP", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63722, + 43.4613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLKZWHQ", + "ref": "LKZWHQ", + "name": "Roquebrune, Mercedes", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02929, + 43.136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTTYQJ", + "ref": "BTTYQJ", + "name": "La Garde, Mercedes VP", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99288892, + 48.65405506 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRZMUAPWE9V", + "ref": "RZMUAPWE9V", + "name": "Saint-Malo, LS Group St Malo", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99288892, + 48.65405506 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRZMUAPWE9V", + "ref": "RZMUAPWE9V", + "name": "Saint-Malo, LS Group St Malo", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11788002, + 45.83878616 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLSMJ9I3RMS", + "ref": "LSMJ9I3RMS", + "name": "Cébazat, rue Verte", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.66300173, + 47.92060591 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLGT1LJMVAS", + "ref": "LGT1LJMVAS", + "name": "Rupt-sur-Moselle, Grands Moulins Auto garage du centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48936, + 47.0887 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PICP9SCW6WL", + "ref": "ICP9SCW6WL", + "name": "Dole, Place Precipiano", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4970623, + 47.0903921 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCSDDF6LY8", + "ref": "JCSDDF6LY8", + "name": "Dole, Avenue de Lahr", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48936, + 47.0887 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PICP9SCW6WL", + "ref": "ICP9SCW6WL", + "name": "Dole, Place Precipiano", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48936, + 47.0887 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PICP9SCW6WL", + "ref": "ICP9SCW6WL", + "name": "Dole, Place Precipiano", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48936, + 47.0887 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PICP9SCW6WL", + "ref": "ICP9SCW6WL", + "name": "Dole, Place Precipiano", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.75531, + 43.2518 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFWUWZA", + "ref": "FWUWZA", + "name": "Le Castellet, Grand Prix Hôtel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.75531, + 43.2518 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFWUWZA", + "ref": "FWUWZA", + "name": "Le Castellet, Grand Prix Hôtel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.88118532, + 43.5830557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQNWNPEG1Z0", + "ref": "QNWNPEG1Z0", + "name": "Montpellier, Grands Garages de l'Hérault", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.88118532, + 43.5830557 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQNWNPEG1Z0", + "ref": "QNWNPEG1Z0", + "name": "Montpellier, Grands Garages de l'Hérault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.601068, + 48.020193 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMZO1WROI2A", + "ref": "MZO1WROI2A", + "name": "Saint-Etienne-Lès-Remiremont, Grands Moulins Auto", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.601068, + 48.020193 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMZO1WROI2A", + "ref": "MZO1WROI2A", + "name": "Saint-Etienne-Lès-Remiremont, Grands Moulins Auto", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.76079398, + 47.88165922 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDUSESMVQ5L", + "ref": "DUSESMVQ5L", + "name": "Le Thillot, Avenue de Verdun", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.76079398, + 47.88165922 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDUSESMVQ5L", + "ref": "DUSESMVQ5L", + "name": "Le Thillot, Avenue de Verdun", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.66300173, + 47.92060591 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLGT1LJMVAS", + "ref": "LGT1LJMVAS", + "name": "Rupt-sur-Moselle, Grands Moulins Auto garage du centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.987925, + 48.972848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDX98OTN73K", + "ref": "DX98OTN73K", + "name": "Vernouillet, LS Group", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01379, + 43.5738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFLPKSQ", + "ref": "FLPKSQ", + "name": "Le Cannet, Rue Notre-Dame des Anges", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.29887, + 48.6106 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVFRBGTHDDU", + "ref": "VFRBGTHDDU", + "name": "Plouider, La Butte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07251158, + 45.88901564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POJWVDULAW6", + "ref": "OJWVDULAW6", + "name": "Enval, La Bonne Pointure", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07251158, + 45.88901564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POJWVDULAW6", + "ref": "OJWVDULAW6", + "name": "Enval, La Bonne Pointure", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89605592, + 44.42091556 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSBKBL8DGO5", + "ref": "SBKBL8DGO5", + "name": "La Bastide de Grignan, 120 Chemin de Bessas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89605592, + 44.42091556 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSBKBL8DGO5", + "ref": "SBKBL8DGO5", + "name": "La Bastide de Grignan, 120 Chemin de Bessas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.586486, + 44.70702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZK1N3I2E1J", + "ref": "ZK1N3I2E1J", + "name": "2 Allée Ulysse Gayon, LSB Martillac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.586486, + 44.70702 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZK1N3I2E1J", + "ref": "ZK1N3I2E1J", + "name": "2 Allée Ulysse Gayon, LSB Martillac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -149.319334, + -17.7426183 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGSANUPSRJN", + "ref": "GSANUPSRJN", + "name": "LS PROXI TARAVAO", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-14", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -149.319334, + -17.7426183 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGSANUPSRJN", + "ref": "GSANUPSRJN", + "name": "LS PROXI TARAVAO", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-14", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -149.613263, + -17.6226109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJBXZWVVFM5", + "ref": "JBXZWVVFM5", + "name": "LS PROXI PUNAAUIA", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -149.613263, + -17.6226109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJBXZWVVFM5", + "ref": "JBXZWVVFM5", + "name": "LS PROXI PUNAAUIA", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.987925, + 48.972848 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDX98OTN73K", + "ref": "DX98OTN73K", + "name": "Vernouillet, LS Group", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02929, + 43.136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTTYQJ", + "ref": "BTTYQJ", + "name": "La Garde, Mercedes VP", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02929, + 43.136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTTYQJ", + "ref": "BTTYQJ", + "name": "La Garde, Mercedes VP", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02929, + 43.136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTTYQJ", + "ref": "BTTYQJ", + "name": "La Garde, Mercedes VP", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKJMLF9CKH", + "ref": "QKJMLF9CKH", + "name": "La Rochelle, Groupe Michel", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16641258, + 45.65972238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFZSOUDQLT1", + "ref": "FZSOUDQLT1", + "name": "Angoulême, Groupe Michel", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16641258, + 45.65972238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFZSOUDQLT1", + "ref": "FZSOUDQLT1", + "name": "Angoulême, Groupe Michel", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16641258, + 45.65972238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFZSOUDQLT1", + "ref": "FZSOUDQLT1", + "name": "Angoulême, Groupe Michel", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16641258, + 45.65972238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFZSOUDQLT1", + "ref": "FZSOUDQLT1", + "name": "Angoulême, Groupe Michel", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16641258, + 45.65972238 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFZSOUDQLT1", + "ref": "FZSOUDQLT1", + "name": "Angoulême, Groupe Michel", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKJMLF9CKH", + "ref": "QKJMLF9CKH", + "name": "La Rochelle, Groupe Michel", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKJMLF9CKH", + "ref": "QKJMLF9CKH", + "name": "La Rochelle, Groupe Michel", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKJMLF9CKH", + "ref": "QKJMLF9CKH", + "name": "La Rochelle, Groupe Michel", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKJMLF9CKH", + "ref": "QKJMLF9CKH", + "name": "La Rochelle, Groupe Michel", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKJMLF9CKH", + "ref": "QKJMLF9CKH", + "name": "La Rochelle, Groupe Michel", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKJMLF9CKH", + "ref": "QKJMLF9CKH", + "name": "La Rochelle, Groupe Michel", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKJMLF9CKH", + "ref": "QKJMLF9CKH", + "name": "La Rochelle, Groupe Michel", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKJMLF9CKH", + "ref": "QKJMLF9CKH", + "name": "La Rochelle, Groupe Michel", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQKJMLF9CKH", + "ref": "QKJMLF9CKH", + "name": "La Rochelle, Groupe Michel", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02929, + 43.136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTTYQJ", + "ref": "BTTYQJ", + "name": "La Garde, Mercedes VP", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6642695, + 45.74606184 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQJ5GYSMHHX", + "ref": "QJ5GYSMHHX", + "name": "Saintes, Groupe Michel", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6642695, + 45.74606184 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQJ5GYSMHHX", + "ref": "QJ5GYSMHHX", + "name": "Saintes, Groupe Michel", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6642695, + 45.74606184 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQJ5GYSMHHX", + "ref": "QJ5GYSMHHX", + "name": "Saintes, Groupe Michel", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6642695, + 45.74606184 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQJ5GYSMHHX", + "ref": "QJ5GYSMHHX", + "name": "Saintes, Groupe Michel", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6642695, + 45.74606184 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQJ5GYSMHHX", + "ref": "QJ5GYSMHHX", + "name": "Saintes, Groupe Michel", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.13137, + 43.652371 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCA9CCNHNBW", + "ref": "CA9CCNHNBW", + "name": "Salon de Provence, Route du Val de Cuech", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.056644, + 48.609489 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCAGYQWVCSD", + "ref": "CAGYQWVCSD", + "name": "La Richardais, LS Group Dinar", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05903764, + 48.4648759 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYTZVC6LZLM", + "ref": "YTZVC6LZLM", + "name": "Taden, LS Group Dinan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05903764, + 48.4648759 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYTZVC6LZLM", + "ref": "YTZVC6LZLM", + "name": "Taden, LS Group Dinan", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05903764, + 48.4648759 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYTZVC6LZLM", + "ref": "YTZVC6LZLM", + "name": "Taden, LS Group Dinan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05903764, + 48.4648759 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYTZVC6LZLM", + "ref": "YTZVC6LZLM", + "name": "Taden, LS Group Dinan", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08322656, + 49.00326919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKHMXYULO0", + "ref": "YKHMXYULO0", + "name": "Conflans-Sainte-Honorine, LS Group", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08322656, + 49.00326919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKHMXYULO0", + "ref": "YKHMXYULO0", + "name": "Conflans-Sainte-Honorine, LS Group", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06978178, + 49.44698715 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXDCMNUFZH1", + "ref": "XDCMNUFZH1", + "name": "Rouen, avenue du Mont Riboudet", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06978178, + 49.44698715 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXDCMNUFZH1", + "ref": "XDCMNUFZH1", + "name": "Rouen, avenue du Mont Riboudet", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06978178, + 49.44698715 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXDCMNUFZH1", + "ref": "XDCMNUFZH1", + "name": "Rouen, avenue du Mont Riboudet", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06978178, + 49.44698715 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXDCMNUFZH1", + "ref": "XDCMNUFZH1", + "name": "Rouen, avenue du Mont Riboudet", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63722, + 43.4613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLKZWHQ", + "ref": "LKZWHQ", + "name": "Roquebrune, Mercedes", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63722, + 43.4613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLKZWHQ", + "ref": "LKZWHQ", + "name": "Roquebrune, Mercedes", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63722, + 43.4613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLKZWHQ", + "ref": "LKZWHQ", + "name": "Roquebrune, Mercedes", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63722, + 43.4613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLKZWHQ", + "ref": "LKZWHQ", + "name": "Roquebrune, Mercedes", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63722, + 43.4613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLKZWHQ", + "ref": "LKZWHQ", + "name": "Roquebrune, Mercedes", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63722, + 43.4613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLKZWHQ", + "ref": "LKZWHQ", + "name": "Roquebrune, Mercedes", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02929, + 43.136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTTYQJ", + "ref": "BTTYQJ", + "name": "La Garde, Mercedes VP", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63722, + 43.4613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLKZWHQ", + "ref": "LKZWHQ", + "name": "Roquebrune, Mercedes", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63722, + 43.4613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLKZWHQ", + "ref": "LKZWHQ", + "name": "Roquebrune, Mercedes", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02929, + 43.136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTTYQJ", + "ref": "BTTYQJ", + "name": "La Garde, Mercedes VP", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03999, + 43.1475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVDQGVS", + "ref": "VDQGVS", + "name": "La Garde, Mercedes PL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63722, + 43.4613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLKZWHQ", + "ref": "LKZWHQ", + "name": "Roquebrune, Mercedes", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63722, + 43.4613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLKZWHQ", + "ref": "LKZWHQ", + "name": "Roquebrune, Mercedes", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03999, + 43.1475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVDQGVS", + "ref": "VDQGVS", + "name": "La Garde, Mercedes PL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02929, + 43.136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTTYQJ", + "ref": "BTTYQJ", + "name": "La Garde, Mercedes VP", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02929, + 43.136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTTYQJ", + "ref": "BTTYQJ", + "name": "La Garde, Mercedes VP", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02929, + 43.136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTTYQJ", + "ref": "BTTYQJ", + "name": "La Garde, Mercedes VP", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02929, + 43.136 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBTTYQJ", + "ref": "BTTYQJ", + "name": "La Garde, Mercedes VP", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.95996435, + 49.53778454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUKQGBDK3E7", + "ref": "UKQGBDK3E7", + "name": "Barentin, avenue Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.95996435, + 49.53778454 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUKQGBDK3E7", + "ref": "UKQGBDK3E7", + "name": "Barentin, avenue Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.14688354, + 49.49387319 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM97MI77NNA", + "ref": "M97MI77NNA", + "name": "Le Havre, boulevard de Graville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.14688354, + 49.49387319 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM97MI77NNA", + "ref": "M97MI77NNA", + "name": "Le Havre, boulevard de Graville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.14688354, + 49.49387319 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM97MI77NNA", + "ref": "M97MI77NNA", + "name": "Le Havre, boulevard de Graville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.14688354, + 49.49387319 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM97MI77NNA", + "ref": "M97MI77NNA", + "name": "Le Havre, boulevard de Graville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.14688354, + 49.49387319 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM97MI77NNA", + "ref": "M97MI77NNA", + "name": "Le Havre, boulevard de Graville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.14688354, + 49.49387319 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PM97MI77NNA", + "ref": "M97MI77NNA", + "name": "Le Havre, boulevard de Graville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06978178, + 49.44698715 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXDCMNUFZH1", + "ref": "XDCMNUFZH1", + "name": "Rouen, avenue du Mont Riboudet", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4867079, + 47.0956585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGR5HJDH3RQ", + "ref": "GR5HJDH3RQ", + "name": "Dole, rue des Messageries", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4867079, + 47.0956585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGR5HJDH3RQ", + "ref": "GR5HJDH3RQ", + "name": "Dole, rue des Messageries", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4970623, + 47.0903921 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJCSDDF6LY8", + "ref": "JCSDDF6LY8", + "name": "Dole, Avenue de Lahr", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22995082, + 43.99335094 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PLLIMVWEOVKSB9K", + "ref": "LLIMVWEOVKSB9K", + "name": "Fourcès, Chemin de Halage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.915598, + 43.4745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PRAMSWR", + "ref": "RAMSWR", + "name": "Lombez, Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.592952, + 43.652 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PVFWKYJ", + "ref": "VFWKYJ", + "name": "Auch, Allée des Arts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929674, + 43.4906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PANWJWC", + "ref": "ANWJWC", + "name": "Samatan, Place des Cordeliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929674, + 43.4906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PANWJWC", + "ref": "ANWJWC", + "name": "Samatan, Place des Cordeliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.97845, + 43.7229 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PBABXXR", + "ref": "BABXXR", + "name": "Cologne, Parking Chemin de Ronde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.97845, + 43.7229 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PBABXXR", + "ref": "BABXXR", + "name": "Cologne, Parking Chemin de Ronde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.646619, + 43.344 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PUPBWJL", + "ref": "UPBWJL", + "name": "Saint-Blancard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.372822, + 43.9558 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PDMVKVB", + "ref": "DMVKVB", + "name": "Condom, Jean-Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.600131, + 43.6679 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PQDBEGF", + "ref": "QDBEGF", + "name": "Auch, Roger Salengro", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66865, + 44.0031 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PUCAAKJ", + "ref": "UCAAKJ", + "name": "Sainte-Mère, Rue de la Plaine", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0435403, + 43.9499 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PAVQXQB", + "ref": "AVQXQB", + "name": "Cazaubon, Barbotan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.590491, + 43.6488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PNKUESQ", + "ref": "NKUESQ", + "name": "Auch, Massena", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22995082, + 43.99335094 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PLLIMVWEOVKSB9K", + "ref": "LLIMVWEOVKSB9K", + "name": "Fourcès, Chemin de Halage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.372822, + 43.9558 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PDMVKVB", + "ref": "DMVKVB", + "name": "Condom, Jean-Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.592221, + 43.4917 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PVYUUWX", + "ref": "VYUUWX", + "name": "Seissan, Place Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.103122, + 43.8593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PCDKXJS", + "ref": "CDKXJS", + "name": "Eauze, Rochefort", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0435403, + 43.9499 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PAVQXQB", + "ref": "AVQXQB", + "name": "Cazaubon, Barbotan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.873202, + 43.63 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PHXJWUA", + "ref": "HXJWUA", + "name": "Gimont, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57849, + 43.4282 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PBJPTGU", + "ref": "BJPTGU", + "name": "Masseube, Jules Duffort", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2364, + 43.7032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PAMUVUF", + "ref": "AMUVUF", + "name": "Barcelonne-du-Gers, Place de la Garlande", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.301174, + 43.757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PSAXDEN", + "ref": "SAXDEN", + "name": "Vic-Fezensac, Place Mahomme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16162, + 43.5243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PPQSUGK", + "ref": "PQSUGK", + "name": "Marciac, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.381984, + 43.8829 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PXPAZYK", + "ref": "XPAZYK", + "name": "Valence-sur-Baïse, Blvd du Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.301174, + 43.757 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PSAXDEN", + "ref": "SAXDEN", + "name": "Vic-Fezensac, Place Mahomme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57849, + 43.4282 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PBJPTGU", + "ref": "BJPTGU", + "name": "Masseube, Jules Duffort", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.873202, + 43.63 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PHXJWUA", + "ref": "HXJWUA", + "name": "Gimont, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2364, + 43.7032 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PAMUVUF", + "ref": "AMUVUF", + "name": "Barcelonne-du-Gers, Place de la Garlande", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.592221, + 43.4917 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PVYUUWX", + "ref": "VYUUWX", + "name": "Seissan, Place Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.733544, + 43.4498 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PJXNFKK", + "ref": "JXNFKK", + "name": "Simorre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.646619, + 43.344 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PUPBWJL", + "ref": "UPBWJL", + "name": "Saint-Blancard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.592952, + 43.652 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PVFWKYJ", + "ref": "VFWKYJ", + "name": "Auch, Allée des Arts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.590491, + 43.6488 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PNKUESQ", + "ref": "NKUESQ", + "name": "Auch, Massena", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.306926, + 43.4287 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PFPMRAX", + "ref": "FPMRAX", + "name": "Miélan, Pierre Primi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.237184, + 43.8843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PXTSRMR", + "ref": "XTSRMR", + "name": "Gondrin, Fermanville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.757224, + 43.9983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PZRTKJD", + "ref": "ZRTKJD", + "name": "Miradoux, Place du Foirail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.625206, + 43.9343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PBFTTPG", + "ref": "BFTTPG", + "name": "Lectoure, Parking le Bastion", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.87814433, + 43.73183265 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PKFSCCR", + "ref": "KFSCCR", + "name": "Mauvezin, Place du Foirail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.87814433, + 43.73183265 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PKFSCCR", + "ref": "KFSCCR", + "name": "Mauvezin, Place du Foirail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.306926, + 43.4287 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PFPMRAX", + "ref": "FPMRAX", + "name": "Miélan, Pierre Primi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.625206, + 43.9343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PBFTTPG", + "ref": "BFTTPG", + "name": "Lectoure, Parking le Bastion", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.07928, + 43.6137 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PKHRYDG", + "ref": "KHRYDG", + "name": "L'Isle-Jourdain, Place Saint-Bernard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.07928, + 43.6137 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PKHRYDG", + "ref": "KHRYDG", + "name": "L'Isle-Jourdain, Place Saint-Bernard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49866, + 43.9812 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32POLNVAYQDOR", + "ref": "OLNVAYQDOR", + "name": "La Romieu, Boulevard Lacave", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49866, + 43.9812 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32POLNVAYQDOR", + "ref": "OLNVAYQDOR", + "name": "La Romieu, Boulevard Lacave", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.328356, + 43.5783 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PNPCXMY", + "ref": "NPCXMY", + "name": "Montesquiou, Parking Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08563, + 43.657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PDTWFUM", + "ref": "DTWFUM", + "name": "Riscle, Pyrénées", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19905, + 43.4017 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PNXFKDH", + "ref": "NXFKDH", + "name": "Villecontal-sur-Arros, Mairie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.083122, + 43.6975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PBGFWHE", + "ref": "BGFWHE", + "name": "Aignan, Colonel Parisot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.406859, + 43.5144 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PGKWHDP", + "ref": "GKWHDP", + "name": "Mirande, Place Paul Noulens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.083122, + 43.6975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PBGFWHE", + "ref": "BGFWHE", + "name": "Aignan, Colonel Parisot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.237184, + 43.8843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PXTSRMR", + "ref": "XTSRMR", + "name": "Gondrin, Fermanville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42744, + 43.8057 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PLALSSE", + "ref": "LALSSE", + "name": "Castéra-Verduzan, Place du 8 Juillet 1977", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.328356, + 43.5783 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PNPCXMY", + "ref": "NPCXMY", + "name": "Montesquiou, Parking Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.406859, + 43.5144 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PGKWHDP", + "ref": "GKWHDP", + "name": "Mirande, Place Paul Noulens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.666379, + 43.8505 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PYECSZR", + "ref": "YECSZR", + "name": "Fleurance, Pierre de Coubertin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.585688, + 43.6363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PXRFJWF", + "ref": "XRFJWF", + "name": "Auch, Place Maréchal Lannes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.585688, + 43.6363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PXRFJWF", + "ref": "XRFJWF", + "name": "Auch, Place Maréchal Lannes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.103122, + 43.8593 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PCDKXJS", + "ref": "CDKXJS", + "name": "Eauze, Rochefort", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.666379, + 43.8505 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PYECSZR", + "ref": "YECSZR", + "name": "Fleurance, Pierre de Coubertin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.460499, + 43.7579 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PKVTXUX", + "ref": "KVTXUX", + "name": "Jegun, Blvd Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.915598, + 43.4745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PRAMSWR", + "ref": "RAMSWR", + "name": "Lombez, Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44807, + 47.06341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDKZZCS", + "ref": "DKZZCS", + "name": "Dole, Aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.902219, + 47.157872 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PW3AAB7VF4D", + "ref": "W3AAB7VF4D", + "name": "Boussière, Parking Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7029, + 44.9449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYHJJOKKRAK", + "ref": "YHJJOKKRAK", + "name": "Le Plan-Médoc, Golf du Médoc Resort", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.02598493, + 48.73767482 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA5I8VJ3JUL", + "ref": "A5I8VJ3JUL", + "name": "Sarrebourg, Ferme du Winkelhof", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.02598493, + 48.73767482 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA5I8VJ3JUL", + "ref": "A5I8VJ3JUL", + "name": "Sarrebourg, Ferme du Winkelhof", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38006236, + 43.67342588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEG8ALQQG74", + "ref": "EG8ALQQG74", + "name": "Soorts-Hossegor, Gorille Cycles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38006236, + 43.67342588 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEG8ALQQG74", + "ref": "EG8ALQQG74", + "name": "Soorts-Hossegor, Gorille Cycles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29651028, + 49.14390071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTA2FAXN8SN", + "ref": "TA2FAXN8SN", + "name": "Glos, Gougeon Fournitures", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29651028, + 49.14390071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTA2FAXN8SN", + "ref": "TA2FAXN8SN", + "name": "Glos, Gougeon Fournitures", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29651028, + 49.14390071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTA2FAXN8SN", + "ref": "TA2FAXN8SN", + "name": "Glos, Gougeon Fournitures", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29651028, + 49.14390071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTA2FAXN8SN", + "ref": "TA2FAXN8SN", + "name": "Glos, Gougeon Fournitures", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29651028, + 49.14390071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTA2FAXN8SN", + "ref": "TA2FAXN8SN", + "name": "Glos, Gougeon Fournitures", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29651028, + 49.14390071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTA2FAXN8SN", + "ref": "TA2FAXN8SN", + "name": "Glos, Gougeon Fournitures", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29651028, + 49.14390071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTA2FAXN8SN", + "ref": "TA2FAXN8SN", + "name": "Glos, Gougeon Fournitures", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29651028, + 49.14390071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTA2FAXN8SN", + "ref": "TA2FAXN8SN", + "name": "Glos, Gougeon Fournitures", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.902219, + 47.157872 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PW3AAB7VF4D", + "ref": "W3AAB7VF4D", + "name": "Boussière, Parking Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16162, + 43.5243 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PPQSUGK", + "ref": "PQSUGK", + "name": "Marciac, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02526, + 47.2351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PBESACGRANVEL", + "ref": "besacgranvel", + "name": "Besançon, Parking Granvelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.01959915, + 47.2340438 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PQJANFK", + "ref": "QJANFK", + "name": "Besançon, Parking Chamars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02526, + 47.2351 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PBESACGRANVEL", + "ref": "besacgranvel", + "name": "Besançon, Parking Granvelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.90226, + 47.1742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PNRDWFQ", + "ref": "NRDWFQ", + "name": "Thoraise, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03128, + 47.2392 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PBESACSTPAUL", + "ref": "besacstpaul", + "name": "Besançon, Parking St-Paul", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96365, + 47.2273 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PBESACEFS", + "ref": "Besacefs", + "name": "Besançon, Hôpital Minjoz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.90226, + 47.1742 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PNRDWFQ", + "ref": "NRDWFQ", + "name": "Thoraise, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96365, + 47.2273 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PBESACEFS", + "ref": "Besacefs", + "name": "Besançon, Hôpital Minjoz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.01967, + 47.2341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PQJANFK", + "ref": "QJANFK", + "name": "Besançon, Parking Chamars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02107, + 47.2349 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PBESACSTJACQ", + "ref": "Besacstjacq", + "name": "Besançon, Parking St-Jacques", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03128, + 47.2392 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PBESACSTPAUL", + "ref": "besacstpaul", + "name": "Besançon, Parking St-Paul", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02107, + 47.2349 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS25PBESACSTJACQ", + "ref": "Besacstjacq", + "name": "Besançon, Parking St-Jacques", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44807, + 47.06341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDKZZCS", + "ref": "DKZZCS", + "name": "Dole, Aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7029, + 44.9449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYHJJOKKRAK", + "ref": "YHJJOKKRAK", + "name": "Le Plan-Médoc, Golf du Médoc Resort", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7029, + 44.9449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYHJJOKKRAK", + "ref": "YHJJOKKRAK", + "name": "Le Plan-Médoc, Golf du Médoc Resort", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7029, + 44.9449 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYHJJOKKRAK", + "ref": "YHJJOKKRAK", + "name": "Le Plan-Médoc, Golf du Médoc Resort", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47975, + 47.509 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAUVTU2DO3E", + "ref": "AUVTU2DO3E", + "name": "Verrières-en-Anjou, Golf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.381984, + 43.8829 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS32PXPAZYK", + "ref": "XPAZYK", + "name": "Valence-sur-Baïse, Blvd du Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.633763, + 44.774632 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUBCPEBFYNE", + "ref": "UBCPEBFYNE", + "name": "Gradignan, Gescor", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.633763, + 44.774632 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUBCPEBFYNE", + "ref": "UBCPEBFYNE", + "name": "Gradignan, Gescor", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.132028, + 48.593161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN8GZ5CIJWA", + "ref": "N8GZ5CIJWA", + "name": "Saint-Vougay, Gite au Dolmen de Kerhus", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.132028, + 48.593161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PN8GZ5CIJWA", + "ref": "N8GZ5CIJWA", + "name": "Saint-Vougay, Gite au Dolmen de Kerhus", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.919598, + 47.611388 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE2BTI9BB2V", + "ref": "E2BTI9BB2V", + "name": "Baden, Route de Tourlvern", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.919598, + 47.611388 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PE2BTI9BB2V", + "ref": "E2BTI9BB2V", + "name": "Baden, Route de Tourlvern", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.99871, + 45.642324 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGXS4W24ADV", + "ref": "GXS4W24ADV", + "name": "Les Déserts, route du revard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.99871, + 45.642324 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGXS4W24ADV", + "ref": "GXS4W24ADV", + "name": "Les Déserts, route du revard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77221, + 50.39142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYU7PPYOYU0", + "ref": "YU7PPYOYU0", + "name": "Givenchy-en-Gohelle, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77221, + 50.39142 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYU7PPYOYU0", + "ref": "YU7PPYOYU0", + "name": "Givenchy-en-Gohelle, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8491821, + 47.07137504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMSJI4GKDMB", + "ref": "MSJI4GKDMB", + "name": "Cholet, La Casse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8491821, + 47.07137504 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMSJI4GKDMB", + "ref": "MSJI4GKDMB", + "name": "Cholet, La Casse", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.490938, + 43.504979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSLAMWPZJFU", + "ref": "SLAMWPZJFU", + "name": "La caberte, Loubersan", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.08304118, + 48.73065177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDVSLEX3W4G", + "ref": "DVSLEX3W4G", + "name": "Buhl-Lorraine, Zone Ariane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.08304118, + 48.73065177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDVSLEX3W4G", + "ref": "DVSLEX3W4G", + "name": "Buhl-Lorraine, Zone Ariane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.29887, + 48.6106 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVFRBGTHDDU", + "ref": "VFRBGTHDDU", + "name": "Plouider, La Butte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.152751, + 43.090864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLUNOSLDDGN", + "ref": "LUNOSLDDGN", + "name": "Pouzac, Chemin du Golf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.152751, + 43.090864 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLUNOSLDDGN", + "ref": "LUNOSLDDGN", + "name": "Pouzac, Chemin du Golf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22669529, + 47.49898491 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYNDBGQMNFP", + "ref": "YNDBGQMNFP", + "name": "Valloire-sur-cisse, Golf Hotel de la Carte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22669529, + 47.49898491 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYNDBGQMNFP", + "ref": "YNDBGQMNFP", + "name": "Valloire-sur-cisse, Golf Hotel de la Carte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.886405, + 46.992607 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIMOUXSVXCM", + "ref": "IMOUXSVXCM", + "name": "Levernois, rue du golf", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.518977, + 48.806386 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDWO4IMGBLA", + "ref": "DWO4IMGBLA", + "name": "Pleumeur-Bodou, Route du Golf", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.518977, + 48.806386 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDWO4IMGBLA", + "ref": "DWO4IMGBLA", + "name": "Pleumeur-Bodou, Route du Golf", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.518977, + 48.806386 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDWO4IMGBLA", + "ref": "DWO4IMGBLA", + "name": "Pleumeur-Bodou, Route du Golf", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.518977, + 48.806386 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDWO4IMGBLA", + "ref": "DWO4IMGBLA", + "name": "Pleumeur-Bodou, Route du Golf", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47975, + 47.509 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAUVTU2DO3E", + "ref": "AUVTU2DO3E", + "name": "Verrières-en-Anjou, Golf", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08322656, + 49.00326919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKHMXYULO0", + "ref": "YKHMXYULO0", + "name": "Conflans-Sainte-Honorine, LS Group", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08322656, + 49.00326919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYKHMXYULO0", + "ref": "YKHMXYULO0", + "name": "Conflans-Sainte-Honorine, LS Group", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.14865627, + 48.8912276 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAQ1IWU1HSJ", + "ref": "AQ1IWU1HSJ", + "name": "Chatou, LS Group", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410487, + 43.263906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGFBWLWVA0T", + "ref": "GFBWLWVA0T", + "name": "Marseille, Boulevard Sainte Marguerite", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84058, + 43.6979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTRCBSB", + "ref": "TRCBSB", + "name": "Intermarché St-Vallier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84058, + 43.6979 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTRCBSB", + "ref": "TRCBSB", + "name": "Intermarché St-Vallier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.38644165, + 43.36181463 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKZKLJ5ISV", + "ref": "AKZKLJ5ISV", + "name": "Serres-Castet, Rue de Fabreges ZA du Pont Long II", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.38644165, + 43.36181463 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKZKLJ5ISV", + "ref": "AKZKLJ5ISV", + "name": "Serres-Castet, Rue de Fabreges ZA du Pont Long II", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.38644165, + 43.36181463 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKZKLJ5ISV", + "ref": "AKZKLJ5ISV", + "name": "Serres-Castet, Rue de Fabreges ZA du Pont Long II", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.38644165, + 43.36181463 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKZKLJ5ISV", + "ref": "AKZKLJ5ISV", + "name": "Serres-Castet, Rue de Fabreges ZA du Pont Long II", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.38644165, + 43.36181463 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKZKLJ5ISV", + "ref": "AKZKLJ5ISV", + "name": "Serres-Castet, Rue de Fabreges ZA du Pont Long II", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.38644165, + 43.36181463 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKZKLJ5ISV", + "ref": "AKZKLJ5ISV", + "name": "Serres-Castet, Rue de Fabreges ZA du Pont Long II", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59452267, + 45.90408668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK7EP7K1IOK", + "ref": "K7EP7K1IOK", + "name": "Sauviat-sur-Vige, Rue Émile Dourdet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59452267, + 45.90408668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PK7EP7K1IOK", + "ref": "K7EP7K1IOK", + "name": "Sauviat-sur-Vige, Rue Émile Dourdet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410487, + 43.263906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGFBWLWVA0T", + "ref": "GFBWLWVA0T", + "name": "Marseille, Boulevard Sainte Marguerite", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410487, + 43.263906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGFBWLWVA0T", + "ref": "GFBWLWVA0T", + "name": "Marseille, Boulevard Sainte Marguerite", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410487, + 43.263906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGFBWLWVA0T", + "ref": "GFBWLWVA0T", + "name": "Marseille, Boulevard Sainte Marguerite", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410487, + 43.263906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGFBWLWVA0T", + "ref": "GFBWLWVA0T", + "name": "Marseille, Boulevard Sainte Marguerite", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43499931, + 43.28402011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7D91ZNMHR", + "ref": "G7D91ZNMHR", + "name": "Marseille, Intermarché Saint-Loup", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410487, + 43.263906 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGFBWLWVA0T", + "ref": "GFBWLWVA0T", + "name": "Marseille, Boulevard Sainte Marguerite", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.42649482, + 43.29657762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGDFCGE3FAO", + "ref": "GDFCGE3FAO", + "name": "Marseille, Rue Gaston de Flotte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.42649482, + 43.29657762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGDFCGE3FAO", + "ref": "GDFCGE3FAO", + "name": "Marseille, Rue Gaston de Flotte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02937, + 46.263818 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKM8GM7ATSN", + "ref": "KM8GM7ATSN", + "name": "Rue des Châlets, Saint-Genis-Pouilly", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02937, + 46.263818 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKM8GM7ATSN", + "ref": "KM8GM7ATSN", + "name": "Rue des Châlets, Saint-Genis-Pouilly", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02937, + 46.263818 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKM8GM7ATSN", + "ref": "KM8GM7ATSN", + "name": "Rue des Châlets, Saint-Genis-Pouilly", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02937, + 46.263818 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKM8GM7ATSN", + "ref": "KM8GM7ATSN", + "name": "Rue des Châlets, Saint-Genis-Pouilly", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7523946, + 46.18586958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRZMEWGYXIY", + "ref": "RZMEWGYXIY", + "name": "Romanèche-Thorins, Intermarché", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7523946, + 46.18586958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PRZMEWGYXIY", + "ref": "RZMEWGYXIY", + "name": "Romanèche-Thorins, Intermarché", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52857245, + 48.84490787 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNZ5AHMP1BV", + "ref": "NZ5AHMP1BV", + "name": "Noisy le Grand, Boulevard du Maréchal Foch", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52857245, + 48.84490787 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNZ5AHMP1BV", + "ref": "NZ5AHMP1BV", + "name": "Noisy le Grand, Boulevard du Maréchal Foch", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65437666, + 46.40083477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWOR2WQJIQ3M", + "ref": "LLJWOR2WQJIQ3M", + "name": "Intermarché Lugrin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65437666, + 46.40083477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWOR2WQJIQ3M", + "ref": "LLJWOR2WQJIQ3M", + "name": "Intermarché Lugrin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87375, + 48.8936 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHRWXYL", + "ref": "HRWXYL", + "name": "Intermarché, Mareil", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43499931, + 43.28402011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7D91ZNMHR", + "ref": "G7D91ZNMHR", + "name": "Marseille, Intermarché Saint-Loup", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24836, + 46.18666 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV29FRQK8HC", + "ref": "V29FRQK8HC", + "name": "Bourg-en-Bresse, Avenue du Maréchal Juin", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244833, + 45.26052084 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7WRYXX7TU", + "ref": "G7WRYXX7TU", + "name": "Davézieux, Intersport", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55377, + 46.2188 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGNRTPG", + "ref": "GNRTPG", + "name": "Izernore, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55377, + 46.2188 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGNRTPG", + "ref": "GNRTPG", + "name": "Izernore, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.25536, + 47.9017 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQFAGQX", + "ref": "QFAGQX", + "name": "Issenheim, rue de Cernay", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.25536, + 47.9017 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQFAGQX", + "ref": "QFAGQX", + "name": "Issenheim, rue de Cernay", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.24630929, + 48.7698957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC2YSEV8CCC", + "ref": "C2YSEV8CCC", + "name": "Phalsbourg, Rue du Luxembourg", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.24630929, + 48.7698957 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PC2YSEV8CCC", + "ref": "C2YSEV8CCC", + "name": "Phalsbourg, Rue du Luxembourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.464839, + 48.276894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFOVDPBDHHG", + "ref": "FOVDPBDHHG", + "name": "Sélestat, Rue de la Diligence", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.464839, + 48.276894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFOVDPBDHHG", + "ref": "FOVDPBDHHG", + "name": "Sélestat, Rue de la Diligence", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.464839, + 48.276894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFOVDPBDHHG", + "ref": "FOVDPBDHHG", + "name": "Sélestat, Rue de la Diligence", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.464839, + 48.276894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFOVDPBDHHG", + "ref": "FOVDPBDHHG", + "name": "Sélestat, Rue de la Diligence", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244833, + 45.26052084 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7WRYXX7TU", + "ref": "G7WRYXX7TU", + "name": "Davézieux, Intersport", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244833, + 45.26052084 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7WRYXX7TU", + "ref": "G7WRYXX7TU", + "name": "Davézieux, Intersport", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244833, + 45.26052084 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7WRYXX7TU", + "ref": "G7WRYXX7TU", + "name": "Davézieux, Intersport", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244833, + 45.26052084 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7WRYXX7TU", + "ref": "G7WRYXX7TU", + "name": "Davézieux, Intersport", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43499931, + 43.28402011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7D91ZNMHR", + "ref": "G7D91ZNMHR", + "name": "Marseille, Intermarché Saint-Loup", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244833, + 45.26052084 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7WRYXX7TU", + "ref": "G7WRYXX7TU", + "name": "Davézieux, Intersport", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244833, + 45.26052084 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7WRYXX7TU", + "ref": "G7WRYXX7TU", + "name": "Davézieux, Intersport", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244833, + 45.26052084 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7WRYXX7TU", + "ref": "G7WRYXX7TU", + "name": "Davézieux, Intersport", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244833, + 45.26052084 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7WRYXX7TU", + "ref": "G7WRYXX7TU", + "name": "Davézieux, Intersport", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244833, + 45.26052084 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7WRYXX7TU", + "ref": "G7WRYXX7TU", + "name": "Davézieux, Intersport", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244833, + 45.26052084 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7WRYXX7TU", + "ref": "G7WRYXX7TU", + "name": "Davézieux, Intersport", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244833, + 45.26052084 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7WRYXX7TU", + "ref": "G7WRYXX7TU", + "name": "Davézieux, Intersport", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244833, + 45.26052084 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7WRYXX7TU", + "ref": "G7WRYXX7TU", + "name": "Davézieux, Intersport", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244833, + 45.26052084 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7WRYXX7TU", + "ref": "G7WRYXX7TU", + "name": "Davézieux, Intersport", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244833, + 45.26052084 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7WRYXX7TU", + "ref": "G7WRYXX7TU", + "name": "Davézieux, Intersport", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244833, + 45.26052084 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7WRYXX7TU", + "ref": "G7WRYXX7TU", + "name": "Davézieux, Intersport", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70244833, + 45.26052084 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7WRYXX7TU", + "ref": "G7WRYXX7TU", + "name": "Davézieux, Intersport", + "capacity": "17", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43499931, + 43.28402011 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PG7D91ZNMHR", + "ref": "G7D91ZNMHR", + "name": "Marseille, Intermarché Saint-Loup", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65437666, + 46.40083477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWOR2WQJIQ3M", + "ref": "LLJWOR2WQJIQ3M", + "name": "Intermarché Lugrin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65437666, + 46.40083477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWOR2WQJIQ3M", + "ref": "LLJWOR2WQJIQ3M", + "name": "Intermarché Lugrin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65437666, + 46.40083477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWOR2WQJIQ3M", + "ref": "LLJWOR2WQJIQ3M", + "name": "Intermarché Lugrin", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35702758, + 43.14094926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZMP18EEAU", + "ref": "KZMP18EEAU", + "name": "Bormes-Les-Mimosas, Route des Lavandières", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.45245219, + 43.61737466 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POTIU7I3VVW", + "ref": "OTIU7I3VVW", + "name": "Clermont-l'Hérault, Rue du Servent Zae Les Tannes Basses", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.45245219, + 43.61737466 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POTIU7I3VVW", + "ref": "OTIU7I3VVW", + "name": "Clermont-l'Hérault, Rue du Servent Zae Les Tannes Basses", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.98865039, + 45.66025517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL5VJA9PLOF", + "ref": "L5VJA9PLOF", + "name": "Chalus, Zone de Fontanille", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.98865039, + 45.66025517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL5VJA9PLOF", + "ref": "L5VJA9PLOF", + "name": "Chalus, Zone de Fontanille", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.98865039, + 45.66025517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL5VJA9PLOF", + "ref": "L5VJA9PLOF", + "name": "Chalus, Zone de Fontanille", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.98865039, + 45.66025517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL5VJA9PLOF", + "ref": "L5VJA9PLOF", + "name": "Chalus, Zone de Fontanille", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.98865039, + 45.66025517 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PL5VJA9PLOF", + "ref": "L5VJA9PLOF", + "name": "Chalus, Zone de Fontanille", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.84526556, + 42.66333802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGMKXTSAABQ", + "ref": "GMKXTSAABQ", + "name": "Canohès, Rue Couloumine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.84526556, + 42.66333802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGMKXTSAABQ", + "ref": "GMKXTSAABQ", + "name": "Canohès, Rue Couloumine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.84526556, + 42.66333802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGMKXTSAABQ", + "ref": "GMKXTSAABQ", + "name": "Canohès, Rue Couloumine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.84526556, + 42.66333802 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGMKXTSAABQ", + "ref": "GMKXTSAABQ", + "name": "Canohès, Rue Couloumine", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.29586834, + 48.62320433 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PTEKGN2NYYP", + "ref": "TEKGN2NYYP", + "name": "Bégard, rue de Guinguamp", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35702758, + 43.14094926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZMP18EEAU", + "ref": "KZMP18EEAU", + "name": "Bormes-Les-Mimosas, Route des Lavandières", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35702758, + 43.14094926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZMP18EEAU", + "ref": "KZMP18EEAU", + "name": "Bormes-Les-Mimosas, Route des Lavandières", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65437666, + 46.40083477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJWOR2WQJIQ3M", + "ref": "LLJWOR2WQJIQ3M", + "name": "Intermarché Lugrin", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35702758, + 43.14094926 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKZMP18EEAU", + "ref": "KZMP18EEAU", + "name": "Bormes-Les-Mimosas, Route des Lavandières", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50889736, + 48.92885447 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPVB2J2HEHR", + "ref": "PVB2J2HEHR", + "name": "Aulnay-Sous-Bois, Rue Issac Newtown", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50889736, + 48.92885447 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPVB2J2HEHR", + "ref": "PVB2J2HEHR", + "name": "Aulnay-Sous-Bois, Rue Issac Newtown", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.997, + 42.6065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POZNIDWLXDO", + "ref": "OZNIDWLXDO", + "name": "Intermarché - Latour-Bas-Elne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.997, + 42.6065 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1POZNIDWLXDO", + "ref": "OZNIDWLXDO", + "name": "Intermarché - Latour-Bas-Elne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.219877, + 43.616781 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ0TOR4JKAG", + "ref": "J0TOR4JKAG", + "name": "Aups, Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.219877, + 43.616781 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PJ0TOR4JKAG", + "ref": "J0TOR4JKAG", + "name": "Aups, Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.07039204, + 49.10701789 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEXGSD0N3H2", + "ref": "EXGSD0N3H2", + "name": "Sarreguemines, Intergest", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.07039204, + 49.10701789 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEXGSD0N3H2", + "ref": "EXGSD0N3H2", + "name": "Sarreguemines, Intergest", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.07039204, + 49.10701789 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEXGSD0N3H2", + "ref": "EXGSD0N3H2", + "name": "Sarreguemines, Intergest", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.07039204, + 49.10701789 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEXGSD0N3H2", + "ref": "EXGSD0N3H2", + "name": "Sarreguemines, Intergest", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.71373892, + 45.9858627 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHUO4UYLRZ6", + "ref": "HUO4UYLRZ6", + "name": "Villefranche-sur-Saône, Institut Vermorel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.71373892, + 45.9858627 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PHUO4UYLRZ6", + "ref": "HUO4UYLRZ6", + "name": "Villefranche-sur-Saône, Institut Vermorel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.10895358, + 47.37055261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKF35TDNN0J", + "ref": "KF35TDNN0J", + "name": "Donzy, Rue Guy de Jean", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.10895358, + 47.37055261 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PKF35TDNN0J", + "ref": "KF35TDNN0J", + "name": "Donzy, Rue Guy de Jean", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.449587, + 43.532474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGII6F3OBUX", + "ref": "GII6F3OBUX", + "name": "Intermarché Draguignan, Avenue Pierre Brossolette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.449587, + 43.532474 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGII6F3OBUX", + "ref": "GII6F3OBUX", + "name": "Intermarché Draguignan, Avenue Pierre Brossolette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5312669, + 49.21197641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWG8RNRAOA1", + "ref": "WG8RNRAOA1", + "name": "Lessay, Intermarché", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5312669, + 49.21197641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWG8RNRAOA1", + "ref": "WG8RNRAOA1", + "name": "Lessay, Intermarché", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5312669, + 49.21197641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWG8RNRAOA1", + "ref": "WG8RNRAOA1", + "name": "Lessay, Intermarché", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43806053, + 49.2490948 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLCZEGSP1N1", + "ref": "LCZEGSP1N1", + "name": "Les Andélys, Avenue du Maréchal Foch", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43806053, + 49.2490948 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLCZEGSP1N1", + "ref": "LCZEGSP1N1", + "name": "Les Andélys, Avenue du Maréchal Foch", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43806053, + 49.2490948 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLCZEGSP1N1", + "ref": "LCZEGSP1N1", + "name": "Les Andélys, Avenue du Maréchal Foch", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43806053, + 49.2490948 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLCZEGSP1N1", + "ref": "LCZEGSP1N1", + "name": "Les Andélys, Avenue du Maréchal Foch", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43806053, + 49.2490948 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLCZEGSP1N1", + "ref": "LCZEGSP1N1", + "name": "Les Andélys, Avenue du Maréchal Foch", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43806053, + 49.2490948 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLCZEGSP1N1", + "ref": "LCZEGSP1N1", + "name": "Les Andélys, Avenue du Maréchal Foch", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60437868, + 44.19037435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW8NSPQCMF8", + "ref": "W8NSPQCMF8", + "name": "Le Passage, Intermarché Drive", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60437868, + 44.19037435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW8NSPQCMF8", + "ref": "W8NSPQCMF8", + "name": "Le Passage, Intermarché Drive", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60437868, + 44.19037435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW8NSPQCMF8", + "ref": "W8NSPQCMF8", + "name": "Le Passage, Intermarché Drive", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60437868, + 44.19037435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW8NSPQCMF8", + "ref": "W8NSPQCMF8", + "name": "Le Passage, Intermarché Drive", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60437868, + 44.19037435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW8NSPQCMF8", + "ref": "W8NSPQCMF8", + "name": "Le Passage, Intermarché Drive", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60437868, + 44.19037435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PW8NSPQCMF8", + "ref": "W8NSPQCMF8", + "name": "Le Passage, Intermarché Drive", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.72069789, + 50.63525212 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWTDGKNH6AA", + "ref": "WTDGKNH6AA", + "name": "Intermarché la Gorgue", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.72069789, + 50.63525212 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWTDGKNH6AA", + "ref": "WTDGKNH6AA", + "name": "Intermarché la Gorgue", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.72069789, + 50.63525212 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWTDGKNH6AA", + "ref": "WTDGKNH6AA", + "name": "Intermarché la Gorgue", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.72069789, + 50.63525212 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWTDGKNH6AA", + "ref": "WTDGKNH6AA", + "name": "Intermarché la Gorgue", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.72069789, + 50.63525212 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWTDGKNH6AA", + "ref": "WTDGKNH6AA", + "name": "Intermarché la Gorgue", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.72069789, + 50.63525212 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWTDGKNH6AA", + "ref": "WTDGKNH6AA", + "name": "Intermarché la Gorgue", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.40689934, + 44.61638549 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAERRQIG8TN", + "ref": "AERRQIG8TN", + "name": "Aubenas, Intermarché", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.40689934, + 44.61638549 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAERRQIG8TN", + "ref": "AERRQIG8TN", + "name": "Aubenas, Intermarché", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.40689934, + 44.61638549 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAERRQIG8TN", + "ref": "AERRQIG8TN", + "name": "Aubenas, Intermarché", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.40689934, + 44.61638549 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAERRQIG8TN", + "ref": "AERRQIG8TN", + "name": "Aubenas, Intermarché", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.61702, + 44.6615 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNENEJQFNF", + "ref": "XNENEJQFNF", + "name": "Guillestre, ZA Le Villard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.61702, + 44.6615 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXNENEJQFNF", + "ref": "XNENEJQFNF", + "name": "Guillestre, ZA Le Villard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32832409, + 48.0584202 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLM09XMN1JX", + "ref": "LM09XMN1JX", + "name": "Châteaudun, LS Group", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24836, + 46.18666 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV29FRQK8HC", + "ref": "V29FRQK8HC", + "name": "Bourg-en-Bresse, Avenue du Maréchal Juin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24836, + 46.18666 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV29FRQK8HC", + "ref": "V29FRQK8HC", + "name": "Bourg-en-Bresse, Avenue du Maréchal Juin", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96653, + 48.03724 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ5IARA3AQQZE", + "ref": "LLJ5IARA3AQQZE", + "name": "Karrgreen Pontivy", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.532914, + 47.449045 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIWH1A2IBF7", + "ref": "IWH1A2IBF7", + "name": "Angers, boulevard de la Liberté", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.532914, + 47.449045 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIWH1A2IBF7", + "ref": "IWH1A2IBF7", + "name": "Angers, boulevard de la Liberté", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.07700755, + 47.35132365 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFAONUN3BFI", + "ref": "FAONUN3BFI", + "name": "Dijon, Rue du Bailly ZAE CAP NORD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.07700755, + 47.35132365 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFAONUN3BFI", + "ref": "FAONUN3BFI", + "name": "Dijon, Rue du Bailly ZAE CAP NORD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8488895, + 47.0251425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPIY0KLXO2X", + "ref": "PIY0KLXO2X", + "name": "Beaune , Rue Richard", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8488895, + 47.0251425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPIY0KLXO2X", + "ref": "PIY0KLXO2X", + "name": "Beaune , Rue Richard", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8488895, + 47.0251425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPIY0KLXO2X", + "ref": "PIY0KLXO2X", + "name": "Beaune , Rue Richard", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8488895, + 47.0251425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPIY0KLXO2X", + "ref": "PIY0KLXO2X", + "name": "Beaune , Rue Richard", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.71336, + 49.50626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIU1FUKZ0FE", + "ref": "IU1FUKZ0FE", + "name": "Karrgreen Lexy", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38385, + 47.9146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSSHMQIUI0C", + "ref": "SSHMQIUI0C", + "name": "Karrgreen Ploërmel", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38385, + 47.9146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSSHMQIUI0C", + "ref": "SSHMQIUI0C", + "name": "Karrgreen Ploërmel", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.38385, + 47.9146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PSSHMQIUI0C", + "ref": "SSHMQIUI0C", + "name": "Karrgreen Ploërmel", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.71336, + 49.50626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIU1FUKZ0FE", + "ref": "IU1FUKZ0FE", + "name": "Karrgreen Lexy", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96653, + 48.03724 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ5IARA3AQQZE", + "ref": "LLJ5IARA3AQQZE", + "name": "Karrgreen Pontivy", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.275852, + 45.89023 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNRRQEKQHFI", + "ref": "NRRQEKQHFI", + "name": "Limoges, avenue des Cambuses", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.79702566, + 47.90490444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI8Y38FP1V7L9", + "ref": "LLI8Y38FP1V7L9", + "name": "Karrgreen Moreac", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.79702566, + 47.90490444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI8Y38FP1V7L9", + "ref": "LLI8Y38FP1V7L9", + "name": "Karrgreen Moreac", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.79702566, + 47.90490444 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLI8Y38FP1V7L9", + "ref": "LLI8Y38FP1V7L9", + "name": "Karrgreen Moreac", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.96653, + 48.03724 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLJ5IARA3AQQZE", + "ref": "LLJ5IARA3AQQZE", + "name": "Karrgreen Pontivy", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.71336, + 49.50626 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIU1FUKZ0FE", + "ref": "IU1FUKZ0FE", + "name": "Karrgreen Lexy", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.717087, + 45.945883 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWKEA7ULFM6", + "ref": "WKEA7ULFM6", + "name": "Anse, KS Motorcycles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.717087, + 45.945883 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWKEA7ULFM6", + "ref": "WKEA7ULFM6", + "name": "Anse, KS Motorcycles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8119235, + 46.28973074 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD19TOD1FRC", + "ref": "D19TOD1FRC", + "name": "Macon, KIA", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8119235, + 46.28973074 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PD19TOD1FRC", + "ref": "D19TOD1FRC", + "name": "Macon, KIA", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27436091, + 49.8456372 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDEDWPUBBC", + "ref": "PDEDWPUBBC", + "name": "Saint Quentin, Rue Pontoile", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27436091, + 49.8456372 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDEDWPUBBC", + "ref": "PDEDWPUBBC", + "name": "Saint Quentin, Rue Pontoile", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27436091, + 49.8456372 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDEDWPUBBC", + "ref": "PDEDWPUBBC", + "name": "Saint Quentin, Rue Pontoile", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27436091, + 49.8456372 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDEDWPUBBC", + "ref": "PDEDWPUBBC", + "name": "Saint Quentin, Rue Pontoile", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.275852, + 45.89023 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PNRRQEKQHFI", + "ref": "NRRQEKQHFI", + "name": "Limoges, avenue des Cambuses", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96870198, + 45.56644198 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PCKCVU0L4PL", + "ref": "CKCVU0L4PL", + "name": "La Ravoire, Rue Pierre et Marie Curie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.763751, + 50.308914 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYPZPZO41JG", + "ref": "YPZPZO41JG", + "name": "Sainte Catherine, Route de Béthune", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21888, + 49.1121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPESMYK", + "ref": "PESMYK", + "name": "L'Isle-Adam, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32832409, + 48.0584202 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLM09XMN1JX", + "ref": "LM09XMN1JX", + "name": "Châteaudun, LS Group", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60960815, + 48.57796729 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIKAA3NFK9U", + "ref": "IKAA3NFK9U", + "name": "Cesson, LS Group", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60960815, + 48.57796729 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIKAA3NFK9U", + "ref": "IKAA3NFK9U", + "name": "Cesson, LS Group", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60960815, + 48.57796729 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PIKAA3NFK9U", + "ref": "IKAA3NFK9U", + "name": "Cesson, LS Group", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60638081, + 48.69764566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFLFXSLPUEB", + "ref": "FLFXSLPUEB", + "name": "Brie-Comte-Robert, LS Group Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60638081, + 48.69764566 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PFLFXSLPUEB", + "ref": "FLFXSLPUEB", + "name": "Brie-Comte-Robert, LS Group Brie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3419384, + 48.68083874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCQLBIKEE8", + "ref": "DCQLBIKEE8", + "name": "Avranches, LS Group", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3419384, + 48.68083874 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PDCQLBIKEE8", + "ref": "DCQLBIKEE8", + "name": "Avranches, LS Group", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.775882, + 48.215477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVYSYWYNZTS", + "ref": "VYSYWYNZTS", + "name": "Gévezé, LR Habitat", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.775882, + 48.215477 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PVYSYWYNZTS", + "ref": "VYSYWYNZTS", + "name": "Gévezé, LR Habitat", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21888, + 49.1121 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPESMYK", + "ref": "PESMYK", + "name": "L'Isle-Adam, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21648656, + 49.11128239 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQEVDN4ZT1R", + "ref": "QEVDN4ZT1R", + "name": "L'Isle-Adam, Rue Martel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21648656, + 49.11128239 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PQEVDN4ZT1R", + "ref": "QEVDN4ZT1R", + "name": "L'Isle-Adam, Rue Martel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6461922, + 42.406751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXR1ACRARZZ", + "ref": "XR1ACRARZZ", + "name": "Galeria, L'Incantu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3706712, + 49.184013 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYVE4QCBHBZ", + "ref": "YVE4QCBHBZ", + "name": "Belleville-sur-Meuse, Rue du Bataillon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6461922, + 42.406751 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PXR1ACRARZZ", + "ref": "XR1ACRARZZ", + "name": "Galeria, L'Incantu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.865644, + 48.051225 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGVSCIPZ5TS", + "ref": "GVSCIPZ5TS", + "name": "Gérardmer, Route de la Bresse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.865644, + 48.051225 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGVSCIPZ5TS", + "ref": "GVSCIPZ5TS", + "name": "Gérardmer, Route de la Bresse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65855422, + 43.23148161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDP2V645KH", + "ref": "PDP2V645KH", + "name": "Ramatuelle, Kon Tiki Riviera", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65855422, + 43.23148161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDP2V645KH", + "ref": "PDP2V645KH", + "name": "Ramatuelle, Kon Tiki Riviera", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65855422, + 43.23148161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDP2V645KH", + "ref": "PDP2V645KH", + "name": "Ramatuelle, Kon Tiki Riviera", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65855422, + 43.23148161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDP2V645KH", + "ref": "PDP2V645KH", + "name": "Ramatuelle, Kon Tiki Riviera", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65855422, + 43.23148161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDP2V645KH", + "ref": "PDP2V645KH", + "name": "Ramatuelle, Kon Tiki Riviera", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65855422, + 43.23148161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDP2V645KH", + "ref": "PDP2V645KH", + "name": "Ramatuelle, Kon Tiki Riviera", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65855422, + 43.23148161 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PPDP2V645KH", + "ref": "PDP2V645KH", + "name": "Ramatuelle, Kon Tiki Riviera", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.315753, + 43.438134 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGCDA7HXZKI", + "ref": "GCDA7HXZKI", + "name": "Muret, Klima Ingenierie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.315753, + 43.438134 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PGCDA7HXZKI", + "ref": "GCDA7HXZKI", + "name": "Muret, Klima Ingenierie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3706712, + 49.184013 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYVE4QCBHBZ", + "ref": "YVE4QCBHBZ", + "name": "Belleville-sur-Meuse, Rue du Bataillon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.763751, + 50.308914 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYPZPZO41JG", + "ref": "YPZPZO41JG", + "name": "Sainte Catherine, Route de Béthune", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.763751, + 50.308914 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYPZPZO41JG", + "ref": "YPZPZO41JG", + "name": "Sainte Catherine, Route de Béthune", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24836, + 46.18666 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV29FRQK8HC", + "ref": "V29FRQK8HC", + "name": "Bourg-en-Bresse, Avenue du Maréchal Juin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204701, + 48.672099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIK0B6WE2A0C7", + "ref": "LLIK0B6WE2A0C7", + "name": "Jarville la Malgrange, 49 Rue de la République", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.52695959, + 46.84565242 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDZHMM2BS3", + "ref": "UDZHMM2BS3", + "name": "Bressuire, Joris Ide Bâtiment A", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27719449, + 45.37768304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEWHDONWUTE", + "ref": "EWHDONWUTE", + "name": "43410 Lempdes-sur-Allagnon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27719449, + 45.37768304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEWHDONWUTE", + "ref": "EWHDONWUTE", + "name": "43410 Lempdes-sur-Allagnon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27719449, + 45.37768304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEWHDONWUTE", + "ref": "EWHDONWUTE", + "name": "43410 Lempdes-sur-Allagnon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27719449, + 45.37768304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEWHDONWUTE", + "ref": "EWHDONWUTE", + "name": "43410 Lempdes-sur-Allagnon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27719449, + 45.37768304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEWHDONWUTE", + "ref": "EWHDONWUTE", + "name": "43410 Lempdes-sur-Allagnon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27719449, + 45.37768304 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PEWHDONWUTE", + "ref": "EWHDONWUTE", + "name": "43410 Lempdes-sur-Allagnon", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.20613, + 48.671001 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIK018BS1Z3O4", + "ref": "LLIK018BS1Z3O4", + "name": "Jarville la Malgrange, 77 Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204959, + 48.67191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIK0JOAC1WRD4", + "ref": "LLIK0JOAC1WRD4", + "name": "Jarville la Malgrange, 53 Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204831, + 48.672004 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIK0MKQP2KRJB", + "ref": "LLIK0MKQP2KRJB", + "name": "Jarville la Malgrange, 51 Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204831, + 48.672004 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIK0MKQP2KRJB", + "ref": "LLIK0MKQP2KRJB", + "name": "Jarville la Malgrange, 51 Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.20613, + 48.671001 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIK018BS1Z3O4", + "ref": "LLIK018BS1Z3O4", + "name": "Jarville la Malgrange, 77 Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204701, + 48.672099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIK0B6WE2A0C7", + "ref": "LLIK0B6WE2A0C7", + "name": "Jarville la Malgrange, 49 Rue de la République", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204701, + 48.672099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIK0B6WE2A0C7", + "ref": "LLIK0B6WE2A0C7", + "name": "Jarville la Malgrange, 49 Rue de la République", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.52473302, + 46.84668342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMJDWGUEGAV", + "ref": "MJDWGUEGAV", + "name": "Bressuire, Joris Ide Bâtiment B", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204024, + 48.672451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIK06Y5F130FX", + "ref": "LLIK06Y5F130FX", + "name": "Jarville la Malgrange, 41 Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204024, + 48.672451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIK06Y5F130FX", + "ref": "LLIK06Y5F130FX", + "name": "Jarville la Malgrange, 41 Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204319, + 48.672286 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIK03NULU8FL0", + "ref": "LLIK03NULU8FL0", + "name": "Jarville la Malgrange, 43 Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204701, + 48.672099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIK0B6WE2A0C7", + "ref": "LLIK0B6WE2A0C7", + "name": "Jarville la Malgrange, 49 Rue de la République", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204959, + 48.67191 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIK0JOAC1WRD4", + "ref": "LLIK0JOAC1WRD4", + "name": "Jarville la Malgrange, 53 Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204319, + 48.672286 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PLLIK03NULU8FL0", + "ref": "LLIK03NULU8FL0", + "name": "Jarville la Malgrange, 43 Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.09320972, + 43.91656357 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZCDWN9EH7O", + "ref": "ZCDWN9EH7O", + "name": "Albi, Jardinerie Tarnaise Fonlabour", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.09320972, + 43.91656357 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZCDWN9EH7O", + "ref": "ZCDWN9EH7O", + "name": "Albi, Jardinerie Tarnaise Fonlabour", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.09320972, + 43.91656357 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PZCDWN9EH7O", + "ref": "ZCDWN9EH7O", + "name": "Albi, Jardinerie Tarnaise Fonlabour", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2466, + 49.3318 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYCQGXG", + "ref": "YCQGXG", + "name": "Heutrégiville, Jakle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74388889, + 50.2855964 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYL7CVNYH6R", + "ref": "YL7CVNYH6R", + "name": "Arras, JP automobiles", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24836, + 46.18666 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV29FRQK8HC", + "ref": "V29FRQK8HC", + "name": "Bourg-en-Bresse, Avenue du Maréchal Juin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24836, + 46.18666 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PV29FRQK8HC", + "ref": "V29FRQK8HC", + "name": "Bourg-en-Bresse, Avenue du Maréchal Juin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.52695959, + 46.84565242 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDZHMM2BS3", + "ref": "UDZHMM2BS3", + "name": "Bressuire, Joris Ide Bâtiment A", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.52695959, + 46.84565242 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDZHMM2BS3", + "ref": "UDZHMM2BS3", + "name": "Bressuire, Joris Ide Bâtiment A", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.763751, + 50.308914 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PYPZPZO41JG", + "ref": "YPZPZO41JG", + "name": "Sainte Catherine, Route de Béthune", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.52695959, + 46.84565242 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDZHMM2BS3", + "ref": "UDZHMM2BS3", + "name": "Bressuire, Joris Ide Bâtiment A", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343837, + 48.952699 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA4ZETSZ9FZ", + "ref": "A4ZETSZ9FZ", + "name": "Avenue de Paris, Châlons-en-Champagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343837, + 48.952699 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PA4ZETSZ9FZ", + "ref": "A4ZETSZ9FZ", + "name": "Avenue de Paris, Châlons-en-Champagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PITBF0WI799", + "ref": "ITBF0WI799", + "name": "Saint-Caradec, Joris Ide", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PITBF0WI799", + "ref": "ITBF0WI799", + "name": "Saint-Caradec, Joris Ide", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PITBF0WI799", + "ref": "ITBF0WI799", + "name": "Saint-Caradec, Joris Ide", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PITBF0WI799", + "ref": "ITBF0WI799", + "name": "Saint-Caradec, Joris Ide", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PITBF0WI799", + "ref": "ITBF0WI799", + "name": "Saint-Caradec, Joris Ide", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PITBF0WI799", + "ref": "ITBF0WI799", + "name": "Saint-Caradec, Joris Ide", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PITBF0WI799", + "ref": "ITBF0WI799", + "name": "Saint-Caradec, Joris Ide", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PITBF0WI799", + "ref": "ITBF0WI799", + "name": "Saint-Caradec, Joris Ide", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PITBF0WI799", + "ref": "ITBF0WI799", + "name": "Saint-Caradec, Joris Ide", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PITBF0WI799", + "ref": "ITBF0WI799", + "name": "Saint-Caradec, Joris Ide", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-31", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.61780108, + 50.38016725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKAQHLZXWE", + "ref": "AKAQHLZXWE", + "name": "Onnaing, Joris Ide", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.61780108, + 50.38016725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKAQHLZXWE", + "ref": "AKAQHLZXWE", + "name": "Onnaing, Joris Ide", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.61780108, + 50.38016725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKAQHLZXWE", + "ref": "AKAQHLZXWE", + "name": "Onnaing, Joris Ide", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.61780108, + 50.38016725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKAQHLZXWE", + "ref": "AKAQHLZXWE", + "name": "Onnaing, Joris Ide", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.61780108, + 50.38016725 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PAKAQHLZXWE", + "ref": "AKAQHLZXWE", + "name": "Onnaing, Joris Ide", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.668832, + 47.809545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMHD8X0KU4L", + "ref": "MHD8X0KU4L", + "name": "Baule, Rue André Raimbault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.668832, + 47.809545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMHD8X0KU4L", + "ref": "MHD8X0KU4L", + "name": "Baule, Rue André Raimbault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.668832, + 47.809545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMHD8X0KU4L", + "ref": "MHD8X0KU4L", + "name": "Baule, Rue André Raimbault", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.668832, + 47.809545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMHD8X0KU4L", + "ref": "MHD8X0KU4L", + "name": "Baule, Rue André Raimbault", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.52473302, + 46.84668342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMJDWGUEGAV", + "ref": "MJDWGUEGAV", + "name": "Bressuire, Joris Ide Bâtiment B", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.52473302, + 46.84668342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMJDWGUEGAV", + "ref": "MJDWGUEGAV", + "name": "Bressuire, Joris Ide Bâtiment B", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.52695959, + 46.84565242 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDZHMM2BS3", + "ref": "UDZHMM2BS3", + "name": "Bressuire, Joris Ide Bâtiment A", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.52473302, + 46.84668342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PMJDWGUEGAV", + "ref": "MJDWGUEGAV", + "name": "Bressuire, Joris Ide Bâtiment B", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.52695959, + 46.84565242 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PUDZHMM2BS3", + "ref": "UDZHMM2BS3", + "name": "Bressuire, Joris Ide Bâtiment A", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.639236, + 41.909315 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PBAHAHGV1PV", + "ref": "BAHAHGV1PV", + "name": "Ajaccio, Hôtel Dolce Vita", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87, + 47.44 + ] + }, + "properties": { + "operator": "LEGELEUX", + "owner:ref:FR:SIREN": "898168273", + "email": "legeleuxbenoit@gmail.com", + "phone": "0618687523", + "network": "LEGELEUX", + "ref:EU:EVSE": "Non concerné", + "ref": "75722f71-206a-42a3-a3ea-f74ed28659b1", + "name": "Villers-chemin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-1", + "note": "", + "source:date": "2022-09-1", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.487105, + 48.345345 + ] + }, + "properties": { + "operator": "Société Y", + "owner:ref:FR:SIREN": "130025265", + "email": "contact@societe-operateur.com", + "phone": "0111111111", + "network": "Réseau de recharge ABC", + "ref:EU:EVSE": "FRA68P68021001", + "ref": "", + "name": "Picpus", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-01-14", + "note": "", + "source:date": "2021-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21, + 48.12 + ] + }, + "properties": { + "operator": "GENE ELEC 35", + "owner:ref:FR:SIREN": "819285149", + "email": "gene.elec35@gmail.com", + "phone": "0603158007", + "network": "Borne de charge 2X22 KW WITTY PARK", + "ref:EU:EVSE": "Non concerné", + "ref": "58e96c29-ba02-4754-b0c4-98a4a1056975", + "name": "Le magic, VITRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "Recharge disponible au horaire suivante : 14H00-18H00", + "source:date": "2022-09-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1781618, + 44.9177712 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "CHATEAU RIPEAU", + "ref:EU:EVSE": "Non concerné", + "ref": "cbbbdfaf-503c-443a-aee0-62980999f77f", + "name": "CHATEAU RIPEAU", + "capacity": "3", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-22", + "note": "", + "source:date": "2022-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.93, + 47.24 + ] + }, + "properties": { + "operator": "garage Henry herve", + "owner:ref:FR:SIREN": "898168273", + "email": "garage.henry25@orange.fr", + "phone": "0381590075", + "network": "eurorepar", + "ref:EU:EVSE": "Non concerné", + "ref": "bcc51ef9-4e1e-42e9-a6cf-67a98b589dce", + "name": "henry serre les sapins", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-01", + "note": "", + "source:date": "2022-09-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1165115, + 49.0227649 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "392291167", + "email": "contact@secal-electricite.fr", + "phone": "0134201124", + "network": "SKYMAT", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1941339", + "name": "SKYMAT", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-01-20", + "note": "", + "source:date": "2022-08-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.559237, + 45.087757 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "410177661", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Bricomarché - Villard de lans- SARALAM", + "ref:EU:EVSE": "FRZIME22AC70565", + "ref": "70565", + "name": "Bricomarché - Villard de lans - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-02", + "note": "", + "source:date": "2021-09-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.559237, + 45.087757 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "410177661", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Bricomarché - Villard de lans ", + "ref:EU:EVSE": "FRZIME22AC70564", + "ref": "70564", + "name": "Bricomarché - Villard de lans - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-02", + "note": "", + "source:date": "2021-09-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8043099, + 50.2817902 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "RENAULT ARRAS", + "ref:EU:EVSE": "Non concerné", + "ref": "4a833f25-e205-440a-97ce-fc15705a921c", + "name": "RENAULT ARRAS", + "capacity": "6", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-26", + "note": "", + "source:date": "2022-08-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.670170199999, + 44.8539403 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "SA GLASTINT", + "ref:EU:EVSE": "Non concerné", + "ref": "6bbb97a5-bd3d-4d66-ba5d-25591e1bc39a", + "name": "SA GLASTINT", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-13", + "note": "", + "source:date": "2022-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.62, + 43.67 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEHOTELCHEVALBLANC11", + "ref": "6b682e0d-7227-4979-b08c-66740b2c7e61", + "name": "Hôtel Le Cheval Blanc 13", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-30", + "note": "24/7", + "source:date": "2022-08-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83, + 43.78 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMECARASSINS11", + "ref": "c5352ae8-5a8f-4917-99cb-ad795fd45e27", + "name": "MAS DES CARASSINS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-30", + "note": "24/7", + "source:date": "2022-08-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4019962, + 49.0376111 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "529221210", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "AUTO AVENIR RELAIS - CHÂTEAU THIERRY - VW", + "ref:EU:EVSE": "FRZPEE24DC55848", + "ref": "55848", + "name": "INTENZ Chateau-Thierry by Autosphere VW - 24KW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-08", + "note": "", + "source:date": "2021-03-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4019962, + 49.0376111 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "529221210", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "AUTO AVENIR RELAIS - CHÂTEAU THIERRY - VW", + "ref:EU:EVSE": "FRZPEE22AC55849", + "ref": "55849", + "name": "INTENZ Chateau-Thierry by Autosphere VW - 22KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-08", + "note": "", + "source:date": "2021-03-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18225850129804153, + 44.677126551459914 + ] + }, + "properties": { + "operator": "Hostellerie", + "owner:ref:FR:SIREN": "317782282", + "email": "hostellerie.des.ducs@wanadoo.fr", + "phone": "0553837458", + "network": "Charge parking", + "ref:EU:EVSE": "FRA68P68021001", + "ref": "1ce943d0-0fe2-11ed-861d-0242ac120002", + "name": "parking", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-30", + "note": "", + "source:date": "2022-07-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1984829, + 44.6656545 + ] + }, + "properties": { + "operator": "Masseria", + "owner:ref:FR:SIREN": "877614388", + "email": "sas.masseria@gmail.com", + "phone": "0680338905", + "network": "Charge banarge", + "ref:EU:EVSE": "FRA68P68021001", + "ref": "ceec7d44-ba61-11ec-8422-0242ac120002", + "name": "Banarge", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-12", + "note": "", + "source:date": "2022-04-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7363293, + 48.0578853 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "344659941", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "AUTOS SELECTION - Mazda Laval", + "ref:EU:EVSE": "FRZMAE22AC64556", + "ref": "64556", + "name": "Mazda - Laval - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-24", + "note": "", + "source:date": "2021-06-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7363293, + 48.0578853 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "344659941", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "AUTOS SELECTION - Mazda Laval", + "ref:EU:EVSE": "FRZMAE22AC64555", + "ref": "64555", + "name": "Mazda - Laval - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-24", + "note": "", + "source:date": "2021-06-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.91, + 43.9 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMELAGRANDEBASTIDE11", + "ref": "4f68bd40-89f2-4196-a124-574c808ee030", + "name": "LA GRANDE BASTIDE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-08", + "note": "24/7", + "source:date": "2022-09-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.980447, + 49.108413 + ] + }, + "properties": { + "operator": "PHARMACIE DE HUNDLING", + "owner:ref:FR:SIREN": "813675287", + "email": "pharmacie.de.hundling@gmail.com", + "phone": "0387025097", + "network": "PHARMACIE DE HUNDLING", + "ref:EU:EVSE": "Non concerné", + "ref": "8eb9f23b-54a1-43d8-ad0f-7ed4dd2e1c67", + "name": "PHARMACIE DE HUNDLING", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-08-24", + "note": "", + "source:date": "2022-08-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2, + 43.77 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMELOUCASTELET11", + "ref": "4f3433e4-aeb8-4c48-9301-097b84cefc73", + "name": "Lou Castelet Hôtel", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-08", + "note": "24/7", + "source:date": "2022-09-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.976324, + 49.091403 + ] + }, + "properties": { + "operator": "Royal Champagne", + "owner:ref:FR:SIREN": "444344469", + "email": "bruno.tailly@royalchampagne.com", + "phone": "0633221487", + "network": "Royal Champagne Hotel & Spa", + "ref:EU:EVSE": "FRMAPP000000007106", + "ref": "", + "name": "Royal Champagne Hotel & Spa", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "Présence d'une prise E sur la station", + "source:date": "2023-01-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.976324, + 49.091403 + ] + }, + "properties": { + "operator": "Royal Champagne", + "owner:ref:FR:SIREN": "444344469", + "email": "bruno.tailly@royalchampagne.com", + "phone": "0633221487", + "network": "Royal Champagne Hotel & Spa", + "ref:EU:EVSE": "FRMAPP000000007106", + "ref": "", + "name": "Royal Champagne Hotel & Spa", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "Présence d'une prise E sur la station", + "source:date": "2023-01-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.976324, + 49.091403 + ] + }, + "properties": { + "operator": "Royal Champagne", + "owner:ref:FR:SIREN": "444344469", + "email": "bruno.tailly@royalchampagne.com", + "phone": "0633221487", + "network": "Royal Champagne Hotel & Spa", + "ref:EU:EVSE": "FRMAPP000000007106", + "ref": "", + "name": "Royal Champagne Hotel & Spa", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "Présence d'une prise E sur la station", + "source:date": "2023-01-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.976324, + 49.091403 + ] + }, + "properties": { + "operator": "Royal Champagne", + "owner:ref:FR:SIREN": "444344469", + "email": "bruno.tailly@royalchampagne.com", + "phone": "0633221487", + "network": "Royal Champagne Hotel & Spa", + "ref:EU:EVSE": "FRMAPP000000007106", + "ref": "", + "name": "Royal Champagne Hotel & Spa", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "Présence d'une prise E sur la station", + "source:date": "2023-01-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.976324, + 49.091403 + ] + }, + "properties": { + "operator": "Royal Champagne", + "owner:ref:FR:SIREN": "444344469", + "email": "bruno.tailly@royalchampagne.com", + "phone": "0633221487", + "network": "Royal Champagne Hotel & Spa", + "ref:EU:EVSE": "FRMAPP000000007106", + "ref": "", + "name": "Royal Champagne Hotel & Spa", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "Présence d'une prise E sur la station", + "source:date": "2023-01-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3746, + 43.638003 + ] + }, + "properties": { + "operator": "HABT", + "owner:ref:FR:SIREN": "820235711", + "email": "charley.bohy@mycharmy.net", + "phone": "0689573165", + "network": "Hotel Ibis Styles Toulouse Blagnac Aéroport", + "ref:EU:EVSE": "FRMAPP000000006880", + "ref": "", + "name": "Hotel Ibis Style Toulouse Blagnac Aéroport", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-31", + "note": "Presence d'une prise type E sur la station. Paiement via l'application Electromaps ou equivalent", + "source:date": "2022-11-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3746, + 43.638003 + ] + }, + "properties": { + "operator": "HABT", + "owner:ref:FR:SIREN": "820235711", + "email": "charley.bohy@mycharmy.net", + "phone": "0689573165", + "network": "Hotel Ibis Styles Toulouse Blagnac Aéroport", + "ref:EU:EVSE": "FRMAPP000000006880", + "ref": "", + "name": "Hotel Ibis Style Toulouse Blagnac Aéroport", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-31", + "note": "Presence d'une prise type E sur la station. Paiement via l'application Electromaps ou equivalent", + "source:date": "2022-11-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3746, + 43.638003 + ] + }, + "properties": { + "operator": "HABT", + "owner:ref:FR:SIREN": "820235711", + "email": "charley.bohy@mycharmy.net", + "phone": "0689573165", + "network": "Hotel Ibis Styles Toulouse Blagnac Aéroport", + "ref:EU:EVSE": "FRMAPP000000006880", + "ref": "", + "name": "Hotel Ibis Style Toulouse Blagnac Aéroport", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-31", + "note": "Presence d'une prise type E sur la station. Paiement via l'application Electromaps ou equivalent", + "source:date": "2022-11-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3746, + 43.638003 + ] + }, + "properties": { + "operator": "HABT", + "owner:ref:FR:SIREN": "820235711", + "email": "charley.bohy@mycharmy.net", + "phone": "0689573165", + "network": "Hotel Ibis Styles Toulouse Blagnac Aéroport", + "ref:EU:EVSE": "FRMAPP000000006880", + "ref": "", + "name": "Hotel Ibis Style Toulouse Blagnac Aéroport", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-31", + "note": "Presence d'une prise type E sur la station. Paiement via l'application Electromaps ou equivalent", + "source:date": "2022-11-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.398171, + 46.698981 + ] + }, + "properties": { + "operator": "LMS Informatique", + "owner:ref:FR:SIREN": "482399896", + "email": "olivier@eqos.fr", + "phone": "", + "network": "LMS Informatique", + "ref:EU:EVSE": "FRMAPP000000006951", + "ref": "", + "name": "LMS Charge", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-11", + "note": "Présence d'une prise type E dans la station. Paiement via l'application Electromaps ou équivalent.", + "source:date": "2022-09-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.398226, + 46.698967 + ] + }, + "properties": { + "operator": "LMS Informatique", + "owner:ref:FR:SIREN": "482399896", + "email": "olivier@eqos.fr", + "phone": "", + "network": "LMS Informatique", + "ref:EU:EVSE": "FRMAPP000000006951", + "ref": "", + "name": "LMS Charge", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-11", + "note": "Présence d'une prise type E dans la station. Paiement via l'application Electromaps ou équivalent.", + "source:date": "2022-09-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.398226, + 46.698967 + ] + }, + "properties": { + "operator": "LMS Informatique", + "owner:ref:FR:SIREN": "482399896", + "email": "olivier@eqos.fr", + "phone": "", + "network": "LMS Informatique", + "ref:EU:EVSE": "FRMAPP000000006951", + "ref": "", + "name": "LMS Charge", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-11", + "note": "Présence d'une prise type E dans la station. Paiement via l'application Electromaps ou équivalent.", + "source:date": "2022-09-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.398171, + 46.698981 + ] + }, + "properties": { + "operator": "LMS Informatique", + "owner:ref:FR:SIREN": "482399896", + "email": "olivier@eqos.fr", + "phone": "", + "network": "LMS Informatique", + "ref:EU:EVSE": "FRMAPP000000006951", + "ref": "", + "name": "LMS Charge", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-11", + "note": "Présence d'une prise type E dans la station. Paiement via l'application Electromaps ou équivalent.", + "source:date": "2022-09-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.398099, + 46.698999 + ] + }, + "properties": { + "operator": "LMS Informatique", + "owner:ref:FR:SIREN": "482399896", + "email": "olivier@eqos.fr", + "phone": "", + "network": "LMS Informatique", + "ref:EU:EVSE": "FRMAPP000000006951", + "ref": "", + "name": "LMS Charge", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-11", + "note": "Présence d'une prise type E dans la station. Paiement via l'application Electromaps ou équivalent.", + "source:date": "2022-09-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.398099, + 46.698999 + ] + }, + "properties": { + "operator": "LMS Informatique", + "owner:ref:FR:SIREN": "482399896", + "email": "olivier@eqos.fr", + "phone": "", + "network": "LMS Informatique", + "ref:EU:EVSE": "FRMAPP000000006951", + "ref": "", + "name": "LMS Charge", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-11", + "note": "Présence d'une prise type E dans la station. Paiement via l'application Electromaps ou équivalent.", + "source:date": "2022-09-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58, + 48.89 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "834439630", + "email": "exploitation@freshmile.com", + "phone": "0368781435", + "network": "Réseau de recharge DOMAINE DES BUFFLONNES", + "ref:EU:EVSE": "FRFR1PTDWPWURGFJ", + "ref": "", + "name": "Domaine des Bufflonnes, Uhrwiller", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-07", + "note": "", + "source:date": "2022-09-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5203551, + 44.821036 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "SAS HOTEL BORDEAUX FLOIRAC", + "ref:EU:EVSE": "Non concerné", + "ref": "e270d760-c439-4b2f-a380-dc52b4568f62", + "name": "SAS HOTEL BORDEAUX FLOIRAC", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-25", + "note": "", + "source:date": "2022-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.654599599999, + 44.8662562 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "CIGIMMO", + "ref:EU:EVSE": "Non concerné", + "ref": "1354f666-b5b9-49ac-a55b-ccec09570c7d", + "name": "CIGIMMO", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-19", + "note": "", + "source:date": "2022-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37615, + 51.01408 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "FENBAT", + "ref:EU:EVSE": "Non concerné", + "ref": "e2706c77-15bb-4ea5-a93f-9cdf65e6ee65", + "name": "FENBAT", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-25", + "note": "", + "source:date": "2022-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.964415, + 49.058989 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "529221210", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "AUTO AVENIR RELAIS - MAGENTA - VW", + "ref:EU:EVSE": "FRZPEE22AC55852", + "ref": "55852", + "name": "VOLKSWAGEN Magenta - Emil Frey - 22KW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-08", + "note": "", + "source:date": "2021-03-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.964415, + 49.058989 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "529221210", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "AUTO AVENIR RELAIS - MAGENTA - VW", + "ref:EU:EVSE": "FRZPEE24DC55851", + "ref": "55851", + "name": "VOLKSWAGEN Magenta - Emil Frey - 24kW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-08", + "note": "", + "source:date": "2021-03-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.7, + 43.36 + ] + }, + "properties": { + "operator": "JONNARD LES ISSAMBRES", + "owner:ref:FR:SIREN": "898168273", + "email": "jonnard.pierre@wanadoo.fr", + "phone": "0608740580", + "network": "JONNARD LES ISSAMBRES", + "ref:EU:EVSE": "Non concerné", + "ref": "9d89bd8b-419e-4124-bb00-3fa1a76feb52", + "name": "JONNARD LES ISSAMBRES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-08-01", + "note": "", + "source:date": "2022-08-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4253467530332162, + 49.06520319135481 + ] + }, + "properties": { + "operator": "Kallista BDR", + "owner:ref:FR:SIREN": "820491314", + "email": "exploitation@yaway-recharge.eu", + "phone": "+33 0 800 96 00 80", + "network": "YAWAY Recharge", + "ref:EU:EVSE": "FRDOUP27120CRACKS", + "ref": "", + "name": "Station IRVE Kallista BDR de Vernon-Douains", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-10", + "note": "Ouvert 24/7", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4253467530332162, + 49.06520319135481 + ] + }, + "properties": { + "operator": "Kallista BDR", + "owner:ref:FR:SIREN": "820491314", + "email": "exploitation@yaway-recharge.eu", + "phone": "+33 0 800 96 00 80", + "network": "YAWAY Recharge", + "ref:EU:EVSE": "FRDOUP27120CRACKS", + "ref": "", + "name": "Station IRVE Kallista BDR de Vernon-Douains", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-10", + "note": "Ouvert 24/7", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4253467530332162, + 49.06520319135481 + ] + }, + "properties": { + "operator": "Kallista BDR", + "owner:ref:FR:SIREN": "820491314", + "email": "exploitation@yaway-recharge.eu", + "phone": "+33 0 800 96 00 80", + "network": "YAWAY Recharge", + "ref:EU:EVSE": "FRDOUP27120CRACKS", + "ref": "", + "name": "Station IRVE Kallista BDR de Vernon-Douains", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-10", + "note": "Ouvert 24/7", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4253467530332162, + 49.06520319135481 + ] + }, + "properties": { + "operator": "Kallista BDR", + "owner:ref:FR:SIREN": "820491314", + "email": "exploitation@yaway-recharge.eu", + "phone": "+33 0 800 96 00 80", + "network": "YAWAY Recharge", + "ref:EU:EVSE": "FRDOUP27120CRACKS", + "ref": "", + "name": "Station IRVE Kallista BDR de Vernon-Douains", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-10", + "note": "Ouvert 24/7", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4253467530332162, + 49.06520319135481 + ] + }, + "properties": { + "operator": "Kallista BDR", + "owner:ref:FR:SIREN": "820491314", + "email": "exploitation@yaway-recharge.eu", + "phone": "+33 0 800 96 00 80", + "network": "YAWAY Recharge", + "ref:EU:EVSE": "FRDOUP27120CRACKS", + "ref": "", + "name": "Station IRVE Kallista BDR de Vernon-Douains", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-10", + "note": "Ouvert 24/7", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.923926, + 50.277657 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "SCI CAP IMMO", + "ref:EU:EVSE": "Non concerné", + "ref": "d005bf55-220d-4301-93f0-5c7a657c1412", + "name": "SCI CAP IMMO", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-19", + "note": "", + "source:date": "2022-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51178345, + 47.48421863 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "313643108", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Super U - Saint Barthelemy d'Anjou", + "ref:EU:EVSE": "FRZSUE22AC65280", + "ref": "65280", + "name": "Super U - Saint Barthelemy d'Anjou - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2021-07-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51178345, + 47.48421863 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "313643108", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Super U - Saint Barthelemy d'Anjou", + "ref:EU:EVSE": "FRZSUE22AC65281", + "ref": "65281", + "name": "Super U - Saint Barthelemy d'Anjou - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2021-07-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5269, + 44.5888 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "853947687", + "email": "direction@camping-les-arches.com", + "phone": "0475367519", + "network": "ChargePoint", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Camping lesArches", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-07", + "note": "", + "source:date": "2022-08-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45, + 45.86 + ] + }, + "properties": { + "operator": "CHATEAU DE RONZIERE", + "owner:ref:FR:SIREN": "898168273", + "email": "jonnard.pierre@wanadoo.fr", + "phone": "0608740580", + "network": "CHATEAU DE RONZIERE", + "ref:EU:EVSE": "Non concerné", + "ref": "225f248f-83e1-4ecd-898a-705d94eb7208", + "name": "CHATEAU DE RONZIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-08-01", + "note": "", + "source:date": "2022-09-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32, + 48.92 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "326765054", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000100986", + "ref": "0", + "name": "BM92", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-08", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32, + 48.92 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "326765054", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000100985", + "ref": "0", + "name": "BM92", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-08", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35, + 43.28 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "775657463", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "CSE-Central BDF", + "ref:EU:EVSE": "FRLMSE1000100978", + "ref": "0", + "name": "CSE - BdF - Portiragnes", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "0", + "source:date": "2022-09-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121973", + "ref": "0", + "name": "Gring HUB", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121974", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2, + 48.91 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "813164282", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "Station Mattieu et Pauline", + "ref:EU:EVSE": "FRLMSE1000100987", + "ref": "0", + "name": "MP - Bezon", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-29", + "note": "0", + "source:date": "2022-09-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32, + 48.92 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "326765054", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000100984", + "ref": "0", + "name": "BM92", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Réservé PMR", + "start_date": "2023-02-08", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.93, + 47.87 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "775657463", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "CSE-Central BDF", + "ref:EU:EVSE": "FRLMSE1000100980", + "ref": "0", + "name": "CSE - BdF - Concarneau", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "0", + "source:date": "2022-09-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2, + 48.91 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "813164282", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "Station Mattieu et Pauline", + "ref:EU:EVSE": "FRLMSE1000100988", + "ref": "0", + "name": "MP - Bezon", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-29", + "note": "0", + "source:date": "2022-09-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.68, + 44.57 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "775657463", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "CSE-Central BDF", + "ref:EU:EVSE": "FRLMSE1000100983", + "ref": "0", + "name": "CSE - BdF - Vars", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "0", + "source:date": "2022-09-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.68, + 44.57 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "775657463", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "CSE-Central BDF", + "ref:EU:EVSE": "FRLMSE1000100982", + "ref": "0", + "name": "CSE - BdF - Vars", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "0", + "source:date": "2022-09-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.93, + 47.87 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "775657463", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "CSE-Central BDF", + "ref:EU:EVSE": "FRLMSE1000100981", + "ref": "0", + "name": "CSE - BdF - Concarneau", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "0", + "source:date": "2022-09-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121976", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6, + 43.43 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "775657463", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "CSE-Central BDF", + "ref:EU:EVSE": "FRLMSE1000100976", + "ref": "0", + "name": "CSE - BdF - Bidart", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "0", + "source:date": "2022-09-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6, + 43.43 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "775657463", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "CSE-Central BDF", + "ref:EU:EVSE": "FRLMSE1000100977", + "ref": "0", + "name": "CSE - BdF - Bidart", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "0", + "source:date": "2022-09-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121975", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121981", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121977", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121978", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121979", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121980", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121982", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121983", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121984", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121985", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121986", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121987", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121989", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121990", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121991", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121992", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35, + 43.28 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "775657463", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "CSE-Central BDF", + "ref:EU:EVSE": "FRLMSE1000100979", + "ref": "0", + "name": "CSE - BdF - Portiragnes", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "0", + "source:date": "2022-09-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.78 + ] + }, + "properties": { + "operator": "NVH", + "owner:ref:FR:SIREN": "917756819", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref:EU:EVSE": "FRLMSE1000121988", + "ref": "0", + "name": "Gring HUB", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "0", + "source:date": "2023-02-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2081186, + 50.1621653 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "405267402", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "PMD AUTOMOBILES", + "ref:EU:EVSE": "FRZPEE74AC47259", + "ref": "47259", + "name": "Renault - Proville - 7kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-18", + "note": "", + "source:date": "2020-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2081186, + 50.1621653 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "405267402", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "PMD AUTOMOBILES", + "ref:EU:EVSE": "FRZPEE22AC127535", + "ref": "127535", + "name": "Renault - Proville - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2021-09-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8872073, + 47.6485392 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "388876997", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA DENNEY AUTOMOBILES", + "ref:EU:EVSE": "FRZKAE24DC88247", + "ref": "88247", + "name": "KIA - Denney - 24kW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-27", + "note": "", + "source:date": "2021-10-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8872073, + 47.6485392 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "388876997", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA DENNEY AUTOMOBILES", + "ref:EU:EVSE": "FRZKAE22AC88248", + "ref": "88248", + "name": "KIA - Denney - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-27", + "note": "", + "source:date": "2021-10-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.54, + 48.04 + ] + }, + "properties": { + "operator": "GROFF SAS", + "owner:ref:FR:SIREN": "917220985", + "email": "francoise.groff@deux-clefs.com", + "phone": "0389303060", + "network": "Hostellerie aux deux cléfs", + "ref:EU:EVSE": "Non concerné", + "ref": "Non concerné", + "name": "Borne Hager Hostellerie aux deux cléfs", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-30", + "note": "RAS", + "source:date": "2022-08-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0766169, + 48.8869587 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "423313014", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda Macon - ACT AUTOMOBILES ", + "ref:EU:EVSE": "FRZMAE22AC95769", + "ref": "95769", + "name": "Mazda - Mâcon - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "", + "source:date": "2021-12-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.046409, + 46.020022 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "313283707", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda ROANNE", + "ref:EU:EVSE": "FRZMAE22AC50713", + "ref": "50713", + "name": "Mazda - Roanne - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-05", + "note": "", + "source:date": "2021-01-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.046409, + 46.020022 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "313283707", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda ROANNE", + "ref:EU:EVSE": "FRZMAE22AC50663", + "ref": "50663", + "name": "Mazda - Roanne - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-05", + "note": "", + "source:date": "2021-01-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.31, + 44.51 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMECLECHAMPS11", + "ref": "d8b8f34d-6d12-4830-be62-566a5e50a3b7", + "name": "LA CLE DES CHAMPS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-08", + "note": "24/7", + "source:date": "2022-08-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.99, + 44.08 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEATELIER11", + "ref": "a0052293-b341-4373-bb92-86c5949562f8", + "name": "COMPTEUR LORIOL 1 ", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-08", + "note": "24/7", + "source:date": "2022-08-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4307718, + 43.4535293 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEVILADELAMARHOTEL11", + "ref": "e6c1f396-0451-4d51-8190-96321d815134", + "name": "VILA DE LA MAR HOTEL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-08", + "note": "24/7", + "source:date": "2022-08-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.48, + 44.49 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMECAMPINGLESOUSBOIS11", + "ref": "3d958256-e732-4060-8f85-b8782bb660c3", + "name": "CAMPING LE SOUS BOIS ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-08", + "note": "24/7", + "source:date": "2022-08-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2868817, + 45.6190876 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "487080210", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ITM CHALLANS DISTRIBUTION", + "ref:EU:EVSE": "FRZIME22AC128390", + "ref": "128390", + "name": "Intermarché - Challans - 22kw AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2022-04-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2868817, + 45.6190876 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "487080210", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ITM CHALLANS DISTRIBUTION", + "ref:EU:EVSE": "FRZIME22AC128389", + "ref": "128389", + "name": " Intermarché - Challans - 22kw AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2022-04-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.071825, + 48.432196 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "342913449", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GARAGE DE BRETAGNE - MAZDA ALENÇON", + "ref:EU:EVSE": "FRZMAE22AC49545", + "ref": "49545", + "name": "Mazda - Alençon - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-03", + "note": "", + "source:date": "2020-12-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.02, + 50.61 + ] + }, + "properties": { + "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", + "owner:ref:FR:SIREN": "783669831", + "email": "contact@electricite-loos.fr", + "phone": "0320075634", + "network": "RME Loos (FR-FR1) ", + "ref:EU:EVSE": "FRFR1EAYRU", + "ref": "", + "name": "Loos, Parking de la Gare", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-22", + "note": "", + "source:date": "2022-08-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.02, + 50.61 + ] + }, + "properties": { + "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", + "owner:ref:FR:SIREN": "783669831", + "email": "contact@electricite-loos.fr", + "phone": "0320075634", + "network": "RME Loos (FR-FR1)", + "ref:EU:EVSE": "FRFR1EAYRU", + "ref": "", + "name": "Loos, Parking de la Gare", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-22", + "note": "", + "source:date": "2022-08-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.02, + 50.61 + ] + }, + "properties": { + "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", + "owner:ref:FR:SIREN": "783669831", + "email": "contact@electricite-loos.fr", + "phone": "0320075634", + "network": "RME Loos (FR-FR1)", + "ref:EU:EVSE": "FRFR1EAYRU", + "ref": "", + "name": "Loos, Parking de la Gare", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-22", + "note": "", + "source:date": "2022-12-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.598465, + 46.047794 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "430357152", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mercedes Benz - Cluses EMB74", + "ref:EU:EVSE": "FRZPEE22AC35328", + "ref": "35328", + "name": "Mercedes Benz - Cluses EMB74 -22kW AC", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-06-10", + "note": "", + "source:date": "2020-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.598465, + 46.047794 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "430357152", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mercedes Benz - Cluses EMB74", + "ref:EU:EVSE": "FRZPEE22AC35329", + "ref": "35329", + "name": "Mercedes Benz - Cluses EMB74 -22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-06-10", + "note": "", + "source:date": "2020-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.430464, + 46.708982 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "539245803", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "LITTORAL VENDEE AUTOMOBILES - MAZDA LA ROCHE SUR YON", + "ref:EU:EVSE": "FRZMAE22AC131655", + "ref": "131655", + "name": "Mazda - La Roche sur Yon - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-13", + "note": "", + "source:date": "2022-05-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.430464, + 46.708982 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "539245803", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "LITTORAL VENDEE AUTOMOBILES - MAZDA LA ROCHE SUR YON ", + "ref:EU:EVSE": "FRZMAE22AC131652", + "ref": "131652", + "name": "Mazda - La Roche sur Yon - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-13", + "note": "", + "source:date": "2022-05-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3688759, + 49.1825257 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "379070832", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MAZDA VERDUN -JM AUTOMOBILES", + "ref:EU:EVSE": "FRZMAE22AC50737", + "ref": "50737", + "name": "Mazda - Verdun - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-06", + "note": "", + "source:date": "2021-01-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1352017, + 49.3591525 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "390389344", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda THIONVILLE - AZUR MOTORS", + "ref:EU:EVSE": "FRZMAE22AC50659", + "ref": "50659", + "name": " Mazda - Thionville - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-05", + "note": "", + "source:date": "2021-01-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.676455, + 48.478447 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "517502365", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Kia Yffiniac - AUTO DESIGN", + "ref:EU:EVSE": "FRZKAE24DC50451", + "ref": "50451", + "name": "KIA - Yffiniac - 24kW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-21", + "note": "", + "source:date": "2020-12-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.676455, + 48.478447 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "517502365", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Kia Yffiniac - AUTO DESIGN", + "ref:EU:EVSE": "FRZKAE22AC50452", + "ref": "50452", + "name": "KIA - Yffiniac - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-21", + "note": "", + "source:date": "2020-12-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5024568, + 48.9874447 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "348753575", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Courtisols", + "ref:EU:EVSE": "FRZIME22AC131601", + "ref": "131601", + "name": " Intermarché - Courtisols - 7.4kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-12", + "note": "", + "source:date": "2022-05-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5024568, + 48.9874447 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "348753575", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Courtisols", + "ref:EU:EVSE": "FRZIME22AC131600", + "ref": "131600", + "name": "Intermarché - Courtisols - 7.4kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-12", + "note": "", + "source:date": "2022-05-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5024568, + 48.9874447 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "348753575", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Courtisols ", + "ref:EU:EVSE": "FRZIME22AC77565", + "ref": "77565", + "name": "Intermarché - Courtisols - 7.4kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-08", + "note": "", + "source:date": "2021-09-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5024568, + 48.9874447 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "348753575", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Courtisols ", + "ref:EU:EVSE": "FRZIME22AC77564", + "ref": "77564", + "name": "Intermarché - Courtisols - 7.4kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-08", + "note": "", + "source:date": "2021-09-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0766169, + 48.8869587 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "379198443", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MAZDA MAREIL MARLY - TECHNIC AUTO SERVICES", + "ref:EU:EVSE": "FRZMAE22AC57516", + "ref": "57516", + "name": "Mazda - Mareil-Marly - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2021-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4149303, + 47.1112893 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "812806461", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda - Bourges", + "ref:EU:EVSE": "FRZMAE22AC49606", + "ref": "49606", + "name": "Mazda - Bourges - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-03", + "note": "", + "source:date": "2020-12-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.804283, + 48.796153 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "309623783", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda HAGUENAU -GARAGE DU MOULIN", + "ref:EU:EVSE": "FRZMAE22AC50721", + "ref": "50721", + "name": " Mazda - Haguenau - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-05", + "note": "", + "source:date": "2021-01-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.804283, + 48.796153 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "309623783", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda HAGUENAU -GARAGE DU MOULIN", + "ref:EU:EVSE": "FRZMAE22AC50722", + "ref": "50722", + "name": "Mazda - Haguenau - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-05", + "note": "", + "source:date": "2021-01-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.1444077, + 47.7402178 + ] + }, + "properties": { + "operator": "Modulo", + "owner:ref:FR:SIREN": "256802745", + "email": "jferchaud@modulo-energies.fr", + "phone": "0247316868", + "network": "Modulo", + "ref:EU:EVSE": "FRS68E129888", + "ref": "f8c20a72-b029-4484-a3ac-3158a246b3f0", + "name": "IRVE BURNAUPT LE HAUT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Non accessible", + "start_date": "2022-07-12", + "note": "", + "source:date": "2022-08-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.1012758, + 47.8108275 + ] + }, + "properties": { + "operator": "Modulo", + "owner:ref:FR:SIREN": "256802745", + "email": "jferchaud@modulo-energies.fr", + "phone": "0247316868", + "network": "Modulo", + "ref:EU:EVSE": "FRS68E137965", + "ref": "f8c20a72-b029-4484-a3ac-3158a246b3f0", + "name": "IRVE THANN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-16", + "note": "", + "source:date": "2022-08-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.371309, + 48.159583 + ] + }, + "properties": { + "operator": "Modulo", + "owner:ref:FR:SIREN": "256802745", + "email": "jferchaud@modulo-energies.fr", + "phone": "0247316868", + "network": "Modulo", + "ref:EU:EVSE": "FRS68E137931", + "ref": "f8c20a72-b029-4484-a3ac-3158a246b3f0", + "name": "IRVE OSTHEIM", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-10", + "note": "", + "source:date": "2022-08-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "686850223", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Peugeot NOMBLOT ", + "ref:EU:EVSE": "FRZPEE142950", + "ref": "142950", + "name": "Peugeot NOMBLOT ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-21", + "note": "", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "686850223", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "NOMBLOT VILLEFRANCHE", + "ref:EU:EVSE": "FRZPEE142948", + "ref": "142948", + "name": " Peugeot NOMBLOT ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-21", + "note": "", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "686850223", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "NOMBLOT VILLEFRANCHE", + "ref:EU:EVSE": "FRZPEE142947", + "ref": "142947", + "name": "Peugeot NOMBLOT ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-21", + "note": "", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "686850223", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "NOMBLOT VILLEFRANCHE", + "ref:EU:EVSE": "FRZPEE142953", + "ref": "142953", + "name": " Peugeot NOMBLOT ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-21", + "note": "", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0996823, + 44.5662689 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "317898492", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota GAP- AUTO DAUPHINE", + "ref:EU:EVSE": "FRZTLE22AC55104", + "ref": "55104", + "name": " Toyota - GAP - 22KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-22", + "note": "", + "source:date": "2021-02-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0996823, + 44.5662689 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "317898492", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota GAP- AUTO DAUPHINE", + "ref:EU:EVSE": "FRZTLE22AC55103", + "ref": "55103", + "name": " Toyota - GAP - 22KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-22", + "note": "", + "source:date": "2021-02-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0996823, + 44.5662689 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "317898492", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota GAP- AUTO DAUPHINE", + "ref:EU:EVSE": "FRZTLE22AC125091", + "ref": "125091", + "name": " Toyota - GAP - 22KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-24", + "note": "", + "source:date": "2022-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0996823, + 44.5662689 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "317898492", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota GAP- AUTO DAUPHINE", + "ref:EU:EVSE": "FRZTLE22AC125090", + "ref": "125090", + "name": "Toyota - GAP - 22KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-24", + "note": "", + "source:date": "2022-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8675419, + 46.7680197 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "391060480", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA Chalon sur Saone - ZENITH MOTORS", + "ref:EU:EVSE": "FRZKAE50DC126576", + "ref": "126576", + "name": "KIA - Chalon-sur-Saône - 50kW DC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-30", + "note": "", + "source:date": "2022-03-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8675419, + 46.7680197 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "391060480", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA Chalon sur Saone - ZENITH MOTORS", + "ref:EU:EVSE": "FRZKAE43AC126575", + "ref": "126575", + "name": "KIA - Chalon-sur-Saône - 43kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-30", + "note": "", + "source:date": "2022-03-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4, + 43.79 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEPOINTSUBLIME11", + "ref": "867580d1-94f0-43af-a80e-bd0da75ee828", + "name": "Auberge du Point Sublime Gorges du Verdon ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-09", + "note": "24/7", + "source:date": "2022-09-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38, + 45.47 + ] + }, + "properties": { + "operator": "Perrin", + "owner:ref:FR:SIREN": "330590449", + "email": "nellyperrin@me.com", + "phone": "0610284454", + "network": "IBIS HOTEL LA TERRAS", + "ref:EU:EVSE": "Non concerné", + "ref": "8e30cdf7-c9a7-48a3-a51b-9360b5620719", + "name": "IBIS LA TERRASSE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-08", + "note": "", + "source:date": "2022-10-18", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.66609, + 48.75567 + ] + }, + "properties": { + "operator": "KIEHL", + "owner:ref:FR:SIREN": "390454155", + "email": "contact@kiehl.fr", + "phone": "0388595225", + "network": "KIEHL France", + "ref:EU:EVSE": "Non concerné", + "ref": "2defe8a4-408d-4886-a110-6d1a3918ca16", + "name": "Kiehl France Parking", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-12", + "note": "", + "source:date": "2022-09-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.3664798, + 48.0956304 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "402343842", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda - Colmar", + "ref:EU:EVSE": "FRZMAE22AC49702", + "ref": "49702", + "name": "Mazda - Colmar 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-04", + "note": "", + "source:date": "2020-12-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.44, + 48.21 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEATRIUMGOLBEY11", + "ref": "aad5992e-ec2a-488b-95f6-47523dc8ed89", + "name": "Hôtel Atrium", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-04", + "note": "24/7", + "source:date": "2022-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.69, + 43.46 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEHOTELKYRIADBALARUC11", + "ref": "3b08bff7-e3d0-4c9a-b1d8-6c6b8a55e874", + "name": "Hôtel Kyriad Montpellier Sète Balaruc", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-04", + "note": "24/7", + "source:date": "2022-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.014273, + 50.615449 + ] + }, + "properties": { + "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", + "owner:ref:FR:SIREN": "783669831", + "email": "contact@electricite-loos.fr", + "phone": "320075634", + "network": "RME Loos (FR-FR1)", + "ref:EU:EVSE": "FRFR1EAYRU", + "ref": "", + "name": "Loos, Parking Salengro", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-30", + "note": "", + "source:date": "2022-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.014273, + 50.615449 + ] + }, + "properties": { + "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", + "owner:ref:FR:SIREN": "783669831", + "email": "contact@electricite-loos.fr", + "phone": "320075634", + "network": "RME Loos (FR-FR1) ", + "ref:EU:EVSE": "FRFR1EAYRU", + "ref": "", + "name": "Loos, Parking Salengro", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-30", + "note": "", + "source:date": "2022-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.014273, + 50.615449 + ] + }, + "properties": { + "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", + "owner:ref:FR:SIREN": "783669831", + "email": "contact@electricite-loos.fr", + "phone": "320075634", + "network": "RME Loos (FR-FR1)", + "ref:EU:EVSE": "FRFR1EAYRU", + "ref": "", + "name": "Loos, Parking Salengro", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-30", + "note": "", + "source:date": "2022-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.63357, + 48.81823 + ] + }, + "properties": { + "operator": "LA PRAIRIE", + "owner:ref:FR:SIREN": "444533103", + "email": "nadine.thal@secal.fr", + "phone": "0684262686", + "network": "LA PRAIRIE", + "ref:EU:EVSE": "Non concerné", + "ref": "f8f2a346-5d38-4564-8b12-ed6b28fd2c1b", + "name": "LA PRAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-02", + "note": "", + "source:date": "2022-10-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2858373, + 48.2050603 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "440793552", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA SENS", + "ref:EU:EVSE": "FRZKAE22AC63713", + "ref": "63713", + "name": "KIA SENS - 22KW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-22", + "note": "", + "source:date": "2021-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2858373, + 48.2050603 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "440793552", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA SENS ", + "ref:EU:EVSE": "FRZKAE24DC63712", + "ref": "63712", + "name": "KIA - Sens - 24kW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-22", + "note": "", + "source:date": "2021-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9592363524417444, + 45.048291304036994 + ] + }, + "properties": { + "operator": "electromaps", + "owner:ref:FR:SIREN": "434543864", + "email": "maximilien.kauffmann@wallbox.com", + "phone": "0694 495 065", + "network": "Armstrong France", + "ref:EU:EVSE": "FRP000000007069", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "name": "Armstrong France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-19", + "note": "paiement par QC possible", + "source:date": "2022-09-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9811023182169172, + 43.426421561643096 + ] + }, + "properties": { + "operator": "freshmile", + "owner:ref:FR:SIREN": "213105554", + "email": "exploitation@freshmile.com", + "phone": "0369246738", + "network": "Mairie Vaudreuille", + "ref:EU:EVSE": "FRFR1ESMNJ1", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "name": "Mairie Vaudreuille", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-23", + "note": "paiement par QC possible", + "source:date": "2022-09-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4808844929161726, + 43.6137170539075 + ] + }, + "properties": { + "operator": "electromaps", + "owner:ref:FR:SIREN": "330187931", + "email": "maximilien.kauffmann@wallbox.com", + "phone": "0694 495 065", + "network": "Ligue Occitanie Basketball", + "ref:EU:EVSE": "FRMAPP000000006777", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "name": "Ligue Occitanie Basketball", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-14", + "note": "paiement par QC possible", + "source:date": "2022-09-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.639024184472166, + 41.90917768392654 + ] + }, + "properties": { + "operator": "freshmile", + "owner:ref:FR:SIREN": "418415642", + "email": "exploitation@freshmile.com", + "phone": "0369246738", + "network": "résidence Dolce Vita", + "ref:EU:EVSE": "FRFR1EBVFK1", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "name": "Hotel dolce vita", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-24", + "note": "paiement par QC possible", + "source:date": "2022-08-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9811023182169172, + 43.426421561643096 + ] + }, + "properties": { + "operator": "electromaps", + "owner:ref:FR:SIREN": "213105554", + "email": "maximilien.kauffmann@wallbox.com", + "phone": "0694 495 065", + "network": "Mairie Vaudreuille", + "ref:EU:EVSE": "FRFR1ESMNJ1", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "name": "Mairie Vaudreuille", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-23", + "note": "paiement par QC possible", + "source:date": "2022-09-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.615871, + 48.816567 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "403547102", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Metz", + "ref:EU:EVSE": "FRZTLE22AC64645", + "ref": "64645", + "name": "Toyota - Metz- 22kW AC G ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-25", + "note": "", + "source:date": "2021-06-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.615871, + 48.816567 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "403547102", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Metz", + "ref:EU:EVSE": "FRZTLE22AC48422", + "ref": "48422", + "name": "Toyota - Metz- 22kW AC G ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-23", + "note": "", + "source:date": "2020-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.615871, + 48.816567 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "403547102", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Metz", + "ref:EU:EVSE": "FRZTLE22AC64646", + "ref": "64646", + "name": "Toyota - Metz- 22kW AC D ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-23", + "note": "", + "source:date": "2020-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.615871, + 48.816567 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "403547102", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Metz", + "ref:EU:EVSE": "FRZTLE22AC48423", + "ref": "48423", + "name": " Toyota - Metz- 22kW AC D ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-23", + "note": "", + "source:date": "2020-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.33756327, + 47.77843796 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "391581451", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "FORD LORIENT", + "ref:EU:EVSE": "FRZPEE24DC80464", + "ref": "80464", + "name": "Ford - Lanester - 24 kW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-22", + "note": "", + "source:date": "2021-09-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.33756327, + 47.77843796 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "391581451", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "FORD LORIENT", + "ref:EU:EVSE": "FRZPEE22AC80465", + "ref": "80465", + "name": " Ford - Lanester - 22KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-22", + "note": "", + "source:date": "2021-09-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4936366, + 43.2910961 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "451609978", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SNS SOLUTIONS MARSEILLE", + "ref:EU:EVSE": "FRE10E22AC128989", + "ref": "128989", + "name": "SNS - Marseille - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-15", + "note": "", + "source:date": "2022-04-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.763026, + 41.947088 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "323838110", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "AJACCIO NORD AUTOMOBILES - MAZDA AJACCIO ", + "ref:EU:EVSE": "FRZMAE22AC59911", + "ref": "59911", + "name": "Mazda - Ajaccio - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2021-04-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6151818, + 48.8161972 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "349214825", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MAZDA PERIGUEUX", + "ref:EU:EVSE": "FRZMAE22AC50784", + "ref": "50784", + "name": "Mazda - Perigueux (Trelissac) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-06", + "note": "", + "source:date": "2021-01-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0239871, + 48.3302804 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "443171558", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA TROYES - Groupe Amplitude", + "ref:EU:EVSE": "FRZKAE22AC90067", + "ref": "90067", + "name": "KIA - Barberey - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-16", + "note": "", + "source:date": "2021-11-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0239871, + 48.3302804 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "443171558", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA TROYES - Groupe Amplitude", + "ref:EU:EVSE": "FRZKAE24DC90066", + "ref": "90066", + "name": "KIA TROYES - Groupe Amplitude", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-16", + "note": "", + "source:date": "2021-11-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.67, + 48.52 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "802241182", + "email": "info@compinglabelleetoile.com", + "phone": "608862318", + "network": "Camping la Belle Etoile", + "ref:EU:EVSE": "Non concerné", + "ref": "277fec15-9af5-4f6b-b791-8f0a0b536ae2", + "name": "Camping la Belle Etoile", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-12", + "note": "", + "source:date": "2022-09-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.009613, + 50.617509 + ] + }, + "properties": { + "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", + "owner:ref:FR:SIREN": "783669831", + "email": "contact@electricite-loos.fr", + "phone": "320075634", + "network": "RME Loos (FR-FR1)", + "ref:EU:EVSE": "FRFR1EPJXS", + "ref": "", + "name": "Loos, Parking CIL", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-30", + "note": "", + "source:date": "2022-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.009613, + 50.617509 + ] + }, + "properties": { + "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", + "owner:ref:FR:SIREN": "783669831", + "email": "contact@electricite-loos.fr", + "phone": "320075634", + "network": "RME Loos (FR-FR1)", + "ref:EU:EVSE": "FRFR1EPJXS", + "ref": "", + "name": "Loos, Parking CIL", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-30", + "note": "", + "source:date": "2022-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.009613, + 50.617509 + ] + }, + "properties": { + "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", + "owner:ref:FR:SIREN": "783669831", + "email": "contact@electricite-loos.fr", + "phone": "320075634", + "network": "RME Loos (FR-FR1) ", + "ref:EU:EVSE": "FRFR1EPJXS", + "ref": "", + "name": "Loos, Parking CIL", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-30", + "note": "", + "source:date": "2022-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9941156, + 47.2429598 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "393417522", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Besançon", + "ref:EU:EVSE": "FRZTLE22AC64860", + "ref": "64860", + "name": "Toyota - Besançon - 22KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-29", + "note": "", + "source:date": "2021-06-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9941156, + 47.2429598 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "393417522", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Besançon", + "ref:EU:EVSE": "FRZTLE22AC64859", + "ref": "64859", + "name": "Toyota - Besançon - 22KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-29", + "note": "", + "source:date": "2021-06-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9941156, + 47.2429598 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "393417522", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Besançon", + "ref:EU:EVSE": "FRZTLE22AC64862", + "ref": "64862", + "name": "Toyota - Besançon - 22KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-29", + "note": "", + "source:date": "2021-06-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9941156, + 47.2429598 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "393417522", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Besançon", + "ref:EU:EVSE": "FRZTLE22AC64861", + "ref": "64861", + "name": "Toyota - Besançon - 22KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-29", + "note": "", + "source:date": "2021-06-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8811268, + 49.1763809 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "403547102", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Forbach", + "ref:EU:EVSE": "FRZTLE22AC61828", + "ref": "61828", + "name": "Toyota - Forbach - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-02", + "note": "", + "source:date": "2021-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8811268, + 49.1763809 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "403547102", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Forbach - 22kW AC ", + "ref:EU:EVSE": "FRZTLE22AC61827", + "ref": "61827", + "name": "Toyota - Forbach - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-02", + "note": "", + "source:date": "2021-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8811268, + 49.1763809 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "403547102", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Forbach", + "ref:EU:EVSE": "FRZTLE22AC61825", + "ref": "61825", + "name": "Toyota - Forbach - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-02", + "note": "", + "source:date": "2021-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8811268, + 49.1763809 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "403547102", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Forbach", + "ref:EU:EVSE": "FRZTLE22AC61826", + "ref": "61826", + "name": "Toyota - Forbach - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-02", + "note": "", + "source:date": "2021-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.084008, + 49.238637 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "408829224", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Reims", + "ref:EU:EVSE": "FRZTLE24DC70175", + "ref": "70175", + "name": "Toyota - Reims - 24KW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-30", + "note": "", + "source:date": "2021-08-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.084008, + 49.238637 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "408829224", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Reims", + "ref:EU:EVSE": "FRZTLE22AC66816", + "ref": "66816", + "name": "Toyota - Reims - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-27", + "note": "", + "source:date": "2021-07-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.084008, + 49.238637 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "408829224", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Reims", + "ref:EU:EVSE": "FRZTLE22AC66815", + "ref": "66815", + "name": "Toyota - Reims - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-27", + "note": "", + "source:date": "2021-07-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.084008, + 49.238637 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "408829224", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Reims", + "ref:EU:EVSE": "FRZTLE22AC66813", + "ref": "66813", + "name": "Toyota - Reims - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-27", + "note": "", + "source:date": "2021-07-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.084008, + 49.238637 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "408829224", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Reims", + "ref:EU:EVSE": "FRZTLE22AC66814", + "ref": "66814", + "name": "Toyota - Reims - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-27", + "note": "", + "source:date": "2021-07-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1, + 47.27 + ] + }, + "properties": { + "operator": "MEDIODENT", + "owner:ref:FR:SIREN": "898168273", + "email": "mediodent@gmail.com", + "phone": "03 81 60 06 00", + "network": "MEDIODENT", + "ref:EU:EVSE": "Non concerné", + "ref": "53651315-d7cb-4d91-a2ec-4ff2e8d06ae0", + "name": "MEDIODENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-25", + "note": "", + "source:date": "2022-10-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36, + 44.01 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEBRETTE11", + "ref": "ea4af2d4-4d63-40a8-a7cd-c579b91e1a8c", + "name": "DOMAINE DE LA BRETTE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "24/7", + "source:date": "2022-10-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0657217, + 44.1432574 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEBANKABLE1ROQUEALRIC1", + "ref": "5423755b-f394-4821-8e41-fa9dcb935aaa", + "name": "BANKABLE LA ROQUE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "24/7", + "source:date": "2022-10-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.637703999999, + 44.7755151 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "LABEL DENT", + "ref:EU:EVSE": "Non concerné", + "ref": "3a575c23-7b71-4f73-a0f8-fd73bc7bcfba", + "name": "LABEL DENT", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-06", + "note": "", + "source:date": "2022-06-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1669286, + 44.3974258 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "909177295", + "email": "a.tarridec@maborneauto.com", + "phone": "361626161", + "network": "RENAULT BISCAROSSE", + "ref:EU:EVSE": "Non concerné", + "ref": "31f4a65e-bbd2-4e46-a5cf-5714f0143e2a", + "name": "RENAULT BISCAROSSE", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-21", + "note": "", + "source:date": "2022-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3, + 44.46 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEVVFRECHASTEL11", + "ref": "792c0a44-6b53-48fa-aa57-1b483e111f4a", + "name": "VVF Rechastel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "DISPONIBLE 24/7", + "source:date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.33, + 44.4 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEVVFAZURNEIGE11", + "ref": "37f31189-2de6-4633-8288-8acd8b78e52b", + "name": "VVF Azur et Neige \t", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "DISPONIBLE 24/7", + "source:date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.729, + 48.642 + ] + }, + "properties": { + "operator": "Polybati", + "owner:ref:FR:SIREN": "812535870", + "email": "contact@polybati.fr", + "phone": "0679252167", + "network": "Polybati", + "ref:EU:EVSE": "Non concerné", + "ref": "f003b355-5ff8-4331-8e45-a66a57a668b0", + "name": "Polybati", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-28", + "note": "", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.52, + 44.41 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEVVFLOURIOUCLAR11", + "ref": "", + "name": "ae3e91c3-3153-4958-a9ce-9a122ab72804", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "DISPONIBLE 24/7", + "source:date": "2022-10-19", + "socket:type2_cable": "false" + } + }, { "type": "Feature", "geometry": { @@ -4727,6 +817055,115470 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842811, + 43.926543 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "488482985", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MAZDA AVIGNON", + "ref:EU:EVSE": "FRZMAE22AC96887", + "ref": "96887", + "name": "Mazda - Avignon - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-10", + "note": "", + "source:date": "2022-01-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.31, + 44.51 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMECLECHAMPS11", + "ref": "e5ed9769-55df-4ef0-9f84-62673a8b44da", + "name": "La Clé des Champs", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-26", + "note": "24/7", + "source:date": "2022-09-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.398988, + 48.944432 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "538302092", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Kia Châlons - Groupe REY", + "ref:EU:EVSE": "FRZKAE22AC88393", + "ref": "88393", + "name": "KIA - Saint-Memmie - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-29", + "note": "", + "source:date": "2021-10-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.398988, + 48.944432 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "538302092", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Kia Châlons - Groupe REY", + "ref:EU:EVSE": "FRZKAE24DC88392", + "ref": "88392", + "name": " KIA - Saint-Memmie - 24kW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-29", + "note": "", + "source:date": "2021-10-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8007328050838853, + 47.813308037603726 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "434085395", + "email": "jeremie.ferre@spie.com", + "phone": "0673675388", + "network": "DOMAINE GUEGUEN", + "ref:EU:EVSE": "Non concerné", + "ref": "8fd21380-370e-45b5-901a-a104b0b2deab", + "name": "DOMAINE GUEGUEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-12", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du domaine", + "source:date": "2022-12-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.38138, + 43.337325 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "801121096", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA Lons - EDEN AUTO", + "ref:EU:EVSE": "FRZKAE22AC38835", + "ref": "38835", + "name": "KIA - Lons PAU 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-08-27", + "note": "", + "source:date": "2020-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.38138, + 43.337325 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "801121096", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA Lons - EDEN AUTO", + "ref:EU:EVSE": "FRZKAE24DC38834", + "ref": "38834", + "name": "KIA - Lons PAU - 24kW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-08-27", + "note": "", + "source:date": "2020-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0825122, + 45.9306913 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "432152593", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda ANNECY - MONT BLANC AUTOMOBILES ", + "ref:EU:EVSE": "FRZMAE22AC61743", + "ref": "61743", + "name": "Mazda - Annecy - 22KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-01", + "note": "", + "source:date": "2021-06-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.403729, + 43.358055 + ] + }, + "properties": { + "operator": "SDC CENTRE MEDICAL ARTZAMENDI", + "owner:ref:FR:SIREN": "891652950", + "email": "fcascino@agencecd6440.fr", + "phone": "0559592669", + "network": "centre médical Artzamendi", + "ref:EU:EVSE": "Non concerné", + "ref": "e75e4340-be0a-49dd-adf9-4cf098145c81", + "name": "Artzamendi Cambo les Bains", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-05", + "note": "", + "source:date": "2022-09-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.654645323753357, + 47.234375 + ] + }, + "properties": { + "operator": "BORNECO", + "owner:ref:FR:SIREN": "818984221", + "email": "freddy.borneco@gmail.com", + "phone": "0669684978", + "network": "le colisee", + "ref:EU:EVSE": "FRBHM66666666", + "ref": "", + "name": "saint herblain ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-07", + "note": "", + "source:date": "2022-09-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2770973, + 50.916263 + ] + }, + "properties": { + "operator": "BORNECO", + "owner:ref:FR:SIREN": "445403512", + "email": "freddy.borneco@gmail.com", + "phone": "0669684978", + "network": "bubble tree", + "ref:EU:EVSE": "FRBHM777777", + "ref": "", + "name": "DRINCHAM ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-08-04", + "note": "24/7", + "source:date": "2022-09-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.598737, + 50.4726 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "SC PIOLET", + "ref:EU:EVSE": "Non concerné", + "ref": "2cb71ce9-a7c2-4e98-b6ab-5491c8089f57", + "name": "SC PIOLET", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-27", + "note": "", + "source:date": "2022-07-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8764533, + 45.6213337 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "432152593", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MAZDA CHAMBERY - MONT BLANC AUTOMOBILES", + "ref:EU:EVSE": "FRZMAE22AC60506", + "ref": "60506", + "name": "Mazda - Chambery - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-07", + "note": "", + "source:date": "2021-05-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8764533, + 45.6213337 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "432152593", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MAZDA CHAMBERY - MONT BLANC AUTOMOBILES", + "ref:EU:EVSE": "FRZMAE22AC60498", + "ref": "60498", + "name": "Mazda - Chambery - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-07", + "note": "", + "source:date": "2021-05-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.438868, + 46.349082 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "796680668", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA ANTHY SUR LEMAN - DEGENEVE", + "ref:EU:EVSE": "FRZTLE22AC63419", + "ref": "63419", + "name": "Toyota - Thonon - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-16", + "note": "", + "source:date": "2021-06-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.438868, + 46.349082 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "796680668", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA ANTHY SUR LEMAN - DEGENEVE", + "ref:EU:EVSE": "FRZTLE22AC63418", + "ref": "63418", + "name": "Toyota - Thonon - 22kW AC (Autostart) ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-16", + "note": "", + "source:date": "2021-06-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391484, + 43.841971 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "380655548", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA LEXUS NIMES - GARAGE VEYRUNES", + "ref:EU:EVSE": "FRZTLE22AC55371", + "ref": "55371", + "name": " Toyota - Nimes - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-24", + "note": "", + "source:date": "2021-02-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391484, + 43.841971 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "380655548", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA LEXUS NIMES - GARAGE VEYRUNES", + "ref:EU:EVSE": "FRZTLE22AC55370", + "ref": "55370", + "name": "Toyota - Nimes - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-24", + "note": "", + "source:date": "2021-02-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391484, + 43.841971 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "380655548", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA LEXUS NIMES - GARAGE VEYRUNES", + "ref:EU:EVSE": "FRZTLE22AC55367", + "ref": "55367", + "name": "Toyota - Nimes - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-24", + "note": "", + "source:date": "2021-02-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391484, + 43.841971 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "380655548", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA LEXUS NIMES - GARAGE VEYRUNES ", + "ref:EU:EVSE": "FRZTLE22AC55366", + "ref": "55366", + "name": "Toyota - Nimes - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-24", + "note": "", + "source:date": "2021-02-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.649456, + 48.901031 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "518528708", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SU gunderschoffen - SAS SODIHARDT", + "ref:EU:EVSE": "FRZSUE22AC36280", + "ref": "36280", + "name": " SuperU - Gundershoffen - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-07-14", + "note": "", + "source:date": "2020-07-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.649456, + 48.901031 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "518528708", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SU gunderschoffen - SAS SODIHARDT", + "ref:EU:EVSE": "FRZSUE22AC36279", + "ref": "36279", + "name": "SuperU - Gundershoffen - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-07-14", + "note": "", + "source:date": "2020-07-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.15, + 48.53 + ] + }, + "properties": { + "operator": "Bornevo Connect", + "owner:ref:FR:SIREN": "812267318", + "email": "contact@bornevo.com", + "phone": "0184604870", + "network": "Bornevo Connect", + "ref:EU:EVSE": "FRLMSE11750373", + "ref": "EVC 11750373", + "name": "CBRE TOUR FIRST", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-20", + "note": "", + "source:date": "2022-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.15, + 48.53 + ] + }, + "properties": { + "operator": "Bornevo Connect", + "owner:ref:FR:SIREN": "812267318", + "email": "contact@bornevo.com", + "phone": "0184604870", + "network": "Bornevo Connect", + "ref:EU:EVSE": "FRLMSE11749592", + "ref": "EVC 11749592", + "name": "CBRE TOUR FIRST", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-20", + "note": "", + "source:date": "2022-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.15, + 48.53 + ] + }, + "properties": { + "operator": "Bornevo Connect", + "owner:ref:FR:SIREN": "", + "email": "contact@bornevo.com", + "phone": "0184604870", + "network": "CBRE TOUR FIRST", + "ref:EU:EVSE": "FRLMSE11736622", + "ref": "EVC 11736622 E61083", + "name": "CBRE TOUR FIRST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-20", + "note": "", + "source:date": "2022-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.15, + 48.53 + ] + }, + "properties": { + "operator": "Bornevo Connect", + "owner:ref:FR:SIREN": "812267318", + "email": "contact@bornevo.com", + "phone": "0184604870", + "network": "CBRE TOUR FIRST", + "ref:EU:EVSE": "FRLMSE11732115", + "ref": "BOR-ECOE37374-E37375", + "name": "CBRE TOUR FIRST", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-20", + "note": "", + "source:date": "2022-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.15, + 48.53 + ] + }, + "properties": { + "operator": "Bornevo Connect", + "owner:ref:FR:SIREN": "812267318", + "email": "contact@bornevo.com", + "phone": "0184604870", + "network": "Bornevo Connect", + "ref:EU:EVSE": "FRLMSE11750472", + "ref": "EVC 11750472", + "name": "CBRE TOUR FIRST", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-20", + "note": "", + "source:date": "2022-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9057774, + 43.660005 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "879486520", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ROADY SERVICE", + "ref:EU:EVSE": "FRZIME22AC50491", + "ref": "50491", + "name": "Roady - Jacou - 22kW AC", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-22", + "note": "", + "source:date": "2020-12-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9057774, + 43.660005 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "879486520", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ROADY SERVICE", + "ref:EU:EVSE": "FRZIME22AC50490", + "ref": "50490", + "name": "Roady - Jacou - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-22", + "note": "", + "source:date": "2020-12-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2614333, + 46.2014483 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "829900414", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mercedes Benz - EMB Léman Annemasse", + "ref:EU:EVSE": "FRZPEE22AC28236", + "ref": "28236", + "name": "Mercedes Benz - EMB Léman Annemasse -22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-12-10", + "note": "", + "source:date": "2019-12-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2614333, + 46.2014483 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "829900414", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mercedes Benz - EMB Léman Annemasse", + "ref:EU:EVSE": "FRZPEE22AC28235", + "ref": "28235", + "name": "Mercedes Benz - EMB Léman Annemasse -22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-12-10", + "note": "", + "source:date": "2019-12-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.079967, + 45.894798 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "GALILEO", + "ref:EU:EVSE": "FR0NXPOOL8T9XK", + "ref": "", + "name": "GALILEO", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.079967, + 45.894798 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "GALILEO", + "ref:EU:EVSE": "FR0NXPOOL8T9XK", + "ref": "", + "name": "GALILEO", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.165022, + 50.606513 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "MOULINS D'ASCQ", + "ref:EU:EVSE": "FR0NXPOOLE4XC3", + "ref": "", + "name": "MOULINS D'ASCQ", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.165022, + 50.606513 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "MOULINS D'ASCQ", + "ref:EU:EVSE": "FR0NXPOOLE4XC3", + "ref": "", + "name": "MOULINS D'ASCQ", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.897273, + 45.459233 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "CLUB MED", + "ref:EU:EVSE": "FR0NXPOOLNXWJ8", + "ref": "", + "name": "CLUB MED", + "capacity": "20", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-02-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74223, + 45.979647 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "ACTIPOLE", + "ref:EU:EVSE": "FR0NXPOOLJ44QH", + "ref": "", + "name": "Actipole", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-06-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13535, + 45.686943 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "SA TRANSPORTS FRANCONY", + "ref:EU:EVSE": "FR0NXPOOLHJEBL", + "ref": "", + "name": "FRANCONY", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-06-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74223, + 45.979647 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "ACTIPOLE", + "ref:EU:EVSE": "FR0NXPOOLJ44QH", + "ref": "", + "name": "Actipole", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-06-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.079026, + 45.893398 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "MOBILIS", + "ref:EU:EVSE": "FR0NXPOOLXTDNT", + "ref": "", + "name": "MOBILIS", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-07-25", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.079026, + 45.893398 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "MOBILIS", + "ref:EU:EVSE": "FR0NXPOOLXTDNT", + "ref": "", + "name": "MOBILIS", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-07-25", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13535, + 45.686943 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "SA TRANSPORTS FRANCONY", + "ref:EU:EVSE": "FR0NXPOOLHJEBL", + "ref": "", + "name": "FRANCONY", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-06-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.079026, + 45.893398 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "MOBILIS", + "ref:EU:EVSE": "FR0NXPOOLXTDNT", + "ref": "", + "name": "MOBILIS", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-07-25", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.079026, + 45.893398 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "MOBILIS", + "ref:EU:EVSE": "FR0NXPOOLXTDNT", + "ref": "", + "name": "MOBILIS", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-07-25", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.079026, + 45.893398 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "MOBILIS", + "ref:EU:EVSE": "FR0NXPOOLXTDNT", + "ref": "", + "name": "MOBILIS", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-07-25", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.178151, + 45.830847 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "Lac d’Annecy Camping", + "ref:EU:EVSE": "FR0NXPOOLJ49KF", + "ref": "", + "name": "Lac d’Annecy Camping", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-07-25", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.178151, + 45.830847 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "Lac d’Annecy Camping", + "ref:EU:EVSE": "FR0NXPOOLJ49KF", + "ref": "", + "name": "Lac d’Annecy Camping", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-07-25", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.178151, + 45.830847 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "Lac d’Annecy Camping", + "ref:EU:EVSE": "FR0NXPOOLJ49KF", + "ref": "", + "name": "Lac d’Annecy Camping", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-07-25", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.178151, + 45.830847 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "Lac d’Annecy Camping", + "ref:EU:EVSE": "FR0NXPOOLJ49KF", + "ref": "", + "name": "Lac d’Annecy Camping", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-07-25", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.079026, + 45.893398 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "MOBILIS", + "ref:EU:EVSE": "FR0NXPOOLXTDNT", + "ref": "", + "name": "MOBILIS", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-07-25", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74223, + 45.979647 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "ACTIPOLE", + "ref:EU:EVSE": "FR0NXPOOLJ44QH", + "ref": "", + "name": "Actipole", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-06-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74223, + 45.979647 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "ACTIPOLE", + "ref:EU:EVSE": "FR0NXPOOLJ44QH", + "ref": "", + "name": "Actipole", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-06-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74223, + 45.979647 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "ACTIPOLE", + "ref:EU:EVSE": "FR0NXPOOLJ44QH", + "ref": "", + "name": "Actipole", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-06-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74223, + 45.979647 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "ACTIPOLE", + "ref:EU:EVSE": "FR0NXPOOLJ44QH", + "ref": "", + "name": "Actipole", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-06-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.111914, + 45.881672 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "SA TRANSPORTS FRANCONY", + "ref:EU:EVSE": "FR0NXPOOLTMC8P", + "ref": "", + "name": "SABA", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-06-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.111914, + 45.881672 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "SA TRANSPORTS FRANCONY", + "ref:EU:EVSE": "FR0NXPOOLTMC8P", + "ref": "", + "name": "SABA", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-06-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.111914, + 45.881672 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "SA TRANSPORTS FRANCONY", + "ref:EU:EVSE": "FR0NXPOOLTMC8P", + "ref": "", + "name": "SABA", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-06-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13535, + 45.686943 + ] + }, + "properties": { + "operator": "NEXTENEO", + "owner:ref:FR:SIREN": "", + "email": "contact@nexteneo.com", + "phone": "null", + "network": "SA TRANSPORTS FRANCONY", + "ref:EU:EVSE": "FR0NXPOOLHJEBL", + "ref": "", + "name": "FRANCONY", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP", + "source:date": "2023-06-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.811676, + 48.0690269 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "735550048", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ETABLISSEMENT DES FILS DE J.MONNIER SAINT BERTHEVIN ", + "ref:EU:EVSE": "FRZPEE22AC71494", + "ref": "71494", + "name": "Meubles Monnier - Laval - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2021-09-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.811676, + 48.0690269 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "735550048", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ETABLISSEMENT DES FILS DE J.MONNIER SAINT BERTHEVIN ", + "ref:EU:EVSE": "FRZPEE22AC71514", + "ref": "71514", + "name": "Meubles Monnier - Laval - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2021-09-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.811676, + 48.0690269 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "735550048", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ETABLISSEMENT DES FILS DE J.MONNIER SAINT BERTHEVIN ", + "ref:EU:EVSE": "FRZPEE22AC121730", + "ref": "121730", + "name": "Meubles Monnier - Laval - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2021-09-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.91 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "552008914", + "email": "exploitation@freshmile.com", + "phone": "0368781435", + "network": "VINCI OPTEOR IMMOTIC", + "ref:EU:EVSE": "Non concerné", + "ref": "52756b64-e5c3-44db-930f-3d7134d97d86", + "name": "VINCI OPTEOR IMMOTIC", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-20", + "note": "Jour ouvré de 8H à 10H", + "source:date": "2022-09-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21, + 48.91 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "552008914", + "email": "exploitation@freshmile.com", + "phone": "0368781435", + "network": "VINCI OPTEOR IMMOTIC", + "ref:EU:EVSE": "Non concerné", + "ref": "74547d48-2597-4024-a46c-2399260c18f4", + "name": "VINCI OPTEOR IMMOTIC", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-20", + "note": "Jour ouvré de 8H à 10H", + "source:date": "2022-09-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4088906, + 49.0256943 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "717280473", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda CHÂTEAU THIERRY", + "ref:EU:EVSE": "FRZMAE22AC96902", + "ref": "96902", + "name": "Mazda - Château-Thierry - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-10", + "note": "", + "source:date": "2022-01-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.408807, + 49.025824 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "717280473", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda CHÂTEAU THIERRY", + "ref:EU:EVSE": "FRZMAE22AC56571", + "ref": "56571", + "name": "Mazda - Château-Thierry - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-23", + "note": "", + "source:date": "2021-03-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.654599599999, + 44.8662562 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "SAS CIGIMMO 4", + "ref:EU:EVSE": "Non concerné", + "ref": "e9df2d26-22e3-4d29-a94a-cfeee0adc8e9", + "name": "SAS CIGIMMO 4", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-18", + "note": "", + "source:date": "2022-08-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82, + 49.13 + ] + }, + "properties": { + "operator": "SCI LES RUISSEAUX", + "owner:ref:FR:SIREN": "530787852", + "email": "marc@fiskagroup.com", + "phone": "0387885670", + "network": "SCI LES RUISSEAUX", + "ref:EU:EVSE": "Non concerné", + "ref": "7dcef345-7d8a-4753-ae4e-7b3d88d68dfb", + "name": "SCI LES RUISSEAUX", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-08-31", + "note": "", + "source:date": "2022-08-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.867657, + 45.9168004 + ] + }, + "properties": { + "operator": "NM SECURELEC", + "owner:ref:FR:SIREN": "348002718", + "email": "infos@nmsecurelec.com", + "phone": "+33662651578", + "network": "Le Refuge des Aiglons", + "ref:EU:EVSE": "FRMAPE000013448034", + "ref": "2a58421e-08e5-4992-bcad-7e53de800fdf", + "name": "Refuge des Aiglons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-02", + "note": "Paiement par aplication mobile", + "source:date": "2022-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.867657, + 45.9168004 + ] + }, + "properties": { + "operator": "NM SECURELEC", + "owner:ref:FR:SIREN": "348002718", + "email": "infos@nmsecurelec.com", + "phone": "+33662651578", + "network": "Le Refuge des Aiglons", + "ref:EU:EVSE": "FRMAPE000013386096", + "ref": "2a58421e-08e5-4992-bcad-7e53de800fdf", + "name": "Refuge des Aiglons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-02", + "note": "Paiement par aplication mobile", + "source:date": "2022-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5487, + 45.31885 + ] + }, + "properties": { + "operator": "NM SECURELEC", + "owner:ref:FR:SIREN": "490457447", + "email": "infos@nmsecurelec.com", + "phone": "+33662651578", + "network": "Hôtel le Kaya", + "ref:EU:EVSE": "FRMAPE000015796702", + "ref": " 99d6d8ef-b3bf-4c14-a84a-866bfd484178", + "name": "Hôtel le Kaya", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-02", + "note": "Paiement par aplication mobile", + "source:date": "2022-12-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5487, + 45.31885 + ] + }, + "properties": { + "operator": "NM SECURELEC", + "owner:ref:FR:SIREN": "490457447", + "email": "infos@nmsecurelec.com", + "phone": "+33662651578", + "network": "Hôtel le Kaya", + "ref:EU:EVSE": "FRMAPE000014796731", + "ref": " 99d6d8ef-b3bf-4c14-a84a-866bfd484178", + "name": "Hôtel le Kaya", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-02", + "note": "Paiement par aplication mobile", + "source:date": "2022-12-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5, + 49 + ] + }, + "properties": { + "operator": "Bornevo", + "owner:ref:FR:SIREN": "418152302", + "email": "contact@bornevo.com", + "phone": "0184604870", + "network": "Bornevo Connect", + "ref:EU:EVSE": "FRLMSE117293791", + "ref": "E46104", + "name": "NNR France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.729, + 48.642 + ] + }, + "properties": { + "operator": "Automobile de l'Est", + "owner:ref:FR:SIREN": "820731552", + "email": "automobiledelest1@gmail.com", + "phone": "0679252167", + "network": "Automobile de l'Est", + "ref:EU:EVSE": "Non concerné", + "ref": "f003b355-5ff8-4331-8e45-a66a57a668b0", + "name": "Automobile de l'Est", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-28", + "note": "", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.605048, + 49.644253 + ] + }, + "properties": { + "operator": "EVERON", + "owner:ref:FR:SIREN": "790127815", + "email": "frsupport@ev-box.com", + "phone": "0141447047", + "network": "EVBOX", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1924294", + "name": "Terminal Cherbourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "Recharge 24/24h 7/7j", + "source:date": "2022-05-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.729, + 48.642 + ] + }, + "properties": { + "operator": "Zen Construction", + "owner:ref:FR:SIREN": "795006733", + "email": "zen.construction39@orange.fr", + "phone": "0388504888", + "network": "Zen Cosntruction", + "ref:EU:EVSE": "Non concerné", + "ref": "f003b355-5ff8-4331-8e45-a66a57a668b0", + "name": "Zen Co,nstruction", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-28", + "note": "", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.347742, + 49.214436 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "538798570", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA - Hérouville-Saint-Clair", + "ref:EU:EVSE": "FRZKAE24DC37830", + "ref": "37830", + "name": "KIA - Hérouville-Saint-Clair - 24kW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-08-17", + "note": "", + "source:date": "2020-08-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.347742, + 49.214436 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "538798570", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA - Hérouville-Saint-Clair", + "ref:EU:EVSE": "FRZKAE22AC37831", + "ref": "37831", + "name": "KIA - Hérouville-Saint-Clair - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-08-17", + "note": "", + "source:date": "2020-08-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.716682, + 45.975531 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "434734455", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "STATION MICHEL AULAS", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0161", + "name": "STATION MICHEL AULAS", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-23", + "note": "SO", + "source:date": "2022-06-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.716682, + 45.975531 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "434734455", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "STATION MICHEL AULAS", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0162", + "name": "STATION MICHEL AULAS", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-23", + "note": "SO", + "source:date": "2022-06-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.716682, + 45.975531 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "434734455", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "STATION MICHEL AULAS", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0160", + "name": "STATION MICHEL AULAS", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-23", + "note": "SO", + "source:date": "2022-06-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.716682, + 45.975531 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "434734455", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "STATION MICHEL AULAS", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0163", + "name": "STATION MICHEL AULAS", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-23", + "note": "SO", + "source:date": "2022-06-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6073542, + 45.5257463 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "531669737", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Bricomarché Rive de Gier", + "ref:EU:EVSE": "FRZIME22AC77754", + "ref": "77754", + "name": "Bricomarché - Rive de Gier - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-09", + "note": "", + "source:date": "2021-09-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6073542, + 45.5257463 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "531669737", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Bricomarché Rive de Gier ", + "ref:EU:EVSE": "FRZIME22AC77752", + "ref": "77752", + "name": " Bricomarché - Rive de Gier - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-09", + "note": "", + "source:date": "2021-09-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0316692, + 50.6421108 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "831156278", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda Lille - Kodo Automobiles", + "ref:EU:EVSE": "FRZMAE22AC57006", + "ref": "57006", + "name": "Mazda - Lille (Villeneuve-d'Ascq) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-30", + "note": "", + "source:date": "2021-03-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0316692, + 50.6421108 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "831156278", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda Lille - Kodo Automobiles", + "ref:EU:EVSE": "FRZMAE22AC56657", + "ref": "56657", + "name": "Mazda - Lille (PARKING) - 22kW AC PARKING ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-24", + "note": "", + "source:date": "2021-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.676037, + 48.991536 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "379198443", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda Buchelay - Technic Auto Services", + "ref:EU:EVSE": "FRZMAE74AC96190", + "ref": "96190", + "name": "Mazda - Buchelay - 7kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-04", + "note": "", + "source:date": "2022-01-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.155058, + 48.995907 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "351440078", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MAZDA Evreux GHV", + "ref:EU:EVSE": "FRZMAE74AC109624", + "ref": "109624", + "name": "Mazda - Angerville-la-Campagne - 7kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2022-01-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.462146, + 48.204388 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "833702582", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MAZDA EPINAL", + "ref:EU:EVSE": "FRZMAE22AC49587", + "ref": "49587", + "name": "MAZDA EPINAL GAUCHE ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-03", + "note": "", + "source:date": "2020-12-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.462146, + 48.204388 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "833702582", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MAZDA EPINAL", + "ref:EU:EVSE": "FRZMAE22AC49607", + "ref": "49607", + "name": "MAZDA EPINAL DROITE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-03", + "note": "", + "source:date": "2020-12-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5, + 46.3 + ] + }, + "properties": { + "operator": "AUTORECHARGE ", + "owner:ref:FR:SIREN": "849533070", + "email": "contact@autorecharge.fr", + "phone": "0970755400", + "network": "Infrastructures de recharge pour véhicules électriques AUTORECHARGE", + "ref:EU:EVSE": "FRAU1E0025011", + "ref": "5720d842-fcf2-4e6f-897d-bf0d2b6bfa10", + "name": "Agape Hôtel Niort Bessines", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-14", + "note": "", + "source:date": "2022-05-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.49, + 47.93 + ] + }, + "properties": { + "operator": "box", + "owner:ref:FR:SIREN": "512803495", + "email": "romain.box@notaires.fr", + "phone": "0329306633", + "network": "BOX", + "ref:EU:EVSE": "Non concerné", + "ref": "414fdb34-8e7a-4add-b930-3f3c3ba8364c", + "name": "BOX", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "", + "source:date": "2022-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.56065, + 48.73133 + ] + }, + "properties": { + "operator": "WICKER TP", + "owner:ref:FR:SIREN": "678500950", + "email": "contact@wickertp.fr", + "phone": "0388915128", + "network": "WICKER TP", + "ref:EU:EVSE": "Non concerné", + "ref": "44ffcdec-3eaf-4358-8baf-7da4631d3f24", + "name": "WICKER TP BUREAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-10", + "note": "", + "source:date": "2022-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.56065, + 48.73133 + ] + }, + "properties": { + "operator": "WICKER TP", + "owner:ref:FR:SIREN": "678500950", + "email": "contact@wickertp.fr", + "phone": "0388915128", + "network": "WICKER TP", + "ref:EU:EVSE": "Non concerné", + "ref": "44ffcdec-3eaf-4358-8baf-7da4631d3f24", + "name": "WICKER TP ATELIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-10", + "note": "", + "source:date": "2022-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58, + 42.37 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEFALGOS11", + "ref": "a9e431e7-189c-44c7-b111-55db8d10d18f", + "name": "DOMAINE DE FALGOS ", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-13", + "note": "24/7", + "source:date": "2022-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1299419, + 47.3207567 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "808872097", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché CONTACT Marchaux et Drive - Semmax", + "ref:EU:EVSE": "FRZIME22AC87473", + "ref": "87473", + "name": " Intermarché - Marchaux - 22kw AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-18", + "note": "", + "source:date": "2020-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1299419, + 47.3207567 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "808872097", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché CONTACT Marchaux et Drive - Semmax", + "ref:EU:EVSE": "FRZIME22AC87472", + "ref": "87472", + "name": "Intermarché - Marchaux - 22kw AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-18", + "note": "", + "source:date": "2020-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1299419, + 47.3207567 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "808872097", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché CONTACT Marchaux et Drive - Semmax", + "ref:EU:EVSE": "FRZIME22AC47126", + "ref": "47126", + "name": "Intermarché - Marchaux - 22kw AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-18", + "note": "", + "source:date": "2020-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1299419, + 47.3207567 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "808872097", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché CONTACT Marchaux et Drive - Semmax", + "ref:EU:EVSE": "FRZIME22AC47104", + "ref": "47104", + "name": "Intermarché - Marchaux - 22kw AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-18", + "note": "", + "source:date": "2020-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.074071, + 44.616646 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "318226974", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SA BEYNEL ET FILS ", + "ref:EU:EVSE": "FRZSUE22AC49420", + "ref": "49420", + "name": "SA BEYNEL ET FILS - Gujan-Mestras - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-01", + "note": "", + "source:date": "2020-12-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.074071, + 44.616646 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "318226974", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SA BEYNEL ET FILS ", + "ref:EU:EVSE": "FRZSUE22AC49419", + "ref": "49419", + "name": "SA BEYNEL ET FILS - Gujan-Mestras - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-01", + "note": "", + "source:date": "2020-12-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.074071, + 44.616646 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "318226974", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SA BEYNEL ET FILS", + "ref:EU:EVSE": "FRZSUE22AC26492", + "ref": "26492", + "name": "SA BEYNEL ET FILS - Gujan-Mestras - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-10-25", + "note": "", + "source:date": "2019-10-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.074071, + 44.616646 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "318226974", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SA BEYNEL ET FILS", + "ref:EU:EVSE": "FRZSUE22AC26491", + "ref": "26491", + "name": "SA BEYNEL ET FILS - Gujan-Mestras - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-10-25", + "note": "", + "source:date": "2019-10-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.41, + 16.01 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "428801658", + "email": "odile.coumau@ezdrive.fr", + "phone": "", + "network": "Bananes Vertes St Claude", + "ref:EU:EVSE": "FREZDE28286", + "ref": "FREZDE28287", + "name": "Bananes vertes ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-08-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.72048039949465, + 15.999101989340252 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "819761883", + "email": "odile.coumau@ezdrive.fr", + "phone": "", + "network": "Mc Donald's Basse Terre", + "ref:EU:EVSE": "FREZDE63395", + "ref": "FREZDE63396", + "name": "Mc Donald's Basse Terre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-20", + "note": "", + "source:date": "2022-08-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1446482, + 45.7582871 + ] + }, + "properties": { + "operator": "WeeCharge", + "owner:ref:FR:SIREN": "902305556", + "email": "hello@weecharge.fr", + "phone": "0972649769", + "network": "WeeCharge", + "ref:EU:EVSE": "Non concerné", + "ref": "38b1f8f6-095f-4e98-a187-e1ca8abf2989", + "name": "X4322", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2022-06-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8066202, + 46.1815093 + ] + }, + "properties": { + "operator": "WeeCharge", + "owner:ref:FR:SIREN": "902305556", + "email": "hello@weecharge.fr", + "phone": "0972649769", + "network": "WeeCharge", + "ref:EU:EVSE": "Non concerné", + "ref": "d3c00913-8774-4df3-8c07-97b5c596db39", + "name": "Montaigut Le Boulval", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2022-06-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041194, + 48.26813266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP88440A", + "ref": "", + "name": "e-Vadea - Sandaucourt - A31 La Trelle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041194, + 48.26813266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP88440A", + "ref": "", + "name": "e-Vadea - Sandaucourt - A31 La Trelle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041194, + 48.26813266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP88440A", + "ref": "", + "name": "e-Vadea - Sandaucourt - A31 La Trelle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041194, + 48.26813266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP88440A", + "ref": "", + "name": "e-Vadea - Sandaucourt - A31 La Trelle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-01", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-01", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-01", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-01", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-01", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-01", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601411, + 48.601857 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP77384A", + "ref": "", + "name": "e-Vadea - Réau - A5a Plessis Picard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-01", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041194, + 48.26813266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP88440A", + "ref": "", + "name": "e-Vadea - Sandaucourt - A31 La Trelle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041194, + 48.26813266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP88440A", + "ref": "", + "name": "e-Vadea - Sandaucourt - A31 La Trelle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041194, + 48.26813266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP88440A", + "ref": "", + "name": "e-Vadea - Sandaucourt - A31 La Trelle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041194, + 48.26813266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP88440A", + "ref": "", + "name": "e-Vadea - Sandaucourt - A31 La Trelle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041194, + 48.26813266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP88440A", + "ref": "", + "name": "e-Vadea - Sandaucourt - A31 La Trelle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041194, + 48.26813266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP88440A", + "ref": "", + "name": "e-Vadea - Sandaucourt - A31 La Trelle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041194, + 48.26813266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP88440A", + "ref": "", + "name": "e-Vadea - Sandaucourt - A31 La Trelle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041194, + 48.26813266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP88440A", + "ref": "", + "name": "e-Vadea - Sandaucourt - A31 La Trelle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041194, + 48.26813266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP88440A", + "ref": "", + "name": "e-Vadea - Sandaucourt - A31 La Trelle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041194, + 48.26813266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP88440A", + "ref": "", + "name": "e-Vadea - Sandaucourt - A31 La Trelle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-29", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-29", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP37099A", + "ref": "", + "name": "e-Vadea - Druye - A85 Jardins de Villandry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-29", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP34095A", + "ref": "", + "name": "e-Vadea - Fabregues - A9 Montpellier Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041194, + 48.26813266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP88440A", + "ref": "", + "name": "e-Vadea - Sandaucourt - A31 La Trelle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-10-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-10-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-10-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-10-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-10-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-10-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-10-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-10-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-10-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-10-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP11188A", + "ref": "", + "name": "e-Vadea - La Palme - A9 La Palme Ouest", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451923, + 46.20556621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP01195A", + "ref": "", + "name": "e-Vadea - Jasseron - A40 Teyssonge", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451923, + 46.20556621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP01195A", + "ref": "", + "name": "e-Vadea - Jasseron - A40 Teyssonge", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451923, + 46.20556621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP01195A", + "ref": "", + "name": "e-Vadea - Jasseron - A40 Teyssonge", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451923, + 46.20556621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP01195A", + "ref": "", + "name": "e-Vadea - Jasseron - A40 Teyssonge", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451923, + 46.20556621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP01195A", + "ref": "", + "name": "e-Vadea - Jasseron - A40 Teyssonge", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451923, + 46.20556621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP01195A", + "ref": "", + "name": "e-Vadea - Jasseron - A40 Teyssonge", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451923, + 46.20556621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP01195A", + "ref": "", + "name": "e-Vadea - Jasseron - A40 Teyssonge", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451923, + 46.20556621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP01195A", + "ref": "", + "name": "e-Vadea - Jasseron - A40 Teyssonge", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451923, + 46.20556621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP01195A", + "ref": "", + "name": "e-Vadea - Jasseron - A40 Teyssonge", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451923, + 46.20556621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP01195A", + "ref": "", + "name": "e-Vadea - Jasseron - A40 Teyssonge", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451923, + 46.20556621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP01195A", + "ref": "", + "name": "e-Vadea - Jasseron - A40 Teyssonge", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451923, + 46.20556621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP01195A", + "ref": "", + "name": "e-Vadea - Jasseron - A40 Teyssonge", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451923, + 46.20556621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP01195A", + "ref": "", + "name": "e-Vadea - Jasseron - A40 Teyssonge", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451923, + 46.20556621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP01195A", + "ref": "", + "name": "e-Vadea - Jasseron - A40 Teyssonge", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451923, + 46.20556621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP01195A", + "ref": "", + "name": "e-Vadea - Jasseron - A40 Teyssonge", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86041194, + 48.26813266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP88440A", + "ref": "", + "name": "e-Vadea - Sandaucourt - A31 La Trelle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4200054, + 43.7535892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP06012A", + "ref": "", + "name": "e-Vadea - Beausoleil - A8 Beausoleil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-09-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-18", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-18", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-18", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-18", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-18", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-18", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP13015A", + "ref": "", + "name": "e-Vadea - Bouc-Bel-Air - A51 Champouse", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP33502A", + "ref": "", + "name": "e-Vadea - Saugon - A10 Terres de l'Estuaire", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29451923, + 46.20556621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP01195A", + "ref": "", + "name": "e-Vadea - Jasseron - A40 Teyssonge", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368A", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368A", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368A", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368A", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368A", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111B", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Spoy", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368A", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368A", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368A", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368A", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368A", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368A", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111B", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Spoy", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368A", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368A", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368A", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368B", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368B", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368B", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368B", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368B", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368B", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368A", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368A", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111B", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Spoy", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368B", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368B", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368B", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368B", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111A", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Brognon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111B", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Spoy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111B", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Spoy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111B", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Spoy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111B", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Spoy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368B", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368B", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368B", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368B", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368B", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP25368B", + "ref": "", + "name": "e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111B", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Spoy", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111B", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Spoy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111B", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Spoy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP31161A", + "ref": "", + "name": "e-Vadea - Deyme - A61 Toulouse Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111B", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Spoy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111B", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Spoy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111B", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Spoy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111B", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Spoy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111B", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Spoy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21111B", + "ref": "", + "name": "e-Vadea - Brognon - A31 Dijon Spoy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "ref:EU:EVSE": "FREVAP21298A", + "ref": "", + "name": "e-Vadea - Gissey-le-Vieil - A6 Chien Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.89, + 43.96 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEHOTELALIZES11", + "ref": "02e88fc3-43b3-4289-b171-135781bfab8c", + "name": "HOTEL LES ALIZES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-15", + "note": "24/7", + "source:date": "2022-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05, + 44.05 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEMALIJAI1011", + "ref": "de791cd2-c920-4121-aebe-5a54a3e5695f", + "name": "LUMI'IN MALIJAI", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-28", + "note": "24/7", + "source:date": "2022-06-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.657888301758055, + 41.908579309038004 + ] + }, + "properties": { + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "812328128", + "email": "oscar@electromaps.com", + "phone": "34 931.574.967", + "network": "Résidence les calanques", + "ref:EU:EVSE": "FR000012308585", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "name": "Résidence les calanques", + "capacity": "8", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-15", + "note": "PAIEMENT PAR QR CODE", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.493569567590577, + 48.832677935169805 + ] + }, + "properties": { + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "349009423", + "email": "oscar@electromaps.com", + "phone": "34 931.574.967", + "network": "Hôtel Restaurant Campanile Nogent-sur-Marne", + "ref:EU:EVSE": "FR000012292701", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "name": "Hôtel Restaurant Campanile Nogent-sur-Marne", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-22", + "note": "PAIEMENT PAR QR CODE possible ", + "source:date": "2022-05-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.476711409891, + 43.476583984941 + ] + }, + "properties": { + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "803719277", + "email": "oscar@electromaps.com", + "phone": "34 931.574.967", + "network": "1PACTE", + "ref:EU:EVSE": "FR000012616553", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "name": "1PACTE", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-04", + "note": "PAIEMENT PAR QR CODE possible ", + "source:date": "2022-05-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.407609123225763, + 43.41959147913006 + ] + }, + "properties": { + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "379629447", + "email": "oscar@electromaps.com", + "phone": "34 931.574.967", + "network": "Hotel saint alban", + "ref:EU:EVSE": "FR000011062174", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "name": "Hotel saint alban", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-02", + "note": "PAIEMENT PAR QR CODE possible ", + "source:date": "2022-04-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27, + 46.2 + ] + }, + "properties": { + "operator": "Electromaps", + "owner:ref:FR:SIREN": "725620751", + "email": "support@electromaps.com", + "phone": "0034931574967", + "network": "Aubade - Comptoir des Fers", + "ref:EU:EVSE": "FRMAPP000000006808", + "ref": "", + "name": "Aubade - Comptoir des Fers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "Recharge disponible uniquement pendant les horaires du magasin", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27, + 46.2 + ] + }, + "properties": { + "operator": "Electromaps", + "owner:ref:FR:SIREN": "725620751", + "email": "support@electromaps.com", + "phone": "0034931574967", + "network": "Aubade - Comptoir des Fers", + "ref:EU:EVSE": "FRMAPP000000006808", + "ref": "", + "name": "Aubade - Comptoir des Fers", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "Recharge disponible uniquement pendant les horaires du magasin", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4883644, + 45.147515 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "349214825", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "PAROT AUTOMOTIVE - MAZDA BRIVE ", + "ref:EU:EVSE": "FRZMAE22AC50719", + "ref": "50719", + "name": "Mazda - Brive - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-05", + "note": "", + "source:date": "2021-01-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.860127, + 46.768978 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "391060480", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MAZDA CHALON S.SAONE - GROUPE GUILLET", + "ref:EU:EVSE": "FRZMAE22AC50711", + "ref": "50711", + "name": "Mazda - Chalon-sur-Saône - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-05", + "note": "", + "source:date": "2021-01-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1391855, + 48.534072 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "424095370", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Villa Primerose", + "ref:EU:EVSE": "FRZPEE74AC89771", + "ref": "89771", + "name": "Villa Primerose - Arcis-sur-Aube - 7.4kW AC D ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-12", + "note": "", + "source:date": "2021-11-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1391855, + 48.534072 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "424095370", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Villa Primerose", + "ref:EU:EVSE": "FRZPEE74AC89772", + "ref": "89772", + "name": " Villa Primerose - Arcis-sur-Aube - 7.4kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-12", + "note": "", + "source:date": "2021-11-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.99, + 44.08 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEHOTELPEUPLIERS11", + "ref": "423e4356-77bc-4fc0-8b43-2d102d6b6093", + "name": "HOTEL LES PEUPLIERS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "24/7", + "source:date": "2022-07-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.323404, + 49.17014 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "448310771", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA CAEN", + "ref:EU:EVSE": "FRZTLE22AC128616", + "ref": "128616", + "name": "Toyota - Mondeville - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-12", + "note": "", + "source:date": "2022-04-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.323404, + 49.17014 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "448310771", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA CAEN", + "ref:EU:EVSE": "FRZTLE22AC128615", + "ref": "128615", + "name": "Toyota - Mondeville - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-12", + "note": "", + "source:date": "2022-04-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4191715, + 43.2791824 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "309004331", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "AUTO SPRINTER - MARSEILLE", + "ref:EU:EVSE": "FRZTLE22AC56428", + "ref": "56428", + "name": "Toyota - Marseille - 22KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-19", + "note": "", + "source:date": "2021-03-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4191715, + 43.2791824 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "309004331", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "AUTO SPRINTER - MARSEILLE", + "ref:EU:EVSE": "FRZTLE22AC56427", + "ref": "56427", + "name": "Toyota - Marseille - 22KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-19", + "note": "", + "source:date": "2021-03-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59939, + 43.336796 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "534056148", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MELLONE CONSTRUCTION", + "ref:EU:EVSE": "FRZPEE74AC71708", + "ref": "71708", + "name": "Mellone Construction - Roquevaire - 7,4kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2021-09-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59939, + 43.336796 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "534056148", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MELLONE CONSTRUCTION", + "ref:EU:EVSE": "FRZPEE74AC71707", + "ref": "71707", + "name": "Mellone Construction - Roquevaire - 7,4kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2021-09-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59939, + 43.336796 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "534056148", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MELLONE CONSTRUCTION", + "ref:EU:EVSE": "FRZPEE22AC129868", + "ref": "129868", + "name": "Mellone Construction - Roquevaire - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-18", + "note": "", + "source:date": "2020-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59939, + 43.336796 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "534056148", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MELLONE CONSTRUCTION", + "ref:EU:EVSE": "FRZPEE22AC129846", + "ref": "129846", + "name": "Mellone Construction - Roquevaire - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-18", + "note": "", + "source:date": "2020-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6089027, + 48.5699316 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "257702613", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Syndicat intercommunal de Cesson et Vert-Saint-Denis", + "ref:EU:EVSE": "FRZPEE22AC129732", + "ref": "129732", + "name": "Syndicat intercommunal (Mairie) - Cesson - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2021-09-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1472556, + 44.6109419 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "751468612", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - La Teste de Buche", + "ref:EU:EVSE": "FRZIME22AC61148", + "ref": "61148", + "name": " Intermarché - La Teste de Buche - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-20", + "note": "", + "source:date": "2021-05-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1472556, + 44.6109419 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "751468612", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - La Teste de Buche", + "ref:EU:EVSE": "FRZIME22AC61147", + "ref": "61147", + "name": "Intermarché - La Teste de Buche - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-20", + "note": "", + "source:date": "2021-05-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.210311, + 46.189385 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "339741381", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda - BOURG EN BRESSE", + "ref:EU:EVSE": "FRZMAE22AC50704", + "ref": "50704", + "name": "Mazda - Bourg en Bresse - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-05", + "note": "", + "source:date": "2021-01-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.210311, + 46.189385 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "339741381", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda - BOURG EN BRESSE", + "ref:EU:EVSE": "FRZMAE22AC50670", + "ref": "50670", + "name": "Mazda - Bourg en Bresse - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-05", + "note": "", + "source:date": "2021-01-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8959, + 48.9294 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "330117821", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "BMW", + "ref:EU:EVSE": "FRFR1EATXX1", + "ref": "FRFR1EATXX1", + "name": "BMW MAREIL LES MEAUX", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "", + "source:date": "2022-05-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.0880539, + 43.6023265 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "827876251", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA ANTIBES- NOVELLIPSE", + "ref:EU:EVSE": "FRZTLE22AC60012", + "ref": "60012", + "name": "Toyota - Antibes - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2021-04-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.0880539, + 43.6023265 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "827876251", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA ANTIBES- NOVELLIPSE", + "ref:EU:EVSE": "FRZTLE22AC60013", + "ref": "60013", + "name": "Toyota - Antibes - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2021-04-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.0880539, + 43.6023265 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "827876251", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA ANTIBES- NOVELLIPSE", + "ref:EU:EVSE": "FRZTLE22AC62872", + "ref": "62872", + "name": "Toyota - Antibes - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-14", + "note": "", + "source:date": "2021-06-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.0880539, + 43.6023265 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "827876251", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA ANTIBES- NOVELLIPSE", + "ref:EU:EVSE": "FRZTLE22AC62871", + "ref": "62871", + "name": "Toyota - Antibes - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-14", + "note": "", + "source:date": "2021-06-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14, + 45 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMELODGING11", + "ref": "edc67b91-db41-4aa1-bfa4-e3c2a885e0c1", + "name": "LODGING LE LAC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "DISPONIBLE 24/7", + "source:date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.8293749, + 48.5750142 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "444910418", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché MORLAIX - COMADU", + "ref:EU:EVSE": "FRZIME22AC47222", + "ref": "47222", + "name": "Intermarché - Morlaix - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-18", + "note": "", + "source:date": "2020-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43, + 48.37 + ] + }, + "properties": { + "operator": "Hôtel Restaurant Hubert Kieffer", + "owner:ref:FR:SIREN": "337877534", + "email": "jean-charles-kieffer@wanadoo.fr", + "phone": "0388855309", + "network": "Hôtel Restaurant Hubert Kieffer", + "ref:EU:EVSE": "Non concerné", + "ref": "2ed6b0ff-8e77-4c05-8b8b-5ba0d80e5677", + "name": "Parking de l'hôtel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-01", + "note": "", + "source:date": "2022-05-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.201547, + 43.6885902 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "827876251", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA NICE - NOVELLIPSE", + "ref:EU:EVSE": "FRZTLE24DC55361", + "ref": "55361", + "name": "Toyota - Nice - 24kW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-24", + "note": "", + "source:date": "2021-02-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.201547, + 43.6885902 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "827876251", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA NICE - NOVELLIPSE", + "ref:EU:EVSE": "FRZTLE22AC54738", + "ref": "54738", + "name": "Toyota - Nice - 22KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-17", + "note": "", + "source:date": "2021-02-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86859, + 45.91998 + ] + }, + "properties": { + "operator": "NM SECURELEC", + "owner:ref:FR:SIREN": "348002718", + "email": "infos@nmsecurelec.com", + "phone": "+33662651578", + "network": "Le Morgane", + "ref:EU:EVSE": "FRMAPP000000006798", + "ref": "0e5065cc-8847-4dfe-94dc-dc4aca52d2f1", + "name": "Hôtel le Morgane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-02", + "note": "Paiement par aplication mobile", + "source:date": "2022-05-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86859, + 45.91998 + ] + }, + "properties": { + "operator": "NM SECURELEC", + "owner:ref:FR:SIREN": "348002718", + "email": "infos@nmsecurelec.com", + "phone": "+33662651578", + "network": "Le Morgane", + "ref:EU:EVSE": "FRMAPP000000006798", + "ref": "0e5065cc-8847-4dfe-94dc-dc4aca52d2f1", + "name": "Hôtel le Morgane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-02", + "note": "Paiement par aplication mobile", + "source:date": "2022-05-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3319719, + 43.9905133 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "303217368", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ESPACE TOY MONTAUBAN", + "ref:EU:EVSE": "FRZTLE22AC61056", + "ref": "61056", + "name": "Toyota - Montauban - 22KW AC G ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-19", + "note": "", + "source:date": "2021-05-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3319719, + 43.9905133 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "303217368", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ESPACE TOY MONTAUBAN", + "ref:EU:EVSE": "FRZTLE22AC61046", + "ref": "61046", + "name": "Toyota - Montauban - 22KW AC G ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-19", + "note": "", + "source:date": "2021-05-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3319719, + 43.9905133 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "303217368", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ESPACE TOY MONTAUBAN", + "ref:EU:EVSE": "FRZTLE22AC61057", + "ref": "61057", + "name": "Toyota - Montauban - 22KW AC D ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-19", + "note": "", + "source:date": "2021-05-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3319719, + 43.9905133 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "303217368", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ESPACE TOY MONTAUBAN", + "ref:EU:EVSE": "FRZTLE22AC61047", + "ref": "61047", + "name": "Toyota - Montauban - 22KW AC D ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-19", + "note": "", + "source:date": "2021-05-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.147915, + 43.123458 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "397554791", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "INTERMARCHE HYERES - SADIP", + "ref:EU:EVSE": "FRZIME22AC95349", + "ref": "95349", + "name": "Intermarché - Hyères - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-18", + "note": "", + "source:date": "2020-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.147915, + 43.123458 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "397554791", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "INTERMARCHE HYERES - SADIP", + "ref:EU:EVSE": "FRZMAE22AC95344", + "ref": "95344", + "name": "Intermarché - Hyères - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-18", + "note": "", + "source:date": "2020-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.0497765, + 43.573139 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "424472298", + "email": "contacte@zeborne.com", + "phone": "0764573775", + "network": "Inter marché VALLAURIS", + "ref:EU:EVSE": "FRZIME22AC19518", + "ref": "19518", + "name": "Intermarché - Vallauris - 22kW AC", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-10-01", + "note": "RAS", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.759704, + 49.780879 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "330489261", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "INTERMARCHE GAUVILLE - BAUMAT", + "ref:EU:EVSE": "FRZIME22AC78036", + "ref": "78036", + "name": "Intermarché - Gauville - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-13", + "note": "", + "source:date": "2021-09-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.759704, + 49.780879 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "330489261", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "INTERMARCHE GAUVILLE - BAUMAT", + "ref:EU:EVSE": "FRZIME22AC78037", + "ref": "78037", + "name": " Intermarché - Gauville - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-13", + "note": "", + "source:date": "2021-09-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.519401, + 43.28532 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMELACLAPE11", + "ref": "f1be318f-a242-42a9-ad6e-73d6cd386179", + "name": "LACLAPE CAMPING", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-01", + "note": "24/7", + "source:date": "2022-06-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86, + 46.22 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEVALSERINE1", + "ref": "3c260145-276e-492d-82fd-bed3fda057ba", + "name": "Camping le Valserine", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-01", + "note": "24/7", + "source:date": "2022-06-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.3800762, + 47.7717847 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "402343842", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda MULHOUSE - LIGNE BLEUE AUTOMOBILES", + "ref:EU:EVSE": "FRZMAE22AC49701", + "ref": "49701", + "name": "Mazda - Mulhouse (Illzach) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-04", + "note": "", + "source:date": "2020-12-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.526, + 48.8227 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "348714403", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "BMW", + "ref:EU:EVSE": "FRFR1EDWYQ1", + "ref": "FRFR1EDWYQ1", + "name": "BMW GRANVILLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-19", + "note": "", + "source:date": "2022-05-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.21, + 45.84 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEHOTELLAC749201", + "ref": "4166dccb-868f-48a1-b068-a79728964816", + "name": "Hôtel du Lac 74290 ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-02", + "note": "24/7", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6709003, + 45.5432207 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "411793177", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "BRICOMARCHE NONTRON - S.A.S PERIVERT", + "ref:EU:EVSE": "FRZIME22AC76648", + "ref": "76648", + "name": " Bricomarché - Nontron - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2021-09-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6709003, + 45.5432207 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "411793177", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "BRICOMARCHE NONTRON - S.A.S PERIVERT", + "ref:EU:EVSE": "FRZIME22AC76647", + "ref": "76647", + "name": "Bricomarché - Nontron - 22kW AC", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2021-09-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.24, + 44.48 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEHOTELCEDRES11", + "ref": "6bff49ea-eb46-4ce7-82be-c6aa678247da", + "name": "Hôtel les Cèdres 07260 ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "24/7", + "source:date": "2022-06-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2592028, + 46.1746523 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "435088919", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA MONTAGNAT - DJB BOURG", + "ref:EU:EVSE": "FRZTLE22AC57333", + "ref": "57333", + "name": " Toyota - Montagnat - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2021-04-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2592028, + 46.1746523 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "435088919", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA MONTAGNAT - DJB BOURG", + "ref:EU:EVSE": "FRZTLE22AC57332", + "ref": "57332", + "name": "Toyota - Montagnat - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2021-04-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2592028, + 46.1746523 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "435088919", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA MONTAGNAT - DJB BOURG", + "ref:EU:EVSE": "FRZTLE22AC57334", + "ref": "57334", + "name": "Toyota - Montagnat - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2021-04-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2592028, + 46.1746523 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "435088919", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA MONTAGNAT - DJB BOURG", + "ref:EU:EVSE": "FRZTLE22AC57335", + "ref": "57335", + "name": "Toyota - Montagnat - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2021-04-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7461104, + 45.17941688 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "338385685", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA PERIGUEUX - MAGOT CAVARD", + "ref:EU:EVSE": "FRZTLE22AC131525", + "ref": "131525", + "name": "Toyota - Périgueux - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-11", + "note": "", + "source:date": "2022-05-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7461104, + 45.17941688 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "338385685", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA PERIGUEUX - MAGOT CAVARD ", + "ref:EU:EVSE": "FRZTLE22AC131524", + "ref": "131524", + "name": "Toyota - Périgueux - 22kW AC \t", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-11", + "note": "", + "source:date": "2022-05-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7461104, + 45.17941688 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "338385685", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA PERIGUEUX - MAGOT CAVARD", + "ref:EU:EVSE": "FRZTLE22AC131517", + "ref": "131517", + "name": "Toyota - Périgueux - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-11", + "note": "", + "source:date": "2022-05-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7461104, + 45.17941688 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "338385685", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA PERIGUEUX - MAGOT CAVARD", + "ref:EU:EVSE": "FRZTLE22AC131516", + "ref": "131516", + "name": "Toyota - Périgueux - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-11", + "note": "", + "source:date": "2022-05-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.065799, + 47.354481 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "307016121", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GARAGE NELLO CHELLI - DIJON", + "ref:EU:EVSE": "FRZTLE22AC55087", + "ref": "55087", + "name": "Toyota - Dijon - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-19", + "note": "", + "source:date": "2021-02-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.065799, + 47.354481 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "307016121", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GARAGE NELLO CHELLI - DIJON", + "ref:EU:EVSE": "FRZTLE22AC55086", + "ref": "55086", + "name": "Toyota - Dijon - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-19", + "note": "", + "source:date": "2021-02-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86082418, + 47.0236522 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "307016121", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GARAGE NELLO CHELI - BEAUNE", + "ref:EU:EVSE": "FRZTLE24DC61319", + "ref": "61319", + "name": "Toyota - Beaune - 24kW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-24", + "note": "", + "source:date": "2021-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86082418, + 47.0236522 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "307016121", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GARAGE NELLO CHELI - BEAUNE", + "ref:EU:EVSE": "FRZTLE24DC61318", + "ref": "61318", + "name": "Toyota - Beaune - 24kW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-24", + "note": "", + "source:date": "2021-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2174783, + 46.1858677 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "796680668", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA ANNEMASSE - DEGENEVE", + "ref:EU:EVSE": "FRZTLE22AC57830", + "ref": "57830", + "name": "Toyota - Annemasse - 22kW AC G ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2021-04-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2174783, + 46.1858677 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "796680668", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA ANNEMASSE - DEGENEVE", + "ref:EU:EVSE": "FRZTLE22AC57831", + "ref": "57831", + "name": "Toyota - Annemasse - 22kW AC D ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2021-04-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2174783, + 46.1858677 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "796680668", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA ANNEMASSE - DEGENEVE", + "ref:EU:EVSE": "FRZTLE22AC60302", + "ref": "60302", + "name": "Toyota - Annemasse - 22kW AC D ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-04", + "note": "", + "source:date": "2021-05-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2174783, + 46.1858677 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "796680668", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA ANNEMASSE - DEGENEVE", + "ref:EU:EVSE": "FRZTLE24DC63446", + "ref": "63446", + "name": "Toyota - Annemasse - 24kW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-16", + "note": "", + "source:date": "2021-06-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2174783, + 46.1858677 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "796680668", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA ANNEMASSE - DEGENEVE", + "ref:EU:EVSE": "FRZTLE22AC60301", + "ref": "60301", + "name": "Toyota - Annemasse - 22kW AC G ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-04", + "note": "", + "source:date": "2021-05-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1393838, + 49.2819168 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "429354541", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "CAMPING LA POMMERAIE", + "ref:EU:EVSE": "FRZPEE24DC57509", + "ref": "57509", + "name": "Camping La Pommeraie - Cabourg - 24kW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2021-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1393838, + 49.2819168 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "429354541", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "CAMPING LA POMMERAIE", + "ref:EU:EVSE": "FRZPEE22AC57510", + "ref": "57510", + "name": "Camping La Pommeraie - Cabourg - 24kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2021-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0901155, + 43.822462 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "378536593", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ITM RIEZ - DALILAS", + "ref:EU:EVSE": "FRZIME22AC77768", + "ref": "77768", + "name": "Intermarché - Riez - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-09", + "note": "", + "source:date": "2021-09-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0901155, + 43.822462 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "378536593", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ITM RIEZ - DALILAS", + "ref:EU:EVSE": "FRZIME22AC77767", + "ref": "77767", + "name": "Intermarché - Riez - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-09", + "note": "", + "source:date": "2021-09-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16, + 46.14 + ] + }, + "properties": { + "operator": "ChargePoint", + "owner:ref:FR:SIREN": "775753148", + "email": "support.eu@chargepoint.com", + "phone": "01 85 65 04 49", + "network": "ChargePoint Network", + "ref:EU:EVSE": "FRCPIE6600025", + "ref": "FRCPIE6600025", + "name": "Parking Weidner Station 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-01", + "note": "", + "source:date": "2022-06-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.029971, + 45.210931 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "480819705", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "INTERMARCHE - RETOURNAC", + "ref:EU:EVSE": "FRZIME22AC70164", + "ref": "70164", + "name": "Intermarché - Retournac - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-30", + "note": "", + "source:date": "2021-08-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.029971, + 45.210931 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "480819705", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "INTERMARCHE - RETOURNAC", + "ref:EU:EVSE": "FRZIME22AC70163", + "ref": "70163", + "name": " Intermarché - Retournac - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-30", + "note": "", + "source:date": "2021-08-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.012564, + 43.576079 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "315044321", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA LE CANNET - STAR AUTO", + "ref:EU:EVSE": "FRZTLE22AC66599", + "ref": "66599", + "name": "Toyota - Le Cannet - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-22", + "note": "", + "source:date": "2021-07-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.012564, + 43.576079 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "315044321", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA LE CANNET - STAR AUTO", + "ref:EU:EVSE": "FRZTLE22AC66598", + "ref": "66598", + "name": "Toyota - Le Cannet - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-22", + "note": "", + "source:date": "2021-07-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.012564, + 43.576079 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "315044321", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA LE CANNET - STAR AUTO", + "ref:EU:EVSE": "FRZTLE24DC53268", + "ref": "53268", + "name": "Toyota - Le Cannet - 24kW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-05", + "note": "", + "source:date": "2021-02-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5263958, + 43.4252619 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "813846359", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "IPARRA", + "ref:EU:EVSE": "FRZPEE74AC127538", + "ref": "127538", + "name": "IPARRA - Arcangues - 7kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-18", + "note": "", + "source:date": "2020-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5922295, + 49.0396456 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "401802087", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché Freneuse - CASTEL", + "ref:EU:EVSE": "FRZIME22AC59777", + "ref": "59777", + "name": "Intermarché - Freneuse - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2021-04-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5922295, + 49.0396456 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "401802087", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché Freneuse - CASTEL", + "ref:EU:EVSE": "FRZIME22AC59778", + "ref": "59778", + "name": "Intermarché - Freneuse - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2021-04-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.417247, + 46.644182 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "328582713", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MGMI", + "ref:EU:EVSE": "FRZPEE22AC128521", + "ref": "128521", + "name": "MGMI - La Roche sur Yon - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-12", + "note": "", + "source:date": "2022-04-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1756309, + 50.6884145 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "SEPTENTRION FINANCES", + "ref:EU:EVSE": "Non concerné", + "ref": "792b3fe0-4923-4dea-863e-99e9ee01aaa4", + "name": "SEPTENTRION FINANCES", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-13", + "note": "", + "source:date": "2022-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1521191, + 50.7065043 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "ORSINI CONSEIL", + "ref:EU:EVSE": "Non concerné", + "ref": "a191b56a-3e02-4cd5-86f9-5349a8cc4095", + "name": "ORSINI CONSEIL", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-16", + "note": "", + "source:date": "2022-05-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6746938, + 44.838434799999 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DLM BORDEAUX", + "ref:EU:EVSE": "Non concerné", + "ref": "3dd0bb09-bcbb-4fb0-a189-a95be7c3a01e", + "name": "DLM BORDEAUX", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-18", + "note": "", + "source:date": "2022-03-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1357063, + 47.2277788 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "057202046", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Ford - Saumur", + "ref:EU:EVSE": "FRZPEE22AC31929", + "ref": "31929", + "name": "Ford - Saumur - 22KW ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-03-04", + "note": "", + "source:date": "2020-03-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4612672413424779, + 49.33620273281156 + ] + }, + "properties": { + "operator": "EVERON", + "owner:ref:FR:SIREN": "440967651", + "email": "frsupport@ev-box.com", + "phone": "0141447047", + "network": "CENTRE JUNO BEACH", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2003727", + "name": "CENTRE JUNO BEACH", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-19", + "note": "Ouverture du site 7/7 jours de 10h00 à 17h00 hors 25 décembre et 1 janvier", + "source:date": "2022-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.494583, + 49.105377 + ] + }, + "properties": { + "operator": "M. Yannick PIERRE", + "owner:ref:FR:SIREN": "903227221", + "email": "frsupport@ev-box.com", + "phone": "0141447047", + "network": "EVERON ", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2011337", + "name": "LA MEULE DE PIERRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-15", + "note": "Ouverture du site du lundi au samedi de 06h00 à 20h00 hors dimanche fermé", + "source:date": "2022-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4612672413424779, + 49.33620273281156 + ] + }, + "properties": { + "operator": "EVERON", + "owner:ref:FR:SIREN": "440967651", + "email": "frsupport@ev-box.com", + "phone": "0141447047", + "network": "EVBOX", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2003727", + "name": "CENTRE JUNO BEACH", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-19", + "note": "Ouverture du site 7/7 jours de 10h00 à 17h00 hors 25 décembre et 1 janvier", + "source:date": "2022-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0622478, + 46.3266042 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "393617964", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda GEX - GARAGE DAGO", + "ref:EU:EVSE": "FRZMAE22AC50643", + "ref": "50643", + "name": "Mazda - GEX-Cessy - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-05", + "note": "", + "source:date": "2021-01-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0622478, + 46.3266042 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "393617964", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda GEX - GARAGE DAGO", + "ref:EU:EVSE": "FRZMAE22AC50651", + "ref": "50651", + "name": "Mazda - GEX-Cessy - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-05", + "note": "", + "source:date": "2021-01-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3372150061411605, + 49.22868351448894 + ] + }, + "properties": { + "operator": "EVERON", + "owner:ref:FR:SIREN": "848595880", + "email": "frsupport@ev-box.com", + "phone": "0141447047", + "network": "EVBOX", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1941007", + "name": "GOLF DE CAEN", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-01", + "note": "Recharge 24/24h 7/7j", + "source:date": "2022-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8501, + 44.97406 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "349429472", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "INTERMARCHE ALTILLAC", + "ref:EU:EVSE": "FRZIME22AC126136", + "ref": "126136", + "name": " INTERMARCHE ALTILLAC - 22 KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2021-09-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8501, + 44.97406 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "349429472", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "INTERMARCHE ALTILLAC ", + "ref:EU:EVSE": "FRZIME22AC81447", + "ref": "81447", + "name": "INTERMARCHE ALTILLAC - 22 KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-01", + "note": "", + "source:date": "2021-10-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6180124, + 50.2224538 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "CAMPING DE LA FERME DE MAYOCQ", + "ref:EU:EVSE": "Non concerné", + "ref": "caebd814-5cd7-4b55-a36e-c51fd5517e5f", + "name": "CAMPING DE LA FERME DE MAYOCQ", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.12, + 43.87 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEDOMAINEDESPEYRE11", + "ref": "51461466-c696-4bed-b274-0fa399784d92", + "name": "DOMAINE DES PEYRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-19", + "note": "24/7", + "source:date": "2022-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.91, + 43.9 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMELAGRANDEBASTIDE11", + "ref": "42aad73a-f081-48e8-a262-1d57eee1da24", + "name": "LA GRANDE BASTIDE ", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-19", + "note": "24/7", + "source:date": "2022-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.263081045755, + 45.633753981745 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "382547677", + "email": "contact@indigo-proprete.fr", + "phone": "", + "network": "INDIGO PROPRETE", + "ref:EU:EVSE": "FRE000014786885", + "ref": "", + "name": "INIGO PROPRETE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-20", + "note": "", + "source:date": "2022-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.157229, + 50.716487 + ] + }, + "properties": { + "operator": "Ramsay Pole Lille métropole", + "owner:ref:FR:SIREN": "419992706", + "email": "contact@ramsaygds.fr", + "phone": "0359758758", + "network": "Clinique de la victoire", + "ref:EU:EVSE": "Non concerné", + "ref": "SDFRRAMSAYVIC", + "name": "Clinique de la Victoire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "Paiement avec le stationnement du parking (Charge + Parking) en caisse ou en sortie", + "source:date": "2022-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0737222, + 43.7274444 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "324104935", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Saint-Paul les Dax", + "ref:EU:EVSE": "FRZIME22AC71607", + "ref": "71607", + "name": "[43.72744440,-1.07372220]", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2021-09-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0737222, + 43.7274444 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "324104935", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Saint-Paul les Dax", + "ref:EU:EVSE": "FRZIME22AC71572", + "ref": "71572", + "name": "Intermarché - Saint-Paul les Dax - 22kw AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2021-09-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0737222, + 43.7274444 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "324104935", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Saint-Paul les Dax", + "ref:EU:EVSE": "FRZIME22AC118367", + "ref": "118367", + "name": " Intermarché - Saint-Paul les Dax - 22kw AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2022-02-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0737222, + 43.7274444 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "324104935", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Saint-Paul les Dax", + "ref:EU:EVSE": "FRZIME22AC118370", + "ref": "118370", + "name": "Intermarché - Saint-Paul les Dax - 22kw AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-18", + "note": "", + "source:date": "2020-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4182742, + 43.8834392 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "CAMPING MAS FLEURI", + "ref:EU:EVSE": "Non concerné", + "ref": "d72e5b17-a2e4-4a6c-bdbe-2840378c2131", + "name": "CAMPING MAS FLEURI", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-30", + "note": "", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37, + 43.82 + ] + }, + "properties": { + "operator": "M.A.J.U.", + "owner:ref:FR:SIREN": "802608372", + "email": "bureau@jerome-nutile.com", + "phone": "0466406565", + "network": "Restaurant Jérôme Nutile", + "ref:EU:EVSE": "Non concerné", + "ref": "8aec152b-584e-4139-87e6-f1994652ab40", + "name": "Borne Restaurant Gastronomique Jérôme Nutile", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-31", + "note": "Recharge accessible aux clients du Restaurant Gastronomique Jérôme Nutile", + "source:date": "2022-07-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.841263, + 50.689838 + ] + }, + "properties": { + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "502097868", + "email": "sales@electromaps.com", + "phone": "034931574967", + "network": "Le COTONNIER NIEPPE", + "ref:EU:EVSE": "FRMAPP000000006391", + "ref": "da1f45f8-082b-11ed-861d-0242ac120002", + "name": "Nieppe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-09", + "note": "5€ par charge. La charge est offerte (5€) à partir de 50€ d’achat dans notre magasin Le Cotonnier Nieppe, dans la journée de la charge sur présentation du justificatif (écran application, facture numérique), remise immédiate sur ticket.", + "source:date": "2022-07-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243401, + 45.591954 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "477827653", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "A.V.D. - MAZDA BOURGOIN JALLIEU", + "ref:EU:EVSE": "FRZMAE22AC49847", + "ref": "49847", + "name": "Mazda - Bourgoin-Jallieu - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-08", + "note": "", + "source:date": "2020-12-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2026184999999, + 50.1754619 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DESENFANS CAMBRAI", + "ref:EU:EVSE": "Non concerné", + "ref": "a2a817ee-668f-47bd-9b69-1e0a894ae406", + "name": "DESENFANS CAMBRAI", + "capacity": "6", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-27", + "note": "", + "source:date": "2022-04-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.325962, + 46.1798642 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "390599611", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "BRICOMARCHE RHEALYS - LA FLOTTE EN RE", + "ref:EU:EVSE": "FRZIME22AC129087", + "ref": "129087", + "name": " Bricomarché - La Flotte en Ré - 22 KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-18", + "note": "", + "source:date": "2020-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.325962, + 46.1798642 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "390599611", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "BRICOMARCHE RHEALYS - LA FLOTTE EN RE", + "ref:EU:EVSE": "FRZIME22AC129086", + "ref": "129086", + "name": "Bricomarché - La Flotte en Ré - 22 KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-18", + "note": "", + "source:date": "2020-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.797441, + 45.776709 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "968504480", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ELITE MOTORS - MAZDA LYON NORD", + "ref:EU:EVSE": "FRZMAE22AC50776", + "ref": "50776", + "name": "Mazda - Lyon Nord - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-06", + "note": "", + "source:date": "2021-01-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0793613022707724, + 49.04113387118815 + ] + }, + "properties": { + "operator": "SDC ORDINAL", + "owner:ref:FR:SIREN": "038893756", + "email": "contact@secal-electricite.fr", + "phone": "0134201124", + "network": "SDC ORDINAL", + "ref:EU:EVSE": "Non concerné", + "ref": "P2003640", + "name": "ORDINAL", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-07", + "note": "", + "source:date": "2022-07-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.031726083467107, + 49.051990901751864 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "377956636", + "email": "contact@secal-electricite.fr", + "phone": "0134201124", + "network": "SDC CONSTELLATION", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1950844", + "name": "SDC CONSTELLATION", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-03-20", + "note": "", + "source:date": "2022-08-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.923877087310788, + 49.08592862729444 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "833914799", + "email": "contact@secal-electricite.fr", + "phone": "0134201124", + "network": "Campus Vigny", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2011264", + "name": "Campus Vigny", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4969902, + 49.0483698 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "489800680", + "email": "Contact@secal-electricite.fr", + "phone": "0134201124", + "network": "DEGRES CELCIUS", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2020196", + "name": "DEGRES CELCIUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-01-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8208158, + 45.7100001 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "835032848", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GL AUTOMOTIVE", + "ref:EU:EVSE": "FRZPEE22AC89152", + "ref": "89152", + "name": "GL Automotive - Oullins - 22 kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-05", + "note": "", + "source:date": "2021-11-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.871622, + 45.719162 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "968504480", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda Lyon Sud", + "ref:EU:EVSE": "FRZMAE22AC49605", + "ref": "49605", + "name": "Mazda - Venissieux Lyon Sud - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-03", + "note": "", + "source:date": "2020-12-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1891329694156174, + 47.407691498712914 + ] + }, + "properties": { + "operator": "AUTORECHARGE ", + "owner:ref:FR:SIREN": "897638383", + "email": "contact@autorecharge.Fr", + "phone": "0970755400", + "network": "Réseau de charge AUTORECHARGE", + "ref:EU:EVSE": "FRAU1E0031011", + "ref": "039ba96d-7e11-4dd7-be8c-5a57279ba65f", + "name": "IMORIZON ANCENIS - MERMOZ 2 ANCENIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11003453009083, + 46.81020598702974 + ] + }, + "properties": { + "operator": "AUTORECHARGE", + "owner:ref:FR:SIREN": "388179236", + "email": "contact@autorecharge.fr", + "phone": "0970755400", + "network": "Réseau de charge Camping Les Places Dorées", + "ref:EU:EVSE": "FRAU1E0030011", + "ref": "d4d72f69-26a7-4db7-8429-7cdc0f59ae93", + "name": "Camping Les Places Dorées - 85160 Saint-Jean-de-Monts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-21", + "note": "", + "source:date": "2022-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82, + 47.88 + ] + }, + "properties": { + "operator": "TISSERANT", + "owner:ref:FR:SIREN": "843336207", + "email": "WILFRIED@HOVE.FR", + "phone": "0673679201", + "network": "TISSERANT", + "ref:EU:EVSE": "Non concerné", + "ref": "3ab41450-fa76-4583-842f-4841b4ef42d8", + "name": "TISSERANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-22", + "note": "", + "source:date": "2022-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5, + 47.93 + ] + }, + "properties": { + "operator": "jmd", + "owner:ref:FR:SIREN": "803191147", + "email": "ggepetitjeanjmd@orange.fr", + "phone": "0329665414", + "network": "JMD", + "ref:EU:EVSE": "Non concerné", + "ref": "b6ce4915-9f15-4241-9c97-08f3468dae4c", + "name": "JMD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-11", + "note": "", + "source:date": "2022-07-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47419, + 48.427342 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "780096376", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "CENTRAL AUTO - MAZDA BREST", + "ref:EU:EVSE": "FRZMAE22AC49575", + "ref": "49575", + "name": "Mazda - Brest - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-03", + "note": "", + "source:date": "2020-12-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47419, + 48.427342 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "780096376", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "CENTRAL AUTO - MAZDA BREST", + "ref:EU:EVSE": "FRZMAE22AC49544", + "ref": "49544", + "name": "Mazda - Brest - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-03", + "note": "", + "source:date": "2020-12-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95, + 43.57 + ] + }, + "properties": { + "operator": "Provibat", + "owner:ref:FR:SIREN": "339106783", + "email": "p.calcei@gmail.com", + "phone": "0618922599", + "network": "Provibat", + "ref:EU:EVSE": "Non concerné", + "ref": "77d4547d-1848-4fbe-8882-04fdbaac3f6b", + "name": "Provibat, Pérols", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-21", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'enseigne", + "source:date": "2022-07-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.338526, + 43.814852 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "421659764", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MAZDA NIMES ", + "ref:EU:EVSE": "FRZMAE22AC49683", + "ref": "49683", + "name": "Mazda - Nîmes - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-04", + "note": "", + "source:date": "2020-12-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9, + 44.12 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMELIBERATION11", + "ref": "4568bb01-f18a-4013-93b0-aa196cb6e8b2", + "name": "GARAGE LAROSA", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-06", + "note": "24/7", + "source:date": "2022-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5258151, + 51.071259299999 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "MAIRIE DE BRAY DUNES", + "ref:EU:EVSE": "Non concerné", + "ref": "e5aeda40-da1f-4240-a0d4-6ef60efa5a28", + "name": "MAIRIE DE BRAY DUNES", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-29", + "note": "", + "source:date": "2022-06-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568217899999, + 44.8856271 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "SAS CIGIMMO", + "ref:EU:EVSE": "Non concerné", + "ref": "4bc7d179-75e2-413a-9eee-54d9ec0cb00b", + "name": "SAS CIGIMMO", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-07", + "note": "", + "source:date": "2022-06-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8505335, + 50.2733386 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "SARL GRARE", + "ref:EU:EVSE": "Non concerné", + "ref": "aeefa47a-507e-47db-9c3f-a4ea1316dc1d", + "name": "SARL GRARE", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-30", + "note": "", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6032602, + 50.3941188 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "3MI", + "ref:EU:EVSE": "Non concerné", + "ref": "c1cfd29b-d13c-4ffd-a556-aa77d5438876", + "name": "3MI", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-25", + "note": "", + "source:date": "2022-05-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.38, + 49.29 + ] + }, + "properties": { + "operator": "SARL BEAUDRE BAUDOT", + "owner:ref:FR:SIREN": "485169692", + "email": "gohel.stephane@orange.fr", + "phone": "0231360606", + "network": "SECURITEST", + "ref:EU:EVSE": "Non concerné", + "ref": "fr*map*e000014961534", + "name": "BORNE SECURITEST, DOUVRES LA DELIVRANDE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-22", + "note": "HORAIRES D'OUVERTURES DE L'AGENCE LUNDI AU SAMEDI DE 08:45-12:15, 13:45-18:30,", + "source:date": "2022-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7417018, + 44.52534544 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "511748881", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "DPA -MAZDA MONTELIMAR", + "ref:EU:EVSE": "FRZMAE22AC60127", + "ref": "60127", + "name": "Mazda - Montelimar- 22KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2021-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.269016, + 45.868052 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "394083984", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ZEN & MOTION - MAZDA LIMOGES", + "ref:EU:EVSE": "FRZMAE22AC49597", + "ref": "49597", + "name": "Mazda - Limoges - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-03", + "note": "", + "source:date": "2020-12-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.269016, + 45.868052 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "394083984", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ZEN & MOTION - MAZDA LIMOGES", + "ref:EU:EVSE": "FRZMAE22AC135128", + "ref": "135128", + "name": "Mazda - Limoges - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-30", + "note": "", + "source:date": "2022-05-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2914635, + 43.7346869 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "NOVAFFAIRES", + "ref:EU:EVSE": "Non concerné", + "ref": "16a2b325-a56b-47f6-a647-76b2313b8506", + "name": "NOVAFFAIRES", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-02", + "note": "", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1188297, + 50.3450779 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "CUISINES SCHMIDT", + "ref:EU:EVSE": "Non concerné", + "ref": "f1881994-3c6b-4596-9c91-5105129072b9", + "name": "CUISINES SCHMIDT", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-02", + "note": "", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.679598, + 45.191796 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "400447710", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ALESSANDRIA AUTOS - MAZDA GRENOBLE", + "ref:EU:EVSE": "FRZMAE22AC49521", + "ref": "49521", + "name": "Mazda - Grenoble (Fontaine) Gauche - 22kW ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-02", + "note": "", + "source:date": "2020-12-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.679598, + 45.191796 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "400447710", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ALESSANDRIA AUTOS - MAZDA GRENOBLE", + "ref:EU:EVSE": "FRZMAE22AC49590", + "ref": "49590", + "name": "Mazda - Grenoble (Fontaine) Droite- 22kW", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-03", + "note": "", + "source:date": "2020-12-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6060341, + 48.697317 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "785550138", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda BRIE COMTE ROBERT - ZELUS AUTOMOBILES ", + "ref:EU:EVSE": "FRZMAE22AC49577", + "ref": "49577", + "name": "Mazda - Brie Comte Robert - 22KW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-03", + "note": "", + "source:date": "2020-12-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8932515, + 47.6515701 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "401060496", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SIRUFO ESSERT - MAZDA BELFORT ", + "ref:EU:EVSE": "FRZMAE22AC49591", + "ref": "49591", + "name": " Mazda - Belfort Denney - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-03", + "note": "", + "source:date": "2020-12-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.412921, + 48.147118 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "378183818", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SuperU - Evron", + "ref:EU:EVSE": "FRZSUE74AC16993", + "ref": "16993", + "name": "SuperU - Evron - 7.4kW ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-03-13", + "note": "", + "source:date": "2019-03-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.412921, + 48.147118 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "378183818", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SuperU - Evron", + "ref:EU:EVSE": "FRZSUE74AC16992", + "ref": "16992", + "name": "SuperU - Evron - 7.4kW ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-03-13", + "note": "", + "source:date": "2019-03-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.412921, + 48.147118 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "378183818", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SuperU - Evron", + "ref:EU:EVSE": "FRZSUE74AC16987", + "ref": "16987", + "name": "SuperU - Evron - 7.4kW ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-03-13", + "note": "", + "source:date": "2019-03-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.412921, + 48.147118 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "378183818", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SuperU - Evron", + "ref:EU:EVSE": "FRZSUE74AC16986", + "ref": "16986", + "name": "SuperU - Evron - 7.4kW ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-03-13", + "note": "", + "source:date": "2019-03-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.72, + 45.51 + ] + }, + "properties": { + "operator": "Société Sigma Tec", + "owner:ref:FR:SIREN": "487923724", + "email": "contact@sigma-tec.fr", + "phone": "0681375294", + "network": "Sigma Tec", + "ref:EU:EVSE": "Non concerné", + "ref": "cf782f10-bbbb-4e11-a7ed-083cc0459cd7", + "name": "Borne-Garage-Rossi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-24", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du garage", + "source:date": "2022-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.630679, + 43.108445 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "384794418", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA - Village Auto", + "ref:EU:EVSE": "FRZKAE24DC36716", + "ref": "36716", + "name": " KIA - Village Auto (Pamiers) - 24 kW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-08-01", + "note": "", + "source:date": "2020-08-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.630679, + 43.108445 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "384794418", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA - Village Auto", + "ref:EU:EVSE": "FRZKAE22AC36717", + "ref": "36717", + "name": "KIA - Village Auto (Pamiers) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-08-01", + "note": "", + "source:date": "2020-08-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.865277, + 46.858488 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "349542977", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Bricomarché - Challans", + "ref:EU:EVSE": "FRZIME22AC19827", + "ref": "19827", + "name": " Bricomarché - Challans - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-06-25", + "note": "", + "source:date": "2019-06-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.865277, + 46.858488 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "349542977", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Bricomarché - Challans", + "ref:EU:EVSE": "FRZIME22AC19826", + "ref": "19826", + "name": "Bricomarché - Challans - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-06-25", + "note": "", + "source:date": "2019-06-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9023407, + 49.1824605 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "420023616", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda REIMS - A.F.L", + "ref:EU:EVSE": "FRZMAE22AC56424", + "ref": "56424", + "name": "Mazda - Reims - 22KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-19", + "note": "", + "source:date": "2021-03-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9023407, + 49.1824605 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "420023616", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda REIMS - A.F.L", + "ref:EU:EVSE": "FRZMAE22AC56423", + "ref": "56423", + "name": "Mazda - Reims - 22KW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-19", + "note": "", + "source:date": "2021-03-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12813301, + 45.759645 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "398027235", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché La Tremblade", + "ref:EU:EVSE": "FRZIME22AC89540", + "ref": "89540", + "name": "Intermarché - La Tremblade - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-10", + "note": "", + "source:date": "2021-11-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12813301, + 45.759645 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "398027235", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché La Tremblade", + "ref:EU:EVSE": "FRZIME22AC89539", + "ref": "89539", + "name": "Intermarché - La Tremblade - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-10", + "note": "", + "source:date": "2021-11-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12813301, + 45.759645 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "398027235", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché La Tremblade", + "ref:EU:EVSE": "FRZIME22AC70279", + "ref": "70279", + "name": "Intermarché - La Tremblade - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-31", + "note": "", + "source:date": "2021-08-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12813301, + 45.759645 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "398027235", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché La Tremblade", + "ref:EU:EVSE": "FRZIME22AC70278", + "ref": "70278", + "name": "Intermarché - La Tremblade - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-31", + "note": "", + "source:date": "2021-08-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65, + 45.91 + ] + }, + "properties": { + "operator": "Electromaps", + "owner:ref:FR:SIREN": "377922208", + "email": "support@electromaps.com", + "phone": "0034931574967", + "network": "Favret Automobiles", + "ref:EU:EVSE": "FRMAPP000000006623", + "ref": "", + "name": "Favret Automobiles", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.586281, + 48.115374 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "530271162", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda - Rennes ", + "ref:EU:EVSE": "FRZMAE22AC50782", + "ref": "50782", + "name": " Mazda - Rennes - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-06", + "note": "", + "source:date": "2021-01-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1454473, + 50.6428226 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "RESTAURANT L'OFFICE", + "ref:EU:EVSE": "Non concerné", + "ref": "57ae7437-9d11-4de7-991b-04d0113271db", + "name": "RESTAURANT L'OFFICE", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-13", + "note": "", + "source:date": "2022-05-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35, + 43.62 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEVALMOUREZE11", + "ref": "325f41d9-7c4a-48ee-9a78-90eb82731102", + "name": "AUBERGE DE VAL MOUREZE ", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "24/7", + "source:date": "2022-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.94, + 44.01 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEHOTELPARCAVIGNON11", + "ref": "d6f56ed3-1f68-4edd-880f-2410bc766baa", + "name": "HOTEL DU PARC AVIGNON EST ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "24/7", + "source:date": "2022-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7093627, + 49.7380567 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "394452973", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "BMW", + "ref:EU:EVSE": "FRFR1EWRWA1", + "ref": "FRFR1EWRWA1", + "name": "BMW CHARLEVILLE MEZIERES", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "", + "source:date": "2022-07-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.44, + 46.35 + ] + }, + "properties": { + "operator": "Electromaps", + "owner:ref:FR:SIREN": "377922208", + "email": "support@electromaps.com", + "phone": "0034931574967", + "network": "Favret Automobiles", + "ref:EU:EVSE": "FRMAPP000000006666", + "ref": "", + "name": "Favret Automobiles", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "Recharge durant les horaires d'ouverture du magasin", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1653782, + 43.96015 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "533577581", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "HYUNDAI", + "ref:EU:EVSE": "FRFR1EFGBG1", + "ref": "FRFR1EFGBG1", + "name": "HYUNDAI LESCURE ALBIGEOIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "", + "source:date": "2022-07-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3932432, + 48.9479326 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "394452973", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "BMW", + "ref:EU:EVSE": "FRFR1EMWPZ1", + "ref": "FRFR1EMWPZ1", + "name": "BPW CHALONS EN CHAMPAGNE", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "", + "source:date": "2022-07-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8647466, + 45.644607 + ] + }, + "properties": { + "operator": "SNER RHONE-ALPES", + "owner:ref:FR:SIREN": "907612352", + "email": "b.pajou@sner-ra.fr", + "phone": "0472904173", + "network": "GMK Motorsport", + "ref:EU:EVSE": "FREVMPUVG0D07005", + "ref": "UVG0D07005", + "name": "GMK Motorsport", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "11", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0697451419812665, + 50.66179854122704 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau e-Totem Infrastructures", + "ref:EU:EVSE": "FRETIP59368A", + "ref": "FRETIP59368A", + "name": "SUPER U La Madeleine", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128751", + "ref": "128751", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128766", + "ref": "128766", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128710", + "ref": "128710", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128711", + "ref": "128711", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128703", + "ref": "128703", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128704", + "ref": "128704", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128712", + "ref": "128712", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128713", + "ref": "128713", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128752", + "ref": "128752", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128787", + "ref": "128787", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128765", + "ref": "128765", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128774", + "ref": "128774", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128773", + "ref": "128773", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128758", + "ref": "128758", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128757", + "ref": "128757", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128790", + "ref": "128790", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128789", + "ref": "128789", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128788", + "ref": "128788", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE161582", + "ref": "E161582", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-26", + "note": "", + "source:date": "2022-10-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128770", + "ref": "128770", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE22AC128771", + "ref": "128771", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref:EU:EVSE": "FRZTLE161583", + "ref": "E161583", + "name": "Toyota - Cergy Eragny (GCA) - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-26", + "note": "", + "source:date": "2022-10-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4, + 47.59 + ] + }, + "properties": { + "operator": "Chargepoint", + "owner:ref:FR:SIREN": "877380394", + "email": "support.eu@chargepoint.com", + "phone": "0185650449", + "network": "Chargepoint", + "ref:EU:EVSE": "FRCPIE67123751", + "ref": "f566c0dd-5e8a-4911-b620-a1e97770e222", + "name": "BRANFERE, LE GUERNO", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-03", + "note": "", + "source:date": "2023-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.47, + 43.45 + ] + }, + "properties": { + "operator": "Chargepoint", + "owner:ref:FR:SIREN": "451070197", + "email": "support.eu@chargepoint.com", + "phone": "01 85 65 78 78", + "network": "Bornes CIVP", + "ref:EU:EVSE": "FRCPIE6685355", + "ref": "16805fed-ffdf-4120-973a-02f9f6ad4c2a", + "name": "Borne 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-30", + "note": "PARKING CLIENTELE", + "source:date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.47, + 43.45 + ] + }, + "properties": { + "operator": "Chargepoint", + "owner:ref:FR:SIREN": "451070197", + "email": "support.eu@chargepoint.com", + "phone": "01 85 65 78 77", + "network": "Bornes CIVP", + "ref:EU:EVSE": "FRCPIE6685345", + "ref": "36d4830d-fc1f-4979-a8b2-c842fdfe8590", + "name": "Borne 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-30", + "note": "PARKING CLIENTELE", + "source:date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39192, + 46.71109 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "n.elec71@gmail.com", + "phone": "", + "network": "barreiros", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "hager", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "", + "note": "", + "source:date": "2023-04-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22, + 44.55 + ] + }, + "properties": { + "operator": "SNAM GROUPE", + "owner:ref:FR:SIREN": "843277609", + "email": "yoan.ramos@snam.com", + "phone": "0565437730", + "network": "Réseau de recharge Viviez", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "VIVIEZ", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.149585, + 44.507331 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "399919927", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Ford Marmande - Groupe Malbet", + "ref:EU:EVSE": "FRZPEE175320", + "ref": "E175320", + "name": "FORD - MARMANDE 22 kW ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.149585, + 44.507331 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "399919927", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Ford Marmande - Groupe Malbet", + "ref:EU:EVSE": "FRZPEE175319", + "ref": "E175319 ", + "name": "FORD - MARMANDE 22 kW ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1596264000000005, + 45.74132497221715 + ] + }, + "properties": { + "operator": "GF3e", + "owner:ref:FR:SIREN": "799065628", + "email": "gf3e@gf3e.com", + "phone": "0473256208", + "network": "Enedis", + "ref:EU:EVSE": "Non concerné", + "ref": "f2a9d6ba-edd0-4e1e-a9e1-c75aed518e86", + "name": "SR-Triangle", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59, + 46.26 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "210302337", + "email": "mairie-saint-genest@wanadoo.fr", + "phone": "", + "network": "MAIRIE DE SAINT-GENEST", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Saint-Genest", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9824881, + 50.8550651 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "BPH GEOMETRE", + "ref:EU:EVSE": "Non concerné", + "ref": "be2b6f75-a3b1-4254-a94d-c36080526e8a", + "name": "BPH GEOMETRE", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-16", + "note": "", + "source:date": "2023-02-16", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13, + 45.76 + ] + }, + "properties": { + "operator": "SARL JUMO", + "owner:ref:FR:SIREN": "809154008", + "email": "frederic.morales@cuisines-aviva.com", + "phone": "04 73 15 01 00", + "network": "AVIVA", + "ref:EU:EVSE": "Non concerné", + "ref": "fe86cb06-1461-47e5-87fd-4fbf71844232", + "name": "Cuisines AvivA Clermont-Ferrand", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.094773232378359, + 45.827466656256114 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "341545531", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ITM MARENNES", + "ref:EU:EVSE": "FRZIME22AC164418", + "ref": "164418", + "name": "Intermarché - Marennes - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-16", + "note": "", + "source:date": "2022-11-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.094773232378359, + 45.827466656256114 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "341545531", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ITM MARENNES", + "ref:EU:EVSE": "FRZIME22AC164421", + "ref": "164421", + "name": "Intermarché - Marennes - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-01-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.094773232378359, + 45.827466656256114 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "341545531", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ITM MARENNES", + "ref:EU:EVSE": "FRZIME22AC172817", + "ref": "172817", + "name": "Intermarché - Marennes - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-01-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.094773232378359, + 45.827466656256114 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "341545531", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ITM MARENNES", + "ref:EU:EVSE": "FRZIME22AC172819", + "ref": "172819", + "name": "Intermarché - Marennes - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-16", + "note": "", + "source:date": "2022-11-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4046961, + 51.0360565 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "CARROSSERIE DEMARTHE", + "ref:EU:EVSE": "Non concerné", + "ref": "03205e52-39b9-461a-b6ee-4b483a75c506", + "name": "CARROSSERIE DEMARTHE", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4974859, + 51.0330233 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "CAMPING DU PERROQUET", + "ref:EU:EVSE": "Non concerné", + "ref": "4e20688a-6640-48a8-877d-e0551a005367", + "name": "CAMPING DU PERROQUET", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-16", + "note": "", + "source:date": "2022-02-16", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.61, + 46.41 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "489249144", + "email": "support@freshmile.com", + "phone": "03 69 24 67 32", + "network": "JARDIN DELICE", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "JARDIN DELICE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2012429, + 43.7718429 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMELOUCASTELETAPPARTHOTEL11", + "ref": "f5fc2930-f303-11ed-a05b-0242ac120003", + "name": "Lou Castelet Appart'hotel ", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-15", + "note": "24/7", + "source:date": "2023-05-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.592142, + 50.352955 + ] + }, + "properties": { + "operator": "freshmile", + "owner:ref:FR:SIREN": "216200451", + "email": "exploitation@freshmile.com", + "phone": "0391830700", + "network": "FRESHMILE", + "ref:EU:EVSE": "FRFR1KPPH1", + "ref": "FR*FR1*KPPH*1", + "name": "AUBIGNY EN ARTOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-05-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6233490421436728, + 44.180912759319284 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "314684572", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Ford Agen- Groupe Malbet", + "ref:EU:EVSE": "FRZPEE175425", + "ref": "E175425", + "name": "FORD AGEN EXT ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-01-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6233490421436728, + 44.180912759319284 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "314684572", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Ford Agen- Groupe Malbet", + "ref:EU:EVSE": "FRZPEE172798", + "ref": "E172798", + "name": "FORD AGEN EXT", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-01-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.936156, + 42.636601 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "f5750116-3eb5-4fb2-8cd7-9a9b91010e62", + "name": "ile-Rousse-Hotel-Rocabella", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-20", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.938499, + 42.635771 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "fc2b7892-b112-45e5-aa08-022829efb409", + "name": "ile-Rousse-Hotel-Escale-Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-29", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.124327, + 41.40988 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "193c7e74-429d-4886-aeb0-b32130ac90ff", + "name": "Bonifacio-A-Santa-Trinita", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-25", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.176994, + 42.227227 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "a33024cd-5b86-4b7d-9d40-0d80630cccf6", + "name": "Venaco-Hotel-U-Frascone", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.934076, + 42.637674 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "19d293a0-0b1a-49ec-8a45-0678e2c19af4", + "name": "ile-Rousse-Hotel-Escale-Port", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-29", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.211675, + 41.406843 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "867e81ce-5188-416a-ad4f-5397262a0238", + "name": "Bonifacio-Casarina", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-24", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.367982, + 41.686208 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "b6777fc5-069b-4501-8219-863e4c608b73", + "name": "Ste-Lucie-Tallano-Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-15", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.346448, + 41.697254 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "0103fcc1-2f21-4416-82f0-1abd3e740d7f", + "name": "Sainte Lucie de Porto vecchio", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-18", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.440808, + 42.550419 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "bb3d81f5-2984-40ef-864c-e97dc2878092", + "name": "Borgo", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-17", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.762064, + 42.554579 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "4e36e768-5f8c-4a1b-9289-fffbf9fae3f0", + "name": "Calvi ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-19", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.762181, + 42.554473 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "1c748c8b-76c7-4136-8f8d-855ec69cf8ca", + "name": "Calvi ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-19", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.367982, + 41.686208 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "1355111d-5b55-49f7-b569-5889d6ad6bcb", + "name": "Ste-Lucie-Porto-Vecchio-Hotel-U-Paesolu", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-04", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.165863, + 42.169635 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "90028f89-0376-4d9c-811b-cdcfcbb2a22d", + "name": "Vivario", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-29", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.455771, + 42.957671 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "81f11bdc-6410-436b-8def-0abd1f081ba1", + "name": "Rogliano", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-01", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.740141, + 41.927716 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "adfa58fa-fb71-4cab-bdb8-140b41ce32aa", + "name": "Ajaccio ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-11", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.753212, + 41.943433 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "b2ae1699-0590-4eb1-8cc9-f4e0c977b308", + "name": "Ajaccio ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.740676, + 41.932975 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "b202cf34-2f84-4171-bfff-253a1d2e8711", + "name": "Ajaccio ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-07-22", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.725979, + 41.916807 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "3e0ea59a-149e-4549-9601-8d2d3a3376ef", + "name": "Ajaccio ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-07-22", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.679228, + 41.907975 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "f92e71a8-f1a5-4d35-8cc8-85e286e7cd3f", + "name": "Ajaccio", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.764996, + 41.928461 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "be91f8ff-3c6a-45fb-b3a9-ab1e4f6a80c5", + "name": "Ajaccio ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.148584, + 42.30688 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "57098fad-2b57-440a-9c01-04dc2c353302", + "name": "Corté", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-29", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.795516, + 42.252954 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "7d20c1f9-c4aa-4dc7-87ac-0f4cf0cafa97", + "name": "Evisa", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-27", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9579, + 41.64414 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "5601d978-d008-4809-9fd7-e93f2a47f189", + "name": "Sartene", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.705408, + 42.130362 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "cb841a91-eb88-4e84-81a1-ecb403acfa28", + "name": "Vico ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-27", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.865745, + 42.009528 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "62274d29-ccc4-4ee9-9718-17380a46a31e", + "name": "Peri", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-19", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.277918, + 41.60664 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "6d34afed-25f2-423f-9620-2997a067caeb", + "name": "porto vecchio ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-23", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.277871, + 41.60646 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "09fff65b-9f7c-4439-bd9f-2e8d7fdd2e8a", + "name": "porto vecchio ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-23", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.277841, + 41.606329 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "6007835c-c55e-4cd8-ab0f-85b890e9367f", + "name": "porto vecchio ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-23", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.277811, + 41.606221 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "3cd77ead-6640-4460-a400-7feac71a06fd", + "name": "porto vecchio ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-23", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.277777, + 41.60608 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "579c1d14-019d-4f70-b766-a8a55eeafeb2", + "name": "porto vecchio ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-23", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.16492, + 41.390111 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "8dbb656e-d5e4-443c-ad35-6b21f0bda600", + "name": "Bonifacio", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.473992, + 42.77468 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "e66a1a8e-3139-4937-8f93-5047adf628dd", + "name": "Brando-Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-28", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.406403, + 42.017286 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "d5de5dc8-3eb6-4b4d-b5ff-766dadba305c", + "name": "Ghisonaccia", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-28", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.157313, + 42.301834 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "528993a4-ab02-4fef-a437-7b0c1776fbf0", + "name": "Corté", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-24", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.757366, + 42.568969 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "e797adbb-17d2-4d48-843c-cef357286c7b", + "name": "Calvi-Hotel-Saint-Christophe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-24", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.697524, + 42.401596 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "933f4c75-7ec9-44a4-a558-60acfa011158", + "name": "Galeria ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-16", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.437093, + 42.594663 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "68b650b5-14f6-4e1b-b0bb-1df531cbad31", + "name": "Biguglia-Hotel-Mercure", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-25", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.437152, + 42.594581 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "460352ff-39b2-4992-b41f-d1c8049fce24", + "name": "Biguglia-Hotel-Mercure", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-25", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.046333, + 42.000249 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "b321e50d-b3d7-489f-a3a6-f2f2f0b3cd2a", + "name": "Bastelica-Hotel-Artemisia", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.668901, + 41.906105 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "748341ca-8462-4f72-bf94-7ffc369e534e", + "name": "Ajaccio-Hotel-Cala-Di-Sole", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.506677, + 42.4479 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "2cd293ec-8e21-4d6d-b57f-6caafbbdaba8", + "name": "Folelli", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-29", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.20858, + 42.466325 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "ab8848af-a246-42f6-8abe-e68bf27a25e8", + "name": "Ponte leccia ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-04", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.35969, + 42.60074 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "4de294f3-d05c-4151-8ebb-8206f8c412e8", + "name": "Olmeto di Tuda", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.30191, + 42.673079 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "ba5e516b-e37b-4cbd-9739-86be9084248a", + "name": "Saint Florent ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-22", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.855216, + 42.508404 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "38436051-4763-44cd-80c8-8cf33648ceeb", + "name": "Calenzana", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-19", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.212628, + 42.103312 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "45e71a75-aef8-4b84-8511-8112a20c8716", + "name": "Ghisoni ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.918164, + 41.672692 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "f594a621-c183-411c-8549-54269cf30c0f", + "name": "Propriano ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.801244, + 42.167298 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "bf861d33-2d66-43a3-98dc-7a8e5a31a017", + "name": "Vico ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-11", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.467278, + 42.628813 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "dba85b2f-0987-475f-af0f-c9e73bed1006", + "name": "La Marana ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-01", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.636855, + 42.238424 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "0ed6649f-72d7-4b44-a85e-77c60c3a0c5e", + "name": "Piana ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-10", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.154738, + 41.934884 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "8ebb8d2e-f381-41b1-af4b-5299bdf492ca", + "name": "Cozzano ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-02", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.348162, + 42.964422 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "7250ce15-0ed6-4b88-a9f6-d0a1ff1340fb", + "name": "Centuri ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-10", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.148236, + 41.721265 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "66232122-0a47-4115-add7-b02c54d0ced3", + "name": "San Gavino di Carbini ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.008317, + 42.334186 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "f8aa7fa8-c06f-4b19-886a-87a3a548549e", + "name": "Calacuccia ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.021637, + 42.637722 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "0a91bd69-34a2-455d-b6b4-cb69691e05bc", + "name": "Lozari ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.389963, + 41.924136 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "c6584ed1-7a9c-4567-8c24-27092661687b", + "name": "Solenzara ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-09", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.793688, + 41.707589 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "a3183c38-0b81-4c65-9707-dce2b446fa53", + "name": "Porto Pollo ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-21", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.805342, + 41.89218 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "7b11480f-e105-4635-b4a8-ef0ba5c01b88", + "name": "Grossetto Prugna", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-19", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.440757, + 42.655748 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "e3cdf95e-31f4-4088-a0ec-0014477b4c97", + "name": "Furiani ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-23", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.479663, + 42.54706 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "e98b0d45-1648-4bb3-8334-ec83df10dcae", + "name": "Lucciana ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-23", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.757215, + 42.543506 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "bcf252a2-2c1a-4a66-9e5e-9bfa3fb1a0cc", + "name": "Calvi-Hotel-Corsica", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-08", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7585, + 42.568042 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "881bd651-f45d-469c-bc3b-b19978a31617", + "name": "Calvi", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-25", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.868565, + 41.645788 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "552ec407-68b9-469f-b566-8bd6035ed9eb", + "name": "Campomoro-U-Livanti-", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-02", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.326701, + 41.565514 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "6d3fcb21-d301-4fdd-ad7e-43400fe49982", + "name": "Porto-Vecchio-Hotel-Bergeries-Palombaggia", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-02", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.930927, + 41.688053 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "b330af16-a9fa-4a3d-b184-904c8fdc1836", + "name": "Olmeto-Bains-de-Baracci", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-06", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.835956, + 41.703089 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "7f8b451f-bff6-46be-a946-0b3941894f5e", + "name": "Olmeto-Camping-Ras-l-Bol", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-02", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.835726, + 41.703037 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "624ad20f-693e-41a5-91dd-d30239ffddf7", + "name": "Olmeto-Camping-Ras-l-Bol", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-02", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.896435, + 41.697897 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "0ca6e4b9-08cf-401a-b72a-ed8886381958", + "name": "Olmeto-Vigna-Maggiore", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-10", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.896456, + 41.698015 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "4f60a739-4046-41a2-a48f-495ffad74fcb", + "name": "Olmeto-Vigna-Maggiore", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-10", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.458543, + 42.465956 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "3e0e2208-f617-46b3-9deb-6e46a0562283", + "name": "Penta-Di-Casinca-Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-18", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.37966, + 41.666035 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "f72436b4-53d0-40c0-9ce4-f8d7e5676592", + "name": "Pinarellu-Camping-California", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.351695, + 42.908693 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "ae1d3396-7568-4638-89e9-c4c0ea16fbd7", + "name": "Pino-Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-15", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.535097, + 42.405317 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "2bfd98ec-42fa-4df8-bdb2-72fed2a6d34e", + "name": "Poggio-Mezzana-Scopa-Marina", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-05", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.786427, + 41.877695 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "02b59851-9d82-4401-94af-537b12b1e16f", + "name": "Porticcio-Hotel-Le-Maquis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-22", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.807748, + 41.894111 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "7a0fa23a-1e53-4d82-835e-9cb4c415b854", + "name": "Porticcio-Hotel-Marina-Viva", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-21", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.806314, + 41.893857 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "e839a051-ddd1-4be5-a870-9d5332878c90", + "name": "Porticcio-Hotel-Marina-Viva", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-21", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.721916, + 42.253555 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "f330dd0d-d2ce-4f64-97a8-569f542758de", + "name": "Porto-Ota-Camping-Funtana-A-l-Ora", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.300442, + 41.620129 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "87513969-02bc-4cb6-8a8d-1e228ff293c7", + "name": "Porto-Vecchio-Campo-Di-Mare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-13", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27674, + 41.593491 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "aca2ec4c-fd6e-4ded-aace-52a1ca9d252a", + "name": "Porto-Vecchio-Hotel-Best-Western-Alcyon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-10", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.531038, + 42.38426 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "a703da54-fda0-4b54-88e4-7b727a4bc12c", + "name": "Moriani-Marina-Bianca", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-10", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.276693, + 41.591126 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "f658a7b8-b650-48cb-b5f6-d0df6e9cdca3", + "name": "Porto-Vecchio-Hotel-Citta-Di-Lume", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-04", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.28433, + 41.599686 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "cbe249c5-c3d7-486c-845a-d71f4da570fc", + "name": "Porto-Vecchio-Hotel-Don-Cesar", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-07", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.279842, + 41.612182 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "832ce3eb-7f28-4464-9a0f-2c475e495dec", + "name": "Porto-Vecchio-Hotel-Le-Roi-Theodore", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-13", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.254713, + 41.580418 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "fa741161-be34-4647-9504-3856b861d9fd", + "name": "Porto-Vecchio-Hotel-San-Giovanni", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-07", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.300121, + 41.623434 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "307833fb-70cf-42db-9451-757a717f3c00", + "name": "Porto-Vecchio-Restaurant-l-Alivi", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.915746, + 41.680914 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "0a90b56a-3e1d-4a3f-831c-6353d15216ba", + "name": "Propriano-Hotel-Roc-e-Mare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-27", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.905017, + 42.121415 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "36523750-f5a3-41d4-9b18-03808fda8c74", + "name": "Salice-Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.95273, + 41.570971 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "72900b6e-f8f0-4678-b2c2-6e08813108e9", + "name": "Sartene-Auberge-U-Sirenu", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-26", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.964013, + 41.621461 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "53a75289-2870-423c-ac4f-df14dbbbcaa7", + "name": "Sartene-Hotel-Fior-Di-Ribba", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.963848, + 41.621902 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "609980fa-e716-4abc-ab51-7a63f47bc2ee", + "name": "Sartene-Hotel-Rossi", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-16", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.868415, + 41.645732 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "7b298eb5-9b0c-4a7d-800d-d07a5d90f5e6", + "name": "Campomoro-U-Livanti-", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-02", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.709331, + 42.301326 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "b1cef114-1c75-43cf-9fbc-dff78b180795", + "name": "Serriera-Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-26", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.483918, + 42.809196 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "fb1b24c2-1623-4007-8986-98e98e43deca", + "name": "Sisco-Osteria-Stalla-Sischese", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.394812, + 41.699134 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "abc031c5-c64a-4f7e-8cc7-a4c656095c5b", + "name": "Ste-Lucie-Porto-Vecchio-Hotel-Residence-Olmuccio", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-26", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.350042, + 42.614509 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "2558af0a-b77d-4ca9-a9a8-9e1a6531518d", + "name": "Olmeta-Di-Tuda-Hotel-U-Nebbiu", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.803926, + 41.712381 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "caacb69b-d250-4a6d-86a3-ab98c744d9a1", + "name": "Serra-di-Ferro-Terrasses-Du-Grand-Large", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-11", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.529622, + 42.363212 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "e0caaa09-9a5c-4712-a55f-e60f66a1fd3b", + "name": "Moriani-Camping-Merendella", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.446608, + 42.550499 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "69c04b2c-44ed-47fb-9759-fe3d8c06fef1", + "name": "Lucciana-Hotel-Castellu-Rossu", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-22", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.146628, + 41.678688 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "0fb69050-c96f-4dac-9305-f159ab58d22c", + "name": "Carbini-Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-15", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.350708, + 42.96541 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "6e542516-266d-42ae-8d2d-4c8a422812bb", + "name": "Centuri-Hotel-Le-Vieux-Moulin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-14", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.435675, + 41.999154 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "a9ebe6b1-f066-42bf-b055-2d069d1686ae", + "name": "Ghisonaccia-Camping-U-Casone", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-24", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.949884, + 42.168536 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "92fe8f97-f0d3-4600-ae39-30d031b162ed", + "name": "Guagno-Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-22", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.548939, + 42.225865 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "1d26f354-cc73-4e46-b142-66ebb0ef11cd", + "name": "Linguizzetta-Camping-Corsica-Natura-", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.548778, + 42.225964 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "07dc7cad-41cb-4af5-a02f-472689ec21d9", + "name": "Linguizzetta-Camping-Corsica-Natura-", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.428504, + 42.476445 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "b889876b-b802-4b30-86f0-8a039833f95b", + "name": "Loretu-Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-07", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.333253, + 41.645189 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "ccbd71c7-a443-42d2-bb7b-d9c3c253bfd4", + "name": "Lecci-Agula-Mora", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.954898, + 42.629787 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "d6dd38d0-a7e5-47ae-a01a-2ee7ddc0de61", + "name": "Monticello-Residence-Les-Alizes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-04", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.961906, + 42.632429 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "0790a741-5825-4ddb-bae6-d6740ba4547e", + "name": "Monticello-Hotel-Casa-Paradisu", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-02", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.53063, + 42.548657 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "44033ed4-e1cf-4137-ab95-223a836fddac", + "name": "Lucciana-Hotel-La-Lagune", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-06", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.465466, + 42.550769 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "fe7a16e5-398b-48e3-b101-194abc9e8217", + "name": "Lucciana-Hotel-Poretta", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-23", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.442201, + 42.528147 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "233b10e1-981d-4810-be48-3590cfad5412", + "name": "Lucciana-Hotel-Chez-Walter", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-24", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.408167, + 42.897789 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "1bac8abd-42cd-4df5-9c4e-966bd9f70657", + "name": "Luri-Spar", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-22", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.456341, + 42.741337 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "00effb79-072c-45b1-97c5-96657f7983c0", + "name": "Miomo-Hotel-Casa-Mea", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-13", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.389505, + 42.469061 + ] + }, + "properties": { + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref:EU:EVSE": "Non concerné", + "ref": "bf0dfde2-f504-41dc-81bf-f62a8501bc34", + "name": "Monte-Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "", + "source:date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.38071, + 48.91828 + ] + }, + "properties": { + "operator": "WeDoM.io", + "owner:ref:FR:SIREN": "834982183", + "email": "contact@wedom.io", + "phone": "0367106538", + "network": "Wingenerhof", + "ref:EU:EVSE": "Non concerné", + "ref": "4479a8a7-4764-489f-ad01-629f2a2b6a9a", + "name": "Parking Wingenerhof", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.2747532, + 41.5372318 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMESANTAGIULIAPALACE11", + "ref": "1b3689d8-f9f9-11ed-be56-0242ac120002", + "name": "SANTAGIULIAPALACE ", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-24", + "note": "24/4", + "source:date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.609770199999, + 45.7115857 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "909177297", + "email": "a.tarridec@maborneauto.com", + "phone": "0556372993", + "network": "SCI HORUS", + "ref:EU:EVSE": "Non concerné", + "ref": "bc840a90-12c1-4963-b396-75837d9ed5cf", + "name": "SCI HORUS", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-09", + "note": "", + "source:date": "2023-05-09", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.079235881798033, + 44.125333499688494 + ] + }, + "properties": { + "operator": "RICOME ET SADOUL AXA FRANCE", + "owner:ref:FR:SIREN": "438060501", + "email": "agence.ricome@axa.fr", + "phone": "04 66 91 03 11 ", + "network": "RICOME ET SADOUL AXA FRANCE", + "ref:EU:EVSE": "Non concerné", + "ref": "333a06ae-f6b3-458e-8e5a-5c63c8152bf5", + "name": "RICOME ET SADOUL AXA FRANCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-15", + "note": "", + "source:date": "2023-01-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.143857839450771, + 43.67179371848097 + ] + }, + "properties": { + "operator": "EURO TAXI LINE", + "owner:ref:FR:SIREN": "403825722", + "email": "eurotaxiline@free.fr", + "phone": "06 07 48 92 08", + "network": "EURO TAXI LINE", + "ref:EU:EVSE": "Non concerné", + "ref": "12ad3b82-577a-46c6-993b-50fc0caefdb9", + "name": "EURO TAXI LINE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.02472, + 44.04578 + ] + }, + "properties": { + "operator": "SATUJO", + "owner:ref:FR:SIREN": "308452051", + "email": "compta.ing@satujo.com", + "phone": "0466606854", + "network": "SATUJO", + "ref:EU:EVSE": "Non concerné", + "ref": "1a8d48c6-e9ed-4c97-890d-b19511959332", + "name": "SATUJO", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-12-01", + "note": "", + "source:date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9778, + 45.70419 + ] + }, + "properties": { + "operator": "RSDA mobility", + "owner:ref:FR:SIREN": "949243562", + "email": "vrousset@mobilease.fr", + "phone": "06 19 25 65 52", + "network": "RSDA mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "b7a67a33-5aa0-4aa1-ac7d-2cbfa3650cda", + "name": "RSDA mobility", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-07", + "note": "", + "source:date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8865, + 43.98066 + ] + }, + "properties": { + "operator": "Camping des graniers", + "owner:ref:FR:SIREN": "508754181", + "email": "Campinggraniers@gmail.com", + "phone": "06 59 74 24 88", + "network": "Camping des graniers", + "ref:EU:EVSE": "Non concerné", + "ref": "dacc7284-24fa-457a-a239-b5df87276e33", + "name": "Camping des graniers", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-05-18", + "note": "", + "source:date": "2023-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.4605483, + 42.73825410000001 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMESALETTA11", + "ref": "95bb75f0-fedc-11ed-be56-0242ac120002", + "name": "SOLAIRE CORSE ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-30", + "note": "24/7", + "source:date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.85870711, + 43.11350701 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "899892202", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SYNETHIS - LA SEYNE SUR MER", + "ref:EU:EVSE": "FRZPEE22AC166279", + "ref": "166279", + "name": "La Seyne Services Auto - 22KW - 6 ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-25", + "note": "", + "source:date": "2022-11-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.85870711, + 43.11350701 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "899892202", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SYNETHIS - LA SEYNE SUR MER", + "ref:EU:EVSE": "FRZPEE22AC166278", + "ref": "166278", + "name": "La Seyne Services Auto - 22kW - 5", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-25", + "note": "", + "source:date": "2022-11-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.369951, + 48.685055 + ] + }, + "properties": { + "operator": "Leroux Damien", + "owner:ref:FR:SIREN": "898843719", + "email": "damienleroux2@yahoo.fr", + "phone": "0624947678", + "network": "SCI Tombelaine", + "ref:EU:EVSE": "Non concerné", + "ref": "dd10fb7b-a5e0-4867-8e10-27d8b1196fc3", + "name": "CSI Tombelaine", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Charge disponible pendant les heures d'ouverture", + "source:date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53584, + 46.77338 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB014", + "ref": "B014", + "name": "Cenon sur Vienne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-15", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64471, + 46.56817 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB028", + "ref": "B028", + "name": "Chauvigny Banfora", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-21", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00364, + 46.66113 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB015", + "ref": "B015", + "name": "Chalandray", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-11", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32491, + 46.31971 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB016", + "ref": "B016", + "name": "Champagné Saint-Hilaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-11", + "note": "", + "source:date": "2017-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32491, + 46.31971 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB016", + "ref": "B016", + "name": "Champagné Saint-Hilaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-11", + "note": "", + "source:date": "2017-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40692, + 46.1429 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB017", + "ref": "B017", + "name": "Charroux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-07", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40692, + 46.1429 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB017", + "ref": "B017", + "name": "Charroux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-07", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42732, + 46.2589 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB018", + "ref": "B018", + "name": "Chateau Garnier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-04", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42732, + 46.2589 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB018", + "ref": "B018", + "name": "Chateau Garnier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-04", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31243, + 46.41752 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB019", + "ref": "B019", + "name": "Chateau Larcher", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-02", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31243, + 46.41752 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB019", + "ref": "B019", + "name": "Chateau Larcher", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-02", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5452, + 46.81861 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB020", + "ref": "B020", + "name": "Chatellerault Blossac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-11-24", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5452, + 46.81861 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB020", + "ref": "B020", + "name": "Chatellerault Blossac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-11-24", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.54894, + 46.8183 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB021", + "ref": "B021", + "name": "Chatellerault gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-11-24", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.54894, + 46.8183 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB021", + "ref": "B021", + "name": "Chatellerault gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-11-24", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64471, + 46.56817 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB028", + "ref": "B028", + "name": "Chauvigny Banfora", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-11-21", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53227, + 46.81327 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB022", + "ref": "B022", + "name": "Chatellerault Chateauneuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-03", + "note": "", + "source:date": "2017-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53227, + 46.81327 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB022", + "ref": "B022", + "name": "Chatellerault Chateauneuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-03", + "note": "", + "source:date": "2017-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53507, + 46.81348 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB023", + "ref": "B023", + "name": "Chatellerault Manufacture", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-03", + "note": "", + "source:date": "2017-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53507, + 46.81348 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB023", + "ref": "B023", + "name": "Chatellerault Manufacture", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-03", + "note": "", + "source:date": "2017-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5426, + 46.8363 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB024", + "ref": "B024", + "name": "Chatellerault Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-07-06", + "note": "", + "source:date": "2018-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62974, + 46.56323 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB025", + "ref": "B025", + "name": "Chauvigny Peuron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-23", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62974, + 46.56323 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB025", + "ref": "B025", + "name": "Chauvigny Peuron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-23", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64653, + 46.57301 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB026", + "ref": "B026", + "name": "Chauvigny cité médievale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-16", + "note": "", + "source:date": "2017-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64653, + 46.57301 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB026", + "ref": "B026", + "name": "Chauvigny cité médievale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-16", + "note": "", + "source:date": "2017-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64261, + 46.56539 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB027", + "ref": "B027", + "name": "Chauvigny gymnase Lathus", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-16", + "note": "", + "source:date": "2017-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64261, + 46.56539 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB027", + "ref": "B027", + "name": "Chauvigny gymnase Lathus", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-16", + "note": "", + "source:date": "2017-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00364, + 46.66113 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB015", + "ref": "B015", + "name": "Chalandray", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-11", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05075, + 46.56231 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB007", + "ref": "B007", + "name": "Benassay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-17", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53584, + 46.77338 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB014", + "ref": "B014", + "name": "Cenon sur Vienne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-15", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18734, + 46.42672 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB013", + "ref": "B013", + "name": "Celle l'Evescault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-06", + "note": "", + "source:date": "2017-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.28073, + 46.73765 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB029", + "ref": "B029", + "name": "Chéneché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-14", + "note": "", + "source:date": "2017-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37142, + 46.56913 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB000", + "ref": "B000", + "name": "Sorégies 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-31", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37142, + 46.56913 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB000", + "ref": "B000", + "name": "Sorégies 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-31", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.79966, + 46.25815 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB001", + "ref": "B001", + "name": "Adriers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-22", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.79966, + 46.25815 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB001", + "ref": "B001", + "name": "Adriers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-22", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88642, + 46.69456 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB002", + "ref": "B002", + "name": "Angles sur l'Anglin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-22", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88642, + 46.69456 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB002", + "ref": "B002", + "name": "Angles sur l'Anglin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-22", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11232, + 46.94515 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB003", + "ref": "B003", + "name": "Angliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-10-18", + "note": "", + "source:date": "2017-07-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11232, + 46.94515 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB003", + "ref": "B003", + "name": "Angliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-10-18", + "note": "", + "source:date": "2017-07-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65243, + 46.67327 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB004", + "ref": "B004", + "name": "Archigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-04-20", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65243, + 46.67327 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB004", + "ref": "B004", + "name": "Archigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-04-20", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57998, + 46.75684 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB005", + "ref": "B005", + "name": "Availles en Chatellerault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-28", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57998, + 46.75684 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB005", + "ref": "B005", + "name": "Availles en Chatellerault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-28", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07623, + 46.66011 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB006", + "ref": "B006", + "name": "Ayron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-13", + "note": "", + "source:date": "2017-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07623, + 46.66011 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB006", + "ref": "B006", + "name": "Ayron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-13", + "note": "", + "source:date": "2017-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05075, + 46.56231 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB007", + "ref": "B007", + "name": "Benassay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-17", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30572, + 46.57666 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB008", + "ref": "B008", + "name": "Biard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-10-02", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30572, + 46.57666 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB008", + "ref": "B008", + "name": "Biard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-10-02", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60268, + 46.60733 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB009", + "ref": "B009", + "name": "Bonnes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-23", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60268, + 46.60733 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB009", + "ref": "B009", + "name": "Bonnes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-23", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.56957, + 46.68164 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB010", + "ref": "B010", + "name": "Bonneuil Matours", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-27", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.56957, + 46.68164 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB010", + "ref": "B010", + "name": "Bonneuil Matours", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-27", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61114, + 46.36157 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB011", + "ref": "B011", + "name": "Bouresse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-11-25", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61114, + 46.36157 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB011", + "ref": "B011", + "name": "Bouresse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-11-25", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35242, + 46.59822 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB012", + "ref": "B012", + "name": "Buxerolles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-03", + "note": "", + "source:date": "2017-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35242, + 46.59822 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB012", + "ref": "B012", + "name": "Buxerolles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-03", + "note": "", + "source:date": "2017-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18734, + 46.42672 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB013", + "ref": "B013", + "name": "Celle l'Evescault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-06", + "note": "", + "source:date": "2017-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.28073, + 46.73765 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB029", + "ref": "B029", + "name": "Chéneché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-14", + "note": "", + "source:date": "2017-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5426, + 46.8363 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB024", + "ref": "B024", + "name": "Chatellerault Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-07-06", + "note": "", + "source:date": "2018-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65501, + 46.72772 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB030", + "ref": "B030", + "name": "Chenevelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-18", + "note": "", + "source:date": "2017-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68699, + 46.18983 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB068", + "ref": "B068", + "name": "Millac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-15", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45408, + 46.48322 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB077", + "ref": "B077", + "name": "Nieuil l'Espoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-31", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4882, + 46.76122 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB076", + "ref": "B076", + "name": "Naintré Paul Eluard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-28", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4882, + 46.76122 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB076", + "ref": "B076", + "name": "Naintré Paul Eluard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-28", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48267, + 46.76305 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB075", + "ref": "B075", + "name": "Naintré bibliotheque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-28", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48267, + 46.76305 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB075", + "ref": "B075", + "name": "Naintré bibliotheque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-28", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02363, + 47.10853 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB074", + "ref": "B074", + "name": "Morton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-20", + "note": "", + "source:date": "2017-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02363, + 47.10853 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB074", + "ref": "B074", + "name": "Morton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-20", + "note": "", + "source:date": "2017-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.21306, + 46.91925 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB073", + "ref": "B073", + "name": "Monts sur Guesnes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-02-26", + "note": "", + "source:date": "2019-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.21306, + 46.91925 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB073", + "ref": "B073", + "name": "Monts sur Guesnes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-02-26", + "note": "", + "source:date": "2019-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.86969, + 46.42582 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB072", + "ref": "B072", + "name": "Montmorillon centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-09-25", + "note": "", + "source:date": "2017-07-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.86969, + 46.42582 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB072", + "ref": "B072", + "name": "Montmorillon centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-09-25", + "note": "", + "source:date": "2017-07-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88005, + 46.43179 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB071", + "ref": "B071", + "name": "Montmorillon stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-12-14", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88005, + 46.43179 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB071", + "ref": "B071", + "name": "Montmorillon stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-12-14", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.87701, + 46.43351 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB070", + "ref": "B070", + "name": "Montmorillon pole emploi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-11-06", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.87701, + 46.43351 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB070", + "ref": "B070", + "name": "Montmorillon pole emploi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-11-06", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0199, + 46.88099 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB069", + "ref": "B069", + "name": "Moncontour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-14", + "note": "", + "source:date": "2017-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0199, + 46.88099 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB069", + "ref": "B069", + "name": "Moncontour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-14", + "note": "", + "source:date": "2017-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45408, + 46.48322 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB077", + "ref": "B077", + "name": "Nieuil l'Espoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-31", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.41466, + 46.50859 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB078", + "ref": "B078", + "name": "Nouaillé-Maupertuis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-03", + "note": "", + "source:date": "2017-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.41466, + 46.50859 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB078", + "ref": "B078", + "name": "Nouaillé-Maupertuis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-03", + "note": "", + "source:date": "2017-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.04111, + 46.42062 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB083", + "ref": "B083", + "name": "Rouillé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-15", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0437, + 47.07127 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB087", + "ref": "B087", + "name": "Saint-Léger de Montbrillais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-09", + "note": "", + "source:date": "2017-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.54547, + 46.39088 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB086", + "ref": "B086", + "name": "Saint-Laurent de Jourdes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-14", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.54547, + 46.39088 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB086", + "ref": "B086", + "name": "Saint-Laurent de Jourdes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-14", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49724, + 46.5597 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB085", + "ref": "B085", + "name": "Saint-Julien l'Ars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-06", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49724, + 46.5597 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB085", + "ref": "B085", + "name": "Saint-Julien l'Ars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-06", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09176, + 46.84099 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB084", + "ref": "B084", + "name": "Saint-Jean de Sauves", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-08", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09176, + 46.84099 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB084", + "ref": "B084", + "name": "Saint-Jean de Sauves", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-08", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.04111, + 46.42062 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB083", + "ref": "B083", + "name": "Rouillé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-15", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76626, + 46.73847 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB079", + "ref": "B079", + "name": "Pleumartin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-05", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30311, + 46.27048 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB082", + "ref": "B082", + "name": "Romagne bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-20", + "note": "", + "source:date": "2017-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30311, + 46.27048 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB082", + "ref": "B082", + "name": "Romagne bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-20", + "note": "", + "source:date": "2017-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22979, + 46.6104 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB081", + "ref": "B081", + "name": "Quincay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-13", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22979, + 46.6104 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB081", + "ref": "B081", + "name": "Quincay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-13", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57314, + 46.11511 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB080", + "ref": "B080", + "name": "Pressac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-21", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57314, + 46.11511 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB080", + "ref": "B080", + "name": "Pressac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-21", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76626, + 46.73847 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB079", + "ref": "B079", + "name": "Pleumartin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-05", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68699, + 46.18983 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB068", + "ref": "B068", + "name": "Millac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-15", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31113, + 46.61954 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB067", + "ref": "B067", + "name": "Migné-Auxances", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-31", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99439, + 46.43572 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB088", + "ref": "B088", + "name": "Saint-Léomer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-11", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31113, + 46.61954 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB067", + "ref": "B067", + "name": "Migné-Auxances", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-31", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37044, + 46.5711 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB135", + "ref": "B135", + "name": "Rebeilleau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-10-23", + "note": "", + "source:date": "2019-10-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37044, + 46.5711 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB135", + "ref": "B135", + "name": "Rebeilleau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-10-23", + "note": "", + "source:date": "2019-10-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37044, + 46.5711 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB136", + "ref": "B136", + "name": "Rebeilleau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-09-13", + "note": "", + "source:date": "2019-10-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37044, + 46.5711 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB137", + "ref": "B137", + "name": "Rebeilleau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-09-13", + "note": "", + "source:date": "2019-10-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11593, + 46.42912 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB138", + "ref": "B138", + "name": "Lusignan intermarché", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-02-14", + "note": "", + "source:date": "2020-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.43986, + 46.73119 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB139", + "ref": "B139", + "name": "Beaumont Saint-Cyr", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-02-14", + "note": "", + "source:date": "2020-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37178, + 46.56869 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB140", + "ref": "B140", + "name": "Sorégies 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-04-06", + "note": "", + "source:date": "2020-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65501, + 46.72772 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB030", + "ref": "B030", + "name": "Chenevelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-18", + "note": "", + "source:date": "2017-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37178, + 46.56869 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB140", + "ref": "B140", + "name": "Sorégies 3", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-04-06", + "note": "", + "source:date": "2020-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64471, + 46.56817 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB141", + "ref": "B141", + "name": "Chauvigny Banfora", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-06-12", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3464, + 46.61769 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB142", + "ref": "B142", + "name": "Poitiers République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-08", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3464, + 46.61769 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB142", + "ref": "B142", + "name": "Poitiers République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-08", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.34631, + 46.61766 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB143", + "ref": "B143", + "name": "Poitiers République", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-09", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36019, + 46.66112 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB144", + "ref": "B144", + "name": "Chasseneuil Teleport 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-24", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36019, + 46.66112 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB144", + "ref": "B144", + "name": "Chasseneuil Teleport 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-24", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3933, + 46.35718 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB129", + "ref": "B129", + "name": "Magné", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-02-28", + "note": "", + "source:date": "2019-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72518, + 46.40225 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB145", + "ref": "B145", + "name": "Lussac les chateaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-04", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.81045, + 46.4907 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB134", + "ref": "B134", + "name": "Pindray", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-15", + "note": "", + "source:date": "2019-10-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.81045, + 46.4907 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB134", + "ref": "B134", + "name": "Pindray", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-15", + "note": "", + "source:date": "2019-10-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53496, + 46.77659 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB133", + "ref": "B133", + "name": "Cenon Fenwick", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-06-08", + "note": "", + "source:date": "2018-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.34093, + 46.3962 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB063", + "ref": "B063", + "name": "Marnay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-22", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4139, + 46.54147 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB066", + "ref": "B066", + "name": "Mignaloux-Beauvoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-10-02", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4139, + 46.54147 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB066", + "ref": "B066", + "name": "Mignaloux-Beauvoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-10-02", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.51656, + 46.17257 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB065", + "ref": "B065", + "name": "Mauprévoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-01", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.51656, + 46.17257 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB065", + "ref": "B065", + "name": "Mauprévoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-01", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06018, + 46.91653 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB064", + "ref": "B064", + "name": "Martaizé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-23", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06018, + 46.91653 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB064", + "ref": "B064", + "name": "Martaizé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-23", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.34093, + 46.3962 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB063", + "ref": "B063", + "name": "Marnay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-22", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.21484, + 46.42481 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB062", + "ref": "B062", + "name": "Marigny-Chémereau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-09", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53496, + 46.77659 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB133", + "ref": "B133", + "name": "Cenon Fenwick", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-06-08", + "note": "", + "source:date": "2018-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3933, + 46.35718 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB129", + "ref": "B129", + "name": "Magné", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-02-28", + "note": "", + "source:date": "2019-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.28977, + 46.24312 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB130", + "ref": "B130", + "name": "Romagne vallée des singes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-20", + "note": "", + "source:date": "2017-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.28977, + 46.24312 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB130", + "ref": "B130", + "name": "Romagne vallée des singes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-20", + "note": "", + "source:date": "2017-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.43986, + 46.73118 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB131", + "ref": "B131", + "name": "Beaumont Saint-Cyr", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-10-05", + "note": "", + "source:date": "2017-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.43986, + 46.73118 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB131", + "ref": "B131", + "name": "Beaumont Saint-Cyr", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-10-05", + "note": "", + "source:date": "2017-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60611, + 46.93734 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB132", + "ref": "B132", + "name": "Dangé Saint-Romain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-06", + "note": "", + "source:date": "2018-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60611, + 46.93734 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB132", + "ref": "B132", + "name": "Dangé Saint-Romain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-06", + "note": "", + "source:date": "2018-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0437, + 47.07127 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB087", + "ref": "B087", + "name": "Saint-Léger de Montbrillais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-09", + "note": "", + "source:date": "2017-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99439, + 46.43572 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB088", + "ref": "B088", + "name": "Saint-Léomer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-11", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08608, + 47.00618 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB147", + "ref": "B147", + "name": "Loudun porte de Mirebeau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-24", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18175, + 46.64537 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB109", + "ref": "B109", + "name": "Vouillé Beauregard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-06", + "note": "", + "source:date": "2017-10-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30925, + 46.73564 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB118", + "ref": "B118", + "name": "Vendeuvre du Poitou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-28", + "note": "", + "source:date": "2017-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.70529, + 46.75958 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB117", + "ref": "B117", + "name": "Leigné les Bois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-20", + "note": "", + "source:date": "2018-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.70529, + 46.75958 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB117", + "ref": "B117", + "name": "Leigné les Bois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-20", + "note": "", + "source:date": "2018-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.87585, + 46.37715 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB116", + "ref": "B116", + "name": "Saulgé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-14", + "note": "", + "source:date": "2017-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.87585, + 46.37715 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB116", + "ref": "B116", + "name": "Saulgé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-14", + "note": "", + "source:date": "2017-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18378, + 46.79024 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB115", + "ref": "B115", + "name": "Mirebeau mail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-20", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18378, + 46.79024 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB115", + "ref": "B115", + "name": "Mirebeau mail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-20", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18065, + 46.78656 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB114", + "ref": "B114", + "name": "Mirebeau poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-14", + "note": "", + "source:date": "2017-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18065, + 46.78656 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB114", + "ref": "B114", + "name": "Mirebeau poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-14", + "note": "", + "source:date": "2017-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.77655, + 46.50507 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB113", + "ref": "B113", + "name": "Leignes sur Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2014-04-14", + "note": "", + "source:date": "2017-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.77655, + 46.50507 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB113", + "ref": "B113", + "name": "Leignes sur Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-14", + "note": "", + "source:date": "2017-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48492, + 46.75725 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB112", + "ref": "B112", + "name": "Naintré Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-04-22", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48492, + 46.75725 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB112", + "ref": "B112", + "name": "Naintré Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-04-22", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09633, + 46.71077 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB111", + "ref": "B111", + "name": "Vouzailles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-21", + "note": "", + "source:date": "2018-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09633, + 46.71077 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB111", + "ref": "B111", + "name": "Vouzailles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-21", + "note": "", + "source:date": "2018-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.27232, + 46.57058 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB110", + "ref": "B110", + "name": "Vouneuil sous Biard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-12-15", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.27232, + 46.57058 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB110", + "ref": "B110", + "name": "Vouneuil sous Biard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-12-15", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30925, + 46.73564 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB118", + "ref": "B118", + "name": "Vendeuvre du Poitou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-28", + "note": "", + "source:date": "2017-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49537, + 46.32872 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB119", + "ref": "B119", + "name": "Saint-Secondin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-07-04", + "note": "", + "source:date": "2017-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49537, + 46.32872 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB119", + "ref": "B119", + "name": "Saint-Secondin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-07-04", + "note": "", + "source:date": "2017-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37658, + 46.55698 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB124", + "ref": "B124", + "name": "Mignaloux-Beauvoir le Verger", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-22", + "note": "", + "source:date": "2017-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.81115, + 46.78645 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB128", + "ref": "B128", + "name": "La Roche-Posay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-28", + "note": "", + "source:date": "2017-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.25833, + 46.71738 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB127", + "ref": "B127", + "name": "Chabournay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-09", + "note": "", + "source:date": "2017-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.25833, + 46.71738 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB127", + "ref": "B127", + "name": "Chabournay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-09", + "note": "", + "source:date": "2017-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19754, + 46.56906 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB126", + "ref": "B126", + "name": "Béruges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-06", + "note": "", + "source:date": "2017-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19754, + 46.56906 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB126", + "ref": "B126", + "name": "Béruges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-06", + "note": "", + "source:date": "2017-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36394, + 46.6551 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB125", + "ref": "B125", + "name": "Chasseneuil du Poitou - SDIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-07-17", + "note": "", + "source:date": "2017-08-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36394, + 46.6551 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB125", + "ref": "B125", + "name": "Chasseneuil du Poitou - SDIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-07-17", + "note": "", + "source:date": "2017-08-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37658, + 46.55698 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB124", + "ref": "B124", + "name": "Mignaloux-Beauvoir le Verger", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-22", + "note": "", + "source:date": "2017-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.34213, + 46.54957 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB120", + "ref": "B120", + "name": "Saint-Benoit", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-13", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24605, + 46.68789 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB123", + "ref": "B123", + "name": "Neuville de Poitou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-09", + "note": "", + "source:date": "2017-07-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24605, + 46.68789 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB123", + "ref": "B123", + "name": "Neuville de Poitou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-09", + "note": "", + "source:date": "2017-07-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26751, + 46.49409 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB122", + "ref": "B122", + "name": "Vivonne Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-21", + "note": "", + "source:date": "2018-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26751, + 46.49409 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB122", + "ref": "B122", + "name": "Vivonne Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-21", + "note": "", + "source:date": "2018-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40516, + 46.66909 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB121", + "ref": "B121", + "name": "Saint-Georges les Baillargeaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-18", + "note": "", + "source:date": "2017-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40516, + 46.66909 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB121", + "ref": "B121", + "name": "Saint-Georges les Baillargeaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-18", + "note": "", + "source:date": "2017-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.34213, + 46.54957 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB120", + "ref": "B120", + "name": "Saint-Benoit", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-13", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18175, + 46.64537 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB109", + "ref": "B109", + "name": "Vouillé Beauregard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-06", + "note": "", + "source:date": "2017-10-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16553, + 46.63914 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB108", + "ref": "B108", + "name": "Vouillé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-11", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2333, + 46.11744 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB089", + "ref": "B089", + "name": "Saint-Macoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-27", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16553, + 46.63914 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB108", + "ref": "B108", + "name": "Vouillé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-11", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61404, + 46.77956 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB097", + "ref": "B097", + "name": "Senillé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-05", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61404, + 46.77956 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB097", + "ref": "B097", + "name": "Senillé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-05", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.28431, + 46.86971 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB096", + "ref": "B096", + "name": "Savigny sous Faye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-09-13", + "note": "", + "source:date": "2017-07-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.28431, + 46.86971 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB096", + "ref": "B096", + "name": "Savigny sous Faye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-09-13", + "note": "", + "source:date": "2017-07-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.311, + 46.1585 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB095", + "ref": "B095", + "name": "Savigné", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-04-13", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.311, + 46.1585 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB095", + "ref": "B095", + "name": "Savigné", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-04-13", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.86389, + 46.56596 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB094", + "ref": "B094", + "name": "Saint-Savin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-19", + "note": "", + "source:date": "2018-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.86389, + 46.56596 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB094", + "ref": "B094", + "name": "Saint-Savin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-19", + "note": "", + "source:date": "2018-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62647, + 46.80711 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB093", + "ref": "B093", + "name": "Saint-Sauveur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-18", + "note": "", + "source:date": "2017-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62647, + 46.80711 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB093", + "ref": "B093", + "name": "Saint-Sauveur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-18", + "note": "", + "source:date": "2017-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05509, + 46.35754 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB092", + "ref": "B092", + "name": "Saint-Sauvant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-08-25", + "note": "", + "source:date": "2017-10-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05509, + 46.35754 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB092", + "ref": "B092", + "name": "Saint-Sauvant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-25", + "note": "", + "source:date": "2017-10-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.84278, + 46.67931 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB091", + "ref": "B091", + "name": "Saint-Pierre de Maillé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-05", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.84278, + 46.67931 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB091", + "ref": "B091", + "name": "Saint-Pierre de Maillé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-05", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.41207, + 46.37738 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB090", + "ref": "B090", + "name": "Saint-Maurice la Clouere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-22", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.41207, + 46.37738 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB090", + "ref": "B090", + "name": "Saint-Maurice la Clouere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-22", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2333, + 46.11744 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB089", + "ref": "B089", + "name": "Saint-Macoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-27", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.46523, + 46.57075 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB098", + "ref": "B098", + "name": "Sevres-Anxaumont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-06", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.46523, + 46.57075 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB098", + "ref": "B098", + "name": "Sevres-Anxaumont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-06", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35019, + 46.51127 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB099", + "ref": "B099", + "name": "Smarves", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-10-02", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59284, + 46.41083 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB104", + "ref": "B104", + "name": "Verrieres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-31", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26272, + 46.42595 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB107", + "ref": "B107", + "name": "Vivonne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-08", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26272, + 46.42595 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB107", + "ref": "B107", + "name": "Vivonne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-08", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17571, + 46.67593 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB106", + "ref": "B106", + "name": "Villiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-01", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17571, + 46.67593 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB106", + "ref": "B106", + "name": "Villiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-01", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.92126, + 46.55103 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB105", + "ref": "B105", + "name": "Villemort", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-25", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.92126, + 46.55103 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB105", + "ref": "B105", + "name": "Villemort", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-25", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59284, + 46.41083 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB104", + "ref": "B104", + "name": "Verrieres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-31", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30653, + 46.73026 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB103", + "ref": "B103", + "name": "Vendeuvre du Poitou ZA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-07", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35019, + 46.51127 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB099", + "ref": "B099", + "name": "Smarves", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-10-02", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30653, + 46.73026 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB103", + "ref": "B103", + "name": "Vendeuvre du Poitou ZA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-07", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.63465, + 46.50886 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB102", + "ref": "B102", + "name": "Valdivienne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-20", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.63465, + 46.50886 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB102", + "ref": "B102", + "name": "Valdivienne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-20", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.52613, + 46.27595 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB101", + "ref": "B101", + "name": "Usson du Poitou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-09", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.52613, + 46.27595 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB101", + "ref": "B101", + "name": "Usson du Poitou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-09", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.12241, + 46.42201 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB100", + "ref": "B100", + "name": "Thollet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-24", + "note": "", + "source:date": "2017-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.12241, + 46.42201 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB100", + "ref": "B100", + "name": "Thollet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-24", + "note": "", + "source:date": "2017-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 46.64537 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB146", + "ref": "B146", + "name": "Vouillé Beauregard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-24", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.81115, + 46.78645 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB128", + "ref": "B128", + "name": "La Roche-Posay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-28", + "note": "", + "source:date": "2017-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163263, + 46.206552 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB157", + "ref": "B157", + "name": "CHAUNAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-23", + "note": "", + "source:date": "2023-02-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16033, + 46.70139 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB049", + "ref": "B049", + "name": "Le Rochereau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-11", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11599, + 46.42918 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB059", + "ref": "B059", + "name": "Lusignan intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-12-18", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12231, + 46.43525 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB058", + "ref": "B058", + "name": "Lusignan centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-02", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12231, + 46.43525 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB058", + "ref": "B058", + "name": "Lusignan centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-02", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0859, + 47.006 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB057", + "ref": "B057", + "name": "Loudun porte de Mirebeau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-14", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0859, + 47.006 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB057", + "ref": "B057", + "name": "Loudun porte de Mirebeau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-14", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08278, + 47.0102 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB056", + "ref": "B056", + "name": "Loudun mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-06", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08278, + 47.0102 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB056", + "ref": "B056", + "name": "Loudun mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-06", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.33276, + 46.5191 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB055", + "ref": "B055", + "name": "Ligugé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-16", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.33276, + 46.5191 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB055", + "ref": "B055", + "name": "Ligugé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-16", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5978, + 46.43572 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB053", + "ref": "B053", + "name": "Lhommaizé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-20", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5978, + 46.43572 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB053", + "ref": "B053", + "name": "Lhommaizé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-20", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0177, + 47.0633 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB052", + "ref": "B052", + "name": "Les Trois Moutiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-10", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36949, + 46.47977 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB051", + "ref": "B051", + "name": "Les Roches Premarie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-10-19", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36949, + 46.47977 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB051", + "ref": "B051", + "name": "Les Roches Premarie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-10-19", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67396, + 46.23086 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB050", + "ref": "B050", + "name": "Le Vigeant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-07", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.11599, + 46.42918 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB059", + "ref": "B059", + "name": "Lusignan intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-12-18", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72538, + 46.40226 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB060", + "ref": "B060", + "name": "Lussac les chateaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-04-08", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72538, + 46.40226 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB060", + "ref": "B060", + "name": "Lussac les chateaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-04-08", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.210527, + 46.920493 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB154", + "ref": "B154", + "name": "MONTS SUR GUESNES MEMORIAL 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-02", + "note": "", + "source:date": "2022-11-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.54263, + 46.83623 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB148", + "ref": "B148", + "name": "Chatellerault Nord", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-24", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19736, + 46.35839 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB149", + "ref": "B149", + "name": "Payré", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-11", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19736, + 46.35839 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB150", + "ref": "B150", + "name": "Payré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-19", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19736, + 46.35839 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB150", + "ref": "B150", + "name": "Payré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-19", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.210555, + 46.92054 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB153", + "ref": "B153", + "name": "MONTS SUR GUESNES MEMORIAL 1 ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-02", + "note": "", + "source:date": "2022-11-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.210555, + 46.92054 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB153", + "ref": "B153", + "name": "MONTS SUR GUESNES MEMORIAL 1 ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-02", + "note": "", + "source:date": "2022-11-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.210527, + 46.920493 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB154", + "ref": "B154", + "name": "MONTS SUR GUESNES MEMORIAL 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-02", + "note": "", + "source:date": "2022-11-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.21484, + 46.42481 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB062", + "ref": "B062", + "name": "Marigny-Chémereau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-09", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.311309, + 46.160084 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB155", + "ref": "B155", + "name": "SAVIGNE INTERMARCHE QC50 ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-03", + "note": "", + "source:date": "2023-04-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163327, + 46.20657 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB155", + "ref": "B156", + "name": "CHAUNAY QC50", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-23", + "note": "", + "source:date": "2023-02-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163263, + 46.206552 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB157", + "ref": "B157", + "name": "CHAUNAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-23", + "note": "", + "source:date": "2023-02-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30007, + 46.54829 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "5 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB151", + "ref": "B151", + "name": "POITIERS SUD HPC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30007, + 46.54829 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "5 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB152", + "ref": "B152", + "name": "POITIERS SUD 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-02-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30007, + 46.54829 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "5 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB152", + "ref": "B152", + "name": "POITIERS SUD 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-02-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67396, + 46.23086 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB050", + "ref": "B050", + "name": "Le Vigeant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-07", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0177, + 47.0633 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB052", + "ref": "B052", + "name": "Les Trois Moutiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-10", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16033, + 46.70139 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB049", + "ref": "B049", + "name": "Le Rochereau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-11", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.185, + 46.48457 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB037", + "ref": "B037", + "name": "Coulombiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-25", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09682, + 46.7588 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB038", + "ref": "B038", + "name": "Cuhon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-20", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09682, + 46.7588 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB038", + "ref": "B038", + "name": "Cuhon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-20", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17276, + 46.81292 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB031", + "ref": "B031", + "name": "Chouppes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-10", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22874, + 46.64555 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB032", + "ref": "B032", + "name": "Cissé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-09", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07669, + 46.61877 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB048", + "ref": "B048", + "name": "Latillé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-30", + "note": "", + "source:date": "2017-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.185, + 46.48457 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB037", + "ref": "B037", + "name": "Coulombiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-25", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18271, + 46.30726 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB036", + "ref": "B036", + "name": "Couhé-Verac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-28", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66512, + 46.44447 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB033", + "ref": "B033", + "name": "Civaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-11-29", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22874, + 46.64555 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB032", + "ref": "B032", + "name": "Cissé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-09", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18271, + 46.30726 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB036", + "ref": "B036", + "name": "Couhé-Verac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-28", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16584, + 46.44436 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB035", + "ref": "B035", + "name": "Cloué", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-01", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16584, + 46.44436 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB035", + "ref": "B035", + "name": "Cloué", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-01", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29635, + 46.14706 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB034", + "ref": "B034", + "name": "Civray", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-15", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29635, + 46.14706 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB034", + "ref": "B034", + "name": "Civray", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-15", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.52324, + 46.47848 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB039", + "ref": "B039", + "name": "Fleuré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-10-08", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.52324, + 46.47848 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB039", + "ref": "B039", + "name": "Fleuré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-10-08", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26689, + 46.53334 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB040", + "ref": "B040", + "name": "Fontaine-le-Comte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-12-01", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26689, + 46.53334 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB040", + "ref": "B040", + "name": "Fontaine-le-Comte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-12-01", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07669, + 46.61877 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB048", + "ref": "B048", + "name": "Latillé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-30", + "note": "", + "source:date": "2017-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.04278, + 46.46695 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB047", + "ref": "B047", + "name": "La Trimouille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-04-08", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.04278, + 46.46695 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB047", + "ref": "B047", + "name": "La Trimouille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-04-08", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01791, + 46.80673 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB046", + "ref": "B046", + "name": "La Grimaudiere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-13", + "note": "", + "source:date": "2017-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17276, + 46.81292 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB031", + "ref": "B031", + "name": "Chouppes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-03-10", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.01791, + 46.80673 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB046", + "ref": "B046", + "name": "La Grimaudiere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-13", + "note": "", + "source:date": "2017-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47077, + 46.22636 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB045", + "ref": "B045", + "name": "Joussé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-27", + "note": "", + "source:date": "2017-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47077, + 46.22636 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB045", + "ref": "B045", + "name": "Joussé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-27", + "note": "", + "source:date": "2017-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31542, + 46.48522 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB044", + "ref": "B044", + "name": "Iteuil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-07", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31542, + 46.48522 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB044", + "ref": "B044", + "name": "Iteuil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-07", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.56652, + 46.87613 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB043", + "ref": "B043", + "name": "Ingrandes sur Vienne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-09-20", + "note": "", + "source:date": "2017-07-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.56652, + 46.87613 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB043", + "ref": "B043", + "name": "Ingrandes sur Vienne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-09-20", + "note": "", + "source:date": "2017-07-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42395, + 46.43994 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB042", + "ref": "B042", + "name": "Gizay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-17", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42395, + 46.43994 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB042", + "ref": "B042", + "name": "Gizay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-17", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66512, + 46.44447 + ] + }, + "properties": { + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref:EU:EVSE": "FRS86PSOREB033", + "ref": "B033", + "name": "Civaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-11-29", + "note": "", + "source:date": "2017-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3043377, + 49.1915441 + ] + }, + "properties": { + "operator": "PTBG et associés", + "owner:ref:FR:SIREN": "336450051", + "email": "f.dineur@groupeptbg.fr", + "phone": "0231291931", + "network": "PTBG", + "ref:EU:EVSE": "FRWBCERCG0C210D9", + "ref": "RCG0C210D9", + "name": "PTBG", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-19", + "note": "", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5514549, + 51.078304 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "CAMPING DU PERROQUET", + "ref:EU:EVSE": "Non concerné", + "ref": "e1efaa9c-a39b-43d0-aebb-5984c425c47d", + "name": "CAMPING DU PERROQUET", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-02-28", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9713852, + 50.9870357 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "CAMPING DE LA PLAGE", + "ref:EU:EVSE": "Non concerné", + "ref": "76ef5ec8-72ed-4727-8cd7-905954ff2646", + "name": "CAMPING DE LA PLAGE", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-16", + "note": "", + "source:date": "2023-02-16", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6536518, + 50.636603699999 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "ANOSTEKE", + "ref:EU:EVSE": "Non concerné", + "ref": "52a68029-6dbc-4c2b-8061-3fb41b638ad5", + "name": "ANOSTEKE", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-16", + "note": "", + "source:date": "2023-02-16", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9722276, + 50.4945611 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "SAS LARGO", + "ref:EU:EVSE": "Non concerné", + "ref": "f07350fd-879f-4cb5-9cee-8300c3b9e936", + "name": "SAS LARGO", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-01", + "note": "", + "source:date": "2022-12-01", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.792899, + 48.034992 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "FRG10S45249A1", + "ref": "9f856230-c89a-11ed-afa1-0242ac120002", + "name": "Parking Salle Polyvalente", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.631166, + 47.940851 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "FRG10S45185A1", + "ref": "954250ee-c89a-11ed-afa1-0242ac120002", + "name": "Parking Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-01", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.62602, + 47.96226 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "FRG10S45092A1", + "ref": "97a73804-c89a-11ed-afa1-0242ac120002", + "name": "Place Eglise", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-01", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.740797, + 48.043351 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "FRG10S45061A1", + "ref": "a250ea3e-c89a-11ed-afa1-0242ac120002", + "name": "Parking Girafe", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-01", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.672061, + 48.017411 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "FRG10S45247A1", + "ref": "a20a11fe-c89a-11ed-afa1-0242ac120002", + "name": "Parking Fleuriste", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-01", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.786245, + 47.952592 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "FRG10S45102A1", + "ref": "a169a05c-c89a-11ed-afa1-0242ac120002", + "name": "Parking Peupleraie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-01", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.709255, + 47.99084 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "FRG10S45338A1", + "ref": "a09b9afe-c89a-11ed-afa1-0242ac120002", + "name": "Parking Bar", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-01", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.774432, + 47.968048 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "FRG10S45004B1", + "ref": "a05bc5e6-c89a-11ed-afa1-0242ac120002", + "name": "Parking Presse", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-03-01", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.772764, + 47.968284 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "FRG10S45004A1", + "ref": "a01624a0-c89a-11ed-afa1-0242ac120002", + "name": "Parking Bassin du Loing", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-03-01", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.736547, + 47.918313 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "FRG10S45312A1", + "ref": "9fd0f8f8-c89a-11ed-afa1-0242ac120002", + "name": "Parking Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-01", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.736391, + 47.930405 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "Non concerné", + "ref": "9dbac706-c89a-11ed-afa1-0242ac120002", + "name": "Parking Restaurant", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.730546, + 48.012275 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "Non concerné", + "ref": "9f13aabe-c89a-11ed-afa1-0242ac120002", + "name": "Parking Boulangerie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.618866, + 47.991795 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "Non concerné", + "ref": "9e89cd76-c89a-11ed-afa1-0242ac120002", + "name": "Parking Salle Polyvalente", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.714751, + 47.989077 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "Non concerné", + "ref": "9e46dd7c-c89a-11ed-afa1-0242ac120002", + "name": "Parking Dojo", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.697983, + 48.045053 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "FRG10S45104A1", + "ref": "9e0235dc-c89a-11ed-afa1-0242ac120002", + "name": "Parking Eglise", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.686007, + 47.945937 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "FRG10S45345A1", + "ref": "9ecf01fc-c89a-11ed-afa1-0242ac120002", + "name": "Parking Mairie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-01", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.729456, + 48.000117 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "Non concerné", + "ref": "9d77585e-c89a-11ed-afa1-0242ac120002", + "name": "Parking Commissariat ", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.715104, + 48.020196 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "Non concerné", + "ref": "9d2d3774-c89a-11ed-afa1-0242ac120002", + "name": "Place du marché", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.72942, + 48.000205 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "Non concerné", + "ref": "9cd734f0-c89a-11ed-afa1-0242ac120002", + "name": "Parking Commissariat ", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.729438, + 48.000162 + ] + }, + "properties": { + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref:EU:EVSE": "Non concerné", + "ref": "9c6588aa-c89a-11ed-afa1-0242ac120002", + "name": "Parking Commissariat ", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Paiement via carte abonnement ou plateforme par scan QR code", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03, + 43.18 + ] + }, + "properties": { + "operator": "BH RESTAURATION", + "owner:ref:FR:SIREN": "478236318", + "email": "restaurantlasource@wanadoo.fr", + "phone": "0613510848", + "network": "BORNES LA SOURCE", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*MAP*P000000007472", + "name": "LA SOURCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-03", + "note": "", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.633379459639794, + 47.230062067926525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "323873174", + "email": "exploitation@freshmile.com", + "phone": "369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1EGYTZ", + "ref": "", + "name": "Ouest Location, Saint Herblain", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.633379459639794, + 47.230062067926525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "323873174", + "email": "exploitation@freshmile.com", + "phone": "369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1EGYTZ", + "ref": "", + "name": "Ouest Location, Saint Herblain", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.633379459639794, + 47.230062067926525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "323873174", + "email": "exploitation@freshmile.com", + "phone": "369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1EGYTZ", + "ref": "", + "name": "Ouest Location, Saint Herblain", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85, + 45.71 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "388727844", + "email": "exploitation@freshmile.com", + "phone": "03 68 78 14 35", + "network": "FRESHMILE", + "ref:EU:EVSE": "Non concerné", + "ref": "5aa39699-a74b-42e3-90ce-7167a52af169", + "name": "STARTERRE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-23", + "note": "Paiement via FRESHMILE", + "source:date": "2023-03-27", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.63768, + 46.367228 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "437983224", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SCEA LES FUIES ", + "ref:EU:EVSE": "FRZMSE175027", + "ref": "E175027", + "name": "IES2022032881180001 ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-20", + "note": "", + "source:date": "2023-02-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.63768, + 46.367228 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "437983224", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SCEA LES FUIES", + "ref:EU:EVSE": "FRZMSE175028", + "ref": "E175028", + "name": "IES2022032881180001", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-20", + "note": "", + "source:date": "2023-02-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.259898, + 48.895916 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77043A", + "ref": "01F5ZAKH61BFRHTER5H6HW5WZH", + "name": "Boitron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.236135, + 48.922424 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77057A", + "ref": "01F5ZAKH61MYV6VSDS728MWJJH", + "name": "Bussières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.236135, + 48.922424 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77057A", + "ref": "01F5ZAKH61MYV6VSDS728MWJJH", + "name": "Bussières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.237932, + 48.416935 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77051A", + "ref": "01F5ZAKH61JKZ0MNXBV9QY3Q22", + "name": "Bray-sur-Seine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-05", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.237932, + 48.416935 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77051A", + "ref": "01F5ZAKH61JKZ0MNXBV9QY3Q22", + "name": "Bray-sur-Seine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-05", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.906949, + 48.882027 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77047A", + "ref": "01F5ZAKH61HVVT0NPS06MV38WB", + "name": "Bouleurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.343567, + 48.69384 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77066A", + "ref": "01F5ZAKH617RS00Z06JRBZ3SP7", + "name": "Cerneux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.906949, + 48.882027 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77047A", + "ref": "01F5ZAKH61HVVT0NPS06MV38WB", + "name": "Bouleurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.435735, + 48.257244 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77046A", + "ref": "01F5ZAKH61YVK6XCWX46CSQAGA", + "name": "Boulancourt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-15", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601874, + 48.56225 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77067A", + "ref": "01F5ZAKH61N10JK8ACTNKVMS13", + "name": "Cesson ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.435735, + 48.257244 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77046A", + "ref": "01F5ZAKH61YVK6XCWX46CSQAGA", + "name": "Boulancourt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-15", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.657576, + 48.195572 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77045A", + "ref": "01F5ZAKH61TPHBTSFND6ME12R8", + "name": "Bougligny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.657576, + 48.195572 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77045A", + "ref": "01F5ZAKH61TPHBTSFND6ME12R8", + "name": "Bougligny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.259898, + 48.895916 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77043A", + "ref": "01F5ZAKH61BFRHTER5H6HW5WZH", + "name": "Boitron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.588406, + 48.526657 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77039A", + "ref": "01F5ZAKH61GKXMHQF39J59JWGZ", + "name": "Boissise-la-Bertrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13829, + 48.8218 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77042A", + "ref": "01F5ZAKH611V33JBR9K727DM53", + "name": "Boissy-le-Châtel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.13829, + 48.8218 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77042A", + "ref": "01F5ZAKH611V33JBR9K727DM53", + "name": "Boissy-le-Châtel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.561816, + 48.503139 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77040B", + "ref": "01F5ZAKH612745HQQ6N39DZXC6", + "name": "Boissise-le-Roi - Orgenoy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-29", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.561816, + 48.503139 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77040B", + "ref": "01F5ZAKH612745HQQ6N39DZXC6", + "name": "Boissise-le-Roi - Orgenoy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-29", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.570593, + 48.525444 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77040A", + "ref": "01F5ZAKH61V1G21XD9YK3CT4W9", + "name": "Boissise-le-Roi - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.570593, + 48.525444 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77040A", + "ref": "01F5ZAKH61V1G21XD9YK3CT4W9", + "name": "Boissise-le-Roi - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.541457, + 48.499256 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77435A", + "ref": "01F5ZAKH61GB3Q6R56FSTMZADS", + "name": "St-Sauveur-sur-Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.226534, + 48.684597 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77036A", + "ref": "01F5ZAKH61R7A2RC6PQKY808ZR", + "name": "Boisdon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-23", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.226534, + 48.684597 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77036A", + "ref": "01F5ZAKH61R7A2RC6PQKY808ZR", + "name": "Boisdon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-23", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.24285, + 48.678036 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77033A", + "ref": "01F5ZAKH61N9MR617QEESG9B58", + "name": "Bezalles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.24285, + 48.678036 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77033A", + "ref": "01F5ZAKH61N9MR617QEESG9B58", + "name": "Bezalles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.244617, + 48.702133 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77032A", + "ref": "01F5ZAKH61Z4V01APHPD4HN65N", + "name": "Beton-Bazoches", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.244617, + 48.702133 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77032A", + "ref": "01F5ZAKH61Z4V01APHPD4HN65N", + "name": "Beton-Bazoches", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.343567, + 48.69384 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77066A", + "ref": "01F5ZAKH617RS00Z06JRBZ3SP7", + "name": "Cerneux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.806383, + 49.039307 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77437A", + "ref": "01F5ZAKH61WTEKG4MTFSZFAC2M", + "name": "St-Soupplets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.601874, + 48.56225 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77067A", + "ref": "01F5ZAKH61N10JK8ACTNKVMS13", + "name": "Cesson ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.70119, + 48.149586 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77099A", + "ref": "01F5ZAKH610W301VEXX0C9G8HD", + "name": "Château-Landon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.938246, + 48.675091 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77031A", + "ref": "01F5ZAKH617HMA9QVJ43VQ9F5W", + "name": "Bernay-Vilbert - Salle des fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.841548, + 48.664284 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77107A", + "ref": "01F5ZAKH6150BCSKADS949NNAX", + "name": "Chaumes-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.841548, + 48.664284 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77107A", + "ref": "01F5ZAKH6150BCSKADS949NNAX", + "name": "Chaumes-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.184065, + 48.81773 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77106A", + "ref": "01F5ZAKH615K9YFB4VNVPPBYS6", + "name": "Chauffry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.184065, + 48.81773 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77106A", + "ref": "01F5ZAKH615K9YFB4VNVPPBYS6", + "name": "Chauffry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.837548, + 48.973423 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77335A", + "ref": "01F5ZAKH618H9RPFGP1PPSK2KW", + "name": "Chauconin-Neufmontiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.837548, + 48.973423 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77335A", + "ref": "01F5ZAKH618H9RPFGP1PPSK2KW", + "name": "Chauconin-Neufmontiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.835017, + 48.529648 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77103A", + "ref": "01F5ZAKH61XXBXBM3V6MWHM2SB", + "name": "Chatillon-la-Borde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.835017, + 48.529648 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77103A", + "ref": "01F5ZAKH61XXBXBM3V6MWHM2SB", + "name": "Chatillon-la-Borde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.62648, + 48.233624 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77102A", + "ref": "01F5ZAKH61FD1B7KBDDZ58ZV6A", + "name": "Chatenoy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-15", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.62648, + 48.233624 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77102A", + "ref": "01F5ZAKH61FD1B7KBDDZ58ZV6A", + "name": "Chatenoy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-15", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.096748, + 48.419575 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77101A", + "ref": "01F5ZAKH61VZ8SH2QWCYV4ZHFE", + "name": "Chatenay-sur-Seine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-19", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.096748, + 48.419575 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77101A", + "ref": "01F5ZAKH61VZ8SH2QWCYV4ZHFE", + "name": "Chatenay-sur-Seine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-19", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.70119, + 48.149586 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77099A", + "ref": "01F5ZAKH610W301VEXX0C9G8HD", + "name": "Château-Landon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.607938, + 48.465767 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77069A", + "ref": "01F5ZAKH6113N1FAJ4SXYZ1B94", + "name": "Chailly-en-Bière - Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.700847, + 48.488678 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77096A", + "ref": "01F5ZAKH61NJM3N38YN4AFMA86", + "name": "Chartrettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-15", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.700847, + 48.488678 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77096A", + "ref": "01F5ZAKH61NJM3N38YN4AFMA86", + "name": "Chartrettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-15", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.760311, + 48.971008 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77095A", + "ref": "01F5ZAKH61TNF7SHNE997NPZ1R", + "name": "Charny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.760311, + 48.971008 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77095A", + "ref": "01F5ZAKH61TNF7SHNE997NPZ1R", + "name": "Charny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.250729, + 48.482674 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77076A", + "ref": "01F5ZAKH61KHC09TQDPBX6EE2Z", + "name": "Chalmaison", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-30", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.250729, + 48.482674 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77076A", + "ref": "01F5ZAKH61KHC09TQDPBX6EE2Z", + "name": "Chalmaison", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-30", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.314407, + 48.529079 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77073A", + "ref": "01F5ZAKH61TG3DXJGS087Z7W4Q", + "name": "Chalautre-la-Petite", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.314407, + 48.529079 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77073A", + "ref": "01F5ZAKH61TG3DXJGS087Z7W4Q", + "name": "Chalautre-la-Petite", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.459796, + 48.54184 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77072A", + "ref": "01F5ZAKH619WAB3P82F16EMC0Y", + "name": "Chalautre-la-Grande", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-19", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.459796, + 48.54184 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77072A", + "ref": "01F5ZAKH619WAB3P82F16EMC0Y", + "name": "Chalautre-la-Grande", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-19", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.124815, + 48.79105 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77070A", + "ref": "01F5ZAKH61GF4TYVNHGJZN4V37", + "name": "Chailly-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.124815, + 48.79105 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77070A", + "ref": "01F5ZAKH61GF4TYVNHGJZN4V37", + "name": "Chailly-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.607938, + 48.465767 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77069A", + "ref": "01F5ZAKH6113N1FAJ4SXYZ1B94", + "name": "Chailly-en-Bière - Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.938246, + 48.675091 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77031A", + "ref": "01F5ZAKH617HMA9QVJ43VQ9F5W", + "name": "Bernay-Vilbert - Salle des fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.165309, + 48.439373 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77524A", + "ref": "01F5ZAKH61QHH4V61S5VESVP7P", + "name": "Vimpelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-19", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.318183, + 48.85722 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77030A", + "ref": "01F5ZAKH61DSK7H79WFYF7T5RT", + "name": "Bellot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.318183, + 48.85722 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77030A", + "ref": "01F5ZAKH61DSK7H79WFYF7T5RT", + "name": "Bellot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.835405, + 48.644661 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77493A", + "ref": "01F5ZAKH61B1QR8NPNPA5FB6XD", + "name": "Verneuil-l'Etang", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.848262, + 48.325367 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77501A", + "ref": "01F5ZAKH61WWA0H0Y8X8NR586D", + "name": "Villecerf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-30", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.848262, + 48.325367 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77501A", + "ref": "01F5ZAKH61WWA0H0Y8X8NR586D", + "name": "Villecerf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-30", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.830368, + 48.813721 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77508A", + "ref": "01F5ZAKH61ED7429VDSMRNSYCR", + "name": "Villeneuve-le-Comte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.830368, + 48.813721 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77508A", + "ref": "01F5ZAKH61ED7429VDSMRNSYCR", + "name": "Villeneuve-le-Comte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.343021, + 48.861053 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77512A", + "ref": "01F5ZAKH61FTXDZBQKSYMRJR4Q", + "name": "Villeneuve-sur-Bellot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.343021, + 48.861053 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77512A", + "ref": "01F5ZAKH61FTXDZBQKSYMRJR4Q", + "name": "Villeneuve-sur-Bellot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.895756, + 48.342731 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77516A", + "ref": "01F5ZAKH61543XR9FNK0WBWB8W", + "name": "Ville-St-Jacques", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.895756, + 48.342731 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77516A", + "ref": "01F5ZAKH61543XR9FNK0WBWB8W", + "name": "Ville-St-Jacques", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.672179, + 48.900551 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77517A", + "ref": "01F5ZAKH61ZBJNVVX7GPVZJR86", + "name": "Villevaudé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.672179, + 48.900551 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77517A", + "ref": "01F5ZAKH61ZBJNVVX7GPVZJR86", + "name": "Villevaudé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.599086, + 48.494175 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77518A", + "ref": "01F5ZAKH6137W78F5N8C2QK3VA", + "name": "Villiers-en-Bière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.599086, + 48.494175 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77518A", + "ref": "01F5ZAKH6137W78F5N8C2QK3VA", + "name": "Villiers-en-Bière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.406241, + 48.649963 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77519A", + "ref": "01F5ZAKH61226N04Q3D9F4JANT", + "name": "Villiers-St-Georges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.406241, + 48.649963 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77519A", + "ref": "01F5ZAKH61226N04Q3D9F4JANT", + "name": "Villiers-St-Georges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.376131, + 48.455891 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77522A", + "ref": "01F5ZAKH61DPW9CNSTFH732PYT", + "name": "Villiers-sur-Seine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.376131, + 48.455891 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77522A", + "ref": "01F5ZAKH61DPW9CNSTFH732PYT", + "name": "Villiers-sur-Seine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.165309, + 48.439373 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77524A", + "ref": "01F5ZAKH61QHH4V61S5VESVP7P", + "name": "Vimpelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-19", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.195108, + 48.616379 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77109A", + "ref": "01F5ZAKH61QTR7Y591GGPT9YSB", + "name": "Chenoise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.003289, + 48.690327 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77527A", + "ref": "01F5ZAKH61JRJ229GGPBXGQRTW", + "name": "Voinsles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.003289, + 48.690327 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77527A", + "ref": "01F5ZAKH61JRJ229GGPBXGQRTW", + "name": "Voinsles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.664648, + 48.571087 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77528A", + "ref": "01F5ZAKH61JQAJB8N08A2XPVV4", + "name": "Voisenon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.664648, + 48.571087 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77528A", + "ref": "01F5ZAKH61JQAJB8N08A2XPVV4", + "name": "Voisenon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969121, + 48.282539 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77531A", + "ref": "01F5ZAKH61R37GJPE2BGRQBVFE", + "name": "Voulx - Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969121, + 48.282539 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77531A", + "ref": "01F5ZAKH61R37GJPE2BGRQBVFE", + "name": "Voulx - Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.773878, + 48.637527 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77534A", + "ref": "01F5ZAKH6106Q394Y3BDB7BX3R", + "name": "Yebles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.773878, + 48.637527 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77534A", + "ref": "01F5ZAKH6106Q394Y3BDB7BX3R", + "name": "Yebles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.835405, + 48.644661 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77493A", + "ref": "01F5ZAKH61B1QR8NPNPA5FB6XD", + "name": "Verneuil-l'Etang", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.092751, + 49.046368 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77490A", + "ref": "01F5ZAKH611S01G19MY7TRAAAD", + "name": "Vendrest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-05", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.092751, + 49.046368 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77490A", + "ref": "01F5ZAKH611S01G19MY7TRAAAD", + "name": "Vendrest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-05", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.718575, + 48.924843 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77005A", + "ref": "01F5ZAKH60Q14BJPZFWR9V3SJP", + "name": "Annet-sur-Marne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-23", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.478393, + 48.139336 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77027A", + "ref": "01F5ZAKH60ECP5XDNXDFK3HVCM", + "name": "Beaumont-du-Gâtinais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.478393, + 48.139336 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77027A", + "ref": "01F5ZAKH60ECP5XDNXDFK3HVCM", + "name": "Beaumont-du-Gâtinais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.188327, + 48.398651 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77025A", + "ref": "01F5ZAKH6018FD3AN16N6CZ5B0", + "name": "Bazoche-les-Bray", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.188327, + 48.398651 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77025A", + "ref": "01F5ZAKH6018FD3AN16N6CZ5B0", + "name": "Bazoche-les-Bray", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.603382, + 48.44495 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77022A", + "ref": "01F5ZAKH60YBBWPJTRVZESZ26B", + "name": "Barbizon - Office de tourisme - AC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.603382, + 48.44495 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77022A", + "ref": "01F5ZAKH60YBBWPJTRVZESZ26B", + "name": "Barbizon - Office de tourisme - AC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.146731, + 48.398796 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77019A", + "ref": "01F5ZAKH602FGPT3MJJY9A3TN0", + "name": "Balloy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.146731, + 48.398796 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77019A", + "ref": "01F5ZAKH602FGPT3MJJY9A3TN0", + "name": "Balloy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.706278, + 48.231504 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77016A", + "ref": "01F5ZAKH60YSH183AXJKF1QDE3", + "name": "Bagneaux sur Loing", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-25", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.706278, + 48.231504 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77016A", + "ref": "01F5ZAKH60YSH183AXJKF1QDE3", + "name": "Bagneaux sur Loing", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-25", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.021658, + 48.97871 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77008A", + "ref": "01F5ZAKH60BBZ8ARN3XJK3K1JT", + "name": "Armentières-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.021658, + 48.97871 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77008A", + "ref": "01F5ZAKH60BBZ8ARN3XJK3K1JT", + "name": "Armentières-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.718575, + 48.924843 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77005A", + "ref": "01F5ZAKH60Q14BJPZFWR9V3SJP", + "name": "Annet-sur-Marne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-23", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.080205, + 48.688385 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77486A", + "ref": "01F5ZAKH61BST212NKJMVXM29X", + "name": "Vaudoy-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.531976, + 48.279121 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77003A", + "ref": "01F5ZAKH6058QXP88C4EMXM9MN", + "name": "Amponville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.531976, + 48.279121 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77003A", + "ref": "01F5ZAKH6058QXP88C4EMXM9MN", + "name": "Amponville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56414, + 48.348167 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77001A", + "ref": "01F5ZAKH60ESS2APKE7BR49DN1", + "name": "Achères-la-Forêt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56414, + 48.348167 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77001A", + "ref": "01F5ZAKH60ESS2APKE7BR49DN1", + "name": "Achères-la-Forêt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.947197, + 48.958482 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77475A", + "ref": "01F5ZAKH61J186694WWK9SKV1B", + "name": "Trilport - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-04", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.602099, + 48.342205 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77477A", + "ref": "01F5ZAKH61JC7J36YVW9KYEWZS", + "name": "Ury - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.602099, + 48.342205 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77477A", + "ref": "01F5ZAKH61JC7J36YVW9KYEWZS", + "name": "Ury - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.891339, + 48.44434 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77480A", + "ref": "01F5ZAKH61SRQ9A5PY53130HYM", + "name": "Valence-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.891339, + 48.44434 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77480A", + "ref": "01F5ZAKH61SRQ9A5PY53130HYM", + "name": "Valence-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.92905, + 48.375946 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77482A", + "ref": "01F5ZAKH61AN7SE9N3CG32EQS1", + "name": "Varennes-sur-Seine ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.92905, + 48.375946 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77482A", + "ref": "01F5ZAKH61AN7SE9N3CG32EQS1", + "name": "Varennes-sur-Seine ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.080205, + 48.688385 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77486A", + "ref": "01F5ZAKH61BST212NKJMVXM29X", + "name": "Vaudoy-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.195108, + 48.616379 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77109A", + "ref": "01F5ZAKH61QTR7Y591GGPT9YSB", + "name": "Chenoise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.588406, + 48.526657 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77039A", + "ref": "01F5ZAKH61GKXMHQF39J59JWGZ", + "name": "Boissise-la-Bertrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.219879, + 48.758823 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77116A", + "ref": "01F5ZAKH61K4NJ8AEGN29B15RV", + "name": "Choisy-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-23", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.985625, + 48.941795 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77300A", + "ref": "01F5ZAKH61G266A66SE9DG9B7G", + "name": "Montceaux-les-Meaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.427434, + 48.851772 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77303A", + "ref": "01F5ZAKH6160PFDJT763HCR33P", + "name": "Montdauphin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.69995, + 48.30003 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77302A", + "ref": "01F5ZAKH61J7W7NMHQMVEC2RA6", + "name": "Montcourt-Fromonville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.69995, + 48.30003 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77302A", + "ref": "01F5ZAKH61J7W7NMHQMVEC2RA6", + "name": "Montcourt-Fromonville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.438183, + 48.694653 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77301A", + "ref": "01F5ZAKH61TR6BXJYMH25Q81SG", + "name": "Montceaux-les-Provins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.438183, + 48.694653 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77301A", + "ref": "01F5ZAKH61TR6BXJYMH25Q81SG", + "name": "Montceaux-les-Provins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.985625, + 48.941795 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77300A", + "ref": "01F5ZAKH61G266A66SE9DG9B7G", + "name": "Montceaux-les-Meaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.850102, + 48.349255 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77299A", + "ref": "01F5ZAKH612583SBGWNS3MWAKW", + "name": "Montarlot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.743907, + 49.025669 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77308A", + "ref": "01F5ZAKH61F9D9W7GGTNGS2NBF", + "name": "Montge-en-Goele", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.850102, + 48.349255 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77299A", + "ref": "01F5ZAKH612583SBGWNS3MWAKW", + "name": "Montarlot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.581679, + 49.03389 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77282A", + "ref": "01F5ZAKH61Z5005NWZFCN4S2YP", + "name": "Mauregard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.581679, + 49.03389 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77282A", + "ref": "01F5ZAKH61Z5005NWZFCN4S2YP", + "name": "Mauregard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.163473, + 48.7766 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77278A", + "ref": "01F5ZAKH61J9TRC0E6S2PE96KG", + "name": "Marolles-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.163473, + 48.7766 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77278A", + "ref": "01F5ZAKH61J9TRC0E6S2PE96KG", + "name": "Marolles-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.034994, + 48.38625 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77279A", + "ref": "01F5ZAKH61AYQENVTDGRD2NHFM", + "name": "Marolles sur seine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.427434, + 48.851772 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77303A", + "ref": "01F5ZAKH6160PFDJT763HCR33P", + "name": "Montdauphin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.743907, + 49.025669 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77308A", + "ref": "01F5ZAKH61F9D9W7GGTNGS2NBF", + "name": "Montge-en-Goele", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.859685, + 48.926731 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77276A", + "ref": "01F5ZAKH61A2VGXQ2FPA7YGD3Y", + "name": "Mareuil-les-Meaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.915816, + 48.789227 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77318A", + "ref": "01F5ZAKH61V9K8ZRSR3XPB92V5", + "name": "Mortcerf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.830538, + 48.768833 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77336A", + "ref": "01F5ZAKH6198YFVGWBKKTW620N", + "name": "Neufmoutiers-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-08", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.565315, + 48.580364 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77326A", + "ref": "01F5ZAKH61TJN1VMHBQF5R1GH5", + "name": "Nandy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.565315, + 48.580364 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77326A", + "ref": "01F5ZAKH61TJN1VMHBQF5R1GH5", + "name": "Nandy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.603089, + 49.064533 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77322A", + "ref": "01F5ZAKH61J9776V0ADCNMGHWC", + "name": "Moussy-le-Neuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.603089, + 49.064533 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77322A", + "ref": "01F5ZAKH61J9776V0ADCNMGHWC", + "name": "Moussy-le-Neuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.915816, + 48.789227 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77318A", + "ref": "01F5ZAKH61V9K8ZRSR3XPB92V5", + "name": "Mortcerf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8905, + 48.6065 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77317A", + "ref": "01F5ZAKH61ZAYE68C06G8Q9BMV", + "name": "Mormant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-19", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.828918, + 49.00922 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77309A", + "ref": "01F5ZAKH61WGK1CSYFH3ZXEPXT", + "name": "Monthyon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8905, + 48.6065 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77317A", + "ref": "01F5ZAKH61ZAYE68C06G8Q9BMV", + "name": "Mormant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-19", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.060808, + 48.452545 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77311A", + "ref": "01F5ZAKH617FRP6TWWNWE4P3A6", + "name": "Montigny-Lencoup", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-29", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.060808, + 48.452545 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77311A", + "ref": "01F5ZAKH617FRP6TWWNWE4P3A6", + "name": "Montigny-Lencoup", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-29", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.253999, + 48.383236 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77310A", + "ref": "01F5ZAKH61QSEA2TT42JQTH6MC", + "name": "Montigny-le-Guesdier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.253999, + 48.383236 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77310A", + "ref": "01F5ZAKH61QSEA2TT42JQTH6MC", + "name": "Montigny-le-Guesdier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.828918, + 49.00922 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77309A", + "ref": "01F5ZAKH61WGK1CSYFH3ZXEPXT", + "name": "Monthyon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.034994, + 48.38625 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77279A", + "ref": "01F5ZAKH61AYQENVTDGRD2NHFM", + "name": "Marolles sur seine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.859685, + 48.926731 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77276A", + "ref": "01F5ZAKH61A2VGXQ2FPA7YGD3Y", + "name": "Mareuil-les-Meaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.928877, + 48.335297 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77338A", + "ref": "01F5ZAKH61X9AQYTM4CDF50Y9A", + "name": "Noisy-Rudignon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.033389, + 48.713238 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77365A", + "ref": "01F5ZAKH61N4G320YY8QC4KCNC", + "name": "Le Plessis-Feu-Aussoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-13", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.66521, + 48.62632 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77252A", + "ref": "01F5ZAKH614FJF81C3AAMX98NB", + "name": "Limoges-Fourches", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.615704, + 48.747417 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77249A", + "ref": "01403a42-66f5-4e60-bcd6-8f6cb0af432a", + "name": "Lésigny - centre commercial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.615704, + 48.747417 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77249A", + "ref": "01403a42-66f5-4e60-bcd6-8f6cb0af432a", + "name": "Lésigny - centre commercial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.860826, + 48.50412 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77165A", + "ref": "01F5ZAKH61MEPVMYM1JS6XDRYK", + "name": "Les Ecrennes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.860826, + 48.50412 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77165A", + "ref": "01F5ZAKH61MEPVMYM1JS6XDRYK", + "name": "Les Ecrennes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.033389, + 48.713238 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77365A", + "ref": "01F5ZAKH61N4G320YY8QC4KCNC", + "name": "Le Plessis-Feu-Aussoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-13", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.591242, + 49.017696 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77291A", + "ref": "01F5ZAKH618FMNXABED9698TMX", + "name": "Le Mesnil-Amelot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.694243, + 48.626202 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77253A", + "ref": "01F5ZAKH61XPEKRDF6YA7HMZZA", + "name": "Lissy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-13", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.591242, + 49.017696 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77291A", + "ref": "01F5ZAKH618FMNXABED9698TMX", + "name": "Le Mesnil-Amelot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64036, + 48.542576 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77285A", + "ref": "01F5ZAKH61MHDXZ175HME2B2NY", + "name": "Le Mée-sur-Seine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64036, + 48.542576 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77285A", + "ref": "01F5ZAKH61MHDXZ175HME2B2NY", + "name": "Le Mée-sur-Seine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800076, + 48.509586 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77100B", + "ref": "01F5ZAKH615GBMD56QDRJ7JNPA", + "name": "Le Châtelet-en-Brie / CCVC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800076, + 48.509586 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77100B", + "ref": "01F5ZAKH615GBMD56QDRJ7JNPA", + "name": "Le Châtelet-en-Brie / CCVC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.79478, + 48.505161 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77100A", + "ref": "01F5ZAKH61P9VBJ8QTZVKEFRX1", + "name": "Le Châtelet-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.66521, + 48.62632 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77252A", + "ref": "01F5ZAKH614FJF81C3AAMX98NB", + "name": "Limoges-Fourches", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.694243, + 48.626202 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77253A", + "ref": "01F5ZAKH61XPEKRDF6YA7HMZZA", + "name": "Lissy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-13", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.771959, + 49.049637 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77273A", + "ref": "01F5ZAKH61NTEXBAEVC7N8XSSE", + "name": "Marchemoret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-23", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.700226, + 48.548374 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77269A", + "ref": "01F5ZAKH61NA6C8BWKXA4ZJN6B", + "name": "Maincy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.771959, + 49.049637 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77273A", + "ref": "01F5ZAKH61NTEXBAEVC7N8XSSE", + "name": "Marchemoret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-23", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.151188, + 48.558975 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77272A", + "ref": "01F5ZAKH61281F27RSXT6EQ5NW", + "name": "Maison-Rouge-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.151188, + 48.558975 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77272A", + "ref": "01F5ZAKH61281F27RSXT6EQ5NW", + "name": "Maison-Rouge-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.991441, + 48.862556 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77270A", + "ref": "01F5ZAKH61ARJ2FXM1YTQCNDGM", + "name": "Mainsoncelles-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.991441, + 48.862556 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77270A", + "ref": "01F5ZAKH61ARJ2FXM1YTQCNDGM", + "name": "Mainsoncelles-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.700226, + 48.548374 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77269A", + "ref": "01F5ZAKH61NA6C8BWKXA4ZJN6B", + "name": "Maincy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.829, + 48.455761 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77266A", + "ref": "01F5ZAKH61GVE1W45TQMVHRR86", + "name": "Machault - Pressoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-29", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.688477, + 48.511044 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77255A", + "ref": "01F5ZAKH61ZBQTS3PR3ATPQQHJ", + "name": "Livry-sur-Seine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-18", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.829, + 48.455761 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77266A", + "ref": "01F5ZAKH61GVE1W45TQMVHRR86", + "name": "Machault - Pressoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-29", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.246524, + 48.513992 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77260A", + "ref": "01F5ZAKH61MGQBB90EPZZ6RBP9", + "name": "Longueville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-19", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.246524, + 48.513992 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77260A", + "ref": "01F5ZAKH61MGQBB90EPZZ6RBP9", + "name": "Longueville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-19", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.026891, + 49.025196 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77257A", + "ref": "01F5ZAKH614YH6Y44CRNT61J05", + "name": "Lizy-sur-Ourcq - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.026891, + 49.025196 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77257A", + "ref": "01F5ZAKH614YH6Y44CRNT61J05", + "name": "Lizy-sur-Ourcq - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.688477, + 48.511044 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77255A", + "ref": "01F5ZAKH61ZBQTS3PR3ATPQQHJ", + "name": "Livry-sur-Seine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-18", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.830538, + 48.768833 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77336A", + "ref": "01F5ZAKH6198YFVGWBKKTW620N", + "name": "Neufmoutiers-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-08", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.928877, + 48.335297 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77338A", + "ref": "01F5ZAKH61X9AQYTM4CDF50Y9A", + "name": "Noisy-Rudignon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59789, + 48.283298 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77244A", + "ref": "01F5ZAKH61Y8K5YQPJP1YT4BZ0", + "name": "Larchant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-10-25", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.750641, + 48.52702 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77453A", + "ref": "01F5ZAKH615T44TYYE5HJP8AXY", + "name": "Sivry courty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-29", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.717254, + 48.657776 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77457A", + "ref": "01F5ZAKH6188ZPT0CHFCQQM031", + "name": "Solers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-23", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.289959, + 48.509865 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77456A", + "ref": "01F5ZAKH610WZFNN06YE1R2PHP", + "name": "Soisy-Bouy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.289959, + 48.509865 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77456A", + "ref": "01F5ZAKH610WZFNN06YE1R2PHP", + "name": "Soisy-Bouy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.69905, + 48.652874 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77455A", + "ref": "01F5ZAKH61V21XFV3EBBW23ZCJ", + "name": "Soignolles-en-Brie - rue de Champeaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.69905, + 48.652874 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77455A", + "ref": "01F5ZAKH61V21XFV3EBBW23ZCJ", + "name": "Soignolles-en-Brie - rue de Champeaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.750641, + 48.52702 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77453A", + "ref": "01F5ZAKH615T44TYYE5HJP8AXY", + "name": "Sivry courty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-29", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.068419, + 48.92791 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77451A", + "ref": "01F5ZAKH61M738W0VVEKZ9J14G", + "name": "Signy-Signets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.73093, + 48.18083 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77458A", + "ref": "01F7RQ4ZF5QVYGXR1RG90QKZ3X", + "name": "Souppes sur Loing", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.068419, + 48.92791 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77451A", + "ref": "01F5ZAKH61M738W0VVEKZ9J14G", + "name": "Signy-Signets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.549188, + 48.557755 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77447A", + "ref": "01F5ZAKH61B7EXKKHQQMPAKWF5", + "name": "Seine-Port - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-30", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.549188, + 48.557755 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77447A", + "ref": "01F5ZAKH61B7EXKKHQQMPAKWF5", + "name": "Seine-Port - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-30", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.582113, + 48.596577 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77445A", + "ref": "01F5ZAKH61K49RBSYZC50SY52B", + "name": "Savigny-le-Temple", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.582113, + 48.596577 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77445A", + "ref": "01F5ZAKH61K49RBSYZC50SY52B", + "name": "Savigny-le-Temple", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.961653, + 48.885735 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77443A", + "ref": "01F5ZAKH61N7MXZGDJMEN8TQYQ", + "name": "Sancy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.717254, + 48.657776 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77457A", + "ref": "01F5ZAKH6188ZPT0CHFCQQM031", + "name": "Solers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-23", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.73093, + 48.18083 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77458A", + "ref": "01F7RQ4ZF5QVYGXR1RG90QKZ3X", + "name": "Souppes sur Loing", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.023394, + 48.421993 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77439A", + "ref": "01F5ZAKH61NHB83D9ESKR7X5BM", + "name": "Salins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.828953, + 48.578262 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77426A", + "ref": "01F5ZAKH61GSQNYV98299GXJRZ", + "name": "St-Méry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.541457, + 48.499256 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77435A", + "ref": "01F5ZAKH61GB3Q6R56FSTMZADS", + "name": "St-Sauveur-sur-Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.232304, + 48.792183 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77432A", + "ref": "01F5ZAKH61A4FD8RXE2D5HVXZP", + "name": "St-Rémy-la-Vanne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.232304, + 48.792183 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77432A", + "ref": "01F5ZAKH61A4FD8RXE2D5HVXZP", + "name": "St-Rémy-la-Vanne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.915421, + 48.558926 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77428A", + "ref": "01F5ZAKH61DRET8WA96DW8JABX", + "name": "St-Ouen-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.915421, + 48.558926 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77428A", + "ref": "01F5ZAKH61DRET8WA96DW8JABX", + "name": "St-Ouen-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.828953, + 48.578262 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77426A", + "ref": "01F5ZAKH61GSQNYV98299GXJRZ", + "name": "St-Méry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.708959, + 48.58168 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77410A", + "ref": "01F5ZAKH61WGPSNTS8EQJ6902S", + "name": "St-Germain-Laxis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-15", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35406, + 48.537212 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77459A", + "ref": "01F5ZAKH61X8484D24XKRFEH9V", + "name": "Sourdun - Petit Paraclet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.708959, + 48.58168 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77410A", + "ref": "01F5ZAKH61WGPSNTS8EQJ6902S", + "name": "St-Germain-Laxis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-15", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.18528, + 48.906219 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77405A", + "ref": "01F5ZAKH61XCEQM4H8763DKJRV", + "name": "St-Cyr-sur-Morin ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-23", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.18528, + 48.906219 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77405A", + "ref": "01F5ZAKH61XCEQM4H8763DKJRV", + "name": "St-Cyr-sur-Morin ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-23", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.324744, + 48.566856 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77403A", + "ref": "01F5ZAKH61FG0J89KJ37MYHJGE", + "name": "St-Brice", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.324744, + 48.566856 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77403A", + "ref": "01F5ZAKH61FG0J89KJ37MYHJGE", + "name": "St-Brice", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35406, + 48.537212 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77459A", + "ref": "01F5ZAKH61X8484D24XKRFEH9V", + "name": "Sourdun - Petit Paraclet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.961653, + 48.885735 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77443A", + "ref": "01F5ZAKH61N7MXZGDJMEN8TQYQ", + "name": "Sancy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.023394, + 48.421993 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77439A", + "ref": "01F5ZAKH61NHB83D9ESKR7X5BM", + "name": "Salins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.496094, + 48.373798 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77339A", + "ref": "01F5ZAKH6106W1EHH3HABH1GG9", + "name": "Noisy-sur-Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-15", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.772659, + 48.660645 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77352A", + "ref": "01F5ZAKH61JC7JD541PZX91Q19", + "name": "Ozouer-le-Voulgis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.984761, + 48.734184 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77360A", + "ref": "01F5ZAKH61QWHK70G0X1BKPBN8", + "name": "Pézarches", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-02", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552458, + 48.474224 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77359A", + "ref": "01F5ZAKH61J4GEKKMK6ZRRDMHV", + "name": "Perthes-en-Gatinais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552458, + 48.474224 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77359A", + "ref": "01F5ZAKH61J4GEKKMK6ZRRDMHV", + "name": "Perthes-en-Gatinais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.079428, + 48.656075 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77357A", + "ref": "01F5ZAKH61JWDDTJEE5S4C3RY1", + "name": "Pécy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-02", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.079428, + 48.656075 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77357A", + "ref": "01F5ZAKH61JWDDTJEE5S4C3RY1", + "name": "Pécy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-02", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.772659, + 48.660645 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77352A", + "ref": "01F5ZAKH61JC7JD541PZX91Q19", + "name": "Ozouer-le-Voulgis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.654417, + 48.243546 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77348A", + "ref": "01F5ZAKH61HXHE8EZ4KVA08RHB", + "name": "Ormesson", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.040816, + 48.899723 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77361A", + "ref": "01F5ZAKH6106VFGF12QKK3NDS9", + "name": "Pierre-Levée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.654417, + 48.243546 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77348A", + "ref": "01F5ZAKH61HXHE8EZ4KVA08RHB", + "name": "Ormesson", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.229534, + 48.904442 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77345A", + "ref": "01F5ZAKH615QZ24N94SBS0KBQ3", + "name": "Orly-sur-Morin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-02", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.229534, + 48.904442 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77345A", + "ref": "01F5ZAKH615QZ24N94SBS0KBQ3", + "name": "Orly-sur-Morin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-02", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35106, + 48.45281 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77341A", + "ref": "01F5ZAKH614YDA9431KPAVPBE3", + "name": "Noyen-sur-Seine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-30", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35106, + 48.45281 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77341A", + "ref": "01F5ZAKH614YDA9431KPAVPBE3", + "name": "Noyen-sur-Seine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-30", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.496094, + 48.373798 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77339A", + "ref": "01F5ZAKH6106W1EHH3HABH1GG9", + "name": "Noisy-sur-Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-15", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.984761, + 48.734184 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77360A", + "ref": "01F5ZAKH61QWHK70G0X1BKPBN8", + "name": "Pézarches", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-02", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.040816, + 48.899723 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77361A", + "ref": "01F5ZAKH6106VFGF12QKK3NDS9", + "name": "Pierre-Levée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.048279, + 48.758305 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77433A", + "ref": "01F5ZAKH614BC0DWNSTX28T6S1", + "name": "Saints", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.238447, + 48.850102 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77385B", + "ref": "01F5ZAKH61AR5S7HGFBEWKSTVH", + "name": "Rebais - aire covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.048279, + 48.758305 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77433A", + "ref": "01F5ZAKH614BC0DWNSTX28T6S1", + "name": "Saints", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29573, + 48.875221 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77398A", + "ref": "01F5ZAKH613YAZN3S2J4AMDG4C", + "name": "Sablonnière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-05", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29573, + 48.875221 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77398A", + "ref": "01F5ZAKH613YAZN3S2J4AMDG4C", + "name": "Sablonnière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-05", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.639528, + 48.346184 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77386A", + "ref": "01F5ZAKH61B707RBDK5EFTM5VT", + "name": "Recloses", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.639528, + 48.346184 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77386A", + "ref": "01F5ZAKH61B707RBDK5EFTM5VT", + "name": "Recloses", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.238447, + 48.850102 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77385B", + "ref": "01F5ZAKH61AR5S7HGFBEWKSTVH", + "name": "Rebais - aire covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.233131, + 48.848412 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77385A", + "ref": "01F5ZAKH61BXDNWWQ0ST5558Y4", + "name": "Rebais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.281679, + 48.539558 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77368A", + "ref": "01F5ZAKH61BJ58DFFJ4X4N2B6Z", + "name": "Poigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.233131, + 48.848412 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77385A", + "ref": "01F5ZAKH61BXDNWWQ0ST5558Y4", + "name": "Rebais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.62365, + 48.610615 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77384A", + "ref": "01F5ZAKH61YS90NBC7MSK83QP2", + "name": "Reau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.62365, + 48.610615 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77384A", + "ref": "01F5ZAKH61YS90NBC7MSK83QP2", + "name": "Reau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.740637, + 48.714993 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77377A", + "ref": "01F5ZAKH617Z7JPB2W1XVCXPCM", + "name": "Presles-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.740637, + 48.714993 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77377A", + "ref": "01F5ZAKH617Z7JPB2W1XVCXPCM", + "name": "Presles-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.281679, + 48.539558 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77368A", + "ref": "01F5ZAKH61BJ58DFFJ4X4N2B6Z", + "name": "Poigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.219879, + 48.758823 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77116A", + "ref": "01F5ZAKH61K4NJ8AEGN29B15RV", + "name": "Choisy-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-23", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.79478, + 48.505161 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77100A", + "ref": "01F5ZAKH61P9VBJ8QTZVKEFRX1", + "name": "Le Châtelet-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.945185, + 48.463512 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77164A", + "ref": "01F5ZAKH61Z73TMEPH6TZXVW5G", + "name": "Echouboulains", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.660926, + 48.521801 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77389A", + "ref": "01F5ZAKH61H3RP369G9Z4HJ948", + "name": "La Rochette - Théodore Rousseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.021417, + 48.343342 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77054A", + "ref": "01F5ZAKH616DTB2ER6983K24PN", + "name": "La-Brosse-Montceaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.671611, + 48.965435 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77214A", + "ref": "01F5ZAKH61MVDX55W13APA2PV6", + "name": "Gressy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.120485, + 48.398468 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77212A", + "ref": "01F5ZAKH61HT51HJANTGRK3N18", + "name": "Gravon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.120485, + 48.398468 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77212A", + "ref": "01F5ZAKH61HT51HJANTGRK3N18", + "name": "Gravon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.293563, + 48.482601 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77208A", + "ref": "01F5ZAKH61Q3TKEJKHYAZT3HRD", + "name": "Gouaix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.293563, + 48.482601 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77208A", + "ref": "01F5ZAKH61Q3TKEJKHYAZT3HRD", + "name": "Gouaix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.744265, + 48.939857 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77196A", + "ref": "01F5ZAKH61FZ04WKXSKB4BZKFD", + "name": "Fresnes-sur-Marne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.744265, + 48.939857 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77196A", + "ref": "01F5ZAKH61FZ04WKXSKB4BZKFD", + "name": "Fresnes-sur-Marne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.961401, + 48.418995 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77194A", + "ref": "01F5ZAKH61QEC61D29D0JQPXP2", + "name": "Forges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.961401, + 48.418995 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77194A", + "ref": "01F5ZAKH61QEC61D29D0JQPXP2", + "name": "Forges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.951969, + 48.555733 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77191A", + "ref": "01F5ZAKH61Q2450FRWGGNY80W5", + "name": "Fontenailles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.951969, + 48.555733 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77191A", + "ref": "01F5ZAKH61Q2450FRWGGNY80W5", + "name": "Fontenailles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.756482, + 48.486507 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77188A", + "ref": "01F5ZAKH61DXWS7JDZRA1P5P49", + "name": "Fontaine-le-Port", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.021417, + 48.343342 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77054A", + "ref": "01F5ZAKH616DTB2ER6983K24PN", + "name": "La-Brosse-Montceaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.305767, + 48.782028 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77182A", + "ref": "01F5ZAKH6188B0GYCB085NCB34", + "name": "La-Ferté-Gaucher - Ernest Delbert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.305767, + 48.782028 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77182A", + "ref": "01F5ZAKH6188B0GYCB085NCB34", + "name": "La-Ferté-Gaucher - Ernest Delbert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-10", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.765274, + 48.448474 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77226A", + "ref": "01F5ZDX6C28GEPQQJHACKBPAZF", + "name": "Héricy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.660926, + 48.521801 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77389A", + "ref": "01F5ZAKH61H3RP369G9Z4HJ948", + "name": "La Rochette - Théodore Rousseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.874503, + 48.75351 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77229A", + "ref": "01F5ZAKH61XMYRQ89RBARGP0C2", + "name": "La Houssaye-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.756482, + 48.486507 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77188A", + "ref": "01F5ZAKH61DXWS7JDZRA1P5P49", + "name": "Fontaine-le-Port", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.874503, + 48.75351 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77229A", + "ref": "01F5ZAKH61XMYRQ89RBARGP0C2", + "name": "La Houssaye-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.349335, + 48.483391 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77227A", + "ref": "01F5ZAKH61X1D8BSQAJ2E72F29", + "name": "Hermé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.825952, + 48.912483 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77232A", + "ref": "01F5ZAKH61V1RD9ZS470MESW77", + "name": "Isles-les-Villenoy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.765274, + 48.448474 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77226A", + "ref": "01F5ZDX6C28GEPQQJHACKBPAZF", + "name": "Héricy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.957987, + 48.822292 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77219A", + "ref": "01F5ZAKH61FPF2MSHNDHDC50N6", + "name": "Guerard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.957987, + 48.822292 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77219A", + "ref": "01F5ZAKH61FPF2MSHNDHDC50N6", + "name": "Guerard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.671611, + 48.965435 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77214A", + "ref": "01F5ZAKH61MVDX55W13APA2PV6", + "name": "Gressy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.825952, + 48.912483 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77232A", + "ref": "01F5ZAKH61V1RD9ZS470MESW77", + "name": "Isles-les-Villenoy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.786925, + 48.999126 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77233A", + "ref": "01F5ZAKH61BSPYP13FFJF1643Y", + "name": "Iverny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.786925, + 48.999126 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77233A", + "ref": "01F5ZAKH61BSPYP13FFJF1643Y", + "name": "Iverny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.054889, + 48.991291 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77235A", + "ref": "01F5ZAKH6190M8XFX4J3JB6Y05", + "name": "Jaignes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.054889, + 48.991291 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77235A", + "ref": "01F5ZAKH6190M8XFX4J3JB6Y05", + "name": "Jaignes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.123814, + 48.92767 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77238A", + "ref": "01F5ZAKH61M7ERN7WVVETNSWC1", + "name": "Jouarre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-02", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.123814, + 48.92767 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77238A", + "ref": "01F5ZAKH61M7ERN7WVVETNSWC1", + "name": "Jouarre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-02", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.568649, + 48.316978 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77088A", + "ref": "01F5ZAKH618NJP57369S0XJBFJ", + "name": "La Chapelle-la-Reine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.568649, + 48.316978 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77088A", + "ref": "01F5ZAKH618NJP57369S0XJBFJ", + "name": "La Chapelle-la-Reine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.971726, + 48.511906 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77089A", + "ref": "01F5ZAKH615TX3C9VPZF2KXTVA", + "name": "La Chapelle-Rablais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-29", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.971726, + 48.511906 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77089A", + "ref": "01F5ZAKH615TX3C9VPZF2KXTVA", + "name": "La Chapelle-Rablais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-29", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59789, + 48.283298 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77244A", + "ref": "01F5ZAKH61Y8K5YQPJP1YT4BZ0", + "name": "Larchant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-10-25", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.349335, + 48.483391 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77227A", + "ref": "01F5ZAKH61X1D8BSQAJ2E72F29", + "name": "Hermé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39162, + 48.41394 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77187A", + "ref": "01F5ZAKH61697B2JJF1YQXZYFQ", + "name": "Fontaine-Fourches", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-25", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.068942, + 49.090664 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77148A", + "ref": "01F5ZAKH611Q923KH5ADARW2HQ", + "name": "Crouy-sur-Ourcq", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635144, + 48.515441 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77152A", + "ref": "01F5ZAKH61BYGVDJ7R63NQGJ33", + "name": "Dammarie-lès-Lys", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635144, + 48.515441 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77152A", + "ref": "01F5ZAKH61BYGVDJ7R63NQGJ33", + "name": "Dammarie-lès-Lys", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684942, + 49.053848 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77153A", + "ref": "01F5ZAKH61G6MNTJGT6FCZKNGZ", + "name": "Dammartin-en-Goële", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684942, + 49.053848 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77153A", + "ref": "01F5ZAKH61G6MNTJGT6FCZKNGZ", + "name": "Dammartin-en-Goële", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.139536, + 48.476547 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77159A", + "ref": "01F5ZAKH61YZWMDZXX2P107VVX", + "name": "Donnemarie-Dontilly - Monpensier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.139536, + 48.476547 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77159A", + "ref": "01F5ZAKH61YZWMDZXX2P107VVX", + "name": "Donnemarie-Dontilly - Monpensier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.945185, + 48.463512 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77164A", + "ref": "01F5ZAKH61Z73TMEPH6TZXVW5G", + "name": "Echouboulains", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.947197, + 48.958482 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77475A", + "ref": "01F5ZAKH61J186694WWK9SKV1B", + "name": "Trilport - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-04", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.674363, + 48.230656 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77178A", + "ref": "01F5ZAKH61XJC9QZRM3CEVSNFE", + "name": "Faÿ-les-Nemours", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.674363, + 48.230656 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77178A", + "ref": "01F5ZAKH61XJC9QZRM3CEVSNFE", + "name": "Faÿ-les-Nemours", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-05-28", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.011744, + 48.735561 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77469A", + "ref": "01F5ZAKH613JA6ST9Z9TX9QQBD", + "name": "Touquin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.011744, + 48.735561 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77469A", + "ref": "01F5ZAKH613JA6ST9Z9TX9QQBD", + "name": "Touquin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.806383, + 49.039307 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77437A", + "ref": "01F5ZAKH61WTEKG4MTFSZFAC2M", + "name": "St-Soupplets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8, + 48.4575 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77179A", + "ref": "01F5ZAKH61Z0GCXDZK54V3RCTZ", + "name": "Féricy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8, + 48.4575 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77179A", + "ref": "01F5ZAKH61Z0GCXDZK54V3RCTZ", + "name": "Féricy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.922666, + 48.312195 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77184A", + "ref": "01F5ZAKH61PCPP9M7Z1HWEX6W9", + "name": "Flagy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.922666, + 48.312195 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77184A", + "ref": "01F5ZAKH61PCPP9M7Z1HWEX6W9", + "name": "Flagy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.068942, + 49.090664 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77148A", + "ref": "01F5ZAKH611Q923KH5ADARW2HQ", + "name": "Crouy-sur-Ourcq", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39162, + 48.41394 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77187A", + "ref": "01F5ZAKH61697B2JJF1YQXZYFQ", + "name": "Fontaine-Fourches", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-25", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08237, + 48.815 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77131B", + "ref": "01F5ZAKH6172NAS9AG8F41KN6S", + "name": "Coulommiers - Rue Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-25", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.960665, + 48.647747 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77135A", + "ref": "01F5ZAKH6180ZSWJ0ABGJ7FH89", + "name": "Courpalay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.687649, + 48.945904 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77118A", + "ref": "01F5ZAKH619XDZ91BD13VZZTK3", + "name": "Claye-Souilly - parking la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.974578, + 49.006927 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77126A", + "ref": "01F5ZAKH61KQMQ3JSMY5G6DTFH", + "name": "Congis-sur-Thérouanne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.974578, + 49.006927 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77126A", + "ref": "01F5ZAKH61KQMQ3JSMY5G6DTFH", + "name": "Congis-sur-Thérouanne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-31", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.085838, + 48.81382 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77131A", + "ref": "01F5ZAKH61AQCGJ7RC8DDB28NY", + "name": "Coulommiers - Place Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-25", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.085838, + 48.81382 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77131A", + "ref": "01F5ZAKH61AQCGJ7RC8DDB28NY", + "name": "Coulommiers - Place Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-25", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08237, + 48.815 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77131B", + "ref": "01F5ZAKH6172NAS9AG8F41KN6S", + "name": "Coulommiers - Rue Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-25", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90766, + 48.75396 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77144A", + "ref": "01F5ZAKH6138RM8VZ0HARNPBDR", + "name": "Crèvecoeur-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.960665, + 48.647747 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77135A", + "ref": "01F5ZAKH6180ZSWJ0ABGJ7FH89", + "name": "Courpalay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.998514, + 48.469975 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77140A", + "ref": "01F5ZAKH61CZMYP29GAQ1GC4HR", + "name": "Coutençon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.998514, + 48.469975 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77140A", + "ref": "01F5ZAKH61CZMYP29GAQ1GC4HR", + "name": "Coutençon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-12", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.906715, + 48.858112 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77142B", + "ref": "01F5ZAKH61NKNCRE4MN5SBC9T6", + "name": "Crécy-la-Chapelle / Champs de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.906715, + 48.858112 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77142B", + "ref": "01F5ZAKH61NKNCRE4MN5SBC9T6", + "name": "Crécy-la-Chapelle / Champs de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.909066, + 48.857899 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77142A", + "ref": "01F5ZAKH615ARP522Z2QF17A8J", + "name": "Crécy-la-Chapelle / Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.909066, + 48.857899 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77142A", + "ref": "01F5ZAKH615ARP522Z2QF17A8J", + "name": "Crécy-la-Chapelle / Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-07", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.90766, + 48.75396 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77144A", + "ref": "01F5ZAKH6138RM8VZ0HARNPBDR", + "name": "Crèvecoeur-en-Brie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-11", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.687649, + 48.945904 + ] + }, + "properties": { + "operator": "Bouygues Energies et Services", + "owner:ref:FR:SIREN": "200041309", + "email": "a.buffler@bouygues-es.com", + "phone": " 07 60 88 38 03", + "network": "Ecocharge77", + "ref:EU:EVSE": "FRS77P77118A", + "ref": "01F5ZAKH619XDZ91BD13VZZTK3", + "name": "Claye-Souilly - parking la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-07-01", + "note": "", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135810", + "ref": "ANYOS-IOTLAB-HBS9-P141", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135808", + "ref": "ANYOS-IOTLAB-HBS7-P139", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135811", + "ref": "ANYOS-IOTLAB-HBS10-P142", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135809", + "ref": "ANYOS-IOTLAB-HBS8-P140", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135807", + "ref": "ANYOS-IOTLAB-HBS6-P138", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135805", + "ref": "ANYOS-IOTLAB-HBS4-P136", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135804", + "ref": "ANYOS-IOTLAB-HBS3-P135", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135803", + "ref": "ANYOS-IOTLAB-HBS2-P115", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135802", + "ref": "ANYOS-IOTLAB-HBS1-P104", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135806", + "ref": "ANYOS-IOTLAB-HBS5-P137", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135817", + "ref": "ANYOS-IOTLAB-HBS16-P235", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135816", + "ref": "ANYOS-IOTLAB-HBS15-P215", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135812", + "ref": "ANYOS-IOTLAB-HBS11-P143", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135813", + "ref": "ANYOS-IOTLAB-HBS12-P144", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135814", + "ref": "ANYOS-IOTLAB-HBS13-P156", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135815", + "ref": "ANYOS-IOTLAB-HBS14-P204", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135819", + "ref": "ANYOS-IOTLAB-HBS18-P237", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135818", + "ref": "ANYOS-IOTLAB-HBS17-P236", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135820", + "ref": "ANYOS-IOTLAB-HBS19-P238", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135821", + "ref": "ANYOS-IOTLAB-HBS20-P239", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135823", + "ref": "ANYOS-IOTLAB-HBS22-P241", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135824", + "ref": "ANYOS-IOTLAB-HBS23-P242", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135827", + "ref": "ANYOS-IOTLAB-HBS26-P256", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135822", + "ref": "ANYOS-IOTLAB-HBS21-P240", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135825", + "ref": "ANYOS-IOTLAB-HBS24-P243", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135826", + "ref": "ANYOS-IOTLAB-HBS25-P244", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135828", + "ref": "ANYOS-IOTLAB-HBS27-P304", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135830", + "ref": "ANYOS-IOTLAB-HBS29-P335", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135831", + "ref": "ANYOS-IOTLAB-HBS30-P336", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135829", + "ref": "ANYOS-IOTLAB-HBS28-P315", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135836", + "ref": "ANYOS-IOTLAB-HBS35-P341", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135832", + "ref": "ANYOS-IOTLAB-HBS31-P337", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135833", + "ref": "ANYOS-IOTLAB-HBS32-P338", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135834", + "ref": "ANYOS-IOTLAB-HBS33-P339", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135835", + "ref": "ANYOS-IOTLAB-HBS34-P340", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135837", + "ref": "ANYOS-IOTLAB-HBS36-P342", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135838", + "ref": "ANYOS-IOTLAB-HBS37-P343", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135839", + "ref": "ANYOS-IOTLAB-HBS38-P344", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135840", + "ref": "ANYOS-IOTLAB-HBS39-P356", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135841", + "ref": "ANYOS-IOTLAB-HBS40-P415", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135844", + "ref": "ANYOS-IOTLAB-HBS43-P455", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135843", + "ref": "ANYOS-IOTLAB-HBS42-P435", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51, + 43.54 + ] + }, + "properties": { + "operator": "ANYOS", + "owner:ref:FR:SIREN": "897541264", + "email": "contact@anyos.fr", + "phone": "", + "network": "ANYOS", + "ref:EU:EVSE": "FRLMSE1000135842", + "ref": "ANYOS-IOTLAB-HBS41-P434", + "name": "ANYOS - Data Valley", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Ouverture de la station de recharge courant juin 2023.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.04, + 43.85 + ] + }, + "properties": { + "operator": "Sanou électricité", + "owner:ref:FR:SIREN": "349578872", + "email": "contact.sanouelectricite@gmail.com", + "phone": "0651530708", + "network": "Sanou électricité", + "ref:EU:EVSE": "Non concerné", + "ref": "25b71f4e-65b6-4bbb-91d1-834ec3833734", + "name": "Agrovial", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'enseigne", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.97, + 45.73 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "801177528", + "email": "exploitation@freshmile.com", + "phone": "03 68 78 14 35", + "network": "FRESHMILE", + "ref:EU:EVSE": "Non concerné", + "ref": " 5aa39699-a74b-42e3-90ce-7167a52af169", + "name": "D2 FINANCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-23", + "note": "Paiement via FRESHMILE", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.051543085729363, + 48.16127710253362 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Contact Bazoche Les Gallerandes", + "ref:EU:EVSE": "FRCARP45025A", + "ref": "FRCARP45025A", + "name": "Carrefour Contact Bazoche Les Gallerandes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.311405, + 46.354612 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Contact La Crèche", + "ref:EU:EVSE": "FRCARP79048A", + "ref": "FRCARP79048A", + "name": "Carrefour Contact La Crèche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.311405, + 46.354612 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Contact La Crèche", + "ref:EU:EVSE": "FRCARP79048A", + "ref": "FRCARP79048A", + "name": "Carrefour Contact La Crèche", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.131164, + 45.963065 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Contact Saint-Martin-de-Bellevue", + "ref:EU:EVSE": "FRCARP74282A", + "ref": "FRCARP74282A", + "name": "Carrefour Contact Saint-Martin-de-Bellevue", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.131164, + 45.963065 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Contact Saint-Martin-de-Bellevue", + "ref:EU:EVSE": "FRCARP74282A", + "ref": "FRCARP74282A", + "name": "Carrefour Contact Saint-Martin-de-Bellevue", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.131164, + 45.963065 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Contact Saint-Martin-de-Bellevue", + "ref:EU:EVSE": "FRCARP74282A", + "ref": "FRCARP74282A", + "name": "Carrefour Contact Saint-Martin-de-Bellevue", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9797605, + 48.6682107 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Contact Saint-Malo", + "ref:EU:EVSE": "FRCARP35288A", + "ref": "FRCARP35288A", + "name": "Carrefour Contact Saint-Malo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9797605, + 48.6682107 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Contact Saint-Malo", + "ref:EU:EVSE": "FRCARP35288A", + "ref": "FRCARP35288A", + "name": "Carrefour Contact Saint-Malo", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402206153869494, + 50.483224599077815 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Contact Pernes", + "ref:EU:EVSE": "FRCARP62652A", + "ref": "FRCARP62652A", + "name": "Carrefour Contact Pernes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402206153869494, + 50.483224599077815 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Contact Pernes", + "ref:EU:EVSE": "FRCARP62652A", + "ref": "FRCARP62652A", + "name": "Carrefour Contact Pernes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.556822342990649, + 48.69566871299743 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Contact Périgny", + "ref:EU:EVSE": "FRCARP17274A", + "ref": "FRCARP17274A", + "name": "Carrefour Contact Périgny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-23", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.556822342990649, + 48.69566871299743 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Contact Périgny", + "ref:EU:EVSE": "FRCARP17274A", + "ref": "FRCARP17274A", + "name": "Carrefour Contact Périgny", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-23", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.051543085729363, + 48.16127710253362 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Contact Bazoche Les Gallerandes", + "ref:EU:EVSE": "FRCARP45025A", + "ref": "FRCARP45025A", + "name": "Carrefour Contact Bazoche Les Gallerandes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5669992, + 51.033072399999 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "MAIRIE DES MOERES", + "ref:EU:EVSE": "Non concerné", + "ref": "e01071bd-0bd4-4615-84e9-f8e4d41fae9d", + "name": "MAIRIE DES MOERES", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2022-12-21", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3196844, + 51.0175233 + ] + }, + "properties": { + "operator": "non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "PFMV - GRANDE SYNTHE", + "ref:EU:EVSE": "Non concerné", + "ref": "8cec9f22-53ca-40ba-9fc4-c58494ecc43c", + "name": "PFMV - GRANDE SYNTHE", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-01-11", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9863507, + 50.4699234 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "OMEO", + "ref:EU:EVSE": "Non concerné", + "ref": "9fde0393-47b8-4e9a-a0ea-635a099b06f4", + "name": "OMEO", + "capacity": "12", + "socket:typee": "0", + "socket:type2": "true", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-30", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.081249, + 49.23891 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "802892794", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "CITROEN ET DS STORE - REIMS", + "ref:EU:EVSE": "FRZPEE175099", + "ref": "E175099", + "name": "Citroen DS Auto Bernard - Reims - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-27", + "note": "", + "source:date": "2023-02-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.081249, + 49.23891 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "802892794", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "CITROEN ET DS STORE - REIMS", + "ref:EU:EVSE": "FRZPEE175100", + "ref": "E175100", + "name": "Citroen DS Auto Bernard - Reims - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-27", + "note": "", + "source:date": "2023-02-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765641424794523, + 45.80602585384945 + ] + }, + "properties": { + "operator": "MOBELEC", + "owner:ref:FR:SIREN": "507771335", + "email": "contact@groupe-mobelec.fr", + "phone": "0602496954", + "network": "FIREX", + "ref:EU:EVSE": "Non concerné", + "ref": "FRMOB69570FIREXAC03", + "name": "FIREX-DARDILLY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-01", + "note": "", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765641424794523, + 45.80602585384945 + ] + }, + "properties": { + "operator": "MOBELEC", + "owner:ref:FR:SIREN": "507771335", + "email": "contact@groupe-mobelec.fr", + "phone": "0602496954", + "network": "FIREX", + "ref:EU:EVSE": "Non concerné", + "ref": "FRMOB69570FIREXAC04", + "name": "FIREX-DARDILLY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-01", + "note": "", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765641424794523, + 45.80602585384945 + ] + }, + "properties": { + "operator": "MOBELEC", + "owner:ref:FR:SIREN": "507771335", + "email": "contact@groupe-mobelec.fr", + "phone": "0602496954", + "network": "FIREX", + "ref:EU:EVSE": "Non concerné", + "ref": "FRMOB69570FIREXAC02", + "name": "FIREX-DARDILLY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-01", + "note": "", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765641424794523, + 45.80602585384945 + ] + }, + "properties": { + "operator": "MOBELEC", + "owner:ref:FR:SIREN": "507771335", + "email": "contact@groupe-mobelec.fr", + "phone": "0602496954", + "network": "FIREX", + "ref:EU:EVSE": "Non concerné", + "ref": "FRMOB69570FIREXAC05", + "name": "FIREX-DARDILLY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-01", + "note": "", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765641424794523, + 45.80602585384945 + ] + }, + "properties": { + "operator": "MOBELEC", + "owner:ref:FR:SIREN": "507771335", + "email": "contact@groupe-mobelec.fr", + "phone": "0602496954", + "network": "FIREX", + "ref:EU:EVSE": "Non concerné", + "ref": "FRMOB69570FIREXAC06", + "name": "FIREX-DARDILLY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-01", + "note": "", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765641424794523, + 45.80602585384945 + ] + }, + "properties": { + "operator": "MOBELEC", + "owner:ref:FR:SIREN": "507771335", + "email": "contact@groupe-mobelec.fr", + "phone": "0602496954", + "network": "FIREX", + "ref:EU:EVSE": "Non concerné", + "ref": "FRMOB69570FIREXAC07", + "name": "FIREX-DARDILLY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-01", + "note": "", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765641424794523, + 45.80602585384945 + ] + }, + "properties": { + "operator": "MOBELEC", + "owner:ref:FR:SIREN": "507771335", + "email": "contact@groupe-mobelec.fr", + "phone": "0602496954", + "network": "FIREX", + "ref:EU:EVSE": "Non concerné", + "ref": "FRMOB69570FIREXAC08", + "name": "FIREX-DARDILLY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-01", + "note": "", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765641424794523, + 45.80602585384945 + ] + }, + "properties": { + "operator": "MOBELEC", + "owner:ref:FR:SIREN": "507771335", + "email": "contact@groupe-mobelec.fr", + "phone": "0602496954", + "network": "FIREX", + "ref:EU:EVSE": "Non concerné", + "ref": "FRMOB69570FIREXAC01", + "name": "FIREX-DARDILLY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-01", + "note": "", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765641424794523, + 45.80602585384945 + ] + }, + "properties": { + "operator": "MOBELEC", + "owner:ref:FR:SIREN": "507771335", + "email": "contact@groupe-mobelec.fr", + "phone": "0602496954", + "network": "FIREX", + "ref:EU:EVSE": "Non concerné", + "ref": "FRMOB69570FIREXAC09", + "name": "FIREX-DARDILLY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-01", + "note": "", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0722651, + 49.0455191 + ] + }, + "properties": { + "operator": "SECAL", + "owner:ref:FR:SIREN": "892771049", + "email": "contact@secal-electricite.fr", + "phone": "0134222222", + "network": "SCI DU 151178", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P21151698", + "name": "SCI DU 151178", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-31", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0725349, + 49.0444744 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "530148816", + "email": "Contact@secal-electricite.fr", + "phone": "0131013103", + "network": "SCI FCJ", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1903315", + "name": "SCIFCJ", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-03-31", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.52645, + 48.75191 + ] + }, + "properties": { + "operator": "Wedom", + "owner:ref:FR:SIREN": "309134476", + "email": "contact@wedom.io", + "phone": "0367106538", + "network": "Vollmer", + "ref:EU:EVSE": "Non concerné", + "ref": "b2e5c99b-76e6-4eb7-91a6-cdea850b99ec", + "name": "Parking Vollmer", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "Parking de la menuiserie Vollmer", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0767992, + 44.3455705 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "909177297", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "TRISCOS LAVAGE", + "ref:EU:EVSE": "Non concerné", + "ref": "5f632578-9bb2-4c7d-b991-8f77b09b1f9f", + "name": "TRISCOS LAVAGE", + "capacity": "3", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-25", + "note": "", + "source:date": "2022-10-25", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.935854, + 49.32408 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "522202977", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ITM NETTO TRIEUX", + "ref:EU:EVSE": "FRZIME147593", + "ref": "E147593", + "name": "NETTO - TRIEUX ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-24", + "note": "", + "source:date": "2022-08-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.935854, + 49.32408 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "522202977", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ITM NETTO TRIEUX", + "ref:EU:EVSE": "FRZIME147592", + "ref": "E147592", + "name": " NETTO - TRIEUX ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-24", + "note": "", + "source:date": "2022-08-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64, + 43.79 + ] + }, + "properties": { + "operator": "Sanou électricité", + "owner:ref:FR:SIREN": "388067670", + "email": "contact.sanouelectricite@gmail.com", + "phone": "0651530708", + "network": "SVI", + "ref:EU:EVSE": "Non concerné", + "ref": "2ea7b747-59db-4b70-b0a4-7e64286475ba", + "name": "SVI Beaucaire", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-03", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'enseigne", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.084008, + 49.238637 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "408829224", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA REIMS", + "ref:EU:EVSE": "FRZTLE22AC66813", + "ref": "66813", + "name": "Toyota - Reims - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-27", + "note": "", + "source:date": "2021-07-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.084008, + 49.238637 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "408829224", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA REIMS", + "ref:EU:EVSE": "FRZTLE22AC66814", + "ref": "66814", + "name": "Toyota - Reims - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-27", + "note": "", + "source:date": "2021-07-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.10671, + 48.89223 + ] + }, + "properties": { + "operator": "WeDoM", + "owner:ref:FR:SIREN": "216704635", + "email": "contact@wedom.io", + "phone": "0367106538", + "network": "Commune de Seltz", + "ref:EU:EVSE": "Non concerné", + "ref": "209f1166-0199-4e71-93f1-3759c8086176", + "name": "Commune de Seltz", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-31", + "note": "Aucune", + "source:date": "2023-04-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5774003, + 43.2402602 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMECAMPINGMONTANA11", + "ref": "ddd39de6-d91a-11ed-afa1-0242ac120002", + "name": "CAMPING MONTANA ", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-12", + "note": "24/7", + "source:date": "2023-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9277708, + 42.6585884 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEHOTELLESDOMES11", + "ref": "b662d8fe-d919-11ed-afa1-0242ac120002", + "name": "Hôtel les Dômes Perpignan Sud ", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-12", + "note": "24/7", + "source:date": "2023-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.03, + 48.12 + ] + }, + "properties": { + "operator": "BAUDUCEL", + "owner:ref:FR:SIREN": "803410844", + "email": "bauducel-christophe@orange.fr", + "phone": "0243986242", + "network": "AD BAUDUCEL", + "ref:EU:EVSE": "FRFR1EBHZV1", + "ref": "1339d91c-529f-4fdc-abf5-bbf33cb4185d", + "name": "AD BAUDUCEL, SaintPierre la Cour", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-31", + "note": "", + "source:date": "2023-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84, + 45.79 + ] + }, + "properties": { + "operator": "Pascal Chene", + "owner:ref:FR:SIREN": "539474817", + "email": "garage.chene@gmail.com", + "phone": "04 78 08 21 22", + "network": "GARAGE CHENE -TOTAL ENERGIES - CITROEN", + "ref:EU:EVSE": "FR515600001", + "ref": "a7ce55c2-9856-4232-8cdc-fdd006f6c4d5", + "name": "EvBox DC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-02", + "note": "Recharge rapide disponibilité 24/7 - 1h maximum de stationnement autorisé", + "source:date": "2022-10-22", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.135471415628564, + 44.079339763735184 + ] + }, + "properties": { + "operator": "SCI LA COLLINE ", + "owner:ref:FR:SIREN": "333284743", + "email": "p.georges@groupe-ipa.com", + "phone": "0680462242", + "network": "SCI LA COLLINE", + "ref:EU:EVSE": "Non concerné", + "ref": "ccabc598-0b7e-11ee-be56-0242ac120002", + "name": "SCI LA COLLINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-14", + "note": "", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.136921215344072, + 41.50017664596053 + ] + }, + "properties": { + "operator": "LE REVE DE JANINE", + "owner:ref:FR:SIREN": "531181220", + "email": "pozzodimastri.adm@gmail.com", + "phone": "04 95 71 02 65", + "network": "LE REVE DE JANINE", + "ref:EU:EVSE": "FRMAPP000000007777", + "ref": "non concerné", + "name": "LE REVE DE JANINE", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-10-06", + "note": "", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.136921215344072, + 41.50017664596053 + ] + }, + "properties": { + "operator": "LE REVE DE JANINE", + "owner:ref:FR:SIREN": "531181220", + "email": "pozzodimastri.adm@gmail.com", + "phone": "04 95 71 02 65", + "network": "LE REVE DE JANINE", + "ref:EU:EVSE": "FRMAPP000000007777", + "ref": "non concerné", + "name": "LE REVE DE JANINE", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-10-06", + "note": "", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.136921215344072, + 41.50017664596053 + ] + }, + "properties": { + "operator": "LE REVE DE JANINE", + "owner:ref:FR:SIREN": "531181220", + "email": "pozzodimastri.adm@gmail.com", + "phone": "04 95 71 02 65", + "network": "LE REVE DE JANINE", + "ref:EU:EVSE": "FRMAPP000000007777", + "ref": "non concerné", + "name": "LE REVE DE JANINE", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-10-06", + "note": "", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5139025, + 42.1140208 + ] + }, + "properties": { + "operator": "ATRACHATA", + "owner:ref:FR:SIREN": "752044479", + "email": "direction@adonis-aleria.com", + "phone": "0495570393", + "network": "ATRACHATA", + "ref:EU:EVSE": "FRMAPP000000006816", + "ref": "non concerné", + "name": "ATRACHATA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-22", + "note": "", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5139025, + 42.1140208 + ] + }, + "properties": { + "operator": "ATRACHATA", + "owner:ref:FR:SIREN": "752044479", + "email": "direction@adonis-aleria.com", + "phone": "0495570393", + "network": "ATRACHATA", + "ref:EU:EVSE": "FRMAPP000000006816", + "ref": "non concerné", + "name": "ATRACHATA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-22", + "note": "", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.135471415628564, + 44.079339763735184 + ] + }, + "properties": { + "operator": "SCI LA COLLINE ", + "owner:ref:FR:SIREN": "333284743", + "email": "p.georges@groupe-ipa.com", + "phone": "0680462242", + "network": "SCI LA COLLINE", + "ref:EU:EVSE": "Non concerné", + "ref": "ccd2fa32-0b7e-11ee-be56-0242ac120002", + "name": "SCI LA COLLINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-14", + "note": "", + "source:date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.39, + 43.67 + ] + }, + "properties": { + "operator": "SARL LAFOURCADE ", + "owner:ref:FR:SIREN": "433220761", + "email": "sarl.lafourcade@orange.fr", + "phone": "0558436633", + "network": "SARL LAFOURCADE", + "ref:EU:EVSE": "FRMAPP000000006994", + "ref": "", + "name": "Borne 22kW SB-ASST-Lafourcade", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.895957, + 47.709747 + ] + }, + "properties": { + "operator": "HAEFELI", + "owner:ref:FR:SIREN": "200078111", + "email": "florent.mayery@citeos.com", + "phone": "0381215444", + "network": "Reseau_IRVE_SIED70", + "ref:EU:EVSE": "FRS70P07016542", + "ref": "", + "name": "Combeaufontaine_place_de_la_gare", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.588925, + 47.650833 + ] + }, + "properties": { + "operator": "HAEFELI", + "owner:ref:FR:SIREN": "200078111", + "email": "florent.mayery@citeos.com", + "phone": "0381215444", + "network": "Reseau_IRVE_SIED70", + "ref:EU:EVSE": "FRS70P07031348", + "ref": "", + "name": "LYOFFANS_Cimetiere", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.143673, + 47.64323 + ] + }, + "properties": { + "operator": "HAEFELI", + "owner:ref:FR:SIREN": "200078111", + "email": "florent.mayery@citeos.com", + "phone": "0381215444", + "network": "Reseau_IRVE_SIED70", + "ref:EU:EVSE": "FRS70P07042840", + "ref": "", + "name": "PUSEY_Foyer_des_jeunes_travailleurs", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.781118, + 47.592013 + ] + }, + "properties": { + "operator": "HAEFELI", + "owner:ref:FR:SIREN": "200078111", + "email": "florent.mayery@citeos.com", + "phone": "0381215444", + "network": "Reseau_IRVE_SIED70", + "ref:EU:EVSE": "FRS70P07020647", + "ref": "", + "name": "ECHENANS_SOUS_MONT_VAUDOIS_Parking_de_covoiturage", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.159957, + 47.62037 + ] + }, + "properties": { + "operator": "HAEFELI", + "owner:ref:FR:SIREN": "200078111", + "email": "florent.mayery@citeos.com", + "phone": "0381215444", + "network": "Reseau_IRVE_SIED70", + "ref:EU:EVSE": "FRS70P07055046", + "ref": "", + "name": "VESOUL_Place_du_theatre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.073609, + 47.423647 + ] + }, + "properties": { + "operator": "HAEFELI", + "owner:ref:FR:SIREN": "200078111", + "email": "florent.mayery@citeos.com", + "phone": "0381215444", + "network": "Reseau_IRVE_SIED70", + "ref:EU:EVSE": "FRS70P07044745", + "ref": "", + "name": "RIOZ_Rue_du_Clairsoleil", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.174664, + 47.62926 + ] + }, + "properties": { + "operator": "HAEFELI", + "owner:ref:FR:SIREN": "200078111", + "email": "florent.mayery@citeos.com", + "phone": "0381215444", + "network": "Reseau_IRVE_SIED70", + "ref:EU:EVSE": "FRS70P07026144", + "ref": "", + "name": "FROTEY_Les_Vesoul_Eurotel", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.365601, + 47.774631 + ] + }, + "properties": { + "operator": "HAEFELI", + "owner:ref:FR:SIREN": "200078111", + "email": "florent.mayery@citeos.com", + "phone": "0381215444", + "network": "Reseau_IRVE_SIED70", + "ref:EU:EVSE": "FRS70P07012843", + "ref": "", + "name": "CHAPELLE_LES_LUXEUIL_Station_service", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.993921, + 47.917131 + ] + }, + "properties": { + "operator": "HAEFELI", + "owner:ref:FR:SIREN": "200078111", + "email": "florent.mayery@citeos.com", + "phone": "0381215444", + "network": "Reseau_IRVE_SIED70", + "ref:EU:EVSE": "FRS70P07017741", + "ref": "", + "name": "CORRE_Place_du_general_de_Gaulle", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988465421806449, + 45.71576869086339 + ] + }, + "properties": { + "operator": "electromaps", + "owner:ref:FR:SIREN": "830836599", + "email": "info@electromaps.com", + "phone": "", + "network": "A.L.R", + "ref:EU:EVSE": "FRMAPE000022830530", + "ref": "41b21718-caa0-4a4e-9904-8c02f5ae1684", + "name": "A.L.R", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3402467383073846, + 43.612262376081546 + ] + }, + "properties": { + "operator": "electromaps", + "owner:ref:FR:SIREN": "799445309", + "email": "info@electromaps.com", + "phone": "", + "network": "FRIENDLY AUBERGE", + "ref:EU:EVSE": "FRMAPE000022182905", + "ref": "1fc222f1-5977-493d-a446-f33359543573", + "name": "FRIENDLY AUBERGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1198560355938945, + 45.90210582751428 + ] + }, + "properties": { + "operator": "electromaps", + "owner:ref:FR:SIREN": "523903433", + "email": "info@electromaps.com", + "phone": "", + "network": "GARAGE FORRET", + "ref:EU:EVSE": "FRMAPE000028595263", + "ref": "cc8997b4-a697-49c6-9dc4-9a3bbdca3a4e", + "name": "GARAGE FORRET", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.192107439041139, + 43.6967734467621 + ] + }, + "properties": { + "operator": "electromaps", + "owner:ref:FR:SIREN": "501380570", + "email": "info@electromaps.com", + "phone": "", + "network": "CLUB HIPPIQUE DE NICE", + "ref:EU:EVSE": "FRMAPE000024556962", + "ref": "d642bc84-c3e4-4813-be28-38feb316f9ff", + "name": "CLUB HIPPIQUE DE NICE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5428274, + 50.7244213 + ] + }, + "properties": { + "operator": "MABORNEAUTO", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "CCFI", + "ref:EU:EVSE": "Non concerné", + "ref": "352fac34-e899-4a98-940b-6f3448f9436f", + "name": "CCFI", + "capacity": "3", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-06-16", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0734169, + 48.5665745 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMEPOSTENANGIS2", + "ref": "756454", + "name": "borneco postenangis2", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0734169, + 48.5665745 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMEHOTELDEVILLENANGIS3", + "ref": "756454", + "name": "borneco hoteldevillenangis3", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0734169, + 48.5665745 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMEHOTELDEVILLENANGIS1", + "ref": "756454", + "name": "borneco hoteldevillenangis1", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0734169, + 48.5665745 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMEPOSTENANGIS3", + "ref": "756454", + "name": "borneco postenangis3", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0734169, + 48.5665745 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMEHOTELDEVILLENANGIS2", + "ref": "756454", + "name": "borneco hoteldevillenangis2", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0734169, + 48.5665745 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMEHOTELDEVILLENANGIS4", + "ref": "756454", + "name": "borneco hoteldevillenangis4", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0734169, + 48.5665745 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMEPOSTENANGIS1", + "ref": "756454", + "name": "borneco postenangis1", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0734169, + 48.5665745 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMEPOSTENANGIS4", + "ref": "756454", + "name": "borneco postenangis4", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000139371", + "ref": "", + "name": "VINCI Loiret", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000137276", + "ref": "", + "name": "VINCI Loiret", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.361448, + 43.812247 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000135878", + "ref": "", + "name": "VINCI Frontonnais Nord", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-22", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000139374", + "ref": "", + "name": "VINCI Loiret", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000139374", + "ref": "", + "name": "VINCI Loiret", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000139373", + "ref": "", + "name": "VINCI Loiret", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000139373", + "ref": "", + "name": "VINCI Loiret", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000139372", + "ref": "", + "name": "VINCI Loiret", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000139372", + "ref": "", + "name": "VINCI Loiret", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3592, + 43.810977 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000135879", + "ref": "", + "name": "VINCI Frontonnais Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-22", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000139371", + "ref": "", + "name": "VINCI Loiret", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000139370", + "ref": "", + "name": "VINCI Loiret", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000139370", + "ref": "", + "name": "VINCI Loiret", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3592, + 43.810977 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000135879", + "ref": "", + "name": "VINCI Frontonnais Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-22", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3592, + 43.810977 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000135879", + "ref": "", + "name": "VINCI Frontonnais Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-22", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.361448, + 43.812247 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000135878", + "ref": "", + "name": "VINCI Frontonnais Nord", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-22", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.361448, + 43.812247 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000135878", + "ref": "", + "name": "VINCI Frontonnais Nord", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-22", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000117017", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000117020", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000139047", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000139047", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000139047", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000139046", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000139046", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000139046", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000117017", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000117020", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000117017", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000117019", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000117018", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000117018", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000117020", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000117021", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000117021", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000117021", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000117019", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.398142, + 43.754762 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000117018", + "ref": "", + "name": "SSEC La Scoperta", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2339028, + 44.4425322 + ] + }, + "properties": { + "operator": "ELEK BORDEAUX", + "owner:ref:FR:SIREN": "909177297", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "SARL PERROT", + "ref:EU:EVSE": "Non concerné", + "ref": "107a257c-77d6-4050-831c-1cfb9c1a231e", + "name": "SARL PERROT", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-26", + "note": "", + "source:date": "2023-05-26", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.356166554456669, + 43.7920082634787 + ] + }, + "properties": { + "operator": "MAS GALOFFRE", + "owner:ref:FR:SIREN": "329295786", + "email": "contact@mas-galoffre.com", + "phone": "0466381536", + "network": "MAS GALOFFRE", + "ref:EU:EVSE": "Non concerné", + "ref": "0b3e19ec-0aa7-11ee-be56-0242ac120002", + "name": "MAS GALOFFRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-25", + "note": "", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.356166554456669, + 43.7920082634787 + ] + }, + "properties": { + "operator": "MAS GALOFFRE", + "owner:ref:FR:SIREN": "329295786", + "email": "contact@mas-galoffre.com", + "phone": "0466381536", + "network": "MAS GALOFFRE", + "ref:EU:EVSE": "Non concerné", + "ref": "55d15d82-0aa4-11ee-be56-0242ac120002", + "name": "MAS GALOFFRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-25", + "note": "", + "source:date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34201, + 47.046528 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123865", + "ref": "", + "name": "PREMIERE CLASSE - BOURGES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34201, + 47.046528 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123865", + "ref": "", + "name": "PREMIERE CLASSE - BOURGES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331869, + 47.612421 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123864", + "ref": "", + "name": "HOTEL 1er CLASSE - BLOIS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331869, + 47.612421 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123864", + "ref": "", + "name": "HOTEL 1er CLASSE - BLOIS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331869, + 47.612421 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123864", + "ref": "", + "name": "HOTEL 1er CLASSE - BLOIS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331869, + 47.612421 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123864", + "ref": "", + "name": "HOTEL 1er CLASSE - BLOIS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.65557, + 49.568055 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124922", + "ref": "", + "name": "LOUVRE HOTEL - LAON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.323656, + 49.209081 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125122", + "ref": "", + "name": "HOTEL KYRIAD Hérouville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.323656, + 49.209081 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125122", + "ref": "", + "name": "HOTEL KYRIAD Hérouville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.323656, + 49.209081 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125122", + "ref": "", + "name": "HOTEL KYRIAD Hérouville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.323656, + 49.209081 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125122", + "ref": "", + "name": "HOTEL KYRIAD Hérouville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.65557, + 49.568055 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124922", + "ref": "", + "name": "LOUVRE HOTEL - LAON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34201, + 47.046528 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123865", + "ref": "", + "name": "PREMIERE CLASSE - BOURGES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.65557, + 49.568055 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124922", + "ref": "", + "name": "LOUVRE HOTEL - LAON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.65557, + 49.568055 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124922", + "ref": "", + "name": "LOUVRE HOTEL - LAON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34201, + 47.046528 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123865", + "ref": "", + "name": "PREMIERE CLASSE - BOURGES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.655559, + 49.56802 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124923", + "ref": "", + "name": "Hotel KYRIAD DIRECT - LAON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.251979, + 49.410967 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125124", + "ref": "", + "name": "PREMIERE CLASSE - HONFLEUR", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.251979, + 49.410967 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125124", + "ref": "", + "name": "PREMIERE CLASSE - HONFLEUR", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.251979, + 49.410967 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125124", + "ref": "", + "name": "PREMIERE CLASSE - HONFLEUR", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.251979, + 49.410967 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125124", + "ref": "", + "name": "PREMIERE CLASSE - HONFLEUR", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.655559, + 49.56802 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124923", + "ref": "", + "name": "Hotel KYRIAD DIRECT - LAON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.655559, + 49.56802 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124923", + "ref": "", + "name": "Hotel KYRIAD DIRECT - LAON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.655559, + 49.56802 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124923", + "ref": "", + "name": "Hotel KYRIAD DIRECT - LAON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336322, + 51.022253 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124925", + "ref": "", + "name": "PREMIERE CLASSE - DUNKERQUE - ST-POL-SUR-MER", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336322, + 51.022253 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124925", + "ref": "", + "name": "PREMIERE CLASSE - DUNKERQUE - ST-POL-SUR-MER", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336322, + 51.022253 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124925", + "ref": "", + "name": "PREMIERE CLASSE - DUNKERQUE - ST-POL-SUR-MER", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336322, + 51.022253 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124925", + "ref": "", + "name": "PREMIERE CLASSE - DUNKERQUE - ST-POL-SUR-MER", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09623, + 49.347188 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000131844", + "ref": "", + "name": "PREMIERE CLASSE TOUQUES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09623, + 49.347188 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000131844", + "ref": "", + "name": "PREMIERE CLASSE TOUQUES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09623, + 49.347188 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000131844", + "ref": "", + "name": "PREMIERE CLASSE TOUQUES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09623, + 49.347188 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000131844", + "ref": "", + "name": "PREMIERE CLASSE TOUQUES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.169503, + 49.016271 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125120", + "ref": "", + "name": "KYRIAD DIRECT EVREUX", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.169503, + 49.016271 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125120", + "ref": "", + "name": "KYRIAD DIRECT EVREUX", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.169503, + 49.016271 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125120", + "ref": "", + "name": "KYRIAD DIRECT EVREUX", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.334355, + 50.997593 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124924", + "ref": "", + "name": "CAMPANILE DUNKERQUE EST - ARMBOUTS CAPPEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.817843, + 50.453351 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124926", + "ref": "", + "name": "Hôtel Restaurant Campanile Lens", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.817843, + 50.453351 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124926", + "ref": "", + "name": "Hôtel Restaurant Campanile Lens", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.817843, + 50.453351 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124926", + "ref": "", + "name": "Hôtel Restaurant Campanile Lens", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.169503, + 49.016271 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125120", + "ref": "", + "name": "KYRIAD DIRECT EVREUX", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-26", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.057926, + 50.383609 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124927", + "ref": "", + "name": "CAMPANILE DOUAI - CUINCY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.057926, + 50.383609 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124927", + "ref": "", + "name": "CAMPANILE DOUAI - CUINCY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.334355, + 50.997593 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124924", + "ref": "", + "name": "CAMPANILE DUNKERQUE EST - ARMBOUTS CAPPEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.094046, + 49.477319 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125121", + "ref": "", + "name": "LOUVRE HOTEL - ROUEN NORD - MONT SAINT-AIGNAN", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.334355, + 50.997593 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124924", + "ref": "", + "name": "CAMPANILE DUNKERQUE EST - ARMBOUTS CAPPEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.334355, + 50.997593 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124924", + "ref": "", + "name": "CAMPANILE DUNKERQUE EST - ARMBOUTS CAPPEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44438, + 44.913949 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000145899", + "ref": "", + "name": "Campanile Aurillac", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44438, + 44.913949 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000145899", + "ref": "", + "name": "Campanile Aurillac", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44438, + 44.913949 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000145899", + "ref": "", + "name": "Campanile Aurillac", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44438, + 44.913949 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000145899", + "ref": "", + "name": "Campanile Aurillac", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.817843, + 50.453351 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124926", + "ref": "", + "name": "Hôtel Restaurant Campanile Lens", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.057926, + 50.383609 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124927", + "ref": "", + "name": "CAMPANILE DOUAI - CUINCY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.094046, + 49.477319 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125121", + "ref": "", + "name": "LOUVRE HOTEL - ROUEN NORD - MONT SAINT-AIGNAN", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.959227, + 49.540126 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125123", + "ref": "", + "name": "LOUVRE HOTEL - ROUEN NORD - BARENTIN", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.111005, + 49.40844 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000131840", + "ref": "", + "name": "Hôtel Kyriad Beauvais Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-31", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.094046, + 49.477319 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125121", + "ref": "", + "name": "LOUVRE HOTEL - ROUEN NORD - MONT SAINT-AIGNAN", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.111005, + 49.40844 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000131840", + "ref": "", + "name": "Hôtel Kyriad Beauvais Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-31", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.111005, + 49.40844 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000131840", + "ref": "", + "name": "Hôtel Kyriad Beauvais Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-31", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.959227, + 49.540126 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125123", + "ref": "", + "name": "LOUVRE HOTEL - ROUEN NORD - BARENTIN", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.959227, + 49.540126 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125123", + "ref": "", + "name": "LOUVRE HOTEL - ROUEN NORD - BARENTIN", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.111005, + 49.40844 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000131840", + "ref": "", + "name": "Hôtel Kyriad Beauvais Sud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-31", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.959227, + 49.540126 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125123", + "ref": "", + "name": "LOUVRE HOTEL - ROUEN NORD - BARENTIN", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.115604, + 50.682161 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000131841", + "ref": "", + "name": "Hôtel Campanile Wasquehal", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.115604, + 50.682161 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000131841", + "ref": "", + "name": "Hôtel Campanile Wasquehal", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.094046, + 49.477319 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000125121", + "ref": "", + "name": "LOUVRE HOTEL - ROUEN NORD - MONT SAINT-AIGNAN", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.057926, + 50.383609 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124927", + "ref": "", + "name": "CAMPANILE DOUAI - CUINCY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.115604, + 50.682161 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000131841", + "ref": "", + "name": "Hôtel Campanile Wasquehal", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.115604, + 50.682161 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000131841", + "ref": "", + "name": "Hôtel Campanile Wasquehal", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.985609, + 50.273541 + ] + }, + "properties": { + "operator": "Normatech ", + "owner:ref:FR:SIREN": "901360602", + "email": "contact@lodmi.com", + "phone": "0374830250", + "network": "Le boisle ", + "ref:EU:EVSE": "FRLODP", + "ref": "9a20d4d6-4f37-4557-be0f-81cae434db06", + "name": "Le BOISLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "Possibilité de paiement via QR CODE", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.985609, + 50.273541 + ] + }, + "properties": { + "operator": "Normatech ", + "owner:ref:FR:SIREN": "901360602", + "email": "contact@lodmi.com", + "phone": "0374830250", + "network": "LODMI", + "ref:EU:EVSE": "FRLODP", + "ref": "6a3786a6-dc93-4cb9-af0c-ed80139a1d37", + "name": "Le BOISLE", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-22", + "note": "Possibilité de paiement via QR CODE", + "source:date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.153194012, + 44.5041561 + ] + }, + "properties": { + "operator": "EV MAP SAS", + "owner:ref:FR:SIREN": "727350183", + "email": "contact@evmap.fr", + "phone": "09 73 79 63 33", + "network": "GARAGE RAYMOND", + "ref:EU:EVSE": "FREVMPNVG0B46001", + "ref": " NVG0B46001", + "name": "BMW Marmande", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "Recharge uniquement pendant les heures d'ouverture de la concession", + "source:date": "2023-07-06", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.61, + 45.59 + ] + }, + "properties": { + "operator": "Electromaps", + "owner:ref:FR:SIREN": "333245181", + "email": "info@electromaps.com", + "phone": "+34 931 574 967 ", + "network": "Electromaps", + "ref:EU:EVSE": "FRMAPP000000007825", + "ref": "", + "name": "Gamm Vert Aoste", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-26", + "note": "Accessible via App Electromaps, RFID Electropass et QR code paiement direct. Borne accessible pendant les heures d'ouverture du magasin.", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.72, + 43.36 + ] + }, + "properties": { + "operator": "EIZMENDI TRAITEUR EVENEMENTS", + "owner:ref:FR:SIREN": "810682740", + "email": "contact@eizmenditraiteur.fr", + "phone": "0559292392", + "network": "EIZMENDI TRAITEUR EVENEMENTS", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "EIZMENDI TRAITEUR EVENEMENTS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4978048, + 44.8526111 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "909177297", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "ELEN DISTRIBUTION", + "ref:EU:EVSE": "Non concerné", + "ref": "efeb05dd-38ba-4e6b-9661-32bef5c668c7", + "name": "ELEN DISTRIBUTION", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-05-12", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.073056, + 49.101681 + ] + }, + "properties": { + "operator": "Lacotte Pierre", + "owner:ref:FR:SIREN": "829417435", + "email": "Lacotte.p@gmail.com", + "phone": "0637334173", + "network": "Lacmeca", + "ref:EU:EVSE": "Non concerné", + "ref": "fbe29b94-6def-4919-b3a0-cfdc35fbdd9a", + "name": "Lacmeca", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-28", + "note": "recharge disponible aux horraire d'ouverture", + "source:date": "2023-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.380825275475741, + 44.288984939376896 + ] + }, + "properties": { + "operator": "MAS DU TERME ", + "owner:ref:FR:SIREN": "418935680", + "email": "info@masduterme.com", + "phone": "0466245631", + "network": "MAS DU TERME ", + "ref:EU:EVSE": "Non concerné", + "ref": "29b639e2-1a77-11ee-be56-0242ac120002", + "name": "MAS DU TERME ", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-27", + "note": "", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.380825275475741, + 44.288984939376896 + ] + }, + "properties": { + "operator": "MAS DU TERME ", + "owner:ref:FR:SIREN": "418935680", + "email": "info@masduterme.com", + "phone": "0466245631", + "network": "MAS DU TERME ", + "ref:EU:EVSE": "Non concerné", + "ref": "29b639e2-1a77-11ee-be56-0242ac120002", + "name": "MAS DU TERME ", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-27", + "note": "", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.380825275475741, + 44.288984939376896 + ] + }, + "properties": { + "operator": "MAS DU TERME ", + "owner:ref:FR:SIREN": "418935680", + "email": "info@masduterme.com", + "phone": "0466245631", + "network": "MAS DU TERME ", + "ref:EU:EVSE": "Non concerné", + "ref": "29b639e2-1a77-11ee-be56-0242ac120002", + "name": "MAS DU TERME ", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-27", + "note": "", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.073056, + 49.101681 + ] + }, + "properties": { + "operator": "Lacotte", + "owner:ref:FR:SIREN": "829417435", + "email": "lacotte.p@gmail.com", + "phone": "0637334173", + "network": "Lacmeca", + "ref:EU:EVSE": "Non concerné", + "ref": "9c0e8341-8c4a-4286-9eba-0985b15ffb0c", + "name": "Lacmeca", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-27", + "note": "", + "source:date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.919325, + 47.641882 + ] + }, + "properties": { + "operator": "HAEFELI", + "owner:ref:FR:SIREN": "259000966", + "email": "florent.mayery@citeos.com", + "phone": "0381215444", + "network": "Réseau IRVE TE90", + "ref:EU:EVSE": "FRS90P090012", + "ref": "", + "name": "BESSONCOURT av du tilleul A", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.919329, + 47.641884 + ] + }, + "properties": { + "operator": "HAEFELI", + "owner:ref:FR:SIREN": "259000966", + "email": "florent.mayery@citeos.com", + "phone": "0381215444", + "network": "Réseau IRVE TE90", + "ref:EU:EVSE": "FRS90P090012", + "ref": "", + "name": "BESSONCOURT av du tilleul B", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPCAEN021", + "ref": "", + "name": "SAP LABS FRANCE CAEN 02", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016626, + 43.611925 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS202", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 20", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016626, + 43.611925 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS16CP1", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 16", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016626, + 43.611925 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS171", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 17", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016626, + 43.611925 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS172", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 17", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016626, + 43.611925 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS19A1", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 19", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016626, + 43.611925 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS19B1", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 19", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016626, + 43.611925 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS201", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 20", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016626, + 43.611925 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS211", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 21", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01672, + 43.6121039 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS152", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 15", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016626, + 43.611925 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS212", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 21", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016626, + 43.611925 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS221", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 22", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016626, + 43.611925 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS222", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 22", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPCAEN01LEGCP1", + "ref": "", + "name": "SAP LABS FRANCE CAEN 01", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPCAEN022", + "ref": "", + "name": "SAP LABS FRANCE CAEN 02", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016626, + 43.611925 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS162", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 16", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPCAEN01LEGCP2", + "ref": "", + "name": "SAP LABS FRANCE CAEN 01", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01672, + 43.6121039 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS151", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 15", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01672, + 43.6121039 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS14CP1", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 14", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01672, + 43.6121039 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS13ABBCP1", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 13", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01672, + 43.6121039 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS082", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 08", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01672, + 43.6121039 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS081", + "ref": "", + "name": "SAP LABS FRANCE MOUGINS 08", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855134", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPCAEN072", + "ref": "", + "name": "SAP LABS FRANCE CAEN 07", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855133", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPCAEN071", + "ref": "", + "name": "SAP LABS FRANCE CAEN 07", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855132", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPCAEN062", + "ref": "", + "name": "SAP LABS FRANCE CAEN 06", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855131", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPCAEN061", + "ref": "", + "name": "SAP LABS FRANCE CAEN 06", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855130", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPCAEN052", + "ref": "", + "name": "SAP LABS FRANCE CAEN 05", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855129", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPCAEN051", + "ref": "", + "name": "SAP LABS FRANCE CAEN 05", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855128", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPCAEN042", + "ref": "", + "name": "SAP LABS FRANCE CAEN 04", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPCAEN031", + "ref": "", + "name": "SAP LABS FRANCE CAEN 03", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPCAEN041", + "ref": "", + "name": "SAP LABS FRANCE CAEN 04", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPCAEN032", + "ref": "", + "name": "SAP LABS FRANCE CAEN 03", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "pendant les horaires d'ouverture", + "source:date": "2023-10-01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.578864, + 45.704218 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "791318157", + "email": "contact@none.com", + "phone": "", + "network": "PLATEAU_YZERON", + "ref:EU:EVSE": "FR026PYZERON", + "ref": "YZERON", + "name": "YZERON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-07-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.029774, + 46.18141519 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB84138A", + "ref": "", + "name": "Réseau AlterBase - Clussais-La-Pommeraie - Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-02-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.029774, + 46.18141519 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB84138A", + "ref": "", + "name": "Réseau AlterBase - Clussais-La-Pommeraie - Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-02-22", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.148041, + 46.674512 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB31019A", + "ref": "", + "name": "Réseau AlterBase - La Peyratte - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-12-17", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.148041, + 46.674512 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB31019A", + "ref": "", + "name": "Réseau AlterBase - La Peyratte - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-12-17", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.649319, + 46.770453 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB13031A", + "ref": "", + "name": "Réseau AlterBase - La Forêt-sur-Sèvre - Mairie - DC 24 kW", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.649319, + 46.770453 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB13031A", + "ref": "", + "name": "Réseau AlterBase - La Forêt-sur-Sèvre - Mairie - DC 24 kW", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.074488, + 46.654902 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB34119A", + "ref": "", + "name": "Réseau AlterBase - La Ferrière-en-Parthenay - Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-03", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.074488, + 46.654902 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB34119A", + "ref": "", + "name": "Réseau AlterBase - La Ferrière-en-Parthenay - Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-03", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2994545, + 46.3623019 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79048P0004A", + "ref": "", + "name": "Réseau AlterBase - La Crèche - Bibliothèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-06-14", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2994545, + 46.3623019 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79048P0004A", + "ref": "", + "name": "Réseau AlterBase - La Crèche - Bibliothèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-06-14", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.296639, + 46.360436 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79048P0012A", + "ref": "", + "name": "Réseau AlterBase - La Crèche - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-06", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.296639, + 46.360436 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79048P0012A", + "ref": "", + "name": "Réseau AlterBase - La Crèche - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-06", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.326927, + 46.87922 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB12002A", + "ref": "", + "name": "Réseau AlterBase - Geay - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-12-31", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.326927, + 46.87922 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB12002A", + "ref": "", + "name": "Réseau AlterBase - Geay - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-12-31", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576905, + 46.633177 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB06050A", + "ref": "", + "name": "Réseau AlterBase - L'Absie - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.352278, + 46.830708 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB12008A", + "ref": "", + "name": "Réseau AlterBase - Faye l'Abbesse - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-06-30", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.352278, + 46.830708 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB12008A", + "ref": "", + "name": "Réseau AlterBase - Faye l'Abbesse - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-06-30", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4166322, + 46.3885737 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB47069A", + "ref": "", + "name": "Réseau AlterBase - Echiré - Parking Côte de Chaillot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4166322, + 46.3885737 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB47069A", + "ref": "", + "name": "Réseau AlterBase - Echiré - Parking Côte de Chaillot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567109, + 46.779143 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB07005A", + "ref": "", + "name": "Réseau AlterBase - Courlay - Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-07", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567109, + 46.779143 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB07005A", + "ref": "", + "name": "Réseau AlterBase - Courlay - Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-07", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.357363, + 46.795306 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB12228B", + "ref": "", + "name": "Réseau AlterBase - Chiché - Aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2014-04-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59730395, + 46.48260664 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79101P0012A", + "ref": "", + "name": "Réseau AlterBase - Coulonges-sur-l'Autize - les Halles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.589684, + 46.321324 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB40018A", + "ref": "", + "name": "Réseau AlterBase - Coulon - Aire de l'Autremont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.589684, + 46.321324 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB40018A", + "ref": "", + "name": "Réseau AlterBase - Coulon - Aire de l'Autremont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59730395, + 46.48260664 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79101P0012A", + "ref": "", + "name": "Réseau AlterBase - Coulonges-sur-l'Autize - les Halles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7384526, + 46.9219211 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB16169A", + "ref": "", + "name": "Réseau AlterBase - Mauléon - Centre commercial Super U - QC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-03-21", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576905, + 46.633177 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB06050A", + "ref": "", + "name": "Réseau AlterBase - L'Absie - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.358129, + 46.796145 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB12228A", + "ref": "", + "name": "Réseau AlterBase - Chiché - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2014-04-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14574514, + 46.22041599 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79174P0029A", + "ref": "", + "name": "Réseau AlterBase - Melle - Place de Strasbourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-03-10", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14632978, + 46.2246696 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79174P0032A", + "ref": "", + "name": "Réseau AlterBase - Melle - Centre St Joseph", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-03-10", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14632978, + 46.2246696 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79174P0032A", + "ref": "", + "name": "Réseau AlterBase - Melle - Centre St Joseph", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-03-10", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14375894, + 46.22190306 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79174P0017A", + "ref": "", + "name": "Réseau AlterBase - Melle - Place Bujault Cinéma", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14375894, + 46.22190306 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79174P0017A", + "ref": "", + "name": "Réseau AlterBase - Melle - Place Bujault Cinéma", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14223895, + 46.22412259 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79174P0013A", + "ref": "", + "name": "Réseau AlterBase - Melle - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-03-10", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14223895, + 46.22412259 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79174P0013A", + "ref": "", + "name": "Réseau AlterBase - Melle - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-03-10", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.144056, + 46.21338 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79174P141A", + "ref": "", + "name": "Réseau AlterBase - Melle - agence Séolis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-10-08", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.144056, + 46.21338 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79174P141A", + "ref": "", + "name": "Réseau AlterBase - Melle - agence Séolis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-10-08", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3234604, + 46.53364734 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB29037A", + "ref": "", + "name": "Réseau AlterBase - Mazières en Gâtine - Place des Marronniers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-01-15", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3234604, + 46.53364734 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB29037A", + "ref": "", + "name": "Réseau AlterBase - Mazières en Gâtine - Place des Marronniers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-01-15", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7384526, + 46.9219211 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB16169A", + "ref": "", + "name": "Réseau AlterBase - Mauléon - Centre commercial Super U - QC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-03-21", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23694974, + 46.73014296 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB31001A", + "ref": "", + "name": "Réseau AlterBase - Lageon - Aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-12-18", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.748457, + 46.923557 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB16007A", + "ref": "", + "name": "Réseau AlterBase - Mauléon - rue de la Fontaine Noire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.748457, + 46.923557 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB16007A", + "ref": "", + "name": "Réseau AlterBase - Mauléon - rue de la Fontaine Noire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5557142, + 46.3169129 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB40085A", + "ref": "", + "name": "Réseau AlterBase - Magné - Centre Commercial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-04-02", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5557142, + 46.3169129 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB40085A", + "ref": "", + "name": "Réseau AlterBase - Magné - Centre Commercial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-04-02", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18853, + 47.01279 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB21036A", + "ref": "", + "name": "Réseau AlterBase - Louzy - Salle Hespérida", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18853, + 47.01279 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB21036A", + "ref": "", + "name": "Réseau AlterBase - Louzy - Salle Hespérida", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.178913, + 46.133704 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB62089A", + "ref": "", + "name": "Réseau AlterBase - Limalonges - Les Maisons Blanches - QC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-07-31", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.178913, + 46.133704 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB62089A", + "ref": "", + "name": "Réseau AlterBase - Limalonges - Les Maisons Blanches - QC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-07-31", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0111787, + 46.2654959 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB55070A", + "ref": "", + "name": "Réseau AlterBase - Lezay - Place du Champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-06-09", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0111787, + 46.2654959 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB55070A", + "ref": "", + "name": "Réseau AlterBase - Lezay - Place du Champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-06-09", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23694974, + 46.73014296 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB31001A", + "ref": "", + "name": "Réseau AlterBase - Lageon - Aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-12-18", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.357363, + 46.795306 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB12228B", + "ref": "", + "name": "Réseau AlterBase - Chiché - Aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2014-04-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18543031, + 47.0539167 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB20087A", + "ref": "", + "name": "Réseau AlterBase - Brion près Thouet - Aire de repos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-12-18", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.358129, + 46.796145 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB12228A", + "ref": "", + "name": "Réseau AlterBase - Chiché - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2014-04-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07567057, + 46.10834219 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79083P0021A", + "ref": "", + "name": "Réseau AlterBase - Chef-Boutonne - Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-02-26", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.495796, + 46.8509075 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB09287A", + "ref": "", + "name": "Réseau AlterBase - Bressuire - Centre commercial Pont d'Ouit - QC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-02-05", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4742407, + 46.8505132 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB12124A", + "ref": "", + "name": "Réseau AlterBase - Bressuire - Bocapôle - QC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-10-01", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4742407, + 46.8505132 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB12124A", + "ref": "", + "name": "Réseau AlterBase - Bressuire - Bocapôle - QC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-10-01", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.43454, + 46.77368 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB08004A", + "ref": "", + "name": "Réseau AlterBase - Boismé - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-06-30", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.43454, + 46.77368 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB08004A", + "ref": "", + "name": "Réseau AlterBase - Boismé - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-06-30", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49691272, + 46.3056042 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB37093A", + "ref": "", + "name": "Réseau AlterBase - Bessines - rue Pierre Mendes France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-03-30", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49691272, + 46.3056042 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB37093A", + "ref": "", + "name": "Réseau AlterBase - Bessines - rue Pierre Mendes France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-03-30", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.471974, + 46.184583 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB45122A", + "ref": "", + "name": "Réseau AlterBase - Beauvoir sur Niort - Centre commercial Intermarché - QC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.471974, + 46.184583 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB45122A", + "ref": "", + "name": "Réseau AlterBase - Beauvoir sur Niort - Centre commercial Intermarché - QC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4740947, + 46.3005485 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB45042A", + "ref": "", + "name": "Réseau AlterBase - Beauvoir sur Niort - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4740947, + 46.3005485 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB45042A", + "ref": "", + "name": "Réseau AlterBase - Beauvoir sur Niort - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2232991, + 46.4082556 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB52160A", + "ref": "", + "name": "Réseau AlterBase - St Maixent L'Ecole - Centre commercial E.Leclerc - QC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-03-20", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2232991, + 46.4082556 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB52160A", + "ref": "", + "name": "Réseau AlterBase - St Maixent L'Ecole - Centre commercial E.Leclerc - QC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-03-20", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1419912, + 46.05641465 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB64023A", + "ref": "", + "name": "Réseau AlterBase - Aubigné - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-02-24", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1419912, + 46.05641465 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB64023A", + "ref": "", + "name": "Réseau AlterBase - Aubigné - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-02-24", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.45415867, + 46.98505968 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB10078A", + "ref": "", + "name": "Réseau AlterBase - Argentonnay - Supêrette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-04-13", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.45415867, + 46.98505968 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB10078A", + "ref": "", + "name": "Réseau AlterBase - Argentonnay - Supêrette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-04-13", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55511357, + 46.47397865 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB01060A", + "ref": "", + "name": "Réseau AlterBase - Ardin - rue Alphonse Lavoix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-02-08", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55511357, + 46.47397865 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB01060A", + "ref": "", + "name": "Réseau AlterBase - Ardin - rue Alphonse Lavoix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-02-08", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13181, + 46.82647 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79005P0008A", + "ref": "", + "name": "Réseau AlterBase - Airvault - Pôle Santé & MAM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13181, + 46.82647 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79005P0008A", + "ref": "", + "name": "Réseau AlterBase - Airvault - Pôle Santé & MAM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.142448, + 46.825164 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79005P0027A", + "ref": "", + "name": "Réseau AlterBase - Airvault - Place du Cygne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.142448, + 46.825164 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79005P0027A", + "ref": "", + "name": "Réseau AlterBase - Airvault - Place du Cygne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.414381, + 46.2865953 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB42054A", + "ref": "", + "name": "Réseau AlterBase - Aiffres - Place René Cassin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-04-05", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.414381, + 46.2865953 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB42054A", + "ref": "", + "name": "Réseau AlterBase - Aiffres - Place René Cassin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-04-05", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.495796, + 46.8509075 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB09287A", + "ref": "", + "name": "Réseau AlterBase - Bressuire - Centre commercial Pont d'Ouit - QC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-02-05", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.494283, + 46.837561 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79049P0021A", + "ref": "", + "name": "Réseau AlterBase - Bressuire - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2013-07-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.494283, + 46.837561 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79049P0021A", + "ref": "", + "name": "Réseau AlterBase - Bressuire - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2013-07-22", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.670187, + 46.821 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB13082A", + "ref": "", + "name": "Réseau AlterBase - Cerizay - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2014-04-22", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07567057, + 46.10834219 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79083P0021A", + "ref": "", + "name": "Réseau AlterBase - Chef-Boutonne - Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-02-26", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06844854, + 46.1084164 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79083P0020A", + "ref": "", + "name": "Réseau AlterBase - Chef-Boutonne - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06844854, + 46.1084164 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79083P0020A", + "ref": "", + "name": "Réseau AlterBase - Chef-Boutonne - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.373516, + 46.360322 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB50103A", + "ref": "", + "name": "Réseau AlterBase - Chauray - Le Temple", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.373516, + 46.360322 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB50103A", + "ref": "", + "name": "Réseau AlterBase - Chauray - Le Temple", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.253067, + 46.664542 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB31300A", + "ref": "", + "name": "Réseau AlterBase - Châtillon sur Thouet - La Bressandière - QC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-10-01", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.253067, + 46.664542 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB31300A", + "ref": "", + "name": "Réseau AlterBase - Châtillon sur Thouet - La Bressandière - QC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-10-01", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.248314, + 46.662615 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB33001A", + "ref": "", + "name": "Réseau AlterBase - Châtillon sur Thouet - agence Séolis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-08", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.248314, + 46.662615 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB33001A", + "ref": "", + "name": "Réseau AlterBase - Châtillon sur Thouet - agence Séolis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-08", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40244332, + 46.48549392 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB02002A", + "ref": "", + "name": "Réseau AlterBase - Champdeniers - Place St Antoine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40244332, + 46.48549392 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB02002A", + "ref": "", + "name": "Réseau AlterBase - Champdeniers - Place St Antoine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.670187, + 46.821 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB13082A", + "ref": "", + "name": "Réseau AlterBase - Cerizay - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2014-04-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.488702, + 46.842215 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79049P008A", + "ref": "", + "name": "Réseau AlterBase - Bressuire - Siège de la Communauté d'Agglo 2B", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-03-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18543031, + 47.0539167 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB20087A", + "ref": "", + "name": "Réseau AlterBase - Brion près Thouet - Aire de repos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-12-18", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14301159, + 46.2217749 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79174P0017B", + "ref": "", + "name": "Réseau AlterBase - Melle - Place de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-09-05", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.418693, + 46.82054 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB12201A", + "ref": "", + "name": "Réseau AlterBase - Bressuire / St Sauveur - Salle Omnisports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-10-08", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.416726, + 46.822523 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB12016A", + "ref": "", + "name": "Réseau AlterBase - Bressuire / St Sauveur - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-10-08", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49713, + 46.838103 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79049P0020A", + "ref": "", + "name": "Réseau AlterBase - Bressuire - Pôle Multimodal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49713, + 46.838103 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79049P0020A", + "ref": "", + "name": "Réseau AlterBase - Bressuire - Pôle Multimodal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.473538, + 46.839468 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB12073A", + "ref": "", + "name": "Réseau AlterBase - Bressuire - agence Séolis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-03-05", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.473538, + 46.839468 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB12073A", + "ref": "", + "name": "Réseau AlterBase - Bressuire - agence Séolis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-03-05", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.488702, + 46.842215 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79049P008A", + "ref": "", + "name": "Réseau AlterBase - Bressuire - Siège de la Communauté d'Agglo 2B", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-03-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14574514, + 46.22041599 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79174P0029A", + "ref": "", + "name": "Réseau AlterBase - Melle - Place de Strasbourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-03-10", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.471157, + 46.315578 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79191P0185A", + "ref": "", + "name": "Réseau AlterBase - Niort - Près Faucher", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14301159, + 46.2217749 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79174P0017B", + "ref": "", + "name": "Réseau AlterBase - Melle - Place de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-09-05", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2157898, + 46.9787321 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79329P0063B", + "ref": "", + "name": "Réseau AlterBase - Thouars - Place Lavault - QC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-07-30", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02581, + 46.719493 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB32103A", + "ref": "", + "name": "Réseau AlterBase - Thénezay - Mairie ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.02581, + 46.719493 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB32103A", + "ref": "", + "name": "Réseau AlterBase - Thénezay - Mairie ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.418977, + 46.610536 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB28028A", + "ref": "", + "name": "Réseau AlterBase - Secondigny - Mairie ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-07-21", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.418977, + 46.610536 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB28028A", + "ref": "", + "name": "Réseau AlterBase - Secondigny - Mairie ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-07-21", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10559154, + 46.1315471 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79307P0010A", + "ref": "", + "name": "Réseau AlterBase - Sauzé Vaussais - Pôle Médical", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-04-27", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.10559154, + 46.1315471 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79307P0010A", + "ref": "", + "name": "Réseau AlterBase - Sauzé Vaussais - Pôle Médical", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-04-27", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.232689, + 46.888542 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB26031A", + "ref": "", + "name": "Réseau AlterBase - St Varent - Place du 14 Juillet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.232689, + 46.888542 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB26031A", + "ref": "", + "name": "Réseau AlterBase - St Varent - Place du 14 Juillet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18987608, + 46.2061172 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB58042A", + "ref": "", + "name": "Réseau AlterBase - St Roman les Melles - Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-24", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18987608, + 46.2061172 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB58042A", + "ref": "", + "name": "Réseau AlterBase - St Roman les Melles - Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-24", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5216527, + 46.3730661 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB47092A", + "ref": "", + "name": "Réseau AlterBase - St Rémy - Salle Polyvalente", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-05-18", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5216527, + 46.3730661 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB47092A", + "ref": "", + "name": "Réseau AlterBase - St Rémy - Salle Polyvalente", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-05-18", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.742817, + 46.989946 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB16001A", + "ref": "", + "name": "Réseau AlterBase - St Pierre des Echaubrognes - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.742817, + 46.989946 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB16001A", + "ref": "", + "name": "Réseau AlterBase - St Pierre des Echaubrognes - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.296768, + 46.572497 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB33137A", + "ref": "", + "name": "Réseau AlterBase - St Pardoux-Soutiers - Zone Commerciale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-03-05", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.296768, + 46.572497 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB33137A", + "ref": "", + "name": "Réseau AlterBase - St Pardoux-Soutiers - Zone Commerciale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-03-05", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.202642, + 46.412127 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79270P0024A", + "ref": "", + "name": "Réseau AlterBase - St Maixent l'Ecole - Les Halles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-14", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.202642, + 46.412127 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79270P0024A", + "ref": "", + "name": "Réseau AlterBase - St Maixent l'Ecole - Les Halles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-14", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19848589, + 46.41558618 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79270P0005A", + "ref": "", + "name": "Réseau AlterBase - St Maixent l'Ecole - Place Denfert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.19848589, + 46.41558618 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79270P0005A", + "ref": "", + "name": "Réseau AlterBase - St Maixent l'Ecole - Place Denfert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16642619, + 46.78781078 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB25010A", + "ref": "", + "name": "Réseau AlterBase - St Loup Lamairé - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16642619, + 46.78781078 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB25010A", + "ref": "", + "name": "Réseau AlterBase - St Loup Lamairé - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.217966, + 46.962352 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB18008A", + "ref": "", + "name": "Réseau AlterBase - St Jean de Thouars - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-12-22", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.217966, + 46.962352 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB18008A", + "ref": "", + "name": "Réseau AlterBase - St Jean de Thouars - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-12-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.71177102, + 46.26240115 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB41018A", + "ref": "", + "name": "Réseau AlterBase - St Hilaire la Palud - La Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.214995, + 46.978754 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79329P0063A", + "ref": "", + "name": "Réseau AlterBase - Thouars - Place Lavault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-20", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2157898, + 46.9787321 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79329P0063B", + "ref": "", + "name": "Réseau AlterBase - Thouars - Place Lavault - QC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-07-30", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14501628, + 46.2223296 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79174P0017C", + "ref": "", + "name": "Réseau AlterBase - Melle - Place Bujault Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-13", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1979541, + 46.981369 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79329P0077A", + "ref": "", + "name": "Réseau AlterBase - Thouars - Centre commercial Super U - QC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-01-15", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5380875, + 46.4077779 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB01041A", + "ref": "", + "name": "Réseau AlterBase - Villiers en Plaine - Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-12-21", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5380875, + 46.4077779 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB01041A", + "ref": "", + "name": "Réseau AlterBase - Villiers en Plaine - Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-12-21", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.394435, + 46.144166 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB60044A", + "ref": "", + "name": "Réseau AlterBase - Villiers en Bois - Zoodyssée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.394435, + 46.144166 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB60044A", + "ref": "", + "name": "Réseau AlterBase - Villiers en Bois - Zoodyssée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2887617, + 46.5165944 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB83036A", + "ref": "", + "name": "Réseau Alterbase - Verruyes - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-12-03", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2887617, + 46.5165944 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB83036A", + "ref": "", + "name": "Réseau Alterbase - Verruyes - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-12-03", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0255528, + 46.57567772 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB34023A", + "ref": "", + "name": "Réseau AlterBase - Vasles - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-01-26", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0255528, + 46.57567772 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB34023A", + "ref": "", + "name": "Réseau AlterBase - Vasles - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-01-26", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.353478, + 46.045597 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB17024A", + "ref": "", + "name": "Réseau AlterBase - Val en Vignes / Cersay - Place de la Mairie ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-20", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.353478, + 46.045597 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB17024A", + "ref": "", + "name": "Réseau AlterBase - Val en Vignes / Cersay - Place de la Mairie ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-20", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.012737, + 46.083781 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB63086A", + "ref": "", + "name": "Réseau AlterBase - Valdelaume / Bouin - Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-10-08", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.012737, + 46.083781 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB63086A", + "ref": "", + "name": "Réseau AlterBase - Valdelaume / Bouin - Grande rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-10-08", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2347598, + 46.991451 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB18212A", + "ref": "", + "name": "Réseau AlterBase - Thouars / Ste Radegonde - Centre commercial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-06-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2347598, + 46.991451 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB18212A", + "ref": "", + "name": "Réseau AlterBase - Thouars / Ste Radegonde - Centre commercial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-06-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244574, + 46.99604 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB18024A", + "ref": "", + "name": "Réseau AlterBase - Thouars / Ste Radegonde - agence Séolis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-10-08", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244574, + 46.99604 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB18024A", + "ref": "", + "name": "Réseau AlterBase - Thouars / Ste Radegonde - agence Séolis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-10-08", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.278269, + 46.976755 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB18117A", + "ref": "", + "name": "Réseau AlterBase - Thouars / Mauzé-Thouarsais - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-20", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.278269, + 46.976755 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB18117A", + "ref": "", + "name": "Réseau AlterBase - Thouars / Mauzé-Thouarsais - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-20", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2109496, + 46.9851529 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79329P0015A", + "ref": "", + "name": "Réseau AlterBase - Thouars - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-20", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2109496, + 46.9851529 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79329P0015A", + "ref": "", + "name": "Réseau AlterBase - Thouars - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-20", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.216844, + 46.972578 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79329P0036A", + "ref": "", + "name": "Réseau AlterBase - Thouars - Château de la Trémoïlle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-08-12", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.216844, + 46.972578 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79329P0036A", + "ref": "", + "name": "Réseau AlterBase - Thouars - Château de la Trémoïlle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-08-12", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.216606, + 46.975545 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79329P0055A", + "ref": "", + "name": "Réseau AlterBase - Thouars - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.216606, + 46.975545 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79329P0055A", + "ref": "", + "name": "Réseau AlterBase - Thouars - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1979541, + 46.981369 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79329P0077A", + "ref": "", + "name": "Réseau AlterBase - Thouars - Centre commercial Super U - QC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-01-15", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.71177102, + 46.26240115 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB41018A", + "ref": "", + "name": "Réseau AlterBase - St Hilaire la Palud - La Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3532908, + 46.65044958 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB28009A", + "ref": "", + "name": "Réseau AlterBase - St Aubin le Cloud - Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-01-14", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3532908, + 46.65044958 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB28009A", + "ref": "", + "name": "Réseau AlterBase - St Aubin le Cloud - Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-01-14", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.677204, + 46.782245 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB13017B", + "ref": "", + "name": "Réseau AlterBase - St André sur Sèvre - Salle Omnisports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.437953, + 46.303875 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79191P0229A", + "ref": "", + "name": "Réseau AlterBase - Niort - Centre commercial Intermarché - QC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.460921, + 46.32145 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79191P0079A", + "ref": "", + "name": "Réseau AlterBase - Niort - La Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-19", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.460921, + 46.32145 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79191P0079A", + "ref": "", + "name": "Réseau AlterBase - Niort - La Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-19", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.489271, + 46.3307391 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79191P0207A", + "ref": "", + "name": "Réseau AlterBase - Niort - Parc des Expositions Noron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-07-26", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.489271, + 46.3307391 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79191P0207A", + "ref": "", + "name": "Réseau AlterBase - Niort - Parc des Expositions Noron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-07-26", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4074369, + 46.3157895 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB49018A", + "ref": "", + "name": "Réseau AlterBase - Niort - L'Acclameur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-23", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4074369, + 46.3157895 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB49018A", + "ref": "", + "name": "Réseau AlterBase - Niort - L'Acclameur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-05-23", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4604029, + 46.3288736 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79191P0031A", + "ref": "", + "name": "Réseau AlterBase - Niort - Conseil Départemental 80", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4604029, + 46.3288736 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79191P0031A", + "ref": "", + "name": "Réseau AlterBase - Niort - Conseil Départemental 79", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.467523, + 46.328049 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79191P0045A", + "ref": "", + "name": "Réseau AlterBase - Niort - Moulin du Roc ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-07-23", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.467523, + 46.328049 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79191P0045A", + "ref": "", + "name": "Réseau AlterBase - Niort - Moulin du Roc ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-07-23", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.471157, + 46.315578 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79191P0185A", + "ref": "", + "name": "Réseau AlterBase - Niort - Près Faucher", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48823878, + 46.31882199 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB38069A", + "ref": "", + "name": "Réseau AlterBase - Niort - Patinoire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48823878, + 46.31882199 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB38069A", + "ref": "", + "name": "Réseau AlterBase - Niort - Patinoire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422689, + 46.335983 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB49067C", + "ref": "", + "name": "Réseau AlterBase - Niort - agence Séolis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Réservé PMR", + "start_date": "2023-03-06", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422689, + 46.335983 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB49067C", + "ref": "", + "name": "Réseau AlterBase - Niort - agence Séolis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Réservé PMR", + "start_date": "2023-03-06", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422692, + 46.336059 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB49067B", + "ref": "", + "name": "Réseau AlterBase - Niort - agence Séolis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-03-06", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422692, + 46.336059 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB49067B", + "ref": "", + "name": "Réseau AlterBase - Niort - agence Séolis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-03-06", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.589633, + 46.721541 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB07067A", + "ref": "", + "name": "Réseau AlterBase - Moncoutant sur Sèvre - Mairie ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-10-08", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.589633, + 46.721541 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB07067A", + "ref": "", + "name": "Réseau AlterBase - Moncoutant sur Sèvre - Mairie ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2018-10-08", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05695068, + 46.49725688 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB35114A", + "ref": "", + "name": "Réseau AlterBase - Ménigoute - Mairie ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.05695068, + 46.49725688 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB35114A", + "ref": "", + "name": "Réseau AlterBase - Ménigoute - Mairie ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15772504, + 46.2266485 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB58084A", + "ref": "", + "name": "Réseau AlterBase - Melle / St Martin les Melles - Lotissement du Pérot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-02-22", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.15772504, + 46.2266485 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB58084A", + "ref": "", + "name": "Réseau AlterBase - Melle / St Martin les Melles - Lotissement du Pérot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-02-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.14501628, + 46.2223296 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79174P0017C", + "ref": "", + "name": "Réseau AlterBase - Melle - Place Bujault Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-13", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.437953, + 46.303875 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79191P0229A", + "ref": "", + "name": "Réseau AlterBase - Niort - Centre commercial Intermarché - QC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.437902, + 46.303843 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79191P0229B", + "ref": "", + "name": "Réseau AlterBase - Niort - Centre commercial Intermarché - DC 24 kW", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.437902, + 46.303843 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79191P0229B", + "ref": "", + "name": "Réseau AlterBase - Niort - Centre commercial Intermarché - DC 24 kW", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2476458, + 46.6477507 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79202P0095A", + "ref": "", + "name": "Réseau AlterBase - Parthenay - Palais des Congrès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-01-15", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.677204, + 46.782245 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB13017A", + "ref": "", + "name": "Réseau AlterBase - St André sur Sèvre - Salle Omnisports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11574545, + 46.29266393 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB57009A", + "ref": "", + "name": "Réseau AlterBase - Rom - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-03-06", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11574545, + 46.29266393 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB57009A", + "ref": "", + "name": "Réseau AlterBase - Rom - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-03-03", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34483773, + 46.25910761 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB54092A", + "ref": "", + "name": "Réseau AlterBase - Prahecq - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34483773, + 46.25910761 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB54092A", + "ref": "", + "name": "Réseau AlterBase - Prahecq - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.055385, + 46.881532 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB24056A", + "ref": "", + "name": "Réseau AlterBase - Plaine et Vallées / St Jouin de Marnes - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-02", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.055385, + 46.881532 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB24056A", + "ref": "", + "name": "Réseau AlterBase - Plaine et Vallées / St Jouin de Marnes - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-02", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08293332, + 46.90095884 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB22026A", + "ref": "", + "name": "Réseau AlterBase - Plaine et Vallées / Oiron - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-01-06", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08293332, + 46.90095884 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB22026A", + "ref": "", + "name": "Réseau AlterBase - Plaine et Vallées / Oiron - Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-01-06", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.04221723, + 46.97521972 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB22002A", + "ref": "", + "name": "Réseau AlterBase - Pas de Jeu - Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-01-13", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.04221723, + 46.97521972 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB22002A", + "ref": "", + "name": "Réseau AlterBase - Pas de Jeu - Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-01-13", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2476458, + 46.6477507 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79202P0095A", + "ref": "", + "name": "Réseau AlterBase - Parthenay - Palais des Congrès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-01-15", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.463516, + 46.331921 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79191P0265A", + "ref": "", + "name": "Réseau AlterBase - Niort - Centre aquatique Pré-Leroy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-05", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.251641, + 46.648833 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79202P0043A", + "ref": "", + "name": "Réseau AlterBase - Parthenay - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-08", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.251641, + 46.648833 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79202P0043A", + "ref": "", + "name": "Réseau AlterBase - Parthenay - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2015-07-08", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0521514, + 46.3965368 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB53083A", + "ref": "", + "name": "Réseau AlterBase - Pamproux - Pôle Santé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-10-23", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0521514, + 46.3965368 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB53083A", + "ref": "", + "name": "Réseau AlterBase - Pamproux - Pôle Santé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-10-23", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0553447, + 46.3959629 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB53156A", + "ref": "", + "name": "Réseau AlterBase - Pamproux - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-03", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0553447, + 46.3959629 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB53156A", + "ref": "", + "name": "Réseau AlterBase - Pamproux - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2016-10-03", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.593893, + 46.944964 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB73023A", + "ref": "", + "name": "Réseau AlterBase - Nueil les Aubiers - Espace Culturel Belle Arrivée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-01-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.593893, + 46.944964 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB73023A", + "ref": "", + "name": "Réseau AlterBase - Nueil les Aubiers - Espace Culturel Belle Arrivée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2019-01-22", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.58792319, + 46.95686714 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB73067A", + "ref": "", + "name": "Réseau AlterBase - Nueil les Aubiers - Place Colun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.58792319, + 46.95686714 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB73067A", + "ref": "", + "name": "Réseau AlterBase - Nueil les Aubiers - Place Colun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.463516, + 46.331921 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "492041066", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79191P0265B", + "ref": "", + "name": "Réseau AlterBase - Niort - Centre aquatique Pré-Leroy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-05", + "note": "", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.214995, + 46.978754 + ] + }, + "properties": { + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "ref:EU:EVSE": "FRSEOPAB79329P0063A", + "ref": "", + "name": "Réseau AlterBase - Thouars - Place Lavault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2017-11-20", + "note": "t3c", + "source:date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.371096600000001, + 48.15908049999999 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEHOTELNIDCIGOGNES11", + "ref": "2f68eef6-cc99-11ed-afa1-0242ac120002", + "name": "HOTEL AU NID DE CIGOGNES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-15", + "note": "24/7", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9257621, + 43.5282927 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEHOTELAMERIQUEPALAVAS11", + "ref": "0eb30e38-cc9b-11ed-afa1-0242ac120002", + "name": "Hôtel Amérique Palavas Plage Piscine ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-30", + "note": "24/7", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9652648, + 50.2669787 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "317191617", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": " MAZDA MAUBEUGE- SARL FRANCO ", + "ref:EU:EVSE": "FRZMAE22AC50785", + "ref": "50785", + "name": "Mazda - Maubeuge - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-06", + "note": "", + "source:date": "2021-01-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59567398310793, + 50.51999281984215 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "528932627", + "email": "advenir@freshmile.com", + "phone": "03 88 68 84 58 ", + "network": "Touquet Semi Rapide", + "ref:EU:EVSE": "FRFR1PNW2L9MBAJT", + "ref": "", + "name": "Touquet, Avenue de l'Hippodrome", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5890656778496008, + 50.526149397749904 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "528932627", + "email": "advenir@freshmile.com", + "phone": "03 88 68 84 58 ", + "network": "Touquet Normal", + "ref:EU:EVSE": "FRFR1PQAHLNICPOS", + "ref": "", + "name": "Touquet, Avenue Quentovic", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5957009765331387, + 50.52003488743544 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "528932627", + "email": "advenir@freshmile.com", + "phone": "03 88 68 84 58 ", + "network": "Touquet Normal", + "ref:EU:EVSE": "FRFR1PP2SBBU9AIE", + "ref": "", + "name": "Touquet, Avenue de l'Hippodrome", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5957009765331387, + 50.52003488743544 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "528932627", + "email": "advenir@freshmile.com", + "phone": "03 88 68 84 58 ", + "network": "Touquet Normal", + "ref:EU:EVSE": "FRFR1PP2SBBU9AIE", + "ref": "", + "name": "Touquet, Avenue de l'Hippodrome", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5865497163965239, + 50.52024529238238 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "528932627", + "email": "advenir@freshmile.com", + "phone": "03 88 68 84 58 ", + "network": "Touquet Normal", + "ref:EU:EVSE": "FRFR1PGBTVFCOXRK", + "ref": "", + "name": "Touquet, Place Edouard VII", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5865497163965239, + 50.52024529238238 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "528932627", + "email": "advenir@freshmile.com", + "phone": "03 88 68 84 58 ", + "network": "Touquet Normal", + "ref:EU:EVSE": "FRFR1PGBTVFCOXRK", + "ref": "", + "name": "Touquet, Place Edouard VII", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5865782468226999, + 50.52023803636371 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "528932627", + "email": "advenir@freshmile.com", + "phone": "03 88 68 84 58 ", + "network": "Touquet Semi Rapide", + "ref:EU:EVSE": "FRFR1PIOA9IKAACX", + "ref": "", + "name": "Touquet, Place Edouard VII", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5890656778496008, + 50.526149397749904 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "528932627", + "email": "advenir@freshmile.com", + "phone": "03 88 68 84 58 ", + "network": "Touquet Normal", + "ref:EU:EVSE": "FRFR1PQAHLNICPOS", + "ref": "", + "name": "Touquet, Avenue Quentovic", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5802344825222774, + 50.5237102932706 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "528932627", + "email": "advenir@freshmile.com", + "phone": "03 88 68 84 58 ", + "network": "Touquet Normal", + "ref:EU:EVSE": "FRFR1PIOMGH1LYJJ", + "ref": "", + "name": "Touquet, Digue-promenade des Princes de Monaco", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5802344825222774, + 50.5237102932706 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "528932627", + "email": "advenir@freshmile.com", + "phone": "03 88 68 84 58 ", + "network": "Touquet Normal", + "ref:EU:EVSE": "FRFR1PIOMGH1LYJJ", + "ref": "", + "name": "Touquet, Digue-promenade des Princes de Monaco", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.579135760951923, + 50.51658485952207 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "528932627", + "email": "advenir@freshmile.com", + "phone": "03 88 68 84 58 ", + "network": "Touquet Normal", + "ref:EU:EVSE": "FRFR1PVLIGQ2PRQT", + "ref": "", + "name": "Touquet, Boulevard Jules Pouget", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.579135760951923, + 50.51658485952207 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "528932627", + "email": "advenir@freshmile.com", + "phone": "03 88 68 84 58 ", + "network": "Touquet Normal", + "ref:EU:EVSE": "FRFR1PVLIGQ2PRQT", + "ref": "", + "name": "Touquet, Boulevard Jules Pouget", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.7471049, + 45.4137074 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6481841C9C07BE00DED7039D", + "ref": "6481841c9c07be00ded7039d", + "name": "RechargerMonAuto - Déplacer Les Montagnes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5677804, + 43.2866873 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6486B47A9C07BE00DED73694", + "ref": "6486b47a9c07be00ded73694", + "name": "RechargerMonAuto - Golfe de Saint Tropez", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5677804, + 43.2866873 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6486B47A9C07BE00DED73694", + "ref": "6486b47a9c07be00ded73694", + "name": "RechargerMonAuto - Golfe de Saint Tropez", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5677804, + 43.2866873 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6486B47A9C07BE00DED73694", + "ref": "6486b47a9c07be00ded73694", + "name": "RechargerMonAuto - Golfe de Saint Tropez", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5677804, + 43.2866873 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6486B47A9C07BE00DED73694", + "ref": "6486b47a9c07be00ded73694", + "name": "RechargerMonAuto - Golfe de Saint Tropez", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5677804, + 43.2866873 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6486B47A9C07BE00DED73694", + "ref": "6486b47a9c07be00ded73694", + "name": "RechargerMonAuto - Golfe de Saint Tropez", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.057033999999999, + 45.84568999999999 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6475957AEF82E9F9494A574A", + "ref": "6475957aef82e9f9494a574a", + "name": "RechargerMonAuto - Fibtech", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0311097, + 44.0911453 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6460E6968A20F02768A741FF", + "ref": "6460e6968a20f02768a741ff", + "name": "RechargerMonAuto - Aubipose", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.758025, + 42.484241 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6492BF327AFD87059FF1B834", + "ref": "6492bf327afd87059ff1b834", + "name": "RechargerMonAuto - Camping De Nogarede", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.758025, + 42.484241 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6492BF327AFD87059FF1B834", + "ref": "6492bf327afd87059ff1b834", + "name": "RechargerMonAuto - Camping De Nogarede", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.758025, + 42.484241 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6492BF327AFD87059FF1B834", + "ref": "6492bf327afd87059ff1b834", + "name": "RechargerMonAuto - Camping De Nogarede", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1967988, + 44.4381511 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6460E7E38A20F02768A74212", + "ref": "6460e7e38a20f02768a74212", + "name": "RechargerMonAuto - Calice du Gevaudan", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1967988, + 44.4381511 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6460E7E38A20F02768A74212", + "ref": "6460e7e38a20f02768a74212", + "name": "RechargerMonAuto - Calice du Gevaudan", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5677804, + 43.2866873 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6486B47A9C07BE00DED73694", + "ref": "6486b47a9c07be00ded73694", + "name": "RechargerMonAuto - Golfe de Saint Tropez", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1967988, + 44.4381511 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6460E7E38A20F02768A74212", + "ref": "6460e7e38a20f02768a74212", + "name": "RechargerMonAuto - Calice du Gevaudan", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5677804, + 43.2866873 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6486B47A9C07BE00DED73694", + "ref": "6486b47a9c07be00ded73694", + "name": "RechargerMonAuto - Golfe de Saint Tropez", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5677804, + 43.2866873 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6486B47A9C07BE00DED73694", + "ref": "6486b47a9c07be00ded73694", + "name": "RechargerMonAuto - Golfe de Saint Tropez", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5677804, + 43.2866873 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6486B47A9C07BE00DED73694", + "ref": "6486b47a9c07be00ded73694", + "name": "RechargerMonAuto - Golfe de Saint Tropez", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.372115, + 46.12509099999999 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64807C519C07BE00DED6EA17", + "ref": "64807c519c07be00ded6ea17", + "name": "RechargerMonAuto - Hotel du pont", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4192407, + 44.4744571 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6460E2EB8A20F02768A741D4", + "ref": "6460e2eb8a20f02768a741d4", + "name": "RechargerMonAuto - La Chadenède", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.057033999999999, + 45.84568999999999 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64A523703D8A3B5A632CBF19", + "ref": "64a523703d8a3b5a632cbf19", + "name": "RechargerMonAuto - Les Seigneurs", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.057033999999999, + 45.84568999999999 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64A523703D8A3B5A632CBF19", + "ref": "64a523703d8a3b5a632cbf19", + "name": "RechargerMonAuto - Les Seigneurs", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.057033999999999, + 45.84568999999999 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64A523703D8A3B5A632CBF19", + "ref": "64a523703d8a3b5a632cbf19", + "name": "RechargerMonAuto - Les Seigneurs", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.057033999999999, + 45.84568999999999 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64A523703D8A3B5A632CBF19", + "ref": "64a523703d8a3b5a632cbf19", + "name": "RechargerMonAuto - Les Seigneurs", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.057033999999999, + 45.84568999999999 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64A523703D8A3B5A632CBF19", + "ref": "64a523703d8a3b5a632cbf19", + "name": "RechargerMonAuto - Les Seigneurs", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3670389, + 46.10760080000001 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64807C069C07BE00DED6EA12", + "ref": "64807c069c07be00ded6ea12", + "name": "RechargerMonAuto - Luguet", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3670389, + 46.10760080000001 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64807C069C07BE00DED6EA12", + "ref": "64807c069c07be00ded6ea12", + "name": "RechargerMonAuto - Luguet", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3670389, + 46.10760080000001 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64807C069C07BE00DED6EA12", + "ref": "64807c069c07be00ded6ea12", + "name": "RechargerMonAuto - Luguet", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5955586, + 45.2732968 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64807C309C07BE00DED6EA14", + "ref": "64807c309c07be00ded6ea14", + "name": "RechargerMonAuto - Peyrat", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.79973, + 43.2076102 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6486B0E79C07BE00DED73672", + "ref": "6486b0e79c07be00ded73672", + "name": "RechargerMonAuto - Relais des Corbières", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.79973, + 43.2076102 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6486B0E79C07BE00DED73672", + "ref": "6486b0e79c07be00ded73672", + "name": "RechargerMonAuto - Relais des Corbières", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.143766265497639, + 43.3292004491334 + ] + }, + "properties": { + "operator": "Electromaps", + "owner:ref:FR:SIREN": "320342975", + "email": "ismael@electromaps.com", + "phone": "34 931 574 967 ", + "network": "SAS La Tuiliere", + "ref:EU:EVSE": "FR000028067822", + "ref": "9d048374-0445-11ee-be56-0242ac120002", + "name": "Carry-le-Rouet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Réservé PMR", + "start_date": "2023-01-13", + "note": "", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4524017, + 48.2368506 + ] + }, + "properties": { + "operator": "Gamba et Rota", + "owner:ref:FR:SIREN": "301213476", + "email": "stephane.bussiere@varennespie.fr", + "phone": "0689771003", + "network": "Gamba et Rota", + "ref:EU:EVSE": "Non concerné", + "ref": "FRWBCERCG0C21148", + "name": "Gamba et Rota 1", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4524017, + 48.2368506 + ] + }, + "properties": { + "operator": "Gamba et Rota", + "owner:ref:FR:SIREN": "301213476", + "email": "stephane.bussiere@varennespie.fr", + "phone": "0689771003", + "network": "Gamba et Rota", + "ref:EU:EVSE": "Non concerné", + "ref": "FRWBCERCG0C2115C", + "name": "Gamba et Rota 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1348357, + 48.3005817 + ] + }, + "properties": { + "operator": "Festilight", + "owner:ref:FR:SIREN": "301213476", + "email": "didier.maroilley@festilight.fr", + "phone": "0325832300", + "network": "Festilight", + "ref:EU:EVSE": "Non concerné", + "ref": "FRWBCERJG0C23026", + "name": "Festilight 7D Log", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1348357, + 48.3005817 + ] + }, + "properties": { + "operator": "Festilight", + "owner:ref:FR:SIREN": "301213476", + "email": "didier.maroilley@festilight.fr", + "phone": "0325832300", + "network": "Festilight", + "ref:EU:EVSE": "Non concerné", + "ref": "FRWBCERJG0C2303B", + "name": "Festilight 7D Bur", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1348357, + 48.3005817 + ] + }, + "properties": { + "operator": "Festilight", + "owner:ref:FR:SIREN": "301213476", + "email": "didier.maroilley@festilight.fr", + "phone": "0325832300", + "network": "Festilight", + "ref:EU:EVSE": "Non concerné", + "ref": "FRWBCERCG0C210E4", + "name": "Festilight 22D Ter", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1348357, + 48.3005817 + ] + }, + "properties": { + "operator": "Festilight", + "owner:ref:FR:SIREN": "301213476", + "email": "didier.maroilley@festilight.fr", + "phone": "0325832300", + "network": "Festilight", + "ref:EU:EVSE": "Non concerné", + "ref": "FRWBCERCG0C2115F", + "name": "Festilight 22D Log", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1348357, + 48.3005817 + ] + }, + "properties": { + "operator": "Festilight", + "owner:ref:FR:SIREN": "301213476", + "email": "didier.maroilley@festilight.fr", + "phone": "0325832300", + "network": "Festilight", + "ref:EU:EVSE": "Non concerné", + "ref": "FRWBCERCG0C2117D", + "name": "Festilight 22D Bur", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.954054532862406, + 47.2166457444792 + ] + }, + "properties": { + "operator": "Est Auto", + "owner:ref:FR:SIREN": "527529119", + "email": "cjarriaux@amplitude-auto.com", + "phone": "0381477878", + "network": "Ford", + "ref:EU:EVSE": "Non concerné", + "ref": "FRWBCEHGG0C03009", + "name": "Est Auto", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-31", + "note": "", + "source:date": "2023-07-01", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9321064, + 48.7513226 + ] + }, + "properties": { + "operator": "GROUPE COURTOIS SOCOHY", + "owner:ref:FR:SIREN": "840017446", + "email": "dimitri.courtois@groupe-courtois.fr>", + "phone": "0776075550", + "network": "Socohy Hyundai Coignière", + "ref:EU:EVSE": "FREVMENVG0B46002", + "ref": "NVG0B46002", + "name": "Socohy Hyundai Coignière", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "recharge possible uniquement pendant les horaires d'ouverture de la concession", + "source:date": "2023-06-23", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0458858, + 48.7978439 + ] + }, + "properties": { + "operator": "GROUPE COURTOIS SOCOHY", + "owner:ref:FR:SIREN": "840017446", + "email": "dimitri.courtois@groupe-courtois.fr", + "phone": "0776075550", + "network": "Socohy Hyundai Montigny", + "ref:EU:EVSE": "FREVMENVG0B46012", + "ref": "NVG0B46012", + "name": "Socohy Hyundai Montigny", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "Recharge autorisée uniquement pendant les horaires d'ouverture de la concession", + "source:date": "2023-06-23", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.217619, + 50.566184 + ] + }, + "properties": { + "operator": "freshmile", + "owner:ref:FR:SIREN": "215901687", + "email": "exploitation@freshmile.com", + "phone": "0391830700", + "network": "FRESHMILE", + "ref:EU:EVSE": "FRFR1EVLH1", + "ref": "FR*FR1*EVLH*1", + "name": "CYSOING", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-11", + "note": "", + "source:date": "2023-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.345135599999999, + 41.69983680000001 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEVILLAPOGGIOLI11", + "ref": "e09c9636-039a-11ee-be56-0242ac120002", + "name": "VillaPoggioli1 ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-05", + "note": "24/7", + "source:date": "2023-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4743602103553713, + 47.51236168509763 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "449926302", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "RURAL GARDEN", + "ref:EU:EVSE": "FRZPEE170549", + "ref": "E170549", + "name": "RURAL GARDEN - CENTRAKOR EXT GAUCHE ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "", + "source:date": "2022-12-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.95, + 43.47 + ] + }, + "properties": { + "operator": "RONALEV", + "owner:ref:FR:SIREN": "417948882", + "email": "leclercq.ronalev@orange.fr", + "phone": "0610013878", + "network": "Borne de recharge RONALEV", + "ref:EU:EVSE": "Non concerné", + "ref": "589ab6df-40f9-4200-84ec-301b6c4e1faa", + "name": "Borne Charriere Ronalev", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'enseigne", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.987552127378094, + 43.442782142736384 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "213105695", + "email": "support@freshmile.com", + "phone": "03 68 78 14 35", + "network": "Mairie Vaudreuille ", + "ref:EU:EVSE": "FRFR1ESMNJ1", + "ref": "84743104-0456-11ee-be56-0242ac120002", + "name": " Vaudreuille", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3670389, + 46.10760080000001 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0665050816", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64807C069C07BE00DED6EA12", + "ref": "64807c069c07be00ded6ea12", + "name": "RechargerMonAuto - Luguet", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6760356, + 46.441643 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0665050816", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64763927EF82E9F9494A5E0E", + "ref": "64763927ef82e9f9494a5e0e", + "name": "RechargerMonAuto - Talmont", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.057033999999999, + 45.84568999999999 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0665050816", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6475957AEF82E9F9494A574A", + "ref": "6475957aef82e9f9494a574a", + "name": "RechargerMonAuto - Fibtech", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.372115, + 46.12509099999999 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0665050816", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64807C519C07BE00DED6EA17", + "ref": "64807c519c07be00ded6ea17", + "name": "RechargerMonAuto - Hotel du pont", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4192407, + 44.4744571 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0665050816", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6460E2EB8A20F02768A741D4", + "ref": "6460e2eb8a20f02768a741d4", + "name": "RechargerMonAuto - La Chadenède", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3670389, + 46.10760080000001 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0665050816", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64807C069C07BE00DED6EA12", + "ref": "64807c069c07be00ded6ea12", + "name": "RechargerMonAuto - Luguet", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3670389, + 46.10760080000001 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0665050816", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64807C069C07BE00DED6EA12", + "ref": "64807c069c07be00ded6ea12", + "name": "RechargerMonAuto - Luguet", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5955586, + 45.2732968 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0665050816", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64807C309C07BE00DED6EA14", + "ref": "64807c309c07be00ded6ea14", + "name": "RechargerMonAuto - Peyrat", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6760356, + 46.441643 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0665050816", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64763927EF82E9F9494A5E0E", + "ref": "64763927ef82e9f9494a5e0e", + "name": "RechargerMonAuto - Talmont", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6760356, + 46.441643 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0665050816", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP64763927EF82E9F9494A5E0E", + "ref": "64763927ef82e9f9494a5e0e", + "name": "RechargerMonAuto - Talmont", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0311097, + 44.0911453 + ] + }, + "properties": { + "operator": "RechargerMonAuto", + "owner:ref:FR:SIREN": "", + "email": "contact@rechargermonauto.com", + "phone": "0665050816", + "network": "RechargerMonAuto", + "ref:EU:EVSE": "FRRMAP6460E6968A20F02768A741FF", + "ref": "6460e6968a20f02768a741ff", + "name": "RechargerMonAuto - Aubipose", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Aucune", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4218187, + 49.3959347 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "tech@eoliberty.com", + "phone": "", + "network": "Réseau de recharge Charge-in", + "ref:EU:EVSE": "FRLIBP329104", + "ref": "", + "name": "Midas Fitz-James", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4218187, + 49.3959347 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "tech@eoliberty.com", + "phone": "", + "network": "Réseau de recharge Charge-in", + "ref:EU:EVSE": "FRLIBP329104", + "ref": "", + "name": "Midas Fitz-James", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1178263, + 45.6494913 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "tech@eoliberty.com", + "phone": "", + "network": "Réseau de recharge Charge-in", + "ref:EU:EVSE": "FRALIB328386", + "ref": "", + "name": "Camping le Puits de l'Auture", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1178263, + 45.6494913 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "", + "email": "tech@eoliberty.com", + "phone": "", + "network": "Réseau de recharge Charge-in", + "ref:EU:EVSE": "FRALIBE328386", + "ref": "", + "name": "Camping le Puits de l'Auture", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82, + 45.33 + ] + }, + "properties": { + "operator": "MONTA", + "owner:ref:FR:SIREN": "800654774", + "email": "amgh@monta.com", + "phone": "+33 662 64 36 90", + "network": "MONTA", + "ref:EU:EVSE": "Non concerné", + "ref": "9a1318f7-e55f-4811-8e66-a6dfd17a0121", + "name": "35 RUE DE GAMPALOUP", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-20", + "note": "accessible a toute heure", + "source:date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.853408088061449, + 43.954525553229516 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "480169119", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SUD AVEYRON AUTOMOBILES - FORD SAINT AFFRIQUE", + "ref:EU:EVSE": "FRZPEE175271", + "ref": "E175271", + "name": "FORD SAINT AFFRIQUE ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-31", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.853408088061449, + 43.954525553229516 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "480169119", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SUD AVEYRON AUTOMOBILES - FORD SAINT AFFRIQUE", + "ref:EU:EVSE": "FRZPEE175270", + "ref": "E175270", + "name": " FORD SAINT AFFRIQUE ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-31", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52710519266027, + 48.832825866061164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "785665126", + "email": "web@freshmile.com", + "phone": "369246732", + "network": "Freshmile", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Hopital Saint Camille Parking exterieur", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2023-06-26", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.16, + 45.8 + ] + }, + "properties": { + "operator": "ART DECO FINITION", + "owner:ref:FR:SIREN": "478846231", + "email": "silva.adf@orange.fr", + "phone": "", + "network": "ART DECO FINITION", + "ref:EU:EVSE": "Non concerné", + "ref": "7ffd26f8-4030-45ea-be1b-8b9322e17e2d", + "name": "IRVE ART DECO FINITION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-13", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780446, + 43.9585575 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMECASAB1", + "ref": "756453", + "name": "borneco casab", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780446, + 43.9585575 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMECASA1", + "ref": "756453", + "name": "borneco casaa", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780446, + 43.9585575 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMESAINTQUENTIN111", + "ref": "26596", + "name": "borneco saint quentin ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780446, + 43.9585575 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMESAINTQUENTIN141", + "ref": "26596", + "name": "borneco saint quentin ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780446, + 43.9585575 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMESAINTQUENTIN81", + "ref": "26596", + "name": "borneco saint quentin ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780446, + 43.9585575 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMESAINTQUENTIN31", + "ref": "26596", + "name": "borneco saint quentin ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780446, + 43.9585575 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMESAINTQUENTIN21", + "ref": "26596", + "name": "borneco saint quentin ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780446, + 43.9585575 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMESAINTQUENTIN101", + "ref": "26596", + "name": "borneco saint quentin ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780446, + 43.9585575 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMESAINTQUENTIN161", + "ref": "26596", + "name": "borneco saint quentin ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780446, + 43.9585575 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMESAINTQUENTIN51", + "ref": "26596", + "name": "borneco saint quentin ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780446, + 43.9585575 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMESAINTQUENTIN71", + "ref": "26596", + "name": "borneco saint quentin ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780446, + 43.9585575 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMESAINTQUENTIN151", + "ref": "26596", + "name": "borneco saint quentin ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780446, + 43.9585575 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMESAINTQUENTIN91", + "ref": "26596", + "name": "borneco saint quentin ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780446, + 43.9585575 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMESAINTQUENTIN171", + "ref": "26596", + "name": "borneco saint quentin ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780446, + 43.9585575 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMESAINTQUENTIN181", + "ref": "26596", + "name": "borneco saint quentin ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780446, + 43.9585575 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "669684978", + "network": "BornEco", + "ref:EU:EVSE": "FRBHMESAINTQUENTIN1941", + "ref": "26596", + "name": "borneco saint quentin ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-06-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8846990973662954, + 44.107170327068204 + ] + }, + "properties": { + "operator": "SELARL PHARMACIE CEVENOLE", + "owner:ref:FR:SIREN": "822405973", + "email": "pharma.cevenole@gmail.com", + "phone": "04 66 85 31 68", + "network": "SELARL PHARMACIE CEVENOLE", + "ref:EU:EVSE": "Non concerné", + "ref": "4e026926-06c5-11ee-be56-0242ac120002", + "name": "SELARL PHARMACIE CEVENOLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-05-10", + "note": "Recharge uniquement accessible durant les horaires d'ouverture", + "source:date": "2023-01-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.136254786296182, + 43.54064693288783 + ] + }, + "properties": { + "operator": "SCP ACANTHE DRIMARACCI", + "owner:ref:FR:SIREN": "442767026", + "email": "xavier.drimaracci@wanadoo.fr", + "phone": "06 14 08 56 90", + "network": "SCP ACANTHE DRIMARACCI", + "ref:EU:EVSE": "Non concerné", + "ref": "4db960aa-06c5-11ee-be56-0242ac120002", + "name": "SCP ACANTHE DRIMARACCI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-11", + "note": "Recharge uniquement accessible durant les horaires d'ouverture", + "source:date": "2023-01-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.206137457654465, + 43.745680776707296 + ] + }, + "properties": { + "operator": "IFERRO", + "owner:ref:FR:SIREN": "843380148", + "email": "nicolas.sebert@iferro.fr", + "phone": "06 64 22 11 43", + "network": "IFERRO", + "ref:EU:EVSE": "Non concerné", + "ref": "39513d7c-0472-11ee-be56-0242ac120002", + "name": "IFERRO", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-26", + "note": " Recharge uniquement accessible durant les horaires d'ouverture", + "source:date": "2023-01-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2585815, + 45.90524019999999 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "332944032", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Dolus-d'Oléron ", + "ref:EU:EVSE": "FRZPEE174558", + "ref": "E174558", + "name": "Intermarché - Dolus-d'Oléron - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2585815, + 45.90524019999999 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "332944032", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Dolus-d'Oléron", + "ref:EU:EVSE": "FRZPEE174559", + "ref": "E174559", + "name": "Intermarché - Dolus-d'Oléron - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2585815, + 45.90524019999999 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "332944032", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Dolus-d'Oléron ", + "ref:EU:EVSE": "FRZPEE153279", + "ref": "E153279", + "name": "Intermarché - Dolus-d'Oléron - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-19", + "note": "", + "source:date": "2022-09-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2585815, + 45.90524019999999 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "332944032", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Dolus-d'Oléron", + "ref:EU:EVSE": "FRZPEE153280", + "ref": "E153280", + "name": "Intermarché - Dolus-d'Oléron - 22kW AC", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-19", + "note": "", + "source:date": "2022-09-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08, + 43.68 + ] + }, + "properties": { + "operator": "Sud Camargue", + "owner:ref:FR:SIREN": "802393371", + "email": "info@sudcamargue.fr", + "phone": "0689198608", + "network": "Borne de recharge Sud Camargue", + "ref:EU:EVSE": "Non concerné", + "ref": "f0563af9-5bb6-48ef-9982-2d8a8b00639c", + "name": "Borne de recharge Sud Camargue Lunel Viel", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-12", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23, + 49.11 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "314481250", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWWFF9DHV9P", + "ref": "WWFF9DHV9P", + "name": "XEV601C", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "compte prépayé", + "source:date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23, + 49.11 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "314481250", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1PWWFF9DHV9P", + "ref": "WWFF9DHV9P", + "name": "XEV601C", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "compte prépayé", + "source:date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9863507, + 50.4699234 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "OMEO", + "ref:EU:EVSE": "Non concerné", + "ref": "b8e7213c-daf2-46d0-8fec-82917f4d1e1a", + "name": "OMEO", + "capacity": "3", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-03-08", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6075326, + 50.6962979 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "desenfans boulogne", + "ref:EU:EVSE": "Non concerné", + "ref": "0801cdce-0892-4cf9-9a9c-9a95b6322037", + "name": "desenfans boulogne", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-23", + "note": "", + "source:date": "2023-05-23", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0558528, + 43.12799930000001 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMECAPITOULCHATEAU11", + "ref": "ddaaa09a-c94c-11ed-afa1-0242ac120002", + "name": "CHATEAU CAPITOUL ", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-23", + "note": "24/7", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0558528, + 43.12799930000001 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMECAPITOULHAMEAU11", + "ref": "e274e464-c94c-11ed-afa1-0242ac120002", + "name": "CHATEAU CAPITOUL ", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-23", + "note": "24/7", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.363111, + 48.106855 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363715", + "ref": "", + "name": "R3 - Norauto Colmar", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.602383, + 50.405159 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333935", + "ref": "", + "name": "R3 - Norauto Berck", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11163, + 49.4094 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283501", + "ref": "", + "name": "R3 - Norauto Beauvais", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11163, + 49.4094 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283501", + "ref": "", + "name": "R3 - Norauto Beauvais", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11163, + 49.4094 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283501", + "ref": "", + "name": "R3 - Norauto Beauvais", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11163, + 49.4094 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283501", + "ref": "", + "name": "R3 - Norauto Beauvais", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11163, + 49.4094 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283501", + "ref": "", + "name": "R3 - Norauto Beauvais", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.602383, + 50.405159 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333935", + "ref": "", + "name": "R3 - Norauto Berck", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.602383, + 50.405159 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333935", + "ref": "", + "name": "R3 - Norauto Berck", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.602383, + 50.405159 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333935", + "ref": "", + "name": "R3 - Norauto Berck", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.602383, + 50.405159 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333935", + "ref": "", + "name": "R3 - Norauto Berck", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.288004, + 48.172688 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363744", + "ref": "", + "name": "R3 - Norauto Sens", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.647624, + 47.348542 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333944", + "ref": "", + "name": "R3 - Pizza del Arte Joué-les-Tours", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.288004, + 48.172688 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363744", + "ref": "", + "name": "R3 - Norauto Sens", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.288004, + 48.172688 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363744", + "ref": "", + "name": "R3 - Norauto Sens", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.988355, + 50.413551 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258268", + "ref": "", + "name": "R3 - Norauto Noyelles Godault", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.988355, + 50.413551 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258268", + "ref": "", + "name": "R3 - Norauto Noyelles Godault", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.988355, + 50.413551 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258268", + "ref": "", + "name": "R3 - Norauto Noyelles Godault", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.988355, + 50.413551 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258268", + "ref": "", + "name": "R3 - Norauto Noyelles Godault", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.988355, + 50.413551 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258268", + "ref": "", + "name": "R3 - Norauto Noyelles Godault", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08386, + 50.58572 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89251522", + "ref": "", + "name": "R3 - Norauto Fâches Thumesnil", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-01", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.647624, + 47.348542 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333944", + "ref": "", + "name": "R3 - Pizza del Arte Joué-les-Tours", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.647624, + 47.348542 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333944", + "ref": "", + "name": "R3 - Pizza del Arte Joué-les-Tours", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08386, + 50.58572 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89251522", + "ref": "", + "name": "R3 - Norauto Fâches Thumesnil", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-01", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255056, + 50.182967 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363714", + "ref": "", + "name": "R3 - Norauto Cambrai", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.363111, + 48.106855 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363715", + "ref": "", + "name": "R3 - Norauto Colmar", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.019881, + 47.283199 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363710", + "ref": "", + "name": "R3 - Norauto Chenove", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-22", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.363111, + 48.106855 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363715", + "ref": "", + "name": "R3 - Norauto Colmar", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.426173, + 50.129276 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363742", + "ref": "", + "name": "R3 - Norauto Caudry", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.426173, + 50.129276 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363742", + "ref": "", + "name": "R3 - Norauto Caudry", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.426173, + 50.129276 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363742", + "ref": "", + "name": "R3 - Norauto Caudry", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255056, + 50.182967 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363714", + "ref": "", + "name": "R3 - Norauto Cambrai", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255056, + 50.182967 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363714", + "ref": "", + "name": "R3 - Norauto Cambrai", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.629207, + 50.524317 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363738", + "ref": "", + "name": "R3 - Norauto Bethune", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.647624, + 47.348542 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333944", + "ref": "", + "name": "R3 - Pizza del Arte Joué-les-Tours", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.629207, + 50.524317 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363738", + "ref": "", + "name": "R3 - Norauto Bethune", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.629207, + 50.524317 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363738", + "ref": "", + "name": "R3 - Norauto Bethune", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.993622, + 47.283904 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333942", + "ref": "", + "name": "R3 - Norauto Besançon Ecole Valentin", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.993622, + 47.283904 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333942", + "ref": "", + "name": "R3 - Norauto Besançon Ecole Valentin", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.993622, + 47.283904 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333942", + "ref": "", + "name": "R3 - Norauto Besançon Ecole Valentin", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.511242, + 50.333162 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363737", + "ref": "", + "name": "R3 - Norauto Aulnoy les Valenciennes", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.511242, + 50.333162 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363737", + "ref": "", + "name": "R3 - Norauto Aulnoy les Valenciennes", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.647624, + 47.348542 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333944", + "ref": "", + "name": "R3 - Pizza del Arte Joué-les-Tours", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08386, + 50.58572 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89251522", + "ref": "", + "name": "R3 - Norauto Fâches Thumesnil", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-01", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.511242, + 50.333162 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363737", + "ref": "", + "name": "R3 - Norauto Aulnoy les Valenciennes", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08386, + 50.58572 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89251522", + "ref": "", + "name": "R3 - Norauto Fâches Thumesnil", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-01", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08386, + 50.58572 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89251522", + "ref": "", + "name": "R3 - Norauto Fâches Thumesnil", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-01", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.702759, + 50.308256 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283514", + "ref": "", + "name": "R3 - Norauto Arras", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.702759, + 50.308256 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283514", + "ref": "", + "name": "R3 - Norauto Arras", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.702759, + 50.308256 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283514", + "ref": "", + "name": "R3 - Norauto Arras", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.666764, + 50.730562 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258309", + "ref": "", + "name": "R3 - Norauto Saint Martin Boulogne", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.666764, + 50.730562 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258309", + "ref": "", + "name": "R3 - Norauto Saint Martin Boulogne", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.666764, + 50.730562 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258309", + "ref": "", + "name": "R3 - Norauto Saint Martin Boulogne", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.666764, + 50.730562 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258309", + "ref": "", + "name": "R3 - Norauto Saint Martin Boulogne", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.666764, + 50.730562 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258309", + "ref": "", + "name": "R3 - Norauto Saint Martin Boulogne", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.055979, + 49.213929 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258297", + "ref": "", + "name": "R3 - Norauto Reims Cormontreuil", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-22", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.055979, + 49.213929 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258297", + "ref": "", + "name": "R3 - Norauto Reims Cormontreuil", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-22", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.055979, + 49.213929 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258297", + "ref": "", + "name": "R3 - Norauto Reims Cormontreuil", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-22", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.055979, + 49.213929 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258297", + "ref": "", + "name": "R3 - Norauto Reims Cormontreuil", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-22", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.055979, + 49.213929 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258297", + "ref": "", + "name": "R3 - Norauto Reims Cormontreuil", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-22", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.965283, + 50.63337 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283499", + "ref": "", + "name": "R3 - Norauto Englos", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.965283, + 50.63337 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283499", + "ref": "", + "name": "R3 - Norauto Englos", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.965283, + 50.63337 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283499", + "ref": "", + "name": "R3 - Norauto Englos", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.019881, + 47.283199 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363710", + "ref": "", + "name": "R3 - Norauto Chenove", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-22", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.965283, + 50.63337 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283499", + "ref": "", + "name": "R3 - Norauto Englos", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.965283, + 50.63337 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283499", + "ref": "", + "name": "R3 - Norauto Englos", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.702759, + 50.308256 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283514", + "ref": "", + "name": "R3 - Norauto Arras", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.702759, + 50.308256 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283514", + "ref": "", + "name": "R3 - Norauto Arras", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77271, + 50.422518 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283516", + "ref": "", + "name": "R3 - Norauto Liévin", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.222288, + 50.68201 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283515", + "ref": "", + "name": "R3 - Norauto Leers", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.478509, + 50.381036 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283510", + "ref": "", + "name": "R3 - Norauto Petite Forêt", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.478509, + 50.381036 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283510", + "ref": "", + "name": "R3 - Norauto Petite Forêt", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.478509, + 50.381036 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283510", + "ref": "", + "name": "R3 - Norauto Petite Forêt", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.478509, + 50.381036 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283510", + "ref": "", + "name": "R3 - Norauto Petite Forêt", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.478509, + 50.381036 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283510", + "ref": "", + "name": "R3 - Norauto Petite Forêt", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.222288, + 50.68201 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283515", + "ref": "", + "name": "R3 - Norauto Leers", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.222288, + 50.68201 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283515", + "ref": "", + "name": "R3 - Norauto Leers", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.222288, + 50.68201 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283515", + "ref": "", + "name": "R3 - Norauto Leers", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.222288, + 50.68201 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283515", + "ref": "", + "name": "R3 - Norauto Leers", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77271, + 50.422518 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283516", + "ref": "", + "name": "R3 - Norauto Liévin", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.129024, + 50.615268 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283504", + "ref": "", + "name": "R3 - Norauto V2", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.129024, + 50.615268 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283504", + "ref": "", + "name": "R3 - Norauto V2", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.129024, + 50.615268 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283504", + "ref": "", + "name": "R3 - Norauto V2", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.129024, + 50.615268 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283504", + "ref": "", + "name": "R3 - Norauto V2", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.129024, + 50.615268 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283504", + "ref": "", + "name": "R3 - Norauto V2", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77271, + 50.422518 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283516", + "ref": "", + "name": "R3 - Norauto Liévin", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77271, + 50.422518 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283516", + "ref": "", + "name": "R3 - Norauto Liévin", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77271, + 50.422518 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89283516", + "ref": "", + "name": "R3 - Norauto Liévin", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.019881, + 47.283199 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363710", + "ref": "", + "name": "R3 - Norauto Chenove", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-22", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.812512, + 47.500958 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363730", + "ref": "", + "name": "R3 - Norauto Montbeliard", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-19", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.382405, + 51.017619 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363721", + "ref": "", + "name": "R3 - Norauto Coudekerque", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409276, + 49.141723 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363750", + "ref": "", + "name": "R3 - Norauto Verdun Houdainville", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133115, + 50.740027 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258302", + "ref": "", + "name": "R3 - Norauto Roncq", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12795, + 48.693561 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363751", + "ref": "", + "name": "R3 - Norauto Nancy Laxou", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12795, + 48.693561 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363751", + "ref": "", + "name": "R3 - Norauto Nancy Laxou", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12795, + 48.693561 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363751", + "ref": "", + "name": "R3 - Norauto Nancy Laxou", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12795, + 48.693561 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363751", + "ref": "", + "name": "R3 - Norauto Nancy Laxou", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12795, + 48.693561 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363751", + "ref": "", + "name": "R3 - Norauto Nancy Laxou", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.143853, + 49.19134 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363752", + "ref": "", + "name": "R3 - Norauto Metz Semecourt", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-10", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.143853, + 49.19134 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363752", + "ref": "", + "name": "R3 - Norauto Metz Semecourt", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-10", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.143853, + 49.19134 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363752", + "ref": "", + "name": "R3 - Norauto Metz Semecourt", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-10", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.143853, + 49.19134 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363752", + "ref": "", + "name": "R3 - Norauto Metz Semecourt", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-10", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.143853, + 49.19134 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363752", + "ref": "", + "name": "R3 - Norauto Metz Semecourt", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-10", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.109315, + 49.081079 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363753", + "ref": "", + "name": "R3 - Norauto Metz Augny", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.109315, + 49.081079 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363753", + "ref": "", + "name": "R3 - Norauto Metz Augny", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.109315, + 49.081079 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363753", + "ref": "", + "name": "R3 - Norauto Metz Augny", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.109315, + 49.081079 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363753", + "ref": "", + "name": "R3 - Norauto Metz Augny", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.109315, + 49.081079 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363753", + "ref": "", + "name": "R3 - Norauto Metz Augny", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409276, + 49.141723 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363750", + "ref": "", + "name": "R3 - Norauto Verdun Houdainville", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409276, + 49.141723 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363750", + "ref": "", + "name": "R3 - Norauto Verdun Houdainville", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409276, + 49.141723 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363750", + "ref": "", + "name": "R3 - Norauto Verdun Houdainville", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133115, + 50.740027 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258302", + "ref": "", + "name": "R3 - Norauto Roncq", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133115, + 50.740027 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258302", + "ref": "", + "name": "R3 - Norauto Roncq", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133115, + 50.740027 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258302", + "ref": "", + "name": "R3 - Norauto Roncq", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.472424, + 50.379911 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89616641", + "ref": "", + "name": "R3 - Petite Forêt", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-14", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.613217, + 50.485562 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89629589", + "ref": "", + "name": "R3 - Cucq", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-30", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.613217, + 50.485562 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89629589", + "ref": "", + "name": "R3 - Cucq", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-30", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.613217, + 50.485562 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89629589", + "ref": "", + "name": "R3 - Cucq", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-30", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.613217, + 50.485562 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89629589", + "ref": "", + "name": "R3 - Cucq", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-30", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.613217, + 50.485562 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89629589", + "ref": "", + "name": "R3 - Cucq", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-30", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.382405, + 51.017619 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363721", + "ref": "", + "name": "R3 - Norauto Coudekerque", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.613217, + 50.485562 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89629589", + "ref": "", + "name": "R3 - Cucq", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-30", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.472424, + 50.379911 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89616641", + "ref": "", + "name": "R3 - Petite Forêt", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-14", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.472424, + 50.379911 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89616641", + "ref": "", + "name": "R3 - Petite Forêt", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-14", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.133115, + 50.740027 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89258302", + "ref": "", + "name": "R3 - Norauto Roncq", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.472424, + 50.379911 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89616641", + "ref": "", + "name": "R3 - Petite Forêt", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-14", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.472424, + 50.379911 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89616641", + "ref": "", + "name": "R3 - Petite Forêt", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-14", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.935342, + 48.293876 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363732", + "ref": "", + "name": "R3 - Norauto St Dié", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-20", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.935342, + 48.293876 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363732", + "ref": "", + "name": "R3 - Norauto St Dié", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-20", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.935342, + 48.293876 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363732", + "ref": "", + "name": "R3 - Norauto St Dié", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-20", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.921037, + 47.643211 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363728", + "ref": "", + "name": "R3 - Norauto Bessoncourt", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-23", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.921037, + 47.643211 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363728", + "ref": "", + "name": "R3 - Norauto Bessoncourt", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-23", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.921037, + 47.643211 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363728", + "ref": "", + "name": "R3 - Norauto Bessoncourt", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-23", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409276, + 49.141723 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363750", + "ref": "", + "name": "R3 - Norauto Verdun Houdainville", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.613217, + 50.485562 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89629589", + "ref": "", + "name": "R3 - Cucq", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-30", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.099427, + 50.34138 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363745", + "ref": "", + "name": "R3 - Norauto Sin le Noble", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-06", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.812512, + 47.500958 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363730", + "ref": "", + "name": "R3 - Norauto Montbeliard", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-19", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.387607, + 47.822904 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363725", + "ref": "", + "name": "R3 - Norauto Luxeuil les Bains", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-17", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.387607, + 47.822904 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363725", + "ref": "", + "name": "R3 - Norauto Luxeuil les Bains", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-17", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.00296, + 50.613957 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363743", + "ref": "", + "name": "R3 - Norauto Loos", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.00296, + 50.613957 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363743", + "ref": "", + "name": "R3 - Norauto Loos", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.00296, + 50.613957 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363743", + "ref": "", + "name": "R3 - Norauto Loos", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.388127, + 47.771294 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363747", + "ref": "", + "name": "R3 - Norauto Illzach", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.388127, + 47.771294 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363747", + "ref": "", + "name": "R3 - Norauto Illzach", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.388127, + 47.771294 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363747", + "ref": "", + "name": "R3 - Norauto Illzach", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.388127, + 47.771294 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363747", + "ref": "", + "name": "R3 - Norauto Illzach", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.388127, + 47.771294 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363747", + "ref": "", + "name": "R3 - Norauto Illzach", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.878767, + 49.173237 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363723", + "ref": "", + "name": "R3 - Norauto Forbach", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.878767, + 49.173237 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363723", + "ref": "", + "name": "R3 - Norauto Forbach", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.878767, + 49.173237 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363723", + "ref": "", + "name": "R3 - Norauto Forbach", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.047322, + 47.357664 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363718", + "ref": "", + "name": "R3 - Norauto Dijon Toison d'Or", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.047322, + 47.357664 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363718", + "ref": "", + "name": "R3 - Norauto Dijon Toison d'Or", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.382405, + 51.017619 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363721", + "ref": "", + "name": "R3 - Norauto Coudekerque", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.099427, + 50.34138 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363745", + "ref": "", + "name": "R3 - Norauto Sin le Noble", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-06", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.387607, + 47.822904 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363725", + "ref": "", + "name": "R3 - Norauto Luxeuil les Bains", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-17", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.047322, + 47.357664 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363718", + "ref": "", + "name": "R3 - Norauto Dijon Toison d'Or", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.812512, + 47.500958 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363730", + "ref": "", + "name": "R3 - Norauto Montbeliard", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-19", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.02371, + 49.288753 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333939", + "ref": "", + "name": "R3 - Norauto Reims Neuvilette", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.462091, + 48.280718 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363736", + "ref": "", + "name": "R3 - Norauto Selestat", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-20", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.099427, + 50.34138 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363745", + "ref": "", + "name": "R3 - Norauto Sin le Noble", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-06", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.462091, + 48.280718 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363736", + "ref": "", + "name": "R3 - Norauto Selestat", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-20", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221258, + 50.759564 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363741", + "ref": "", + "name": "R3 - Norauto Saint Martin Lez Tatinghem", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221258, + 50.759564 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363741", + "ref": "", + "name": "R3 - Norauto Saint Martin Lez Tatinghem", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221258, + 50.759564 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363741", + "ref": "", + "name": "R3 - Norauto Saint Martin Lez Tatinghem", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.02371, + 49.288753 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333939", + "ref": "", + "name": "R3 - Norauto Reims Neuvilette", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.02371, + 49.288753 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333939", + "ref": "", + "name": "R3 - Norauto Reims Neuvilette", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.462091, + 48.280718 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363736", + "ref": "", + "name": "R3 - Norauto Selestat", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-20", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.02371, + 49.288753 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333939", + "ref": "", + "name": "R3 - Norauto Reims Neuvilette", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.978945, + 49.570806 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363739", + "ref": "", + "name": "R3 - Norauto Noyon", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-19", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.02371, + 49.288753 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89333939", + "ref": "", + "name": "R3 - Norauto Reims Neuvilette", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.978945, + 49.570806 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363739", + "ref": "", + "name": "R3 - Norauto Noyon", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-19", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.978945, + 49.570806 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363739", + "ref": "", + "name": "R3 - Norauto Noyon", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-19", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.101673, + 47.311365 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363711", + "ref": "", + "name": "R3 - Norauto Quetigny", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-22", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.101673, + 47.311365 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363711", + "ref": "", + "name": "R3 - Norauto Quetigny", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-22", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.101673, + 47.311365 + ] + }, + "properties": { + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "ref:EU:EVSE": "FR3R3P89363711", + "ref": "", + "name": "R3 - Norauto Quetigny", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-22", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25, + 48.94 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "791408040", + "email": "pierremarinere489@yopmail.com", + "phone": "", + "network": "hagger", + "ref:EU:EVSE": "FRS56E56053AB1G", + "ref": "", + "name": "hagger", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-08", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-08", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-08", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS014", + "ref": "", + "name": "CASINO VALENCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-19", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS014", + "ref": "", + "name": "CASINO VALENCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-19", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS014", + "ref": "", + "name": "CASINO VALENCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-19", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS014", + "ref": "", + "name": "CASINO VALENCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-19", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS014", + "ref": "", + "name": "CASINO VALENCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-19", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS014", + "ref": "", + "name": "CASINO VALENCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-19", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-31", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-31", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-31", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-31", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-31", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-31", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER019", + "ref": "", + "name": "ANGOULEME BERTRAND", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER019", + "ref": "", + "name": "ANGOULEME BERTRAND", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER019", + "ref": "", + "name": "ANGOULEME BERTRAND", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER019", + "ref": "", + "name": "ANGOULEME BERTRAND", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER019", + "ref": "", + "name": "ANGOULEME BERTRAND", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER019", + "ref": "", + "name": "ANGOULEME BERTRAND", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-23", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-23", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-23", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-02", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-02", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-23", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-23", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-23", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-24", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-25", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-23", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-23", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-21", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-21", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-24", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-24", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.203654999999999, + 45.8936172 + ] + }, + "properties": { + "operator": "INOUID", + "owner:ref:FR:SIREN": "330465550", + "email": "Contact@inouid.com", + "phone": "0682800152", + "network": "ALOUISFACEINTACPUBLIC", + "ref:EU:EVSE": "FRISEEINOUIDALLOUIS", + "ref": "EFEC9F1798CE4367B63FDE0635E888D2", + "name": "ALLOUISMEXIMIEUX", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2002-10-04", + "note": "Situé en zone d'activité tertiaire", + "source:date": "2022-12-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.605048, + 49.644253 + ] + }, + "properties": { + "operator": "EVERON", + "owner:ref:FR:SIREN": "903227221", + "email": "frsupport@ev-box.com", + "phone": "0141447047", + "network": "EVERON", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2011337", + "name": "LA MEULE DE PIERRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-19", + "note": "Ouverture du site du lundi au samedi de 06h00 à 20h00 hors dimanche", + "source:date": "2022-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04449, + 49.114638 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "424397297", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "AUBERGE SAINT WALFRID", + "ref:EU:EVSE": "Non concerné", + "ref": "635a8195-f947-4584-b418-4844f6f79fc9", + "name": "AUBERGE SAINT WALFRID", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-11-04", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.083001, + 49.11801 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "483048492", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "TV MOSAIK CRISTAL", + "ref:EU:EVSE": "Non concerné", + "ref": "ec4b9d5d-0bf2-4aa4-b255-72308a3d4da4", + "name": "TV MOSAIK CRISTAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-06-22", + "note": "", + "source:date": "2022-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.075081, + 49.114571 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "420326597", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "FOURNIER GUY", + "ref:EU:EVSE": "Non concerné", + "ref": "1dba36be-0c2e-4786-b800-0631f46fadb2", + "name": "GARAGE SPEEDY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-11-04", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-31", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-31", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-31", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-31", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-31", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-05", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS014", + "ref": "", + "name": "CASINO VALENCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-19", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS014", + "ref": "", + "name": "CASINO VALENCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-19", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS014", + "ref": "", + "name": "CASINO VALENCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-19", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS014", + "ref": "", + "name": "CASINO VALENCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-19", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS014", + "ref": "", + "name": "CASINO VALENCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-19", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS014", + "ref": "", + "name": "CASINO VALENCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-19", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-31", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8678295, + 50.0958814 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER025", + "ref": "", + "name": "ABBEVILLE", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8678295, + 50.0958814 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER025", + "ref": "", + "name": "ABBEVILLE", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8678295, + 50.0958814 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER025", + "ref": "", + "name": "ABBEVILLE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8678295, + 50.0958814 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER025", + "ref": "", + "name": "ABBEVILLE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8678295, + 50.0958814 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER025", + "ref": "", + "name": "ABBEVILLE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8678295, + 50.0958814 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER025", + "ref": "", + "name": "ABBEVILLE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39149, + 43.56942 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS024", + "ref": "", + "name": "BASSO CAMBO", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39149, + 43.56942 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS024", + "ref": "", + "name": "BASSO CAMBO", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39149, + 43.56942 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS024", + "ref": "", + "name": "BASSO CAMBO", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39149, + 43.56942 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS024", + "ref": "", + "name": "BASSO CAMBO", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39149, + 43.56942 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS024", + "ref": "", + "name": "BASSO CAMBO", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39149, + 43.56942 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS024", + "ref": "", + "name": "BASSO CAMBO", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF023", + "ref": "", + "name": "TOULOUSE SUD NORD ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28364, + 46.87354 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF022", + "ref": "", + "name": "CHAVAGNES ASF", + "capacity": "14", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER019", + "ref": "", + "name": "ANGOULEME BERTRAND", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER019", + "ref": "", + "name": "ANGOULEME BERTRAND", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER019", + "ref": "", + "name": "ANGOULEME BERTRAND", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER019", + "ref": "", + "name": "ANGOULEME BERTRAND", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER019", + "ref": "", + "name": "ANGOULEME BERTRAND", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPBER019", + "ref": "", + "name": "ANGOULEME BERTRAND", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29015, + 46.87914 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF021", + "ref": "", + "name": "LES BROUZILS ASF", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0183, + 46.45317 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPASF020", + "ref": "", + "name": "ROUILLE PAMPROUX ASF", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-25", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-24", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-21", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-02", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-02", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-08", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-23", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-10", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-08", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-08", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-08", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-24", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-24", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.58038, + 48.53897 + ] + }, + "properties": { + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS018", + "ref": "", + "name": "ARCOS", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-31", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.889034, + 43.58858 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS006", + "ref": "", + "name": "CASINO MONTPELLIER", + "capacity": "7", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-11", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45281, + 43.64246 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS017", + "ref": "", + "name": "TISSEO BORDEROUGE", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS016", + "ref": "", + "name": "TISSEO BALMA GRAMONT", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-20", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47735, + 43.55739 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPTIS015", + "ref": "", + "name": "TISSEO RAMONVILLE", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS014", + "ref": "", + "name": "CASINO VALENCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-19", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.73321, + 43.42367 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS013", + "ref": "", + "name": "CASINO FREJUS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.344864, + 47.776331 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS010", + "ref": "", + "name": "CASINO LANESTER", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS012", + "ref": "", + "name": "CASINO DIJON CHENOVE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834461, + 43.927927 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS005", + "ref": "", + "name": "CASINO AVIGNON", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS011", + "ref": "", + "name": "CASINO TOURS LA RICHE", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-24", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.277484, + 45.836617 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS008", + "ref": "", + "name": "CASINO LIMOGES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-12", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS001", + "ref": "", + "name": "CASINO FENOUILLET", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.557195, + 47.583132 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS003", + "ref": "", + "name": "CASINO SAINT LOUIS", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-25", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS002", + "ref": "", + "name": "CASINO SAINT ETIENNE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-02", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS009", + "ref": "", + "name": "CASINO CHAMPNIERS", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-22", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS004", + "ref": "", + "name": "CASINO AIX EN PROVENCE", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.361258, + 43.811153 + ] + }, + "properties": { + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "ref:EU:EVSE": "FRALLPCAS007", + "ref": "", + "name": "CASINO NIMES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-04", + "note": "", + "source:date": "2022-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.985609, + 50.273541 + ] + }, + "properties": { + "operator": "Normatech Lodmi", + "owner:ref:FR:SIREN": "007220338", + "email": "contact@lodmi.com", + "phone": "0374830250", + "network": "Bornes de recharge AC Candas", + "ref:EU:EVSE": "FRLODPCANDAS80150", + "ref": "9a20d4d6-4f37-4557-be0f-81cae434db06", + "name": "Parking Candas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-03-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.065306, + 44.116006 + ] + }, + "properties": { + "operator": "electromaps", + "owner:ref:FR:SIREN": "897811865", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "electromaps", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*MAP*P000000006985", + "name": "IBIS 2", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2022-12-05", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.065306, + 44.116006 + ] + }, + "properties": { + "operator": "electromaps", + "owner:ref:FR:SIREN": "897811865", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "electromaps", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*MAP*P000000006985", + "name": "IBIS 1", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2022-12-05", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.065306, + 44.116006 + ] + }, + "properties": { + "operator": "electromaps", + "owner:ref:FR:SIREN": "897811865", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "electromaps", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*MAP*P000000006985", + "name": "IBIS 3", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2022-12-05", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.065306, + 44.116006 + ] + }, + "properties": { + "operator": "electromaps", + "owner:ref:FR:SIREN": "897811865", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "electromaps", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*MAP*P000000006985", + "name": "IBIS 4", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2022-12-05", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4471530662225864, + 43.32939290277349 + ] + }, + "properties": { + "operator": "AUTORECHARGE", + "owner:ref:FR:SIREN": "493964464", + "email": "CONTACT@AUTORECHARGE.FR", + "phone": "0970755400", + "network": "Réseau de recharge CENTRAKOR", + "ref:EU:EVSE": "FRAU10032", + "ref": "a013cc8c-e4fe-4b33-b189-7b94a2eb58ea", + "name": "CENTRAKOR - SARL WILIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-22", + "note": "", + "source:date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.294283, + 48.072785 + ] + }, + "properties": { + "operator": "MODULO", + "owner:ref:FR:SIREN": "256802745", + "email": "jferchaud@modulo-energies.fr", + "phone": "0247316868", + "network": "MODULO", + "ref:EU:EVSE": "FRS68E93317", + "ref": "f8c20a72-b029-4484-a3ac-3158a246b3f0", + "name": "IRVE WINTZENHEIM", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-14", + "note": "", + "source:date": "2022-11-30", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.04, + 44.08 + ] + }, + "properties": { + "operator": "Leclerc Millau", + "owner:ref:FR:SIREN": "341760148", + "email": "thomas.millerand@millau.leclerc", + "phone": "0565590103", + "network": "Leclerc Millau", + "ref:EU:EVSE": "FREMIPLECLERCMILLAU", + "ref": "", + "name": "Leclerc Millau", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-23", + "note": "", + "source:date": "2022-11-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8, + 44.12 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEVITISAT11", + "ref": "", + "name": "0b02b04d-280a-4f56-9cb4-b2368c8a78d3", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-28", + "note": "DISPONIBLE 24/7", + "source:date": "2022-11-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.9630213737653, + 48.28993400965 + ] + }, + "properties": { + "operator": "ChargePoint", + "owner:ref:FR:SIREN": "200096824", + "email": "support.eu@chargepoint.com", + "phone": "0185650449", + "network": "HOPITAUX MASSIF DES VOSGES", + "ref:EU:EVSE": "FRCPIE66546754", + "ref": "FRCPIE66546754", + "name": "HMV / SAINT DIE 2", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-15", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.876855607462602, + 48.07256195733498 + ] + }, + "properties": { + "operator": "ChargePoint", + "owner:ref:FR:SIREN": "200096824", + "email": "support.eu@chargepoint.com", + "phone": "0185650449", + "network": "HOPITAUX MASSIF DES VOSGES", + "ref:EU:EVSE": "FRCPIE66386351", + "ref": "FRCPIE66386351", + "name": "HMV / BORNE 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-07", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8801712406498, + 48.37587100374 + ] + }, + "properties": { + "operator": "ChargePoint", + "owner:ref:FR:SIREN": "200096824", + "email": "support.eu@chargepoint.com", + "phone": "0185650449", + "network": "HOPITAUX MASSIF DES VOSGES", + "ref:EU:EVSE": "FRCPIE66430152", + "ref": "FRCPIE66430152", + "name": "HMV / MOYENMOUTIER 1", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8801712406498, + 48.37587100374 + ] + }, + "properties": { + "operator": "ChargePoint", + "owner:ref:FR:SIREN": "200096824", + "email": "support.eu@chargepoint.com", + "phone": "0185650449", + "network": "HOPITAUX MASSIF DES VOSGES", + "ref:EU:EVSE": "FRCPIE66430152", + "ref": "FRCPIE66430152", + "name": "HMV / MOYENMOUTIER 1", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8801260998633, + 48.376012836572 + ] + }, + "properties": { + "operator": "ChargePoint", + "owner:ref:FR:SIREN": "200096824", + "email": "support.eu@chargepoint.com", + "phone": "0185650449", + "network": "HOPITAUX MASSIF DES VOSGES", + "ref:EU:EVSE": "FRCPIE66430252", + "ref": "FRCPIE66430152", + "name": "HMV / MOYENMOUTIER 2", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8801260998633, + 48.376012836572 + ] + }, + "properties": { + "operator": "ChargePoint", + "owner:ref:FR:SIREN": "200096824", + "email": "support.eu@chargepoint.com", + "phone": "0185650449", + "network": "HOPITAUX MASSIF DES VOSGES", + "ref:EU:EVSE": "FRCPIE66430252", + "ref": "FRCPIE66430152", + "name": "HMV / MOYENMOUTIER 2", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.9643743348954, + 48.289919288542 + ] + }, + "properties": { + "operator": "ChargePoint", + "owner:ref:FR:SIREN": "200096824", + "email": "support.eu@chargepoint.com", + "phone": "0185650449", + "network": "HOPITAUX MASSIF DES VOSGES", + "ref:EU:EVSE": "FRCPIE66545854", + "ref": "FRCPIE66545854", + "name": "HMV / SAINT DIE 1 ", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-15", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.9643743348954, + 48.289919288542 + ] + }, + "properties": { + "operator": "ChargePoint", + "owner:ref:FR:SIREN": "200096824", + "email": "support.eu@chargepoint.com", + "phone": "0185650449", + "network": "HOPITAUX MASSIF DES VOSGES", + "ref:EU:EVSE": "FRCPIE66545854", + "ref": "FRCPIE66545854", + "name": "HMV / SAINT DIE 1 ", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-15", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.876855607462602, + 48.07256195733498 + ] + }, + "properties": { + "operator": "ChargePoint", + "owner:ref:FR:SIREN": "200096824", + "email": "support.eu@chargepoint.com", + "phone": "0185650449", + "network": "HOPITAUX MASSIF DES VOSGES", + "ref:EU:EVSE": "FRCPIE66386351", + "ref": "FRCPIE66386351", + "name": "HMV / BORNE 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-07", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.9630213737653, + 48.28993400965 + ] + }, + "properties": { + "operator": "ChargePoint", + "owner:ref:FR:SIREN": "200096824", + "email": "support.eu@chargepoint.com", + "phone": "0185650449", + "network": "HOPITAUX MASSIF DES VOSGES", + "ref:EU:EVSE": "FRCPIE66546754", + "ref": "FRCPIE66546754", + "name": "HMV / SAINT DIE 2", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-15", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.9645139789942, + 48.289964210164 + ] + }, + "properties": { + "operator": "ChargePoint", + "owner:ref:FR:SIREN": "200096824", + "email": "support.eu@chargepoint.com", + "phone": "0185650449", + "network": "HOPITAUX MASSIF DES VOSGES", + "ref:EU:EVSE": "FRCPIE66546854", + "ref": "FRCPIE66546854", + "name": "HMV / SAINT DIE 3", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-15", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.965496889543137, + 48.29004613244174 + ] + }, + "properties": { + "operator": "ChargePoint", + "owner:ref:FR:SIREN": "200096824", + "email": "support.eu@chargepoint.com", + "phone": "0185650449", + "network": "HOPITAUX MASSIF DES VOSGES", + "ref:EU:EVSE": "FRCPIE66544154", + "ref": "FRCPIE66544154", + "name": "HMV / SAINT DIE 4", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-15", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.965496889543137, + 48.29004613244174 + ] + }, + "properties": { + "operator": "ChargePoint", + "owner:ref:FR:SIREN": "200096824", + "email": "support.eu@chargepoint.com", + "phone": "0185650449", + "network": "HOPITAUX MASSIF DES VOSGES", + "ref:EU:EVSE": "FRCPIE66544154", + "ref": "FRCPIE66544154", + "name": "HMV / SAINT DIE 4", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-15", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.212029, + 44.196621 + ] + }, + "properties": { + "operator": "electromaps", + "owner:ref:FR:SIREN": "312707391", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "electromaps", + "ref:EU:EVSE": "Non concerné", + "ref": "f588e6140fcfab03", + "name": "la muse 2", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.212029, + 44.196621 + ] + }, + "properties": { + "operator": "electromaps", + "owner:ref:FR:SIREN": "312707391", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "electromaps", + "ref:EU:EVSE": "Non concerné", + "ref": "c45b7fe23fd6020a", + "name": "la muse 1", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0855646, + 49.2371711 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "479337107", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA - REIMS", + "ref:EU:EVSE": "FRZKAE24DC88249", + "ref": "88249", + "name": "KIA - Reims - 24kW DC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-27", + "note": "", + "source:date": "2021-10-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0855646, + 49.2371711 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "479337107", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA - REIMS", + "ref:EU:EVSE": "FRZKAE22AC88250", + "ref": "88250", + "name": "KIA - Reims - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-27", + "note": "", + "source:date": "2021-10-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.014273, + 50.615449 + ] + }, + "properties": { + "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", + "owner:ref:FR:SIREN": "783669831", + "email": "contact@electricite-loos.fr", + "phone": "320075634", + "network": "RME Loos (FR-FR1) ", + "ref:EU:EVSE": "FRFR1EAYRU", + "ref": "", + "name": "Loos, Parking Salengro", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2022-12-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.014273, + 50.615449 + ] + }, + "properties": { + "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", + "owner:ref:FR:SIREN": "783669831", + "email": "contact@electricite-loos.fr", + "phone": "320075634", + "network": "RME Loos (FR-FR1)", + "ref:EU:EVSE": "FRFR1EAYRU", + "ref": "", + "name": "Loos, Parking Salengro", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2022-12-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.014273, + 50.615449 + ] + }, + "properties": { + "operator": "REGIE MUNICIPALE D'ELECTRICITE DE LOOS", + "owner:ref:FR:SIREN": "783669831", + "email": "contact@electricite-loos.fr", + "phone": "320075634", + "network": "RME Loos (FR-FR1)", + "ref:EU:EVSE": "FRFR1EAYRU", + "ref": "", + "name": "Loos, Parking Salengro", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2022-12-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.395016, + 50.6610416 + ] + }, + "properties": { + "operator": "AREA Tech", + "owner:ref:FR:SIREN": "", + "email": "contact@area-tech.fr", + "phone": "", + "network": "AREA Tech", + "ref:EU:EVSE": "FRAREP", + "ref": "", + "name": "AIRE SUR LA LYS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.395016, + 50.6610416 + ] + }, + "properties": { + "operator": "AREA Tech", + "owner:ref:FR:SIREN": "", + "email": "contact@area-tech.fr", + "phone": "", + "network": "AREA Tech", + "ref:EU:EVSE": "FRAREP", + "ref": "", + "name": "AIRE SUR LA LYS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.395016, + 50.6610416 + ] + }, + "properties": { + "operator": "AREA Tech", + "owner:ref:FR:SIREN": "", + "email": "contact@area-tech.fr", + "phone": "", + "network": "AREA Tech", + "ref:EU:EVSE": "FRAREP", + "ref": "", + "name": "AIRE SUR LA LYS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.395016, + 50.6610416 + ] + }, + "properties": { + "operator": "AREA Tech", + "owner:ref:FR:SIREN": "", + "email": "contact@area-tech.fr", + "phone": "", + "network": "AREA Tech", + "ref:EU:EVSE": "FRAREP", + "ref": "", + "name": "AIRE SUR LA LYS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44, + 43.33 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEMIGNOT11", + "ref": "0b9c7838-1025-4387-ba85-ddbe5c7692b4", + "name": "CAMPING MIGNOT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "DISPONIBLE 24/7", + "source:date": "2022-12-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.466439, + 48.594319 + ] + }, + "properties": { + "operator": "Vincent", + "owner:ref:FR:SIREN": "901527333", + "email": "tat.vincent@gmail.com", + "phone": "0628061367", + "network": "Le Clos St. Gilles", + "ref:EU:EVSE": "Non concerné", + "ref": "12115377-e75a-4816-b2d2-e530a33ebc80", + "name": "Le Clos St. Gilles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "recharge disponible uniquement aux heures d'ouverture", + "source:date": "2022-12-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.824020549638603, + 43.144379705624395 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEAUSTERLITZ11", + "ref": "97a6b2ba-a4c3-4c1a-bd28-1536ae106c14", + "name": "SARL GERARD ROBERT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "DISPONIBLE 24/7", + "source:date": "2022-12-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.84, + 43.14 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEGERARDROBERT11", + "ref": "a78a5c9f-1088-4e10-92a6-da3eb1b73a30", + "name": "a78a5c9f-1088-4e10-92a6-da3eb1b73a30", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "DISPONIBLE 24/7", + "source:date": "2022-12-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.83, + 43.12 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMESCIDUSOLEIL11", + "ref": "a193b38a-4d29-4a6d-91dc-b2707112713b", + "name": "SCI DU SOLEIL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "DISPONIBLE 24/7", + "source:date": "2022-12-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02, + 44.12 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEAUSTERLITZ11", + "ref": "8bcfc19a-0441-4f6d-87e9-a424b89e4cb0", + "name": "AUSTERLITZ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "DISPONIBLE 24/7", + "source:date": "2022-12-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4541187, + 49.0202152 + ] + }, + "properties": { + "operator": "ma borne auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "0361626161", + "network": "DESENFANS GOUSAINVILLE", + "ref:EU:EVSE": "Non concerné", + "ref": "506657f4-f858-4fc7-b773-275fbf5bbcd4", + "name": "DESENFANS GOUSAINVILLE", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "true", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-13", + "note": "", + "source:date": "2022-12-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.504764, + 48.903776 + ] + }, + "properties": { + "operator": "Vigot", + "owner:ref:FR:SIREN": "811743335", + "email": "davidvigot@sfr.fr", + "phone": "0684970823", + "network": "SARL Vigot", + "ref:EU:EVSE": "Non concerné", + "ref": "ac9b0935-ed7d-4713-8a18-075922e7a89e", + "name": "SARL Vigot", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-20", + "note": "recharge disponible uniquement aux heures d'ouverture", + "source:date": "2022-12-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59176364, + 46.47844882 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "848969044", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "FDG Automobiles", + "ref:EU:EVSE": "FRZPEE22AC128991", + "ref": "128991", + "name": "FDG Automobiles - Coulonges - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-15", + "note": "", + "source:date": "2022-04-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59176364, + 46.47844882 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "848969044", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "FDG Automobiles", + "ref:EU:EVSE": "FRZPEE22AC128990", + "ref": "128990", + "name": "FDG Automobiles - Coulonges - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-15", + "note": "", + "source:date": "2022-04-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.846839699999999, + 45.7618696 + ] + }, + "properties": { + "operator": "INOUID", + "owner:ref:FR:SIREN": "317802106", + "email": "Contact@inouid.com", + "phone": "0682800152", + "network": "HCrequipublic", + "ref:EU:EVSE": "FRISEEINOUIDCREQUI", + "ref": "fr-ise-e-inouid-crequi", + "name": "INOUID-HOTEL-CREQUI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-10-04", + "note": "Situé en centre ville/ accessible de 9h à 18h uniquement", + "source:date": "2022-11-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2113974, + 44.9769783 + ] + }, + "properties": { + "operator": "ma borne auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "0361626161", + "network": "mon espace carrelage", + "ref:EU:EVSE": "Non concerné", + "ref": "2db6221b-bd48-4868-ad35-90071ac9de1a", + "name": "mon espace carrelage", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "true", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-12", + "note": "", + "source:date": "2022-05-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84, + 45.79 + ] + }, + "properties": { + "operator": "Pascal Chene", + "owner:ref:FR:SIREN": "539474817", + "email": "garage.chene@gmail.com", + "phone": "", + "network": "GARAGE CHENE -TOTAL ENERGIES - CITROEN", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P212223833", + "name": "Elvi 22kw", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Non accessible", + "start_date": "2021-02-02", + "note": "Recharge réservé au flottes de véhicule et clients atelier automobile", + "source:date": "2022-10-25", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1, + 47.27 + ] + }, + "properties": { + "operator": "MEDIODENT", + "owner:ref:FR:SIREN": "898168273", + "email": "mediodent@gmail.com", + "phone": "03 81 60 06 00", + "network": "MEDIODENT", + "ref:EU:EVSE": "Non concerné", + "ref": "8ef7ac44-2295-427b-8f6c-589c0e47c43a", + "name": "MEDIODENT ROCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-01", + "note": "", + "source:date": "2022-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9849957, + 45.7312637 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "819452657", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "NOMADE BREWERY", + "ref:EU:EVSE": "FRZPEE22AC122021", + "ref": "122021", + "name": "NOMADE BREWERY - Genas - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-03", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.38, + 46.75 + ] + }, + "properties": { + "operator": "SCI LA GRANGE DESSOUS", + "owner:ref:FR:SIREN": "898168273", + "email": "mp-morel@wanadoo.fr", + "phone": "‭06 85 80 08 33‬", + "network": "SCI LA GRANGE DESSOUS", + "ref:EU:EVSE": "Non concerné", + "ref": "5a261145-4bb3-48f4-a72d-699958c5c975", + "name": "SCI LA GRANGE DESSOUS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-01", + "note": "", + "source:date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.93, + 47.24 + ] + }, + "properties": { + "operator": "GARAGE HENRY", + "owner:ref:FR:SIREN": "898168273", + "email": "garage.henry25@orange.fr", + "phone": "0381590075", + "network": "GARAGE HENRY", + "ref:EU:EVSE": "Non concerné", + "ref": "0ba8ed7c-43f6-4b51-9b36-66b094607c09", + "name": "GARAGE HENRY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-01", + "note": "", + "source:date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26, + 44.5 + ] + }, + "properties": { + "operator": "Electromaps", + "owner:ref:FR:SIREN": "904273802", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "Domaine de Fompeyre", + "ref:EU:EVSE": "FRMAPP000000006943", + "ref": "74a79fa3d39ca269", + "name": "Domaine de Fompeyre", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-13", + "note": "", + "source:date": "2022-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26, + 44.5 + ] + }, + "properties": { + "operator": "Electromaps", + "owner:ref:FR:SIREN": "904273802", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "Domaine de Fompeyre", + "ref:EU:EVSE": "FRMAPP000000006943", + "ref": "961a816c0a70acf2", + "name": "Domaine de Fompeyre", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-13", + "note": "", + "source:date": "2022-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26, + 44.5 + ] + }, + "properties": { + "operator": "Electromaps", + "owner:ref:FR:SIREN": "904273802", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "Domaine de Fompeyre", + "ref:EU:EVSE": "FRMAPP000000006943", + "ref": "7defedad9ee67c87", + "name": "Domaine de Fompeyre", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-13", + "note": "", + "source:date": "2022-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.63, + 44.82 + ] + }, + "properties": { + "operator": "Electromaps", + "owner:ref:FR:SIREN": "904273802", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "Carrefour Contact ", + "ref:EU:EVSE": "FRMAPP000000006998", + "ref": "29ebe92a3906ba65", + "name": "Carrefour Contact", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-13", + "note": "", + "source:date": "2022-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.63, + 44.82 + ] + }, + "properties": { + "operator": "Electromaps", + "owner:ref:FR:SIREN": "904273802", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "Carrefour Contact", + "ref:EU:EVSE": "FRMAPP000000006998", + "ref": "4b09727283003ba2", + "name": "Domaine de Fompeyre", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-13", + "note": "", + "source:date": "2022-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26, + 44.5 + ] + }, + "properties": { + "operator": "Electromaps", + "owner:ref:FR:SIREN": "904273802", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "Domaine de Fompeyre", + "ref:EU:EVSE": "FRMAPP000000006943", + "ref": "87831698952267f0", + "name": "Domaine de Fompeyre", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-13", + "note": "", + "source:date": "2022-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5582183, + 51.0072064 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "mairie de ghyvelde", + "ref:EU:EVSE": "Non concerné", + "ref": "0d032d37-2265-40d7-b4ee-51ee1fe603b0", + "name": "mairie de ghyvelde", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-07-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31, + 46.59 + ] + }, + "properties": { + "operator": "QoWatt", + "owner:ref:FR:SIREN": "904074713", + "email": "contact@qowatt.com", + "phone": "0765762350", + "network": "QoWatt", + "ref:EU:EVSE": "FRQWTP86027B", + "ref": "FR*QWT*S86027*B*1", + "name": "e-City 22kW - Parc commercial aéroport Poitiers-Biard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-09", + "note": "", + "source:date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3126718, + 46.585065 + ] + }, + "properties": { + "operator": "QoWatt", + "owner:ref:FR:SIREN": "904074713", + "email": "contact@qowatt.com", + "phone": "0765762350", + "network": "QoWatt", + "ref:EU:EVSE": "FRQWTP86027A", + "ref": "FR*QWT*S86027*A*1", + "name": "e-Fast 150kW - Parc commercial aéroport Poitiers-Biard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-08-09", + "note": "", + "source:date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3126718, + 46.585065 + ] + }, + "properties": { + "operator": "QoWatt", + "owner:ref:FR:SIREN": "904074713", + "email": "contact@qowatt.com", + "phone": "0765762350", + "network": "QoWatt", + "ref:EU:EVSE": "FRQWTP86027A", + "ref": "FR*QWT*S86027*A*1", + "name": "e-Fast 150kW - Parc commercial aéroport Poitiers-Biard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-08-09", + "note": "", + "source:date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3126718, + 46.585065 + ] + }, + "properties": { + "operator": "QoWatt", + "owner:ref:FR:SIREN": "904074713", + "email": "contact@qowatt.com", + "phone": "0765762350", + "network": "QoWatt", + "ref:EU:EVSE": "FRQWTP86027A", + "ref": "FR*QWT*S86027*A*1", + "name": "e-Fast 150kW - Parc commercial aéroport Poitiers-Biard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-08-09", + "note": "", + "source:date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3126718, + 46.585065 + ] + }, + "properties": { + "operator": "QoWatt", + "owner:ref:FR:SIREN": "904074713", + "email": "contact@qowatt.com", + "phone": "0765762350", + "network": "QoWatt", + "ref:EU:EVSE": "FRQWTP86027A", + "ref": "FR*QWT*S86027*A*1", + "name": "e-Fast 150kW - Parc commercial aéroport Poitiers-Biard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-08-09", + "note": "", + "source:date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31, + 46.59 + ] + }, + "properties": { + "operator": "QoWatt", + "owner:ref:FR:SIREN": "904074713", + "email": "contact@qowatt.com", + "phone": "0765762350", + "network": "QoWatt", + "ref:EU:EVSE": "FRQWTP86027B", + "ref": "FR*QWT*S86027*B*1", + "name": "e-City 22kW - Parc commercial aéroport Poitiers-Biard", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-09", + "note": "", + "source:date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31, + 46.59 + ] + }, + "properties": { + "operator": "QoWatt", + "owner:ref:FR:SIREN": "904074713", + "email": "contact@qowatt.com", + "phone": "0765762350", + "network": "QoWatt", + "ref:EU:EVSE": "FRQWTP86027B", + "ref": "FR*QWT*S86027*B*1", + "name": "e-City 22kW - Parc commercial aéroport Poitiers-Biard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-09", + "note": "", + "source:date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3126718, + 46.585065 + ] + }, + "properties": { + "operator": "QoWatt", + "owner:ref:FR:SIREN": "904074713", + "email": "contact@qowatt.com", + "phone": "0765762350", + "network": "QoWatt", + "ref:EU:EVSE": "FRQWTP86027A", + "ref": "FR*QWT*S86027*A*1", + "name": "e-Fast 150kW - Parc commercial aéroport Poitiers-Biard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-08-09", + "note": "", + "source:date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31, + 46.59 + ] + }, + "properties": { + "operator": "QoWatt", + "owner:ref:FR:SIREN": "904074713", + "email": "contact@qowatt.com", + "phone": "0765762350", + "network": "QoWatt", + "ref:EU:EVSE": "FRQWTP86027B", + "ref": "FR*QWT*S86027*B*1", + "name": "e-City 22kW - Parc commercial aéroport Poitiers-Biard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-09", + "note": "", + "source:date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31, + 46.59 + ] + }, + "properties": { + "operator": "QoWatt", + "owner:ref:FR:SIREN": "904074713", + "email": "contact@qowatt.com", + "phone": "0765762350", + "network": "QoWatt", + "ref:EU:EVSE": "FRQWTP86027B", + "ref": "FR*QWT*S86027*B*1", + "name": "e-City 22kW - Parc commercial aéroport Poitiers-Biard", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-09", + "note": "", + "source:date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2943536, + 49.1928486 + ] + }, + "properties": { + "operator": "Guerin", + "owner:ref:FR:SIREN": "512913518", + "email": "yannick@2ed.fr", + "phone": "0643099223", + "network": "2ED", + "ref:EU:EVSE": "Non concerné", + "ref": "48db1801-1114-4055-a221-75d0e5262a2e", + "name": "2ED", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-03", + "note": "recharge disponible uniquement aux heures d'ouverture", + "source:date": "2022-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4, + 45.44 + ] + }, + "properties": { + "operator": "perrin", + "owner:ref:FR:SIREN": "347412850", + "email": "mcelette@lumilec-electricité.fr", + "phone": "0610284454", + "network": "IBIS CHATEAUCREUX SAINT ETIENNE", + "ref:EU:EVSE": "Non concerné", + "ref": "20e6d906-5c2d-11ed-9b6a-0242ac120002", + "name": "IBIS GARE SAINT ETIENNE CHATEAUCREUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-11", + "note": "", + "source:date": "2022-11-02", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38, + 45.47 + ] + }, + "properties": { + "operator": "perrin", + "owner:ref:FR:SIREN": "330590449", + "email": "mcelette@lumilec-electricité.fr", + "phone": "0610284454", + "network": "IBIS HOTEL LA TERRAS", + "ref:EU:EVSE": "Non concerné", + "ref": "8e30cdf7-c9a7-48a3-a51b-9360b5620719", + "name": "IBIS LA TERRASSE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-08", + "note": "", + "source:date": "2022-10-18", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4799048, + 43.89146969999999 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMERENAISSANCE11", + "ref": "916dad76-9019-48d1-a94b-cf77f98e7d1e", + "name": "Hôtel Le Renaissance", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-07", + "note": "DISPONIBLE 24/7", + "source:date": "2022-11-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8283161, + 46.4675537 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "342583796", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Cheffois", + "ref:EU:EVSE": "FRZTLE22AC60014", + "ref": "60014", + "name": "Toyota - Cheffois - 22kW AC G ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2021-04-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8283161, + 46.4675537 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "342583796", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Cheffois", + "ref:EU:EVSE": "FRZTLE22AC60015", + "ref": "60015", + "name": "Toyota - Cheffois - 22kW AC D ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2021-04-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304633617401123, + 50.90874481201172 + ] + }, + "properties": { + "operator": "BORNECO", + "owner:ref:FR:SIREN": "445403512", + "email": "freddy.borneco@gmail.com", + "phone": "0669684978", + "network": "borneco", + "ref:EU:EVSE": "FRBHMP68021001", + "ref": "fr*bhm bubble ", + "name": "bbt", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-03", + "note": "recharge unique ", + "source:date": "2022-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8718, + 48.07067 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "508150463", + "email": "bains@wanadoo.fr", + "phone": "", + "network": "L'HOSTELLOISE HOTEL DES BAINS", + "ref:EU:EVSE": "FRA88P0242120002", + "ref": "755c6ec8-a6de-11ed-afa1-0242ac120002", + "name": "Gerardmer, Boulevard Adolphe Garnier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-21", + "note": "", + "source:date": "2023-02-07", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9342, + 48.70158 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "420783946", + "email": "robotic@rcc.fr", + "phone": "", + "network": "ROBOTIC COVER CONCEPT", + "ref:EU:EVSE": "FRA54P002024212", + "ref": "e81469d6-a6dc-11ed-afa1-0242ac120002", + "name": "Toul, rue Maurice Bokanowski", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-02-07", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.746956, + 49.495106 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "265401422", + "email": "epgml@epgmllongwy.fr", + "phone": "", + "network": "EPGML", + "ref:EU:EVSE": "FRA54P00394222", + "ref": "4accd728-a6da-11ed-afa1-0242ac120002", + "name": "Longwy, 11 rue Saint Louis", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "", + "source:date": "2023-02-07", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3841132506467066, + 48.90602152741062 + ] + }, + "properties": { + "operator": "AUTORECHARGE", + "owner:ref:FR:SIREN": "672009628", + "email": "contact@autorecharge.fr", + "phone": "0970755400", + "network": "Infrastructures de recharge pour véhicules électriques (organisation AUTORECHARGE)", + "ref:EU:EVSE": "FRAU1E0034011", + "ref": "35bb1501-eefa-4449-83d4-b795f4bd4880", + "name": "Garage Malard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-01", + "note": "", + "source:date": "2022-10-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.290915231602582, + 43.70607256724716 + ] + }, + "properties": { + "operator": "TANAY Electricité", + "owner:ref:FR:SIREN": "421334566", + "email": "tanayelectricite@hotmail.com", + "phone": "0600000000", + "network": "Riviera Car Center", + "ref:EU:EVSE": "FRRM1PRCCNICE01DCPKGCLIENT", + "ref": "RCC-NICE-01-DC-PKGCLIENT", + "name": "Riviera Car Center - Nice", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-10-11", + "note": "", + "source:date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.012604743905726, + 43.57438496198235 + ] + }, + "properties": { + "operator": "TANAY Electricité", + "owner:ref:FR:SIREN": "421334566", + "email": "tanayelectricite@hotmail.com", + "phone": "0600000000", + "network": "Riviera Car Center", + "ref:EU:EVSE": "FRRM1PRCCCAN03DCPKGCLIENTSAV", + "ref": "RCC-CAN-03-DC-PKGCLIENT-SAV", + "name": "Riviera Car Center - Le Cannet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-10-11", + "note": "", + "source:date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.012604743905726, + 43.57438496198235 + ] + }, + "properties": { + "operator": "TANAY Electricité", + "owner:ref:FR:SIREN": "421334566", + "email": "tanayelectricite@hotmail.com", + "phone": "0600000000", + "network": "Riviera Car Center", + "ref:EU:EVSE": "FRRM1PRCCCAN01DCPKGCLIENT", + "ref": "RCC-CAN-01-DC-PKGCLIENT", + "name": "Riviera Car Center - Le Cannet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-10-11", + "note": "", + "source:date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3812921, + 46.3406381 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "342583796", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "LES GARAGES CHAIGNEAU - CHAURAY ", + "ref:EU:EVSE": "FRZTLE22AC143108", + "ref": "143108", + "name": "Toyota - Chauray - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-25", + "note": "", + "source:date": "2022-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3812921, + 46.3406381 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "342583796", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "LES GARAGES CHAIGNEAU - CHAURAY", + "ref:EU:EVSE": "FRZTLE22AC143107", + "ref": "143107", + "name": "Toyota - Chauray - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-25", + "note": "", + "source:date": "2022-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25, + 47.29 + ] + }, + "properties": { + "operator": "arteco44", + "owner:ref:FR:SIREN": "842477895", + "email": "meuzenat@arteco.fr", + "phone": "0240193230", + "network": "recharge arteco", + "ref:EU:EVSE": "Non concerné", + "ref": "c635b39a-6507-11ed-9022-0242ac120002", + "name": "arteco 44", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-06", + "note": "recharge uniquement disponible pendant les horaires de bureau", + "source:date": "2022-11-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96, + 43.54 + ] + }, + "properties": { + "operator": "Le Grand Large", + "owner:ref:FR:SIREN": "429186844", + "email": "girardhotel@gmail.com", + "phone": "0616517174", + "network": "Station de recharge Le grand large", + "ref:EU:EVSE": "Non concerné", + "ref": "569d74e7-5e96-4bcd-a038-e2d5e855a9fe", + "name": "Borne wallbox Le grand large Palavas", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-18", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'enseigne", + "source:date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11641, + 48.82899 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPOMGNS1LCLU", + "ref": "OMGNS1LCLU", + "name": "Le Chesnay-Rocquencourt , Parly 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12707, + 48.82238 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPJSNTKCLBH0", + "ref": "JSNTKCLBH0", + "name": "Le Chesnay-Rocquencourt, Carrefour de la Redingote", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12707, + 48.82238 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPJSNTKCLBH0", + "ref": "JSNTKCLBH0", + "name": "Le Chesnay-Rocquencourt, Carrefour de la Redingote", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12707, + 48.82238 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPJSNTKCLBH0", + "ref": "JSNTKCLBH0", + "name": "Le Chesnay-Rocquencourt, Carrefour de la Redingote", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11641, + 48.82899 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPOMGNS1LCLU", + "ref": "OMGNS1LCLU", + "name": "Le Chesnay-Rocquencourt , Parly 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12831, + 48.81617 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPDCQ0LAWQZE", + "ref": "DCQ0LAWQZE", + "name": "Le Chesnay-Rocquencourt , Rue de Versaille", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11641, + 48.82899 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPOMGNS1LCLU", + "ref": "OMGNS1LCLU", + "name": "Le Chesnay-Rocquencourt , Parly 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11855, + 48.83427 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPXA1GQIFFQO", + "ref": "XA1GQIFFQO", + "name": "Le Chesnay-Rocquencourt , Rue des érables ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11641, + 48.82899 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPOMGNS1LCLU", + "ref": "OMGNS1LCLU", + "name": "Le Chesnay-Rocquencourt , Parly 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11641, + 48.82899 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPOMGNS1LCLU", + "ref": "OMGNS1LCLU", + "name": "Le Chesnay-Rocquencourt , Parly 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11859, + 48.82555 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPCBGWRNLZUG", + "ref": "CBGWRNLZUG", + "name": "Le Chesnay-Rocquencourt , Avenue Dutarte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12136, + 48.81823 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPIVMKSI9TBL", + "ref": "IVMKSI9TBL", + "name": "Le Chesnay-Rocquencourt , Boulevard Saint Antoine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12136, + 48.81823 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPIVMKSI9TBL", + "ref": "IVMKSI9TBL", + "name": "Le Chesnay-Rocquencourt , Boulevard Saint Antoine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12831, + 48.81617 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPDCQ0LAWQZE", + "ref": "DCQ0LAWQZE", + "name": "Le Chesnay-Rocquencourt , Rue de Versaille", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12831, + 48.81617 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPDCQ0LAWQZE", + "ref": "DCQ0LAWQZE", + "name": "Le Chesnay-Rocquencourt , Rue de Versaille", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12831, + 48.81617 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPDCQ0LAWQZE", + "ref": "DCQ0LAWQZE", + "name": "Le Chesnay-Rocquencourt , Rue de Versaille", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.13736, + 48.82647 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPI89XUJ039I", + "ref": "I89XUJ039I", + "name": "Le Chesnay-Rocquencourt , Rue de Louvenciennes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.13736, + 48.82647 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPI89XUJ039I", + "ref": "I89XUJ039I", + "name": "Le Chesnay-Rocquencourt , Rue de Louvenciennes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11859, + 48.82555 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPCBGWRNLZUG", + "ref": "CBGWRNLZUG", + "name": "Le Chesnay-Rocquencourt , Avenue Dutarte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8739, + 45.52472 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPLTETLMWDSZ", + "ref": "LTETLMWDSZ", + "name": "Vienne, Place Saint-Paul", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.441108, + 48.198048 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPUTCAFKUEJR", + "ref": "UTCAFKUEJR", + "name": "Golbey , Place du Souvenir", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11641, + 48.82899 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPOMGNS1LCLU", + "ref": "OMGNS1LCLU", + "name": "Le Chesnay-Rocquencourt , Parly 2", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8739, + 45.52472 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPLTETLMWDSZ", + "ref": "LTETLMWDSZ", + "name": "Vienne, Place Saint-Paul", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87537, + 45.52576 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPYSDEHHGQGH", + "ref": "YSDEHHGQGH", + "name": "Vienne, Parking François Mitterrand", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87667, + 45.52714 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPQM8YJBAKS4", + "ref": "QM8YJBAKS4", + "name": "Vienne, Place des Capucins", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87419, + 45.52793 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPZDHWTXVFAL", + "ref": "ZDHWTXVFAL", + "name": "Vienne, Parking Saint-Louis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86831, + 45.52124 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPDLA46WPGDU", + "ref": "DLA46WPGDU", + "name": "Vienne, Quai Riondet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8647, + 45.51407 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPAHACHJV7QW", + "ref": "AHACHJV7QW", + "name": "Vienne, Espace Saint-Germain Nord", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87279, + 45.52143 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPENOYQDXIZO", + "ref": "ENOYQDXIZO", + "name": "Vienne, Rue Emile Romanet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86466, + 45.51317 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPMBBTCSNJTK", + "ref": "MBBTCSNJTK", + "name": "Vienne, Espace Saint-Germain Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849718, + 45.501381 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPVTBYUSAA5F", + "ref": "VTBYUSAA5F", + "name": "Vienne, Parc Relais Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849718, + 45.501381 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPVTBYUSAA5F", + "ref": "VTBYUSAA5F", + "name": "Vienne, Parc Relais Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.441108, + 48.198048 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPUTCAFKUEJR", + "ref": "UTCAFKUEJR", + "name": "Golbey , Place du Souvenir", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87537, + 45.52576 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPYSDEHHGQGH", + "ref": "YSDEHHGQGH", + "name": "Vienne, Parking François Mitterrand", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87667, + 45.52714 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPQM8YJBAKS4", + "ref": "QM8YJBAKS4", + "name": "Vienne, Place des Capucins", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87108, + 45.52345 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPKPFDX4FTAA", + "ref": "KPFDX4FTAA", + "name": "Vienne, Parking Saint-Pierre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8716, + 45.52442 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPX1GL3ADTTI", + "ref": "X1GL3ADTTI", + "name": "Vienne, Parking Saint-Maurice", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87564, + 45.52464 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPLRLCQP4NJM", + "ref": "LRLCQP4NJM", + "name": "Vienne, Square Vassy", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87279, + 45.52143 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPENOYQDXIZO", + "ref": "ENOYQDXIZO", + "name": "Vienne, Rue Emile Romanet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87108, + 45.52345 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPKPFDX4FTAA", + "ref": "KPFDX4FTAA", + "name": "Vienne, Parking Saint-Pierre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86466, + 45.51317 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPMBBTCSNJTK", + "ref": "MBBTCSNJTK", + "name": "Vienne, Espace Saint-Germain Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8647, + 45.51407 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPAHACHJV7QW", + "ref": "AHACHJV7QW", + "name": "Vienne, Espace Saint-Germain Nord", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8716, + 45.52442 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPX1GL3ADTTI", + "ref": "X1GL3ADTTI", + "name": "Vienne, Parking Saint-Maurice", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87564, + 45.52464 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPLRLCQP4NJM", + "ref": "LRLCQP4NJM", + "name": "Vienne, Square Vassy", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.441108, + 48.198048 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPUTCAFKUEJR", + "ref": "UTCAFKUEJR", + "name": "Golbey , Place du Souvenir", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06130988, + 44.54188269 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPIGJVLDRJPL", + "ref": "IGJVLDRJPL", + "name": "GAP , Parking Relais du Stade Nautique", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.422346, + 48.183955 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPB8VYNNI4EK", + "ref": "B8VYNNI4EK", + "name": "Golbey , Collège Louis Armand", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.610229, + 49.10076 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPUWBEJENZM4", + "ref": "UWBEJENZM4", + "name": "Menneval 2 , Cuisinella", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033491, + 47.905369 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPKR0Q8THZQY", + "ref": "KR0Q8THZQY", + "name": "Chécy , Biocoop 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.189956, + 49.015557 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPAAOHVNYG1P", + "ref": "AAOHVNYG1P", + "name": "Vieil Evreux , V and B", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033491, + 47.905369 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPKR0Q8THZQY", + "ref": "KR0Q8THZQY", + "name": "Chécy , Biocoop 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.610229, + 49.10076 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPUWBEJENZM4", + "ref": "UWBEJENZM4", + "name": "Menneval 2 , Cuisinella", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.189956, + 49.015557 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPAAOHVNYG1P", + "ref": "AAOHVNYG1P", + "name": "Vieil Evreux , V and B", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033491, + 47.905369 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPKR0Q8THZQY", + "ref": "KR0Q8THZQY", + "name": "Chécy , Biocoop 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033491, + 47.905369 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPKR0Q8THZQY", + "ref": "KR0Q8THZQY", + "name": "Chécy , Biocoop 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033491, + 47.905369 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPKR0Q8THZQY", + "ref": "KR0Q8THZQY", + "name": "Chécy , Biocoop 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.610229, + 49.10076 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPUWBEJENZM4", + "ref": "UWBEJENZM4", + "name": "Menneval 2 , Cuisinella", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.623218, + 50.48689 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPHRHSOKTQFF", + "ref": "HRHSOKTQFF", + "name": "Cucq , Avenue de la libération", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.425071, + 48.204234 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPM676DRCSZV", + "ref": "M676DRCSZV", + "name": "Golbey , Stade la Haie le Doyen", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.623218, + 50.48689 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPHRHSOKTQFF", + "ref": "HRHSOKTQFF", + "name": "Cucq , Avenue de la libération", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.623218, + 50.48689 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPHRHSOKTQFF", + "ref": "HRHSOKTQFF", + "name": "Cucq , Avenue de la libération", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.589814, + 50.481269 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPADPWEZEQNB", + "ref": "ADPWEZEQNB", + "name": "Cucq , Place Jean Sapin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6274056, + 50.50043 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPNIWYNHGWZQ", + "ref": "NIWYNHGWZQ", + "name": "Cucq , Rue Jean Jaurès", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6274056, + 50.50043 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPNIWYNHGWZQ", + "ref": "NIWYNHGWZQ", + "name": "Cucq , Rue Jean Jaurès", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.589814, + 50.481269 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPADPWEZEQNB", + "ref": "ADPWEZEQNB", + "name": "Cucq , Place Jean Sapin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.645486, + 44.901527 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPBNKAZ43L8B", + "ref": "BNKAZ43L8B", + "name": "Briançon, Parking du champs de Mars", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.645486, + 44.901527 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPBNKAZ43L8B", + "ref": "BNKAZ43L8B", + "name": "Briançon, Parking du champs de Mars", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.645486, + 44.901527 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPBNKAZ43L8B", + "ref": "BNKAZ43L8B", + "name": "Briançon, Parking du champs de Mars", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.189956, + 49.015557 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPAAOHVNYG1P", + "ref": "AAOHVNYG1P", + "name": "Vieil Evreux , V and B", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.189956, + 49.015557 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPAAOHVNYG1P", + "ref": "AAOHVNYG1P", + "name": "Vieil Evreux , V and B", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.189956, + 49.015557 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPAAOHVNYG1P", + "ref": "AAOHVNYG1P", + "name": "Vieil Evreux , V and B", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.189956, + 49.015557 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPAAOHVNYG1P", + "ref": "AAOHVNYG1P", + "name": "Vieil Evreux , V and B", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.422346, + 48.183955 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPB8VYNNI4EK", + "ref": "B8VYNNI4EK", + "name": "Golbey , Collège Louis Armand", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42217, + 48.203893 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPMCGNQKQFJH", + "ref": "MCGNQKQFJH", + "name": "Golbey , Salle Lepage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42217, + 48.203893 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPMCGNQKQFJH", + "ref": "MCGNQKQFJH", + "name": "Golbey , Salle Lepage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.425071, + 48.204234 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPM676DRCSZV", + "ref": "M676DRCSZV", + "name": "Golbey , Stade la Haie le Doyen", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10233384, + 44.56943231 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPFJZP5RGIWR", + "ref": "FJZP5RGIWR", + "name": "GAP , Parking relais du plan Tokoro", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10233384, + 44.56943231 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPFJZP5RGIWR", + "ref": "FJZP5RGIWR", + "name": "GAP , Parking relais du plan Tokoro", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06127559, + 44.54181494 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPSPNW8OHGXT", + "ref": "SPNW8OHGXT", + "name": "Gap, Parking Relais du stade Nautique", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10233384, + 44.56943231 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPFJZP5RGIWR", + "ref": "FJZP5RGIWR", + "name": "GAP , Parking relais du plan Tokoro", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06127559, + 44.54181494 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPSPNW8OHGXT", + "ref": "SPNW8OHGXT", + "name": "Gap, Parking Relais du stade Nautique", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06127559, + 44.54181494 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPSPNW8OHGXT", + "ref": "SPNW8OHGXT", + "name": "Gap, Parking Relais du stade Nautique", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05445737, + 44.55803133 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPFQD6TNYY1N", + "ref": "FQD6TNYY1N", + "name": "GAP , Parking relais du Sénateur", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05445737, + 44.55803133 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPFQD6TNYY1N", + "ref": "FQD6TNYY1N", + "name": "GAP , Parking relais du Sénateur", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87419, + 45.52793 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPZDHWTXVFAL", + "ref": "ZDHWTXVFAL", + "name": "Vienne, Parking Saint-Louis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05445737, + 44.55803133 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPFQD6TNYY1N", + "ref": "FQD6TNYY1N", + "name": "GAP , Parking relais du Sénateur", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06130988, + 44.54188269 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPIGJVLDRJPL", + "ref": "IGJVLDRJPL", + "name": "GAP , Parking Relais du Stade Nautique", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06130988, + 44.54188269 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPIGJVLDRJPL", + "ref": "IGJVLDRJPL", + "name": "GAP , Parking Relais du Stade Nautique", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06130988, + 44.54188269 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPIGJVLDRJPL", + "ref": "IGJVLDRJPL", + "name": "GAP , Parking Relais du Stade Nautique", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05445737, + 44.55803133 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPFQD6TNYY1N", + "ref": "FQD6TNYY1N", + "name": "GAP , Parking relais du Sénateur", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033491, + 47.905369 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPKR0Q8THZQY", + "ref": "KR0Q8THZQY", + "name": "Chécy , Biocoop 1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86831, + 45.52124 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPDLA46WPGDU", + "ref": "DLA46WPGDU", + "name": "Vienne, Quai Riondet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11855, + 48.83427 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPXA1GQIFFQO", + "ref": "XA1GQIFFQO", + "name": "Le Chesnay-Rocquencourt , Rue des érables ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.396071, + 47.290493 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPB4QYBOUPMM", + "ref": "B4QYBOUPMM", + "name": "La Baule, Parking des Salines", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.355691, + 47.280084 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPOH8U5KZYGR", + "ref": "OH8U5KZYGR", + "name": "La Baule , Parking Résidence de la Forêt", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.390635, + 47.288267 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPJQ63UNHXMO", + "ref": "JQ63UNHXMO", + "name": "La Baule , Parking SNCF S1", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33396657, + 47.27512821 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPUVA1GK3BEZ", + "ref": "UVA1GK3BEZ", + "name": "La Baule , Parking Maison de quartier de Guézy", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.343717, + 47.271461 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPHTBGD246VP", + "ref": "HTBGD246VP", + "name": "La Baule , Parking Marché de Guézy", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.39379, + 47.287674 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPGYS7KX8RYW", + "ref": "GYS7KX8RYW", + "name": "La Baule , Parking des Corallines", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41180177, + 47.28378784 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPMLWOEU75YT", + "ref": "MLWOEU75YT", + "name": "La Baule, Parking Agen", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.355691, + 47.280084 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPOH8U5KZYGR", + "ref": "OH8U5KZYGR", + "name": "La Baule , Parking Résidence de la Forêt", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.378618, + 47.28234 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPEH4SWQBAHY", + "ref": "EH4SWQBAHY", + "name": "La Baule , Parking Honoré de Balzac", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.39379, + 47.287674 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPGYS7KX8RYW", + "ref": "GYS7KX8RYW", + "name": "La Baule , Parking des Corallines", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.390635, + 47.288267 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPJQ63UNHXMO", + "ref": "JQ63UNHXMO", + "name": "La Baule , Parking SNCF S1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35827385, + 47.29464201 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPSQAXHVYUL0", + "ref": "SQAXHVYUL0", + "name": "La Baule , Parking du Cimetière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.378618, + 47.28234 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPEH4SWQBAHY", + "ref": "EH4SWQBAHY", + "name": "La Baule , Parking Honoré de Balzac", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41498069, + 47.27943453 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPY3VAL8QRMQ", + "ref": "Y3VAL8QRMQ", + "name": "La Baule , Parking Avenue de la Plage", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35827385, + 47.29464201 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPSQAXHVYUL0", + "ref": "SQAXHVYUL0", + "name": "La Baule , Parking du Cimetière", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.355691, + 47.280084 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPOH8U5KZYGR", + "ref": "OH8U5KZYGR", + "name": "La Baule , Parking Résidence de la Forêt", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41498069, + 47.27943453 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPY3VAL8QRMQ", + "ref": "Y3VAL8QRMQ", + "name": "La Baule , Parking Avenue de la Plage", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.378618, + 47.28234 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPEH4SWQBAHY", + "ref": "EH4SWQBAHY", + "name": "La Baule , Parking Honoré de Balzac", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.378618, + 47.28234 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPEH4SWQBAHY", + "ref": "EH4SWQBAHY", + "name": "La Baule , Parking Honoré de Balzac", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.39379, + 47.287674 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPGYS7KX8RYW", + "ref": "GYS7KX8RYW", + "name": "La Baule , Parking des Corallines", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.355691, + 47.280084 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPOH8U5KZYGR", + "ref": "OH8U5KZYGR", + "name": "La Baule , Parking Résidence de la Forêt", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33396657, + 47.27512821 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPUVA1GK3BEZ", + "ref": "UVA1GK3BEZ", + "name": "La Baule , Parking Maison de quartier de Guézy", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.343717, + 47.271461 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPHTBGD246VP", + "ref": "HTBGD246VP", + "name": "La Baule , Parking Marché de Guézy", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41498069, + 47.27943453 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPY3VAL8QRMQ", + "ref": "Y3VAL8QRMQ", + "name": "La Baule , Parking Avenue de la Plage", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1259, + 48.82597 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPEKGLSXWYLC", + "ref": "EKGLSXWYLC", + "name": "Le Chesnay, Rue Pottier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1297, + 48.82966 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPNN4XSWH5DX", + "ref": "NN4XSWH5DX", + "name": "Le Chesnay-Rocquencourt , Carr de l'Europe", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1297, + 48.82966 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPNN4XSWH5DX", + "ref": "NN4XSWH5DX", + "name": "Le Chesnay-Rocquencourt , Carr de l'Europe", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1259, + 48.82597 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPEKGLSXWYLC", + "ref": "EKGLSXWYLC", + "name": "Le Chesnay, Rue Pottier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1259, + 48.82597 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPEKGLSXWYLC", + "ref": "EKGLSXWYLC", + "name": "Le Chesnay, Rue Pottier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1297, + 48.82966 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPNN4XSWH5DX", + "ref": "NN4XSWH5DX", + "name": "Le Chesnay-Rocquencourt , Carr de l'Europe", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1259, + 48.82597 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPEKGLSXWYLC", + "ref": "EKGLSXWYLC", + "name": "Le Chesnay, Rue Pottier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1259, + 48.82597 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPEKGLSXWYLC", + "ref": "EKGLSXWYLC", + "name": "Le Chesnay, Rue Pottier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1297, + 48.82966 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPNN4XSWH5DX", + "ref": "NN4XSWH5DX", + "name": "Le Chesnay-Rocquencourt , Carr de l'Europe", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.396071, + 47.290493 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPB4QYBOUPMM", + "ref": "B4QYBOUPMM", + "name": "La Baule, Parking des Salines", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.343717, + 47.271461 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPHTBGD246VP", + "ref": "HTBGD246VP", + "name": "La Baule , Parking Marché de Guézy", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1297, + 48.82966 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPNN4XSWH5DX", + "ref": "NN4XSWH5DX", + "name": "Le Chesnay-Rocquencourt , Carr de l'Europe", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1259, + 48.82597 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPEKGLSXWYLC", + "ref": "EKGLSXWYLC", + "name": "Le Chesnay, Rue Pottier", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1297, + 48.82966 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPNN4XSWH5DX", + "ref": "NN4XSWH5DX", + "name": "Le Chesnay-Rocquencourt , Carr de l'Europe", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.848091, + 45.628359 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPIMSALVK01H", + "ref": "IMSALVK01H", + "name": "Montvalezan, Parking des Pistes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.848091, + 45.628359 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPIMSALVK01H", + "ref": "IMSALVK01H", + "name": "Montvalezan, Parking des Pistes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.848091, + 45.628359 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPIMSALVK01H", + "ref": "IMSALVK01H", + "name": "Montvalezan, Parking des Pistes", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.343717, + 47.271461 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPHTBGD246VP", + "ref": "HTBGD246VP", + "name": "La Baule , Parking Marché de Guézy", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41498069, + 47.27943453 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPY3VAL8QRMQ", + "ref": "Y3VAL8QRMQ", + "name": "La Baule , Parking Avenue de la Plage", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41498069, + 47.27943453 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPY3VAL8QRMQ", + "ref": "Y3VAL8QRMQ", + "name": "La Baule , Parking Avenue de la Plage", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41498069, + 47.27943453 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPY3VAL8QRMQ", + "ref": "Y3VAL8QRMQ", + "name": "La Baule , Parking Avenue de la Plage", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35827385, + 47.29464201 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPSQAXHVYUL0", + "ref": "SQAXHVYUL0", + "name": "La Baule , Parking du Cimetière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.406672, + 47.281257 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPSSHO5RSRMZ", + "ref": "SSHO5RSRMZ", + "name": "La Baule, Parking Kercausette", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.406672, + 47.281257 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPSSHO5RSRMZ", + "ref": "SSHO5RSRMZ", + "name": "La Baule, Parking Kercausette", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.394561, + 47.282039 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPPD9O4ON1F6", + "ref": "PD9O4ON1F6", + "name": "La Baule, Parking Escholliers", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.406672, + 47.281257 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPSSHO5RSRMZ", + "ref": "SSHO5RSRMZ", + "name": "La Baule, Parking Kercausette", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.406672, + 47.281257 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPSSHO5RSRMZ", + "ref": "SSHO5RSRMZ", + "name": "La Baule, Parking Kercausette", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41180177, + 47.28378784 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPMLWOEU75YT", + "ref": "MLWOEU75YT", + "name": "La Baule, Parking Agen", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41180177, + 47.28378784 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPMLWOEU75YT", + "ref": "MLWOEU75YT", + "name": "La Baule, Parking Agen", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.406672, + 47.281257 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPSSHO5RSRMZ", + "ref": "SSHO5RSRMZ", + "name": "La Baule, Parking Kercausette", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41180177, + 47.28378784 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPMLWOEU75YT", + "ref": "MLWOEU75YT", + "name": "La Baule, Parking Agen", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41180177, + 47.28378784 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPMLWOEU75YT", + "ref": "MLWOEU75YT", + "name": "La Baule, Parking Agen", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.394561, + 47.282039 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPPD9O4ON1F6", + "ref": "PD9O4ON1F6", + "name": "La Baule, Parking Escholliers", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.394561, + 47.282039 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPPD9O4ON1F6", + "ref": "PD9O4ON1F6", + "name": "La Baule, Parking Escholliers", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.396071, + 47.290493 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPB4QYBOUPMM", + "ref": "B4QYBOUPMM", + "name": "La Baule, Parking des Salines", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.394561, + 47.282039 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPPD9O4ON1F6", + "ref": "PD9O4ON1F6", + "name": "La Baule, Parking Escholliers", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41180177, + 47.28378784 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPMLWOEU75YT", + "ref": "MLWOEU75YT", + "name": "La Baule, Parking Agen", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.394561, + 47.282039 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPPD9O4ON1F6", + "ref": "PD9O4ON1F6", + "name": "La Baule, Parking Escholliers", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.396071, + 47.290493 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPB4QYBOUPMM", + "ref": "B4QYBOUPMM", + "name": "La Baule, Parking des Salines", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.396071, + 47.290493 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPB4QYBOUPMM", + "ref": "B4QYBOUPMM", + "name": "La Baule, Parking des Salines", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.394561, + 47.282039 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPPD9O4ON1F6", + "ref": "PD9O4ON1F6", + "name": "La Baule, Parking Escholliers", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.396071, + 47.290493 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPB4QYBOUPMM", + "ref": "B4QYBOUPMM", + "name": "La Baule, Parking des Salines", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33396657, + 47.27512821 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPUVA1GK3BEZ", + "ref": "UVA1GK3BEZ", + "name": "La Baule , Parking Maison de quartier de Guézy", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.406672, + 47.281257 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPSSHO5RSRMZ", + "ref": "SSHO5RSRMZ", + "name": "La Baule, Parking Kercausette", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35827385, + 47.29464201 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPSQAXHVYUL0", + "ref": "SQAXHVYUL0", + "name": "La Baule , Parking du Cimetière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.378618, + 47.28234 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPEH4SWQBAHY", + "ref": "EH4SWQBAHY", + "name": "La Baule , Parking Honoré de Balzac", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33396657, + 47.27512821 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPUVA1GK3BEZ", + "ref": "UVA1GK3BEZ", + "name": "La Baule , Parking Maison de quartier de Guézy", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35827385, + 47.29464201 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPSQAXHVYUL0", + "ref": "SQAXHVYUL0", + "name": "La Baule , Parking du Cimetière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.39379, + 47.287674 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPGYS7KX8RYW", + "ref": "GYS7KX8RYW", + "name": "La Baule , Parking des Corallines", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.390635, + 47.288267 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPJQ63UNHXMO", + "ref": "JQ63UNHXMO", + "name": "La Baule , Parking SNCF S1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.390635, + 47.288267 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPJQ63UNHXMO", + "ref": "JQ63UNHXMO", + "name": "La Baule , Parking SNCF S1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35827385, + 47.29464201 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPSQAXHVYUL0", + "ref": "SQAXHVYUL0", + "name": "La Baule , Parking du Cimetière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.39379, + 47.287674 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPGYS7KX8RYW", + "ref": "GYS7KX8RYW", + "name": "La Baule , Parking des Corallines", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.390635, + 47.288267 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPJQ63UNHXMO", + "ref": "JQ63UNHXMO", + "name": "La Baule , Parking SNCF S1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.39379, + 47.287674 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPGYS7KX8RYW", + "ref": "GYS7KX8RYW", + "name": "La Baule , Parking des Corallines", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.355691, + 47.280084 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPOH8U5KZYGR", + "ref": "OH8U5KZYGR", + "name": "La Baule , Parking Résidence de la Forêt", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.355691, + 47.280084 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPOH8U5KZYGR", + "ref": "OH8U5KZYGR", + "name": "La Baule , Parking Résidence de la Forêt", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.378618, + 47.28234 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPEH4SWQBAHY", + "ref": "EH4SWQBAHY", + "name": "La Baule , Parking Honoré de Balzac", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33396657, + 47.27512821 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPUVA1GK3BEZ", + "ref": "UVA1GK3BEZ", + "name": "La Baule , Parking Maison de quartier de Guézy", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.343717, + 47.271461 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPHTBGD246VP", + "ref": "HTBGD246VP", + "name": "La Baule , Parking Marché de Guézy", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.343717, + 47.271461 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPHTBGD246VP", + "ref": "HTBGD246VP", + "name": "La Baule , Parking Marché de Guézy", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33396657, + 47.27512821 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPUVA1GK3BEZ", + "ref": "UVA1GK3BEZ", + "name": "La Baule , Parking Maison de quartier de Guézy", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.390635, + 47.288267 + ] + }, + "properties": { + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref:EU:EVSE": "FRECHPJQ63UNHXMO", + "ref": "JQ63UNHXMO", + "name": "La Baule , Parking SNCF S1", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6492, + 48.7561 + ] + }, + "properties": { + "operator": "Guerin", + "owner:ref:FR:SIREN": "512913518", + "email": "yannick@2ed.fr", + "phone": "0643099223", + "network": "2ED", + "ref:EU:EVSE": "Non concerné", + "ref": "6652155f-b6f5-417e-972d-2575195a5a22", + "name": "2ED", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-16", + "note": "recharge disponible uniquement aux heures d'ouverture", + "source:date": "2022-11-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8261274, + 46.46755 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "342583796", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA FONTENAY LE COMTE- LES GARAGES CHAIGNEAU", + "ref:EU:EVSE": "FRZTLE22AC67140", + "ref": "67140", + "name": "Toyota - Fontenay le Comte - 22kW AC D ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-05", + "note": "", + "source:date": "2021-08-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8261274, + 46.46755 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "342583796", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA FONTENAY LE COMTE- LES GARAGES CHAIGNEAU", + "ref:EU:EVSE": "FRZTLE22AC67139", + "ref": "67139", + "name": " Toyota - Fontenay le Comte - 22kW AC G ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-05", + "note": "", + "source:date": "2021-08-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89, + 44.02 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMELAMONTAGNEPO1", + "ref": "a300ab22-3725-4fad-9670-e76fe6594a81", + "name": "CAMPING LA MONTAGNE ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-09", + "note": "DISPONIBLE 24/7", + "source:date": "2022-08-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2398801, + 46.6646193 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "342583796", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota Parthenay - LES GARAGES CHAIGNEAU", + "ref:EU:EVSE": "FRZTLE22AC59965", + "ref": "59965", + "name": "Toyota - Parthenay - 22kW AC D ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2021-04-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2398801, + 46.6646193 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "342583796", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota Parthenay - LES GARAGES CHAIGNEAU", + "ref:EU:EVSE": "FRZTLE22AC59964", + "ref": "59964", + "name": "Toyota - Parthenay - 22kW AC G ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2021-04-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4943484, + 46.8369672 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "342583796", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota Bressuire - LES GARAGES CHAIGNEAU", + "ref:EU:EVSE": "FRZTLE22AC59954", + "ref": "59954", + "name": " Toyota - Bressuire - 22kW AC D ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2021-04-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4943484, + 46.8369672 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "342583796", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota Bressuire - LES GARAGES CHAIGNEAU", + "ref:EU:EVSE": "FRZTLE22AC59953", + "ref": "59953", + "name": "Toyota - Bressuire - 22kW AC G ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2021-04-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83444, + 48.068958 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "410546957", + "email": "philippe.voisin@virta.global", + "phone": "+33 (0)6 12912998", + "network": "Groupama supports et services ", + "ref:EU:EVSE": "FRE10P35310GROUPAMAMORDELLES", + "ref": "", + "name": "G2S-MORDELLES", + "capacity": "7", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-12", + "note": "", + "source:date": "2022-11-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83444, + 48.068958 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "410546958", + "email": "philippe.voisin@virta.global", + "phone": "+33 (0)6 12912999", + "network": "Groupama supports et services ", + "ref:EU:EVSE": "FRE10P35310GROUPAMAMORDELLES", + "ref": "", + "name": "G2S-MORDELLES", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-13", + "note": "", + "source:date": "2022-11-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83444, + 48.068958 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "410546956", + "email": "philippe.voisin@virta.global", + "phone": "+33 (0)6 12912997 ", + "network": "Groupama supports et services ", + "ref:EU:EVSE": "FRE10P35310GROUPAMAMORDELLES", + "ref": "", + "name": "G2S-MORDELLES", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-11", + "note": "", + "source:date": "2022-11-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83444, + 48.068958 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "410546961", + "email": "philippe.voisin@virta.global", + "phone": "+33 (0)6 12913002", + "network": "Groupama supports et services ", + "ref:EU:EVSE": "FRE10P35310GROUPAMAMORDELLES", + "ref": "", + "name": "G2S-MORDELLES", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-16", + "note": "", + "source:date": "2022-11-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83444, + 48.068958 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "410546960", + "email": "philippe.voisin@virta.global", + "phone": "+33 (0)6 12913001", + "network": "Groupama supports et services ", + "ref:EU:EVSE": "FRE10P35310GROUPAMAMORDELLES", + "ref": "", + "name": "G2S-MORDELLES", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "", + "source:date": "2022-11-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83444, + 48.068958 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "410546959", + "email": "philippe.voisin@virta.global", + "phone": "+33 (0)6 12913000", + "network": "Groupama supports et services ", + "ref:EU:EVSE": "FRE10P35310GROUPAMAMORDELLES", + "ref": "", + "name": "G2S-MORDELLES", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-14", + "note": "", + "source:date": "2022-11-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0873826, + 49.1011474 + ] + }, + "properties": { + "operator": "Guerin", + "owner:ref:FR:SIREN": "512913518", + "email": "yannick@2ed.fr", + "phone": "0643099223", + "network": "2ED LOGISTIQUE", + "ref:EU:EVSE": "Non concerné", + "ref": "6bb1e2c9-0d32-49a4-9598-83c9ae504b51", + "name": "2ED LOISTIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-16", + "note": "recharge disponible uniquement aux heures d'ouverture", + "source:date": "2022-11-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0151949687525528, + 49.491605515295085 + ] + }, + "properties": { + "operator": "EVERON", + "owner:ref:FR:SIREN": "310818000", + "email": "frsupport@ev-box.com", + "phone": "0141447047", + "network": "point p", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2211454", + "name": "Point P Maromme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "Recharge 24/24h 7/7j", + "source:date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.955188, + 47.160115 + ] + }, + "properties": { + "operator": "BORNECO", + "owner:ref:FR:SIREN": "830699930", + "email": "freddy.borneco@gmail.com", + "phone": "0669684978", + "network": "Comte Liger-Belair", + "ref:EU:EVSE": "FRBHMECOMTELIGIERBELAIR", + "ref": "FR*BHM*ECOMTELIGIERBELAIR*1", + "name": "COMTE LIGIER ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2022-12-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046384, + 50.529555 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123123", + "ref": "", + "name": "SANEF PHALENPIN EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.951229, + 48.941981 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118120", + "ref": "", + "name": "SANEF MORAINVILLIERS SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.951229, + 48.941981 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000117668", + "ref": "", + "name": "SANEF MORAINVILLIERS SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.951229, + 48.941981 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118120", + "ref": "", + "name": "SANEF MORAINVILLIERS SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.951229, + 48.941981 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118120", + "ref": "", + "name": "SANEF MORAINVILLIERS SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046384, + 50.529555 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118127", + "ref": "", + "name": "SANEF PHALENPIN EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046384, + 50.529555 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118127", + "ref": "", + "name": "SANEF PHALENPIN EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046384, + 50.529555 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118127", + "ref": "", + "name": "SANEF PHALENPIN EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046384, + 50.529555 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118131", + "ref": "", + "name": "SANEF PHALENPIN EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046384, + 50.529555 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118131", + "ref": "", + "name": "SANEF PHALENPIN EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046384, + 50.529555 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123125", + "ref": "", + "name": "SANEF PHALENPIN EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046384, + 50.529555 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123123", + "ref": "", + "name": "SANEF PHALENPIN EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046384, + 50.529555 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123124", + "ref": "", + "name": "SANEF PHALENPIN EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046384, + 50.529555 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123124", + "ref": "", + "name": "SANEF PHALENPIN EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046384, + 50.529555 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123125", + "ref": "", + "name": "SANEF PHALENPIN EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.951229, + 48.941981 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118116", + "ref": "", + "name": "SANEF MORAINVILLIERS SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046084, + 50.531584 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118129", + "ref": "", + "name": "SANEF PHALENPIN OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046084, + 50.531584 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118129", + "ref": "", + "name": "SANEF PHALENPIN OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046084, + 50.531584 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118129", + "ref": "", + "name": "SANEF PHALENPIN OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046084, + 50.531584 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118137", + "ref": "", + "name": "SANEF PHALENPIN OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046084, + 50.531584 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118137", + "ref": "", + "name": "SANEF PHALENPIN OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.951229, + 48.941981 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000117668", + "ref": "", + "name": "SANEF MORAINVILLIERS SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.951229, + 48.941981 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118140", + "ref": "", + "name": "SANEF MORAINVILLIERS SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.951229, + 48.941981 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118116", + "ref": "", + "name": "SANEF MORAINVILLIERS SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95421, + 48.94159 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118113", + "ref": "", + "name": "SANEF MORAINVILLIERS NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.92515, + 49.449857 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122551", + "ref": "", + "name": "SANEF MONT DE NIZY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.92515, + 49.449857 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122551", + "ref": "", + "name": "SANEF MONT DE NIZY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95421, + 48.94159 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118109", + "ref": "", + "name": "SANEF MORAINVILLIERS NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95421, + 48.94159 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118109", + "ref": "", + "name": "SANEF MORAINVILLIERS NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95421, + 48.94159 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118112", + "ref": "", + "name": "SANEF MORAINVILLIERS NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95421, + 48.94159 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118112", + "ref": "", + "name": "SANEF MORAINVILLIERS NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95421, + 48.94159 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118115", + "ref": "", + "name": "SANEF MORAINVILLIERS NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95421, + 48.94159 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118115", + "ref": "", + "name": "SANEF MORAINVILLIERS NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95421, + 48.94159 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118113", + "ref": "", + "name": "SANEF MORAINVILLIERS NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95421, + 48.94159 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118114", + "ref": "", + "name": "SANEF MORAINVILLIERS NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.951229, + 48.941981 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122116", + "ref": "", + "name": "SANEF MORAINVILLIERS SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95421, + 48.94159 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118114", + "ref": "", + "name": "SANEF MORAINVILLIERS NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95421, + 48.94159 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118121", + "ref": "", + "name": "SANEF MORAINVILLIERS NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95421, + 48.94159 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118121", + "ref": "", + "name": "SANEF MORAINVILLIERS NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95421, + 48.94159 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118121", + "ref": "", + "name": "SANEF MORAINVILLIERS NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.951229, + 48.941981 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118111", + "ref": "", + "name": "SANEF MORAINVILLIERS SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.951229, + 48.941981 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118111", + "ref": "", + "name": "SANEF MORAINVILLIERS SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046084, + 50.531584 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118132", + "ref": "", + "name": "SANEF PHALENPIN OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.951229, + 48.941981 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118140", + "ref": "", + "name": "SANEF MORAINVILLIERS SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.951229, + 48.941981 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122116", + "ref": "", + "name": "SANEF MORAINVILLIERS SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046084, + 50.531584 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118132", + "ref": "", + "name": "SANEF PHALENPIN OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046084, + 50.531584 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118139", + "ref": "", + "name": "SANEF PHALENPIN OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046084, + 50.531584 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118138", + "ref": "", + "name": "SANEF PHALENPIN OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.661876, + 49.132545 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000130103", + "ref": "", + "name": "SANEF LONGEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.657184, + 49.134222 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000130111", + "ref": "", + "name": "SANEF LONGEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.657184, + 49.134222 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000130112", + "ref": "", + "name": "SANEF LONGEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.657184, + 49.134222 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000130112", + "ref": "", + "name": "SANEF LONGEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.657184, + 49.134222 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000130113", + "ref": "", + "name": "SANEF LONGEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.657184, + 49.134222 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000130113", + "ref": "", + "name": "SANEF LONGEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.661876, + 49.132545 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118149", + "ref": "", + "name": "SANEF LONGEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.661876, + 49.132545 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118149", + "ref": "", + "name": "SANEF LONGEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.661876, + 49.132545 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118149", + "ref": "", + "name": "SANEF LONGEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.661876, + 49.132545 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000130103", + "ref": "", + "name": "SANEF LONGEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.661876, + 49.132545 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000130104", + "ref": "", + "name": "SANEF LONGEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046084, + 50.531584 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118138", + "ref": "", + "name": "SANEF PHALENPIN OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.661876, + 49.132545 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000130104", + "ref": "", + "name": "SANEF LONGEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.661876, + 49.132545 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000130105", + "ref": "", + "name": "SANEF LONGEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.661876, + 49.132545 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000130105", + "ref": "", + "name": "SANEF LONGEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.097517, + 49.246191 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118128", + "ref": "", + "name": "SANEF LORMAISON EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.097517, + 49.246191 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118128", + "ref": "", + "name": "SANEF LORMAISON EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.097517, + 49.246191 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118128", + "ref": "", + "name": "SANEF LORMAISON EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.096186, + 49.241225 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118148", + "ref": "", + "name": "SANEF LORMAISON OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.92515, + 49.449857 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122550", + "ref": "", + "name": "SANEF MONT DE NIZY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.096186, + 49.241225 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118148", + "ref": "", + "name": "SANEF LORMAISON OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.657184, + 49.134222 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000130111", + "ref": "", + "name": "SANEF LONGEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.657184, + 49.134222 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118151", + "ref": "", + "name": "SANEF LONGEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.657184, + 49.134222 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118151", + "ref": "", + "name": "SANEF LONGEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.657184, + 49.134222 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118151", + "ref": "", + "name": "SANEF LONGEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046084, + 50.531584 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118139", + "ref": "", + "name": "SANEF PHALENPIN OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.096186, + 49.241225 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118148", + "ref": "", + "name": "SANEF LORMAISON OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719718, + 49.518581 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118117", + "ref": "", + "name": "SANEF RESSONS OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719718, + 49.518581 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118117", + "ref": "", + "name": "SANEF RESSONS OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719718, + 49.518581 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118133", + "ref": "", + "name": "SANEF RESSONS OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719718, + 49.518581 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118133", + "ref": "", + "name": "SANEF RESSONS OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719718, + 49.518581 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118118", + "ref": "", + "name": "SANEF RESSONS OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719718, + 49.518581 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118118", + "ref": "", + "name": "SANEF RESSONS OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719718, + 49.518581 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118135", + "ref": "", + "name": "SANEF RESSONS OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719718, + 49.518581 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118135", + "ref": "", + "name": "SANEF RESSONS OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719718, + 49.518581 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118130", + "ref": "", + "name": "SANEF RESSONS OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719718, + 49.518581 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118130", + "ref": "", + "name": "SANEF RESSONS OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719718, + 49.518581 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118110", + "ref": "", + "name": "SANEF RESSONS OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719718, + 49.518581 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118110", + "ref": "", + "name": "SANEF RESSONS OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719718, + 49.518581 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118134", + "ref": "", + "name": "SANEF RESSONS OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719718, + 49.518581 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118134", + "ref": "", + "name": "SANEF RESSONS OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719718, + 49.518581 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118119", + "ref": "", + "name": "SANEF RESSONS OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719718, + 49.518581 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118119", + "ref": "", + "name": "SANEF RESSONS OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719718, + 49.518581 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118119", + "ref": "", + "name": "SANEF RESSONS OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.92515, + 49.449857 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122550", + "ref": "", + "name": "SANEF MONT DE NIZY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.691281, + 48.725339 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000127603", + "ref": "", + "name": "SANEF BRUMATH OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.92515, + 49.449857 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122549", + "ref": "", + "name": "SANEF MONT DE NIZY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.691281, + 48.725339 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000127607", + "ref": "", + "name": "SANEF BRUMATH OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.695719, + 48.720927 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000127598", + "ref": "", + "name": "SANEF BRUMATH EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.695719, + 48.720927 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000127598", + "ref": "", + "name": "SANEF BRUMATH EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.695719, + 48.720927 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000127599", + "ref": "", + "name": "SANEF BRUMATH EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.695719, + 48.720927 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000127599", + "ref": "", + "name": "SANEF BRUMATH EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.695719, + 48.720927 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000127600", + "ref": "", + "name": "SANEF BRUMATH EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.695719, + 48.720927 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000127600", + "ref": "", + "name": "SANEF BRUMATH EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.691281, + 48.725339 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118154", + "ref": "", + "name": "SANEF BRUMATH OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.691281, + 48.725339 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118154", + "ref": "", + "name": "SANEF BRUMATH OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.691281, + 48.725339 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000127603", + "ref": "", + "name": "SANEF BRUMATH OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.691281, + 48.725339 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000127607", + "ref": "", + "name": "SANEF BRUMATH OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.927965, + 49.445715 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122552", + "ref": "", + "name": "SANEF CHAMPS ROLAND", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.691281, + 48.725339 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000127608", + "ref": "", + "name": "SANEF BRUMATH OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.691281, + 48.725339 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000127608", + "ref": "", + "name": "SANEF BRUMATH OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.691281, + 48.725339 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000127609", + "ref": "", + "name": "SANEF BRUMATH OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.691281, + 48.725339 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000127609", + "ref": "", + "name": "SANEF BRUMATH OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.927965, + 49.445715 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118126", + "ref": "", + "name": "SANEF CHAMPS ROLAND", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.927965, + 49.445715 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118126", + "ref": "", + "name": "SANEF CHAMPS ROLAND", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.927965, + 49.445715 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118126", + "ref": "", + "name": "SANEF CHAMPS ROLAND", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.927965, + 49.445715 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122553", + "ref": "", + "name": "SANEF CHAMPS ROLAND", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.927965, + 49.445715 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122552", + "ref": "", + "name": "SANEF CHAMPS ROLAND", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.695719, + 48.720927 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000127597", + "ref": "", + "name": "SANEF BRUMATH EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.695719, + 48.720927 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000127597", + "ref": "", + "name": "SANEF BRUMATH EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.695719, + 48.720927 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118153", + "ref": "", + "name": "SANEF BRUMATH EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.695719, + 48.720927 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118153", + "ref": "", + "name": "SANEF BRUMATH EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118123", + "ref": "", + "name": "SANEF BEUZEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118123", + "ref": "", + "name": "SANEF BEUZEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118123", + "ref": "", + "name": "SANEF BEUZEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118143", + "ref": "", + "name": "SANEF BEUZEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118143", + "ref": "", + "name": "SANEF BEUZEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118144", + "ref": "", + "name": "SANEF BEUZEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118144", + "ref": "", + "name": "SANEF BEUZEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118145", + "ref": "", + "name": "SANEF BEUZEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118145", + "ref": "", + "name": "SANEF BEUZEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118124", + "ref": "", + "name": "SANEF BEUZEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118124", + "ref": "", + "name": "SANEF BEUZEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118124", + "ref": "", + "name": "SANEF BEUZEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118142", + "ref": "", + "name": "SANEF BEUZEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118142", + "ref": "", + "name": "SANEF BEUZEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118146", + "ref": "", + "name": "SANEF BEUZEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118146", + "ref": "", + "name": "SANEF BEUZEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.92515, + 49.449857 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122549", + "ref": "", + "name": "SANEF MONT DE NIZY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118147", + "ref": "", + "name": "SANEF BEUZEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.695719, + 48.720927 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118153", + "ref": "", + "name": "SANEF BRUMATH EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.927965, + 49.445715 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122552", + "ref": "", + "name": "SANEF CHAMPS ROLAND", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118147", + "ref": "", + "name": "SANEF BEUZEVILLE SUD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.927965, + 49.445715 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122554", + "ref": "", + "name": "SANEF CHAMPS ROLAND", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.467849, + 50.340625 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123175", + "ref": "", + "name": "SANEF LA SENTINELLE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.467849, + 50.340625 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118150", + "ref": "", + "name": "SANEF LA SENTINELLE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.467849, + 50.340625 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118150", + "ref": "", + "name": "SANEF LA SENTINELLE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.467849, + 50.340625 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118150", + "ref": "", + "name": "SANEF LA SENTINELLE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.467849, + 50.340625 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123172", + "ref": "", + "name": "SANEF LA SENTINELLE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.467849, + 50.340625 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123172", + "ref": "", + "name": "SANEF LA SENTINELLE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.467849, + 50.340625 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123173", + "ref": "", + "name": "SANEF LA SENTINELLE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.467849, + 50.340625 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123174", + "ref": "", + "name": "SANEF LA SENTINELLE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.467849, + 50.340625 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123174", + "ref": "", + "name": "SANEF LA SENTINELLE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.467849, + 50.340625 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123175", + "ref": "", + "name": "SANEF LA SENTINELLE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.467849, + 50.340625 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123176", + "ref": "", + "name": "SANEF LA SENTINELLE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.470007, + 50.339582 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123187", + "ref": "", + "name": "SANEF LA SENTINELLE EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.467849, + 50.340625 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123176", + "ref": "", + "name": "SANEF LA SENTINELLE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.467849, + 50.340625 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123177", + "ref": "", + "name": "SANEF LA SENTINELLE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.467849, + 50.340625 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123177", + "ref": "", + "name": "SANEF LA SENTINELLE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.467849, + 50.340625 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123179", + "ref": "", + "name": "SANEF LA SENTINELLE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.467849, + 50.340625 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123179", + "ref": "", + "name": "SANEF LA SENTINELLE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.92515, + 49.449857 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118125", + "ref": "", + "name": "SANEF MONT DE NIZY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.92515, + 49.449857 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118125", + "ref": "", + "name": "SANEF MONT DE NIZY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.92515, + 49.449857 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118125", + "ref": "", + "name": "SANEF MONT DE NIZY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.927965, + 49.445715 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122554", + "ref": "", + "name": "SANEF CHAMPS ROLAND", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.470007, + 50.339582 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123187", + "ref": "", + "name": "SANEF LA SENTINELLE EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.467849, + 50.340625 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123173", + "ref": "", + "name": "SANEF LA SENTINELLE OUEST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.96862, + 49.807764 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118136", + "ref": "", + "name": "SANEF CROIXRAULT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-26", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.470007, + 50.339582 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123183", + "ref": "", + "name": "SANEF LA SENTINELLE EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.470007, + 50.339582 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123186", + "ref": "", + "name": "SANEF LA SENTINELLE EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.470007, + 50.339582 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123185", + "ref": "", + "name": "SANEF LA SENTINELLE EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.470007, + 50.339582 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123185", + "ref": "", + "name": "SANEF LA SENTINELLE EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.470007, + 50.339582 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123184", + "ref": "", + "name": "SANEF LA SENTINELLE EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.470007, + 50.339582 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123184", + "ref": "", + "name": "SANEF LA SENTINELLE EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.470007, + 50.339582 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118152", + "ref": "", + "name": "SANEF LA SENTINELLE EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.470007, + 50.339582 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118152", + "ref": "", + "name": "SANEF LA SENTINELLE EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.470007, + 50.339582 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118152", + "ref": "", + "name": "SANEF LA SENTINELLE EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.470007, + 50.339582 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123183", + "ref": "", + "name": "SANEF LA SENTINELLE EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.470007, + 50.339582 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123182", + "ref": "", + "name": "SANEF LA SENTINELLE EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.470007, + 50.339582 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123182", + "ref": "", + "name": "SANEF LA SENTINELLE EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.470007, + 50.339582 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123181", + "ref": "", + "name": "SANEF LA SENTINELLE EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.470007, + 50.339582 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123181", + "ref": "", + "name": "SANEF LA SENTINELLE EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.96862, + 49.807764 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118136", + "ref": "", + "name": "SANEF CROIXRAULT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-26", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.96862, + 49.807764 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118122", + "ref": "", + "name": "SANEF CROIXRAULT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-26", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.96862, + 49.807764 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118122", + "ref": "", + "name": "SANEF CROIXRAULT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-26", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.96862, + 49.807764 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118122", + "ref": "", + "name": "SANEF CROIXRAULT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-26", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.470007, + 50.339582 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123186", + "ref": "", + "name": "SANEF LA SENTINELLE EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.685392965881789, + 48.87564000155572 + ] + }, + "properties": { + "operator": "GROUPE LGE", + "owner:ref:FR:SIREN": "799415070", + "email": "cindyt@groupelge.com", + "phone": "0612105307", + "network": "AUTOPLUG", + "ref:EU:EVSE": "Non concerné", + "ref": "cc1d2e0e-7a9b-45b5-9b5b-de5e07ec5ff8", + "name": "ALC CAR", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8847469775400896, + 48.93616199443869 + ] + }, + "properties": { + "operator": "GROUPE LGE SOCIETE AUTOPLUG", + "owner:ref:FR:SIREN": "499954717", + "email": "cindyt@groupelge.com", + "phone": "0612105307", + "network": "AUTOPLUG", + "ref:EU:EVSE": "Non concerné", + "ref": "265ba845-35e1-475e-a964-2dac31b42cd9", + "name": "NANTEUIL", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6813519665418823, + 48.872472019341075 + ] + }, + "properties": { + "operator": "GROUPE LGE SOCIETE AUTOPLUG", + "owner:ref:FR:SIREN": "393755962", + "email": "cindyt@groupelge.com", + "phone": "0612105307", + "network": "AUTOPLUG", + "ref:EU:EVSE": "Non concerné", + "ref": "f9bed002-5bbd-44d6-aaaf-7673a109fc32", + "name": "LAGNY", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2022-09-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.812952, + 50.934908 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000098822", + "ref": "", + "name": "EUROTUNNEL CHARLES DICKENS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.811912, + 50.928405 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000085383", + "ref": "", + "name": "EUROTUNNEL FLEXIPLUS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.811912, + 50.928405 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000085383", + "ref": "", + "name": "EUROTUNNEL FLEXIPLUS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.812952, + 50.934908 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000098824", + "ref": "", + "name": "EUROTUNNEL CHARLES DICKENS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.812952, + 50.934908 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000098824", + "ref": "", + "name": "EUROTUNNEL CHARLES DICKENS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.812952, + 50.934908 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000098823", + "ref": "", + "name": "EUROTUNNEL CHARLES DICKENS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.812952, + 50.934908 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000098823", + "ref": "", + "name": "EUROTUNNEL CHARLES DICKENS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.811912, + 50.928405 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000098825", + "ref": "", + "name": "EUROTUNNEL FLEXIPLUS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.812952, + 50.934908 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000098822", + "ref": "", + "name": "EUROTUNNEL CHARLES DICKENS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.811912, + 50.928405 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000085383", + "ref": "", + "name": "EUROTUNNEL FLEXIPLUS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.811912, + 50.928405 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000098825", + "ref": "", + "name": "EUROTUNNEL FLEXIPLUS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.812952, + 50.934908 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000098821", + "ref": "", + "name": "EUROTUNNEL CHARLES DICKENS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.812952, + 50.934908 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000081540", + "ref": "", + "name": "EUROTUNNEL CHARLES DICKENS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.812952, + 50.934908 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000081540", + "ref": "", + "name": "EUROTUNNEL CHARLES DICKENS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.812952, + 50.934908 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000081540", + "ref": "", + "name": "EUROTUNNEL CHARLES DICKENS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.812952, + 50.934908 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000098821", + "ref": "", + "name": "EUROTUNNEL CHARLES DICKENS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5960162, + 50.5265072 + ] + }, + "properties": { + "operator": "non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "0361626161", + "network": "le grand hotel", + "ref:EU:EVSE": "Non concerné", + "ref": "2111dee4-6034-47b2-a314-6222f7b003ee", + "name": "le grand hotel", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "true", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2022-12-22", + "socket:type2_cable": "0" + } + }, { "type": "Feature", "geometry": { @@ -4761,6 +932553,16258 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1227209, + 50.9879353 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "0361626161", + "network": "GARAGE RABAT", + "ref:EU:EVSE": "Non concerné", + "ref": "9a04b6ff-ebb9-4858-8ae3-bfcbd63f2775", + "name": "GARAGE RABAT", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-26", + "note": "", + "source:date": "2022-10-26", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32, + 48.92 + ] + }, + "properties": { + "operator": "SCI OLYMPE", + "owner:ref:FR:SIREN": "844817650", + "email": "eabdi@balas.net", + "phone": "0149454545", + "network": "SCI olympe", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "SCI olympe", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Rechange disponible uniquement durant les heures d'ouverture du site", + "source:date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1169209, + 45.6281317 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "909177297", + "email": "e.barre@maborneauto.com", + "phone": "0361626161", + "network": "AUTO SERVICE PLUS", + "ref:EU:EVSE": "Non concerné", + "ref": "4227d79c-7a5a-4ca1-8853-486d8a91c665", + "name": "AUTO SERVICE PLUS", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2022-12-22", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123211", + "ref": "", + "name": "APRR DOLE ROMANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118072", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123210", + "ref": "", + "name": "APRR DOLE ROMANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123211", + "ref": "", + "name": "APRR DOLE AUDELANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123211", + "ref": "", + "name": "APRR DOLE AUDELANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123210", + "ref": "", + "name": "APRR DOLE AUDELANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123210", + "ref": "", + "name": "APRR DOLE AUDELANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120538", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120538", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118080", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118080", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120547", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118072", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118077", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118077", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118075", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118075", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118074", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118074", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123210", + "ref": "", + "name": "APRR DOLE ROMANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118088", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123211", + "ref": "", + "name": "APRR DOLE ROMANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-02", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120539", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118079", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123118", + "ref": "", + "name": "APRR LA FORET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123118", + "ref": "", + "name": "APRR LA FORET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123117", + "ref": "", + "name": "APRR LA FORET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123117", + "ref": "", + "name": "APRR LA FORET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123116", + "ref": "", + "name": "APRR LA FORET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123116", + "ref": "", + "name": "APRR LA FORET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123115", + "ref": "", + "name": "APRR LA FORET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123115", + "ref": "", + "name": "APRR LA FORET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118088", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118087", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118087", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118082", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118082", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118085", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118085", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120539", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120547", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118086", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118079", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118089", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118092", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118092", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118096", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118096", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120540", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120540", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118090", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118090", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118089", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118078", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118086", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118084", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118084", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118083", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118083", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118081", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118081", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118103", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118094", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118094", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118098", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118098", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118078", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118076", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118076", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118073", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118073", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118071", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118071", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123114", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123114", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123113", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123113", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123112", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123112", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120541", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120541", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118101", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118101", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118103", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120545", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118104", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120542", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118141", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118141", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP10001180102", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118102", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118100", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118100", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118099", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118099", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118097", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118097", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118095", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118095", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118093", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118093", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118091", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118091", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123200", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123200", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123199", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123199", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123198", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123198", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123197", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120542", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123134", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123196", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123134", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118104", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124076", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124076", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124077", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124077", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124078", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124078", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124103", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124103", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123082", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123082", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123083", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123084", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123084", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123085", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123085", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123108", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123108", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123109", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123109", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120535", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124071", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124071", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123197", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123083", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123196", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120550", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120535", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122963", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122963", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122962", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122962", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122961", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122961", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122960", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122960", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122958", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122958", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122957", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122957", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120546", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120546", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118108", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118107", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118107", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118106", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118106", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118105", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120543", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118105", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120545", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118108", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120550", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123102", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499019, + 47.978019 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123195", + "ref": "", + "name": "APRR MONTIGNY LE ROI", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123097", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120543", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499019, + 47.978019 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123195", + "ref": "", + "name": "APRR MONTIGNY LE ROI", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499019, + 47.978019 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123194", + "ref": "", + "name": "APRR MONTIGNY LE ROI", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499019, + 47.978019 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123193", + "ref": "", + "name": "APRR MONTIGNY LE ROI", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499019, + 47.978019 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123193", + "ref": "", + "name": "APRR MONTIGNY LE ROI", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123111", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123111", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123103", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123103", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499019, + 47.978019 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123194", + "ref": "", + "name": "APRR MONTIGNY LE ROI", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123098", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123100", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123102", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123097", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123098", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123099", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123099", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123100", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123101", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123101", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123211", + "ref": "", + "name": "APRR DOLE ROMANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-02", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120539", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123211", + "ref": "", + "name": "APRR DOLE ROMANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-02", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120538", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120538", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118080", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118080", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118077", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120547", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118077", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118075", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118075", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118074", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118074", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118072", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.959138, + 48.057404 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118072", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES PL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118085", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120547", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120539", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123116", + "ref": "", + "name": "APRR LA FORET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118085", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118082", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118104", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118079", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118104", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118103", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118103", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123118", + "ref": "", + "name": "APRR LA FORET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123118", + "ref": "", + "name": "APRR LA FORET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123117", + "ref": "", + "name": "APRR LA FORET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123117", + "ref": "", + "name": "APRR LA FORET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123116", + "ref": "", + "name": "APRR LA FORET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123115", + "ref": "", + "name": "APRR LA FORET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123115", + "ref": "", + "name": "APRR LA FORET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118088", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118088", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118087", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118087", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635365, + 48.610633 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118082", + "ref": "", + "name": "APRR GALANDE LA MARE LAROCHE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118079", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118096", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118078", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118078", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118092", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118096", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120540", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120540", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118090", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118090", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118089", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118089", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118086", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118086", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118084", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118084", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118083", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118083", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118081", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574611, + 48.361796 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118081", + "ref": "", + "name": "APRR ACHERES EST", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118105", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118092", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118094", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118094", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123113", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118076", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118076", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118073", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118073", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118071", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123114", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123114", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123113", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118098", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123112", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123112", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120541", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120541", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118101", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118101", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118098", + "ref": "", + "name": "APRR BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118105", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960539, + 48.05761 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118071", + "ref": "", + "name": "APRR CHATEAUVILLAIN ORGES LP", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118106", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118097", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120542", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120542", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118141", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118141", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP10001180102", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118102", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118100", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118100", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118099", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118099", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118097", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123134", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118095", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118095", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118093", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118093", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118091", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.672802, + 47.789103 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118091", + "ref": "", + "name": "APRR VENOY SOLEIL LEVANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123200", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123200", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123199", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123199", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123134", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124071", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123198", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123084", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118106", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120535", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120535", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123109", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123109", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123108", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123108", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123085", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123085", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123084", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123083", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124071", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123083", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123082", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.555524, + 48.247318 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123082", + "ref": "", + "name": "APRR VILLENEUF VAL LUISANT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124103", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124103", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124078", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124077", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124077", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124076", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124076", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123198", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.554402, + 48.243165 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000124078", + "ref": "", + "name": "APRR VILLENEUF L'ARCHEVEQUE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123197", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122960", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120550", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120550", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120545", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120545", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122963", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122963", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122962", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122962", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122961", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122961", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122958", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123097", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122958", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122957", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122957", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120546", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120546", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118108", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118108", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118107", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123197", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.800069, + 46.356078 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118107", + "ref": "", + "name": "APRR L'ALLIER DOYET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123097", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.801309, + 46.355503 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000122960", + "ref": "", + "name": "APRR L'ALLIER SAULZET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123098", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123101", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123102", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123103", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123103", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123111", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499019, + 47.978019 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123193", + "ref": "", + "name": "APRR MONTIGNY LE ROI", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499019, + 47.978019 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123193", + "ref": "", + "name": "APRR MONTIGNY LE ROI", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499019, + 47.978019 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123194", + "ref": "", + "name": "APRR MONTIGNY LE ROI", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499019, + 47.978019 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123194", + "ref": "", + "name": "APRR MONTIGNY LE ROI", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499019, + 47.978019 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123195", + "ref": "", + "name": "APRR MONTIGNY LE ROI", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.499019, + 47.978019 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123195", + "ref": "", + "name": "APRR MONTIGNY LE ROI", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120543", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120543", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123098", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123196", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.497669, + 47.974269 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123196", + "ref": "", + "name": "APRR MONTIGNY VAL DE MEUSE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-16", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123102", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123111", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123100", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123100", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123099", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123101", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071399, + 45.845094 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000123099", + "ref": "", + "name": "APRR LYON MONTLUEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000134507", + "ref": "", + "name": "APRR DOLE AUDELANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000134506", + "ref": "", + "name": "APRR DOLE AUDELANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000134509", + "ref": "", + "name": "APRR DOLE AUDELANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000134509", + "ref": "", + "name": "APRR DOLE AUDELANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000134508", + "ref": "", + "name": "APRR DOLE AUDELANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000134508", + "ref": "", + "name": "APRR DOLE AUDELANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000138144", + "ref": "", + "name": "APRR DOLE AUDELANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-13", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000134507", + "ref": "", + "name": "APRR DOLE AUDELANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000138144", + "ref": "", + "name": "APRR DOLE AUDELANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-13", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000134506", + "ref": "", + "name": "APRR DOLE AUDELANGE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.751178, + 50.322857 + ] + }, + "properties": { + "operator": "EGE NOEL BERANGER", + "owner:ref:FR:SIREN": "692012552", + "email": "b.rochefort@noelberanger.fr", + "phone": "0491432450", + "network": "FULGURA", + "ref:EU:EVSE": "FRE10E11128", + "ref": "", + "name": "SECAB Bellignies", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-13", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.751178, + 50.322857 + ] + }, + "properties": { + "operator": "EGE NOEL BERANGER", + "owner:ref:FR:SIREN": "692012552", + "email": "b.rochefort@noelberanger.fr", + "phone": "0491432450", + "network": "FULGURA", + "ref:EU:EVSE": "FRE10E11128", + "ref": "", + "name": "SECAB Bellignies", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-13", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118123", + "ref": "", + "name": "SANEF BEUZEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118123", + "ref": "", + "name": "SANEF BEUZEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118123", + "ref": "", + "name": "SANEF BEUZEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000118143", + "ref": "", + "name": "SANEF BEUZEVILLE NORD", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3852, + 49.0802 + ] + }, + "properties": { + "operator": "2Ed Coutances", + "owner:ref:FR:SIREN": "512913518", + "email": "yannick@2ed.fr", + "phone": "0643099223", + "network": "2ED Coutances", + "ref:EU:EVSE": "Non concerné", + "ref": "339947f7-156f-4a43-8d99-11be0fcadc38", + "name": "2ED", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-20", + "note": "Charge disponible pendant les heures d'ouverture", + "source:date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.481704, + 43.691167 + ] + }, + "properties": { + "operator": "EGE NOEL BERANGER", + "owner:ref:FR:SIREN": "387523038", + "email": "b.rochefort@noelberanger.fr", + "phone": "0491432450", + "network": "FULGURA", + "ref:EU:EVSE": "FRE10E11128", + "ref": "", + "name": "Camille Ferrat Pertuis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-03", + "note": "", + "source:date": "2023-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.481704, + 43.691167 + ] + }, + "properties": { + "operator": "EGE NOEL BERANGER", + "owner:ref:FR:SIREN": "387523038", + "email": "b.rochefort@noelberanger.fr", + "phone": "0491432450", + "network": "FULGURA", + "ref:EU:EVSE": "FRE10E11128", + "ref": "", + "name": "Camille Ferrat Pertuis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-03", + "note": "", + "source:date": "2023-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.50378, + 48.61529 + ] + }, + "properties": { + "operator": "Wedom", + "owner:ref:FR:SIREN": "834148611", + "email": "contact@wedom.io", + "phone": "0970266332", + "network": "Armonial", + "ref:EU:EVSE": "Non concerné", + "ref": "a9096453-eaa5-4678-a6bc-04dd8560dd64", + "name": "Parking Armonial", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-21", + "note": "Pendant les horraires d'ouverture de l'agence", + "source:date": "2023-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.33728, + 46.11 + ] + }, + "properties": { + "operator": "PAS DITINERANCE", + "owner:ref:FR:SIREN": "909790511", + "email": "PASDITINENERANCE@gmail.com", + "phone": "0612345678", + "network": "PAS DITINERANCE", + "ref:EU:EVSE": "FRLARESERVEDERILHAT", + "ref": "249d8e6d-f737-4dd8-b92f-1c26a2fd251b", + "name": "LA RESERVE DE RILHAT", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0767992, + 44.3455705 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "909177297", + "email": "a.tarridec@mabornauto.com", + "phone": "0361626161", + "network": "TRISCOS AUTOMOBILES", + "ref:EU:EVSE": "Non concerné", + "ref": "ab39a848-e59f-47b2-9ad1-1dd3e94d3fa7", + "name": "TRISCOS AUTOMOBILES", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-26", + "note": "", + "source:date": "2022-07-26", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3759709, + 51.0192287 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "0361626161", + "network": "vandenbussche", + "ref:EU:EVSE": "Non concerné", + "ref": "2480517a-cc7d-44d3-82ec-15b467c1c91d", + "name": "vandenbussche", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-01-11", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986205, + 44.140487 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMERHONEAVACQUEYRAS11", + "ref": "8b6cd60c-7039-4767-a614-4bde137d5e1b", + "name": "Rhonéa Vacqueyras", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-06", + "note": "DISPONIBLE 24/7", + "source:date": "2023-03-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.042501, + 49.138351 + ] + }, + "properties": { + "operator": "GEDIBOIS BATI COLMAN", + "owner:ref:FR:SIREN": "817537236", + "email": "commercial@bati-colman.fr", + "phone": "0387956778", + "network": "GEDIBOIS BATI COLMAN", + "ref:EU:EVSE": "Non concerné", + "ref": "88ef85e9-de48-4f6d-ba13-85556123f161", + "name": "GEDIBOIS BATI COLMAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-04", + "note": "", + "source:date": "2023-01-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0802139, + 44.5179413 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEAUBERGEESCARGOTDOR11", + "ref": "a50a57d0-be6b-11ed-afa1-0242ac120002", + "name": "Auberge de l'escargot d'or", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-09", + "note": "24/7", + "source:date": "2023-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4457879, + 44.5894889 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEPERSEDES11", + "ref": "acc38e38-be6b-11ed-afa1-0242ac120002", + "name": "Hôtel des Persèdes ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-09", + "note": "24/7", + "source:date": "2023-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.050015999999999, + 44.04692499999999 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEMALIJAI571", + "ref": "ad76910e-be6b-11ed-afa1-0242ac120002", + "name": "LUMI'iN MALIJAI ", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-09", + "note": "24/7", + "source:date": "2023-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.432877, + 48.179861 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109303", + "ref": "", + "name": "CA EPINAL ZAC REFFYE 2", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.307515, + 48.175353 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000115805", + "ref": "", + "name": "CA EPINAL STADE TRUZEY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.368293, + 48.189981 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120809", + "ref": "", + "name": "CA EPINAL STADE PRETOT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.368293, + 48.189981 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120809", + "ref": "", + "name": "CA EPINAL STADE PRETOT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.429412, + 48.253061 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109302", + "ref": "", + "name": "CA EPINAL PISCINE LEDERLIN", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-03", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.429412, + 48.253061 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109302", + "ref": "", + "name": "CA EPINAL PISCINE LEDERLIN", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-03", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.39751, + 48.046967 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109295", + "ref": "", + "name": "CA EPINAL LES WOODIES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-03", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.39751, + 48.046967 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109295", + "ref": "", + "name": "CA EPINAL LES WOODIES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-03", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.352215, + 48.167175 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000115806", + "ref": "", + "name": "CA EPINAL CHAMOUSEY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.352215, + 48.167175 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000115806", + "ref": "", + "name": "CA EPINAL CHAMOUSEY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.432877, + 48.179861 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109303", + "ref": "", + "name": "CA EPINAL ZAC REFFYE 2", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.434328, + 48.229258 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000115804", + "ref": "", + "name": "CA EPINAL CHAVELOT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.432864, + 48.181061 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000115803", + "ref": "", + "name": "CA EPINAL ZAC REFFYE 1", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.432864, + 48.181061 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000115803", + "ref": "", + "name": "CA EPINAL ZAC REFFYE 1", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.460145, + 48.198666 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000115801", + "ref": "", + "name": "CA EPINAL HOTEL INNOVATION BOIS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.460145, + 48.198666 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000115801", + "ref": "", + "name": "CA EPINAL HOTEL INNOVATION BOIS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.459867, + 48.19329 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109298", + "ref": "", + "name": "CA EPINAL PISCINE OLYMPIQUE 2", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.459867, + 48.19329 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109298", + "ref": "", + "name": "CA EPINAL PISCINE OLYMPIQUE 2", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.461456, + 48.192654 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109297", + "ref": "", + "name": "CA EPINAL PISCINE OLYMPIQUE 1", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.461456, + 48.192654 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109297", + "ref": "", + "name": "CA EPINAL PISCINE OLYMPIQUE 1", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.434328, + 48.229258 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000115804", + "ref": "", + "name": "CA EPINAL CHAVELOT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.307515, + 48.175353 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000115805", + "ref": "", + "name": "CA EPINAL STADE TRUZEY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.305172, + 48.161522 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109304", + "ref": "", + "name": "CA EPINAL ZA LES MITROCHES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.434275, + 48.204642 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120843", + "ref": "", + "name": "CA EPINAL ZA JEANNE d'ARC GOLBEY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.467504, + 48.19942 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000115802", + "ref": "", + "name": "CA EPINAL ZA JEANNE d'ARC GOLBEY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.467504, + 48.19942 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000115802", + "ref": "", + "name": "CA EPINAL ZA JEANNE d'ARC GOLBEY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.398973, + 48.256221 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120838", + "ref": "", + "name": "CA EPINAL ZA JEANNE d'ARC GOLBEY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.305172, + 48.161522 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109304", + "ref": "", + "name": "CA EPINAL ZA LES MITROCHES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-06", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.303181, + 48.360695 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120836", + "ref": "", + "name": "CA EPINAL ZA JEANNE d'ARC GOLBEY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.303181, + 48.360695 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120836", + "ref": "", + "name": "CA EPINAL ZA JEANNE d'ARC GOLBEY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.352215, + 48.167175 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000115806", + "ref": "", + "name": "CA EPINAL ZA JEANNE d'ARC GOLBEY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.352215, + 48.167175 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000115806", + "ref": "", + "name": "CA EPINAL ZA JEANNE d'ARC GOLBEY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.398973, + 48.256221 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120838", + "ref": "", + "name": "CA EPINAL ZA JEANNE d'ARC GOLBEY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.434275, + 48.204642 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120843", + "ref": "", + "name": "CA EPINAL ZA JEANNE d'ARC GOLBEY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.43045, + 48.190584 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109300", + "ref": "", + "name": "CA EPINAL PISCINE GOLBEY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.44083, + 48.169844 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109301", + "ref": "", + "name": "CA EPINAL CHANTRAINE MAIRIE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.44083, + 48.169844 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109301", + "ref": "", + "name": "CA EPINAL CHANTRAINE MAIRIE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.43536, + 48.172168 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000115800", + "ref": "", + "name": "CA EPINAL CHANTRAINE EGLISE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.43536, + 48.172168 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000115800", + "ref": "", + "name": "CA EPINAL CHANTRAINE EGLISE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.43045, + 48.190584 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109300", + "ref": "", + "name": "CA EPINAL PISCINE GOLBEY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-24", + "note": "", + "source:date": "2023-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.378322, + 48.250729 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073370", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6007", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120841", + "ref": "", + "name": "CA EPINAL Mairie d'Oncourt", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.40705, + 48.254178 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073366", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6003", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120840", + "ref": "", + "name": "CA EPINAL ZA Innova 3000 2", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.291893, + 48.369538 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073367", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6004", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109296", + "ref": "", + "name": "CA EPINAL Parc de la Peupleraie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-26", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.291893, + 48.369538 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073368", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6005", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000109296", + "ref": "", + "name": "CA EPINAL Parc de la Peupleraie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-26", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.378322, + 48.250729 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073369", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6006", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120841", + "ref": "", + "name": "CA EPINAL Mairie d'Oncourt", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.40705, + 48.254178 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073365", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6002", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120840", + "ref": "", + "name": "CA EPINAL ZA Innova 3000 2", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.263997, + 48.002212 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073371", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6008", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120574", + "ref": "", + "name": "CA EPINAL Médiathèque", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.263997, + 48.002212 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073372", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6009", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120574", + "ref": "", + "name": "CA EPINAL Médiathèque", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-01", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.466535, + 48.197235 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073364", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6001", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120572", + "ref": "", + "name": "CA EPINAL ZA Le Saut le Cerf 1", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.466535, + 48.197235 + ] + }, + "properties": { + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "ref:EU:EVSE": "FRLMSP1000120572", + "ref": "", + "name": "CA EPINAL ZA Le Saut le Cerf 1", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6292594023148577, + 48.097034066785476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "818110629", + "email": "exploitation@freshmile.com", + "phone": "", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1EHYAP", + "ref": "", + "name": "Pandora", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6292594023148577, + 48.097034066785476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "818110629", + "email": "exploitation@freshmile.com", + "phone": "", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1EHYAP", + "ref": "", + "name": "Pandora", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6292594023148577, + 48.097034066785476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "818110629", + "email": "exploitation@freshmile.com", + "phone": "", + "network": "Freshmile", + "ref:EU:EVSE": "FRFR1EHYAP", + "ref": "", + "name": "Pandora", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-30", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6969447, + 46.1869392 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEHOTELGRANDVINS11", + "ref": "1c56aaca-a92f-11ed-afa1-0242ac120002", + "name": "Hotel des grand Vins", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-24", + "note": "24/7", + "source:date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2503986, + 43.4706838 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMESERJAC11", + "ref": "6cf8b432-a92a-11ed-afa1-0242ac120002", + "name": "CHATEAU ST PIERRE DE SERJAC", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "24/7", + "source:date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9881828, + 44.2251248 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMERHONEARASTEAU11", + "ref": "48baf7c6-a92d-11ed-afa1-0242ac120002", + "name": "Rhonéa - Boutique de Rasteau ", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-18", + "note": "24/7", + "source:date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2503986, + 43.4706838 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMESERJAC51", + "ref": "5a8bb060-a92a-11ed-afa1-0242ac120002", + "name": "CHATEAU ST PIERRE DE SERJAC ", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "24/7", + "source:date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0631174, + 43.629227 + ] + }, + "properties": { + "operator": "EGE NOEL BERANGER", + "owner:ref:FR:SIREN": "402682991", + "email": "b.rochefort@noelberanger.fr", + "phone": "0491432450", + "network": "FULGURA", + "ref:EU:EVSE": "FRE10E14296", + "ref": "", + "name": "GAGNERAUD Salon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2023-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0631174, + 43.629227 + ] + }, + "properties": { + "operator": "EGE NOEL BERANGER", + "owner:ref:FR:SIREN": "402682991", + "email": "b.rochefort@noelberanger.fr", + "phone": "0491432450", + "network": "FULGURA", + "ref:EU:EVSE": "FRE10E14296", + "ref": "", + "name": "GAGNERAUD Salon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2023-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61, + 44.2 + ] + }, + "properties": { + "operator": "Securecharge", + "owner:ref:FR:SIREN": "434651246", + "email": "contact@securecharge.fr", + "phone": "", + "network": "Securecharge", + "ref:EU:EVSE": "FRLMSP1000117556", + "ref": "Securecharge-CAALPA-CC-1", + "name": "Securecharge Credit Agricole Le Passage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-29", + "note": "", + "source:date": "2022-12-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8745895, + 43.088683 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEMAISONCONSULS11", + "ref": "1eb8e7b4-62ee-474b-acd4-b6023d6614fb", + "name": "HOTEL MAISON DES CONSULS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-24", + "note": "DISPONIBLE 24/7", + "source:date": "2023-01-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2038118, + 43.7679769 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEHOTELPROMOTEL11", + "ref": "", + "name": "de15341d-9257-4e3b-9db3-d4ce057c9c5c", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-03", + "note": "DISPONIBLE 24/7", + "source:date": "2022-01-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9140338999999997, + 43.47387800000001 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEBRITHOTELLODGEGOLF11", + "ref": "bf55ffa3-b3a6-47af-a385-1238518c4580", + "name": "BRIT HOTEL LE LODGE DU GOLF ", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-03", + "note": "DISPONIBLE 24/7", + "source:date": "2023-01-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5792, + 50.49925 + ] + }, + "properties": { + "operator": "ma borne auto", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "CRITTM2A", + "ref:EU:EVSE": "Non concerné", + "ref": "7b1f4366-78f9-42cd-9b13-1d38b33eca3c", + "name": "CRITTM2A", + "capacity": "11", + "socket:typee": "0", + "socket:type2": "true", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "", + "source:date": "2022-12-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.03, + 45.37 + ] + }, + "properties": { + "operator": "ALLENERGIES", + "owner:ref:FR:SIREN": "912904109", + "email": "contact@allenergies.fr", + "phone": "", + "network": "ALLENERGIES", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Brico Marché Revel Tourdan", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Paiement par carte de recharge", + "source:date": "2022-11-15", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.03, + 45.37 + ] + }, + "properties": { + "operator": "ALLENERGIES", + "owner:ref:FR:SIREN": "912904109", + "email": "contact@allenergies.fr", + "phone": "", + "network": "ALLENERGIES", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Brico Marché Revel Tourdan", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Paiement par carte de recharge", + "source:date": "2022-07-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88, + 46.3 + ] + }, + "properties": { + "operator": "ALLENERGIES", + "owner:ref:FR:SIREN": "912904109", + "email": "contact@allenergies.fr", + "phone": "", + "network": "ALLENERGIES", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Intermarché Replonges", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Paiement par carte de recharge", + "source:date": "2023-03-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88, + 46.3 + ] + }, + "properties": { + "operator": "ALLENERGIES", + "owner:ref:FR:SIREN": "912904109", + "email": "contact@allenergies.fr", + "phone": "", + "network": "ALLENERGIES", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Intermarché Replonges", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Paiement par carte de recharge", + "source:date": "2023-03-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88, + 46.3 + ] + }, + "properties": { + "operator": "ALLENERGIES", + "owner:ref:FR:SIREN": "912904109", + "email": "contact@allenergies.fr", + "phone": "", + "network": "ALLENERGIES", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Intermarché Replonges", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Paiement par carte de recharge", + "source:date": "2023-03-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88, + 46.3 + ] + }, + "properties": { + "operator": "ALLENERGIES", + "owner:ref:FR:SIREN": "912904109", + "email": "contact@allenergies.fr", + "phone": "", + "network": "ALLENERGIES", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Intermarché Replonges", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Paiement par carte de recharge", + "source:date": "2023-03-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48, + 47.45 + ] + }, + "properties": { + "operator": "SOLIDARAUTO 49", + "owner:ref:FR:SIREN": "522614148", + "email": "solidarauto49@orange.fr", + "phone": "02 41 35 10 50", + "network": "SOLIDARAUTO 49", + "ref:EU:EVSE": "Non concerné", + "ref": "ba8b6111-5958-436b-b596-5a0a9f36c47a", + "name": "SOLIDARAUTO 49", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-10", + "note": "Recharge disponible uniquement pendant les horaires d'ouverture. ", + "source:date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3853772952424, + 48.76078419282144 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "309553154", + "email": "garage.senia@scache.fr", + "phone": "", + "network": "GARAGE DE LA SENIA", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Parking Gatage de la Senia", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "0", + "socket:type2_combo": "1", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-01-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3853772952424, + 48.76078419282144 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "309553154", + "email": "garage.senia@scache.fr", + "phone": "", + "network": "GARAGE DE LA SENIA", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Parking Gatage de la Senia", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-01-16", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -4829,6 +948873,11328 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0905967, + 50.6938179 + ] + }, + "properties": { + "operator": "ma borne auto", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "NOR NUIT", + "ref:EU:EVSE": "Non concerné", + "ref": "fc161245-0854-4069-af37-e005493803bc", + "name": "NOR NUIT", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "true", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-16", + "note": "", + "source:date": "2022-11-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1233758, + 50.9897573 + ] + }, + "properties": { + "operator": "ma borne auto", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "restaurant l'eclusier", + "ref:EU:EVSE": "Non concerné", + "ref": "0684bfd6-beba-41c9-9971-a815e82ffaf2", + "name": "restaurant l'eclusier", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "true", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-06", + "note": "", + "source:date": "2022-12-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23322691163974948, + 43.17534289658668 + ] + }, + "properties": { + "operator": "AUTORECHARGE", + "owner:ref:FR:SIREN": "380363291", + "email": "contact@autorecharge.fr", + "phone": "0970755400", + "network": "Bricomarché Coarraze", + "ref:EU:EVSE": "FRAU1E0033021", + "ref": "6fc1f04e-b3a4-4002-b89f-9955d0a67474", + "name": "Bricomarché Coarraze", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Réservé PMR", + "start_date": "2022-09-12", + "note": "", + "source:date": "2023-01-18", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9745308, + 48.7955019 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "394623235", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "NIJKERK COMPUTER SOLUTIONS", + "ref:EU:EVSE": "FRZPEE22AC139319", + "ref": "139319", + "name": "Nijkerk Computer Solutions - Élancourt - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-09", + "note": "", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9745308, + 48.7955019 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "394623235", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "NIJKERK COMPUTER SOLUTIONS", + "ref:EU:EVSE": "FRZPEE22AC139322", + "ref": "139322", + "name": " Nijkerk Computer Solutions - Élancourt - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-09", + "note": "", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9745308, + 48.7955019 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "394623235", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "NIJKERK COMPUTER SOLUTIONS", + "ref:EU:EVSE": "FRZPEE22AC139321", + "ref": "139321", + "name": " Nijkerk Computer Solutions - Élancourt - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-09", + "note": "", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9745308, + 48.7955019 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "394623235", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "NIJKERK COMPUTER SOLUTIONS", + "ref:EU:EVSE": "FRZPEE22AC139320", + "ref": "139320", + "name": "Nijkerk Computer Solutions - Élancourt - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-09", + "note": "", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.315092, + 46.073619 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE748000031", + "ref": "", + "name": "Norauto 22kVA Borne 2", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Garage Norauto", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.081295, + 45.933736 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE743300011", + "ref": "", + "name": "KeyWest 22kVA Borne 1", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Restaurant Keywest", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.081096, + 45.933577 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE743300021", + "ref": "", + "name": "KeyWest 22kVA Borne 2", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Restaurant Keywest", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.080938, + 45.933958 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE743300031", + "ref": "", + "name": "KeyWest 2x22kVA Borne 3", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Restaurant Keywest", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.303039, + 46.07588 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE748000011", + "ref": "", + "name": "Euromaster 11kVA Borne 1", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Garage Euromaster", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.084506, + 45.934997 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE743300041", + "ref": "", + "name": "La Brasserie 22kVA Borne 1", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Restaurant La Brasserie Gourmande", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.084455, + 45.934924 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE743300051", + "ref": "", + "name": "La Brasserie 22kVA Borne 2", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Restaurant La Brasserie Gourmande", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78772, + 45.587334 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE386700021", + "ref": "", + "name": "IBIS 22kVA Borne 2", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Hotel IBIS", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.787973, + 45.58718 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE386700032", + "ref": "", + "name": "IBIS 2x22kVA Borne 3", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Hotel IBIS", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.964725, + 48.826976 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE783700021", + "ref": "", + "name": "Hippopotamus 22kVA Borne 2", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Restaurant Hippopotamus", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.315221, + 46.074003 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE748000021", + "ref": "", + "name": "Norauto 22kVA Borne 1", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Garage Norauto", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.964767, + 48.826624 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE783700011", + "ref": "", + "name": "Hippopotamus 22kVA Borne 1", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Restaurant Hippopotamus", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2446, + 46.2175 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE010000011", + "ref": "", + "name": "La Maison B 22kVA Borne 1", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Restaurant La Maison B", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.091524, + 45.892581 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE749600031", + "ref": "", + "name": "Leclerc Cran Gevrier 22KVA Borne 3", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Supermarché Leclerc Cran Gevrier", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2442, + 46.2175 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE010000021", + "ref": "", + "name": "La Maison B 22kVA Borne 2", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Restaurant La Maison B", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.091668, + 45.892442 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE749600051", + "ref": "", + "name": "Leclerc Cran Gevrier 22KVA Borne 5", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Supermarché Leclerc Cran Gevrier", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09154, + 45.892571 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE7496000244", + "ref": "", + "name": "Leclerc Cran Gevrier 2x22KVA Borne 4", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Supermarché Leclerc Cran Gevrier", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09201, + 45.89284 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE749600061", + "ref": "", + "name": "Leclerc Cran Gevrier 22KVA Borne 6", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Supermarché Leclerc Cran Gevrier", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09111, + 45.892516 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE7496000244", + "ref": "", + "name": "Leclerc Cran Gevrier 2x22KVA Borne 2", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Supermarché Leclerc Cran Gevrier", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.091181, + 45.892593 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE749600011", + "ref": "", + "name": "Leclerc Cran Gevrier 22KVA Borne 1", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Supermarché Leclerc Cran Gevrier", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.787825, + 45.587026 + ] + }, + "properties": { + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "ref:EU:EVSE": "FRE386700011", + "ref": "", + "name": "IBIS 22kVA Borne 1", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "Hotel IBIS", + "source:date": "2023-03-09", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.949088299999999, + 44.31341339999999 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMERHONEAVISAN11", + "ref": "3c380d96-a62a-11ed-afa1-0242ac120002", + "name": "RHONEA BOUTIQUE DE VISAN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "TRUE", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "24/7", + "source:date": "2023-02-06", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.863237199999999, + 42.68525149999999 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEFASTHOTELPERPIGNANSUD11", + "ref": "2460897a-a623-11ed-afa1-0242ac120002", + "name": "FAST HOTEL PERPIGNAN SUD", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "TRUE", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "24/7", + "source:date": "2023-02-06", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.370315499999999, + 43.421597 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMECABRIESGOLF11", + "ref": "5c0bb6f0-a629-11ed-afa1-0242ac120002", + "name": "CABRIES GOLF DEVELOPPEMENT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "FALSE", + "authentication:none": "true", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "24/7", + "source:date": "2023-02-06", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.802524000000001, + 43.81472400000001 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMELEPROVENCE11", + "ref": "5a7d2c7a-a628-11ed-afa1-0242ac120002", + "name": "LE PROVENCE ", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "TRUE", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "24/7", + "source:date": "2023-02-06", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.562731802998726, + 43.485743901157626 + ] + }, + "properties": { + "operator": "Electromaps", + "owner:ref:FR:SIREN": "410561666", + "email": "ismael@electromaps.com", + "phone": "34694495065", + "network": "Association des amis de Valmagne", + "ref:EU:EVSE": "FRE000022846774", + "ref": "50e103da-9bf1-11ed-a8fc-0242ac120002", + "name": "villeveyrac", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2023-02-01", + "note": "", + "source:date": "2023-01-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.32188977802357, + 4.909708809721746 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "500754130", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696901897", + "network": "MIDAS - 973", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E45628", + "name": "MIDAS", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-10", + "note": "", + "source:date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05, + 48.77 + ] + }, + "properties": { + "operator": "total énergie", + "owner:ref:FR:SIREN": "775688732", + "email": "service.pro@mail.totalenergies.fr", + "phone": "09 77 40 50 60", + "network": "enedis", + "ref:EU:EVSE": "FRA68P68021009", + "ref": "2f00b621-df9a-4f47-a16a-f6367c6f4ee1", + "name": "Voisins-le-bretonneux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-01", + "note": "", + "source:date": "2023-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4974859, + 51.0330233 + ] + }, + "properties": { + "operator": "ma borne auto", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "camping de la hoogue moote", + "ref:EU:EVSE": "Non concerné", + "ref": "618013fd-1c28-475a-b254-5d70df20d740", + "name": "camping de la hoogue moote", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "true", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "", + "source:date": "2022-12-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38219, + 45.45884 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "315708974", + "email": "estrade.huart@gmail.com", + "phone": "", + "network": "LABORATOIRE ESTRADE HUART", + "ref:EU:EVSE": "FRA42P1200020003", + "ref": "644a2d6e-ddca-11ed-b5ea-0242ac120002", + "name": "Saint Etienne, 94 rue Bergson", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.014027, + 44.12000449999999 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMERHONEABEAUMESVENISE11", + "ref": "0643f7d8-a22c-11ed-a8fc-0242ac120002", + "name": "rhoneaRHONEA BEAUMES DE VENISE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-05", + "note": "pendant les heures d'ouvertures", + "source:date": "2023-02-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.014027, + 44.12000449999999 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMERHONEABEAUMESVENISE11", + "ref": "d3cad87d-af23-4a6a-96a1-eed1a258dbf2", + "name": "rhonea RHONEA BEAUMES DE VENISE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-05", + "note": "DISPONIBLE PENDANT LES HEURES OUVERTURES", + "source:date": "2023-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4900939, + 51.0677071 + ] + }, + "properties": { + "operator": "non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "camping zuydcootebeach", + "ref:EU:EVSE": "Non concerné", + "ref": "21f11530-1df1-4e97-8874-fb621835cfb1", + "name": "camping zuydcootebeach", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-16", + "note": "", + "source:date": "2022-11-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3418004, + 51.0293366 + ] + }, + "properties": { + "operator": "non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "A.TARRIDEC@MABORNEAUTO.COM", + "phone": "0361626161", + "network": "SAS VANDENBUSSCHE", + "ref:EU:EVSE": "Non concerné", + "ref": "28370af1-4351-460c-b230-7244a31d0245", + "name": "SAS VANDENBUSSCHE st pol ", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "true", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2022-12-22", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4069522, + 51.0421206 + ] + }, + "properties": { + "operator": "non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "A.TARRIDEC@MABORNEAUTO.COM", + "phone": "0361626161", + "network": "SAS VANDENBUSSCHE", + "ref:EU:EVSE": "Non concerné", + "ref": "347f5151-9688-4f3c-9509-90c282501fab", + "name": "SAS VANDENBUSSCHE DUNKERQUE", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "true", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-19", + "note": "", + "source:date": "2022-12-19", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4307419, + 50.9694554 + ] + }, + "properties": { + "operator": "NON CONCERNE", + "owner:ref:FR:SIREN": "880217922", + "email": "A.TARRIDEC@MABORNEAUTO.COM", + "phone": "0361626161", + "network": "HOTEL AU TONNELIER", + "ref:EU:EVSE": "Non concerné", + "ref": "667c7cce-8908-4fd5-8a2a-b02cae20e4e8", + "name": "HOTEL AU TONNELIER", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-15", + "note": "", + "source:date": "2022-11-15", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.02, + 46.87 + ] + }, + "properties": { + "operator": "GABORIT BOCAGE SERVICES", + "owner:ref:FR:SIREN": "819501768", + "email": "flavien.gaborit@o2.fr", + "phone": "0243720202", + "network": "Réseau de recharge Gaborit", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*MAP*P000000007038", + "name": "LES HERBIERS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-15", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.02, + 46.87 + ] + }, + "properties": { + "operator": "GABORIT BOCAGE SERVICES", + "owner:ref:FR:SIREN": "819501768", + "email": "flavien.gaborit@o2.fr", + "phone": "0243720202", + "network": "Réseau de recharge Gaborit", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*MAP*P000000007038", + "name": "LES HERBIERS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-15", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6451248, + 48.2690475 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMECHAUMIERE11", + "ref": "30893f16-8cc1-4c38-ac64-f258d2f9bdd1", + "name": "HOSTELLERIE LA CHAUMIERE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "DISPONIBLE 24/7", + "source:date": "2023-02-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.390097, + 48.27955 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "317804144", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda CHATENOIS - GARAGE WALTER", + "ref:EU:EVSE": "FRZMAE22AC50650", + "ref": "50650", + "name": "Mazda - Chatenois - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-05", + "note": "", + "source:date": "2021-01-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.390097, + 48.27955 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "317804144", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda CHATENOIS - GARAGE WALTER", + "ref:EU:EVSE": "FRZMAE22AC50637", + "ref": "50637", + "name": "Mazda - Chatenois - 22kW AC ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-05", + "note": "", + "source:date": "2021-01-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.992544651031494, + 44.077613830566406 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "807940069", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "STATION LUMIIN", + "ref:EU:EVSE": "FRC2P000101", + "ref": "", + "name": "STATION LUMIIN", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-07", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.47906106710434, + 44.22049963493783 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "798043659", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LES AMARINES", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002101", + "name": "CAMPING LES AMARINES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-15", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3159294128418, + -20.949535369873047 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001601", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3159294128418, + -20.949535369873047 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.47906106710434, + 44.22049963493783 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "798043659", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LES AMARINES", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002101", + "name": "CAMPING LES AMARINES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-15", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002503", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9736927577629495, + 44.33852129529498 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "539500546", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LE PLO", + "ref:EU:EVSE": "FRC2P002201", + "ref": "", + "name": "CAMPING LE PLO", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-12-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.2785984, + 41.5930127 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "340119411", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL LE TILBURY", + "ref:EU:EVSE": "FRC2P002401", + "ref": "", + "name": "HOTEL LE TILBURY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-16", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-02-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3790712356567383, + 43.000159063034566 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "793042086", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LA BOURIE", + "ref:EU:EVSE": "FRC2P002801", + "ref": "", + "name": "CAMPING LA BOURIE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002501", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000407", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.017630100250244, + 44.10531997680664 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "324577816", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING Sunêlia l-Hippocampe", + "ref:EU:EVSE": "FRC2P001201", + "ref": "", + "name": "CAMPING Sunêlia l-Hippocampe", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-28", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000402", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000407", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000406", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000406", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000405", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000405", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000403", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002505", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000401", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.278209770098333, + 43.52534026251893 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "451611909", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CHATEAU MENTONE", + "ref:EU:EVSE": "FRC2P001101", + "ref": "", + "name": "CHATEAU MENTONE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-10", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.278209770098333, + 43.52534026251893 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "451611909", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CHATEAU MENTONE", + "ref:EU:EVSE": "FRC2P001101", + "ref": "", + "name": "CHATEAU MENTONE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-10", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.683051586151123, + 48.59249496459961 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402143747", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SUN DEVELOPPEMENT", + "ref:EU:EVSE": "FRC2P000501", + "ref": "", + "name": "SUN DEVELOPPEMENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-10", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.683051586151123, + 48.59249496459961 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402143747", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SUN DEVELOPPEMENT", + "ref:EU:EVSE": "FRC2P000501", + "ref": "", + "name": "SUN DEVELOPPEMENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-10", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.926622543415475, + 45.745946211701884 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "448848283", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "STATION CIEL", + "ref:EU:EVSE": "FRC2P000301", + "ref": "", + "name": "STATION CIEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-10", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002504", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002502", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002506", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref:EU:EVSE": "FRC2P003401", + "ref": "FRC2P003401", + "name": "CARREFOUR AJACCIO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.833339258860764, + 48.119479307086486 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "521528141", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING AUBERGE LA STENIOLE", + "ref:EU:EVSE": "FRC2P004002", + "ref": "FRC2P004002", + "name": "CAMPING AUBERGE LA STENIOLE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-30", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.833339258860764, + 48.119479307086486 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "521528141", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING AUBERGE LA STENIOLE", + "ref:EU:EVSE": "FRC2P004001", + "ref": "FRC2P004001", + "name": "CAMPING AUBERGE LA STENIOLE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-30", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.632329940795898, + 43.463932037353516 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "898839386", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL FORMULE 1", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002601", + "name": "HOTEL FORMULE 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-21", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0321381, + 42.5615661 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "324079086", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LES MARSOUINS", + "ref:EU:EVSE": "FRC2P003801", + "ref": "FRC2P003801", + "name": "CAMPING LES MARSOUINS", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-28", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.184235618402654, + 48.69547087754244 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "517676805", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "L'Hôtel Particulier", + "ref:EU:EVSE": "FRC2P003702", + "ref": "FRC2P003702", + "name": "L'HOTEL PARTICULIER NANCY", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-04", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.184235618402654, + 48.69547087754244 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "517676805", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "L'Hôtel Particulier", + "ref:EU:EVSE": "FRC2P003701", + "ref": "FRC2P003701", + "name": "L'HOTEL PARTICULIER NANCY", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-04", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref:EU:EVSE": "FRC2P003403", + "ref": "FRC2P003403", + "name": "CARREFOUR AJACCIO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref:EU:EVSE": "FRC2P003403", + "ref": "FRC2P003403", + "name": "CARREFOUR AJACCIO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref:EU:EVSE": "FRC2P003402", + "ref": "FRC2P003402", + "name": "CARREFOUR AJACCIO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref:EU:EVSE": "FRC2P003402", + "ref": "FRC2P003402", + "name": "CARREFOUR AJACCIO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref:EU:EVSE": "FRC2P003401", + "ref": "FRC2P003401", + "name": "CARREFOUR AJACCIO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0321381, + 42.5615661 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "324079086", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LES MARSOUINS", + "ref:EU:EVSE": "FRC2P003802", + "ref": "FRC2P003802", + "name": "CAMPING LES MARSOUINS", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-28", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.844548, + 48.198965 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "797742442", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING PORTE DES VOSGES", + "ref:EU:EVSE": "FRC2P003602", + "ref": "FRC2P003602", + "name": "CAMPING PORTE DES VOSGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-21", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.130048315345508, + 44.46056813187505 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "896750254", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "LA RIVE CIELA VILLAGE", + "ref:EU:EVSE": "FRC2P003201", + "ref": "FRC2P003201", + "name": "LA RIVE CIELA VILLAGE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.844548, + 48.198965 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "797742442", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING PORTE DES VOSGES", + "ref:EU:EVSE": "FRC2P003602", + "ref": "FRC2P003602", + "name": "CAMPING PORTE DES VOSGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-21", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.615694, + 42.9937786 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "829959089", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL ORIGINALS ACCESS", + "ref:EU:EVSE": "FRC2P003001", + "ref": "", + "name": "HOTEL ORIGINALS ACCESS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-15", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.615694, + 42.9937786 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "829959089", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL ORIGINALS ACCESS", + "ref:EU:EVSE": "FRC2P003001", + "ref": "", + "name": "HOTEL ORIGINALS ACCESS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-15", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4648423, + 48.95141080000001 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "750327231", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "MINOTTI-TRANS", + "ref:EU:EVSE": "FRC2P002901", + "ref": "FRC2P002901", + "name": "MINOTTI-TRANS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-08", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.632329940795898, + 43.463932037353516 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "898839386", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL FORMULE 1", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002601", + "name": "HOTEL FORMULE 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-21", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.130048315345508, + 44.46056813187505 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "896750254", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "LA RIVE CIELA VILLAGE", + "ref:EU:EVSE": "FRC2P003202", + "ref": "FRC2P003202", + "name": "LA RIVE CIELA VILLAGE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.076252915345508, + 43.7342593961128 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "422848515", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "LA FARIGOULETTE CIEL A VILLAGE", + "ref:EU:EVSE": "FRC2P003501", + "ref": "FRC2P003501", + "name": "LA FARIGOULETTE CIEL A VILLAGE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-21", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.076252915345508, + 43.7342593961128 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "422848515", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "LA FARIGOULETTE CIEL A VILLAGE", + "ref:EU:EVSE": "FRC2P003502", + "ref": "FRC2P003502", + "name": "LA FARIGOULETTE CIEL A VILLAGE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-21", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.844548, + 48.198965 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "797742442", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING PORTE DES VOSGES", + "ref:EU:EVSE": "FRC2P003601", + "ref": "FRC2P003601", + "name": "CAMPING PORTE DES VOSGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-21", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.844548, + 48.198965 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "797742442", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING PORTE DES VOSGES", + "ref:EU:EVSE": "FRC2P003601", + "ref": "FRC2P003601", + "name": "CAMPING PORTE DES VOSGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-21", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.844548, + 48.198965 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "797742442", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING PORTE DES VOSGES", + "ref:EU:EVSE": "FRC2P003602", + "ref": "FRC2P003602", + "name": "CAMPING PORTE DES VOSGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-21", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0321381, + 42.5615661 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "324079086", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LES MARSOUINS", + "ref:EU:EVSE": "FRC2P003801", + "ref": "FRC2P003801", + "name": "CAMPING LES MARSOUINS", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-28", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.184235618402654, + 48.69547087754244 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "517676805", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "L'Hôtel Particulier", + "ref:EU:EVSE": "FRC2P003702", + "ref": "FRC2P003702", + "name": "L'HOTEL PARTICULIER NANCY", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-04", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.184235618402654, + 48.69547087754244 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "517676805", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "L'Hôtel Particulier", + "ref:EU:EVSE": "FRC2P003701", + "ref": "FRC2P003701", + "name": "L'HOTEL PARTICULIER NANCY", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-04", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref:EU:EVSE": "FRC2P003403", + "ref": "FRC2P003403", + "name": "CARREFOUR AJACCIO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref:EU:EVSE": "FRC2P003403", + "ref": "FRC2P003403", + "name": "CARREFOUR AJACCIO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref:EU:EVSE": "FRC2P003402", + "ref": "FRC2P003402", + "name": "CARREFOUR AJACCIO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref:EU:EVSE": "FRC2P003402", + "ref": "FRC2P003402", + "name": "CARREFOUR AJACCIO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref:EU:EVSE": "FRC2P003401", + "ref": "FRC2P003401", + "name": "CARREFOUR AJACCIO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref:EU:EVSE": "FRC2P003401", + "ref": "FRC2P003401", + "name": "CARREFOUR AJACCIO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.615694, + 42.9937786 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "829959089", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL ORIGINALS ACCESS", + "ref:EU:EVSE": "FRC2P003001", + "ref": "", + "name": "HOTEL ORIGINALS ACCESS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-15", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.844548, + 48.198965 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "797742442", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING PORTE DES VOSGES", + "ref:EU:EVSE": "FRC2P003602", + "ref": "FRC2P003602", + "name": "CAMPING PORTE DES VOSGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-21", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.844548, + 48.198965 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "797742442", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING PORTE DES VOSGES", + "ref:EU:EVSE": "FRC2P003601", + "ref": "FRC2P003601", + "name": "CAMPING PORTE DES VOSGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-21", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.076252915345508, + 43.7342593961128 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "422848515", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "LA FARIGOULETTE CIEL A VILLAGE", + "ref:EU:EVSE": "FRC2P003502", + "ref": "FRC2P003502", + "name": "LA FARIGOULETTE CIEL A VILLAGE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-21", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.076252915345508, + 43.7342593961128 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "422848515", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "LA FARIGOULETTE CIEL A VILLAGE", + "ref:EU:EVSE": "FRC2P003501", + "ref": "FRC2P003501", + "name": "LA FARIGOULETTE CIEL A VILLAGE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-21", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.130048315345508, + 44.46056813187505 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "896750254", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "LA RIVE CIELA VILLAGE", + "ref:EU:EVSE": "FRC2P003202", + "ref": "FRC2P003202", + "name": "LA RIVE CIELA VILLAGE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.615694, + 42.9937786 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "829959089", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL ORIGINALS ACCESS", + "ref:EU:EVSE": "FRC2P003001", + "ref": "", + "name": "HOTEL ORIGINALS ACCESS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-15", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.130048315345508, + 44.46056813187505 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "896750254", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "LA RIVE CIELA VILLAGE", + "ref:EU:EVSE": "FRC2P003201", + "ref": "FRC2P003201", + "name": "LA RIVE CIELA VILLAGE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4648423, + 48.95141080000001 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "750327231", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "MINOTTI-TRANS", + "ref:EU:EVSE": "FRC2P002901", + "ref": "FRC2P002901", + "name": "MINOTTI-TRANS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-08", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.833339258860764, + 48.119479307086486 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "521528141", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING AUBERGE LA STENIOLE", + "ref:EU:EVSE": "FRC2P004001", + "ref": "FRC2P004001", + "name": "CAMPING AUBERGE LA STENIOLE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-30", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0321381, + 42.5615661 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "324079086", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LES MARSOUINS", + "ref:EU:EVSE": "FRC2P003802", + "ref": "FRC2P003802", + "name": "CAMPING LES MARSOUINS", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-28", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002506", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.833339258860764, + 48.119479307086486 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "521528141", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING AUBERGE LA STENIOLE", + "ref:EU:EVSE": "FRC2P004002", + "ref": "FRC2P004002", + "name": "CAMPING AUBERGE LA STENIOLE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-30", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9588304576710754, + 43.10066375282533 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "803965110", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": " LOY'S HOTEL", + "ref:EU:EVSE": "FRC2P004601", + "ref": "FRC2P004601", + "name": " LOY'S HOTEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002505", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.632329940795898, + 43.463932037353516 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "898839386", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL FORMULE 1", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002601", + "name": "HOTEL FORMULE 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-21", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.7693176, + 45.0873099 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "750986200", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SARL LE BOIS DE CORNAGE", + "ref:EU:EVSE": "FRC2P004801", + "ref": "FRC2P004801", + "name": "SARL LE BOIS DE CORNAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-30", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.7693176, + 45.0873099 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "750986200", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SARL LE BOIS DE CORNAGE", + "ref:EU:EVSE": "FRC2P004801", + "ref": "FRC2P004801", + "name": "SARL LE BOIS DE CORNAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-30", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.442518, + 45.462032 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "803965110", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "L'OXYGENE", + "ref:EU:EVSE": "FRC2P004901", + "ref": "FRC2P004901", + "name": "L'OXYGENE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-02-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.442518, + 45.462032 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "803965110", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "L'OXYGENE", + "ref:EU:EVSE": "FRC2P004901", + "ref": "FRC2P004901", + "name": "L'OXYGENE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-02-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.960545459507173, + 43.30223171200826 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "803965110", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SARL CASTEL CONTROLE", + "ref:EU:EVSE": "FRC2P004702", + "ref": "FRC2P004702", + "name": "SARL CASTEL CONTROLE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-11", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2022-01-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.960545459507173, + 43.30223171200826 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "803965110", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SARL CASTEL CONTROLE", + "ref:EU:EVSE": "FRC2P004701", + "ref": "FRC2P004701", + "name": "SARL CASTEL CONTROLE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Réservé PMR", + "start_date": "2022-01-11", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2022-01-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9588304576710754, + 43.10066375282533 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "803965110", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": " LOY'S HOTEL", + "ref:EU:EVSE": "FRC2P004601", + "ref": "FRC2P004601", + "name": " LOY'S HOTEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2022-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.581885286584799, + 48.9020454543009 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "803965110", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SCIC SEMPIN", + "ref:EU:EVSE": "FRC2P004502", + "ref": "FRC2P004502", + "name": "SCIC SEMPIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-12", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.115732, + 49.2805603 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "412235319", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "AGAPHONE", + "ref:EU:EVSE": "FRC2P003901", + "ref": "FRC2P003901", + "name": "AGAPHONE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-26", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-08-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.581885286584799, + 48.9020454543009 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "803965110", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SCIC SEMPIN", + "ref:EU:EVSE": "FRC2P004502", + "ref": "FRC2P004502", + "name": "SCIC SEMPIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-12", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.581885286584799, + 48.9020454543009 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "803965110", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SCIC SEMPIN", + "ref:EU:EVSE": "FRC2P004501", + "ref": "FRC2P004501", + "name": "SCIC SEMPIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-12", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.581885286584799, + 48.9020454543009 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "803965110", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SCIC SEMPIN", + "ref:EU:EVSE": "FRC2P004501", + "ref": "FRC2P004501", + "name": "SCIC SEMPIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-12", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-12-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.405862426409584, + 45.415499560107136 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "327641361", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SQUASH CLUB SAINT-ETIENNE", + "ref:EU:EVSE": "FRC2P004301", + "ref": "FRC2P004301", + "name": "SQUASH CLUB SAINT-ETIENNE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-25", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-11-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.33806628395921656, + 46.57850280671129 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402073597", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL DE L'EUROPE", + "ref:EU:EVSE": "FRC2P004401", + "ref": "FRC2P004401", + "name": "HOTEL DE L'EUROPE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-25", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-11-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.33806628395921656, + 46.57850280671129 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402073597", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL DE L'EUROPE", + "ref:EU:EVSE": "FRC2P004401", + "ref": "FRC2P004401", + "name": "HOTEL DE L'EUROPE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-25", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-11-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.115732, + 49.2805603 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "412235319", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "AGAPHONE", + "ref:EU:EVSE": "FRC2P003902", + "ref": "FRC2P003902", + "name": "AGAPHONE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-26", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-08-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.115732, + 49.2805603 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "412235319", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "AGAPHONE", + "ref:EU:EVSE": "FRC2P003902", + "ref": "FRC2P003902", + "name": "AGAPHONE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-26", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-08-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.115732, + 49.2805603 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "412235319", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "AGAPHONE", + "ref:EU:EVSE": "FRC2P003901", + "ref": "FRC2P003901", + "name": "AGAPHONE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-26", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-08-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.632329940795898, + 43.463932037353516 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "898839386", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL FORMULE 1", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002601", + "name": "HOTEL FORMULE 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-21", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.844548, + 48.198965 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "797742442", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING PORTE DES VOSGES", + "ref:EU:EVSE": "FRC2P003601", + "ref": "FRC2P003601", + "name": "CAMPING PORTE DES VOSGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-21", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3159294128418, + -20.949535369873047 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001601", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000407", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.926622543415475, + 45.745946211701884 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "448848283", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "STATION CIEL", + "ref:EU:EVSE": "FRC2P000301", + "ref": "", + "name": "STATION CIEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-10", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.683051586151123, + 48.59249496459961 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402143747", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SUN DEVELOPPEMENT", + "ref:EU:EVSE": "FRC2P000501", + "ref": "", + "name": "SUN DEVELOPPEMENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-10", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.683051586151123, + 48.59249496459961 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402143747", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SUN DEVELOPPEMENT", + "ref:EU:EVSE": "FRC2P000501", + "ref": "", + "name": "SUN DEVELOPPEMENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-10", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.278209770098333, + 43.52534026251893 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "451611909", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CHATEAU MENTONE", + "ref:EU:EVSE": "FRC2P001101", + "ref": "", + "name": "CHATEAU MENTONE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-10", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000401", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000402", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000403", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000405", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000405", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000406", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000406", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720282077789307, + 43.43741989135742 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000407", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.278209770098333, + 43.52534026251893 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "451611909", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CHATEAU MENTONE", + "ref:EU:EVSE": "FRC2P001101", + "ref": "", + "name": "CHATEAU MENTONE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-10", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.017630100250244, + 44.10531997680664 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "324577816", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING Sunêlia l-Hippocampe", + "ref:EU:EVSE": "FRC2P001201", + "ref": "", + "name": "CAMPING Sunêlia l-Hippocampe", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-28", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.2785984, + 41.5930127 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "340119411", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL LE TILBURY", + "ref:EU:EVSE": "FRC2P002401", + "ref": "", + "name": "HOTEL LE TILBURY", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-16", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-02-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.992544651031494, + 44.077613830566406 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "807940069", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "STATION LUMIIN", + "ref:EU:EVSE": "FRC2P000101", + "ref": "", + "name": "STATION LUMIIN", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-07", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002504", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002503", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002501", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3790712356567383, + 43.000159063034566 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "793042086", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LA BOURIE", + "ref:EU:EVSE": "FRC2P002801", + "ref": "", + "name": "CAMPING LA BOURIE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002502", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9736927577629495, + 44.33852129529498 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "539500546", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LE PLO", + "ref:EU:EVSE": "FRC2P002201", + "ref": "", + "name": "CAMPING LE PLO", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-12-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.47906106710434, + 44.22049963493783 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "798043659", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LES AMARINES", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002101", + "name": "CAMPING LES AMARINES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-15", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.47906106710434, + 44.22049963493783 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "798043659", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LES AMARINES", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002101", + "name": "CAMPING LES AMARINES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-15", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3159294128418, + -20.949535369873047 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "EASYPLUG", + "ref:EU:EVSE": "FRC2P001602", + "ref": "", + "name": "EASYPLUG SEMIR LE PORT", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-01", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-11-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.115732, + 49.2805603 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "412235319", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "AGAPHONE", + "ref:EU:EVSE": "FRC2P003901", + "ref": "FRC2P003901", + "name": "AGAPHONE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-26", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-08-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.115732, + 49.2805603 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "412235319", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "AGAPHONE", + "ref:EU:EVSE": "FRC2P003901", + "ref": "FRC2P003901", + "name": "AGAPHONE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-26", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-08-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.115732, + 49.2805603 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "412235319", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "AGAPHONE", + "ref:EU:EVSE": "FRC2P003902", + "ref": "FRC2P003902", + "name": "AGAPHONE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-26", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-08-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.115732, + 49.2805603 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "412235319", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "AGAPHONE", + "ref:EU:EVSE": "FRC2P003902", + "ref": "FRC2P003902", + "name": "AGAPHONE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-26", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-08-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002501", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002504", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002506", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002505", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002503", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P002502", + "name": "KALLISTE RIVE SUD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "Paiement par smartphone, et applications", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9736927577629495, + 44.33852129529498 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "539500546", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LE PLO", + "ref:EU:EVSE": "FRC2P002201", + "ref": "", + "name": "CAMPING LES AMARINES", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-12-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.017138957977295, + 44.10501405816338 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "324577816", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING Sunêlia l-Hippocampe", + "ref:EU:EVSE": "FRC2P001201", + "ref": "", + "name": "CAMPING Sunêlia l-Hippocampe", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-28", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.994230270385742, + 44.07691857938178 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "807940069", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "STATION LUMIIN", + "ref:EU:EVSE": "FRC2P000101", + "ref": "", + "name": "STATION LUMIIN", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-07", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.729168891906738, + 43.446937038436744 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000402", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.729168891906738, + 43.446937038436744 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000407", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.729168891906738, + 43.446937038436744 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000406", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.729168891906738, + 43.446937038436744 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000406", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.729168891906738, + 43.446937038436744 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000405", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.729168891906738, + 43.446937038436744 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000405", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.729168891906738, + 43.446937038436744 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000403", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.729168891906738, + 43.446937038436744 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "778151290", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "ref:EU:EVSE": "Non concerné", + "ref": "FRC2P000401", + "name": "Camping Fréjus 5 étoiles - Le Domaine du Colombier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-13", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-08-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.277399063110352, + 43.52554183417336 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "451611909", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CHATEAU MENTONE", + "ref:EU:EVSE": "FRC2P001101", + "ref": "", + "name": "CHATEAU MENTONE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-10", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.277399063110352, + 43.52554183417336 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "451611909", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CHATEAU MENTONE", + "ref:EU:EVSE": "FRC2P001101", + "ref": "", + "name": "CHATEAU MENTONE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-10", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316255993913532, + 48.87284863189276 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402143747", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SUN DEVELOPPEMENT", + "ref:EU:EVSE": "FRC2P000501", + "ref": "", + "name": "SUN DEVELOPPEMENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-10", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316255993913532, + 48.87284863189276 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402143747", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SUN DEVELOPPEMENT", + "ref:EU:EVSE": "FRC2P000501", + "ref": "", + "name": "SUN DEVELOPPEMENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-10", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.925962686538696, + 45.746076812151216 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "448848283", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "STATION CIEL", + "ref:EU:EVSE": "FRC2P000301", + "ref": "", + "name": "STATION CIEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-10", + "note": "Paiement par smartphone, et applications", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316255993913532, + 48.87284863189276 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402143747", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SUN DEVELOPPEMENT", + "ref:EU:EVSE": "FRC2P000501", + "ref": "", + "name": "SUN DEVELOPPEMENT ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-10", + "note": "24/7, 0,30 € kwh", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.994230270385742, + 44.07691857938178 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "807940069", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "LUMIIN", + "ref:EU:EVSE": "FRC2P000101", + "ref": "", + "name": "STATION LUMIIN", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-07", + "note": "24/7, 0,30 € kwh", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.925962686538696, + 45.746076812151216 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "448848283", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "STATION CIEL", + "ref:EU:EVSE": "FRC2P000301", + "ref": "", + "name": "STATION CIEL", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-10", + "note": "24/7, 0,30 € kwh", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316255993913532, + 48.87284863189276 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402143747", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SUN DEVELOPPEMENT", + "ref:EU:EVSE": "FRC2P000501", + "ref": "", + "name": "SUN DEVELOPPEMENT ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-10", + "note": "24/7, 0,30 € kwh", + "source:date": "2021-07-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.630963, + 48.41844 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "Wurth Erstein", + "ref:EU:EVSE": "FRLMSE1000117224", + "ref": "", + "name": "Wurth Erstein", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-03", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.7717784, + 47.3873487 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "803965110", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAFE LA PROMENADE", + "ref:EU:EVSE": "FRC2P005201", + "ref": "FRC2P005201", + "name": "CAFE LA PROMENADE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-02-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5627677, + 48.6203594 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "441361516", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "ARC EN CIEL SUBLIMATION", + "ref:EU:EVSE": "FRC2P005101", + "ref": "FRC2P005101", + "name": "ARC EN CIEL SUBLIMATION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-02-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5627677, + 48.6203594 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "441361516", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "ARC EN CIEL SUBLIMATION", + "ref:EU:EVSE": "FRC2P005101", + "ref": "FRC2P005101", + "name": "ARC EN CIEL SUBLIMATION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-02-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1229985, + 48.9267881 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "217702380", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "MAIRIE - 77640", + "ref:EU:EVSE": "FRC2P005601", + "ref": "FRC2P005601", + "name": "MAIRIE - 77640", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-22", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-02-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1331726, + 48.92402509999999 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "217702380", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "MAIRIE - 77640", + "ref:EU:EVSE": "FRC2P005802", + "ref": "FRC2P005802", + "name": "MAIRIE - 77640", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-01", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-03-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1331726, + 48.92402509999999 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "217702380", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "MAIRIE - 77640", + "ref:EU:EVSE": "FRC2P005801", + "ref": "FRC2P005801", + "name": "MAIRIE - 77640", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-01", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-03-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.130455146024364, + 48.92768371647863 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "217702380", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "MAIRIE - 77640", + "ref:EU:EVSE": "FRC2P005301", + "ref": "FRC2P005301", + "name": "MAIRIE - 77640", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-21", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-02-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.130455146024364, + 48.92768371647863 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "217702380", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "MAIRIE - 77640", + "ref:EU:EVSE": "FRC2P005301", + "ref": "FRC2P005301", + "name": "MAIRIE - 77640", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-21", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-02-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.219229, + 48.11093710000001 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SARL 3M", + "ref:EU:EVSE": "FRC2P005501", + "ref": "FRC2P005501", + "name": "SARL 3M", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-23", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-02-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.219229, + 48.11093710000001 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SARL 3M", + "ref:EU:EVSE": "FRC2P005501", + "ref": "FRC2P005501", + "name": "SARL 3M", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-23", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-02-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1229985, + 48.9267881 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "217702380", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "MAIRIE - 77640", + "ref:EU:EVSE": "FRC2P005602", + "ref": "FRC2P005602", + "name": "MAIRIE - 77640", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-22", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-02-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.330907, + 48.01435 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CHATEAU DU FEY", + "ref:EU:EVSE": "FRC2P005901", + "ref": "FRC2P005901", + "name": "CHATEAU DU FEY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-14", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-03-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.863237, + 45.21972 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "444393441", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CODERC CAMPING", + "ref:EU:EVSE": "FRC2P006101", + "ref": "FRC2P006101", + "name": "CODERC CAMPING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-04", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-04-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.863237, + 45.21972 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "444393441", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CODERC CAMPING", + "ref:EU:EVSE": "FRC2P006101", + "ref": "FRC2P006101", + "name": "CODERC CAMPING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-04", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-04-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.780463, + 43.84705599999999 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "340379932", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL DU MOULIN DAURE", + "ref:EU:EVSE": "FRC2P006001", + "ref": "FRC2P006001", + "name": "HOTEL DU MOULIN DAURE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-23", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-03-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.780463, + 43.84705599999999 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "340379932", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL DU MOULIN DAURE", + "ref:EU:EVSE": "FRC2P006001", + "ref": "FRC2P006001", + "name": "HOTEL DU MOULIN DAURE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-23", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-03-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.330907, + 48.01435 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CHATEAU DU FEY", + "ref:EU:EVSE": "FRC2P005901", + "ref": "FRC2P005901", + "name": "CHATEAU DU FEY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-14", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-03-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1229985, + 48.9267881 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "217702380", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "MAIRIE - 77640", + "ref:EU:EVSE": "FRC2P005602", + "ref": "FRC2P005602", + "name": "MAIRIE - 77640", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-22", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-02-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1229985, + 48.9267881 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "217702380", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "MAIRIE - 77640", + "ref:EU:EVSE": "FRC2P005601", + "ref": "FRC2P005601", + "name": "MAIRIE - 77640", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-22", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-02-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1331726, + 48.92402509999999 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "217702380", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "MAIRIE - 77640", + "ref:EU:EVSE": "FRC2P005802", + "ref": "FRC2P005802", + "name": "MAIRIE - 77640", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-01", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-03-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1331726, + 48.92402509999999 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "217702380", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "MAIRIE - 77640", + "ref:EU:EVSE": "FRC2P005801", + "ref": "FRC2P005801", + "name": "MAIRIE - 77640", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-01", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-03-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.130455146024364, + 48.92768371647863 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "217702380", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "MAIRIE - 77640", + "ref:EU:EVSE": "FRC2P005301", + "ref": "FRC2P005301", + "name": "MAIRIE - 77640", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-21", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-02-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.130455146024364, + 48.92768371647863 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "217702380", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "MAIRIE - 77640", + "ref:EU:EVSE": "FRC2P005301", + "ref": "FRC2P005301", + "name": "MAIRIE - 77640", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-21", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-02-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4783344, + 43.3190604 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "MC HOTELLERIE", + "ref:EU:EVSE": "FRC2P006401", + "ref": "FRC2P006401", + "name": "MC HOTELLERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-23", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-05-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7711457, + 43.3193683 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "SCI CHEVY", + "ref:EU:EVSE": "FRC2P006501", + "ref": "FRC2P006501", + "name": "SCI CHEVY", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-23", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-05-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7711457, + 43.3193683 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "SCI CHEVY", + "ref:EU:EVSE": "FRC2P006502", + "ref": "FRC2P006502", + "name": "SCI CHEVY", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-23", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-05-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.781515100000001, + 43.58764679999999 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "CJC RECORDING", + "ref:EU:EVSE": "FRC2P006301", + "ref": "FRC2P006301", + "name": "CJC RECORDING", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-12", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-05-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.781515100000001, + 43.58764679999999 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "CJC RECORDING", + "ref:EU:EVSE": "FRC2P006302", + "ref": "FRC2P006302", + "name": "CJC RECORDING", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-12", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-05-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8056475, + 45.8960714 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "HOTEL ST ANTOINE", + "ref:EU:EVSE": "FRC2P006601", + "ref": "FRC2P006601", + "name": "HOTEL ST ANTOINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-15", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-05-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4783344, + 43.3190604 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "MC HOTELLERIE", + "ref:EU:EVSE": "FRC2P006401", + "ref": "FRC2P006401", + "name": "MC HOTELLERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-23", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-05-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8056475, + 45.8960714 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "HOTEL ST ANTOINE", + "ref:EU:EVSE": "FRC2P006601", + "ref": "FRC2P006601", + "name": "HOTEL ST ANTOINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-15", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-05-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020918899999999, + 49.0335246 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "449170455", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "INTERMARCHÉ VAURÉAL", + "ref:EU:EVSE": "FRC2P006706", + "ref": "FRC2P006706", + "name": "INTERMARCHÉ VAURÉAL", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-10", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020918899999999, + 49.0335246 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "449170455", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "INTERMARCHÉ VAURÉAL", + "ref:EU:EVSE": "FRC2P006707", + "ref": "FRC2P006707", + "name": "INTERMARCHÉ VAURÉAL", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-10", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020918899999999, + 49.0335246 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "449170455", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "INTERMARCHÉ VAURÉAL", + "ref:EU:EVSE": "FRC2P006705", + "ref": "FRC2P006705", + "name": "INTERMARCHÉ VAURÉAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-10", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020918899999999, + 49.0335246 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "449170455", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "INTERMARCHÉ VAURÉAL", + "ref:EU:EVSE": "FRC2P006705", + "ref": "FRC2P006705", + "name": "INTERMARCHÉ VAURÉAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-10", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020918899999999, + 49.0335246 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "449170455", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "INTERMARCHÉ VAURÉAL", + "ref:EU:EVSE": "FRC2P006703", + "ref": "FRC2P006703", + "name": "INTERMARCHÉ VAURÉAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-10", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020918899999999, + 49.0335246 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "449170455", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "INTERMARCHÉ VAURÉAL", + "ref:EU:EVSE": "FRC2P006703", + "ref": "FRC2P006703", + "name": "INTERMARCHÉ VAURÉAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-10", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020918899999999, + 49.0335246 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "449170455", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "INTERMARCHÉ VAURÉAL", + "ref:EU:EVSE": "FRC2P006704", + "ref": "FRC2P006704", + "name": "INTERMARCHÉ VAURÉAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-10", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020918899999999, + 49.0335246 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "449170455", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "INTERMARCHÉ VAURÉAL", + "ref:EU:EVSE": "FRC2P006704", + "ref": "FRC2P006704", + "name": "INTERMARCHÉ VAURÉAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-10", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020918899999999, + 49.0335246 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "449170455", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "INTERMARCHÉ VAURÉAL", + "ref:EU:EVSE": "FRC2P006702", + "ref": "FRC2P006702", + "name": "INTERMARCHÉ VAURÉAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-10", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020918899999999, + 49.0335246 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "449170455", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "INTERMARCHÉ VAURÉAL", + "ref:EU:EVSE": "FRC2P006701", + "ref": "FRC2P006701", + "name": "INTERMARCHÉ VAURÉAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-10", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020918899999999, + 49.0335246 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "449170455", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "INTERMARCHÉ VAURÉAL", + "ref:EU:EVSE": "FRC2P006701", + "ref": "FRC2P006701", + "name": "INTERMARCHÉ VAURÉAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-10", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020918899999999, + 49.0335246 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "449170455", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "INTERMARCHÉ VAURÉAL", + "ref:EU:EVSE": "FRC2P006702", + "ref": "FRC2P006702", + "name": "INTERMARCHÉ VAURÉAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-10", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3423507, + 49.8969455 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "FELIS CANIS", + "ref:EU:EVSE": "FRC2P007001", + "ref": "FRC2P007001", + "name": "FELIS CANIS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-10", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-06-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.077468, + 49.905174 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "AB DIEPPE", + "ref:EU:EVSE": "FRC2P006901", + "ref": "FRC2P006901", + "name": "AB DIEPPE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-09", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5652006, + 48.2028718 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "GYROVOSGES", + "ref:EU:EVSE": "FRC2P006801", + "ref": "FRC2P006801", + "name": "GYROVOSGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-09", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5652006, + 48.2028718 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "GYROVOSGES", + "ref:EU:EVSE": "FRC2P006801", + "ref": "FRC2P006801", + "name": "GYROVOSGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-09", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.077468, + 49.905174 + ] + }, + "properties": { + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "AB DIEPPE", + "ref:EU:EVSE": "FRC2P006901", + "ref": "FRC2P006901", + "name": "AB DIEPPE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-09", + "note": "Paiement par smartphone, applications et CB", + "source:date": "2023-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.394, + 43.6328 + ] + }, + "properties": { + "operator": "AUTORECHARGE", + "owner:ref:FR:SIREN": "750528960", + "email": "contact@autorecharge.fr", + "phone": "0970755400", + "network": "Réseau de charge FASTHOTEL BLAGNAC", + "ref:EU:EVSE": "FRAU1000801", + "ref": "01FDJ49W5BNFBBW4HR43XBSXYM", + "name": "TOULOUSE AEROPORT HOTEL ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-08-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33611093, + 44.42680651 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "390825354", + "email": "support@virta.global", + "phone": "0186472712", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E37515", + "ref": "", + "name": "Camping La Plaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.02004486, + 42.77530709 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "950016055", + "email": "support@virta.global", + "phone": "0186472732", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58363", + "ref": "", + "name": "Camping Les Tamaris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93391388, + 43.81099781 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "791245087", + "email": "support@virta.global", + "phone": "0186472722", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E40171", + "ref": "", + "name": "Camping Parc le Duc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-15", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.377925, + 46.17418428 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "329554851", + "email": "support@virta.global", + "phone": "0186472723", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E40162", + "ref": "", + "name": "Camping Sunelia Interlude", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-15", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.377925, + 46.17418428 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "329554851", + "email": "support@virta.global", + "phone": "0186472724", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E40163", + "ref": "", + "name": "Camping Sunelia Interlude", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-15", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14394557, + 45.36995522 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472725", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58473", + "ref": "", + "name": "Camping Campéole Medoc Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14394557, + 45.36995522 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472726", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58474", + "ref": "", + "name": "Camping Campéole Medoc Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14394557, + 45.36995522 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472727", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E44355", + "ref": "", + "name": "Camping Campéole Medoc Plage", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35685396, + 43.9543369 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472728", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58469", + "ref": "", + "name": "Camping Campéole Les Tourterelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35685396, + 43.9543369 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472729", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58470", + "ref": "", + "name": "Camping Campéole Les Tourterelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1202879, + 46.81010295 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472730", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58471", + "ref": "", + "name": "Camping Campéole Les Tonnelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.1202879, + 46.81010295 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472731", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58472", + "ref": "", + "name": "Camping Campéole Les Tonnelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.02004486, + 42.77530709 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "950016055", + "email": "support@virta.global", + "phone": "0186472733", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58364", + "ref": "", + "name": "Camping Les Tamaris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93391388, + 43.81099781 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "791245087", + "email": "support@virta.global", + "phone": "0186472720", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E40169", + "ref": "", + "name": "Camping Parc le Duc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-15", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2400218, + 44.45923178 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472734", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58345", + "ref": "", + "name": "Camping Campéole Le Vivier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2400218, + 44.45923178 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472735", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58346", + "ref": "", + "name": "Camping Campéole Le Vivier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2400218, + 44.45923178 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472736", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58347", + "ref": "", + "name": "Camping Campéole Le Vivier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2400218, + 44.45923178 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472737", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58348", + "ref": "", + "name": "Camping Campéole Le Vivier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.00205723, + 45.57975404 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "529978405", + "email": "support@virta.global", + "phone": "0186472738", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58221", + "ref": "", + "name": "Camping Le Viginet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.00205723, + 45.57975404 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "529978405", + "email": "support@virta.global", + "phone": "0186472739", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58222", + "ref": "", + "name": "Camping Le Viginet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.17166083, + 44.43103518 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472740", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58355", + "ref": "", + "name": "Camping Campéole Navarrosse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.17166083, + 44.43103518 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472741", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58356", + "ref": "", + "name": "Camping Campéole Navarrosse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.20262039, + 44.90092439 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "828318204", + "email": "support@virta.global", + "phone": "0186472742", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58465", + "ref": "", + "name": "Hôtel Le Meysset", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93391388, + 43.81099781 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "791245087", + "email": "support@virta.global", + "phone": "0186472721", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E40170", + "ref": "", + "name": "Camping Parc le Duc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-15", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93391388, + 43.81099781 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "791245087", + "email": "support@virta.global", + "phone": "0186472719", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E40168", + "ref": "", + "name": "Camping Parc le Duc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-15", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21423544, + 44.89537348 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "384395516", + "email": "support@virta.global", + "phone": "0186472744", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58365", + "ref": "", + "name": "Hôtel Le Madrigal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52703596, + 46.41313532 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "384598249", + "email": "support@virta.global", + "phone": "0186472706", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E44232", + "ref": "", + "name": "Camping Les Brunelles", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-29", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-03-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.445073, + 41.995246 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "301075065", + "email": "support@virta.global", + "phone": "0186472696", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E20923", + "ref": "", + "name": "Camping Arinella", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-17", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2020-11-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.445074, + 41.995246 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "301075065", + "email": "support@virta.global", + "phone": "0186472697", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E20924", + "ref": "", + "name": "Camping Arinella", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-17", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2020-11-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.445075, + 41.995246 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "301075065", + "email": "support@virta.global", + "phone": "0186472698", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E30333", + "ref": "", + "name": "Camping Arinella", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-17", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2020-11-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.289881, + 44.792649 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "378020168", + "email": "support@virta.global", + "phone": "0186472699", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10EAC35479", + "ref": "", + "name": "Le Relais des Vigiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-17", + "note": "", + "source:date": "2020-11-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.289881, + 44.792649 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "378020168", + "email": "support@virta.global", + "phone": "0186472700", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10EAC35480", + "ref": "", + "name": "Le Relais des Vigiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-17", + "note": "", + "source:date": "2020-11-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7847036, + 45.80245775 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "883425084", + "email": "support@virta.global", + "phone": "0186472701", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E43978", + "ref": "", + "name": "Pia Green", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-29", + "note": "", + "source:date": "2021-03-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7847036, + 45.80245775 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "883425084", + "email": "support@virta.global", + "phone": "0186472702", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E43977", + "ref": "", + "name": "Pia Green", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-29", + "note": "", + "source:date": "2021-03-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42539138, + 43.65237411 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "815322201", + "email": "support@virta.global", + "phone": "0186472703", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E37512", + "ref": "", + "name": "Hôtel Ibis Style Toulouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-29", + "note": "", + "source:date": "2021-03-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42539138, + 43.65237411 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "815322201", + "email": "support@virta.global", + "phone": "0186472704", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E37513", + "ref": "", + "name": "Hôtel Ibis Style Toulouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-29", + "note": "", + "source:date": "2021-03-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.52703596, + 46.41313532 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "384598249", + "email": "support@virta.global", + "phone": "0186472705", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E44233", + "ref": "", + "name": "Camping Les Brunelles", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-29", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-03-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33468576, + 44.41770558 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "343756904", + "email": "support@virta.global", + "phone": "0186472707", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E37516", + "ref": "", + "name": "Camping Vivarais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4546121, + 46.62349487 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "530797752", + "email": "support@virta.global", + "phone": "0186472718", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E44257", + "ref": "", + "name": "Camping Campilo", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33468576, + 44.41770558 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "343756904", + "email": "support@virta.global", + "phone": "0186472708", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E37517", + "ref": "", + "name": "Camping Vivarais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.3749664, + 41.6820949 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "823002811", + "email": "support@virta.global", + "phone": "0186472709", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E37518", + "ref": "", + "name": "Hôtel Le Pinarello", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2021-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.3749664, + 41.6820949 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "823002811", + "email": "support@virta.global", + "phone": "0186472710", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E37519", + "ref": "", + "name": "Hôtel Le Pinarello", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2021-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33611093, + 44.42680651 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "390825354", + "email": "support@virta.global", + "phone": "0186472711", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E37514", + "ref": "", + "name": "Camping La Plaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.406844, + 46.187012 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "440863561", + "email": "support@virta.global", + "phone": "0186472693", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E33899", + "ref": "", + "name": "Camping des Dunes", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-17", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2020-11-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23832843, + 44.73029836 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "822373742", + "email": "support@virta.global", + "phone": "0186472713", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E44113", + "ref": "", + "name": "Camping Le Douzou", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.02692661, + 45.1910994 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "315501726", + "email": "support@virta.global", + "phone": "0186472714", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E40166", + "ref": "", + "name": "Camping Le Paradou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.02692661, + 45.1910994 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "315501726", + "email": "support@virta.global", + "phone": "0186472715", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E40167", + "ref": "", + "name": "Camping Le Paradou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18773817, + 44.75268759 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "834207672", + "email": "support@virta.global", + "phone": "0186472716", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E40164", + "ref": "", + "name": "Camping Dordogne La Peyrugue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18773817, + 44.75268759 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "834207672", + "email": "support@virta.global", + "phone": "0186472717", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E40165", + "ref": "", + "name": "Camping Dordogne La Peyrugue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.20262039, + 44.90092439 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "828318204", + "email": "support@virta.global", + "phone": "0186472743", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58466", + "ref": "", + "name": "Hôtel Le Meysset", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.353438, + 44.409231 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "480123603", + "email": "support@virta.global", + "phone": "0186472746", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E40160", + "ref": "", + "name": "Camping La Plage Fleurie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21423544, + 44.89537348 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "384395516", + "email": "support@virta.global", + "phone": "0186472745", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58366", + "ref": "", + "name": "Hôtel Le Madrigal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.116399, + 45.022197 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "512117862", + "email": "support@virta.global", + "phone": "0186472692", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10EAC35497", + "ref": "", + "name": "Hôtel Archambeau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-17", + "note": "", + "source:date": "2020-11-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.445071, + 41.995246 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "301075065", + "email": "support@virta.global", + "phone": "0186472694", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10P20921", + "ref": "", + "name": "Camping Arinella", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-17", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2020-11-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78494, + 49.518518 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "215402611", + "email": "support@virta.global", + "phone": "0186472690", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E26562", + "ref": "", + "name": "Mairie Herserange", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-17", + "note": "", + "source:date": "2020-11-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78494, + 49.518518 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "215402611", + "email": "support@virta.global", + "phone": "0186472691", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E26563", + "ref": "", + "name": "Mairie Herserange", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-17", + "note": "", + "source:date": "2020-11-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.445072, + 41.995246 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "301075065", + "email": "support@virta.global", + "phone": "0186472695", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10P20922", + "ref": "", + "name": "Camping Arinella", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-17", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2020-11-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14350611, + 43.14288259 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472749", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58476", + "ref": "", + "name": "Camping Campéole Côte des Roses", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.353438, + 44.409231 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "480123603", + "email": "support@virta.global", + "phone": "0186472747", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E40161", + "ref": "", + "name": "Camping La Plage Fleurie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14350611, + 43.14288259 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472748", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E58475", + "ref": "", + "name": "Camping Campéole Côte des Roses", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement disponible pendant ouverture du camping", + "source:date": "2021-08-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.430500000000005, + 43.57690340000002 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "453406365", + "email": "psasupport@evbox.com", + "phone": "0986877186", + "network": "EVBOX", + "ref:EU:EVSE": "FREVBE7U4KNFB4LM7CM2ZIUQRFO3BK44", + "ref": "", + "name": "Citro-Puy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2021-09-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2001838828882567, + 46.01405490199754 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "830583381", + "email": "psasupport@evbox.com", + "phone": "0986877186", + "network": "EVBOX", + "ref:EU:EVSE": "FREVBEEDQS6FVAC2LYL6FAFW6IPNALMU", + "ref": "", + "name": "2A Automobiles", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-23", + "note": "", + "source:date": "2021-09-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.068559, + 44.550005 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "852425289", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000986351", + "ref": "", + "name": "Orange Gap ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-08", + "note": "", + "source:date": "2022-09-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94637, + 48.202269 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "852425289", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000837041", + "ref": "", + "name": "Vittel-Orange", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-18", + "note": "", + "source:date": "2022-08-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.86, + 46.42 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "498014141", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE1000025054", + "ref": "", + "name": "Andrieux & Bourcerie 24KW DC", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-30", + "note": "", + "source:date": "2021-08-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.972579, + 43.611481 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000882701", + "ref": "", + "name": "Würth Mougins", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-12", + "note": "", + "source:date": "2022-08-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.972579, + 43.611481 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000882691", + "ref": "", + "name": "Würth Mougins", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-12", + "note": "", + "source:date": "2022-08-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.400349, + 43.549642 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000882641", + "ref": "", + "name": "Würth Toulouse", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-26", + "note": "", + "source:date": "2022-08-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.400349, + 43.549642 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000882631", + "ref": "", + "name": "Würth Toulouse", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-26", + "note": "", + "source:date": "2022-08-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8455834166546037, + 50.666256180641085 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "415192202", + "email": "psasupport@evbox.com", + "phone": "0986877186", + "network": "EVBOX", + "ref:EU:EVSE": "FREVBENFCRERPIRG7IBRQHTCR2APUVCM", + "ref": "", + "name": "Garage Marcotte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-11", + "note": "", + "source:date": "2022-04-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8445087136534122, + 50.66617982049264 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "415192202", + "email": "psasupport@evbox.com", + "phone": "0986877186", + "network": "EVBOX", + "ref:EU:EVSE": "FREVBEQCN3UWD4RH74NPNCRZO5RDGUEQ", + "ref": "", + "name": "Garage Marcotte", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-10", + "note": "", + "source:date": "2022-03-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.971536, + 48.626299 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "791432263", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000348671", + "ref": "", + "name": "Fast Automobile St Dizier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-25", + "note": "Borne 50KW DC ou 2x25KW DC +1x22KW AC", + "source:date": "2022-03-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.068559, + 44.550005 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "852425289", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000986352", + "ref": "", + "name": "Orange Gap", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-08", + "note": "", + "source:date": "2022-09-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4587, + 43.53783 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "397906264", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE1000043430", + "ref": "", + "name": "Dulamon Auto", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-17", + "note": "", + "source:date": "2022-03-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.740974, + 49.516179 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "791432263", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE1000034868", + "ref": "", + "name": "Fast Automobile Longwy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-27", + "note": "Borne 50KW DC ou 2x25KW DC +1x22KW AC", + "source:date": "2022-03-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.348885488640659, + 48.38603775039389 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "752933184", + "email": "psasupport@evbox.com", + "phone": "0986877186", + "network": "EVBOX", + "ref:EU:EVSE": "FREVBEMVTUEDQDQTRYSNM6KDSEQSFTK4", + "ref": "", + "name": "LP Automobile", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-02", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.814621642327829, + 46.08831777039237 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "409179926", + "email": "psasupport@evbox.com", + "phone": "0986877186", + "network": "EVBOX", + "ref:EU:EVSE": "FREVBEZPB3PYRQMSIKMOE4CEJCOZNG7I", + "ref": "", + "name": "Segab", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2021-10-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2123569556846805, + 50.56848859815003 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "489683078", + "email": "psasupport@evbox.com", + "phone": "0986877186", + "network": "EVBOX", + "ref:EU:EVSE": "FREVBEZLZQ7VD34M2MZZUH4NBEA55XLA", + "ref": "", + "name": "Xavier Delsalle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-23", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -4863,6 +960229,44852 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.368877, + 49.18286 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "791432263", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE1000034866", + "ref": "", + "name": "Fast automobile Verdun", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "Borne 50KW DC ou 2x25KW DC +1x22KW AC", + "source:date": "2022-03-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.068559, + 44.550005 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "852425289", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000986353", + "ref": "", + "name": "Orange Gap", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-08", + "note": "", + "source:date": "2022-09-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.068559, + 44.550005 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "852425289", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000986341", + "ref": "", + "name": "Orange Gap ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-08", + "note": "", + "source:date": "2022-09-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.068559, + 44.550005 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "852425289", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000986342", + "ref": "", + "name": "Orange Gap", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-08", + "note": "", + "source:date": "2022-09-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.451591, + 48.97995 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000882591", + "ref": "", + "name": "Würth Gonesse", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.730036, + 48.101993 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000882611", + "ref": "", + "name": "Würth Rennes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.730036, + 48.101993 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000882621", + "ref": "", + "name": "Würth Rennes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.115675, + 49.39352 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000882711", + "ref": "", + "name": "Würth Rouen", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-18", + "note": "", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.115675, + 49.39352 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000882721", + "ref": "", + "name": "Würth Rouen", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-18", + "note": "", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77321, + 45.672402 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000882661", + "ref": "", + "name": "Würth Brignais", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-18", + "note": "", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77321, + 45.672402 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000882651", + "ref": "", + "name": "Würth Brignais", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-18", + "note": "", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.741838, + 44.527159 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10001142022", + "ref": "", + "name": "Würth Montélimar Logistic", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-09", + "note": "", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.741838, + 44.527159 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10001142021", + "ref": "", + "name": "Würth Montélimar Logistic", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-09", + "note": "", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.741545, + 44.526897 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10001142032", + "ref": "", + "name": "Würth Montélimar Proxi", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-09", + "note": "", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.741545, + 44.526897 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10001142031", + "ref": "", + "name": "Würth Montélimar Proxi", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-09", + "note": "", + "source:date": "2022-11-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.740974, + 49.516179 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "791432263", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000348683", + "ref": "", + "name": "Fast Automobile Longw", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-07", + "note": "", + "source:date": "2022-09-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.740974, + 49.516179 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "791432263", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000348682", + "ref": "", + "name": "Fast Automobile Longw", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-27", + "note": "", + "source:date": "2022-09-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.971536, + 48.626299 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "791432263", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000348673", + "ref": "", + "name": "Fast Automobile St Dizier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-25", + "note": "", + "source:date": "2022-09-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.971536, + 48.626299 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "791432263", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000348672", + "ref": "", + "name": "Fast Automobile St Dizier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-25", + "note": "", + "source:date": "2022-09-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.368877, + 49.18286 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "791432263", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000348663", + "ref": "", + "name": "Fast automobile Verdu", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2022-09-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.368877, + 49.18286 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "791432263", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000348662", + "ref": "", + "name": "Fast automobile Verdu", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2022-09-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.068559, + 44.550005 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "852425289", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000986343", + "ref": "", + "name": "Orange Gap", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-08", + "note": "", + "source:date": "2022-09-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.451591, + 48.97995 + ] + }, + "properties": { + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "ref:EU:EVSE": "FRLMSE10000882601", + "ref": "", + "name": "Würth Gonesse", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59, + 48.15 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "433188018", + "email": "contact@evbox.com", + "phone": "02 23 25 08 86", + "network": "MBC", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "MBC THORIGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-14", + "note": "RECHARGEMENT UNIQUEMENT DISPONNIBLE AUX HEURES D OUVERTURE", + "source:date": "2021-10-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28, + 48.61 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "415183680", + "email": "contact@evbox.com", + "phone": "+‭33 1 41 44 70 47‬", + "network": "EVBOX", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "BORNE ROUXEL MARINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-12", + "note": "RECHARGEMENT UNIQUEMENT DISPONNIBLE AUX HEURES D OUVERTURE", + "source:date": "2021-11-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75, + 48.41 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "413171711", + "email": "contact@evbox.com", + "phone": "", + "network": "EVBOX", + "ref:EU:EVSE": "FRAEVBP2011078", + "ref": "", + "name": "BORNE PERRY", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "RECHARGEMENT UNIQUEMENT DISPONNIBLE AUX HEURES D OUVERTURE", + "source:date": "2021-11-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75, + 48.41 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "413171711", + "email": "contact@evbox.com", + "phone": "", + "network": "EVBOX", + "ref:EU:EVSE": "FRAEVBP2022531", + "ref": "", + "name": "BORNE CHRISTOPHE PERRY", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "RECHARGEMENT UNIQUEMENT DISPONNIBLE AUX HEURES D OUVERTURE", + "source:date": "2021-11-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8076714, + 45.7981775 + ] + }, + "properties": { + "operator": "INOUID", + "owner:ref:FR:SIREN": "523603819", + "email": "Contact@inouid.com", + "phone": "0682800152", + "network": "QuincyPublic", + "ref:EU:EVSE": "FRISEEINOUIDQUINCY", + "ref": "01FBRQ3532D9RQ7W3DKXVQ7RS5", + "name": "St Didier", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-05-26", + "note": "Situé en zone d'activité tertiaire", + "source:date": "2021-07-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8372308, + 46.3085443 + ] + }, + "properties": { + "operator": "INOUID", + "owner:ref:FR:SIREN": "753827328", + "email": "Contact@inouid.com", + "phone": "0682800152", + "network": "Hotel Macon", + "ref:EU:EVSE": "Non concerné", + "ref": "01FBRNZA2J52JAYEAG7YXR7WXS", + "name": "Hotel Macon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-25", + "note": "Parking réservé à la clientèle de l'hotel", + "source:date": "2021-07-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8071364, + 45.7999825 + ] + }, + "properties": { + "operator": "INOUID", + "owner:ref:FR:SIREN": "828349175", + "email": "Contact@inouid.com", + "phone": "0682800152", + "network": "Ax'stone", + "ref:EU:EVSE": "Non concerné", + "ref": "69*axstn*lim*1", + "name": "Station Ax'Stone", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-30", + "note": "Parking réservé à la clientèle de l'hotel", + "source:date": "2022-05-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19743601177825, + 44.993004231809124 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "529349599", + "email": "lesjardinsdelasud@orange.fr", + "phone": "", + "network": "Les Jardins de la Sud", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2020517", + "name": "Parking Jardins de la Sud", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'entreprise ", + "source:date": "2021-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19743601177825, + 44.993004231809124 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "529349599", + "email": "lesjardinsdelasud@orange.fr", + "phone": "", + "network": "Les Jardins de la Sud", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2020517", + "name": "Parking Jardins de la Sud", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'entreprise ", + "source:date": "2021-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.166771, + 50.693723 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "FXM Events", + "ref:EU:EVSE": "Non concerné", + "ref": "01F85704N16K75F2NGKV1AERPC", + "name": "FXM", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-29", + "note": "", + "source:date": "2021-03-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.100756, + 49.113056 + ] + }, + "properties": { + "operator": "EGSM", + "owner:ref:FR:SIREN": "399831809", + "email": "jf.de@egsm.fr", + "phone": "038776969", + "network": "EGSM", + "ref:EU:EVSE": "Non concerné", + "ref": "399d4470-f5c3-11eb-9a03-0242ac130003", + "name": "EGSM", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-07-23", + "note": "Recharge uniquement pendant les horaires d'ouvertures", + "source:date": "2021-08-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.688881, + 49.140776 + ] + }, + "properties": { + "operator": "COPRODEX", + "owner:ref:FR:SIREN": "410514319", + "email": "coprodex@coprodex.com", + "phone": "038729007", + "network": "COPRODEX", + "ref:EU:EVSE": "Non concerné", + "ref": "01F8SKQEQ9WHH6FRV6VTNW2ES9", + "name": "Coprodex", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-10", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures", + "source:date": "2021-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4431105, + 48.919138 + ] + }, + "properties": { + "operator": "WAAT", + "owner:ref:FR:SIREN": "842019319", + "email": "g.uppilirajan@waat.fr", + "phone": "146421899", + "network": "Réseau de recharge SAS PRIMARD", + "ref:EU:EVSE": "Non concerné", + "ref": "61083", + "name": "GUAINVILLE", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-20", + "note": "", + "source:date": "2021-06-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4431105, + 48.919138 + ] + }, + "properties": { + "operator": "WAAT", + "owner:ref:FR:SIREN": "842019318", + "email": "g.uppilirajan@waat.fr", + "phone": "146421898", + "network": "Réseau de recharge SAS PRIMARD", + "ref:EU:EVSE": "Non concerné", + "ref": "61082", + "name": "GUAINVILLE", + "capacity": "5", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-20", + "note": "", + "source:date": "2021-06-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4431105, + 48.919138 + ] + }, + "properties": { + "operator": "WAAT", + "owner:ref:FR:SIREN": "842019317", + "email": "g.uppilirajan@waat.fr", + "phone": "146421897", + "network": "Réseau de recharge SAS PRIMARD", + "ref:EU:EVSE": "Non concerné", + "ref": "61081", + "name": "GUAINVILLE", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-20", + "note": "", + "source:date": "2021-06-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4431105, + 48.919138 + ] + }, + "properties": { + "operator": "WAAT", + "owner:ref:FR:SIREN": "842019317", + "email": "g.uppilirajan@waat.fr", + "phone": "146421897", + "network": "Réseau de recharge SAS PRIMARD", + "ref:EU:EVSE": "Non concerné", + "ref": "61081", + "name": "GUAINVILLE", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-19", + "note": "", + "source:date": "2021-06-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.394606, + 43.56689 + ] + }, + "properties": { + "operator": "AUTORECHARGE", + "owner:ref:FR:SIREN": "753022086", + "email": "contact@autorecharge.fr", + "phone": "0970755400", + "network": "ACCIF TOULOUSE ", + "ref:EU:EVSE": "FRAU10007", + "ref": "01FCMYGRABJTDCMWYM31ZQDEHA", + "name": "ACCIF TOULOUSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-01", + "note": "", + "source:date": "2021-08-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.145726, + 49.486737 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "428099022", + "email": "contact@sga-automation.com", + "phone": "0232103853", + "network": "Réseau de recharge Bulle de Linge", + "ref:EU:EVSE": "FRSGAP1D2009", + "ref": "", + "name": "D2009", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-07-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.145726, + 49.486737 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "428099022", + "email": "contact@sga-automation.com", + "phone": "0232103853", + "network": "Réseau de recharge Bulle de Linge", + "ref:EU:EVSE": "FRSGAP1D2009", + "ref": "", + "name": "D2009", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-07-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.145726, + 49.486737 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "428099022", + "email": "contact@sga-automation.com", + "phone": "0232103853", + "network": "Réseau de recharge Bulle de Linge", + "ref:EU:EVSE": "FRSGAP1D2009", + "ref": "", + "name": "D2009", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-07-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163069, + 47.949564 + ] + }, + "properties": { + "operator": "See You Sun", + "owner:ref:FR:SIREN": "824641294", + "email": "aguerin@seeyousun.fr", + "phone": "", + "network": "Le mans sun ", + "ref:EU:EVSE": "FRSYSELMSBOI", + "ref": "", + "name": "Bois joli", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-09-08", + "note": "", + "source:date": "2021-10-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163069, + 47.949564 + ] + }, + "properties": { + "operator": "See You Sun", + "owner:ref:FR:SIREN": "824641294", + "email": "aguerin@seeyousun.fr", + "phone": "", + "network": "Le mans sun ", + "ref:EU:EVSE": "FRSYSELMSBOI", + "ref": "", + "name": "Bois joli", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-09-08", + "note": "", + "source:date": "2021-10-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172916, + 47.977284 + ] + }, + "properties": { + "operator": "See You Sun", + "owner:ref:FR:SIREN": "824641294", + "email": "aguerin@seeyousun.fr", + "phone": "", + "network": "Le mans sun ", + "ref:EU:EVSE": "FRSYSELMSPAT", + "ref": "", + "name": "Patte d'oie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "", + "source:date": "2021-10-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172916, + 47.977284 + ] + }, + "properties": { + "operator": "See You Sun", + "owner:ref:FR:SIREN": "824641294", + "email": "aguerin@seeyousun.fr", + "phone": "", + "network": "Le mans sun ", + "ref:EU:EVSE": "FRSYSELMSPAT", + "ref": "", + "name": "Patte d'oie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "", + "source:date": "2021-10-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.237465, + 48.018384 + ] + }, + "properties": { + "operator": "See You Sun", + "owner:ref:FR:SIREN": "824641294", + "email": "aguerin@seeyousun.fr", + "phone": "", + "network": "Le mans sun ", + "ref:EU:EVSE": "FRSYSELMSFON", + "ref": "", + "name": "Les Fontenelles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-09-17", + "note": "", + "source:date": "2021-10-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.237465, + 48.018384 + ] + }, + "properties": { + "operator": "See You Sun", + "owner:ref:FR:SIREN": "824641294", + "email": "aguerin@seeyousun.fr", + "phone": "", + "network": "Le mans sun ", + "ref:EU:EVSE": "FRSYSELMSFON", + "ref": "", + "name": "Les Fontenelles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-09-17", + "note": "", + "source:date": "2021-10-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.724781, + 48.108326 + ] + }, + "properties": { + "operator": "See You Sun", + "owner:ref:FR:SIREN": "824641294", + "email": "aguerin@seeyousun.fr", + "phone": "", + "network": "L'incroyable", + "ref:EU:EVSE": "FRSYSEETIK", + "ref": "", + "name": "L'incroyable", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-08-06", + "note": "", + "source:date": "2021-09-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6, + 49.61 + ] + }, + "properties": { + "operator": "DALTONER CHERBOURG", + "owner:ref:FR:SIREN": "479246837", + "email": "denis.lot@daltoner.fr", + "phone": "0233440404", + "network": "DALTONER CHERBOURG", + "ref:EU:EVSE": "Non concerné", + "ref": "01FGQVYRS0FX7TJ3JE1DEKMBBW", + "name": "DALTONER CHERBOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-01", + "note": "", + "source:date": "2021-09-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3077697, + 48.8492973 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0704", + "ref": "FR*V75*PPX07*04", + "name": "Paris | Avenue de Ségur 55", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.314834, + 48.8587263 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0703", + "ref": "FR*V75*PPX07*03", + "name": "Paris | Rue Constantine 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.299582, + 48.85807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0708", + "ref": "FR*V75*PPX07*08", + "name": "Paris | Avenue de la Bourdonnais 45", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.314834, + 48.8587263 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0703", + "ref": "FR*V75*PPX07*03", + "name": "Paris | Rue Constantine 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.314834, + 48.8587263 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0703", + "ref": "FR*V75*PPX07*03", + "name": "Paris | Rue Constantine 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.314834, + 48.8587263 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0703", + "ref": "FR*V75*PPX07*03", + "name": "Paris | Rue Constantine 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.314834, + 48.8587263 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0703", + "ref": "FR*V75*PPX07*03", + "name": "Paris | Rue Constantine 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3041857865350335, + 48.85829535733236 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0702", + "ref": "FR*V75*PPX07*02", + "name": "Paris | Avenue Bosquet 41", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.314834, + 48.8587263 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0703", + "ref": "FR*V75*PPX07*03", + "name": "Paris | Rue Constantine 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3041857865350335, + 48.85829535733236 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0702", + "ref": "FR*V75*PPX07*02", + "name": "Paris | Avenue Bosquet 41", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3041857865350335, + 48.85829535733236 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0702", + "ref": "FR*V75*PPX07*02", + "name": "Paris | Avenue Bosquet 41", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3097645, + 48.8560129 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0707", + "ref": "FR*V75*PPX07*07", + "name": "Paris | Boulevard de la Tour-Maubourg 76", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3041857865350335, + 48.85829535733236 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0702", + "ref": "FR*V75*PPX07*02", + "name": "Paris | Avenue Bosquet 41", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3041857865350335, + 48.85829535733236 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0702", + "ref": "FR*V75*PPX07*02", + "name": "Paris | Avenue Bosquet 41", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.299582, + 48.85807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0708", + "ref": "FR*V75*PPX07*08", + "name": "Paris | Avenue de la Bourdonnais 45", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3097645, + 48.8560129 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0707", + "ref": "FR*V75*PPX07*07", + "name": "Paris | Boulevard de la Tour-Maubourg 76", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3077697, + 48.8492973 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0704", + "ref": "FR*V75*PPX07*04", + "name": "Paris | Avenue de Ségur 55", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3077697, + 48.8492973 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0704", + "ref": "FR*V75*PPX07*04", + "name": "Paris | Avenue de Ségur 55", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3077697, + 48.8492973 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0704", + "ref": "FR*V75*PPX07*04", + "name": "Paris | Avenue de Ségur 55", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3077697, + 48.8492973 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0704", + "ref": "FR*V75*PPX07*04", + "name": "Paris | Avenue de Ségur 55", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3077697, + 48.8492973 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0704", + "ref": "FR*V75*PPX07*04", + "name": "Paris | Avenue de Ségur 55", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315725, + 48.8482825 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0705", + "ref": "FR*V75*PPX07*05", + "name": "Paris | Rue Duroc 2", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315725, + 48.8482825 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0705", + "ref": "FR*V75*PPX07*05", + "name": "Paris | Rue Duroc 2", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315725, + 48.8482825 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0705", + "ref": "FR*V75*PPX07*05", + "name": "Paris | Rue Duroc 2", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315725, + 48.8482825 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0705", + "ref": "FR*V75*PPX07*05", + "name": "Paris | Rue Duroc 2", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315725, + 48.8482825 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0705", + "ref": "FR*V75*PPX07*05", + "name": "Paris | Rue Duroc 2", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315725, + 48.8482825 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0705", + "ref": "FR*V75*PPX07*05", + "name": "Paris | Rue Duroc 2", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3097645, + 48.8560129 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0707", + "ref": "FR*V75*PPX07*07", + "name": "Paris | Boulevard de la Tour-Maubourg 76", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3245048, + 48.8598769 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0706", + "ref": "FR*V75*PPX07*06", + "name": "Paris | Rue de Bellechasse 5", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3245048, + 48.8598769 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0706", + "ref": "FR*V75*PPX07*06", + "name": "Paris | Rue de Bellechasse 5", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3245048, + 48.8598769 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0706", + "ref": "FR*V75*PPX07*06", + "name": "Paris | Rue de Bellechasse 5", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3245048, + 48.8598769 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0706", + "ref": "FR*V75*PPX07*06", + "name": "Paris | Rue de Bellechasse 5", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3245048, + 48.8598769 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0706", + "ref": "FR*V75*PPX07*06", + "name": "Paris | Rue de Bellechasse 5", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3097645, + 48.8560129 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0707", + "ref": "FR*V75*PPX07*07", + "name": "Paris | Boulevard de la Tour-Maubourg 76", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3097645, + 48.8560129 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0707", + "ref": "FR*V75*PPX07*07", + "name": "Paris | Boulevard de la Tour-Maubourg 76", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3097645, + 48.8560129 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0707", + "ref": "FR*V75*PPX07*07", + "name": "Paris | Boulevard de la Tour-Maubourg 76", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315725, + 48.8482825 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0705", + "ref": "FR*V75*PPX07*05", + "name": "Paris | Rue Duroc 2", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3409177, + 48.8777212 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0911", + "ref": "FR*V75*PPX09*11", + "name": "Paris | Rue Milton 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3190123, + 48.8530403 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0701", + "ref": "FR*V75*PPX07*01", + "name": "Paris | Rue Chanaleilles 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-02-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3321208, + 48.8471079 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0606", + "ref": "FR*V75*PPX06*06", + "name": "Paris | Rue de Fleurus 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3280363, + 48.8430076 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0608", + "ref": "FR*V75*PPX06*08", + "name": "Paris | Rue Péguy 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3280363, + 48.8430076 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0608", + "ref": "FR*V75*PPX06*08", + "name": "Paris | Rue Péguy 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3314662, + 48.8524509 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0607", + "ref": "FR*V75*PPX06*07", + "name": "Paris | Rue du Four 38", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3314662, + 48.8524509 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0607", + "ref": "FR*V75*PPX06*07", + "name": "Paris | Rue du Four 38", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3314662, + 48.8524509 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0607", + "ref": "FR*V75*PPX06*07", + "name": "Paris | Rue du Four 38", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3314662, + 48.8524509 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0607", + "ref": "FR*V75*PPX06*07", + "name": "Paris | Rue du Four 38", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3314662, + 48.8524509 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0607", + "ref": "FR*V75*PPX06*07", + "name": "Paris | Rue du Four 38", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3314662, + 48.8524509 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0607", + "ref": "FR*V75*PPX06*07", + "name": "Paris | Rue du Four 38", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3321208, + 48.8471079 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0606", + "ref": "FR*V75*PPX06*06", + "name": "Paris | Rue de Fleurus 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3321208, + 48.8471079 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0606", + "ref": "FR*V75*PPX06*06", + "name": "Paris | Rue de Fleurus 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3280363, + 48.8430076 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0608", + "ref": "FR*V75*PPX06*08", + "name": "Paris | Rue Péguy 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3321208, + 48.8471079 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0606", + "ref": "FR*V75*PPX06*06", + "name": "Paris | Rue de Fleurus 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3321208, + 48.8471079 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0606", + "ref": "FR*V75*PPX06*06", + "name": "Paris | Rue de Fleurus 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3321208, + 48.8471079 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0606", + "ref": "FR*V75*PPX06*06", + "name": "Paris | Rue de Fleurus 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3371078, + 48.8552045 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0605", + "ref": "FR*V75*PPX06*05", + "name": "Paris | Rue Jacques Callot 5", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3371078, + 48.8552045 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0605", + "ref": "FR*V75*PPX06*05", + "name": "Paris | Rue Jacques Callot 5", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3371078, + 48.8552045 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0605", + "ref": "FR*V75*PPX06*05", + "name": "Paris | Rue Jacques Callot 5", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3371078, + 48.8552045 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0605", + "ref": "FR*V75*PPX06*05", + "name": "Paris | Rue Jacques Callot 5", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3239783, + 48.847875 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0604", + "ref": "FR*V75*PPX06*04", + "name": "Paris | Rue de Bérite 3", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3239783, + 48.847875 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0604", + "ref": "FR*V75*PPX06*04", + "name": "Paris | Rue de Bérite 3", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3280363, + 48.8430076 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0608", + "ref": "FR*V75*PPX06*08", + "name": "Paris | Rue Péguy 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3280363, + 48.8430076 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0608", + "ref": "FR*V75*PPX06*08", + "name": "Paris | Rue Péguy 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3409177, + 48.8777212 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0911", + "ref": "FR*V75*PPX09*11", + "name": "Paris | Rue Milton 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3363896, + 48.8425631 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0611", + "ref": "FR*V75*PPX06*11", + "name": "Paris | Rue Michelet 6", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3190123, + 48.8530403 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0701", + "ref": "FR*V75*PPX07*01", + "name": "Paris | Rue Chanaleilles 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-02-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3190123, + 48.8530403 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0701", + "ref": "FR*V75*PPX07*01", + "name": "Paris | Rue Chanaleilles 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-02-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3190123, + 48.8530403 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0701", + "ref": "FR*V75*PPX07*01", + "name": "Paris | Rue Chanaleilles 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-02-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3190123, + 48.8530403 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0701", + "ref": "FR*V75*PPX07*01", + "name": "Paris | Rue Chanaleilles 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-02-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3190123, + 48.8530403 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0701", + "ref": "FR*V75*PPX07*01", + "name": "Paris | Rue Chanaleilles 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-02-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3363896, + 48.8425631 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0611", + "ref": "FR*V75*PPX06*11", + "name": "Paris | Rue Michelet 6", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3363896, + 48.8425631 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0611", + "ref": "FR*V75*PPX06*11", + "name": "Paris | Rue Michelet 6", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3363896, + 48.8425631 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0611", + "ref": "FR*V75*PPX06*11", + "name": "Paris | Rue Michelet 6", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3363896, + 48.8425631 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0611", + "ref": "FR*V75*PPX06*11", + "name": "Paris | Rue Michelet 6", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3363896, + 48.8425631 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0611", + "ref": "FR*V75*PPX06*11", + "name": "Paris | Rue Michelet 6", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3280363, + 48.8430076 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0608", + "ref": "FR*V75*PPX06*08", + "name": "Paris | Rue Péguy 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3363896, + 48.8425631 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0611", + "ref": "FR*V75*PPX06*11", + "name": "Paris | Rue Michelet 6", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.333149, + 48.84189 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0610", + "ref": "FR*V75*PPX06*10", + "name": "Paris | Rue Joseph Bara 15", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.333149, + 48.84189 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0610", + "ref": "FR*V75*PPX06*10", + "name": "Paris | Rue Joseph Bara 15", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.333149, + 48.84189 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0610", + "ref": "FR*V75*PPX06*10", + "name": "Paris | Rue Joseph Bara 15", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.333149, + 48.84189 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0610", + "ref": "FR*V75*PPX06*10", + "name": "Paris | Rue Joseph Bara 15", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.333149, + 48.84189 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0610", + "ref": "FR*V75*PPX06*10", + "name": "Paris | Rue Joseph Bara 15", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3287351, + 48.8489613 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0609", + "ref": "FR*V75*PPX06*09", + "name": "Paris | Rue de Rennes 105", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3287351, + 48.8489613 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0609", + "ref": "FR*V75*PPX06*09", + "name": "Paris | Rue de Rennes 105", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3287351, + 48.8489613 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0609", + "ref": "FR*V75*PPX06*09", + "name": "Paris | Rue de Rennes 105", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.299582, + 48.85807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0708", + "ref": "FR*V75*PPX07*08", + "name": "Paris | Avenue de la Bourdonnais 45", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.299582, + 48.85807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0708", + "ref": "FR*V75*PPX07*08", + "name": "Paris | Avenue de la Bourdonnais 45", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.299582, + 48.85807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0708", + "ref": "FR*V75*PPX07*08", + "name": "Paris | Avenue de la Bourdonnais 45", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3082976, + 48.8761878 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0820", + "ref": "FR*V75*PPX08*20", + "name": "Paris | Rue de Courcelles 40", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3226488, + 48.870601 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0818", + "ref": "FR*V75*PPX08*18", + "name": "Paris | boulevard Malesherbes 7", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3226488, + 48.870601 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0818", + "ref": "FR*V75*PPX08*18", + "name": "Paris | boulevard Malesherbes 7", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3226488, + 48.870601 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0818", + "ref": "FR*V75*PPX08*18", + "name": "Paris | boulevard Malesherbes 7", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3226488, + 48.870601 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0818", + "ref": "FR*V75*PPX08*18", + "name": "Paris | boulevard Malesherbes 7", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3226488, + 48.870601 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0818", + "ref": "FR*V75*PPX08*18", + "name": "Paris | boulevard Malesherbes 7", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310832, + 48.8778333 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0819", + "ref": "FR*V75*PPX08*19", + "name": "Paris | Rue de Monceau 43", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310832, + 48.8778333 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0819", + "ref": "FR*V75*PPX08*19", + "name": "Paris | Rue de Monceau 43", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310832, + 48.8778333 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0819", + "ref": "FR*V75*PPX08*19", + "name": "Paris | Rue de Monceau 43", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310832, + 48.8778333 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0819", + "ref": "FR*V75*PPX08*19", + "name": "Paris | Rue de Monceau 43", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310832, + 48.8778333 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0819", + "ref": "FR*V75*PPX08*19", + "name": "Paris | Rue de Monceau 43", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310832, + 48.8778333 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0819", + "ref": "FR*V75*PPX08*19", + "name": "Paris | Rue de Monceau 43", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3082976, + 48.8761878 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0820", + "ref": "FR*V75*PPX08*20", + "name": "Paris | Rue de Courcelles 40", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3041662, + 48.8724475 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0812", + "ref": "FR*V75*PPX08*12", + "name": "Paris | Rue de Berri 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3082976, + 48.8761878 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0820", + "ref": "FR*V75*PPX08*20", + "name": "Paris | Rue de Courcelles 40", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3082976, + 48.8761878 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0820", + "ref": "FR*V75*PPX08*20", + "name": "Paris | Rue de Courcelles 40", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3082976, + 48.8761878 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0820", + "ref": "FR*V75*PPX08*20", + "name": "Paris | Rue de Courcelles 40", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3082976, + 48.8761878 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0820", + "ref": "FR*V75*PPX08*20", + "name": "Paris | Rue de Courcelles 40", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326167, + 48.87236 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0821", + "ref": "FR*V75*PPX08*21", + "name": "Paris | Rue Tronchet 19", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326167, + 48.87236 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0821", + "ref": "FR*V75*PPX08*21", + "name": "Paris | Rue Tronchet 19", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326167, + 48.87236 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0821", + "ref": "FR*V75*PPX08*21", + "name": "Paris | Rue Tronchet 19", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326167, + 48.87236 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0821", + "ref": "FR*V75*PPX08*21", + "name": "Paris | Rue Tronchet 19", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326167, + 48.87236 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0821", + "ref": "FR*V75*PPX08*21", + "name": "Paris | Rue Tronchet 19", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326167, + 48.87236 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0821", + "ref": "FR*V75*PPX08*21", + "name": "Paris | Rue Tronchet 19", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3283632, + 48.8804478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0901", + "ref": "FR*V75*PPX09*01", + "name": "Paris | Rue Jules Lefèbvre 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3226488, + 48.870601 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0818", + "ref": "FR*V75*PPX08*18", + "name": "Paris | boulevard Malesherbes 7", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.312597, + 48.87006 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0817", + "ref": "FR*V75*PPX08*17", + "name": "Paris | Avenue Matignon 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.312597, + 48.87006 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0817", + "ref": "FR*V75*PPX08*17", + "name": "Paris | Avenue Matignon 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.312597, + 48.87006 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0817", + "ref": "FR*V75*PPX08*17", + "name": "Paris | Avenue Matignon 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3041662, + 48.8724475 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0812", + "ref": "FR*V75*PPX08*12", + "name": "Paris | Rue de Berri 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3041662, + 48.8724475 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0812", + "ref": "FR*V75*PPX08*12", + "name": "Paris | Rue de Berri 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3046348, + 48.8682112 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0813", + "ref": "FR*V75*PPX08*13", + "name": "Paris | Rue François 1er 38", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3046348, + 48.8682112 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0813", + "ref": "FR*V75*PPX08*13", + "name": "Paris | Rue François 1er 38", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3046348, + 48.8682112 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0813", + "ref": "FR*V75*PPX08*13", + "name": "Paris | Rue François 1er 38", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3046348, + 48.8682112 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0813", + "ref": "FR*V75*PPX08*13", + "name": "Paris | Rue François 1er 38", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3046348, + 48.8682112 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0813", + "ref": "FR*V75*PPX08*13", + "name": "Paris | Rue François 1er 38", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3046348, + 48.8682112 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0813", + "ref": "FR*V75*PPX08*13", + "name": "Paris | Rue François 1er 38", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301121, + 48.87057 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0814", + "ref": "FR*V75*PPX08*14", + "name": "Paris | Avenue George V 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301121, + 48.87057 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0814", + "ref": "FR*V75*PPX08*14", + "name": "Paris | Avenue George V 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301121, + 48.87057 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0814", + "ref": "FR*V75*PPX08*14", + "name": "Paris | Avenue George V 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301121, + 48.87057 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0814", + "ref": "FR*V75*PPX08*14", + "name": "Paris | Avenue George V 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301121, + 48.87057 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0814", + "ref": "FR*V75*PPX08*14", + "name": "Paris | Avenue George V 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301121, + 48.87057 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0814", + "ref": "FR*V75*PPX08*14", + "name": "Paris | Avenue George V 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3263307, + 48.8795963 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0815", + "ref": "FR*V75*PPX08*15", + "name": "Paris | Rue de Liège 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3263307, + 48.8795963 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0815", + "ref": "FR*V75*PPX08*15", + "name": "Paris | Rue de Liège 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3263307, + 48.8795963 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0815", + "ref": "FR*V75*PPX08*15", + "name": "Paris | Rue de Liège 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3263307, + 48.8795963 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0815", + "ref": "FR*V75*PPX08*15", + "name": "Paris | Rue de Liège 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3263307, + 48.8795963 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0815", + "ref": "FR*V75*PPX08*15", + "name": "Paris | Rue de Liège 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3263307, + 48.8795963 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0815", + "ref": "FR*V75*PPX08*15", + "name": "Paris | Rue de Liège 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.312597, + 48.87006 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0817", + "ref": "FR*V75*PPX08*17", + "name": "Paris | Avenue Matignon 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.312597, + 48.87006 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0817", + "ref": "FR*V75*PPX08*17", + "name": "Paris | Avenue Matignon 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.312597, + 48.87006 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0817", + "ref": "FR*V75*PPX08*17", + "name": "Paris | Avenue Matignon 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3283632, + 48.8804478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0901", + "ref": "FR*V75*PPX09*01", + "name": "Paris | Rue Jules Lefèbvre 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3283632, + 48.8804478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0901", + "ref": "FR*V75*PPX09*01", + "name": "Paris | Rue Jules Lefèbvre 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3283632, + 48.8804478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0901", + "ref": "FR*V75*PPX09*01", + "name": "Paris | Rue Jules Lefèbvre 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326691, + 48.86972 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0907", + "ref": "FR*V75*PPX09*07", + "name": "Paris | boulevard de la Madeleine 8", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326691, + 48.86972 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0907", + "ref": "FR*V75*PPX09*07", + "name": "Paris | boulevard de la Madeleine 8", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326691, + 48.86972 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0907", + "ref": "FR*V75*PPX09*07", + "name": "Paris | boulevard de la Madeleine 8", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3454871, + 48.8829733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0908", + "ref": "FR*V75*PPX09*08", + "name": "Paris | boulevard Rochechouart 31", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3454871, + 48.8829733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0908", + "ref": "FR*V75*PPX09*08", + "name": "Paris | boulevard Rochechouart 31", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3454871, + 48.8829733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0908", + "ref": "FR*V75*PPX09*08", + "name": "Paris | boulevard Rochechouart 31", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3454871, + 48.8829733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0908", + "ref": "FR*V75*PPX09*08", + "name": "Paris | boulevard Rochechouart 31", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3454871, + 48.8829733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0908", + "ref": "FR*V75*PPX09*08", + "name": "Paris | boulevard Rochechouart 31", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3454871, + 48.8829733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0908", + "ref": "FR*V75*PPX09*08", + "name": "Paris | boulevard Rochechouart 31", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3454871, + 48.8829733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0908", + "ref": "FR*V75*PPX09*08", + "name": "Paris | boulevard Rochechouart 31", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.342083, + 48.875464 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0909", + "ref": "FR*V75*PPX09*09", + "name": "Paris | Rue la Fayette 56", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.342083, + 48.875464 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0909", + "ref": "FR*V75*PPX09*09", + "name": "Paris | Rue la Fayette 56", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.342083, + 48.875464 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0909", + "ref": "FR*V75*PPX09*09", + "name": "Paris | Rue la Fayette 56", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.342083, + 48.875464 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0909", + "ref": "FR*V75*PPX09*09", + "name": "Paris | Rue la Fayette 56", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.342083, + 48.875464 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0909", + "ref": "FR*V75*PPX09*09", + "name": "Paris | Rue la Fayette 56", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.342083, + 48.875464 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0909", + "ref": "FR*V75*PPX09*09", + "name": "Paris | Rue la Fayette 56", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3387762, + 48.8723178 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0910", + "ref": "FR*V75*PPX09*10", + "name": "Paris | boulevard Haussmann 6", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3387762, + 48.8723178 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0910", + "ref": "FR*V75*PPX09*10", + "name": "Paris | boulevard Haussmann 6", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3387762, + 48.8723178 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0910", + "ref": "FR*V75*PPX09*10", + "name": "Paris | boulevard Haussmann 6", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3387762, + 48.8723178 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0910", + "ref": "FR*V75*PPX09*10", + "name": "Paris | boulevard Haussmann 6", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3387762, + 48.8723178 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0910", + "ref": "FR*V75*PPX09*10", + "name": "Paris | boulevard Haussmann 6", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3409177, + 48.8777212 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0911", + "ref": "FR*V75*PPX09*11", + "name": "Paris | Rue Milton 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3409177, + 48.8777212 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0911", + "ref": "FR*V75*PPX09*11", + "name": "Paris | Rue Milton 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3409177, + 48.8777212 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0911", + "ref": "FR*V75*PPX09*11", + "name": "Paris | Rue Milton 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326691, + 48.86972 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0907", + "ref": "FR*V75*PPX09*07", + "name": "Paris | boulevard de la Madeleine 8", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3466528, + 48.8735894 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0906", + "ref": "FR*V75*PPX09*06", + "name": "Paris | Rue du conservatoire 13", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3283632, + 48.8804478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0901", + "ref": "FR*V75*PPX09*01", + "name": "Paris | Rue Jules Lefèbvre 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3466528, + 48.8735894 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0906", + "ref": "FR*V75*PPX09*06", + "name": "Paris | Rue du conservatoire 13", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3283632, + 48.8804478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0901", + "ref": "FR*V75*PPX09*01", + "name": "Paris | Rue Jules Lefèbvre 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3283632, + 48.8804478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0901", + "ref": "FR*V75*PPX09*01", + "name": "Paris | Rue Jules Lefèbvre 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3382898, + 48.875921 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0902", + "ref": "FR*V75*PPX09*02", + "name": "Paris | Rue de Chateaudun 21", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3382898, + 48.875921 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0902", + "ref": "FR*V75*PPX09*02", + "name": "Paris | Rue de Chateaudun 21", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3382898, + 48.875921 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0902", + "ref": "FR*V75*PPX09*02", + "name": "Paris | Rue de Chateaudun 21", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3347774, + 48.878643 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0903", + "ref": "FR*V75*PPX09*03", + "name": "Paris | Rue d'Aumale 28", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3347774, + 48.878643 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0903", + "ref": "FR*V75*PPX09*03", + "name": "Paris | Rue d'Aumale 28", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3347774, + 48.878643 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0903", + "ref": "FR*V75*PPX09*03", + "name": "Paris | Rue d'Aumale 28", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3347774, + 48.878643 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0903", + "ref": "FR*V75*PPX09*03", + "name": "Paris | Rue d'Aumale 28", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336666, + 48.88109 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0904", + "ref": "FR*V75*PPX09*04", + "name": "Paris | Rue Victor Massé 35", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336666, + 48.88109 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0904", + "ref": "FR*V75*PPX09*04", + "name": "Paris | Rue Victor Massé 35", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336666, + 48.88109 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0904", + "ref": "FR*V75*PPX09*04", + "name": "Paris | Rue Victor Massé 35", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336666, + 48.88109 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0904", + "ref": "FR*V75*PPX09*04", + "name": "Paris | Rue Victor Massé 35", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336666, + 48.88109 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0904", + "ref": "FR*V75*PPX09*04", + "name": "Paris | Rue Victor Massé 35", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3338862, + 48.8716413 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0905", + "ref": "FR*V75*PPX09*05", + "name": "Paris | Rue de la Chaussée d'Antin 5", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3338862, + 48.8716413 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0905", + "ref": "FR*V75*PPX09*05", + "name": "Paris | Rue de la Chaussée d'Antin 5", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3338862, + 48.8716413 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0905", + "ref": "FR*V75*PPX09*05", + "name": "Paris | Rue de la Chaussée d'Antin 5", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3338862, + 48.8716413 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0905", + "ref": "FR*V75*PPX09*05", + "name": "Paris | Rue de la Chaussée d'Antin 5", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3338862, + 48.8716413 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0905", + "ref": "FR*V75*PPX09*05", + "name": "Paris | Rue de la Chaussée d'Antin 5", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3466528, + 48.8735894 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0906", + "ref": "FR*V75*PPX09*06", + "name": "Paris | Rue du conservatoire 13", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3466528, + 48.8735894 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0906", + "ref": "FR*V75*PPX09*06", + "name": "Paris | Rue du conservatoire 13", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3466528, + 48.8735894 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0906", + "ref": "FR*V75*PPX09*06", + "name": "Paris | Rue du conservatoire 13", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3466528, + 48.8735894 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0906", + "ref": "FR*V75*PPX09*06", + "name": "Paris | Rue du conservatoire 13", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3041662, + 48.8724475 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0812", + "ref": "FR*V75*PPX08*12", + "name": "Paris | Rue de Berri 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3041662, + 48.8724475 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0812", + "ref": "FR*V75*PPX08*12", + "name": "Paris | Rue de Berri 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.299582, + 48.85807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0708", + "ref": "FR*V75*PPX07*08", + "name": "Paris | Avenue de la Bourdonnais 45", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3152447, + 48.8558178 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0715", + "ref": "FR*V75*PPX07*15", + "name": "Paris | Boulevard des Invalides 21", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310588, + 48.85806 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0713", + "ref": "FR*V75*PPX07*13", + "name": "Paris | Rue de Grenelle 152", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310588, + 48.85806 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0713", + "ref": "FR*V75*PPX07*13", + "name": "Paris | Rue de Grenelle 152", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3195393, + 48.8593659 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0714", + "ref": "FR*V75*PPX07*14", + "name": "Paris | Rue de Martignac 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3195393, + 48.8593659 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0714", + "ref": "FR*V75*PPX07*14", + "name": "Paris | Rue de Martignac 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3195393, + 48.8593659 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0714", + "ref": "FR*V75*PPX07*14", + "name": "Paris | Rue de Martignac 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3195393, + 48.8593659 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0714", + "ref": "FR*V75*PPX07*14", + "name": "Paris | Rue de Martignac 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3195393, + 48.8593659 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0714", + "ref": "FR*V75*PPX07*14", + "name": "Paris | Rue de Martignac 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3195393, + 48.8593659 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0714", + "ref": "FR*V75*PPX07*14", + "name": "Paris | Rue de Martignac 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3152447, + 48.8558178 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0715", + "ref": "FR*V75*PPX07*15", + "name": "Paris | Boulevard des Invalides 21", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3152447, + 48.8558178 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0715", + "ref": "FR*V75*PPX07*15", + "name": "Paris | Boulevard des Invalides 21", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3152447, + 48.8558178 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0715", + "ref": "FR*V75*PPX07*15", + "name": "Paris | Boulevard des Invalides 21", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3152447, + 48.8558178 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0715", + "ref": "FR*V75*PPX07*15", + "name": "Paris | Boulevard des Invalides 21", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3041662, + 48.8724475 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0812", + "ref": "FR*V75*PPX08*12", + "name": "Paris | Rue de Berri 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3152447, + 48.8558178 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0715", + "ref": "FR*V75*PPX07*15", + "name": "Paris | Boulevard des Invalides 21", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3069867, + 48.8611286 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0716", + "ref": "FR*V75*PPX07*16", + "name": "Paris | Rue Jean Nicot 10", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3069867, + 48.8611286 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0716", + "ref": "FR*V75*PPX07*16", + "name": "Paris | Rue Jean Nicot 10", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3069867, + 48.8611286 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0716", + "ref": "FR*V75*PPX07*16", + "name": "Paris | Rue Jean Nicot 10", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3069867, + 48.8611286 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0716", + "ref": "FR*V75*PPX07*16", + "name": "Paris | Rue Jean Nicot 10", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.329982, + 48.85461 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0717", + "ref": "FR*V75*PPX07*17", + "name": "Paris | boulevard Saint -Germain 188", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.329982, + 48.85461 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0717", + "ref": "FR*V75*PPX07*17", + "name": "Paris | boulevard Saint -Germain 188", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.329982, + 48.85461 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0717", + "ref": "FR*V75*PPX07*17", + "name": "Paris | boulevard Saint -Germain 188", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.329982, + 48.85461 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0717", + "ref": "FR*V75*PPX07*17", + "name": "Paris | boulevard Saint -Germain 188", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.329982, + 48.85461 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0717", + "ref": "FR*V75*PPX07*17", + "name": "Paris | boulevard Saint -Germain 188", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3036203, + 48.8696448 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0801", + "ref": "FR*V75*PPX08*01", + "name": "Paris | Rue Pierre Charron 62", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310588, + 48.85806 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0713", + "ref": "FR*V75*PPX07*13", + "name": "Paris | Rue de Grenelle 152", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310588, + 48.85806 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0713", + "ref": "FR*V75*PPX07*13", + "name": "Paris | Rue de Grenelle 152", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310588, + 48.85806 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0713", + "ref": "FR*V75*PPX07*13", + "name": "Paris | Rue de Grenelle 152", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310588, + 48.85806 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0713", + "ref": "FR*V75*PPX07*13", + "name": "Paris | Rue de Grenelle 152", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3237968, + 48.8508194 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0709", + "ref": "FR*V75*PPX07*09", + "name": "Paris | Rue du Bac 142", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3237968, + 48.8508194 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0709", + "ref": "FR*V75*PPX07*09", + "name": "Paris | Rue du Bac 142", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3237968, + 48.8508194 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0709", + "ref": "FR*V75*PPX07*09", + "name": "Paris | Rue du Bac 142", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3237968, + 48.8508194 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0709", + "ref": "FR*V75*PPX07*09", + "name": "Paris | Rue du Bac 142", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3237968, + 48.8508194 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0709", + "ref": "FR*V75*PPX07*09", + "name": "Paris | Rue du Bac 142", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3106373, + 48.8511276 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0710", + "ref": "FR*V75*PPX07*10", + "name": "Paris | Avenue Duquesne 26", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3106373, + 48.8511276 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0710", + "ref": "FR*V75*PPX07*10", + "name": "Paris | Avenue Duquesne 26", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3106373, + 48.8511276 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0710", + "ref": "FR*V75*PPX07*10", + "name": "Paris | Avenue Duquesne 26", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3106373, + 48.8511276 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0710", + "ref": "FR*V75*PPX07*10", + "name": "Paris | Avenue Duquesne 26", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3106373, + 48.8511276 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0710", + "ref": "FR*V75*PPX07*10", + "name": "Paris | Avenue Duquesne 26", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3106373, + 48.8511276 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0710", + "ref": "FR*V75*PPX07*10", + "name": "Paris | Avenue Duquesne 26", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3080758, + 48.8561697 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0711", + "ref": "FR*V75*PPX07*11", + "name": "Paris | Rue Ernest Psichari 13", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3080758, + 48.8561697 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0711", + "ref": "FR*V75*PPX07*11", + "name": "Paris | Rue Ernest Psichari 13", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3080758, + 48.8561697 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0711", + "ref": "FR*V75*PPX07*11", + "name": "Paris | Rue Ernest Psichari 13", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3080758, + 48.8561697 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0711", + "ref": "FR*V75*PPX07*11", + "name": "Paris | Rue Ernest Psichari 13", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3080758, + 48.8561697 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0711", + "ref": "FR*V75*PPX07*11", + "name": "Paris | Rue Ernest Psichari 13", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3080758, + 48.8561697 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0711", + "ref": "FR*V75*PPX07*11", + "name": "Paris | Rue Ernest Psichari 13", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3129161, + 48.8512827 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0712", + "ref": "FR*V75*PPX07*12", + "name": "Paris | place du Président Mithouard 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3129161, + 48.8512827 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0712", + "ref": "FR*V75*PPX07*12", + "name": "Paris | place du Président Mithouard 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3129161, + 48.8512827 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0712", + "ref": "FR*V75*PPX07*12", + "name": "Paris | place du Président Mithouard 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3129161, + 48.8512827 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0712", + "ref": "FR*V75*PPX07*12", + "name": "Paris | place du Président Mithouard 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3129161, + 48.8512827 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0712", + "ref": "FR*V75*PPX07*12", + "name": "Paris | place du Président Mithouard 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3129161, + 48.8512827 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0712", + "ref": "FR*V75*PPX07*12", + "name": "Paris | place du Président Mithouard 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3036203, + 48.8696448 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0801", + "ref": "FR*V75*PPX08*01", + "name": "Paris | Rue Pierre Charron 62", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3036203, + 48.8696448 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0801", + "ref": "FR*V75*PPX08*01", + "name": "Paris | Rue Pierre Charron 62", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3036203, + 48.8696448 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0801", + "ref": "FR*V75*PPX08*01", + "name": "Paris | Rue Pierre Charron 62", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32056, + 48.881834 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0807", + "ref": "FR*V75*PPX08*07", + "name": "Paris | Rue de Rome 73", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.325922, + 48.8830163 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0808", + "ref": "FR*V75*PPX08*08", + "name": "Paris | Boulevard des Batignolles 9", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.325922, + 48.8830163 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0808", + "ref": "FR*V75*PPX08*08", + "name": "Paris | Boulevard des Batignolles 9", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.325922, + 48.8830163 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0808", + "ref": "FR*V75*PPX08*08", + "name": "Paris | Boulevard des Batignolles 9", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3084191, + 48.8657733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0809", + "ref": "FR*V75*PPX08*09", + "name": "Paris | Rue Francois 1er 7", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3084191, + 48.8657733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0809", + "ref": "FR*V75*PPX08*09", + "name": "Paris | Rue Francois 1er 7", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3084191, + 48.8657733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0809", + "ref": "FR*V75*PPX08*09", + "name": "Paris | Rue Francois 1er 7", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3084191, + 48.8657733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0809", + "ref": "FR*V75*PPX08*09", + "name": "Paris | Rue Francois 1er 7", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3084191, + 48.8657733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0809", + "ref": "FR*V75*PPX08*09", + "name": "Paris | Rue Francois 1er 7", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3084191, + 48.8657733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0809", + "ref": "FR*V75*PPX08*09", + "name": "Paris | Rue Francois 1er 7", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3084191, + 48.8657733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0809", + "ref": "FR*V75*PPX08*09", + "name": "Paris | Rue Francois 1er 7", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3044935, + 48.878351 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0810", + "ref": "FR*V75*PPX08*10", + "name": "Paris | Rue de Courcelles 69", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3044935, + 48.878351 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0810", + "ref": "FR*V75*PPX08*10", + "name": "Paris | Rue de Courcelles 69", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3044935, + 48.878351 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0810", + "ref": "FR*V75*PPX08*10", + "name": "Paris | Rue de Courcelles 69", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3044935, + 48.878351 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0810", + "ref": "FR*V75*PPX08*10", + "name": "Paris | Rue de Courcelles 69", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3044935, + 48.878351 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0810", + "ref": "FR*V75*PPX08*10", + "name": "Paris | Rue de Courcelles 69", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3044935, + 48.878351 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0810", + "ref": "FR*V75*PPX08*10", + "name": "Paris | Rue de Courcelles 69", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3044935, + 48.878351 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0810", + "ref": "FR*V75*PPX08*10", + "name": "Paris | Rue de Courcelles 69", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.314663, + 48.8737 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0811", + "ref": "FR*V75*PPX08*11", + "name": "Paris | Rue la Boétie 37", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.314663, + 48.8737 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0811", + "ref": "FR*V75*PPX08*11", + "name": "Paris | Rue la Boétie 37", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.314663, + 48.8737 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0811", + "ref": "FR*V75*PPX08*11", + "name": "Paris | Rue la Boétie 37", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.314663, + 48.8737 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0811", + "ref": "FR*V75*PPX08*11", + "name": "Paris | Rue la Boétie 37", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.314663, + 48.8737 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0811", + "ref": "FR*V75*PPX08*11", + "name": "Paris | Rue la Boétie 37", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.314663, + 48.8737 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0811", + "ref": "FR*V75*PPX08*11", + "name": "Paris | Rue la Boétie 37", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.325922, + 48.8830163 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0808", + "ref": "FR*V75*PPX08*08", + "name": "Paris | Boulevard des Batignolles 9", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32056, + 48.881834 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0807", + "ref": "FR*V75*PPX08*07", + "name": "Paris | Rue de Rome 73", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3008886, + 48.8734765 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0802", + "ref": "FR*V75*PPX08*02", + "name": "Paris | Rue du Chateaubriand 19", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32056, + 48.881834 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0807", + "ref": "FR*V75*PPX08*07", + "name": "Paris | Rue de Rome 73", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3008886, + 48.8734765 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0802", + "ref": "FR*V75*PPX08*02", + "name": "Paris | Rue du Chateaubriand 19", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3008886, + 48.8734765 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0802", + "ref": "FR*V75*PPX08*02", + "name": "Paris | Rue du Chateaubriand 19", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3008886, + 48.8734765 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0802", + "ref": "FR*V75*PPX08*02", + "name": "Paris | Rue du Chateaubriand 19", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3008886, + 48.8734765 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0802", + "ref": "FR*V75*PPX08*02", + "name": "Paris | Rue du Chateaubriand 19", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3008886, + 48.8734765 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0802", + "ref": "FR*V75*PPX08*02", + "name": "Paris | Rue du Chateaubriand 19", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3193886, + 48.8728324 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0803", + "ref": "FR*V75*PPX08*03", + "name": "Paris | Rue d'Astorg 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3193886, + 48.8728324 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0803", + "ref": "FR*V75*PPX08*03", + "name": "Paris | Rue d'Astorg 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3193886, + 48.8728324 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0803", + "ref": "FR*V75*PPX08*03", + "name": "Paris | Rue d'Astorg 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3193886, + 48.8728324 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0803", + "ref": "FR*V75*PPX08*03", + "name": "Paris | Rue d'Astorg 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3193886, + 48.8728324 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0803", + "ref": "FR*V75*PPX08*03", + "name": "Paris | Rue d'Astorg 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3193886, + 48.8728324 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0803", + "ref": "FR*V75*PPX08*03", + "name": "Paris | Rue d'Astorg 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2976358, + 48.8741642 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0805", + "ref": "FR*V75*PPX08*05", + "name": "Paris | Avenue de Friedland 42", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2976358, + 48.8741642 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0805", + "ref": "FR*V75*PPX08*05", + "name": "Paris | Avenue de Friedland 42", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2976358, + 48.8741642 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0805", + "ref": "FR*V75*PPX08*05", + "name": "Paris | Avenue de Friedland 42", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2976358, + 48.8741642 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0805", + "ref": "FR*V75*PPX08*05", + "name": "Paris | Avenue de Friedland 42", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3225683, + 48.8783912 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0806", + "ref": "FR*V75*PPX08*06", + "name": "Paris | Rue de Rome 46", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3225683, + 48.8783912 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0806", + "ref": "FR*V75*PPX08*06", + "name": "Paris | Rue de Rome 46", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3225683, + 48.8783912 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0806", + "ref": "FR*V75*PPX08*06", + "name": "Paris | Rue de Rome 46", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3225683, + 48.8783912 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0806", + "ref": "FR*V75*PPX08*06", + "name": "Paris | Rue de Rome 46", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3225683, + 48.8783912 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0806", + "ref": "FR*V75*PPX08*06", + "name": "Paris | Rue de Rome 46", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32056, + 48.881834 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0807", + "ref": "FR*V75*PPX08*07", + "name": "Paris | Rue de Rome 73", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32056, + 48.881834 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0807", + "ref": "FR*V75*PPX08*07", + "name": "Paris | Rue de Rome 73", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32056, + 48.881834 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0807", + "ref": "FR*V75*PPX08*07", + "name": "Paris | Rue de Rome 73", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3287351, + 48.8489613 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0609", + "ref": "FR*V75*PPX06*09", + "name": "Paris | Rue de Rennes 105", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3202972, + 48.8318566 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1407", + "ref": "FR*V75*PPX14*07", + "name": "Paris | Rue Didot 41", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3409177, + 48.8777212 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0911", + "ref": "FR*V75*PPX09*11", + "name": "Paris | Rue Milton 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3237355, + 48.8266807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1411", + "ref": "FR*V75*PPX14*11", + "name": "Paris | Avenue Jean Moulin 34", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.337229, + 48.83912 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1410", + "ref": "FR*V75*PPX14*10", + "name": "Paris | Rue Henri Barbusse 66", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.337229, + 48.83912 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1410", + "ref": "FR*V75*PPX14*10", + "name": "Paris | Rue Henri Barbusse 66", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.337229, + 48.83912 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1410", + "ref": "FR*V75*PPX14*10", + "name": "Paris | Rue Henri Barbusse 66", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3237355, + 48.8266807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1411", + "ref": "FR*V75*PPX14*11", + "name": "Paris | Avenue Jean Moulin 34", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3237355, + 48.8266807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1411", + "ref": "FR*V75*PPX14*11", + "name": "Paris | Avenue Jean Moulin 34", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3237355, + 48.8266807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1411", + "ref": "FR*V75*PPX14*11", + "name": "Paris | Avenue Jean Moulin 34", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3237355, + 48.8266807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1411", + "ref": "FR*V75*PPX14*11", + "name": "Paris | Avenue Jean Moulin 34", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3237355, + 48.8266807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1411", + "ref": "FR*V75*PPX14*11", + "name": "Paris | Avenue Jean Moulin 34", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.337229, + 48.83912 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1410", + "ref": "FR*V75*PPX14*10", + "name": "Paris | Rue Henri Barbusse 66", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313088, + 48.83126 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1412", + "ref": "FR*V75*PPX14*12", + "name": "Paris | Rue Raymond Losserand 145", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313088, + 48.83126 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1412", + "ref": "FR*V75*PPX14*12", + "name": "Paris | Rue Raymond Losserand 145", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313088, + 48.83126 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1412", + "ref": "FR*V75*PPX14*12", + "name": "Paris | Rue Raymond Losserand 145", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313088, + 48.83126 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1412", + "ref": "FR*V75*PPX14*12", + "name": "Paris | Rue Raymond Losserand 145", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313088, + 48.83126 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1412", + "ref": "FR*V75*PPX14*12", + "name": "Paris | Rue Raymond Losserand 145", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313088, + 48.83126 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1412", + "ref": "FR*V75*PPX14*12", + "name": "Paris | Rue Raymond Losserand 145", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313088, + 48.83126 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1412", + "ref": "FR*V75*PPX14*12", + "name": "Paris | Rue Raymond Losserand 145", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.337229, + 48.83912 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1410", + "ref": "FR*V75*PPX14*10", + "name": "Paris | Rue Henri Barbusse 66", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.337229, + 48.83912 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1410", + "ref": "FR*V75*PPX14*10", + "name": "Paris | Rue Henri Barbusse 66", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3370783, + 48.8207604 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1413", + "ref": "FR*V75*PPX14*13", + "name": "Paris | Boulevard Jourdan 26", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3202972, + 48.8318566 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1407", + "ref": "FR*V75*PPX14*07", + "name": "Paris | Rue Didot 41", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3297831, + 48.8348549 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1405", + "ref": "FR*V75*PPX14*05", + "name": "Paris | Rue Boulard 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323305, + 48.842173 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1406", + "ref": "FR*V75*PPX14*06", + "name": "Paris | Rue du Départ 23", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323305, + 48.842173 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1406", + "ref": "FR*V75*PPX14*06", + "name": "Paris | Rue du Départ 23", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323305, + 48.842173 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1406", + "ref": "FR*V75*PPX14*06", + "name": "Paris | Rue du Départ 23", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323305, + 48.842173 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1406", + "ref": "FR*V75*PPX14*06", + "name": "Paris | Rue du Départ 23", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323305, + 48.842173 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1406", + "ref": "FR*V75*PPX14*06", + "name": "Paris | Rue du Départ 23", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323305, + 48.842173 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1406", + "ref": "FR*V75*PPX14*06", + "name": "Paris | Rue du Départ 23", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3239783, + 48.847875 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0604", + "ref": "FR*V75*PPX06*04", + "name": "Paris | Rue de Bérite 3", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3301676, + 48.8395108 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1408", + "ref": "FR*V75*PPX14*08", + "name": "Paris | Boulevard Edgar Quinet 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3202972, + 48.8318566 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1407", + "ref": "FR*V75*PPX14*07", + "name": "Paris | Rue Didot 41", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3202972, + 48.8318566 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1407", + "ref": "FR*V75*PPX14*07", + "name": "Paris | Rue Didot 41", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3301676, + 48.8395108 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1408", + "ref": "FR*V75*PPX14*08", + "name": "Paris | Boulevard Edgar Quinet 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3301676, + 48.8395108 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1408", + "ref": "FR*V75*PPX14*08", + "name": "Paris | Boulevard Edgar Quinet 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3301676, + 48.8395108 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1408", + "ref": "FR*V75*PPX14*08", + "name": "Paris | Boulevard Edgar Quinet 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3301676, + 48.8395108 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1408", + "ref": "FR*V75*PPX14*08", + "name": "Paris | Boulevard Edgar Quinet 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3301676, + 48.8395108 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1408", + "ref": "FR*V75*PPX14*08", + "name": "Paris | Boulevard Edgar Quinet 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3370783, + 48.8207604 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1413", + "ref": "FR*V75*PPX14*13", + "name": "Paris | Boulevard Jourdan 26", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3370783, + 48.8207604 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1413", + "ref": "FR*V75*PPX14*13", + "name": "Paris | Boulevard Jourdan 26", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3297831, + 48.8348549 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1405", + "ref": "FR*V75*PPX14*05", + "name": "Paris | Rue Boulard 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3038076, + 48.8458068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1503", + "ref": "FR*V75*PPX15*03", + "name": "Paris | Rue Miollis 21", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28136, + 48.841403 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1502", + "ref": "FR*V75*PPX15*02", + "name": "Paris | Rue Lacordaire 56", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28136, + 48.841403 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1502", + "ref": "FR*V75*PPX15*02", + "name": "Paris | Rue Lacordaire 56", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28136, + 48.841403 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1502", + "ref": "FR*V75*PPX15*02", + "name": "Paris | Rue Lacordaire 56", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3038076, + 48.8458068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1503", + "ref": "FR*V75*PPX15*03", + "name": "Paris | Rue Miollis 21", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3038076, + 48.8458068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1503", + "ref": "FR*V75*PPX15*03", + "name": "Paris | Rue Miollis 21", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3038076, + 48.8458068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1503", + "ref": "FR*V75*PPX15*03", + "name": "Paris | Rue Miollis 21", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3038076, + 48.8458068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1503", + "ref": "FR*V75*PPX15*03", + "name": "Paris | Rue Miollis 21", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3038076, + 48.8458068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1503", + "ref": "FR*V75*PPX15*03", + "name": "Paris | Rue Miollis 21", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28136, + 48.841403 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1502", + "ref": "FR*V75*PPX15*02", + "name": "Paris | Rue Lacordaire 56", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3038076, + 48.8458068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1503", + "ref": "FR*V75*PPX15*03", + "name": "Paris | Rue Miollis 21", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273328, + 48.83984 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1504", + "ref": "FR*V75*PPX15*04", + "name": "Paris | Rue Leblanc 19", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273328, + 48.83984 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1504", + "ref": "FR*V75*PPX15*04", + "name": "Paris | Rue Leblanc 19", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273328, + 48.83984 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1504", + "ref": "FR*V75*PPX15*04", + "name": "Paris | Rue Leblanc 19", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273328, + 48.83984 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1504", + "ref": "FR*V75*PPX15*04", + "name": "Paris | Rue Leblanc 19", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273328, + 48.83984 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1504", + "ref": "FR*V75*PPX15*04", + "name": "Paris | Rue Leblanc 19", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2892983, + 48.8388875 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1505", + "ref": "FR*V75*PPX15*05", + "name": "Paris | Rue de la Croix Nivert 192", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28136, + 48.841403 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1502", + "ref": "FR*V75*PPX15*02", + "name": "Paris | Rue Lacordaire 56", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28136, + 48.841403 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1502", + "ref": "FR*V75*PPX15*02", + "name": "Paris | Rue Lacordaire 56", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3370783, + 48.8207604 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1413", + "ref": "FR*V75*PPX14*13", + "name": "Paris | Boulevard Jourdan 26", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322823, + 48.8230593 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1414", + "ref": "FR*V75*PPX14*14", + "name": "Paris | Avenue de la Porte de Montrouge 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3370783, + 48.8207604 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1413", + "ref": "FR*V75*PPX14*13", + "name": "Paris | Boulevard Jourdan 26", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3370783, + 48.8207604 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1413", + "ref": "FR*V75*PPX14*13", + "name": "Paris | Boulevard Jourdan 26", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3370783, + 48.8207604 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1413", + "ref": "FR*V75*PPX14*13", + "name": "Paris | Boulevard Jourdan 26", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322823, + 48.8230593 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1414", + "ref": "FR*V75*PPX14*14", + "name": "Paris | Avenue de la Porte de Montrouge 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322823, + 48.8230593 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1414", + "ref": "FR*V75*PPX14*14", + "name": "Paris | Avenue de la Porte de Montrouge 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322823, + 48.8230593 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1414", + "ref": "FR*V75*PPX14*14", + "name": "Paris | Avenue de la Porte de Montrouge 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322823, + 48.8230593 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1414", + "ref": "FR*V75*PPX14*14", + "name": "Paris | Avenue de la Porte de Montrouge 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322823, + 48.8230593 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1414", + "ref": "FR*V75*PPX14*14", + "name": "Paris | Avenue de la Porte de Montrouge 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28136, + 48.841403 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1502", + "ref": "FR*V75*PPX15*02", + "name": "Paris | Rue Lacordaire 56", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2788853, + 48.8325995 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1501", + "ref": "FR*V75*PPX15*01", + "name": "Paris | Rue du Colonel Pierre Avia 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2788853, + 48.8325995 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1501", + "ref": "FR*V75*PPX15*01", + "name": "Paris | Rue du Colonel Pierre Avia 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2788853, + 48.8325995 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1501", + "ref": "FR*V75*PPX15*01", + "name": "Paris | Rue du Colonel Pierre Avia 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2788853, + 48.8325995 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1501", + "ref": "FR*V75*PPX15*01", + "name": "Paris | Rue du Colonel Pierre Avia 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2788853, + 48.8325995 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1501", + "ref": "FR*V75*PPX15*01", + "name": "Paris | Rue du Colonel Pierre Avia 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2788853, + 48.8325995 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1501", + "ref": "FR*V75*PPX15*01", + "name": "Paris | Rue du Colonel Pierre Avia 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2788853, + 48.8325995 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1501", + "ref": "FR*V75*PPX15*01", + "name": "Paris | Rue du Colonel Pierre Avia 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3297831, + 48.8348549 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1405", + "ref": "FR*V75*PPX14*05", + "name": "Paris | Rue Boulard 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3297831, + 48.8348549 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1405", + "ref": "FR*V75*PPX14*05", + "name": "Paris | Rue Boulard 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3317475, + 48.8806436 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0912", + "ref": "FR*V75*PPX09*12", + "name": "Paris | Rue Paul Escudier 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3580488, + 48.8260824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1316", + "ref": "FR*V75*PPX13*16", + "name": "Paris | Rue de Tolbiac 147", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3424498, + 48.8262319 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1315", + "ref": "FR*V75*PPX13*15", + "name": "Paris | Rue de Tolbiac 245", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3424498, + 48.8262319 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1315", + "ref": "FR*V75*PPX13*15", + "name": "Paris | Rue de Tolbiac 245", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3580488, + 48.8260824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1316", + "ref": "FR*V75*PPX13*16", + "name": "Paris | Rue de Tolbiac 147", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3580488, + 48.8260824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1316", + "ref": "FR*V75*PPX13*16", + "name": "Paris | Rue de Tolbiac 147", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3580488, + 48.8260824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1316", + "ref": "FR*V75*PPX13*16", + "name": "Paris | Rue de Tolbiac 147", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3580488, + 48.8260824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1316", + "ref": "FR*V75*PPX13*16", + "name": "Paris | Rue de Tolbiac 147", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3580488, + 48.8260824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1316", + "ref": "FR*V75*PPX13*16", + "name": "Paris | Rue de Tolbiac 147", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3721949, + 48.8279725 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1317", + "ref": "FR*V75*PPX13*17", + "name": "Paris | Rue de Tolbiac 41", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3424498, + 48.8262319 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1315", + "ref": "FR*V75*PPX13*15", + "name": "Paris | Rue de Tolbiac 245", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3721949, + 48.8279725 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1317", + "ref": "FR*V75*PPX13*17", + "name": "Paris | Rue de Tolbiac 41", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3721949, + 48.8279725 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1317", + "ref": "FR*V75*PPX13*17", + "name": "Paris | Rue de Tolbiac 41", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3721949, + 48.8279725 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1317", + "ref": "FR*V75*PPX13*17", + "name": "Paris | Rue de Tolbiac 41", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3721949, + 48.8279725 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1317", + "ref": "FR*V75*PPX13*17", + "name": "Paris | Rue de Tolbiac 41", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3721949, + 48.8279725 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1317", + "ref": "FR*V75*PPX13*17", + "name": "Paris | Rue de Tolbiac 41", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3624101, + 48.8328237 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1318", + "ref": "FR*V75*PPX13*18", + "name": "Paris | boulevard Vincent Auriol 143", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3624101, + 48.8328237 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1318", + "ref": "FR*V75*PPX13*18", + "name": "Paris | boulevard Vincent Auriol 143", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3424498, + 48.8262319 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1315", + "ref": "FR*V75*PPX13*15", + "name": "Paris | Rue de Tolbiac 245", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3424498, + 48.8262319 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1315", + "ref": "FR*V75*PPX13*15", + "name": "Paris | Rue de Tolbiac 245", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3624101, + 48.8328237 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1318", + "ref": "FR*V75*PPX13*18", + "name": "Paris | boulevard Vincent Auriol 143", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3460584, + 48.8310493 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1313", + "ref": "FR*V75*PPX13*13", + "name": "Paris | Rue Vulpian 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3512076, + 48.8204223 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1312", + "ref": "FR*V75*PPX13*12", + "name": "Paris | Rue Gouthière 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3512076, + 48.8204223 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1312", + "ref": "FR*V75*PPX13*12", + "name": "Paris | Rue Gouthière 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3512076, + 48.8204223 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1312", + "ref": "FR*V75*PPX13*12", + "name": "Paris | Rue Gouthière 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3512076, + 48.8204223 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1312", + "ref": "FR*V75*PPX13*12", + "name": "Paris | Rue Gouthière 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3512076, + 48.8204223 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1312", + "ref": "FR*V75*PPX13*12", + "name": "Paris | Rue Gouthière 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3512076, + 48.8204223 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1312", + "ref": "FR*V75*PPX13*12", + "name": "Paris | Rue Gouthière 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3460584, + 48.8310493 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1313", + "ref": "FR*V75*PPX13*13", + "name": "Paris | Rue Vulpian 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3460584, + 48.8310493 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1313", + "ref": "FR*V75*PPX13*13", + "name": "Paris | Rue Vulpian 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3424498, + 48.8262319 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1315", + "ref": "FR*V75*PPX13*15", + "name": "Paris | Rue de Tolbiac 245", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3460584, + 48.8310493 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1313", + "ref": "FR*V75*PPX13*13", + "name": "Paris | Rue Vulpian 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3460584, + 48.8310493 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1313", + "ref": "FR*V75*PPX13*13", + "name": "Paris | Rue Vulpian 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3460584, + 48.8310493 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1313", + "ref": "FR*V75*PPX13*13", + "name": "Paris | Rue Vulpian 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3810867, + 48.8276393 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1314", + "ref": "FR*V75*PPX13*14", + "name": "Paris | Rue Marie-Andrée Lagroua Weil-Halle 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3810867, + 48.8276393 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1314", + "ref": "FR*V75*PPX13*14", + "name": "Paris | Rue Marie-Andrée Lagroua Weil-Halle 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3810867, + 48.8276393 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1314", + "ref": "FR*V75*PPX13*14", + "name": "Paris | Rue Marie-Andrée Lagroua Weil-Halle 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3810867, + 48.8276393 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1314", + "ref": "FR*V75*PPX13*14", + "name": "Paris | Rue Marie-Andrée Lagroua Weil-Halle 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3624101, + 48.8328237 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1318", + "ref": "FR*V75*PPX13*18", + "name": "Paris | boulevard Vincent Auriol 143", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3624101, + 48.8328237 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1318", + "ref": "FR*V75*PPX13*18", + "name": "Paris | boulevard Vincent Auriol 143", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3297831, + 48.8348549 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1405", + "ref": "FR*V75*PPX14*05", + "name": "Paris | Rue Boulard 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3216963, + 48.8283698 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1403", + "ref": "FR*V75*PPX14*03", + "name": "Paris | Rue des Plantes 56", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3408664, + 48.8383124 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1402", + "ref": "FR*V75*PPX14*02", + "name": "Paris | Boulevard de Port-Royal 97", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3408664, + 48.8383124 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1402", + "ref": "FR*V75*PPX14*02", + "name": "Paris | Boulevard de Port-Royal 97", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3408664, + 48.8383124 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1402", + "ref": "FR*V75*PPX14*02", + "name": "Paris | Boulevard de Port-Royal 97", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3408664, + 48.8383124 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1402", + "ref": "FR*V75*PPX14*02", + "name": "Paris | Boulevard de Port-Royal 97", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3408664, + 48.8383124 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1402", + "ref": "FR*V75*PPX14*02", + "name": "Paris | Boulevard de Port-Royal 97", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3216963, + 48.8283698 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1403", + "ref": "FR*V75*PPX14*03", + "name": "Paris | Rue des Plantes 56", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3216963, + 48.8283698 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1403", + "ref": "FR*V75*PPX14*03", + "name": "Paris | Rue des Plantes 56", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32608, + 48.83273 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1404", + "ref": "FR*V75*PPX14*04", + "name": "Paris | Rue Castagnou 10", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-09-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336613, + 48.82844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1401", + "ref": "FR*V75*PPX14*01", + "name": "Paris | Rue Broussais 32", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32608, + 48.83273 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1404", + "ref": "FR*V75*PPX14*04", + "name": "Paris | Rue Castagnou 10", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32608, + 48.83273 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1404", + "ref": "FR*V75*PPX14*04", + "name": "Paris | Rue Castagnou 10", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32608, + 48.83273 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1404", + "ref": "FR*V75*PPX14*04", + "name": "Paris | Rue Castagnou 10", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32608, + 48.83273 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1404", + "ref": "FR*V75*PPX14*04", + "name": "Paris | Rue Castagnou 10", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32608, + 48.83273 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1404", + "ref": "FR*V75*PPX14*04", + "name": "Paris | Rue Castagnou 10", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32608, + 48.83273 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1404", + "ref": "FR*V75*PPX14*04", + "name": "Paris | Rue Castagnou 10", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3297831, + 48.8348549 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1405", + "ref": "FR*V75*PPX14*05", + "name": "Paris | Rue Boulard 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3408664, + 48.8383124 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1402", + "ref": "FR*V75*PPX14*02", + "name": "Paris | Boulevard de Port-Royal 97", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336613, + 48.82844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1401", + "ref": "FR*V75*PPX14*01", + "name": "Paris | Rue Broussais 32", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3624101, + 48.8328237 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1318", + "ref": "FR*V75*PPX13*18", + "name": "Paris | boulevard Vincent Auriol 143", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.354296, + 48.82325 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1320", + "ref": "FR*V75*PPX13*20", + "name": "Paris | Rue du Docteur Leray 10", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3592348, + 48.8365583 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1319", + "ref": "FR*V75*PPX13*19", + "name": "Paris | Rue Jeanne D'Arc 157", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3592348, + 48.8365583 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1319", + "ref": "FR*V75*PPX13*19", + "name": "Paris | Rue Jeanne D'Arc 157", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3592348, + 48.8365583 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1319", + "ref": "FR*V75*PPX13*19", + "name": "Paris | Rue Jeanne D'Arc 157", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3592348, + 48.8365583 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1319", + "ref": "FR*V75*PPX13*19", + "name": "Paris | Rue Jeanne D'Arc 157", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.354296, + 48.82325 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1320", + "ref": "FR*V75*PPX13*20", + "name": "Paris | Rue du Docteur Leray 10", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.354296, + 48.82325 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1320", + "ref": "FR*V75*PPX13*20", + "name": "Paris | Rue du Docteur Leray 10", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.354296, + 48.82325 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1320", + "ref": "FR*V75*PPX13*20", + "name": "Paris | Rue du Docteur Leray 10", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364308, + 48.824068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1321", + "ref": "FR*V75*PPX13*21", + "name": "Paris | Avenue D'Ivry 58", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336613, + 48.82844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1401", + "ref": "FR*V75*PPX14*01", + "name": "Paris | Rue Broussais 32", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364308, + 48.824068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1321", + "ref": "FR*V75*PPX13*21", + "name": "Paris | Avenue D'Ivry 58", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364308, + 48.824068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1321", + "ref": "FR*V75*PPX13*21", + "name": "Paris | Avenue D'Ivry 58", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364308, + 48.824068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1321", + "ref": "FR*V75*PPX13*21", + "name": "Paris | Avenue D'Ivry 58", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364308, + 48.824068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1321", + "ref": "FR*V75*PPX13*21", + "name": "Paris | Avenue D'Ivry 58", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336613, + 48.82844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1401", + "ref": "FR*V75*PPX14*01", + "name": "Paris | Rue Broussais 32", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336613, + 48.82844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1401", + "ref": "FR*V75*PPX14*01", + "name": "Paris | Rue Broussais 32", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336613, + 48.82844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1401", + "ref": "FR*V75*PPX14*01", + "name": "Paris | Rue Broussais 32", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2892983, + 48.8388875 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1505", + "ref": "FR*V75*PPX15*05", + "name": "Paris | Rue de la Croix Nivert 192", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2892983, + 48.8388875 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1505", + "ref": "FR*V75*PPX15*05", + "name": "Paris | Rue de la Croix Nivert 192", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2892983, + 48.8388875 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1505", + "ref": "FR*V75*PPX15*05", + "name": "Paris | Rue de la Croix Nivert 192", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3026, + 48.8349 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1525", + "ref": "FR*V75*PPX15*25", + "name": "Paris | Rue de Cronstadt 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3217, + 48.8432 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1523", + "ref": "FR*V75*PPX15*23", + "name": "Paris | Rue de l'Arrivée 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301, + 48.8483 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1524", + "ref": "FR*V75*PPX15*24", + "name": "Paris | Boulevard de Grenelle 139", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301, + 48.8483 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1524", + "ref": "FR*V75*PPX15*24", + "name": "Paris | Boulevard de Grenelle 139", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301, + 48.8483 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1524", + "ref": "FR*V75*PPX15*24", + "name": "Paris | Boulevard de Grenelle 139", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301, + 48.8483 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1524", + "ref": "FR*V75*PPX15*24", + "name": "Paris | Boulevard de Grenelle 139", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301, + 48.8483 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1524", + "ref": "FR*V75*PPX15*24", + "name": "Paris | Boulevard de Grenelle 139", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301, + 48.8483 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1524", + "ref": "FR*V75*PPX15*24", + "name": "Paris | Boulevard de Grenelle 139", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3026, + 48.8349 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1525", + "ref": "FR*V75*PPX15*25", + "name": "Paris | Rue de Cronstadt 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3217, + 48.8432 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1523", + "ref": "FR*V75*PPX15*23", + "name": "Paris | Rue de l'Arrivée 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3026, + 48.8349 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1525", + "ref": "FR*V75*PPX15*25", + "name": "Paris | Rue de Cronstadt 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3026, + 48.8349 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1525", + "ref": "FR*V75*PPX15*25", + "name": "Paris | Rue de Cronstadt 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2953, + 48.8472 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1526", + "ref": "FR*V75*PPX15*26", + "name": "Paris | Avenue Émile Zola 143", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2953, + 48.8472 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1526", + "ref": "FR*V75*PPX15*26", + "name": "Paris | Avenue Émile Zola 143", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2953, + 48.8472 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1526", + "ref": "FR*V75*PPX15*26", + "name": "Paris | Avenue Émile Zola 143", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2953, + 48.8472 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1526", + "ref": "FR*V75*PPX15*26", + "name": "Paris | Avenue Émile Zola 143", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2953, + 48.8472 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1526", + "ref": "FR*V75*PPX15*26", + "name": "Paris | Avenue Émile Zola 143", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3217, + 48.8432 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1523", + "ref": "FR*V75*PPX15*23", + "name": "Paris | Rue de l'Arrivée 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3217, + 48.8432 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1523", + "ref": "FR*V75*PPX15*23", + "name": "Paris | Rue de l'Arrivée 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2847, + 48.8479 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1527", + "ref": "FR*V75*PPX15*27", + "name": "Paris | Rue Beaugrenelle 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2989, + 48.8287 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1521", + "ref": "FR*V75*PPX15*21", + "name": "Paris | Rue Jean Sicard 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2913, + 48.8512 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1520", + "ref": "FR*V75*PPX15*20", + "name": "Paris | Rue du Docteur Finlay 43", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2913, + 48.8512 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1520", + "ref": "FR*V75*PPX15*20", + "name": "Paris | Rue du Docteur Finlay 43", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2989, + 48.8287 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1521", + "ref": "FR*V75*PPX15*21", + "name": "Paris | Rue Jean Sicard 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2989, + 48.8287 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1521", + "ref": "FR*V75*PPX15*21", + "name": "Paris | Rue Jean Sicard 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2989, + 48.8287 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1521", + "ref": "FR*V75*PPX15*21", + "name": "Paris | Rue Jean Sicard 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2989, + 48.8287 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1521", + "ref": "FR*V75*PPX15*21", + "name": "Paris | Rue Jean Sicard 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2989, + 48.8287 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1521", + "ref": "FR*V75*PPX15*21", + "name": "Paris | Rue Jean Sicard 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2989, + 48.8287 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1521", + "ref": "FR*V75*PPX15*21", + "name": "Paris | Rue Jean Sicard 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3217, + 48.8432 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1523", + "ref": "FR*V75*PPX15*23", + "name": "Paris | Rue de l'Arrivée 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2876, + 48.8407 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1522", + "ref": "FR*V75*PPX15*22", + "name": "Paris | Rue Houdart de Lamotte 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2876, + 48.8407 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1522", + "ref": "FR*V75*PPX15*22", + "name": "Paris | Rue Houdart de Lamotte 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2876, + 48.8407 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1522", + "ref": "FR*V75*PPX15*22", + "name": "Paris | Rue Houdart de Lamotte 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2876, + 48.8407 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1522", + "ref": "FR*V75*PPX15*22", + "name": "Paris | Rue Houdart de Lamotte 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2876, + 48.8407 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1522", + "ref": "FR*V75*PPX15*22", + "name": "Paris | Rue Houdart de Lamotte 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2876, + 48.8407 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1522", + "ref": "FR*V75*PPX15*22", + "name": "Paris | Rue Houdart de Lamotte 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3217, + 48.8432 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1523", + "ref": "FR*V75*PPX15*23", + "name": "Paris | Rue de l'Arrivée 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2953, + 48.8472 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1526", + "ref": "FR*V75*PPX15*26", + "name": "Paris | Avenue Émile Zola 143", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2847, + 48.8479 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1527", + "ref": "FR*V75*PPX15*27", + "name": "Paris | Rue Beaugrenelle 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2892983, + 48.8388875 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1505", + "ref": "FR*V75*PPX15*05", + "name": "Paris | Rue de la Croix Nivert 192", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2914295, + 48.8351985 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1532", + "ref": "FR*V75*PPX15*32", + "name": "Paris | Rue Olier 15", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2796928, + 48.8439105 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1531", + "ref": "FR*V75*PPX15*31", + "name": "Paris | Rue Sébastien Mercier 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2796928, + 48.8439105 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1531", + "ref": "FR*V75*PPX15*31", + "name": "Paris | Rue Sébastien Mercier 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2796928, + 48.8439105 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1531", + "ref": "FR*V75*PPX15*31", + "name": "Paris | Rue Sébastien Mercier 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2796928, + 48.8439105 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1531", + "ref": "FR*V75*PPX15*31", + "name": "Paris | Rue Sébastien Mercier 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2914295, + 48.8351985 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1532", + "ref": "FR*V75*PPX15*32", + "name": "Paris | Rue Olier 15", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2914295, + 48.8351985 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1532", + "ref": "FR*V75*PPX15*32", + "name": "Paris | Rue Olier 15", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2914295, + 48.8351985 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1532", + "ref": "FR*V75*PPX15*32", + "name": "Paris | Rue Olier 15", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2914295, + 48.8351985 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1532", + "ref": "FR*V75*PPX15*32", + "name": "Paris | Rue Olier 15", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2796928, + 48.8439105 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1531", + "ref": "FR*V75*PPX15*31", + "name": "Paris | Rue Sébastien Mercier 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2914295, + 48.8351985 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1532", + "ref": "FR*V75*PPX15*32", + "name": "Paris | Rue Olier 15", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3081344, + 48.8338872 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1533", + "ref": "FR*V75*PPX15*33", + "name": "Paris | Rue de Vouillé 47", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3081344, + 48.8338872 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1533", + "ref": "FR*V75*PPX15*33", + "name": "Paris | Rue de Vouillé 47", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3081344, + 48.8338872 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1533", + "ref": "FR*V75*PPX15*33", + "name": "Paris | Rue de Vouillé 47", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3081344, + 48.8338872 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1533", + "ref": "FR*V75*PPX15*33", + "name": "Paris | Rue de Vouillé 47", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2994811, + 48.8434786 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1534", + "ref": "FR*V75*PPX15*34", + "name": "Paris | Rue Mademoiselle 67", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2994811, + 48.8434786 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1534", + "ref": "FR*V75*PPX15*34", + "name": "Paris | Rue Mademoiselle 67", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2796928, + 48.8439105 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1531", + "ref": "FR*V75*PPX15*31", + "name": "Paris | Rue Sébastien Mercier 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2986736, + 48.8370178 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1530", + "ref": "FR*V75*PPX15*30", + "name": "Paris | Rue Olivier de Serres 3", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2847, + 48.8479 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1527", + "ref": "FR*V75*PPX15*27", + "name": "Paris | Rue Beaugrenelle 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2787, + 48.8373 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1528", + "ref": "FR*V75*PPX15*28", + "name": "Paris | Rue Balard 108", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2847, + 48.8479 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1527", + "ref": "FR*V75*PPX15*27", + "name": "Paris | Rue Beaugrenelle 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2847, + 48.8479 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1527", + "ref": "FR*V75*PPX15*27", + "name": "Paris | Rue Beaugrenelle 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2847, + 48.8479 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1527", + "ref": "FR*V75*PPX15*27", + "name": "Paris | Rue Beaugrenelle 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2787, + 48.8373 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1528", + "ref": "FR*V75*PPX15*28", + "name": "Paris | Rue Balard 108", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2787, + 48.8373 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1528", + "ref": "FR*V75*PPX15*28", + "name": "Paris | Rue Balard 108", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2787, + 48.8373 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1528", + "ref": "FR*V75*PPX15*28", + "name": "Paris | Rue Balard 108", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2787, + 48.8373 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1528", + "ref": "FR*V75*PPX15*28", + "name": "Paris | Rue Balard 108", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2787, + 48.8373 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1528", + "ref": "FR*V75*PPX15*28", + "name": "Paris | Rue Balard 108", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2986736, + 48.8370178 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1530", + "ref": "FR*V75*PPX15*30", + "name": "Paris | Rue Olivier de Serres 3", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2997986, + 48.851832 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1529", + "ref": "FR*V75*PPX15*29", + "name": "Paris | Avenue de Suffren 78", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2997986, + 48.851832 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1529", + "ref": "FR*V75*PPX15*29", + "name": "Paris | Avenue de Suffren 78", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2997986, + 48.851832 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1529", + "ref": "FR*V75*PPX15*29", + "name": "Paris | Avenue de Suffren 78", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2997986, + 48.851832 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1529", + "ref": "FR*V75*PPX15*29", + "name": "Paris | Avenue de Suffren 78", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2997986, + 48.851832 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1529", + "ref": "FR*V75*PPX15*29", + "name": "Paris | Avenue de Suffren 78", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2986736, + 48.8370178 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1530", + "ref": "FR*V75*PPX15*30", + "name": "Paris | Rue Olivier de Serres 3", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2986736, + 48.8370178 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1530", + "ref": "FR*V75*PPX15*30", + "name": "Paris | Rue Olivier de Serres 3", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2913, + 48.8512 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1520", + "ref": "FR*V75*PPX15*20", + "name": "Paris | Rue du Docteur Finlay 43", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-02-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2913, + 48.8512 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1520", + "ref": "FR*V75*PPX15*20", + "name": "Paris | Rue du Docteur Finlay 43", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-02-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2913, + 48.8512 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1520", + "ref": "FR*V75*PPX15*20", + "name": "Paris | Rue du Docteur Finlay 43", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-02-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3059905, + 48.8373656 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1512", + "ref": "FR*V75*PPX15*12", + "name": "Paris | Rue Paul Barruel 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2920513, + 48.8425947 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1510", + "ref": "FR*V75*PPX15*10", + "name": "Paris | Place Etienne Pernet 26", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2920513, + 48.8425947 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1510", + "ref": "FR*V75*PPX15*10", + "name": "Paris | Place Etienne Pernet 26", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2920513, + 48.8425947 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1510", + "ref": "FR*V75*PPX15*10", + "name": "Paris | Place Etienne Pernet 26", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2848904, + 48.8425678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1511", + "ref": "FR*V75*PPX15*11", + "name": "Paris | Rue de la Convention 75", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2848904, + 48.8425678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1511", + "ref": "FR*V75*PPX15*11", + "name": "Paris | Rue de la Convention 75", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2848904, + 48.8425678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1511", + "ref": "FR*V75*PPX15*11", + "name": "Paris | Rue de la Convention 75", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2848904, + 48.8425678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1511", + "ref": "FR*V75*PPX15*11", + "name": "Paris | Rue de la Convention 75", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3059905, + 48.8373656 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1512", + "ref": "FR*V75*PPX15*12", + "name": "Paris | Rue Paul Barruel 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2920513, + 48.8425947 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1510", + "ref": "FR*V75*PPX15*10", + "name": "Paris | Place Etienne Pernet 26", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3059905, + 48.8373656 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1512", + "ref": "FR*V75*PPX15*12", + "name": "Paris | Rue Paul Barruel 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3059905, + 48.8373656 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1512", + "ref": "FR*V75*PPX15*12", + "name": "Paris | Rue Paul Barruel 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3059905, + 48.8373656 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1512", + "ref": "FR*V75*PPX15*12", + "name": "Paris | Rue Paul Barruel 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3059905, + 48.8373656 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1512", + "ref": "FR*V75*PPX15*12", + "name": "Paris | Rue Paul Barruel 44", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3126749, + 48.8385459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1513", + "ref": "FR*V75*PPX15*13", + "name": "Paris | Rue Cotentin 29", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3126749, + 48.8385459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1513", + "ref": "FR*V75*PPX15*13", + "name": "Paris | Rue Cotentin 29", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3126749, + 48.8385459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1513", + "ref": "FR*V75*PPX15*13", + "name": "Paris | Rue Cotentin 29", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2920513, + 48.8425947 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1510", + "ref": "FR*V75*PPX15*10", + "name": "Paris | Place Etienne Pernet 26", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2920513, + 48.8425947 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1510", + "ref": "FR*V75*PPX15*10", + "name": "Paris | Place Etienne Pernet 26", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2913, + 48.8512 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1520", + "ref": "FR*V75*PPX15*20", + "name": "Paris | Rue du Docteur Finlay 43", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-02-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2844167, + 48.8467033 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1507", + "ref": "FR*V75*PPX15*07", + "name": "Paris | Avenue Emile Zola 65", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2986453, + 48.8395783 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1506", + "ref": "FR*V75*PPX15*06", + "name": "Paris | Rue Gerbert 11", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2986453, + 48.8395783 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1506", + "ref": "FR*V75*PPX15*06", + "name": "Paris | Rue Gerbert 11", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2986453, + 48.8395783 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1506", + "ref": "FR*V75*PPX15*06", + "name": "Paris | Rue Gerbert 11", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2986453, + 48.8395783 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1506", + "ref": "FR*V75*PPX15*06", + "name": "Paris | Rue Gerbert 11", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2986453, + 48.8395783 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1506", + "ref": "FR*V75*PPX15*06", + "name": "Paris | Rue Gerbert 11", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2844167, + 48.8467033 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1507", + "ref": "FR*V75*PPX15*07", + "name": "Paris | Avenue Emile Zola 65", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2844167, + 48.8467033 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1507", + "ref": "FR*V75*PPX15*07", + "name": "Paris | Avenue Emile Zola 65", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2844167, + 48.8467033 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1507", + "ref": "FR*V75*PPX15*07", + "name": "Paris | Avenue Emile Zola 65", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2851648, + 48.835427 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1509", + "ref": "FR*V75*PPX15*09", + "name": "Paris | Rue Vasco de Gama 74", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2824849, + 48.8389208 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1508", + "ref": "FR*V75*PPX15*08", + "name": "Paris | Avenue Félix Faure 109", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2824849, + 48.8389208 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1508", + "ref": "FR*V75*PPX15*08", + "name": "Paris | Avenue Félix Faure 109", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2824849, + 48.8389208 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1508", + "ref": "FR*V75*PPX15*08", + "name": "Paris | Avenue Félix Faure 109", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2824849, + 48.8389208 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1508", + "ref": "FR*V75*PPX15*08", + "name": "Paris | Avenue Félix Faure 109", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2851648, + 48.835427 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1509", + "ref": "FR*V75*PPX15*09", + "name": "Paris | Rue Vasco de Gama 74", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2851648, + 48.835427 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1509", + "ref": "FR*V75*PPX15*09", + "name": "Paris | Rue Vasco de Gama 74", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2851648, + 48.835427 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1509", + "ref": "FR*V75*PPX15*09", + "name": "Paris | Rue Vasco de Gama 74", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3126749, + 48.8385459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1513", + "ref": "FR*V75*PPX15*13", + "name": "Paris | Rue Cotentin 29", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3126749, + 48.8385459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1513", + "ref": "FR*V75*PPX15*13", + "name": "Paris | Rue Cotentin 29", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3126749, + 48.8385459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1513", + "ref": "FR*V75*PPX15*13", + "name": "Paris | Rue Cotentin 29", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2904053, + 48.854819 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1518", + "ref": "FR*V75*PPX15*18", + "name": "Paris | Rue de la Fédération 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3045476, + 48.848923 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1517", + "ref": "FR*V75*PPX15*17", + "name": "Paris | Avenue de Suffren 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3045476, + 48.848923 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1517", + "ref": "FR*V75*PPX15*17", + "name": "Paris | Avenue de Suffren 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2904053, + 48.854819 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1518", + "ref": "FR*V75*PPX15*18", + "name": "Paris | Rue de la Fédération 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2904053, + 48.854819 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1518", + "ref": "FR*V75*PPX15*18", + "name": "Paris | Rue de la Fédération 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2904053, + 48.854819 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1518", + "ref": "FR*V75*PPX15*18", + "name": "Paris | Rue de la Fédération 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2904053, + 48.854819 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1518", + "ref": "FR*V75*PPX15*18", + "name": "Paris | Rue de la Fédération 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2904053, + 48.854819 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1518", + "ref": "FR*V75*PPX15*18", + "name": "Paris | Rue de la Fédération 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295999, + 48.8304 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1519", + "ref": "FR*V75*PPX15*19", + "name": "Paris | Rue de Dantzig 80", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3126749, + 48.8385459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1513", + "ref": "FR*V75*PPX15*13", + "name": "Paris | Rue Cotentin 29", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295999, + 48.8304 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1519", + "ref": "FR*V75*PPX15*19", + "name": "Paris | Rue de Dantzig 80", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295999, + 48.8304 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1519", + "ref": "FR*V75*PPX15*19", + "name": "Paris | Rue de Dantzig 80", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295999, + 48.8304 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1519", + "ref": "FR*V75*PPX15*19", + "name": "Paris | Rue de Dantzig 80", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295999, + 48.8304 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1519", + "ref": "FR*V75*PPX15*19", + "name": "Paris | Rue de Dantzig 80", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295999, + 48.8304 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1519", + "ref": "FR*V75*PPX15*19", + "name": "Paris | Rue de Dantzig 80", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295999, + 48.8304 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1519", + "ref": "FR*V75*PPX15*19", + "name": "Paris | Rue de Dantzig 80", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2913, + 48.8512 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1520", + "ref": "FR*V75*PPX15*20", + "name": "Paris | Rue du Docteur Finlay 43", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-02-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3045476, + 48.848923 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1517", + "ref": "FR*V75*PPX15*17", + "name": "Paris | Avenue de Suffren 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3045476, + 48.848923 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1517", + "ref": "FR*V75*PPX15*17", + "name": "Paris | Avenue de Suffren 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3045476, + 48.848923 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1517", + "ref": "FR*V75*PPX15*17", + "name": "Paris | Avenue de Suffren 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3045476, + 48.848923 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1517", + "ref": "FR*V75*PPX15*17", + "name": "Paris | Avenue de Suffren 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3048474, + 48.8319972 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1514", + "ref": "FR*V75*PPX15*14", + "name": "Paris | Rue des Morillons 95", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3048474, + 48.8319972 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1514", + "ref": "FR*V75*PPX15*14", + "name": "Paris | Rue des Morillons 95", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3048474, + 48.8319972 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1514", + "ref": "FR*V75*PPX15*14", + "name": "Paris | Rue des Morillons 95", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3048474, + 48.8319972 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1514", + "ref": "FR*V75*PPX15*14", + "name": "Paris | Rue des Morillons 95", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3048474, + 48.8319972 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1514", + "ref": "FR*V75*PPX15*14", + "name": "Paris | Rue des Morillons 95", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3048474, + 48.8319972 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1514", + "ref": "FR*V75*PPX15*14", + "name": "Paris | Rue des Morillons 95", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.287503, + 48.8451076 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1515", + "ref": "FR*V75*PPX15*15", + "name": "Paris | Rue de Lourmel 79", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.287503, + 48.8451076 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1515", + "ref": "FR*V75*PPX15*15", + "name": "Paris | Rue de Lourmel 79", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.287503, + 48.8451076 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1515", + "ref": "FR*V75*PPX15*15", + "name": "Paris | Rue de Lourmel 79", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.287503, + 48.8451076 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1515", + "ref": "FR*V75*PPX15*15", + "name": "Paris | Rue de Lourmel 79", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2943442, + 48.8383125 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1516", + "ref": "FR*V75*PPX15*16", + "name": "Paris | Rue de la Convention 171", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2943442, + 48.8383125 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1516", + "ref": "FR*V75*PPX15*16", + "name": "Paris | Rue de la Convention 171", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2943442, + 48.8383125 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1516", + "ref": "FR*V75*PPX15*16", + "name": "Paris | Rue de la Convention 171", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2943442, + 48.8383125 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1516", + "ref": "FR*V75*PPX15*16", + "name": "Paris | Rue de la Convention 171", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2943442, + 48.8383125 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1516", + "ref": "FR*V75*PPX15*16", + "name": "Paris | Rue de la Convention 171", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379246, + 48.83171 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1311", + "ref": "FR*V75*PPX13*11", + "name": "Paris | Rue des Frigos 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379246, + 48.83171 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1311", + "ref": "FR*V75*PPX13*11", + "name": "Paris | Rue des Frigos 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379246, + 48.83171 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1311", + "ref": "FR*V75*PPX13*11", + "name": "Paris | Rue des Frigos 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.374203, + 48.85579 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1107", + "ref": "FR*V75*PPX11*07", + "name": "Paris | Rue du Commandant Lamy 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3664376, + 48.8657658 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1105", + "ref": "FR*V75*PPX11*05", + "name": "Paris | Boulevard Voltaire 8", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-18", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3719914, + 48.86023 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1106", + "ref": "FR*V75*PPX11*06", + "name": "Paris | Boulevard Richard Lenoir 63", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3719914, + 48.86023 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1106", + "ref": "FR*V75*PPX11*06", + "name": "Paris | Boulevard Richard Lenoir 63", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3719914, + 48.86023 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1106", + "ref": "FR*V75*PPX11*06", + "name": "Paris | Boulevard Richard Lenoir 63", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3719914, + 48.86023 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1106", + "ref": "FR*V75*PPX11*06", + "name": "Paris | Boulevard Richard Lenoir 63", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3719914, + 48.86023 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1106", + "ref": "FR*V75*PPX11*06", + "name": "Paris | Boulevard Richard Lenoir 63", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3719914, + 48.86023 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1106", + "ref": "FR*V75*PPX11*06", + "name": "Paris | Boulevard Richard Lenoir 63", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.374203, + 48.85579 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1107", + "ref": "FR*V75*PPX11*07", + "name": "Paris | Rue du Commandant Lamy 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3664376, + 48.8657658 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1105", + "ref": "FR*V75*PPX11*05", + "name": "Paris | Boulevard Voltaire 8", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-18", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.374203, + 48.85579 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1107", + "ref": "FR*V75*PPX11*07", + "name": "Paris | Rue du Commandant Lamy 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.374203, + 48.85579 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1107", + "ref": "FR*V75*PPX11*07", + "name": "Paris | Rue du Commandant Lamy 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37139, + 48.857259 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1108", + "ref": "FR*V75*PPX11*08", + "name": "Paris | Boulevard Richard Lenoir 36", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-18", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37139, + 48.857259 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1108", + "ref": "FR*V75*PPX11*08", + "name": "Paris | Boulevard Richard Lenoir 36", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-18", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37139, + 48.857259 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1108", + "ref": "FR*V75*PPX11*08", + "name": "Paris | Boulevard Richard Lenoir 36", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-18", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37139, + 48.857259 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1108", + "ref": "FR*V75*PPX11*08", + "name": "Paris | Boulevard Richard Lenoir 36", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-18", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.397761, + 48.84948 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1109", + "ref": "FR*V75*PPX11*09", + "name": "Paris | Avenue de Taillebourg 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3664376, + 48.8657658 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1105", + "ref": "FR*V75*PPX11*05", + "name": "Paris | Boulevard Voltaire 8", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3664376, + 48.8657658 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1105", + "ref": "FR*V75*PPX11*05", + "name": "Paris | Boulevard Voltaire 8", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.397761, + 48.84948 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1109", + "ref": "FR*V75*PPX11*09", + "name": "Paris | Avenue de Taillebourg 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3825248, + 48.8561529 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1103", + "ref": "FR*V75*PPX11*03", + "name": "Paris | Rue François de Neufchateau 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.384125, + 48.858606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1102", + "ref": "FR*V75*PPX11*02", + "name": "Paris | Rue de la Roquette 162", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-07-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.384125, + 48.858606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1102", + "ref": "FR*V75*PPX11*02", + "name": "Paris | Rue de la Roquette 162", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.384125, + 48.858606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1102", + "ref": "FR*V75*PPX11*02", + "name": "Paris | Rue de la Roquette 162", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.384125, + 48.858606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1102", + "ref": "FR*V75*PPX11*02", + "name": "Paris | Rue de la Roquette 162", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.384125, + 48.858606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1102", + "ref": "FR*V75*PPX11*02", + "name": "Paris | Rue de la Roquette 162", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.384125, + 48.858606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1102", + "ref": "FR*V75*PPX11*02", + "name": "Paris | Rue de la Roquette 162", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3825248, + 48.8561529 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1103", + "ref": "FR*V75*PPX11*03", + "name": "Paris | Rue François de Neufchateau 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3825248, + 48.8561529 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1103", + "ref": "FR*V75*PPX11*03", + "name": "Paris | Rue François de Neufchateau 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390264, + 48.8577957 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1104", + "ref": "FR*V75*PPX11*04", + "name": "Paris | Avenue Philippe Auguste 126", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3825248, + 48.8561529 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1103", + "ref": "FR*V75*PPX11*03", + "name": "Paris | Rue François de Neufchateau 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3825248, + 48.8561529 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1103", + "ref": "FR*V75*PPX11*03", + "name": "Paris | Rue François de Neufchateau 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3825248, + 48.8561529 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1103", + "ref": "FR*V75*PPX11*03", + "name": "Paris | Rue François de Neufchateau 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390264, + 48.8577957 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1104", + "ref": "FR*V75*PPX11*04", + "name": "Paris | Avenue Philippe Auguste 126", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390264, + 48.8577957 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1104", + "ref": "FR*V75*PPX11*04", + "name": "Paris | Avenue Philippe Auguste 126", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390264, + 48.8577957 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1104", + "ref": "FR*V75*PPX11*04", + "name": "Paris | Avenue Philippe Auguste 126", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390264, + 48.8577957 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1104", + "ref": "FR*V75*PPX11*04", + "name": "Paris | Avenue Philippe Auguste 126", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.397761, + 48.84948 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1109", + "ref": "FR*V75*PPX11*09", + "name": "Paris | Avenue de Taillebourg 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.397761, + 48.84948 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1109", + "ref": "FR*V75*PPX11*09", + "name": "Paris | Avenue de Taillebourg 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3713985, + 48.8640621 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1117", + "ref": "FR*V75*PPX11*17", + "name": "Paris | Boulevard Richard Lenoir 110", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376434, + 48.85189 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1115", + "ref": "FR*V75*PPX11*15", + "name": "Paris | Avenue Ledru Rollin 104", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36784, + 48.86661 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1114", + "ref": "FR*V75*PPX11*14", + "name": "Paris | Avenue de la République 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36784, + 48.86661 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1114", + "ref": "FR*V75*PPX11*14", + "name": "Paris | Avenue de la République 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36784, + 48.86661 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1114", + "ref": "FR*V75*PPX11*14", + "name": "Paris | Avenue de la République 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36784, + 48.86661 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1114", + "ref": "FR*V75*PPX11*14", + "name": "Paris | Avenue de la République 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36784, + 48.86661 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1114", + "ref": "FR*V75*PPX11*14", + "name": "Paris | Avenue de la République 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36784, + 48.86661 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1114", + "ref": "FR*V75*PPX11*14", + "name": "Paris | Avenue de la République 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376434, + 48.85189 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1115", + "ref": "FR*V75*PPX11*15", + "name": "Paris | Avenue Ledru Rollin 104", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376434, + 48.85189 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1115", + "ref": "FR*V75*PPX11*15", + "name": "Paris | Avenue Ledru Rollin 104", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3923486, + 48.853661 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1113", + "ref": "FR*V75*PPX11*13", + "name": "Paris | Avenue Philippe Auguste 65", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376434, + 48.85189 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1115", + "ref": "FR*V75*PPX11*15", + "name": "Paris | Avenue Ledru Rollin 104", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376434, + 48.85189 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1115", + "ref": "FR*V75*PPX11*15", + "name": "Paris | Avenue Ledru Rollin 104", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.387246, + 48.8499672 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1116", + "ref": "FR*V75*PPX11*16", + "name": "Paris | Rue Roubo 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.387246, + 48.8499672 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1116", + "ref": "FR*V75*PPX11*16", + "name": "Paris | Rue Roubo 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.387246, + 48.8499672 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1116", + "ref": "FR*V75*PPX11*16", + "name": "Paris | Rue Roubo 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.387246, + 48.8499672 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1116", + "ref": "FR*V75*PPX11*16", + "name": "Paris | Rue Roubo 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.387246, + 48.8499672 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1116", + "ref": "FR*V75*PPX11*16", + "name": "Paris | Rue Roubo 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3923486, + 48.853661 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1113", + "ref": "FR*V75*PPX11*13", + "name": "Paris | Avenue Philippe Auguste 65", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3923486, + 48.853661 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1113", + "ref": "FR*V75*PPX11*13", + "name": "Paris | Avenue Philippe Auguste 65", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.397761, + 48.84948 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1109", + "ref": "FR*V75*PPX11*09", + "name": "Paris | Avenue de Taillebourg 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3830368, + 48.8525733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1111", + "ref": "FR*V75*PPX11*11", + "name": "Paris | Rue Faidherbe 27", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.397761, + 48.84948 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1109", + "ref": "FR*V75*PPX11*09", + "name": "Paris | Avenue de Taillebourg 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3809277, + 48.8615346 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1110", + "ref": "FR*V75*PPX11*10", + "name": "Paris | Rue Saint-Maur 36", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-18", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3809277, + 48.8615346 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1110", + "ref": "FR*V75*PPX11*10", + "name": "Paris | Rue Saint-Maur 36", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-18", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3809277, + 48.8615346 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1110", + "ref": "FR*V75*PPX11*10", + "name": "Paris | Rue Saint-Maur 36", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-18", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3809277, + 48.8615346 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1110", + "ref": "FR*V75*PPX11*10", + "name": "Paris | Rue Saint-Maur 36", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-18", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3830368, + 48.8525733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1111", + "ref": "FR*V75*PPX11*11", + "name": "Paris | Rue Faidherbe 27", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3830368, + 48.8525733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1111", + "ref": "FR*V75*PPX11*11", + "name": "Paris | Rue Faidherbe 27", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3830368, + 48.8525733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1111", + "ref": "FR*V75*PPX11*11", + "name": "Paris | Rue Faidherbe 27", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3923486, + 48.853661 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1113", + "ref": "FR*V75*PPX11*13", + "name": "Paris | Avenue Philippe Auguste 65", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3830368, + 48.8525733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1111", + "ref": "FR*V75*PPX11*11", + "name": "Paris | Rue Faidherbe 27", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371679, + 48.8690795 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1112", + "ref": "FR*V75*PPX11*12", + "name": "Paris | Bis Avenue Parmentier 125", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371679, + 48.8690795 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1112", + "ref": "FR*V75*PPX11*12", + "name": "Paris | Bis Avenue Parmentier 125", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371679, + 48.8690795 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1112", + "ref": "FR*V75*PPX11*12", + "name": "Paris | Bis Avenue Parmentier 125", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371679, + 48.8690795 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1112", + "ref": "FR*V75*PPX11*12", + "name": "Paris | Bis Avenue Parmentier 125", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371679, + 48.8690795 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1112", + "ref": "FR*V75*PPX11*12", + "name": "Paris | Bis Avenue Parmentier 125", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371679, + 48.8690795 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1112", + "ref": "FR*V75*PPX11*12", + "name": "Paris | Bis Avenue Parmentier 125", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.384125, + 48.858606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1102", + "ref": "FR*V75*PPX11*02", + "name": "Paris | Rue de la Roquette 162", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3783382, + 48.8553267 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1101", + "ref": "FR*V75*PPX11*01", + "name": "Paris | Avenue Ledru Rollin 155", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3783382, + 48.8553267 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1101", + "ref": "FR*V75*PPX11*01", + "name": "Paris | Avenue Ledru Rollin 155", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364206, + 48.87119 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1005", + "ref": "FR*V75*PPX10*05", + "name": "Paris | Rue Beaurepaire 31", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.366288, + 48.87237 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1003", + "ref": "FR*V75*PPX10*03", + "name": "Paris | Avenue Richerand 11", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.366288, + 48.87237 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1003", + "ref": "FR*V75*PPX10*03", + "name": "Paris | Avenue Richerand 11", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364206, + 48.87119 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1005", + "ref": "FR*V75*PPX10*05", + "name": "Paris | Rue Beaurepaire 31", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364206, + 48.87119 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1005", + "ref": "FR*V75*PPX10*05", + "name": "Paris | Rue Beaurepaire 31", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364206, + 48.87119 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1005", + "ref": "FR*V75*PPX10*05", + "name": "Paris | Rue Beaurepaire 31", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364206, + 48.87119 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1005", + "ref": "FR*V75*PPX10*05", + "name": "Paris | Rue Beaurepaire 31", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364206, + 48.87119 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1005", + "ref": "FR*V75*PPX10*05", + "name": "Paris | Rue Beaurepaire 31", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372482, + 48.87179 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1006", + "ref": "FR*V75*PPX10*06", + "name": "Paris | Rue du Buisson Saint Louis 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.366288, + 48.87237 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1003", + "ref": "FR*V75*PPX10*03", + "name": "Paris | Avenue Richerand 11", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372482, + 48.87179 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1006", + "ref": "FR*V75*PPX10*06", + "name": "Paris | Rue du Buisson Saint Louis 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372482, + 48.87179 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1006", + "ref": "FR*V75*PPX10*06", + "name": "Paris | Rue du Buisson Saint Louis 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372482, + 48.87179 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1006", + "ref": "FR*V75*PPX10*06", + "name": "Paris | Rue du Buisson Saint Louis 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372482, + 48.87179 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1006", + "ref": "FR*V75*PPX10*06", + "name": "Paris | Rue du Buisson Saint Louis 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3629571, + 48.8814921 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1007", + "ref": "FR*V75*PPX10*07", + "name": "Paris | Rue du Château Landon 24", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3629571, + 48.8814921 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1007", + "ref": "FR*V75*PPX10*07", + "name": "Paris | Rue du Château Landon 24", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3629571, + 48.8814921 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1007", + "ref": "FR*V75*PPX10*07", + "name": "Paris | Rue du Château Landon 24", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.366288, + 48.87237 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1003", + "ref": "FR*V75*PPX10*03", + "name": "Paris | Avenue Richerand 11", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.366288, + 48.87237 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1003", + "ref": "FR*V75*PPX10*03", + "name": "Paris | Avenue Richerand 11", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3783382, + 48.8553267 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1101", + "ref": "FR*V75*PPX11*01", + "name": "Paris | Avenue Ledru Rollin 155", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3600462, + 48.8702567 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1001", + "ref": "FR*V75*PPX10*01", + "name": "Paris | Rue Pierre Chausson 1", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3317475, + 48.8806436 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0912", + "ref": "FR*V75*PPX09*12", + "name": "Paris | Rue Paul Escudier 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3317475, + 48.8806436 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0912", + "ref": "FR*V75*PPX09*12", + "name": "Paris | Rue Paul Escudier 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3317475, + 48.8806436 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0912", + "ref": "FR*V75*PPX09*12", + "name": "Paris | Rue Paul Escudier 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3317475, + 48.8806436 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0912", + "ref": "FR*V75*PPX09*12", + "name": "Paris | Rue Paul Escudier 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3317475, + 48.8806436 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0912", + "ref": "FR*V75*PPX09*12", + "name": "Paris | Rue Paul Escudier 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3600462, + 48.8702567 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1001", + "ref": "FR*V75*PPX10*01", + "name": "Paris | Rue Pierre Chausson 1", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3600462, + 48.8702567 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1001", + "ref": "FR*V75*PPX10*01", + "name": "Paris | Rue Pierre Chausson 1", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3600462, + 48.8702567 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1001", + "ref": "FR*V75*PPX10*01", + "name": "Paris | Rue Pierre Chausson 1", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.366288, + 48.87237 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1003", + "ref": "FR*V75*PPX10*03", + "name": "Paris | Avenue Richerand 11", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3587236, + 48.8750762 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1002", + "ref": "FR*V75*PPX10*02", + "name": "Paris | Rue Sibour 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3587236, + 48.8750762 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1002", + "ref": "FR*V75*PPX10*02", + "name": "Paris | Rue Sibour 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3587236, + 48.8750762 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1002", + "ref": "FR*V75*PPX10*02", + "name": "Paris | Rue Sibour 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3587236, + 48.8750762 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1002", + "ref": "FR*V75*PPX10*02", + "name": "Paris | Rue Sibour 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3587236, + 48.8750762 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1002", + "ref": "FR*V75*PPX10*02", + "name": "Paris | Rue Sibour 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3587236, + 48.8750762 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1002", + "ref": "FR*V75*PPX10*02", + "name": "Paris | Rue Sibour 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.366288, + 48.87237 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1003", + "ref": "FR*V75*PPX10*03", + "name": "Paris | Avenue Richerand 11", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3629571, + 48.8814921 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1007", + "ref": "FR*V75*PPX10*07", + "name": "Paris | Rue du Château Landon 24", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3629571, + 48.8814921 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1007", + "ref": "FR*V75*PPX10*07", + "name": "Paris | Rue du Château Landon 24", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.354076, + 48.87081 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1008", + "ref": "FR*V75*PPX10*08", + "name": "Paris | Rue de Metz 6", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36289, + 48.87484 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1014", + "ref": "FR*V75*PPX10*14", + "name": "Paris | Quai de Valmy 107", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3551424, + 48.8740698 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1012", + "ref": "FR*V75*PPX10*12", + "name": "Paris | Rue du Faubourg Saint-Denis 91", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3551424, + 48.8740698 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1012", + "ref": "FR*V75*PPX10*12", + "name": "Paris | Rue du Faubourg Saint-Denis 91", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.348162, + 48.87517 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1013", + "ref": "FR*V75*PPX10*13", + "name": "Paris | Rue du Faubourg Poissonnière 64", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.348162, + 48.87517 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1013", + "ref": "FR*V75*PPX10*13", + "name": "Paris | Rue du Faubourg Poissonnière 64", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.348162, + 48.87517 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1013", + "ref": "FR*V75*PPX10*13", + "name": "Paris | Rue du Faubourg Poissonnière 64", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.348162, + 48.87517 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1013", + "ref": "FR*V75*PPX10*13", + "name": "Paris | Rue du Faubourg Poissonnière 64", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36289, + 48.87484 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1014", + "ref": "FR*V75*PPX10*14", + "name": "Paris | Quai de Valmy 107", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36289, + 48.87484 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1014", + "ref": "FR*V75*PPX10*14", + "name": "Paris | Quai de Valmy 107", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.354076, + 48.87081 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1008", + "ref": "FR*V75*PPX10*08", + "name": "Paris | Rue de Metz 6", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36289, + 48.87484 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1014", + "ref": "FR*V75*PPX10*14", + "name": "Paris | Quai de Valmy 107", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36289, + 48.87484 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1014", + "ref": "FR*V75*PPX10*14", + "name": "Paris | Quai de Valmy 107", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36289, + 48.87484 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1014", + "ref": "FR*V75*PPX10*14", + "name": "Paris | Quai de Valmy 107", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3783382, + 48.8553267 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1101", + "ref": "FR*V75*PPX11*01", + "name": "Paris | Avenue Ledru Rollin 155", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3783382, + 48.8553267 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1101", + "ref": "FR*V75*PPX11*01", + "name": "Paris | Avenue Ledru Rollin 155", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3783382, + 48.8553267 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1101", + "ref": "FR*V75*PPX11*01", + "name": "Paris | Avenue Ledru Rollin 155", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3783382, + 48.8553267 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1101", + "ref": "FR*V75*PPX11*01", + "name": "Paris | Avenue Ledru Rollin 155", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3551424, + 48.8740698 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1012", + "ref": "FR*V75*PPX10*12", + "name": "Paris | Rue du Faubourg Saint-Denis 91", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3551424, + 48.8740698 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1012", + "ref": "FR*V75*PPX10*12", + "name": "Paris | Rue du Faubourg Saint-Denis 91", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3509617, + 48.8801236 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1011", + "ref": "FR*V75*PPX10*11", + "name": "Paris | Rue Rocroy 15", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3509617, + 48.8801236 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1011", + "ref": "FR*V75*PPX10*11", + "name": "Paris | Rue Rocroy 15", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.354076, + 48.87081 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1008", + "ref": "FR*V75*PPX10*08", + "name": "Paris | Rue de Metz 6", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.354076, + 48.87081 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1008", + "ref": "FR*V75*PPX10*08", + "name": "Paris | Rue de Metz 6", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372715, + 48.87565 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1009", + "ref": "FR*V75*PPX10*09", + "name": "Paris | boulevard de la Villette 55", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372715, + 48.87565 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1009", + "ref": "FR*V75*PPX10*09", + "name": "Paris | boulevard de la Villette 55", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372715, + 48.87565 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1009", + "ref": "FR*V75*PPX10*09", + "name": "Paris | boulevard de la Villette 55", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372715, + 48.87565 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1009", + "ref": "FR*V75*PPX10*09", + "name": "Paris | boulevard de la Villette 55", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372715, + 48.87565 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1009", + "ref": "FR*V75*PPX10*09", + "name": "Paris | boulevard de la Villette 55", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3523208, + 48.8750753 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1010", + "ref": "FR*V75*PPX10*10", + "name": "Paris | Rue de Paradis 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3523208, + 48.8750753 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1010", + "ref": "FR*V75*PPX10*10", + "name": "Paris | Rue de Paradis 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3523208, + 48.8750753 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1010", + "ref": "FR*V75*PPX10*10", + "name": "Paris | Rue de Paradis 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3523208, + 48.8750753 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1010", + "ref": "FR*V75*PPX10*10", + "name": "Paris | Rue de Paradis 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3523208, + 48.8750753 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1010", + "ref": "FR*V75*PPX10*10", + "name": "Paris | Rue de Paradis 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3523208, + 48.8750753 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1010", + "ref": "FR*V75*PPX10*10", + "name": "Paris | Rue de Paradis 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3509617, + 48.8801236 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1011", + "ref": "FR*V75*PPX10*11", + "name": "Paris | Rue Rocroy 15", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3509617, + 48.8801236 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1011", + "ref": "FR*V75*PPX10*11", + "name": "Paris | Rue Rocroy 15", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3713985, + 48.8640621 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1117", + "ref": "FR*V75*PPX11*17", + "name": "Paris | Boulevard Richard Lenoir 110", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3713985, + 48.8640621 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1117", + "ref": "FR*V75*PPX11*17", + "name": "Paris | Boulevard Richard Lenoir 110", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379246, + 48.83171 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1311", + "ref": "FR*V75*PPX13*11", + "name": "Paris | Rue des Frigos 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372548, + 48.83186 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1302", + "ref": "FR*V75*PPX13*02", + "name": "Paris | Rue de Chevaleret 131", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378739, + 48.8403578 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1218", + "ref": "FR*V75*PPX12*18", + "name": "Paris | boulevard de Bercy 5", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3665764, + 48.8268565 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1301", + "ref": "FR*V75*PPX13*01", + "name": "Paris | Rue Nationale 77", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3665764, + 48.8268565 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1301", + "ref": "FR*V75*PPX13*01", + "name": "Paris | Rue Nationale 77", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3665764, + 48.8268565 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1301", + "ref": "FR*V75*PPX13*01", + "name": "Paris | Rue Nationale 77", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3665764, + 48.8268565 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1301", + "ref": "FR*V75*PPX13*01", + "name": "Paris | Rue Nationale 77", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3665764, + 48.8268565 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1301", + "ref": "FR*V75*PPX13*01", + "name": "Paris | Rue Nationale 77", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372548, + 48.83186 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1302", + "ref": "FR*V75*PPX13*02", + "name": "Paris | Rue de Chevaleret 131", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372548, + 48.83186 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1302", + "ref": "FR*V75*PPX13*02", + "name": "Paris | Rue de Chevaleret 131", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378739, + 48.8403578 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1218", + "ref": "FR*V75*PPX12*18", + "name": "Paris | boulevard de Bercy 5", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372548, + 48.83186 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1302", + "ref": "FR*V75*PPX13*02", + "name": "Paris | Rue de Chevaleret 131", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372548, + 48.83186 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1302", + "ref": "FR*V75*PPX13*02", + "name": "Paris | Rue de Chevaleret 131", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372548, + 48.83186 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1302", + "ref": "FR*V75*PPX13*02", + "name": "Paris | Rue de Chevaleret 131", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372548, + 48.83186 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1302", + "ref": "FR*V75*PPX13*02", + "name": "Paris | Rue de Chevaleret 131", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345853, + 48.82195 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1303", + "ref": "FR*V75*PPX13*03", + "name": "Paris | Rue de Rungis 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345853, + 48.82195 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1303", + "ref": "FR*V75*PPX13*03", + "name": "Paris | Rue de Rungis 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345853, + 48.82195 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1303", + "ref": "FR*V75*PPX13*03", + "name": "Paris | Rue de Rungis 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378739, + 48.8403578 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1218", + "ref": "FR*V75*PPX12*18", + "name": "Paris | boulevard de Bercy 5", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378739, + 48.8403578 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1218", + "ref": "FR*V75*PPX12*18", + "name": "Paris | boulevard de Bercy 5", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345853, + 48.82195 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1303", + "ref": "FR*V75*PPX13*03", + "name": "Paris | Rue de Rungis 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3850356, + 48.8355193 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1216", + "ref": "FR*V75*PPX12*16", + "name": "Paris | Rue de Pommard 7", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4002905, + 48.8351899 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1215", + "ref": "FR*V75*PPX12*15", + "name": "Paris | Rue Claude Decaen 26", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4002905, + 48.8351899 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1215", + "ref": "FR*V75*PPX12*15", + "name": "Paris | Rue Claude Decaen 26", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4002905, + 48.8351899 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1215", + "ref": "FR*V75*PPX12*15", + "name": "Paris | Rue Claude Decaen 26", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4002905, + 48.8351899 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1215", + "ref": "FR*V75*PPX12*15", + "name": "Paris | Rue Claude Decaen 26", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3850356, + 48.8355193 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1216", + "ref": "FR*V75*PPX12*16", + "name": "Paris | Rue de Pommard 7", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3850356, + 48.8355193 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1216", + "ref": "FR*V75*PPX12*16", + "name": "Paris | Rue de Pommard 7", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3850356, + 48.8355193 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1216", + "ref": "FR*V75*PPX12*16", + "name": "Paris | Rue de Pommard 7", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4022445, + 48.8373149 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1217", + "ref": "FR*V75*PPX12*17", + "name": "Paris | ter Rue de Picpus 122", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378739, + 48.8403578 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1218", + "ref": "FR*V75*PPX12*18", + "name": "Paris | boulevard de Bercy 5", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4022445, + 48.8373149 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1217", + "ref": "FR*V75*PPX12*17", + "name": "Paris | ter Rue de Picpus 122", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4022445, + 48.8373149 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1217", + "ref": "FR*V75*PPX12*17", + "name": "Paris | ter Rue de Picpus 122", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4022445, + 48.8373149 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1217", + "ref": "FR*V75*PPX12*17", + "name": "Paris | ter Rue de Picpus 122", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4022445, + 48.8373149 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1217", + "ref": "FR*V75*PPX12*17", + "name": "Paris | ter Rue de Picpus 122", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4022445, + 48.8373149 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1217", + "ref": "FR*V75*PPX12*17", + "name": "Paris | ter Rue de Picpus 122", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378739, + 48.8403578 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1218", + "ref": "FR*V75*PPX12*18", + "name": "Paris | boulevard de Bercy 5", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378739, + 48.8403578 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1218", + "ref": "FR*V75*PPX12*18", + "name": "Paris | boulevard de Bercy 5", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345853, + 48.82195 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1303", + "ref": "FR*V75*PPX13*03", + "name": "Paris | Rue de Rungis 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345853, + 48.82195 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1303", + "ref": "FR*V75*PPX13*03", + "name": "Paris | Rue de Rungis 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3713985, + 48.8640621 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1117", + "ref": "FR*V75*PPX11*17", + "name": "Paris | Boulevard Richard Lenoir 110", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353056, + 48.8345242 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1309", + "ref": "FR*V75*PPX13*09", + "name": "Paris | Rue Croulebarbe 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3643333, + 48.8205622 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1308", + "ref": "FR*V75*PPX13*08", + "name": "Paris | Avenue de Choisy 8", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3643333, + 48.8205622 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1308", + "ref": "FR*V75*PPX13*08", + "name": "Paris | Avenue de Choisy 8", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3643333, + 48.8205622 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1308", + "ref": "FR*V75*PPX13*08", + "name": "Paris | Avenue de Choisy 8", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3643333, + 48.8205622 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1308", + "ref": "FR*V75*PPX13*08", + "name": "Paris | Avenue de Choisy 8", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353056, + 48.8345242 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1309", + "ref": "FR*V75*PPX13*09", + "name": "Paris | Rue Croulebarbe 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353056, + 48.8345242 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1309", + "ref": "FR*V75*PPX13*09", + "name": "Paris | Rue Croulebarbe 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353056, + 48.8345242 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1309", + "ref": "FR*V75*PPX13*09", + "name": "Paris | Rue Croulebarbe 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353056, + 48.8345242 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1309", + "ref": "FR*V75*PPX13*09", + "name": "Paris | Rue Croulebarbe 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3537665, + 48.8295778 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1307", + "ref": "FR*V75*PPX13*07", + "name": "Paris | Rue Bobillot 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353056, + 48.8345242 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1309", + "ref": "FR*V75*PPX13*09", + "name": "Paris | Rue Croulebarbe 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3724643, + 48.8362302 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1310", + "ref": "FR*V75*PPX13*10", + "name": "Paris | Rue Fernand Braudel 21", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3724643, + 48.8362302 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1310", + "ref": "FR*V75*PPX13*10", + "name": "Paris | Rue Fernand Braudel 21", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3724643, + 48.8362302 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1310", + "ref": "FR*V75*PPX13*10", + "name": "Paris | Rue Fernand Braudel 21", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3724643, + 48.8362302 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1310", + "ref": "FR*V75*PPX13*10", + "name": "Paris | Rue Fernand Braudel 21", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379246, + 48.83171 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1311", + "ref": "FR*V75*PPX13*11", + "name": "Paris | Rue des Frigos 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379246, + 48.83171 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1311", + "ref": "FR*V75*PPX13*11", + "name": "Paris | Rue des Frigos 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3537665, + 48.8295778 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1307", + "ref": "FR*V75*PPX13*07", + "name": "Paris | Rue Bobillot 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3537665, + 48.8295778 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1307", + "ref": "FR*V75*PPX13*07", + "name": "Paris | Rue Bobillot 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3446053, + 48.8351639 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1304", + "ref": "FR*V75*PPX13*04", + "name": "Paris | Boulevard Arago 52", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3753988, + 48.8231521 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1306", + "ref": "FR*V75*PPX13*06", + "name": "Paris | Rue Darmesteter 12", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3446053, + 48.8351639 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1304", + "ref": "FR*V75*PPX13*04", + "name": "Paris | Boulevard Arago 52", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3446053, + 48.8351639 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1304", + "ref": "FR*V75*PPX13*04", + "name": "Paris | Boulevard Arago 52", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3446053, + 48.8351639 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1304", + "ref": "FR*V75*PPX13*04", + "name": "Paris | Boulevard Arago 52", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3446053, + 48.8351639 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1304", + "ref": "FR*V75*PPX13*04", + "name": "Paris | Boulevard Arago 52", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.356917, + 48.8303916 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1305", + "ref": "FR*V75*PPX13*05", + "name": "Paris | Avenue de Choisy 188", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.356917, + 48.8303916 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1305", + "ref": "FR*V75*PPX13*05", + "name": "Paris | Avenue de Choisy 188", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.356917, + 48.8303916 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1305", + "ref": "FR*V75*PPX13*05", + "name": "Paris | Avenue de Choisy 188", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3753988, + 48.8231521 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1306", + "ref": "FR*V75*PPX13*06", + "name": "Paris | Rue Darmesteter 12", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3537665, + 48.8295778 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1307", + "ref": "FR*V75*PPX13*07", + "name": "Paris | Rue Bobillot 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3753988, + 48.8231521 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1306", + "ref": "FR*V75*PPX13*06", + "name": "Paris | Rue Darmesteter 12", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3753988, + 48.8231521 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1306", + "ref": "FR*V75*PPX13*06", + "name": "Paris | Rue Darmesteter 12", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3753988, + 48.8231521 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1306", + "ref": "FR*V75*PPX13*06", + "name": "Paris | Rue Darmesteter 12", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3753988, + 48.8231521 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1306", + "ref": "FR*V75*PPX13*06", + "name": "Paris | Rue Darmesteter 12", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3753988, + 48.8231521 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1306", + "ref": "FR*V75*PPX13*06", + "name": "Paris | Rue Darmesteter 12", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3537665, + 48.8295778 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1307", + "ref": "FR*V75*PPX13*07", + "name": "Paris | Rue Bobillot 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3537665, + 48.8295778 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1307", + "ref": "FR*V75*PPX13*07", + "name": "Paris | Rue Bobillot 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4002905, + 48.8351899 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1215", + "ref": "FR*V75*PPX12*15", + "name": "Paris | Rue Claude Decaen 26", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4002905, + 48.8351899 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1215", + "ref": "FR*V75*PPX12*15", + "name": "Paris | Rue Claude Decaen 26", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4002905, + 48.8351899 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1215", + "ref": "FR*V75*PPX12*15", + "name": "Paris | Rue Claude Decaen 26", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3856322, + 48.8473293 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1205", + "ref": "FR*V75*PPX12*05", + "name": "Paris | Boulevard Diderot 73", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-18", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3922556, + 48.8364094 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1204", + "ref": "FR*V75*PPX12*04", + "name": "Paris | Rue de Charenton 251", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3922556, + 48.8364094 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1204", + "ref": "FR*V75*PPX12*04", + "name": "Paris | Rue de Charenton 251", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3922556, + 48.8364094 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1204", + "ref": "FR*V75*PPX12*04", + "name": "Paris | Rue de Charenton 251", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3856322, + 48.8473293 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1205", + "ref": "FR*V75*PPX12*05", + "name": "Paris | Boulevard Diderot 73", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-18", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3856322, + 48.8473293 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1205", + "ref": "FR*V75*PPX12*05", + "name": "Paris | Boulevard Diderot 73", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-18", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3856322, + 48.8473293 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1205", + "ref": "FR*V75*PPX12*05", + "name": "Paris | Boulevard Diderot 73", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-18", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3856322, + 48.8473293 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1205", + "ref": "FR*V75*PPX12*05", + "name": "Paris | Boulevard Diderot 73", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-18", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.407044, + 48.8444 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1206", + "ref": "FR*V75*PPX12*06", + "name": "Paris | Avenue de Saint-Mandé 94", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3922556, + 48.8364094 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1204", + "ref": "FR*V75*PPX12*04", + "name": "Paris | Rue de Charenton 251", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.407044, + 48.8444 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1206", + "ref": "FR*V75*PPX12*06", + "name": "Paris | Avenue de Saint-Mandé 94", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.407044, + 48.8444 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1206", + "ref": "FR*V75*PPX12*06", + "name": "Paris | Avenue de Saint-Mandé 94", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.407044, + 48.8444 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1206", + "ref": "FR*V75*PPX12*06", + "name": "Paris | Avenue de Saint-Mandé 94", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.407044, + 48.8444 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1206", + "ref": "FR*V75*PPX12*06", + "name": "Paris | Avenue de Saint-Mandé 94", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.407044, + 48.8444 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1206", + "ref": "FR*V75*PPX12*06", + "name": "Paris | Avenue de Saint-Mandé 94", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.367915, + 48.84837 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1207", + "ref": "FR*V75*PPX12*07", + "name": "Paris | Boulevard de la Bastille 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.367915, + 48.84837 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1207", + "ref": "FR*V75*PPX12*07", + "name": "Paris | Boulevard de la Bastille 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3922556, + 48.8364094 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1204", + "ref": "FR*V75*PPX12*04", + "name": "Paris | Rue de Charenton 251", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3878529, + 48.839191 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1202", + "ref": "FR*V75*PPX12*02", + "name": "Paris | Rue du Charolais 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.400428, + 48.8406851 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1214", + "ref": "FR*V75*PPX12*14", + "name": "Paris | boulevard de Picpus 7", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4050137, + 48.8415951 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1201", + "ref": "FR*V75*PPX12*01", + "name": "Paris | Avenue du Docteur Arnold Netter 10", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3713985, + 48.8640621 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1117", + "ref": "FR*V75*PPX11*17", + "name": "Paris | Boulevard Richard Lenoir 110", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3713985, + 48.8640621 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1117", + "ref": "FR*V75*PPX11*17", + "name": "Paris | Boulevard Richard Lenoir 110", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3862243, + 48.8632221 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1118", + "ref": "FR*V75*PPX11*18", + "name": "Paris | avenue de la République 105", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3862243, + 48.8632221 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1118", + "ref": "FR*V75*PPX11*18", + "name": "Paris | avenue de la République 105", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3862243, + 48.8632221 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1118", + "ref": "FR*V75*PPX11*18", + "name": "Paris | avenue de la République 105", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3862243, + 48.8632221 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1118", + "ref": "FR*V75*PPX11*18", + "name": "Paris | avenue de la République 105", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3862243, + 48.8632221 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1118", + "ref": "FR*V75*PPX11*18", + "name": "Paris | avenue de la République 105", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4050137, + 48.8415951 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1201", + "ref": "FR*V75*PPX12*01", + "name": "Paris | Avenue du Docteur Arnold Netter 10", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3878529, + 48.839191 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1202", + "ref": "FR*V75*PPX12*02", + "name": "Paris | Rue du Charolais 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4050137, + 48.8415951 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1201", + "ref": "FR*V75*PPX12*01", + "name": "Paris | Avenue du Docteur Arnold Netter 10", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4050137, + 48.8415951 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1201", + "ref": "FR*V75*PPX12*01", + "name": "Paris | Avenue du Docteur Arnold Netter 10", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4050137, + 48.8415951 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1201", + "ref": "FR*V75*PPX12*01", + "name": "Paris | Avenue du Docteur Arnold Netter 10", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3878529, + 48.839191 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1202", + "ref": "FR*V75*PPX12*02", + "name": "Paris | Rue du Charolais 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3878529, + 48.839191 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1202", + "ref": "FR*V75*PPX12*02", + "name": "Paris | Rue du Charolais 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3878529, + 48.839191 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1202", + "ref": "FR*V75*PPX12*02", + "name": "Paris | Rue du Charolais 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3878529, + 48.839191 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1202", + "ref": "FR*V75*PPX12*02", + "name": "Paris | Rue du Charolais 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.367915, + 48.84837 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1207", + "ref": "FR*V75*PPX12*07", + "name": "Paris | Boulevard de la Bastille 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.367915, + 48.84837 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1207", + "ref": "FR*V75*PPX12*07", + "name": "Paris | Boulevard de la Bastille 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.367915, + 48.84837 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1207", + "ref": "FR*V75*PPX12*07", + "name": "Paris | Boulevard de la Bastille 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.410751, + 48.846304 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1213", + "ref": "FR*V75*PPX12*13", + "name": "Paris | cours de Vincennes 120", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388111, + 48.8334137 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1212", + "ref": "FR*V75*PPX12*12", + "name": "Paris | Rue des Pirogues de Bercy 44", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388111, + 48.8334137 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1212", + "ref": "FR*V75*PPX12*12", + "name": "Paris | Rue des Pirogues de Bercy 44", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388111, + 48.8334137 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1212", + "ref": "FR*V75*PPX12*12", + "name": "Paris | Rue des Pirogues de Bercy 44", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388111, + 48.8334137 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1212", + "ref": "FR*V75*PPX12*12", + "name": "Paris | Rue des Pirogues de Bercy 44", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388111, + 48.8334137 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1212", + "ref": "FR*V75*PPX12*12", + "name": "Paris | Rue des Pirogues de Bercy 44", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388111, + 48.8334137 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1212", + "ref": "FR*V75*PPX12*12", + "name": "Paris | Rue des Pirogues de Bercy 44", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.410751, + 48.846304 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1213", + "ref": "FR*V75*PPX12*13", + "name": "Paris | cours de Vincennes 120", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.410751, + 48.846304 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1213", + "ref": "FR*V75*PPX12*13", + "name": "Paris | cours de Vincennes 120", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.367915, + 48.84837 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1207", + "ref": "FR*V75*PPX12*07", + "name": "Paris | Boulevard de la Bastille 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.410751, + 48.846304 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1213", + "ref": "FR*V75*PPX12*13", + "name": "Paris | cours de Vincennes 120", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.400428, + 48.8406851 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1214", + "ref": "FR*V75*PPX12*14", + "name": "Paris | boulevard de Picpus 7", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.400428, + 48.8406851 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1214", + "ref": "FR*V75*PPX12*14", + "name": "Paris | boulevard de Picpus 7", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.400428, + 48.8406851 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1214", + "ref": "FR*V75*PPX12*14", + "name": "Paris | boulevard de Picpus 7", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.400428, + 48.8406851 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1214", + "ref": "FR*V75*PPX12*14", + "name": "Paris | boulevard de Picpus 7", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.400428, + 48.8406851 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1214", + "ref": "FR*V75*PPX12*14", + "name": "Paris | boulevard de Picpus 7", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.400428, + 48.8406851 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1214", + "ref": "FR*V75*PPX12*14", + "name": "Paris | boulevard de Picpus 7", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388111, + 48.8334137 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1212", + "ref": "FR*V75*PPX12*12", + "name": "Paris | Rue des Pirogues de Bercy 44", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.389211, + 48.84154 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1211", + "ref": "FR*V75*PPX12*11", + "name": "Paris | Rue Antoine-Julien Henard 3", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.389211, + 48.84154 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1211", + "ref": "FR*V75*PPX12*11", + "name": "Paris | Rue Antoine-Julien Henard 3", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.389211, + 48.84154 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1211", + "ref": "FR*V75*PPX12*11", + "name": "Paris | Rue Antoine-Julien Henard 3", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3953738, + 48.8455775 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1208", + "ref": "FR*V75*PPX12*08", + "name": "Paris | Rue Fabre d'Églantine 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3953738, + 48.8455775 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1208", + "ref": "FR*V75*PPX12*08", + "name": "Paris | Rue Fabre d'Églantine 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3953738, + 48.8455775 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1208", + "ref": "FR*V75*PPX12*08", + "name": "Paris | Rue Fabre d'Églantine 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3953738, + 48.8455775 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1208", + "ref": "FR*V75*PPX12*08", + "name": "Paris | Rue Fabre d'Églantine 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3953738, + 48.8455775 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1208", + "ref": "FR*V75*PPX12*08", + "name": "Paris | Rue Fabre d'Églantine 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.409631, + 48.84071 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1210", + "ref": "FR*V75*PPX12*10", + "name": "Paris | Avenue Émile Laurent 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.409631, + 48.84071 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1210", + "ref": "FR*V75*PPX12*10", + "name": "Paris | Avenue Émile Laurent 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.409631, + 48.84071 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1210", + "ref": "FR*V75*PPX12*10", + "name": "Paris | Avenue Émile Laurent 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.409631, + 48.84071 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1210", + "ref": "FR*V75*PPX12*10", + "name": "Paris | Avenue Émile Laurent 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.409631, + 48.84071 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1210", + "ref": "FR*V75*PPX12*10", + "name": "Paris | Avenue Émile Laurent 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.409631, + 48.84071 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1210", + "ref": "FR*V75*PPX12*10", + "name": "Paris | Avenue Émile Laurent 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.409631, + 48.84071 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1210", + "ref": "FR*V75*PPX12*10", + "name": "Paris | Avenue Émile Laurent 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.389211, + 48.84154 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1211", + "ref": "FR*V75*PPX12*11", + "name": "Paris | Rue Antoine-Julien Henard 3", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.389211, + 48.84154 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1211", + "ref": "FR*V75*PPX12*11", + "name": "Paris | Rue Antoine-Julien Henard 3", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.389211, + 48.84154 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1211", + "ref": "FR*V75*PPX12*11", + "name": "Paris | Rue Antoine-Julien Henard 3", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3239783, + 48.847875 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0604", + "ref": "FR*V75*PPX06*04", + "name": "Paris | Rue de Bérite 3", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3239783, + 48.847875 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0604", + "ref": "FR*V75*PPX06*04", + "name": "Paris | Rue de Bérite 3", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.241010412111203, + 48.214366530490125 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078386", + "ref": "FR*HPC*PNF078386", + "name": "RELAIS TROYES LE PLESSIS", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.241010412111203, + 48.214366530490125 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078386", + "ref": "FR*HPC*PNF078386", + "name": "RELAIS TROYES LE PLESSIS", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493363, + 46.114344 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078387", + "ref": "FR*HPC*PNF078387", + "name": "RELAIS CEIGNES CERDON", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493363, + 46.114344 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078387", + "ref": "FR*HPC*PNF078387", + "name": "RELAIS CEIGNES CERDON", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493363, + 46.114344 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078387", + "ref": "FR*HPC*PNF078387", + "name": "RELAIS CEIGNES CERDON", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493363, + 46.114344 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078387", + "ref": "FR*HPC*PNF078387", + "name": "RELAIS CEIGNES CERDON", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493363, + 46.114344 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078387", + "ref": "FR*HPC*PNF078387", + "name": "RELAIS CEIGNES CERDON", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493363, + 46.114344 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078387", + "ref": "FR*HPC*PNF078387", + "name": "RELAIS CEIGNES CERDON", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493363, + 46.114344 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078387", + "ref": "FR*HPC*PNF078387", + "name": "RELAIS CEIGNES CERDON", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493363, + 46.114344 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078387", + "ref": "FR*HPC*PNF078387", + "name": "RELAIS CEIGNES CERDON", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.0686, + 48.972589 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078531", + "ref": "FR*HPC*PNF078531", + "name": "AIRE DE KESKASTEL", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-11-22", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.0686, + 48.972589 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078531", + "ref": "FR*HPC*PNF078531", + "name": "AIRE DE KESKASTEL", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32789, + 49.32443 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078544", + "ref": "FR*HPC*PNF078544", + "name": "RELAIS BEUZEVILLE NORD", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.431166, + 44.979033 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078546", + "ref": "FR*HPC*PNF078546", + "name": "RELAIS DE L ESTALOT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.431166, + 44.979033 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078546", + "ref": "FR*HPC*PNF078546", + "name": "RELAIS DE L ESTALOT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.431166, + 44.979033 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078546", + "ref": "FR*HPC*PNF078546", + "name": "RELAIS DE L ESTALOT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.431166, + 44.979033 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078546", + "ref": "FR*HPC*PNF078546", + "name": "RELAIS DE L ESTALOT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50616, + 44.87366 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078551", + "ref": "FR*HPC*PNF078551", + "name": "RELAIS FONTBELLEAU", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50616, + 44.87366 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078551", + "ref": "FR*HPC*PNF078551", + "name": "RELAIS FONTBELLEAU", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50616, + 44.87366 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078551", + "ref": "FR*HPC*PNF078551", + "name": "RELAIS FONTBELLEAU", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.241010412111203, + 48.214366530490125 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078386", + "ref": "FR*HPC*PNF078386", + "name": "RELAIS TROYES LE PLESSIS", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.241010412111203, + 48.214366530490125 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078386", + "ref": "FR*HPC*PNF078386", + "name": "RELAIS TROYES LE PLESSIS", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.172111, + 47.42224 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080042", + "ref": "FR*HPC*PNF080042", + "name": "RELAIS DIJON-BROGNON", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.926765, + 47.337545 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078333", + "ref": "FR*HPC*PNF078333", + "name": "RELAIS LES VIGNOBLES", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.529364, + 44.231895 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078243", + "ref": "FR*HPC*PNF078243", + "name": "RELAIS BOIS DE DOURRE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.529364, + 44.231895 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078243", + "ref": "FR*HPC*PNF078243", + "name": "RELAIS BOIS DE DOURRE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.529364, + 44.231895 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078243", + "ref": "FR*HPC*PNF078243", + "name": "RELAIS BOIS DE DOURRE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.529364, + 44.231895 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078243", + "ref": "FR*HPC*PNF078243", + "name": "RELAIS BOIS DE DOURRE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.529364, + 44.231895 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078243", + "ref": "FR*HPC*PNF078243", + "name": "RELAIS BOIS DE DOURRE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32577, + 48.584798 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078244", + "ref": "FR*HPC*PNF078244", + "name": "RELAIS LE MONT SAINT MICHEL", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32577, + 48.584798 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078244", + "ref": "FR*HPC*PNF078244", + "name": "RELAIS LE MONT SAINT MICHEL", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32577, + 48.584798 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078244", + "ref": "FR*HPC*PNF078244", + "name": "RELAIS LE MONT SAINT MICHEL", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32577, + 48.584798 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078244", + "ref": "FR*HPC*PNF078244", + "name": "RELAIS LE MONT SAINT MICHEL", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32577, + 48.584798 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078244", + "ref": "FR*HPC*PNF078244", + "name": "RELAIS LE MONT SAINT MICHEL", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32577, + 48.584798 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078244", + "ref": "FR*HPC*PNF078244", + "name": "RELAIS LE MONT SAINT MICHEL", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32577, + 48.584798 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078244", + "ref": "FR*HPC*PNF078244", + "name": "RELAIS LE MONT SAINT MICHEL", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32577, + 48.584798 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078244", + "ref": "FR*HPC*PNF078244", + "name": "RELAIS LE MONT SAINT MICHEL", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.926765, + 47.337545 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078333", + "ref": "FR*HPC*PNF078333", + "name": "RELAIS LES VIGNOBLES", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.926765, + 47.337545 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078333", + "ref": "FR*HPC*PNF078333", + "name": "RELAIS LES VIGNOBLES", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.926765, + 47.337545 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078333", + "ref": "FR*HPC*PNF078333", + "name": "RELAIS LES VIGNOBLES", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.926765, + 47.337545 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078333", + "ref": "FR*HPC*PNF078333", + "name": "RELAIS LES VIGNOBLES", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.926765, + 47.337545 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078333", + "ref": "FR*HPC*PNF078333", + "name": "RELAIS LES VIGNOBLES", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.926765, + 47.337545 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078333", + "ref": "FR*HPC*PNF078333", + "name": "RELAIS LES VIGNOBLES", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50616, + 44.87366 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078551", + "ref": "FR*HPC*PNF078551", + "name": "RELAIS FONTBELLEAU", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.125336, + 48.456669 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078556", + "ref": "FR*HPC*PNF078556", + "name": "RELAIS LA DENTELLE D'ALENCON", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.125336, + 48.456669 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078556", + "ref": "FR*HPC*PNF078556", + "name": "RELAIS LA DENTELLE D'ALENCON", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.125336, + 48.456669 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078556", + "ref": "FR*HPC*PNF078556", + "name": "RELAIS LA DENTELLE D'ALENCON", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078569", + "ref": "FR*HPC*PNF078569", + "name": "RELAIS PORT LAURAGAIS SUD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078569", + "ref": "FR*HPC*PNF078569", + "name": "RELAIS PORT LAURAGAIS SUD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078569", + "ref": "FR*HPC*PNF078569", + "name": "RELAIS PORT LAURAGAIS SUD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078569", + "ref": "FR*HPC*PNF078569", + "name": "RELAIS PORT LAURAGAIS SUD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078569", + "ref": "FR*HPC*PNF078569", + "name": "RELAIS PORT LAURAGAIS SUD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078569", + "ref": "FR*HPC*PNF078569", + "name": "RELAIS PORT LAURAGAIS SUD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.504672, + 49.592204 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078601", + "ref": "FR*HPC*PNF078601", + "name": "RELAIS ARDENNES-WOINIC", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.504672, + 49.592204 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078601", + "ref": "FR*HPC*PNF078601", + "name": "RELAIS ARDENNES-WOINIC", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.504672, + 49.592204 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078601", + "ref": "FR*HPC*PNF078601", + "name": "RELAIS ARDENNES-WOINIC", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.504672, + 49.592204 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078601", + "ref": "FR*HPC*PNF078601", + "name": "RELAIS ARDENNES-WOINIC", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.504672, + 49.592204 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078601", + "ref": "FR*HPC*PNF078601", + "name": "RELAIS ARDENNES-WOINIC", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.504672, + 49.592204 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078601", + "ref": "FR*HPC*PNF078601", + "name": "RELAIS ARDENNES-WOINIC", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.504672, + 49.592204 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078601", + "ref": "FR*HPC*PNF078601", + "name": "RELAIS ARDENNES-WOINIC", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.504672, + 49.592204 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078601", + "ref": "FR*HPC*PNF078601", + "name": "RELAIS ARDENNES-WOINIC", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.269559, + 43.721222 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078611", + "ref": "FR*HPC*PNF078611", + "name": "RELAIS L'ADOUR", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.269559, + 43.721222 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078611", + "ref": "FR*HPC*PNF078611", + "name": "RELAIS L'ADOUR", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.269559, + 43.721222 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078611", + "ref": "FR*HPC*PNF078611", + "name": "RELAIS L'ADOUR", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.269559, + 43.721222 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078611", + "ref": "FR*HPC*PNF078611", + "name": "RELAIS L'ADOUR", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838227, + 46.96323 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080041", + "ref": "FR*HPC*PNF080041", + "name": "RELAIS BEAUNE MERCEUIL", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078569", + "ref": "FR*HPC*PNF078569", + "name": "RELAIS PORT LAURAGAIS SUD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078569", + "ref": "FR*HPC*PNF078569", + "name": "RELAIS PORT LAURAGAIS SUD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078569", + "ref": "FR*HPC*PNF078569", + "name": "RELAIS PORT LAURAGAIS SUD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.125336, + 48.456669 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078556", + "ref": "FR*HPC*PNF078556", + "name": "RELAIS LA DENTELLE D'ALENCON", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.035532, + 43.589282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078564", + "ref": "FR*HPC*PNF078564", + "name": "RELAIS BREGUIERES SUD", + "capacity": "18", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.529364, + 44.231895 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078243", + "ref": "FR*HPC*PNF078243", + "name": "RELAIS BOIS DE DOURRE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.529364, + 44.231895 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078243", + "ref": "FR*HPC*PNF078243", + "name": "RELAIS BOIS DE DOURRE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.529364, + 44.231895 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078243", + "ref": "FR*HPC*PNF078243", + "name": "RELAIS BOIS DE DOURRE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.062407, + 50.650931 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF074566", + "ref": "FR*HPC*PNF074566", + "name": "RELAIS LILLE PERIPHERIQUE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11733, + 46.057926 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070641", + "ref": "FR*HPC*PNF070641", + "name": "AIRE DES VOLCANS D AUVERGNE SAINT AGOULIN", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11733, + 46.057926 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070641", + "ref": "FR*HPC*PNF070641", + "name": "AIRE DES VOLCANS D AUVERGNE SAINT AGOULIN", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11733, + 46.057926 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070641", + "ref": "FR*HPC*PNF070641", + "name": "AIRE DES VOLCANS D AUVERGNE SAINT AGOULIN", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.494, + 46.7483 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070668", + "ref": "FR*HPC*PNF070668", + "name": "RELAIS ROND POINT JEANNE ROSE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.494, + 46.7483 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070668", + "ref": "FR*HPC*PNF070668", + "name": "RELAIS ROND POINT JEANNE ROSE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.494, + 46.7483 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070668", + "ref": "FR*HPC*PNF070668", + "name": "RELAIS ROND POINT JEANNE ROSE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.494, + 46.7483 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070668", + "ref": "FR*HPC*PNF070668", + "name": "RELAIS ROND POINT JEANNE ROSE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376323, + 48.805832 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF072380", + "ref": "FR*HPC*PNF072380", + "name": "RELAIS IVRY SUR SEINE STADE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-15", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376323, + 48.805832 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF072380", + "ref": "FR*HPC*PNF072380", + "name": "RELAIS IVRY SUR SEINE STADE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376323, + 48.805832 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF072380", + "ref": "FR*HPC*PNF072380", + "name": "RELAIS IVRY SUR SEINE STADE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376323, + 48.805832 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF072380", + "ref": "FR*HPC*PNF072380", + "name": "RELAIS IVRY SUR SEINE STADE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376323, + 48.805832 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF072380", + "ref": "FR*HPC*PNF072380", + "name": "RELAIS IVRY SUR SEINE STADE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376323, + 48.805832 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF072380", + "ref": "FR*HPC*PNF072380", + "name": "RELAIS IVRY SUR SEINE STADE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-15", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376323, + 48.805832 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF072380", + "ref": "FR*HPC*PNF072380", + "name": "RELAIS IVRY SUR SEINE STADE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376323, + 48.805832 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF072380", + "ref": "FR*HPC*PNF072380", + "name": "RELAIS IVRY SUR SEINE STADE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.062407, + 50.650931 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF074566", + "ref": "FR*HPC*PNF074566", + "name": "RELAIS LILLE PERIPHERIQUE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.062407, + 50.650931 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF074566", + "ref": "FR*HPC*PNF074566", + "name": "RELAIS LILLE PERIPHERIQUE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.062407, + 50.650931 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF074566", + "ref": "FR*HPC*PNF074566", + "name": "RELAIS LILLE PERIPHERIQUE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.062407, + 50.650931 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF074566", + "ref": "FR*HPC*PNF074566", + "name": "RELAIS LILLE PERIPHERIQUE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11733, + 46.057926 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070641", + "ref": "FR*HPC*PNF070641", + "name": "AIRE DES VOLCANS D AUVERGNE SAINT AGOULIN", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11733, + 46.057926 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070641", + "ref": "FR*HPC*PNF070641", + "name": "AIRE DES VOLCANS D AUVERGNE SAINT AGOULIN", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11733, + 46.057926 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070641", + "ref": "FR*HPC*PNF070641", + "name": "AIRE DES VOLCANS D AUVERGNE SAINT AGOULIN", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07982, + 44.329297 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070002", + "ref": "FR*HPC*PNF070002", + "name": "RELAIS L'AVEYRON", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.016955, + 47.4185 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF069703", + "ref": "FR*HPC*PNF069703", + "name": "RELAIS VARADES PAYS D'ANCENIS", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07982, + 44.329297 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070002", + "ref": "FR*HPC*PNF070002", + "name": "RELAIS L'AVEYRON", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07982, + 44.329297 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070002", + "ref": "FR*HPC*PNF070002", + "name": "RELAIS L'AVEYRON", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07982, + 44.329297 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070002", + "ref": "FR*HPC*PNF070002", + "name": "RELAIS L'AVEYRON", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07982, + 44.329297 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070002", + "ref": "FR*HPC*PNF070002", + "name": "RELAIS L'AVEYRON", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07982, + 44.329297 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070002", + "ref": "FR*HPC*PNF070002", + "name": "RELAIS L'AVEYRON", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07982, + 44.329297 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070002", + "ref": "FR*HPC*PNF070002", + "name": "RELAIS L'AVEYRON", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07982, + 44.329297 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070002", + "ref": "FR*HPC*PNF070002", + "name": "RELAIS L'AVEYRON", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509803, + 45.541115 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070003", + "ref": "FR*HPC*PNF070003", + "name": "RELAIS PORTE DE CORREZE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11733, + 46.057926 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070641", + "ref": "FR*HPC*PNF070641", + "name": "AIRE DES VOLCANS D AUVERGNE SAINT AGOULIN", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509803, + 45.541115 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070003", + "ref": "FR*HPC*PNF070003", + "name": "RELAIS PORTE DE CORREZE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509803, + 45.541115 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070003", + "ref": "FR*HPC*PNF070003", + "name": "RELAIS PORTE DE CORREZE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509803, + 45.541115 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070003", + "ref": "FR*HPC*PNF070003", + "name": "RELAIS PORTE DE CORREZE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509803, + 45.541115 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070003", + "ref": "FR*HPC*PNF070003", + "name": "RELAIS PORTE DE CORREZE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509803, + 45.541115 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070003", + "ref": "FR*HPC*PNF070003", + "name": "RELAIS PORTE DE CORREZE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509803, + 45.541115 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070003", + "ref": "FR*HPC*PNF070003", + "name": "RELAIS PORTE DE CORREZE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509803, + 45.541115 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070003", + "ref": "FR*HPC*PNF070003", + "name": "RELAIS PORTE DE CORREZE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11733, + 46.057926 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF070641", + "ref": "FR*HPC*PNF070641", + "name": "AIRE DES VOLCANS D AUVERGNE SAINT AGOULIN", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.062407, + 50.650931 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF074566", + "ref": "FR*HPC*PNF074566", + "name": "RELAIS LILLE PERIPHERIQUE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.062407, + 50.650931 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF074566", + "ref": "FR*HPC*PNF074566", + "name": "RELAIS LILLE PERIPHERIQUE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.593513, + 46.715962 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078238", + "ref": "FR*HPC*PNF078238", + "name": "RELAIS MILLE ETANGS", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.062407, + 50.650931 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF074566", + "ref": "FR*HPC*PNF074566", + "name": "RELAIS LILLE PERIPHERIQUE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.150559, + 48.652612 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078075", + "ref": "FR*HPC*PNF078075", + "name": "RELAIS DE BRABOIS", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.070386, + 45.844552 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078118", + "ref": "FR*HPC*PNF078118", + "name": "RELAIS LYON MONTLUEL", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.149616, + 49.487559 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078171", + "ref": "FR*HPC*PNF078171", + "name": "RELAIS AMIRAL MOUCHEZ", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.149616, + 49.487559 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078171", + "ref": "FR*HPC*PNF078171", + "name": "RELAIS AMIRAL MOUCHEZ", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.149616, + 49.487559 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078171", + "ref": "FR*HPC*PNF078171", + "name": "RELAIS AMIRAL MOUCHEZ", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827109, + 45.589631 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078183", + "ref": "FR*HPC*PNF078183", + "name": "RELAIS COMMUNAY SUD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827109, + 45.589631 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078183", + "ref": "FR*HPC*PNF078183", + "name": "RELAIS COMMUNAY SUD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827109, + 45.589631 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078183", + "ref": "FR*HPC*PNF078183", + "name": "RELAIS COMMUNAY SUD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827109, + 45.589631 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078183", + "ref": "FR*HPC*PNF078183", + "name": "RELAIS COMMUNAY SUD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.204589, + 49.609844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078218", + "ref": "FR*HPC*PNF078218", + "name": "RELAIS HARDIVILLERS", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.204589, + 49.609844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078218", + "ref": "FR*HPC*PNF078218", + "name": "RELAIS HARDIVILLERS", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.204589, + 49.609844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078218", + "ref": "FR*HPC*PNF078218", + "name": "RELAIS HARDIVILLERS", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.204589, + 49.609844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078218", + "ref": "FR*HPC*PNF078218", + "name": "RELAIS HARDIVILLERS", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.204589, + 49.609844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078218", + "ref": "FR*HPC*PNF078218", + "name": "RELAIS HARDIVILLERS", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.204589, + 49.609844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078218", + "ref": "FR*HPC*PNF078218", + "name": "RELAIS HARDIVILLERS", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.204589, + 49.609844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078218", + "ref": "FR*HPC*PNF078218", + "name": "RELAIS HARDIVILLERS", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.204589, + 49.609844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078218", + "ref": "FR*HPC*PNF078218", + "name": "RELAIS HARDIVILLERS", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31121, + 43.86441 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078230", + "ref": "FR*HPC*PNF078230", + "name": "RELAIS DU CAYLAR", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.593513, + 46.715962 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078238", + "ref": "FR*HPC*PNF078238", + "name": "RELAIS MILLE ETANGS", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.150559, + 48.652612 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078075", + "ref": "FR*HPC*PNF078075", + "name": "RELAIS DE BRABOIS", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.150559, + 48.652612 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078075", + "ref": "FR*HPC*PNF078075", + "name": "RELAIS DE BRABOIS", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.150559, + 48.652612 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078075", + "ref": "FR*HPC*PNF078075", + "name": "RELAIS DE BRABOIS", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-02-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37080308694003083, + 46.29755602592633 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078016", + "ref": "FR*HPC*PNF078016", + "name": "RELAIS POITOU CHARENTES SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.296055, + 46.20308 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF076523", + "ref": "FR*HPC*PNF076523", + "name": "RELAIS BOURG JASSERON", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.296055, + 46.20308 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF076523", + "ref": "FR*HPC*PNF076523", + "name": "RELAIS BOURG JASSERON", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00055, + 44.9997 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF077241", + "ref": "FR*HPC*PNF077241", + "name": "RELAIS LA BAYANNE", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00055, + 44.9997 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF077241", + "ref": "FR*HPC*PNF077241", + "name": "RELAIS LA BAYANNE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37080308694003083, + 46.29755602592633 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078016", + "ref": "FR*HPC*PNF078016", + "name": "RELAIS POITOU CHARENTES SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37080308694003083, + 46.29755602592633 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078016", + "ref": "FR*HPC*PNF078016", + "name": "RELAIS POITOU CHARENTES SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37080308694003083, + 46.29755602592633 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078016", + "ref": "FR*HPC*PNF078016", + "name": "RELAIS POITOU CHARENTES SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37080308694003083, + 46.29755602592633 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078016", + "ref": "FR*HPC*PNF078016", + "name": "RELAIS POITOU CHARENTES SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37080308694003083, + 46.29755602592633 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078016", + "ref": "FR*HPC*PNF078016", + "name": "RELAIS POITOU CHARENTES SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.150559, + 48.652612 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078075", + "ref": "FR*HPC*PNF078075", + "name": "RELAIS DE BRABOIS", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37080308694003083, + 46.29755602592633 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078016", + "ref": "FR*HPC*PNF078016", + "name": "RELAIS POITOU CHARENTES SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37080308694003083, + 46.29755602592633 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078016", + "ref": "FR*HPC*PNF078016", + "name": "RELAIS POITOU CHARENTES SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26627, + 48.835002 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078037", + "ref": "FR*HPC*PNF078037", + "name": "RELAIS PONT AVAL", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.375428, + 48.900638 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078061", + "ref": "FR*HPC*PNF078061", + "name": "RELAIS AUBERVILLIERS PERIPHERIQUE EXTERIEUR", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-14", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3735, + 48.9003 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078062", + "ref": "FR*HPC*PNF078062", + "name": "RELAIS DU PERIPHERIQUE INTERIEUR", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.905094, + 45.739317 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078069", + "ref": "FR*HPC*PNF078069", + "name": "RELAIS DES BRONDILLANTS BRON", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-03", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.905094, + 45.739317 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078069", + "ref": "FR*HPC*PNF078069", + "name": "RELAIS DES BRONDILLANTS BRON", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-03", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.150559, + 48.652612 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF078075", + "ref": "FR*HPC*PNF078075", + "name": "RELAIS DE BRABOIS", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.172111, + 47.42224 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080042", + "ref": "FR*HPC*PNF080042", + "name": "RELAIS DIJON-BROGNON", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.848176, + 43.84322 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080044", + "ref": "FR*HPC*PNF080044", + "name": "RELAIS VOLX", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.016955, + 47.4185 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF069703", + "ref": "FR*HPC*PNF069703", + "name": "RELAIS VARADES PAYS D'ANCENIS", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.363451, + 48.759935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080193", + "ref": "FR*HPC*PNF080193", + "name": "RELAIS SAVERNE MONSWILLER", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.863486341983179, + 48.26738780480035 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080197", + "ref": "FR*HPC*PNF080197", + "name": "RELAIS LORRAINE LES RAPPES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.863486341983179, + 48.26738780480035 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080197", + "ref": "FR*HPC*PNF080197", + "name": "RELAIS LORRAINE LES RAPPES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.863486341983179, + 48.26738780480035 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080197", + "ref": "FR*HPC*PNF080197", + "name": "RELAIS LORRAINE LES RAPPES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.863486341983179, + 48.26738780480035 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080197", + "ref": "FR*HPC*PNF080197", + "name": "RELAIS LORRAINE LES RAPPES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.863486341983179, + 48.26738780480035 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080197", + "ref": "FR*HPC*PNF080197", + "name": "RELAIS LORRAINE LES RAPPES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.863486341983179, + 48.26738780480035 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080197", + "ref": "FR*HPC*PNF080197", + "name": "RELAIS LORRAINE LES RAPPES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.863486341983179, + 48.26738780480035 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080197", + "ref": "FR*HPC*PNF080197", + "name": "RELAIS LORRAINE LES RAPPES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.128131, + 49.402915 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080198", + "ref": "FR*HPC*PNF080198", + "name": "RELAIS DE SAINT MATHURIN ALLONNE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-05-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.128131, + 49.402915 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080198", + "ref": "FR*HPC*PNF080198", + "name": "RELAIS DE SAINT MATHURIN ALLONNE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-05-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.072417, + 45.877047 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080200", + "ref": "FR*HPC*PNF080200", + "name": "RELAIS DE LA RIPAILLE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.072417, + 45.877047 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080200", + "ref": "FR*HPC*PNF080200", + "name": "RELAIS DE LA RIPAILLE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.072417, + 45.877047 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080200", + "ref": "FR*HPC*PNF080200", + "name": "RELAIS DE LA RIPAILLE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.072417, + 45.877047 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080200", + "ref": "FR*HPC*PNF080200", + "name": "RELAIS DE LA RIPAILLE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.655602, + 43.752619 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080232", + "ref": "FR*HPC*PNF080232", + "name": "RELAIS PORTES DU TARN", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.655602, + 43.752619 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080232", + "ref": "FR*HPC*PNF080232", + "name": "RELAIS PORTES DU TARN", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78049, + 45.197767 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080259", + "ref": "FR*HPC*PNF080259", + "name": "RELAIS DE MEYLAN", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78049, + 45.197767 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080259", + "ref": "FR*HPC*PNF080259", + "name": "RELAIS DE MEYLAN", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78049, + 45.197767 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080259", + "ref": "FR*HPC*PNF080259", + "name": "RELAIS DE MEYLAN", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78049, + 45.197767 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080259", + "ref": "FR*HPC*PNF080259", + "name": "RELAIS DE MEYLAN", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.863486341983179, + 48.26738780480035 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080197", + "ref": "FR*HPC*PNF080197", + "name": "RELAIS LORRAINE LES RAPPES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.363451, + 48.759935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080193", + "ref": "FR*HPC*PNF080193", + "name": "RELAIS SAVERNE MONSWILLER", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.850927825, + 43.84343386 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080045", + "ref": "FR*HPC*PNF080045", + "name": "RELAIS MANOSQUE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.363451, + 48.759935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080193", + "ref": "FR*HPC*PNF080193", + "name": "RELAIS SAVERNE MONSWILLER", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0144273068944765, + 47.419479 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080173", + "ref": "FR*HPC*PNF080173", + "name": "RELAIS VARADES PAYS DE LOIRE", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0144273068944765, + 47.419479 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080173", + "ref": "FR*HPC*PNF080173", + "name": "RELAIS VARADES PAYS DE LOIRE", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.111322, + 46.057755 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080175", + "ref": "FR*HPC*PNF080175", + "name": "RELAIS VOLCANS D'AUVERGNE OUEST PL", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.111322, + 46.057755 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080175", + "ref": "FR*HPC*PNF080175", + "name": "RELAIS VOLCANS D'AUVERGNE OUEST PL", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.111322, + 46.057755 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080175", + "ref": "FR*HPC*PNF080175", + "name": "RELAIS VOLCANS D'AUVERGNE OUEST PL", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.111322, + 46.057755 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080175", + "ref": "FR*HPC*PNF080175", + "name": "RELAIS VOLCANS D'AUVERGNE OUEST PL", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.111322, + 46.057755 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080175", + "ref": "FR*HPC*PNF080175", + "name": "RELAIS VOLCANS D'AUVERGNE OUEST PL", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.111322, + 46.057755 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080175", + "ref": "FR*HPC*PNF080175", + "name": "RELAIS VOLCANS D'AUVERGNE OUEST PL", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.780632, + 48.635678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080178", + "ref": "FR*HPC*PNF080178", + "name": "RELAIS PORTES DE YEBLES", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-02-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316345, + 48.823581 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080179", + "ref": "FR*HPC*PNF080179", + "name": "RELAIS DE LA PORTE DE CHATILLON", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2020-11-03", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608616, + 44.171001 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080183", + "ref": "FR*HPC*PNF080183", + "name": "RELAIS PASSAGE D AGEN", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608616, + 44.171001 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080183", + "ref": "FR*HPC*PNF080183", + "name": "RELAIS PASSAGE D AGEN", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.133697, + 43.869821 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080188", + "ref": "FR*HPC*PNF080188", + "name": "RELAIS DE CASTETS", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.133697, + 43.869821 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080188", + "ref": "FR*HPC*PNF080188", + "name": "RELAIS DE CASTETS", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6546462208168315, + 49.5713395660623 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080191", + "ref": "FR*HPC*PNF080191", + "name": "RELAIS CHAMP DU ROY LAON", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6546462208168315, + 49.5713395660623 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080191", + "ref": "FR*HPC*PNF080191", + "name": "RELAIS CHAMP DU ROY LAON", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.363451, + 48.759935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080193", + "ref": "FR*HPC*PNF080193", + "name": "RELAIS SAVERNE MONSWILLER", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.363451, + 48.759935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080193", + "ref": "FR*HPC*PNF080193", + "name": "RELAIS SAVERNE MONSWILLER", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.363451, + 48.759935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080193", + "ref": "FR*HPC*PNF080193", + "name": "RELAIS SAVERNE MONSWILLER", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.864688, + 49.361312 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080261", + "ref": "FR*HPC*PNF080261", + "name": "RELAIS BOSGOUET NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.864688, + 49.361312 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080261", + "ref": "FR*HPC*PNF080261", + "name": "RELAIS BOSGOUET NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.864688, + 49.361312 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080261", + "ref": "FR*HPC*PNF080261", + "name": "RELAIS BOSGOUET NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.864688, + 49.361312 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080261", + "ref": "FR*HPC*PNF080261", + "name": "RELAIS BOSGOUET NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3942192164788385, + 48.93472544057976 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080299", + "ref": "FR*HPC*PNF080299", + "name": "RELAIS LA COURNEUVE OUEST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3942192164788385, + 48.93472544057976 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080299", + "ref": "FR*HPC*PNF080299", + "name": "RELAIS LA COURNEUVE OUEST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3942192164788385, + 48.93472544057976 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080299", + "ref": "FR*HPC*PNF080299", + "name": "RELAIS LA COURNEUVE OUEST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3942192164788385, + 48.93472544057976 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080299", + "ref": "FR*HPC*PNF080299", + "name": "RELAIS LA COURNEUVE OUEST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3942192164788385, + 48.93472544057976 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080299", + "ref": "FR*HPC*PNF080299", + "name": "RELAIS LA COURNEUVE OUEST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3942192164788385, + 48.93472544057976 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080299", + "ref": "FR*HPC*PNF080299", + "name": "RELAIS LA COURNEUVE OUEST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711425, + 47.113401 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080339", + "ref": "FR*HPC*PNF080339", + "name": "RELAIS DE CREUX MOREAU", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711425, + 47.113401 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080339", + "ref": "FR*HPC*PNF080339", + "name": "RELAIS DE CREUX MOREAU", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711425, + 47.113401 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080339", + "ref": "FR*HPC*PNF080339", + "name": "RELAIS DE CREUX MOREAU", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711425, + 47.113401 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080339", + "ref": "FR*HPC*PNF080339", + "name": "RELAIS DE CREUX MOREAU", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711425, + 47.113401 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080339", + "ref": "FR*HPC*PNF080339", + "name": "RELAIS DE CREUX MOREAU", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711425, + 47.113401 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080339", + "ref": "FR*HPC*PNF080339", + "name": "RELAIS DE CREUX MOREAU", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711425, + 47.113401 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080339", + "ref": "FR*HPC*PNF080339", + "name": "RELAIS DE CREUX MOREAU", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711425, + 47.113401 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080339", + "ref": "FR*HPC*PNF080339", + "name": "RELAIS DE CREUX MOREAU", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.034861, + 47.503262 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080340", + "ref": "FR*HPC*PNF080340", + "name": "RELAIS DE LA CHAPONNE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.034861, + 47.503262 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080340", + "ref": "FR*HPC*PNF080340", + "name": "RELAIS DE LA CHAPONNE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.034861, + 47.503262 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080340", + "ref": "FR*HPC*PNF080340", + "name": "RELAIS DE LA CHAPONNE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.034861, + 47.503262 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080340", + "ref": "FR*HPC*PNF080340", + "name": "RELAIS DE LA CHAPONNE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.034861, + 47.503262 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080340", + "ref": "FR*HPC*PNF080340", + "name": "RELAIS DE LA CHAPONNE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3942192164788385, + 48.93472544057976 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080299", + "ref": "FR*HPC*PNF080299", + "name": "RELAIS LA COURNEUVE OUEST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3942192164788385, + 48.93472544057976 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080299", + "ref": "FR*HPC*PNF080299", + "name": "RELAIS LA COURNEUVE OUEST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.720103, + 49.520236 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080294", + "ref": "FR*HPC*PNF080294", + "name": "AIRE DE RESSONS OUEST", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080266", + "ref": "FR*HPC*PNF080266", + "name": "RELAIS MONTPELLIER FABREGUES NORD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.864688, + 49.361312 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080261", + "ref": "FR*HPC*PNF080261", + "name": "RELAIS BOSGOUET NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.864688, + 49.361312 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080261", + "ref": "FR*HPC*PNF080261", + "name": "RELAIS BOSGOUET NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.864688, + 49.361312 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080261", + "ref": "FR*HPC*PNF080261", + "name": "RELAIS BOSGOUET NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.864688, + 49.361312 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080261", + "ref": "FR*HPC*PNF080261", + "name": "RELAIS BOSGOUET NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080266", + "ref": "FR*HPC*PNF080266", + "name": "RELAIS MONTPELLIER FABREGUES NORD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-14", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080266", + "ref": "FR*HPC*PNF080266", + "name": "RELAIS MONTPELLIER FABREGUES NORD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080266", + "ref": "FR*HPC*PNF080266", + "name": "RELAIS MONTPELLIER FABREGUES NORD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080266", + "ref": "FR*HPC*PNF080266", + "name": "RELAIS MONTPELLIER FABREGUES NORD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080266", + "ref": "FR*HPC*PNF080266", + "name": "RELAIS MONTPELLIER FABREGUES NORD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.963146, + 46.097489 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080288", + "ref": "FR*HPC*PNF080288", + "name": "RELAIS DE VALLEIRY NORD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080266", + "ref": "FR*HPC*PNF080266", + "name": "RELAIS MONTPELLIER FABREGUES NORD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080266", + "ref": "FR*HPC*PNF080266", + "name": "RELAIS MONTPELLIER FABREGUES NORD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080266", + "ref": "FR*HPC*PNF080266", + "name": "RELAIS MONTPELLIER FABREGUES NORD", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.963146, + 46.097489 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080288", + "ref": "FR*HPC*PNF080288", + "name": "RELAIS DE VALLEIRY NORD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.963146, + 46.097489 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080288", + "ref": "FR*HPC*PNF080288", + "name": "RELAIS DE VALLEIRY NORD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.963146, + 46.097489 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080288", + "ref": "FR*HPC*PNF080288", + "name": "RELAIS DE VALLEIRY NORD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.963146, + 46.097489 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080288", + "ref": "FR*HPC*PNF080288", + "name": "RELAIS DE VALLEIRY NORD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.963146, + 46.097489 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080288", + "ref": "FR*HPC*PNF080288", + "name": "RELAIS DE VALLEIRY NORD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0144273068944765, + 47.419479 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080173", + "ref": "FR*HPC*PNF080173", + "name": "RELAIS VARADES PAYS DE LOIRE", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859716, + 47.976571 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080172", + "ref": "FR*HPC*PNF080172", + "name": "RELAIS ORLEANS GIDY", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859716, + 47.976571 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080172", + "ref": "FR*HPC*PNF080172", + "name": "RELAIS ORLEANS GIDY", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.074, + 50.540332 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080064", + "ref": "FR*HPC*PNF080064", + "name": "RELAIS AVELIN", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2020-08-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6666, + 47.33821 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080056", + "ref": "FR*HPC*PNF080056", + "name": "RELAIS DE ROMORANTIN", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6666, + 47.33821 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080056", + "ref": "FR*HPC*PNF080056", + "name": "RELAIS DE ROMORANTIN", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6666, + 47.33821 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080056", + "ref": "FR*HPC*PNF080056", + "name": "RELAIS DE ROMORANTIN", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053499, + 49.179691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080063", + "ref": "FR*HPC*PNF080063", + "name": "RELAIS METZ ST PRIVAT", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053499, + 49.179691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080063", + "ref": "FR*HPC*PNF080063", + "name": "RELAIS METZ ST PRIVAT", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053499, + 49.179691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080063", + "ref": "FR*HPC*PNF080063", + "name": "RELAIS METZ ST PRIVAT", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053499, + 49.179691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080063", + "ref": "FR*HPC*PNF080063", + "name": "RELAIS METZ ST PRIVAT", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053499, + 49.179691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080063", + "ref": "FR*HPC*PNF080063", + "name": "RELAIS METZ ST PRIVAT", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053499, + 49.179691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080063", + "ref": "FR*HPC*PNF080063", + "name": "RELAIS METZ ST PRIVAT", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053499, + 49.179691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080063", + "ref": "FR*HPC*PNF080063", + "name": "RELAIS METZ ST PRIVAT", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053499, + 49.179691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080063", + "ref": "FR*HPC*PNF080063", + "name": "RELAIS METZ ST PRIVAT", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053499, + 49.179691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080063", + "ref": "FR*HPC*PNF080063", + "name": "RELAIS METZ ST PRIVAT", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053499, + 49.179691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080063", + "ref": "FR*HPC*PNF080063", + "name": "RELAIS METZ ST PRIVAT", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053499, + 49.179691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080063", + "ref": "FR*HPC*PNF080063", + "name": "RELAIS METZ ST PRIVAT", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053499, + 49.179691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080063", + "ref": "FR*HPC*PNF080063", + "name": "RELAIS METZ ST PRIVAT", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053499, + 49.179691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080063", + "ref": "FR*HPC*PNF080063", + "name": "RELAIS METZ ST PRIVAT", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053499, + 49.179691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080063", + "ref": "FR*HPC*PNF080063", + "name": "RELAIS METZ ST PRIVAT", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053499, + 49.179691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080063", + "ref": "FR*HPC*PNF080063", + "name": "RELAIS METZ ST PRIVAT", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.053499, + 49.179691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080063", + "ref": "FR*HPC*PNF080063", + "name": "RELAIS METZ ST PRIVAT", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6666, + 47.33821 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080056", + "ref": "FR*HPC*PNF080056", + "name": "RELAIS DE ROMORANTIN", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6666, + 47.33821 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080056", + "ref": "FR*HPC*PNF080056", + "name": "RELAIS DE ROMORANTIN", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6666, + 47.33821 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080056", + "ref": "FR*HPC*PNF080056", + "name": "RELAIS DE ROMORANTIN", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742603853735758, + 50.40453203652518 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080047", + "ref": "FR*HPC*PNF080047", + "name": "RELAIS SOUCHEZ", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.850927825, + 43.84343386 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080045", + "ref": "FR*HPC*PNF080045", + "name": "RELAIS MANOSQUE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.850927825, + 43.84343386 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080045", + "ref": "FR*HPC*PNF080045", + "name": "RELAIS MANOSQUE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.850927825, + 43.84343386 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080045", + "ref": "FR*HPC*PNF080045", + "name": "RELAIS MANOSQUE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.769017, + 45.80924 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080046", + "ref": "FR*HPC*PNF080046", + "name": "RELAIS BRUYERES PAISY", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.769017, + 45.80924 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080046", + "ref": "FR*HPC*PNF080046", + "name": "RELAIS BRUYERES PAISY", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.769017, + 45.80924 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080046", + "ref": "FR*HPC*PNF080046", + "name": "RELAIS BRUYERES PAISY", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.769017, + 45.80924 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080046", + "ref": "FR*HPC*PNF080046", + "name": "RELAIS BRUYERES PAISY", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742603853735758, + 50.40453203652518 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080047", + "ref": "FR*HPC*PNF080047", + "name": "RELAIS SOUCHEZ", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.391378846523969, + 48.93390425439423 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080048", + "ref": "FR*HPC*PNF080048", + "name": "RELAIS LA COURNEUVE EST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6666, + 47.33821 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080056", + "ref": "FR*HPC*PNF080056", + "name": "RELAIS DE ROMORANTIN", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.391378846523969, + 48.93390425439423 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080048", + "ref": "FR*HPC*PNF080048", + "name": "RELAIS LA COURNEUVE EST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.391378846523969, + 48.93390425439423 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080048", + "ref": "FR*HPC*PNF080048", + "name": "RELAIS LA COURNEUVE EST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.391378846523969, + 48.93390425439423 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080048", + "ref": "FR*HPC*PNF080048", + "name": "RELAIS LA COURNEUVE EST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.391378846523969, + 48.93390425439423 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080048", + "ref": "FR*HPC*PNF080048", + "name": "RELAIS LA COURNEUVE EST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.391378846523969, + 48.93390425439423 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080048", + "ref": "FR*HPC*PNF080048", + "name": "RELAIS LA COURNEUVE EST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.391378846523969, + 48.93390425439423 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080048", + "ref": "FR*HPC*PNF080048", + "name": "RELAIS LA COURNEUVE EST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.391378846523969, + 48.93390425439423 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080048", + "ref": "FR*HPC*PNF080048", + "name": "RELAIS LA COURNEUVE EST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6666, + 47.33821 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080056", + "ref": "FR*HPC*PNF080056", + "name": "RELAIS DE ROMORANTIN", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.074, + 50.540332 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080064", + "ref": "FR*HPC*PNF080064", + "name": "RELAIS AVELIN", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2020-08-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07922256090806372, + 43.22956922042935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080070", + "ref": "FR*HPC*PNF080070", + "name": "RELAIS LES PYRENEES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859716, + 47.976571 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080172", + "ref": "FR*HPC*PNF080172", + "name": "RELAIS ORLEANS GIDY", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07922256090806372, + 43.22956922042935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080070", + "ref": "FR*HPC*PNF080070", + "name": "RELAIS LES PYRENEES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.496258, + 45.052079 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080123", + "ref": "FR*HPC*PNF080123", + "name": "DODO - RELAIS DE LA CROIX BLANCHE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.496258, + 45.052079 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080123", + "ref": "FR*HPC*PNF080123", + "name": "DODO - RELAIS DE LA CROIX BLANCHE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.254647, + 48.055847 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080138", + "ref": "FR*HPC*PNF080138", + "name": "SARTHE SARGE LE MANS NORD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.254647, + 48.055847 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080138", + "ref": "FR*HPC*PNF080138", + "name": "SARTHE SARGE LE MANS NORD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.254647, + 48.055847 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080138", + "ref": "FR*HPC*PNF080138", + "name": "SARTHE SARGE LE MANS NORD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.254647, + 48.055847 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080138", + "ref": "FR*HPC*PNF080138", + "name": "SARTHE SARGE LE MANS NORD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.254647, + 48.055847 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080138", + "ref": "FR*HPC*PNF080138", + "name": "SARTHE SARGE LE MANS NORD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.254647, + 48.055847 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080138", + "ref": "FR*HPC*PNF080138", + "name": "SARTHE SARGE LE MANS NORD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -4999,6 +1005211,150694 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.899358, + 42.779756 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080162", + "ref": "FR*HPC*PNF080162", + "name": "RELAIS RIVESALTES NORD", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.899358, + 42.779756 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080162", + "ref": "FR*HPC*PNF080162", + "name": "RELAIS RIVESALTES NORD", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859716, + 47.976571 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080172", + "ref": "FR*HPC*PNF080172", + "name": "RELAIS ORLEANS GIDY", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859716, + 47.976571 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080172", + "ref": "FR*HPC*PNF080172", + "name": "RELAIS ORLEANS GIDY", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859716, + 47.976571 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080172", + "ref": "FR*HPC*PNF080172", + "name": "RELAIS ORLEANS GIDY", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859716, + 47.976571 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080172", + "ref": "FR*HPC*PNF080172", + "name": "RELAIS ORLEANS GIDY", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859716, + 47.976571 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080172", + "ref": "FR*HPC*PNF080172", + "name": "RELAIS ORLEANS GIDY", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.538004, + 47.972518 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080117", + "ref": "FR*HPC*PNF080117", + "name": "DODO - RELAIS SARL STATION JOUZEL", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.538004, + 47.972518 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080117", + "ref": "FR*HPC*PNF080117", + "name": "DODO - RELAIS SARL STATION JOUZEL", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.538004, + 47.972518 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080117", + "ref": "FR*HPC*PNF080117", + "name": "DODO - RELAIS SARL STATION JOUZEL", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080071", + "ref": "FR*HPC*PNF080071", + "name": "RELAIS PONT DE L'ISERE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-11-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07922256090806372, + 43.22956922042935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080070", + "ref": "FR*HPC*PNF080070", + "name": "RELAIS LES PYRENEES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07922256090806372, + 43.22956922042935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080070", + "ref": "FR*HPC*PNF080070", + "name": "RELAIS LES PYRENEES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07922256090806372, + 43.22956922042935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080070", + "ref": "FR*HPC*PNF080070", + "name": "RELAIS LES PYRENEES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07922256090806372, + 43.22956922042935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080070", + "ref": "FR*HPC*PNF080070", + "name": "RELAIS LES PYRENEES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07922256090806372, + 43.22956922042935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080070", + "ref": "FR*HPC*PNF080070", + "name": "RELAIS LES PYRENEES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07922256090806372, + 43.22956922042935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080070", + "ref": "FR*HPC*PNF080070", + "name": "RELAIS LES PYRENEES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080071", + "ref": "FR*HPC*PNF080071", + "name": "RELAIS PONT DE L'ISERE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-11-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080071", + "ref": "FR*HPC*PNF080071", + "name": "RELAIS PONT DE L'ISERE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-11-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080071", + "ref": "FR*HPC*PNF080071", + "name": "RELAIS PONT DE L'ISERE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-11-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.538004, + 47.972518 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080117", + "ref": "FR*HPC*PNF080117", + "name": "DODO - RELAIS SARL STATION JOUZEL", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080071", + "ref": "FR*HPC*PNF080071", + "name": "RELAIS PONT DE L'ISERE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-11-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080071", + "ref": "FR*HPC*PNF080071", + "name": "RELAIS PONT DE L'ISERE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-11-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080071", + "ref": "FR*HPC*PNF080071", + "name": "RELAIS PONT DE L'ISERE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-11-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080071", + "ref": "FR*HPC*PNF080071", + "name": "RELAIS PONT DE L'ISERE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-11-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.926063, + 45.672131 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080072", + "ref": "FR*HPC*PNF080072", + "name": "RELAIS DE DRUMETTAZ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.926063, + 45.672131 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080072", + "ref": "FR*HPC*PNF080072", + "name": "RELAIS DE DRUMETTAZ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.926063, + 45.672131 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080072", + "ref": "FR*HPC*PNF080072", + "name": "RELAIS DE DRUMETTAZ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.926063, + 45.672131 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080072", + "ref": "FR*HPC*PNF080072", + "name": "RELAIS DE DRUMETTAZ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.016955, + 47.4185 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF069703", + "ref": "FR*HPC*PNF069703", + "name": "RELAIS VARADES PAYS D'ANCENIS", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.016955, + 47.4185 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF069703", + "ref": "FR*HPC*PNF069703", + "name": "RELAIS VARADES PAYS D'ANCENIS", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3182091, + 48.8473691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0603", + "ref": "FR*V75*PPX06*03", + "name": "Paris | Rue Mayet 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-28", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.198907, + 47.975069 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058931", + "ref": "FR*HPC*PNF058931", + "name": "RELAIS DE LA COULINE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.722189, + 49.523482 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058967", + "ref": "FR*HPC*PNF058967", + "name": "AIRE DE RESSONS EST", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.722189, + 49.523482 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058967", + "ref": "FR*HPC*PNF058967", + "name": "AIRE DE RESSONS EST", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.722189, + 49.523482 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058967", + "ref": "FR*HPC*PNF058967", + "name": "AIRE DE RESSONS EST", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-15", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.722189, + 49.523482 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058967", + "ref": "FR*HPC*PNF058967", + "name": "AIRE DE RESSONS EST", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.722189, + 49.523482 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058967", + "ref": "FR*HPC*PNF058967", + "name": "AIRE DE RESSONS EST", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.722189, + 49.523482 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058967", + "ref": "FR*HPC*PNF058967", + "name": "AIRE DE RESSONS EST", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443222, + 48.595281 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058968", + "ref": "FR*HPC*PNF058968", + "name": "RELAIS VILLABE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443222, + 48.595281 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058968", + "ref": "FR*HPC*PNF058968", + "name": "RELAIS VILLABE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443222, + 48.595281 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058968", + "ref": "FR*HPC*PNF058968", + "name": "RELAIS VILLABE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443222, + 48.595281 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058968", + "ref": "FR*HPC*PNF058968", + "name": "RELAIS VILLABE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443222, + 48.595281 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058968", + "ref": "FR*HPC*PNF058968", + "name": "RELAIS VILLABE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443222, + 48.595281 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058968", + "ref": "FR*HPC*PNF058968", + "name": "RELAIS VILLABE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443222, + 48.595281 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058968", + "ref": "FR*HPC*PNF058968", + "name": "RELAIS VILLABE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443222, + 48.595281 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058968", + "ref": "FR*HPC*PNF058968", + "name": "RELAIS VILLABE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867226, + 44.866331 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058969", + "ref": "FR*HPC*PNF058969", + "name": "RELAIS PORTES LES VALENCE EST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867226, + 44.866331 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058969", + "ref": "FR*HPC*PNF058969", + "name": "RELAIS PORTES LES VALENCE EST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867226, + 44.866331 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058969", + "ref": "FR*HPC*PNF058969", + "name": "RELAIS PORTES LES VALENCE EST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867226, + 44.866331 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058969", + "ref": "FR*HPC*PNF058969", + "name": "RELAIS PORTES LES VALENCE EST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867226, + 44.866331 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058969", + "ref": "FR*HPC*PNF058969", + "name": "RELAIS PORTES LES VALENCE EST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.722189, + 49.523482 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058967", + "ref": "FR*HPC*PNF058967", + "name": "AIRE DE RESSONS EST", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.198907, + 47.975069 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058931", + "ref": "FR*HPC*PNF058931", + "name": "RELAIS DE LA COULINE", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.449003, + 43.8755 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059193", + "ref": "FR*HPC*PNF059193", + "name": "RELAIS MARGUERITTES NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.669435, + 47.789562 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058911", + "ref": "FR*HPC*PNF058911", + "name": "RELAIS VENOY CHABLIS", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.024536, + 50.61693 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF051046", + "ref": "FR*HPC*PNF051046", + "name": "RELAIS DE L'EPINETTE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.024536, + 50.61693 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF051046", + "ref": "FR*HPC*PNF051046", + "name": "RELAIS DE L'EPINETTE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.024536, + 50.61693 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF051046", + "ref": "FR*HPC*PNF051046", + "name": "RELAIS DE L'EPINETTE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.024536, + 50.61693 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF051046", + "ref": "FR*HPC*PNF051046", + "name": "RELAIS DE L'EPINETTE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.024536, + 50.61693 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF051046", + "ref": "FR*HPC*PNF051046", + "name": "RELAIS DE L'EPINETTE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23132115, + 48.8398361 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058016", + "ref": "FR*HPC*PNF058016", + "name": "RELAIS DE SILLY", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.410002, + 45.442142 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058500", + "ref": "FR*HPC*PNF058500", + "name": "RELAIS PONT DE L'ANE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.410002, + 45.442142 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058500", + "ref": "FR*HPC*PNF058500", + "name": "RELAIS PONT DE L'ANE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.410002, + 45.442142 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058500", + "ref": "FR*HPC*PNF058500", + "name": "RELAIS PONT DE L'ANE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.410002, + 45.442142 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058500", + "ref": "FR*HPC*PNF058500", + "name": "RELAIS PONT DE L'ANE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.383225, + 43.316251 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058543", + "ref": "FR*HPC*PNF058543", + "name": "RELAIS PLOMBIERE MARSEILLE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.383225, + 43.316251 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058543", + "ref": "FR*HPC*PNF058543", + "name": "RELAIS PLOMBIERE MARSEILLE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.144751, + 48.891905 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058742", + "ref": "FR*HPC*PNF058742", + "name": "LES TILLEULS", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2020-06-12", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.669435, + 47.789562 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058911", + "ref": "FR*HPC*PNF058911", + "name": "RELAIS VENOY CHABLIS", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.669435, + 47.789562 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058911", + "ref": "FR*HPC*PNF058911", + "name": "RELAIS VENOY CHABLIS", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.669435, + 47.789562 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058911", + "ref": "FR*HPC*PNF058911", + "name": "RELAIS VENOY CHABLIS", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.669435, + 47.789562 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058911", + "ref": "FR*HPC*PNF058911", + "name": "RELAIS VENOY CHABLIS", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.669435, + 47.789562 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058911", + "ref": "FR*HPC*PNF058911", + "name": "RELAIS VENOY CHABLIS", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.669435, + 47.789562 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058911", + "ref": "FR*HPC*PNF058911", + "name": "RELAIS VENOY CHABLIS", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-03", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867226, + 44.866331 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058969", + "ref": "FR*HPC*PNF058969", + "name": "RELAIS PORTES LES VALENCE EST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867226, + 44.866331 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058969", + "ref": "FR*HPC*PNF058969", + "name": "RELAIS PORTES LES VALENCE EST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867226, + 44.866331 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF058969", + "ref": "FR*HPC*PNF058969", + "name": "RELAIS PORTES LES VALENCE EST", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.382357, + 47.768193 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059010", + "ref": "FR*HPC*PNF059010", + "name": "RELAIS ILE NAPOLEON", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865283, + 46.418606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059190", + "ref": "FR*HPC*PNF059190", + "name": "RELAIS MACON LA SALLE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865283, + 46.418606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059190", + "ref": "FR*HPC*PNF059190", + "name": "RELAIS MACON LA SALLE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865283, + 46.418606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059190", + "ref": "FR*HPC*PNF059190", + "name": "RELAIS MACON LA SALLE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865283, + 46.418606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059190", + "ref": "FR*HPC*PNF059190", + "name": "RELAIS MACON LA SALLE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865283, + 46.418606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059190", + "ref": "FR*HPC*PNF059190", + "name": "RELAIS MACON LA SALLE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865283, + 46.418606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059190", + "ref": "FR*HPC*PNF059190", + "name": "RELAIS MACON LA SALLE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865283, + 46.418606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059190", + "ref": "FR*HPC*PNF059190", + "name": "RELAIS MACON LA SALLE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865283, + 46.418606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059190", + "ref": "FR*HPC*PNF059190", + "name": "RELAIS MACON LA SALLE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865283, + 46.418606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059190", + "ref": "FR*HPC*PNF059190", + "name": "RELAIS MACON LA SALLE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865283, + 46.418606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059190", + "ref": "FR*HPC*PNF059190", + "name": "RELAIS MACON LA SALLE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865283, + 46.418606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059190", + "ref": "FR*HPC*PNF059190", + "name": "RELAIS MACON LA SALLE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865283, + 46.418606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059190", + "ref": "FR*HPC*PNF059190", + "name": "RELAIS MACON LA SALLE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865283, + 46.418606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059190", + "ref": "FR*HPC*PNF059190", + "name": "RELAIS MACON LA SALLE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865283, + 46.418606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059190", + "ref": "FR*HPC*PNF059190", + "name": "RELAIS MACON LA SALLE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865283, + 46.418606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059190", + "ref": "FR*HPC*PNF059190", + "name": "RELAIS MACON LA SALLE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865283, + 46.418606 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059190", + "ref": "FR*HPC*PNF059190", + "name": "RELAIS MACON LA SALLE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.449003, + 43.8755 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059193", + "ref": "FR*HPC*PNF059193", + "name": "RELAIS MARGUERITTES NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.449003, + 43.8755 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059193", + "ref": "FR*HPC*PNF059193", + "name": "RELAIS MARGUERITTES NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.449003, + 43.8755 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059193", + "ref": "FR*HPC*PNF059193", + "name": "RELAIS MARGUERITTES NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.186405, + 43.589684 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059189", + "ref": "FR*HPC*PNF059189", + "name": "AIRE DE LANCON DE PROVENCE OUEST", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.186405, + 43.589684 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059189", + "ref": "FR*HPC*PNF059189", + "name": "AIRE DE LANCON DE PROVENCE OUEST", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.186405, + 43.589684 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059189", + "ref": "FR*HPC*PNF059189", + "name": "AIRE DE LANCON DE PROVENCE OUEST", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836437, + 46.963869 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059042", + "ref": "FR*HPC*PNF059042", + "name": "RELAIS BEAUNE TAILLY", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.382357, + 47.768193 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059010", + "ref": "FR*HPC*PNF059010", + "name": "RELAIS ILE NAPOLEON", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.382357, + 47.768193 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059010", + "ref": "FR*HPC*PNF059010", + "name": "RELAIS ILE NAPOLEON", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.382357, + 47.768193 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059010", + "ref": "FR*HPC*PNF059010", + "name": "RELAIS ILE NAPOLEON", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.382357, + 47.768193 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059010", + "ref": "FR*HPC*PNF059010", + "name": "RELAIS ILE NAPOLEON", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.382357, + 47.768193 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059010", + "ref": "FR*HPC*PNF059010", + "name": "RELAIS ILE NAPOLEON", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.382357, + 47.768193 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059010", + "ref": "FR*HPC*PNF059010", + "name": "RELAIS ILE NAPOLEON", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.382357, + 47.768193 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059010", + "ref": "FR*HPC*PNF059010", + "name": "RELAIS ILE NAPOLEON", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.382357, + 47.768193 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059010", + "ref": "FR*HPC*PNF059010", + "name": "RELAIS ILE NAPOLEON", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836437, + 46.963869 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059042", + "ref": "FR*HPC*PNF059042", + "name": "RELAIS BEAUNE TAILLY", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.186405, + 43.589684 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059189", + "ref": "FR*HPC*PNF059189", + "name": "AIRE DE LANCON DE PROVENCE OUEST", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836437, + 46.963869 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059042", + "ref": "FR*HPC*PNF059042", + "name": "RELAIS BEAUNE TAILLY", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836437, + 46.963869 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059042", + "ref": "FR*HPC*PNF059042", + "name": "RELAIS BEAUNE TAILLY", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836437, + 46.963869 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059042", + "ref": "FR*HPC*PNF059042", + "name": "RELAIS BEAUNE TAILLY", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836437, + 46.963869 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059042", + "ref": "FR*HPC*PNF059042", + "name": "RELAIS BEAUNE TAILLY", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836437, + 46.963869 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059042", + "ref": "FR*HPC*PNF059042", + "name": "RELAIS BEAUNE TAILLY", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836437, + 46.963869 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059042", + "ref": "FR*HPC*PNF059042", + "name": "RELAIS BEAUNE TAILLY", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.133269952383021, + 43.713083462685034 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059051", + "ref": "FR*HPC*PNF059051", + "name": "RELAIS AMBRUSSUM SUD", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.186405, + 43.589684 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059189", + "ref": "FR*HPC*PNF059189", + "name": "AIRE DE LANCON DE PROVENCE OUEST", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.024536, + 50.61693 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF051046", + "ref": "FR*HPC*PNF051046", + "name": "RELAIS DE L'EPINETTE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.024536, + 50.61693 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF051046", + "ref": "FR*HPC*PNF051046", + "name": "RELAIS DE L'EPINETTE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.024536, + 50.61693 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF051046", + "ref": "FR*HPC*PNF051046", + "name": "RELAIS DE L'EPINETTE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.076274, + 49.444077 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF010263", + "ref": "FR*HPC*PNF010263", + "name": "RELAIS MONT RIBOUDET", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.907771, + 44.94012 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007357", + "ref": "FR*HPC*PNF007357", + "name": "RELAIS VALENCE DAME BLANCHE", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436995, + 44.645735 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007451", + "ref": "FR*HPC*PNF007451", + "name": "LES TERRES DE GRAVES SUD", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2019-07-15", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436995, + 44.645735 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007451", + "ref": "FR*HPC*PNF007451", + "name": "LES TERRES DE GRAVES SUD", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436995, + 44.645735 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007451", + "ref": "FR*HPC*PNF007451", + "name": "LES TERRES DE GRAVES SUD", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436995, + 44.645735 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007451", + "ref": "FR*HPC*PNF007451", + "name": "LES TERRES DE GRAVES SUD", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436995, + 44.645735 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007451", + "ref": "FR*HPC*PNF007451", + "name": "LES TERRES DE GRAVES SUD", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436995, + 44.645735 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007451", + "ref": "FR*HPC*PNF007451", + "name": "LES TERRES DE GRAVES SUD", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436995, + 44.645735 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007451", + "ref": "FR*HPC*PNF007451", + "name": "LES TERRES DE GRAVES SUD", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623604, + 45.278781 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007502", + "ref": "FR*HPC*PNF007502", + "name": "RELAIS VOREPPE", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623604, + 45.278781 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007502", + "ref": "FR*HPC*PNF007502", + "name": "RELAIS VOREPPE", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623604, + 45.278781 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007502", + "ref": "FR*HPC*PNF007502", + "name": "RELAIS VOREPPE", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-14", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623604, + 45.278781 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007502", + "ref": "FR*HPC*PNF007502", + "name": "RELAIS VOREPPE", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623604, + 45.278781 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007502", + "ref": "FR*HPC*PNF007502", + "name": "RELAIS VOREPPE", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623604, + 45.278781 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007502", + "ref": "FR*HPC*PNF007502", + "name": "RELAIS VOREPPE", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.489418, + 47.265314 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF010132", + "ref": "FR*HPC*PNF010132", + "name": "RELAIS CARQUEFOU", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.489418, + 47.265314 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF010132", + "ref": "FR*HPC*PNF010132", + "name": "RELAIS CARQUEFOU", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-01-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.076274, + 49.444077 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF010263", + "ref": "FR*HPC*PNF010263", + "name": "RELAIS MONT RIBOUDET", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.076274, + 49.444077 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF010263", + "ref": "FR*HPC*PNF010263", + "name": "RELAIS MONT RIBOUDET", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.076274, + 49.444077 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF010263", + "ref": "FR*HPC*PNF010263", + "name": "RELAIS MONT RIBOUDET", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.907771, + 44.94012 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007357", + "ref": "FR*HPC*PNF007357", + "name": "RELAIS VALENCE DAME BLANCHE", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.907771, + 44.94012 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007357", + "ref": "FR*HPC*PNF007357", + "name": "RELAIS VALENCE DAME BLANCHE", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.907771, + 44.94012 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007357", + "ref": "FR*HPC*PNF007357", + "name": "RELAIS VALENCE DAME BLANCHE", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44222, + 48.59459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF006369", + "ref": "FR*HPC*PNF006369", + "name": "RELAIS LES LISSES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39864, + 43.5245 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF001019", + "ref": "FR*HPC*PNF001019", + "name": "RELAIS DE PORTET OUEST", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-31", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39864, + 43.5245 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF001019", + "ref": "FR*HPC*PNF001019", + "name": "RELAIS DE PORTET OUEST", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-31", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44222, + 48.59459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF006369", + "ref": "FR*HPC*PNF006369", + "name": "RELAIS LES LISSES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44222, + 48.59459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF006369", + "ref": "FR*HPC*PNF006369", + "name": "RELAIS LES LISSES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44222, + 48.59459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF006369", + "ref": "FR*HPC*PNF006369", + "name": "RELAIS LES LISSES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44222, + 48.59459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF006369", + "ref": "FR*HPC*PNF006369", + "name": "RELAIS LES LISSES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44222, + 48.59459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF006369", + "ref": "FR*HPC*PNF006369", + "name": "RELAIS LES LISSES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44222, + 48.59459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF006369", + "ref": "FR*HPC*PNF006369", + "name": "RELAIS LES LISSES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44222, + 48.59459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF006369", + "ref": "FR*HPC*PNF006369", + "name": "RELAIS LES LISSES", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.907771, + 44.94012 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007357", + "ref": "FR*HPC*PNF007357", + "name": "RELAIS VALENCE DAME BLANCHE", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83576, + 45.6516 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF006467", + "ref": "FR*HPC*PNF006467", + "name": "RELAIS SOLAIZE", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-22", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.193534, + 43.589351 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007052", + "ref": "FR*HPC*PNF007052", + "name": "AIRE DE LANCON DE PROVENCE EST", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.193534, + 43.589351 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007052", + "ref": "FR*HPC*PNF007052", + "name": "AIRE DE LANCON DE PROVENCE EST", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.193534, + 43.589351 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007052", + "ref": "FR*HPC*PNF007052", + "name": "AIRE DE LANCON DE PROVENCE EST", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.193534, + 43.589351 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007052", + "ref": "FR*HPC*PNF007052", + "name": "AIRE DE LANCON DE PROVENCE EST", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.193534, + 43.589351 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007052", + "ref": "FR*HPC*PNF007052", + "name": "AIRE DE LANCON DE PROVENCE EST", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34749, + 48.758095 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007060", + "ref": "FR*HPC*PNF007060", + "name": "RELAIS DELTA RUNGIS", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2020-11-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.907771, + 44.94012 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF007357", + "ref": "FR*HPC*PNF007357", + "name": "RELAIS VALENCE DAME BLANCHE", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.076274, + 49.444077 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF010263", + "ref": "FR*HPC*PNF010263", + "name": "RELAIS MONT RIBOUDET", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.076274, + 49.444077 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF010263", + "ref": "FR*HPC*PNF010263", + "name": "RELAIS MONT RIBOUDET", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.024536, + 50.61693 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF051046", + "ref": "FR*HPC*PNF051046", + "name": "RELAIS DE L'EPINETTE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.076274, + 49.444077 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF010263", + "ref": "FR*HPC*PNF010263", + "name": "RELAIS MONT RIBOUDET", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5132, + 47.1617 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042595", + "ref": "FR*HPC*PNF042595", + "name": "RELAIS DE VERTOU GRASSINIERE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.507334, + 44.8737 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042677", + "ref": "FR*HPC*PNF042677", + "name": "RELAIS LORMONT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.507334, + 44.8737 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042677", + "ref": "FR*HPC*PNF042677", + "name": "RELAIS LORMONT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.507334, + 44.8737 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042677", + "ref": "FR*HPC*PNF042677", + "name": "RELAIS LORMONT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.507334, + 44.8737 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042677", + "ref": "FR*HPC*PNF042677", + "name": "RELAIS LORMONT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.709794, + 48.707985 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF050214", + "ref": "FR*HPC*PNF050214", + "name": "RELAIS HERRENWALD", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.709794, + 48.707985 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF050214", + "ref": "FR*HPC*PNF050214", + "name": "RELAIS HERRENWALD", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.112511, + 48.550222 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF050462", + "ref": "FR*HPC*PNF050462", + "name": "RELAIS PLOUMAGOAR", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.112511, + 48.550222 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF050462", + "ref": "FR*HPC*PNF050462", + "name": "RELAIS PLOUMAGOAR", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12959, + 45.7547 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF050499", + "ref": "FR*HPC*PNF050499", + "name": "RELAIS DE GERGOVIE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12959, + 45.7547 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF050499", + "ref": "FR*HPC*PNF050499", + "name": "RELAIS DE GERGOVIE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-05-15", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389485, + 49.173149 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF051024", + "ref": "FR*HPC*PNF051024", + "name": "RELAIS BEAU SITE", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-12", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389485, + 49.173149 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF051024", + "ref": "FR*HPC*PNF051024", + "name": "RELAIS BEAU SITE", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-12", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389485, + 49.173149 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF051024", + "ref": "FR*HPC*PNF051024", + "name": "RELAIS BEAU SITE", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-12", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389485, + 49.173149 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF051024", + "ref": "FR*HPC*PNF051024", + "name": "RELAIS BEAU SITE", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-12", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389485, + 49.173149 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF051024", + "ref": "FR*HPC*PNF051024", + "name": "RELAIS BEAU SITE", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-12", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389485, + 49.173149 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF051024", + "ref": "FR*HPC*PNF051024", + "name": "RELAIS BEAU SITE", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-12", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389485, + 49.173149 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF051024", + "ref": "FR*HPC*PNF051024", + "name": "RELAIS BEAU SITE", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-12", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.024536, + 50.61693 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF051046", + "ref": "FR*HPC*PNF051046", + "name": "RELAIS DE L'EPINETTE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5132, + 47.1617 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042595", + "ref": "FR*HPC*PNF042595", + "name": "RELAIS DE VERTOU GRASSINIERE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5132, + 47.1617 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042595", + "ref": "FR*HPC*PNF042595", + "name": "RELAIS DE VERTOU GRASSINIERE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5132, + 47.1617 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042595", + "ref": "FR*HPC*PNF042595", + "name": "RELAIS DE VERTOU GRASSINIERE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.520438, + 48.436347 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF039295", + "ref": "FR*HPC*PNF039295", + "name": "RELAIS ROCADE CHARTRES", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2020-12-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.719853, + 48.981678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF011512", + "ref": "FR*HPC*PNF011512", + "name": "DODO - RELAIS SAS CONNECT AUTOMOBILES FRANCE - MANTES LA VILLE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.719853, + 48.981678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF011512", + "ref": "FR*HPC*PNF011512", + "name": "DODO - RELAIS SAS CONNECT AUTOMOBILES FRANCE - MANTES LA VILLE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.719853, + 48.981678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF011512", + "ref": "FR*HPC*PNF011512", + "name": "DODO - RELAIS SAS CONNECT AUTOMOBILES FRANCE - MANTES LA VILLE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.719853, + 48.981678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF011512", + "ref": "FR*HPC*PNF011512", + "name": "DODO - RELAIS SAS CONNECT AUTOMOBILES FRANCE - MANTES LA VILLE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.096547, + 45.772967 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF026412", + "ref": "FR*HPC*PNF026412", + "name": "DODO - RELAIS LAGARDE CLERMONT-FERRAND LAFAYETTE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.096547, + 45.772967 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF026412", + "ref": "FR*HPC*PNF026412", + "name": "DODO - RELAIS LAGARDE CLERMONT-FERRAND LAFAYETTE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1651, + 49.1295 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF037072", + "ref": "FR*HPC*PNF037072", + "name": "RELAIS PORT MAZEROLLE", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-04-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.520438, + 48.436347 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF039295", + "ref": "FR*HPC*PNF039295", + "name": "RELAIS ROCADE CHARTRES", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2020-12-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.241364539907534, + 48.21135002599696 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042236", + "ref": "FR*HPC*PNF042236", + "name": "RELAIS TROYES FRESNOY", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.468731, + 47.821635 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042589", + "ref": "FR*HPC*PNF042589", + "name": "RELAIS GUIDEL SUD", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.241364539907534, + 48.21135002599696 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042236", + "ref": "FR*HPC*PNF042236", + "name": "RELAIS TROYES FRESNOY", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.241364539907534, + 48.21135002599696 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042236", + "ref": "FR*HPC*PNF042236", + "name": "RELAIS TROYES FRESNOY", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.241364539907534, + 48.21135002599696 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042236", + "ref": "FR*HPC*PNF042236", + "name": "RELAIS TROYES FRESNOY", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.335014, + 49.78609 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042331", + "ref": "FR*HPC*PNF042331", + "name": "RELAIS URVILLERS", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.335014, + 49.78609 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042331", + "ref": "FR*HPC*PNF042331", + "name": "RELAIS URVILLERS", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.335014, + 49.78609 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042331", + "ref": "FR*HPC*PNF042331", + "name": "RELAIS URVILLERS", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.335014, + 49.78609 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042331", + "ref": "FR*HPC*PNF042331", + "name": "RELAIS URVILLERS", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.468731, + 47.821635 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF042589", + "ref": "FR*HPC*PNF042589", + "name": "RELAIS GUIDEL SUD", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.449003, + 43.8755 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059193", + "ref": "FR*HPC*PNF059193", + "name": "RELAIS MARGUERITTES NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.449003, + 43.8755 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059193", + "ref": "FR*HPC*PNF059193", + "name": "RELAIS MARGUERITTES NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.016955, + 47.4185 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF069703", + "ref": "FR*HPC*PNF069703", + "name": "RELAIS VARADES PAYS D'ANCENIS", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.252268, + 48.055456 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059902", + "ref": "FR*HPC*PNF059902", + "name": "SARTHE SARGE LE MANS SUD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-14", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.252268, + 48.055456 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059902", + "ref": "FR*HPC*PNF059902", + "name": "SARTHE SARGE LE MANS SUD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-14", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.252268, + 48.055456 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059902", + "ref": "FR*HPC*PNF059902", + "name": "SARTHE SARGE LE MANS SUD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-14", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.252268, + 48.055456 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059902", + "ref": "FR*HPC*PNF059902", + "name": "SARTHE SARGE LE MANS SUD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-14", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.599122, + 43.422829 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059903", + "ref": "FR*HPC*PNF059903", + "name": "RELAIS BIDART OUEST", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.599122, + 43.422829 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059903", + "ref": "FR*HPC*PNF059903", + "name": "RELAIS BIDART OUEST", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.599122, + 43.422829 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059903", + "ref": "FR*HPC*PNF059903", + "name": "RELAIS BIDART OUEST", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.599122, + 43.422829 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059903", + "ref": "FR*HPC*PNF059903", + "name": "RELAIS BIDART OUEST", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00808, + 47.280611 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059916", + "ref": "FR*HPC*PNF059916", + "name": "RELAIS DE MARSANNAY LA COTE", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2020-10-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.667119, + 44.85025 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059964", + "ref": "FR*HPC*PNF059964", + "name": "RELAIS GIRONDE MERIGNAC", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-14", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.667119, + 44.85025 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059964", + "ref": "FR*HPC*PNF059964", + "name": "RELAIS GIRONDE MERIGNAC", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-14", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.247547, + 48.891207 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059983", + "ref": "FR*HPC*PNF059983", + "name": "RELAIS DE LA DEFENSE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.247547, + 48.891207 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059983", + "ref": "FR*HPC*PNF059983", + "name": "RELAIS DE LA DEFENSE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.247547, + 48.891207 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059983", + "ref": "FR*HPC*PNF059983", + "name": "RELAIS DE LA DEFENSE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.247547, + 48.891207 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059983", + "ref": "FR*HPC*PNF059983", + "name": "RELAIS DE LA DEFENSE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.247547, + 48.891207 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059983", + "ref": "FR*HPC*PNF059983", + "name": "RELAIS DE LA DEFENSE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.247547, + 48.891207 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059983", + "ref": "FR*HPC*PNF059983", + "name": "RELAIS DE LA DEFENSE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.247547, + 48.891207 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059983", + "ref": "FR*HPC*PNF059983", + "name": "RELAIS DE LA DEFENSE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.247547, + 48.891207 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059983", + "ref": "FR*HPC*PNF059983", + "name": "RELAIS DE LA DEFENSE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098026, + 48.089376 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059994", + "ref": "FR*HPC*PNF059994", + "name": "RELAIS MONDEVERT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.252268, + 48.055456 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059902", + "ref": "FR*HPC*PNF059902", + "name": "SARTHE SARGE LE MANS SUD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-14", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.252268, + 48.055456 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059902", + "ref": "FR*HPC*PNF059902", + "name": "SARTHE SARGE LE MANS SUD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-14", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.449003, + 43.8755 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059193", + "ref": "FR*HPC*PNF059193", + "name": "RELAIS MARGUERITTES NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12203, + 47.325805 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059797", + "ref": "FR*HPC*PNF059797", + "name": "RELAIS MARCHAUX", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745091, + 48.83022 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059775", + "ref": "FR*HPC*PNF059775", + "name": "RELAIS BUSSY ST GEORGES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745091, + 48.83022 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059775", + "ref": "FR*HPC*PNF059775", + "name": "RELAIS BUSSY ST GEORGES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745091, + 48.83022 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059775", + "ref": "FR*HPC*PNF059775", + "name": "RELAIS BUSSY ST GEORGES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745091, + 48.83022 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059775", + "ref": "FR*HPC*PNF059775", + "name": "RELAIS BUSSY ST GEORGES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745091, + 48.83022 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059775", + "ref": "FR*HPC*PNF059775", + "name": "RELAIS BUSSY ST GEORGES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745091, + 48.83022 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059775", + "ref": "FR*HPC*PNF059775", + "name": "RELAIS BUSSY ST GEORGES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745091, + 48.83022 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059775", + "ref": "FR*HPC*PNF059775", + "name": "RELAIS BUSSY ST GEORGES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745091, + 48.83022 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059775", + "ref": "FR*HPC*PNF059775", + "name": "RELAIS BUSSY ST GEORGES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745091, + 48.83022 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059775", + "ref": "FR*HPC*PNF059775", + "name": "RELAIS BUSSY ST GEORGES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745091, + 48.83022 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059775", + "ref": "FR*HPC*PNF059775", + "name": "RELAIS BUSSY ST GEORGES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745091, + 48.83022 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059775", + "ref": "FR*HPC*PNF059775", + "name": "RELAIS BUSSY ST GEORGES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745091, + 48.83022 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059775", + "ref": "FR*HPC*PNF059775", + "name": "RELAIS BUSSY ST GEORGES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.173572, + 48.780399 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059779", + "ref": "FR*HPC*PNF059779", + "name": "RELAIS CLAIRBOIS", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.173572, + 48.780399 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059779", + "ref": "FR*HPC*PNF059779", + "name": "RELAIS CLAIRBOIS", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.173572, + 48.780399 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059779", + "ref": "FR*HPC*PNF059779", + "name": "RELAIS CLAIRBOIS", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.173572, + 48.780399 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059779", + "ref": "FR*HPC*PNF059779", + "name": "RELAIS CLAIRBOIS", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.726344, + 48.107428 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059786", + "ref": "FR*HPC*PNF059786", + "name": "RELAIS BARRE THOMAS", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-01-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.726344, + 48.107428 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059786", + "ref": "FR*HPC*PNF059786", + "name": "RELAIS BARRE THOMAS", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181563, + 48.986926 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059792", + "ref": "FR*HPC*PNF059792", + "name": "RELAIS DU CROISILLON", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098026, + 48.089376 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059994", + "ref": "FR*HPC*PNF059994", + "name": "RELAIS MONDEVERT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098026, + 48.089376 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059994", + "ref": "FR*HPC*PNF059994", + "name": "RELAIS MONDEVERT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098026, + 48.089376 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059994", + "ref": "FR*HPC*PNF059994", + "name": "RELAIS MONDEVERT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.263132, + 48.898351 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062001", + "ref": "FR*HPC*PNF062001", + "name": "RELAIS COURBEVOIE BINEAU", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2020-12-14", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742822, + 48.829064 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062704", + "ref": "FR*HPC*PNF062704", + "name": "RELAIS FERRIERES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742822, + 48.829064 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062704", + "ref": "FR*HPC*PNF062704", + "name": "RELAIS FERRIERES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742822, + 48.829064 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062704", + "ref": "FR*HPC*PNF062704", + "name": "RELAIS FERRIERES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742822, + 48.829064 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062704", + "ref": "FR*HPC*PNF062704", + "name": "RELAIS FERRIERES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742822, + 48.829064 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062704", + "ref": "FR*HPC*PNF062704", + "name": "RELAIS FERRIERES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742822, + 48.829064 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062704", + "ref": "FR*HPC*PNF062704", + "name": "RELAIS FERRIERES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742822, + 48.829064 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062704", + "ref": "FR*HPC*PNF062704", + "name": "RELAIS FERRIERES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742822, + 48.829064 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062704", + "ref": "FR*HPC*PNF062704", + "name": "RELAIS FERRIERES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742822, + 48.829064 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062704", + "ref": "FR*HPC*PNF062704", + "name": "RELAIS FERRIERES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742822, + 48.829064 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062704", + "ref": "FR*HPC*PNF062704", + "name": "RELAIS FERRIERES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.453912, + 43.291896 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF067705", + "ref": "FR*HPC*PNF067705", + "name": "RELAIS LA POMME", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2020-06-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.453912, + 43.291896 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF067705", + "ref": "FR*HPC*PNF067705", + "name": "RELAIS LA POMME", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2020-06-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098658, + 48.090032 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF069303", + "ref": "FR*HPC*PNF069303", + "name": "RELAIS ERBREE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098658, + 48.090032 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF069303", + "ref": "FR*HPC*PNF069303", + "name": "RELAIS ERBREE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098658, + 48.090032 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF069303", + "ref": "FR*HPC*PNF069303", + "name": "RELAIS ERBREE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098658, + 48.090032 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF069303", + "ref": "FR*HPC*PNF069303", + "name": "RELAIS ERBREE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.016955, + 47.4185 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF069703", + "ref": "FR*HPC*PNF069703", + "name": "RELAIS VARADES PAYS D'ANCENIS", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.016955, + 47.4185 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF069703", + "ref": "FR*HPC*PNF069703", + "name": "RELAIS VARADES PAYS D'ANCENIS", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.016955, + 47.4185 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF069703", + "ref": "FR*HPC*PNF069703", + "name": "RELAIS VARADES PAYS D'ANCENIS", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742822, + 48.829064 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062704", + "ref": "FR*HPC*PNF062704", + "name": "RELAIS FERRIERES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742822, + 48.829064 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062704", + "ref": "FR*HPC*PNF062704", + "name": "RELAIS FERRIERES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742822, + 48.829064 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062704", + "ref": "FR*HPC*PNF062704", + "name": "RELAIS FERRIERES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52491, + 48.855643 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062228", + "ref": "FR*HPC*PNF062228", + "name": "RELAIS NEUILLY SUR MARNE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.826339, + 45.590873 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062085", + "ref": "FR*HPC*PNF062085", + "name": "RELAIS COMMUNAY NORD", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.826339, + 45.590873 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062085", + "ref": "FR*HPC*PNF062085", + "name": "RELAIS COMMUNAY NORD", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.826339, + 45.590873 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062085", + "ref": "FR*HPC*PNF062085", + "name": "RELAIS COMMUNAY NORD", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.826339, + 45.590873 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062085", + "ref": "FR*HPC*PNF062085", + "name": "RELAIS COMMUNAY NORD", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.826339, + 45.590873 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062085", + "ref": "FR*HPC*PNF062085", + "name": "RELAIS COMMUNAY NORD", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26089, + 48.900075 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062209", + "ref": "FR*HPC*PNF062209", + "name": "RELAIS COURBEVOIE VERDUN", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26089, + 48.900075 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062209", + "ref": "FR*HPC*PNF062209", + "name": "RELAIS COURBEVOIE VERDUN", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26089, + 48.900075 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062209", + "ref": "FR*HPC*PNF062209", + "name": "RELAIS COURBEVOIE VERDUN", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52491, + 48.855643 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062228", + "ref": "FR*HPC*PNF062228", + "name": "RELAIS NEUILLY SUR MARNE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742822, + 48.829064 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062704", + "ref": "FR*HPC*PNF062704", + "name": "RELAIS FERRIERES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52491, + 48.855643 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062228", + "ref": "FR*HPC*PNF062228", + "name": "RELAIS NEUILLY SUR MARNE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52491, + 48.855643 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062228", + "ref": "FR*HPC*PNF062228", + "name": "RELAIS NEUILLY SUR MARNE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52491, + 48.855643 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062228", + "ref": "FR*HPC*PNF062228", + "name": "RELAIS NEUILLY SUR MARNE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52491, + 48.855643 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062228", + "ref": "FR*HPC*PNF062228", + "name": "RELAIS NEUILLY SUR MARNE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52491, + 48.855643 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062228", + "ref": "FR*HPC*PNF062228", + "name": "RELAIS NEUILLY SUR MARNE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52491, + 48.855643 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062228", + "ref": "FR*HPC*PNF062228", + "name": "RELAIS NEUILLY SUR MARNE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742822, + 48.829064 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062704", + "ref": "FR*HPC*PNF062704", + "name": "RELAIS FERRIERES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-14", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.742822, + 48.829064 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF062704", + "ref": "FR*HPC*PNF062704", + "name": "RELAIS FERRIERES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745091, + 48.83022 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059775", + "ref": "FR*HPC*PNF059775", + "name": "RELAIS BUSSY ST GEORGES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745091, + 48.83022 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059775", + "ref": "FR*HPC*PNF059775", + "name": "RELAIS BUSSY ST GEORGES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745091, + 48.83022 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059775", + "ref": "FR*HPC*PNF059775", + "name": "RELAIS BUSSY ST GEORGES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.162850603858983, + 49.10100138963425 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059628", + "ref": "FR*HPC*PNF059628", + "name": "RELAIS ST PRIVAT Ville", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992246, + 43.421975 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059599", + "ref": "FR*HPC*PNF059599", + "name": "RELAIS TERRASSES DE PROVENCE CENTRE VL", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992246, + 43.421975 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059599", + "ref": "FR*HPC*PNF059599", + "name": "RELAIS TERRASSES DE PROVENCE CENTRE VL", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992246, + 43.421975 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059599", + "ref": "FR*HPC*PNF059599", + "name": "RELAIS TERRASSES DE PROVENCE CENTRE VL", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992246, + 43.421975 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059599", + "ref": "FR*HPC*PNF059599", + "name": "RELAIS TERRASSES DE PROVENCE CENTRE VL", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992246, + 43.421975 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059599", + "ref": "FR*HPC*PNF059599", + "name": "RELAIS TERRASSES DE PROVENCE CENTRE VL", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992246, + 43.421975 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059599", + "ref": "FR*HPC*PNF059599", + "name": "RELAIS TERRASSES DE PROVENCE CENTRE VL", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992246, + 43.421975 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059599", + "ref": "FR*HPC*PNF059599", + "name": "RELAIS TERRASSES DE PROVENCE CENTRE VL", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.1364, + 47.7167 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059600", + "ref": "FR*HPC*PNF059600", + "name": "RELAIS LA PORTE D'ALSACE NORD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.1364, + 47.7167 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059600", + "ref": "FR*HPC*PNF059600", + "name": "RELAIS LA PORTE D'ALSACE NORD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.1364, + 47.7167 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059600", + "ref": "FR*HPC*PNF059600", + "name": "RELAIS LA PORTE D'ALSACE NORD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.1364, + 47.7167 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059600", + "ref": "FR*HPC*PNF059600", + "name": "RELAIS LA PORTE D'ALSACE NORD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.259203, + 43.391046 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059602", + "ref": "FR*HPC*PNF059602", + "name": "RELAIS GIGNAC LA NERTHE", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.812266, + 48.961863 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059614", + "ref": "FR*HPC*PNF059614", + "name": "RELAIS DE LA MAULDRE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.812266, + 48.961863 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059614", + "ref": "FR*HPC*PNF059614", + "name": "RELAIS DE LA MAULDRE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.162850603858983, + 49.10100138963425 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059628", + "ref": "FR*HPC*PNF059628", + "name": "RELAIS ST PRIVAT Ville", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-12", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.162850603858983, + 49.10100138963425 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059628", + "ref": "FR*HPC*PNF059628", + "name": "RELAIS ST PRIVAT Ville", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-12", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.162850603858983, + 49.10100138963425 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059628", + "ref": "FR*HPC*PNF059628", + "name": "RELAIS ST PRIVAT Ville", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.162850603858983, + 49.10100138963425 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059628", + "ref": "FR*HPC*PNF059628", + "name": "RELAIS ST PRIVAT Ville", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.162850603858983, + 49.10100138963425 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059628", + "ref": "FR*HPC*PNF059628", + "name": "RELAIS ST PRIVAT Ville", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992246, + 43.421975 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059599", + "ref": "FR*HPC*PNF059599", + "name": "RELAIS TERRASSES DE PROVENCE CENTRE VL", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.912803, + 43.60815 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059558", + "ref": "FR*HPC*PNF059558", + "name": "RELAIS LA LIRONDE", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2020-12-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.360609, + 48.816556 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059511", + "ref": "FR*HPC*PNF059511", + "name": "RELAIS DE LA PORTE D ITALIE", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.092478, + 43.216189 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059472", + "ref": "FR*HPC*PNF059472", + "name": "AIRE NARBONNE VINASSAN SUD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.449003, + 43.8755 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059193", + "ref": "FR*HPC*PNF059193", + "name": "RELAIS MARGUERITTES NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.111099, + 49.403871 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059380", + "ref": "FR*HPC*PNF059380", + "name": "RELAIS ILE GAD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.111099, + 49.403871 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059380", + "ref": "FR*HPC*PNF059380", + "name": "RELAIS ILE GAD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.111099, + 49.403871 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059380", + "ref": "FR*HPC*PNF059380", + "name": "RELAIS ILE GAD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.111099, + 49.403871 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059380", + "ref": "FR*HPC*PNF059380", + "name": "RELAIS ILE GAD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.092478, + 43.216189 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059472", + "ref": "FR*HPC*PNF059472", + "name": "AIRE NARBONNE VINASSAN SUD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.092478, + 43.216189 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059472", + "ref": "FR*HPC*PNF059472", + "name": "AIRE NARBONNE VINASSAN SUD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.092478, + 43.216189 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059472", + "ref": "FR*HPC*PNF059472", + "name": "AIRE NARBONNE VINASSAN SUD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.092478, + 43.216189 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059472", + "ref": "FR*HPC*PNF059472", + "name": "AIRE NARBONNE VINASSAN SUD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.670919, + 43.46707 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059499", + "ref": "FR*HPC*PNF059499", + "name": "RELAIS CANAVER", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.092478, + 43.216189 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059472", + "ref": "FR*HPC*PNF059472", + "name": "AIRE NARBONNE VINASSAN SUD", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.670919, + 43.46707 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059499", + "ref": "FR*HPC*PNF059499", + "name": "RELAIS CANAVER", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.670919, + 43.46707 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059499", + "ref": "FR*HPC*PNF059499", + "name": "RELAIS CANAVER", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.670919, + 43.46707 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059499", + "ref": "FR*HPC*PNF059499", + "name": "RELAIS CANAVER", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.670919, + 43.46707 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059499", + "ref": "FR*HPC*PNF059499", + "name": "RELAIS CANAVER", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.670919, + 43.46707 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059499", + "ref": "FR*HPC*PNF059499", + "name": "RELAIS CANAVER", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.670919, + 43.46707 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059499", + "ref": "FR*HPC*PNF059499", + "name": "RELAIS CANAVER", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.670919, + 43.46707 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059499", + "ref": "FR*HPC*PNF059499", + "name": "RELAIS CANAVER", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.162850603858983, + 49.10100138963425 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059628", + "ref": "FR*HPC*PNF059628", + "name": "RELAIS ST PRIVAT Ville", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.162850603858983, + 49.10100138963425 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059628", + "ref": "FR*HPC*PNF059628", + "name": "RELAIS ST PRIVAT Ville", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745091, + 48.83022 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059775", + "ref": "FR*HPC*PNF059775", + "name": "RELAIS BUSSY ST GEORGES", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.858496, + 47.977888 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059671", + "ref": "FR*HPC*PNF059671", + "name": "RELAIS ORLEANS SARAN", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630401, + 47.167146 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059736", + "ref": "FR*HPC*PNF059736", + "name": "RELAIS STE MAURE DE TOURAINE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630401, + 47.167146 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059736", + "ref": "FR*HPC*PNF059736", + "name": "RELAIS STE MAURE DE TOURAINE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630401, + 47.167146 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059736", + "ref": "FR*HPC*PNF059736", + "name": "RELAIS STE MAURE DE TOURAINE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630401, + 47.167146 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059736", + "ref": "FR*HPC*PNF059736", + "name": "RELAIS STE MAURE DE TOURAINE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630401, + 47.167146 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059736", + "ref": "FR*HPC*PNF059736", + "name": "RELAIS STE MAURE DE TOURAINE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630401, + 47.167146 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059736", + "ref": "FR*HPC*PNF059736", + "name": "RELAIS STE MAURE DE TOURAINE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630401, + 47.167146 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059736", + "ref": "FR*HPC*PNF059736", + "name": "RELAIS STE MAURE DE TOURAINE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.596739, + 43.422748 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059743", + "ref": "FR*HPC*PNF059743", + "name": "RELAIS BIDART EST", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.596739, + 43.422748 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059743", + "ref": "FR*HPC*PNF059743", + "name": "RELAIS BIDART EST", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.596739, + 43.422748 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059743", + "ref": "FR*HPC*PNF059743", + "name": "RELAIS BIDART EST", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.596739, + 43.422748 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059743", + "ref": "FR*HPC*PNF059743", + "name": "RELAIS BIDART EST", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.406246, + 45.850306 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059748", + "ref": "FR*HPC*PNF059748", + "name": "RELAIS LIMAGNE SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.406246, + 45.850306 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059748", + "ref": "FR*HPC*PNF059748", + "name": "RELAIS LIMAGNE SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.406246, + 45.850306 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059748", + "ref": "FR*HPC*PNF059748", + "name": "RELAIS LIMAGNE SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.406246, + 45.850306 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059748", + "ref": "FR*HPC*PNF059748", + "name": "RELAIS LIMAGNE SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.406246, + 45.850306 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059748", + "ref": "FR*HPC*PNF059748", + "name": "RELAIS LIMAGNE SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.406246, + 45.850306 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059748", + "ref": "FR*HPC*PNF059748", + "name": "RELAIS LIMAGNE SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.406246, + 45.850306 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059748", + "ref": "FR*HPC*PNF059748", + "name": "RELAIS LIMAGNE SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.406246, + 45.850306 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059748", + "ref": "FR*HPC*PNF059748", + "name": "RELAIS LIMAGNE SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630401, + 47.167146 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059736", + "ref": "FR*HPC*PNF059736", + "name": "RELAIS STE MAURE DE TOURAINE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.776472, + 47.473807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059694", + "ref": "FR*HPC*PNF059694", + "name": "RELAIS TOURS VAL DE LOIRE", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.776472, + 47.473807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059694", + "ref": "FR*HPC*PNF059694", + "name": "RELAIS TOURS VAL DE LOIRE", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212535, + 45.613803 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059672", + "ref": "FR*HPC*PNF059672", + "name": "RELAIS L'ISLE D'ABEAU NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.858496, + 47.977888 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059671", + "ref": "FR*HPC*PNF059671", + "name": "RELAIS ORLEANS SARAN", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.858496, + 47.977888 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059671", + "ref": "FR*HPC*PNF059671", + "name": "RELAIS ORLEANS SARAN", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.858496, + 47.977888 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059671", + "ref": "FR*HPC*PNF059671", + "name": "RELAIS ORLEANS SARAN", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.858496, + 47.977888 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059671", + "ref": "FR*HPC*PNF059671", + "name": "RELAIS ORLEANS SARAN", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.858496, + 47.977888 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059671", + "ref": "FR*HPC*PNF059671", + "name": "RELAIS ORLEANS SARAN", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.858496, + 47.977888 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059671", + "ref": "FR*HPC*PNF059671", + "name": "RELAIS ORLEANS SARAN", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212535, + 45.613803 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059672", + "ref": "FR*HPC*PNF059672", + "name": "RELAIS L'ISLE D'ABEAU NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212535, + 45.613803 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059672", + "ref": "FR*HPC*PNF059672", + "name": "RELAIS L'ISLE D'ABEAU NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212535, + 45.613803 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059672", + "ref": "FR*HPC*PNF059672", + "name": "RELAIS L'ISLE D'ABEAU NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.776472, + 47.473807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059694", + "ref": "FR*HPC*PNF059694", + "name": "RELAIS TOURS VAL DE LOIRE", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212535, + 45.613803 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059672", + "ref": "FR*HPC*PNF059672", + "name": "RELAIS L'ISLE D'ABEAU NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212535, + 45.613803 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059672", + "ref": "FR*HPC*PNF059672", + "name": "RELAIS L'ISLE D'ABEAU NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212535, + 45.613803 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059672", + "ref": "FR*HPC*PNF059672", + "name": "RELAIS L'ISLE D'ABEAU NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212535, + 45.613803 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059672", + "ref": "FR*HPC*PNF059672", + "name": "RELAIS L'ISLE D'ABEAU NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.776472, + 47.473807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059694", + "ref": "FR*HPC*PNF059694", + "name": "RELAIS TOURS VAL DE LOIRE", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.776472, + 47.473807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059694", + "ref": "FR*HPC*PNF059694", + "name": "RELAIS TOURS VAL DE LOIRE", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.776472, + 47.473807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059694", + "ref": "FR*HPC*PNF059694", + "name": "RELAIS TOURS VAL DE LOIRE", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.776472, + 47.473807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF059694", + "ref": "FR*HPC*PNF059694", + "name": "RELAIS TOURS VAL DE LOIRE", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.034861, + 47.503262 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080340", + "ref": "FR*HPC*PNF080340", + "name": "RELAIS DE LA CHAPONNE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.034861, + 47.503262 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080340", + "ref": "FR*HPC*PNF080340", + "name": "RELAIS DE LA CHAPONNE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.034861, + 47.503262 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080340", + "ref": "FR*HPC*PNF080340", + "name": "RELAIS DE LA CHAPONNE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371768, + 48.889011 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901906", + "ref": "FR*V75*P9019*06", + "name": "Paris | Rue Riquet 39", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.397724, + 48.86424 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P902001", + "ref": "FR*V75*P9020*01", + "name": "Paris | Avenue du Père Lachaise 13", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.397724, + 48.86424 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P902001", + "ref": "FR*V75*P9020*01", + "name": "Paris | Avenue du Père Lachaise 13", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.397724, + 48.86424 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P902001", + "ref": "FR*V75*P9020*01", + "name": "Paris | Avenue du Père Lachaise 13", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.405196, + 48.874134 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P902002", + "ref": "FR*V75*P9020*02", + "name": "Paris | Avenue Gambetta 227", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.405196, + 48.874134 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P902002", + "ref": "FR*V75*P9020*02", + "name": "Paris | Avenue Gambetta 227", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.405196, + 48.874134 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P902002", + "ref": "FR*V75*P9020*02", + "name": "Paris | Avenue Gambetta 227", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378283, + 48.872905 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P902003", + "ref": "FR*V75*P9020*03", + "name": "Paris | Rue Jules Romains 5", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-03-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378283, + 48.872905 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P902003", + "ref": "FR*V75*P9020*03", + "name": "Paris | Rue Jules Romains 5", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-03-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378283, + 48.872905 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P902003", + "ref": "FR*V75*P9020*03", + "name": "Paris | Rue Jules Romains 5", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-03-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.403802, + 48.857094 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P902004", + "ref": "FR*V75*P9020*04", + "name": "Paris | Rue des Pyrénées 127", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.403802, + 48.857094 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P902004", + "ref": "FR*V75*P9020*04", + "name": "Paris | Rue des Pyrénées 127", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.403802, + 48.857094 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P902004", + "ref": "FR*V75*P9020*04", + "name": "Paris | Rue des Pyrénées 127", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41177, + 48.863766 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P902005", + "ref": "FR*V75*P9020*05", + "name": "Paris | Rue Louis Lumière 104", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41177, + 48.863766 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P902005", + "ref": "FR*V75*P9020*05", + "name": "Paris | Rue Louis Lumière 104", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41177, + 48.863766 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P902005", + "ref": "FR*V75*P9020*05", + "name": "Paris | Rue Louis Lumière 104", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2558389615, + 48.84697366289495 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PHBSAEPDA", + "ref": "FR*V75*PHBSAE*PDA", + "name": "Paris | SAEMES Parking Porte d'Auteuil", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2558389615, + 48.84697366289495 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PHBSAEPDA", + "ref": "FR*V75*PHBSAE*PDA", + "name": "Paris | SAEMES Parking Porte d'Auteuil", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2558389615, + 48.84697366289495 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PHBSAEPDA", + "ref": "FR*V75*PHBSAE*PDA", + "name": "Paris | SAEMES Parking Porte d'Auteuil", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2558389615, + 48.84697366289495 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PHBSAEPDA", + "ref": "FR*V75*PHBSAE*PDA", + "name": "Paris | SAEMES Parking Porte d'Auteuil", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371768, + 48.889011 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901906", + "ref": "FR*V75*P9019*06", + "name": "Paris | Rue Riquet 39", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371768, + 48.889011 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901906", + "ref": "FR*V75*P9019*06", + "name": "Paris | Rue Riquet 39", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3408933, + 48.8705626 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0203", + "ref": "FR*V75*PPX02*03", + "name": "Paris | Rue Vivienne 43", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39182, + 48.8778 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901905", + "ref": "FR*V75*P9019*05", + "name": "Paris | Rue de Crimée 14", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34066, + 48.89311 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901804", + "ref": "FR*V75*P9018*04", + "name": "Paris | Rue Ordener 110", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34066, + 48.89311 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901804", + "ref": "FR*V75*P9018*04", + "name": "Paris | Rue Ordener 110", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35423, + 48.89061 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901805", + "ref": "FR*V75*P9018*05", + "name": "Paris | Rue Ordener 27", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35423, + 48.89061 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901805", + "ref": "FR*V75*P9018*05", + "name": "Paris | Rue Ordener 27", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35423, + 48.89061 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901805", + "ref": "FR*V75*P9018*05", + "name": "Paris | Rue Ordener 27", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.369961, + 48.88472 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901901", + "ref": "FR*V75*P9019*01", + "name": "Paris | Avenue de Flandre 10", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.369961, + 48.88472 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901901", + "ref": "FR*V75*P9019*01", + "name": "Paris | Avenue de Flandre 10", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.369961, + 48.88472 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901901", + "ref": "FR*V75*P9019*01", + "name": "Paris | Avenue de Flandre 10", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.398476, + 48.880421 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901902", + "ref": "FR*V75*P9019*02", + "name": "Paris | Boulevard Sérurier 54", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.398476, + 48.880421 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901902", + "ref": "FR*V75*P9019*02", + "name": "Paris | Boulevard Sérurier 54", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.398476, + 48.880421 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901902", + "ref": "FR*V75*P9019*02", + "name": "Paris | Boulevard Sérurier 54", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.382705, + 48.882794 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901903", + "ref": "FR*V75*P9019*03", + "name": "Paris | Place Armand Carrel 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.382705, + 48.882794 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901903", + "ref": "FR*V75*P9019*03", + "name": "Paris | Place Armand Carrel 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.382705, + 48.882794 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901903", + "ref": "FR*V75*P9019*03", + "name": "Paris | Place Armand Carrel 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388149, + 48.88842 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901904", + "ref": "FR*V75*P9019*04", + "name": "Paris | Rue Adolphe Mille 9", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388149, + 48.88842 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901904", + "ref": "FR*V75*P9019*04", + "name": "Paris | Rue Adolphe Mille 9", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388149, + 48.88842 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901904", + "ref": "FR*V75*P9019*04", + "name": "Paris | Rue Adolphe Mille 9", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39182, + 48.8778 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901905", + "ref": "FR*V75*P9019*05", + "name": "Paris | Rue de Crimée 14", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39182, + 48.8778 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901905", + "ref": "FR*V75*P9019*05", + "name": "Paris | Rue de Crimée 14", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2558389615, + 48.84697366289495 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PHBSAEPDA", + "ref": "FR*V75*PHBSAE*PDA", + "name": "Paris | SAEMES Parking Porte d'Auteuil", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3538696405462756, + 48.85679604727558 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PHBSAGLOB", + "ref": "FR*V75*PHBSAG*LOB", + "name": "Paris | SAGS Parking Lobau", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3538696405462756, + 48.85679604727558 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PHBSAGLOB", + "ref": "FR*V75*PHBSAG*LOB", + "name": "Paris | SAGS Parking Lobau", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3538696405462756, + 48.85679604727558 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PHBSAGLOB", + "ref": "FR*V75*PHBSAG*LOB", + "name": "Paris | SAGS Parking Lobau", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3329713, + 48.8648594 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0104", + "ref": "FR*V75*PPX01*04", + "name": "Paris | Rue des Pyramides 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3329713, + 48.8648594 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0104", + "ref": "FR*V75*PPX01*04", + "name": "Paris | Rue des Pyramides 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3393006, + 48.8624631 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0105", + "ref": "FR*V75*PPX01*05", + "name": "Paris | Rue des Croix des Petits Champs 4", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3393006, + 48.8624631 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0105", + "ref": "FR*V75*PPX01*05", + "name": "Paris | Rue des Croix des Petits Champs 4", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3393006, + 48.8624631 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0105", + "ref": "FR*V75*PPX01*05", + "name": "Paris | Rue des Croix des Petits Champs 4", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3393006, + 48.8624631 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0105", + "ref": "FR*V75*PPX01*05", + "name": "Paris | Rue des Croix des Petits Champs 4", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34681, + 48.85788 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0106", + "ref": "FR*V75*PPX01*06", + "name": "Paris | Avenue Victoria 17", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34681, + 48.85788 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0106", + "ref": "FR*V75*PPX01*06", + "name": "Paris | Avenue Victoria 17", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34681, + 48.85788 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0106", + "ref": "FR*V75*PPX01*06", + "name": "Paris | Avenue Victoria 17", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34681, + 48.85788 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0106", + "ref": "FR*V75*PPX01*06", + "name": "Paris | Avenue Victoria 17", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34681, + 48.85788 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0106", + "ref": "FR*V75*PPX01*06", + "name": "Paris | Avenue Victoria 17", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3423247, + 48.8696994 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0201", + "ref": "FR*V75*PPX02*01", + "name": "Paris | Rue Notre-Dame des Victoires 21", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3423247, + 48.8696994 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0201", + "ref": "FR*V75*PPX02*01", + "name": "Paris | Rue Notre-Dame des Victoires 21", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3423247, + 48.8696994 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0201", + "ref": "FR*V75*PPX02*01", + "name": "Paris | Rue Notre-Dame des Victoires 21", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3423247, + 48.8696994 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0201", + "ref": "FR*V75*PPX02*01", + "name": "Paris | Rue Notre-Dame des Victoires 21", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3508835, + 48.8680082 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0202", + "ref": "FR*V75*PPX02*02", + "name": "Paris | Rue d'Alexandrie 7", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3508835, + 48.8680082 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0202", + "ref": "FR*V75*PPX02*02", + "name": "Paris | Rue d'Alexandrie 7", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3508835, + 48.8680082 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0202", + "ref": "FR*V75*PPX02*02", + "name": "Paris | Rue d'Alexandrie 7", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3508835, + 48.8680082 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0202", + "ref": "FR*V75*PPX02*02", + "name": "Paris | Rue d'Alexandrie 7", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3329713, + 48.8648594 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0104", + "ref": "FR*V75*PPX01*04", + "name": "Paris | Rue des Pyramides 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3329713, + 48.8648594 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0104", + "ref": "FR*V75*PPX01*04", + "name": "Paris | Rue des Pyramides 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3329713, + 48.8648594 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0104", + "ref": "FR*V75*PPX01*04", + "name": "Paris | Rue des Pyramides 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3437342, + 48.8640888 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0102", + "ref": "FR*V75*PPX01*02", + "name": "Paris | Rue Jean-Jacques Rousseau 62", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3538696405462756, + 48.85679604727558 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PHBSAGLOB", + "ref": "FR*V75*PHBSAG*LOB", + "name": "Paris | SAGS Parking Lobau", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-05-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3538696405462756, + 48.85679604727558 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PHBSAGLOB", + "ref": "FR*V75*PHBSAG*LOB", + "name": "Paris | SAGS Parking Lobau", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3538696405462756, + 48.85679604727558 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PHBSAGLOB", + "ref": "FR*V75*PHBSAG*LOB", + "name": "Paris | SAGS Parking Lobau", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3538696405462756, + 48.85679604727558 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PHBSAGLOB", + "ref": "FR*V75*PHBSAG*LOB", + "name": "Paris | SAGS Parking Lobau", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2022-07-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3314856, + 48.8642939 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0101", + "ref": "FR*V75*PPX01*01", + "name": "Paris | Rue Saint Roch 3", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3314856, + 48.8642939 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0101", + "ref": "FR*V75*PPX01*01", + "name": "Paris | Rue Saint Roch 3", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3314856, + 48.8642939 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0101", + "ref": "FR*V75*PPX01*01", + "name": "Paris | Rue Saint Roch 3", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3314856, + 48.8642939 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0101", + "ref": "FR*V75*PPX01*01", + "name": "Paris | Rue Saint Roch 3", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3437342, + 48.8640888 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0102", + "ref": "FR*V75*PPX01*02", + "name": "Paris | Rue Jean-Jacques Rousseau 62", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3329713, + 48.8648594 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0104", + "ref": "FR*V75*PPX01*04", + "name": "Paris | Rue des Pyramides 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3437342, + 48.8640888 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0102", + "ref": "FR*V75*PPX01*02", + "name": "Paris | Rue Jean-Jacques Rousseau 62", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3437342, + 48.8640888 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0102", + "ref": "FR*V75*PPX01*02", + "name": "Paris | Rue Jean-Jacques Rousseau 62", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3449501, + 48.8588109 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0103", + "ref": "FR*V75*PPX01*03", + "name": "Paris | Rue Bertin Poirée 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3449501, + 48.8588109 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0103", + "ref": "FR*V75*PPX01*03", + "name": "Paris | Rue Bertin Poirée 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3449501, + 48.8588109 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0103", + "ref": "FR*V75*PPX01*03", + "name": "Paris | Rue Bertin Poirée 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3449501, + 48.8588109 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0103", + "ref": "FR*V75*PPX01*03", + "name": "Paris | Rue Bertin Poirée 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3449501, + 48.8588109 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0103", + "ref": "FR*V75*PPX01*03", + "name": "Paris | Rue Bertin Poirée 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3449501, + 48.8588109 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0103", + "ref": "FR*V75*PPX01*03", + "name": "Paris | Rue Bertin Poirée 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34066, + 48.89311 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901804", + "ref": "FR*V75*P9018*04", + "name": "Paris | Rue Ordener 110", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352758, + 48.897671 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901803", + "ref": "FR*V75*P9018*03", + "name": "Paris | Rue des Poissonniers 150", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352758, + 48.897671 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901803", + "ref": "FR*V75*P9018*03", + "name": "Paris | Rue des Poissonniers 150", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295469, + 48.868511 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901602", + "ref": "FR*V75*P9016*02", + "name": "Paris | Avenue d'Iéna 37", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320272, + 48.843753 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901502", + "ref": "FR*V75*P9015*02", + "name": "Paris | Avenue du Maine 16/18", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300643, + 48.828454 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901503", + "ref": "FR*V75*P9015*03", + "name": "Paris | Rue Antonin Mercié 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300643, + 48.828454 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901503", + "ref": "FR*V75*P9015*03", + "name": "Paris | Rue Antonin Mercié 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300643, + 48.828454 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901503", + "ref": "FR*V75*P9015*03", + "name": "Paris | Rue Antonin Mercié 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286931, + 48.841663 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901504", + "ref": "FR*V75*P9015*04", + "name": "Paris | Rue de la Convention 99", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286931, + 48.841663 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901504", + "ref": "FR*V75*P9015*04", + "name": "Paris | Rue de la Convention 99", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286931, + 48.841663 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901504", + "ref": "FR*V75*P9015*04", + "name": "Paris | Rue de la Convention 99", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305529, + 48.834705 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901505", + "ref": "FR*V75*P9015*05", + "name": "Paris | Rue de Vouillé 25", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305529, + 48.834705 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901505", + "ref": "FR*V75*P9015*05", + "name": "Paris | Rue de Vouillé 25", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305529, + 48.834705 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901505", + "ref": "FR*V75*P9015*05", + "name": "Paris | Rue de Vouillé 25", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286912, + 48.835709 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901506", + "ref": "FR*V75*P9015*06", + "name": "Paris | Rue Desnouettes 55", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-03-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286912, + 48.835709 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901506", + "ref": "FR*V75*P9015*06", + "name": "Paris | Rue Desnouettes 55", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-03-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286912, + 48.835709 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901506", + "ref": "FR*V75*P9015*06", + "name": "Paris | Rue Desnouettes 55", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-03-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.296744, + 48.841287 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901507", + "ref": "FR*V75*P9015*07", + "name": "Paris | Rue Theophraste Renaudot 21", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.296744, + 48.841287 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901507", + "ref": "FR*V75*P9015*07", + "name": "Paris | Rue Theophraste Renaudot 21", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.296744, + 48.841287 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901507", + "ref": "FR*V75*P9015*07", + "name": "Paris | Rue Theophraste Renaudot 21", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286403, + 48.876162 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901601", + "ref": "FR*V75*P9016*01", + "name": "Paris | Avenue de la Grande Armée 77", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286403, + 48.876162 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901601", + "ref": "FR*V75*P9016*01", + "name": "Paris | Avenue de la Grande Armée 77", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286403, + 48.876162 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901601", + "ref": "FR*V75*P9016*01", + "name": "Paris | Avenue de la Grande Armée 77", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320272, + 48.843753 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901502", + "ref": "FR*V75*P9015*02", + "name": "Paris | Avenue du Maine 16/18", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320272, + 48.843753 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901502", + "ref": "FR*V75*P9015*02", + "name": "Paris | Avenue du Maine 16/18", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279884, + 48.846214 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901501", + "ref": "FR*V75*P9015*01", + "name": "Paris | Avenue Emile Zola 18", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336857, + 48.824388 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901402", + "ref": "FR*V75*P9014*02", + "name": "Paris | Avenue Reille 46", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.343366, + 48.826504 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901306", + "ref": "FR*V75*P9013*06", + "name": "Paris | Rue de Tolbiac 234", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.343366, + 48.826504 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901306", + "ref": "FR*V75*P9013*06", + "name": "Paris | Rue de Tolbiac 234", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.367798, + 48.82312 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901307", + "ref": "FR*V75*P9013*07", + "name": "Paris | Rue Regnault 118", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.367798, + 48.82312 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901307", + "ref": "FR*V75*P9013*07", + "name": "Paris | Rue Regnault 118", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.367798, + 48.82312 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901307", + "ref": "FR*V75*P9013*07", + "name": "Paris | Rue Regnault 118", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.325895, + 48.83086 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901401", + "ref": "FR*V75*P9014*01", + "name": "Paris | Avenue du Maine 173", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.325895, + 48.83086 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901401", + "ref": "FR*V75*P9014*01", + "name": "Paris | Avenue du Maine 173", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.325895, + 48.83086 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901401", + "ref": "FR*V75*P9014*01", + "name": "Paris | Avenue du Maine 173", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336857, + 48.824388 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901402", + "ref": "FR*V75*P9014*02", + "name": "Paris | Avenue Reille 46", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279884, + 48.846214 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901501", + "ref": "FR*V75*P9015*01", + "name": "Paris | Avenue Emile Zola 18", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336857, + 48.824388 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901402", + "ref": "FR*V75*P9014*02", + "name": "Paris | Avenue Reille 46", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323891, + 48.841198 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901403", + "ref": "FR*V75*P9014*03", + "name": "Paris | Boulevard Edgar Quinet 9", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323891, + 48.841198 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901403", + "ref": "FR*V75*P9014*03", + "name": "Paris | Boulevard Edgar Quinet 9", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323891, + 48.841198 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901403", + "ref": "FR*V75*P9014*03", + "name": "Paris | Boulevard Edgar Quinet 9", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320052, + 48.831448 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901404", + "ref": "FR*V75*P9014*04", + "name": "Paris | Rue Didot 47", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320052, + 48.831448 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901404", + "ref": "FR*V75*P9014*04", + "name": "Paris | Rue Didot 47", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320052, + 48.831448 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901404", + "ref": "FR*V75*P9014*04", + "name": "Paris | Rue Didot 47", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279884, + 48.846214 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901501", + "ref": "FR*V75*P9015*01", + "name": "Paris | Avenue Emile Zola 18", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295469, + 48.868511 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901602", + "ref": "FR*V75*P9016*02", + "name": "Paris | Avenue d'Iéna 37", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295469, + 48.868511 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901602", + "ref": "FR*V75*P9016*02", + "name": "Paris | Avenue d'Iéna 37", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352758, + 48.897671 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901803", + "ref": "FR*V75*P9018*03", + "name": "Paris | Rue des Poissonniers 150", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27153, + 48.863602 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901603", + "ref": "FR*V75*P9016*03", + "name": "Paris | Avenue Henri Martin 101", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286938, + 48.883282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901701", + "ref": "FR*V75*P9017*01", + "name": "Paris | Avenue de la Porte de Villiers 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-03-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.293606, + 48.878965 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901702", + "ref": "FR*V75*P9017*02", + "name": "Paris | Avenue des Ternes 36", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.293606, + 48.878965 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901702", + "ref": "FR*V75*P9017*02", + "name": "Paris | Avenue des Ternes 36", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.293606, + 48.878965 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901702", + "ref": "FR*V75*P9017*02", + "name": "Paris | Avenue des Ternes 36", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297463, + 48.885689 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901703", + "ref": "FR*V75*P9017*03", + "name": "Paris | Avenue Gourgaud 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-05", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297463, + 48.885689 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901703", + "ref": "FR*V75*P9017*03", + "name": "Paris | Avenue Gourgaud 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-05", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297463, + 48.885689 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901703", + "ref": "FR*V75*P9017*03", + "name": "Paris | Avenue Gourgaud 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-05", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313751, + 48.881168 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901704", + "ref": "FR*V75*P9017*04", + "name": "Paris | Boulevard de Courcelles 12", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313751, + 48.881168 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901704", + "ref": "FR*V75*P9017*04", + "name": "Paris | Boulevard de Courcelles 12", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313751, + 48.881168 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901704", + "ref": "FR*V75*P9017*04", + "name": "Paris | Boulevard de Courcelles 12", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.302442, + 48.879654 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901705", + "ref": "FR*V75*P9017*05", + "name": "Paris | Rue de Courcelles 83", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.302442, + 48.879654 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901705", + "ref": "FR*V75*P9017*05", + "name": "Paris | Rue de Courcelles 83", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.302442, + 48.879654 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901705", + "ref": "FR*V75*P9017*05", + "name": "Paris | Rue de Courcelles 83", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.319768, + 48.882718 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901706", + "ref": "FR*V75*P9017*06", + "name": "Paris | Rue de Rome 81", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.319768, + 48.882718 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901706", + "ref": "FR*V75*P9017*06", + "name": "Paris | Rue de Rome 81", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.319768, + 48.882718 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901706", + "ref": "FR*V75*P9017*06", + "name": "Paris | Rue de Rome 81", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33891, + 48.889731 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901802", + "ref": "FR*V75*P9018*02", + "name": "Paris | Rue Caulaincourt 103", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33891, + 48.889731 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901802", + "ref": "FR*V75*P9018*02", + "name": "Paris | Rue Caulaincourt 103", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33891, + 48.889731 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901802", + "ref": "FR*V75*P9018*02", + "name": "Paris | Rue Caulaincourt 103", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286938, + 48.883282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901701", + "ref": "FR*V75*P9017*01", + "name": "Paris | Avenue de la Porte de Villiers 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-03-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286938, + 48.883282 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901701", + "ref": "FR*V75*P9017*01", + "name": "Paris | Avenue de la Porte de Villiers 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-03-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.268339, + 48.846761 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901609", + "ref": "FR*V75*P9016*09", + "name": "Paris | Rue Chardon Lagache 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.289894, + 48.871465 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901606", + "ref": "FR*V75*P9016*06", + "name": "Paris | Avenue Victor Hugo 45", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27153, + 48.863602 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901603", + "ref": "FR*V75*P9016*03", + "name": "Paris | Avenue Henri Martin 101", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27153, + 48.863602 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901603", + "ref": "FR*V75*P9016*03", + "name": "Paris | Avenue Henri Martin 101", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259932, + 48.837055 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901604", + "ref": "FR*V75*P9016*04", + "name": "Paris | Avenue Marcel Doret 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259932, + 48.837055 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901604", + "ref": "FR*V75*P9016*04", + "name": "Paris | Avenue Marcel Doret 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259932, + 48.837055 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901604", + "ref": "FR*V75*P9016*04", + "name": "Paris | Avenue Marcel Doret 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28308, + 48.861016 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901605", + "ref": "FR*V75*P9016*05", + "name": "Paris | Avenue Paul Doumer 24", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28308, + 48.861016 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901605", + "ref": "FR*V75*P9016*05", + "name": "Paris | Avenue Paul Doumer 24", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28308, + 48.861016 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901605", + "ref": "FR*V75*P9016*05", + "name": "Paris | Avenue Paul Doumer 24", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.289894, + 48.871465 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901606", + "ref": "FR*V75*P9016*06", + "name": "Paris | Avenue Victor Hugo 45", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.268339, + 48.846761 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901609", + "ref": "FR*V75*P9016*09", + "name": "Paris | Rue Chardon Lagache 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.289894, + 48.871465 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901606", + "ref": "FR*V75*P9016*06", + "name": "Paris | Avenue Victor Hugo 45", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273944, + 48.859184 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901607", + "ref": "FR*V75*P9016*07", + "name": "Paris | Boulevard Emile Augier 12", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273944, + 48.859184 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901607", + "ref": "FR*V75*P9016*07", + "name": "Paris | Boulevard Emile Augier 12", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273944, + 48.859184 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901607", + "ref": "FR*V75*P9016*07", + "name": "Paris | Boulevard Emile Augier 12", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258213, + 48.846653 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901608", + "ref": "FR*V75*P9016*08", + "name": "Paris | Boulevard Murat 15", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258213, + 48.846653 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901608", + "ref": "FR*V75*P9016*08", + "name": "Paris | Boulevard Murat 15", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258213, + 48.846653 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901608", + "ref": "FR*V75*P9016*08", + "name": "Paris | Boulevard Murat 15", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.268339, + 48.846761 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901609", + "ref": "FR*V75*P9016*09", + "name": "Paris | Rue Chardon Lagache 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3408933, + 48.8705626 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0203", + "ref": "FR*V75*PPX02*03", + "name": "Paris | Rue Vivienne 43", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3408933, + 48.8705626 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0203", + "ref": "FR*V75*PPX02*03", + "name": "Paris | Rue Vivienne 43", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843354, + 46.692852 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080341", + "ref": "FR*HPC*PNF080341", + "name": "RELAIS DE LA FERTE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3524539504414306, + 48.84116058051008 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0504", + "ref": "FR*V75*PPX05*04", + "name": "Paris | Rue Monge 99", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3469365, + 48.8479993 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0505", + "ref": "FR*V75*PPX05*05", + "name": "Paris | bis Rue Valette 2", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3469365, + 48.8479993 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0505", + "ref": "FR*V75*PPX05*05", + "name": "Paris | bis Rue Valette 2", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3469365, + 48.8479993 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0505", + "ref": "FR*V75*PPX05*05", + "name": "Paris | bis Rue Valette 2", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3469365, + 48.8479993 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0505", + "ref": "FR*V75*PPX05*05", + "name": "Paris | bis Rue Valette 2", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3469365, + 48.8479993 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0505", + "ref": "FR*V75*PPX05*05", + "name": "Paris | bis Rue Valette 2", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3469365, + 48.8479993 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0505", + "ref": "FR*V75*PPX05*05", + "name": "Paris | bis Rue Valette 2", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3476575, + 48.8397733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0506", + "ref": "FR*V75*PPX05*06", + "name": "Paris | Rue Claude Bernard 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3476575, + 48.8397733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0506", + "ref": "FR*V75*PPX05*06", + "name": "Paris | Rue Claude Bernard 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3476575, + 48.8397733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0506", + "ref": "FR*V75*PPX05*06", + "name": "Paris | Rue Claude Bernard 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3476575, + 48.8397733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0506", + "ref": "FR*V75*PPX05*06", + "name": "Paris | Rue Claude Bernard 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3476575, + 48.8397733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0506", + "ref": "FR*V75*PPX05*06", + "name": "Paris | Rue Claude Bernard 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3476575, + 48.8397733 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0506", + "ref": "FR*V75*PPX05*06", + "name": "Paris | Rue Claude Bernard 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3472476, + 48.8513879 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0507", + "ref": "FR*V75*PPX05*07", + "name": "Paris | Rue Dante 1", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3472476, + 48.8513879 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0507", + "ref": "FR*V75*PPX05*07", + "name": "Paris | Rue Dante 1", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3472476, + 48.8513879 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0507", + "ref": "FR*V75*PPX05*07", + "name": "Paris | Rue Dante 1", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3472476, + 48.8513879 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0507", + "ref": "FR*V75*PPX05*07", + "name": "Paris | Rue Dante 1", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3430684, + 48.8420054 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0508", + "ref": "FR*V75*PPX05*08", + "name": "Paris | Rue Gay-Lussac 66", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3430684, + 48.8420054 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0508", + "ref": "FR*V75*PPX05*08", + "name": "Paris | Rue Gay-Lussac 66", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3430684, + 48.8420054 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0508", + "ref": "FR*V75*PPX05*08", + "name": "Paris | Rue Gay-Lussac 66", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3469365, + 48.8479993 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0505", + "ref": "FR*V75*PPX05*05", + "name": "Paris | bis Rue Valette 2", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3524539504414306, + 48.84116058051008 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0504", + "ref": "FR*V75*PPX05*04", + "name": "Paris | Rue Monge 99", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3408933, + 48.8705626 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0203", + "ref": "FR*V75*PPX02*03", + "name": "Paris | Rue Vivienne 43", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3524539504414306, + 48.84116058051008 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0504", + "ref": "FR*V75*PPX05*04", + "name": "Paris | Rue Monge 99", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.363958, + 48.853574 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0409", + "ref": "FR*V75*PPX04*09", + "name": "Paris | Rue Neuve Saint-Pierre 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.363958, + 48.853574 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0409", + "ref": "FR*V75*PPX04*09", + "name": "Paris | Rue Neuve Saint-Pierre 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.363958, + 48.853574 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0409", + "ref": "FR*V75*PPX04*09", + "name": "Paris | Rue Neuve Saint-Pierre 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.363958, + 48.853574 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0409", + "ref": "FR*V75*PPX04*09", + "name": "Paris | Rue Neuve Saint-Pierre 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3544309, + 48.850032 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0501", + "ref": "FR*V75*PPX05*01", + "name": "Paris | Quai de la Tournelle 21", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3544309, + 48.850032 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0501", + "ref": "FR*V75*PPX05*01", + "name": "Paris | Quai de la Tournelle 21", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3544309, + 48.850032 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0501", + "ref": "FR*V75*PPX05*01", + "name": "Paris | Quai de la Tournelle 21", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3544309, + 48.850032 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0501", + "ref": "FR*V75*PPX05*01", + "name": "Paris | Quai de la Tournelle 21", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.347262, + 48.84196 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0502", + "ref": "FR*V75*PPX05*02", + "name": "Paris | Rue Pierre Brossolette 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.347262, + 48.84196 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0502", + "ref": "FR*V75*PPX05*02", + "name": "Paris | Rue Pierre Brossolette 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.347262, + 48.84196 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0502", + "ref": "FR*V75*PPX05*02", + "name": "Paris | Rue Pierre Brossolette 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.347262, + 48.84196 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0502", + "ref": "FR*V75*PPX05*02", + "name": "Paris | Rue Pierre Brossolette 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.347262, + 48.84196 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0502", + "ref": "FR*V75*PPX05*02", + "name": "Paris | Rue Pierre Brossolette 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.347262, + 48.84196 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0502", + "ref": "FR*V75*PPX05*02", + "name": "Paris | Rue Pierre Brossolette 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3484148, + 48.8463237 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0503", + "ref": "FR*V75*PPX05*03", + "name": "Paris | Rue Clovis 20", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-28", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3484148, + 48.8463237 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0503", + "ref": "FR*V75*PPX05*03", + "name": "Paris | Rue Clovis 20", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-28", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3484148, + 48.8463237 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0503", + "ref": "FR*V75*PPX05*03", + "name": "Paris | Rue Clovis 20", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-28", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3524539504414306, + 48.84116058051008 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0504", + "ref": "FR*V75*PPX05*04", + "name": "Paris | Rue Monge 99", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3524539504414306, + 48.84116058051008 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0504", + "ref": "FR*V75*PPX05*04", + "name": "Paris | Rue Monge 99", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3430684, + 48.8420054 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0508", + "ref": "FR*V75*PPX05*08", + "name": "Paris | Rue Gay-Lussac 66", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3430684, + 48.8420054 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0508", + "ref": "FR*V75*PPX05*08", + "name": "Paris | Rue Gay-Lussac 66", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3522773, + 48.8444276 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0509", + "ref": "FR*V75*PPX05*09", + "name": "Paris | Rue Monge 58", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3522773, + 48.8444276 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0509", + "ref": "FR*V75*PPX05*09", + "name": "Paris | Rue Monge 58", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.338973, + 48.8415 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0513", + "ref": "FR*V75*PPX05*13", + "name": "Paris | Rue Henri Barbusse 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.338973, + 48.8415 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0513", + "ref": "FR*V75*PPX05*13", + "name": "Paris | Rue Henri Barbusse 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.338973, + 48.8415 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0513", + "ref": "FR*V75*PPX05*13", + "name": "Paris | Rue Henri Barbusse 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.338973, + 48.8415 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0513", + "ref": "FR*V75*PPX05*13", + "name": "Paris | Rue Henri Barbusse 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.338973, + 48.8415 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0513", + "ref": "FR*V75*PPX05*13", + "name": "Paris | Rue Henri Barbusse 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3361369, + 48.8516002 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0601", + "ref": "FR*V75*PPX06*01", + "name": "Paris | Rue Lobineau 9", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3361369, + 48.8516002 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0601", + "ref": "FR*V75*PPX06*01", + "name": "Paris | Rue Lobineau 9", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3361369, + 48.8516002 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0601", + "ref": "FR*V75*PPX06*01", + "name": "Paris | Rue Lobineau 9", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3361369, + 48.8516002 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0601", + "ref": "FR*V75*PPX06*01", + "name": "Paris | Rue Lobineau 9", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3361369, + 48.8516002 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0601", + "ref": "FR*V75*PPX06*01", + "name": "Paris | Rue Lobineau 9", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.342107, + 48.85262 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0602", + "ref": "FR*V75*PPX06*02", + "name": "Paris | Rue Danton 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.342107, + 48.85262 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0602", + "ref": "FR*V75*PPX06*02", + "name": "Paris | Rue Danton 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.342107, + 48.85262 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0602", + "ref": "FR*V75*PPX06*02", + "name": "Paris | Rue Danton 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.342107, + 48.85262 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0602", + "ref": "FR*V75*PPX06*02", + "name": "Paris | Rue Danton 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.342107, + 48.85262 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0602", + "ref": "FR*V75*PPX06*02", + "name": "Paris | Rue Danton 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.342107, + 48.85262 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0602", + "ref": "FR*V75*PPX06*02", + "name": "Paris | Rue Danton 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3182091, + 48.8473691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0603", + "ref": "FR*V75*PPX06*03", + "name": "Paris | Rue Mayet 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-28", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3182091, + 48.8473691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0603", + "ref": "FR*V75*PPX06*03", + "name": "Paris | Rue Mayet 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-28", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3182091, + 48.8473691 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0603", + "ref": "FR*V75*PPX06*03", + "name": "Paris | Rue Mayet 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-28", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.338973, + 48.8415 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0513", + "ref": "FR*V75*PPX05*13", + "name": "Paris | Rue Henri Barbusse 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3548335, + 48.8452566 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0512", + "ref": "FR*V75*PPX05*12", + "name": "Paris | Rue Linnée 18", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3548335, + 48.8452566 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0512", + "ref": "FR*V75*PPX05*12", + "name": "Paris | Rue Linnée 18", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3507414, + 48.8392739 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0511", + "ref": "FR*V75*PPX05*11", + "name": "Paris | Rue Monge 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3522773, + 48.8444276 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0509", + "ref": "FR*V75*PPX05*09", + "name": "Paris | Rue Monge 58", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3522773, + 48.8444276 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0509", + "ref": "FR*V75*PPX05*09", + "name": "Paris | Rue Monge 58", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3522773, + 48.8444276 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0509", + "ref": "FR*V75*PPX05*09", + "name": "Paris | Rue Monge 58", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3444286, + 48.8499024 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0510", + "ref": "FR*V75*PPX05*10", + "name": "Paris | Rue Paul Painlevé 7", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3444286, + 48.8499024 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0510", + "ref": "FR*V75*PPX05*10", + "name": "Paris | Rue Paul Painlevé 7", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3444286, + 48.8499024 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0510", + "ref": "FR*V75*PPX05*10", + "name": "Paris | Rue Paul Painlevé 7", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3444286, + 48.8499024 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0510", + "ref": "FR*V75*PPX05*10", + "name": "Paris | Rue Paul Painlevé 7", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3444286, + 48.8499024 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0510", + "ref": "FR*V75*PPX05*10", + "name": "Paris | Rue Paul Painlevé 7", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3507414, + 48.8392739 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0511", + "ref": "FR*V75*PPX05*11", + "name": "Paris | Rue Monge 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3548335, + 48.8452566 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0512", + "ref": "FR*V75*PPX05*12", + "name": "Paris | Rue Linnée 18", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3507414, + 48.8392739 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0511", + "ref": "FR*V75*PPX05*11", + "name": "Paris | Rue Monge 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3507414, + 48.8392739 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0511", + "ref": "FR*V75*PPX05*11", + "name": "Paris | Rue Monge 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3507414, + 48.8392739 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0511", + "ref": "FR*V75*PPX05*11", + "name": "Paris | Rue Monge 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3507414, + 48.8392739 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0511", + "ref": "FR*V75*PPX05*11", + "name": "Paris | Rue Monge 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3548335, + 48.8452566 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0512", + "ref": "FR*V75*PPX05*12", + "name": "Paris | Rue Linnée 18", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3548335, + 48.8452566 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0512", + "ref": "FR*V75*PPX05*12", + "name": "Paris | Rue Linnée 18", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3548335, + 48.8452566 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0512", + "ref": "FR*V75*PPX05*12", + "name": "Paris | Rue Linnée 18", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-10-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3548335, + 48.8452566 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0512", + "ref": "FR*V75*PPX05*12", + "name": "Paris | Rue Linnée 18", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-06", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.363958, + 48.853574 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0409", + "ref": "FR*V75*PPX04*09", + "name": "Paris | Rue Neuve Saint-Pierre 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3543751, + 48.8585045 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0408", + "ref": "FR*V75*PPX04*08", + "name": "Paris | Rue Sainte-Croix de la Bretonnerie 37", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3543751, + 48.8585045 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0408", + "ref": "FR*V75*PPX04*08", + "name": "Paris | Rue Sainte-Croix de la Bretonnerie 37", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.360503, + 48.86502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0304", + "ref": "FR*V75*PPX03*04", + "name": "Paris | Rue Perrée 18", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34525, + 48.86781 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0209", + "ref": "FR*V75*PPX02*09", + "name": "Paris | Rue Réaumur 116", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34525, + 48.86781 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0209", + "ref": "FR*V75*PPX02*09", + "name": "Paris | Rue Réaumur 116", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34525, + 48.86781 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0209", + "ref": "FR*V75*PPX02*09", + "name": "Paris | Rue Réaumur 116", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34525, + 48.86781 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0209", + "ref": "FR*V75*PPX02*09", + "name": "Paris | Rue Réaumur 116", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3526978, + 48.8633367 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0301", + "ref": "FR*V75*PPX03*01", + "name": "Paris | Rue Saint-Martin 204", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3526978, + 48.8633367 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0301", + "ref": "FR*V75*PPX03*01", + "name": "Paris | Rue Saint-Martin 204", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3526978, + 48.8633367 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0301", + "ref": "FR*V75*PPX03*01", + "name": "Paris | Rue Saint-Martin 204", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3526978, + 48.8633367 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0301", + "ref": "FR*V75*PPX03*01", + "name": "Paris | Rue Saint-Martin 204", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3630074, + 48.8674504 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0302", + "ref": "FR*V75*PPX03*02", + "name": "Paris | Place de la République 17", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3630074, + 48.8674504 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0302", + "ref": "FR*V75*PPX03*02", + "name": "Paris | Place de la République 17", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3630074, + 48.8674504 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0302", + "ref": "FR*V75*PPX03*02", + "name": "Paris | Place de la République 17", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3630074, + 48.8674504 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0302", + "ref": "FR*V75*PPX03*02", + "name": "Paris | Place de la République 17", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3673798, + 48.8589682 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0303", + "ref": "FR*V75*PPX03*03", + "name": "Paris | Boulevard Beaumarchais 87", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-04-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3673798, + 48.8589682 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0303", + "ref": "FR*V75*PPX03*03", + "name": "Paris | Boulevard Beaumarchais 87", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-04-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3673798, + 48.8589682 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0303", + "ref": "FR*V75*PPX03*03", + "name": "Paris | Boulevard Beaumarchais 87", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-04-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3673798, + 48.8589682 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0303", + "ref": "FR*V75*PPX03*03", + "name": "Paris | Boulevard Beaumarchais 87", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-04-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3673798, + 48.8589682 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0303", + "ref": "FR*V75*PPX03*03", + "name": "Paris | Boulevard Beaumarchais 87", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-04-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3673798, + 48.8589682 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0303", + "ref": "FR*V75*PPX03*03", + "name": "Paris | Boulevard Beaumarchais 87", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-04-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.360503, + 48.86502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0304", + "ref": "FR*V75*PPX03*04", + "name": "Paris | Rue Perrée 18", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34525, + 48.86781 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0209", + "ref": "FR*V75*PPX02*09", + "name": "Paris | Rue Réaumur 116", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2022-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34525, + 48.86781 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0209", + "ref": "FR*V75*PPX02*09", + "name": "Paris | Rue Réaumur 116", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.335097, + 48.868181 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0208", + "ref": "FR*V75*PPX02*08", + "name": "Paris | Rue Dalayrac 19", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3320835, + 48.8699261 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0206", + "ref": "FR*V75*PPX02*06", + "name": "Paris | Rue de la Paix 24", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344388, + 48.86502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0205", + "ref": "FR*V75*PPX02*05", + "name": "Paris | Rue Etienne Marcel 36", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344388, + 48.86502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0205", + "ref": "FR*V75*PPX02*05", + "name": "Paris | Rue Etienne Marcel 36", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344388, + 48.86502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0205", + "ref": "FR*V75*PPX02*05", + "name": "Paris | Rue Etienne Marcel 36", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344388, + 48.86502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0205", + "ref": "FR*V75*PPX02*05", + "name": "Paris | Rue Etienne Marcel 36", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344388, + 48.86502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0205", + "ref": "FR*V75*PPX02*05", + "name": "Paris | Rue Etienne Marcel 36", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3320835, + 48.8699261 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0206", + "ref": "FR*V75*PPX02*06", + "name": "Paris | Rue de la Paix 24", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3320835, + 48.8699261 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0206", + "ref": "FR*V75*PPX02*06", + "name": "Paris | Rue de la Paix 24", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3320835, + 48.8699261 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0206", + "ref": "FR*V75*PPX02*06", + "name": "Paris | Rue de la Paix 24", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3320835, + 48.8699261 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0206", + "ref": "FR*V75*PPX02*06", + "name": "Paris | Rue de la Paix 24", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.335097, + 48.868181 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0208", + "ref": "FR*V75*PPX02*08", + "name": "Paris | Rue Dalayrac 19", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3454538, + 48.8704209 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0207", + "ref": "FR*V75*PPX02*07", + "name": "Paris | Rue d'Uzès 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3454538, + 48.8704209 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0207", + "ref": "FR*V75*PPX02*07", + "name": "Paris | Rue d'Uzès 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3454538, + 48.8704209 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0207", + "ref": "FR*V75*PPX02*07", + "name": "Paris | Rue d'Uzès 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3454538, + 48.8704209 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0207", + "ref": "FR*V75*PPX02*07", + "name": "Paris | Rue d'Uzès 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3454538, + 48.8704209 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0207", + "ref": "FR*V75*PPX02*07", + "name": "Paris | Rue d'Uzès 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.335097, + 48.868181 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0208", + "ref": "FR*V75*PPX02*08", + "name": "Paris | Rue Dalayrac 19", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.335097, + 48.868181 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0208", + "ref": "FR*V75*PPX02*08", + "name": "Paris | Rue Dalayrac 19", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.335097, + 48.868181 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0208", + "ref": "FR*V75*PPX02*08", + "name": "Paris | Rue Dalayrac 19", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.360503, + 48.86502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0304", + "ref": "FR*V75*PPX03*04", + "name": "Paris | Rue Perrée 18", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.360503, + 48.86502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0304", + "ref": "FR*V75*PPX03*04", + "name": "Paris | Rue Perrée 18", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3543751, + 48.8585045 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0408", + "ref": "FR*V75*PPX04*08", + "name": "Paris | Rue Sainte-Croix de la Bretonnerie 37", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.360503, + 48.86502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0304", + "ref": "FR*V75*PPX03*04", + "name": "Paris | Rue Perrée 18", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.366004, + 48.8484226 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0404", + "ref": "FR*V75*PPX04*04", + "name": "Paris | Boulevard Bourdon 9", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-28", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.366004, + 48.8484226 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0404", + "ref": "FR*V75*PPX04*04", + "name": "Paris | Boulevard Bourdon 9", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-28", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.366004, + 48.8484226 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0404", + "ref": "FR*V75*PPX04*04", + "name": "Paris | Boulevard Bourdon 9", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-28", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3564553, + 48.8512525 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0405", + "ref": "FR*V75*PPX04*05", + "name": "Paris | Quai de Béthune 36", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3564553, + 48.8512525 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0405", + "ref": "FR*V75*PPX04*05", + "name": "Paris | Quai de Béthune 36", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3564553, + 48.8512525 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0405", + "ref": "FR*V75*PPX04*05", + "name": "Paris | Quai de Béthune 36", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3564553, + 48.8512525 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0405", + "ref": "FR*V75*PPX04*05", + "name": "Paris | Quai de Béthune 36", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3564553, + 48.8512525 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0405", + "ref": "FR*V75*PPX04*05", + "name": "Paris | Quai de Béthune 36", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-11", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345341, + 48.8541989 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0406", + "ref": "FR*V75*PPX04*06", + "name": "Paris | Quai du Marché Neuf 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345341, + 48.8541989 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0406", + "ref": "FR*V75*PPX04*06", + "name": "Paris | Quai du Marché Neuf 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345341, + 48.8541989 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0406", + "ref": "FR*V75*PPX04*06", + "name": "Paris | Quai du Marché Neuf 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345341, + 48.8541989 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0406", + "ref": "FR*V75*PPX04*06", + "name": "Paris | Quai du Marché Neuf 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345341, + 48.8541989 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0406", + "ref": "FR*V75*PPX04*06", + "name": "Paris | Quai du Marché Neuf 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345341, + 48.8541989 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0406", + "ref": "FR*V75*PPX04*06", + "name": "Paris | Quai du Marché Neuf 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3542653, + 48.8596689 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0407", + "ref": "FR*V75*PPX04*07", + "name": "Paris | Rue du Temple 36", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3542653, + 48.8596689 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0407", + "ref": "FR*V75*PPX04*07", + "name": "Paris | Rue du Temple 36", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3542653, + 48.8596689 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0407", + "ref": "FR*V75*PPX04*07", + "name": "Paris | Rue du Temple 36", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3542653, + 48.8596689 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0407", + "ref": "FR*V75*PPX04*07", + "name": "Paris | Rue du Temple 36", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3543751, + 48.8585045 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0408", + "ref": "FR*V75*PPX04*08", + "name": "Paris | Rue Sainte-Croix de la Bretonnerie 37", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.366004, + 48.8484226 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0404", + "ref": "FR*V75*PPX04*04", + "name": "Paris | Boulevard Bourdon 9", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-28", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.366004, + 48.8484226 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0404", + "ref": "FR*V75*PPX04*04", + "name": "Paris | Boulevard Bourdon 9", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-28", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.366004, + 48.8484226 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0404", + "ref": "FR*V75*PPX04*04", + "name": "Paris | Boulevard Bourdon 9", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-28", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3505278, + 48.8548459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0401", + "ref": "FR*V75*PPX04*01", + "name": "Paris | Quai aux Fleurs 23", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.360503, + 48.86502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0304", + "ref": "FR*V75*PPX03*04", + "name": "Paris | Rue Perrée 18", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3648513, + 48.8623505 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0306", + "ref": "FR*V75*PPX03*06", + "name": "Paris | Rue de Turenne 98", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3648513, + 48.8623505 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0306", + "ref": "FR*V75*PPX03*06", + "name": "Paris | Rue de Turenne 98", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3648513, + 48.8623505 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0306", + "ref": "FR*V75*PPX03*06", + "name": "Paris | Rue de Turenne 98", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3648513, + 48.8623505 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0306", + "ref": "FR*V75*PPX03*06", + "name": "Paris | Rue de Turenne 98", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3648513, + 48.8623505 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0306", + "ref": "FR*V75*PPX03*06", + "name": "Paris | Rue de Turenne 98", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3505278, + 48.8548459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0401", + "ref": "FR*V75*PPX04*01", + "name": "Paris | Quai aux Fleurs 23", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3505278, + 48.8548459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0401", + "ref": "FR*V75*PPX04*01", + "name": "Paris | Quai aux Fleurs 23", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3505278, + 48.8548459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0401", + "ref": "FR*V75*PPX04*01", + "name": "Paris | Quai aux Fleurs 23", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361378, + 48.85648 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0403", + "ref": "FR*V75*PPX04*03", + "name": "Paris | Rue Malher 13", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3505278, + 48.8548459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0401", + "ref": "FR*V75*PPX04*01", + "name": "Paris | Quai aux Fleurs 23", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3591939, + 48.8553672 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0402", + "ref": "FR*V75*PPX04*02", + "name": "Paris | Rue François Miron 80", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3591939, + 48.8553672 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0402", + "ref": "FR*V75*PPX04*02", + "name": "Paris | Rue François Miron 80", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3591939, + 48.8553672 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0402", + "ref": "FR*V75*PPX04*02", + "name": "Paris | Rue François Miron 80", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3591939, + 48.8553672 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0402", + "ref": "FR*V75*PPX04*02", + "name": "Paris | Rue François Miron 80", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3591939, + 48.8553672 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0402", + "ref": "FR*V75*PPX04*02", + "name": "Paris | Rue François Miron 80", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361378, + 48.85648 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0403", + "ref": "FR*V75*PPX04*03", + "name": "Paris | Rue Malher 13", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361378, + 48.85648 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX0403", + "ref": "FR*V75*PPX04*03", + "name": "Paris | Rue Malher 13", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.343366, + 48.826504 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901306", + "ref": "FR*V75*P9013*06", + "name": "Paris | Rue de Tolbiac 234", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.358146, + 48.826039 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901305", + "ref": "FR*V75*P9013*05", + "name": "Paris | Rue de Tolbiac 145", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.358146, + 48.826039 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901305", + "ref": "FR*V75*P9013*05", + "name": "Paris | Rue de Tolbiac 145", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080357", + "ref": "FR*HPC*PNF080357", + "name": "RELAIS VIRONVAY SUD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080357", + "ref": "FR*HPC*PNF080357", + "name": "RELAIS VIRONVAY SUD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080357", + "ref": "FR*HPC*PNF080357", + "name": "RELAIS VIRONVAY SUD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080357", + "ref": "FR*HPC*PNF080357", + "name": "RELAIS VIRONVAY SUD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080357", + "ref": "FR*HPC*PNF080357", + "name": "RELAIS VIRONVAY SUD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.365282, + 48.761676 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080358", + "ref": "FR*HPC*PNF080358", + "name": "RELAIS SAVERNE ECKARTSWILLER", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.365282, + 48.761676 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080358", + "ref": "FR*HPC*PNF080358", + "name": "RELAIS SAVERNE ECKARTSWILLER", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.365282, + 48.761676 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080358", + "ref": "FR*HPC*PNF080358", + "name": "RELAIS SAVERNE ECKARTSWILLER", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.365282, + 48.761676 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080358", + "ref": "FR*HPC*PNF080358", + "name": "RELAIS SAVERNE ECKARTSWILLER", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.365282, + 48.761676 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080358", + "ref": "FR*HPC*PNF080358", + "name": "RELAIS SAVERNE ECKARTSWILLER", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.365282, + 48.761676 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080358", + "ref": "FR*HPC*PNF080358", + "name": "RELAIS SAVERNE ECKARTSWILLER", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.365282, + 48.761676 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080358", + "ref": "FR*HPC*PNF080358", + "name": "RELAIS SAVERNE ECKARTSWILLER", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.365282, + 48.761676 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080358", + "ref": "FR*HPC*PNF080358", + "name": "RELAIS SAVERNE ECKARTSWILLER", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.295566333126504, + 45.524520306313626 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080359", + "ref": "FR*HPC*PNF080359", + "name": "RELAIS DES COQUELICOTS", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.295566333126504, + 45.524520306313626 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080359", + "ref": "FR*HPC*PNF080359", + "name": "RELAIS DES COQUELICOTS", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.295566333126504, + 45.524520306313626 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080359", + "ref": "FR*HPC*PNF080359", + "name": "RELAIS DES COQUELICOTS", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.295566333126504, + 45.524520306313626 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080359", + "ref": "FR*HPC*PNF080359", + "name": "RELAIS DES COQUELICOTS", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080361", + "ref": "FR*HPC*PNF080361", + "name": "RELAIS DE TREMENTINES", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080361", + "ref": "FR*HPC*PNF080361", + "name": "RELAIS DE TREMENTINES", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080361", + "ref": "FR*HPC*PNF080361", + "name": "RELAIS DE TREMENTINES", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080357", + "ref": "FR*HPC*PNF080357", + "name": "RELAIS VIRONVAY SUD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080357", + "ref": "FR*HPC*PNF080357", + "name": "RELAIS VIRONVAY SUD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.358146, + 48.826039 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901305", + "ref": "FR*V75*P9013*05", + "name": "Paris | Rue de Tolbiac 145", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080357", + "ref": "FR*HPC*PNF080357", + "name": "RELAIS VIRONVAY SUD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080356", + "ref": "FR*HPC*PNF080356", + "name": "RELAIS VIRONVAY NORD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080356", + "ref": "FR*HPC*PNF080356", + "name": "RELAIS VIRONVAY NORD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080356", + "ref": "FR*HPC*PNF080356", + "name": "RELAIS VIRONVAY NORD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080356", + "ref": "FR*HPC*PNF080356", + "name": "RELAIS VIRONVAY NORD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080356", + "ref": "FR*HPC*PNF080356", + "name": "RELAIS VIRONVAY NORD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080356", + "ref": "FR*HPC*PNF080356", + "name": "RELAIS VIRONVAY NORD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080356", + "ref": "FR*HPC*PNF080356", + "name": "RELAIS VIRONVAY NORD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080356", + "ref": "FR*HPC*PNF080356", + "name": "RELAIS VIRONVAY NORD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080356", + "ref": "FR*HPC*PNF080356", + "name": "RELAIS VIRONVAY NORD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080356", + "ref": "FR*HPC*PNF080356", + "name": "RELAIS VIRONVAY NORD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080356", + "ref": "FR*HPC*PNF080356", + "name": "RELAIS VIRONVAY NORD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080357", + "ref": "FR*HPC*PNF080357", + "name": "RELAIS VIRONVAY SUD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080357", + "ref": "FR*HPC*PNF080357", + "name": "RELAIS VIRONVAY SUD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080357", + "ref": "FR*HPC*PNF080357", + "name": "RELAIS VIRONVAY SUD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080357", + "ref": "FR*HPC*PNF080357", + "name": "RELAIS VIRONVAY SUD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080357", + "ref": "FR*HPC*PNF080357", + "name": "RELAIS VIRONVAY SUD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080357", + "ref": "FR*HPC*PNF080357", + "name": "RELAIS VIRONVAY SUD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080357", + "ref": "FR*HPC*PNF080357", + "name": "RELAIS VIRONVAY SUD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080357", + "ref": "FR*HPC*PNF080357", + "name": "RELAIS VIRONVAY SUD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080361", + "ref": "FR*HPC*PNF080361", + "name": "RELAIS DE TREMENTINES", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080361", + "ref": "FR*HPC*PNF080361", + "name": "RELAIS DE TREMENTINES", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080361", + "ref": "FR*HPC*PNF080361", + "name": "RELAIS DE TREMENTINES", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080361", + "ref": "FR*HPC*PNF080361", + "name": "RELAIS DE TREMENTINES", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.97228, + 42.951091 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080363", + "ref": "FR*HPC*PNF080363", + "name": "RELAIS DE LA PALME EST", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.97228, + 42.951091 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080363", + "ref": "FR*HPC*PNF080363", + "name": "RELAIS DE LA PALME EST", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-26", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641518, + 47.819657 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080364", + "ref": "FR*HPC*PNF080364", + "name": "RELAIS BEAUGENCY MESSAS", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641518, + 47.819657 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080364", + "ref": "FR*HPC*PNF080364", + "name": "RELAIS BEAUGENCY MESSAS", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641518, + 47.819657 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080364", + "ref": "FR*HPC*PNF080364", + "name": "RELAIS BEAUGENCY MESSAS", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641518, + 47.819657 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080364", + "ref": "FR*HPC*PNF080364", + "name": "RELAIS BEAUGENCY MESSAS", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641518, + 47.819657 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080364", + "ref": "FR*HPC*PNF080364", + "name": "RELAIS BEAUGENCY MESSAS", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641518, + 47.819657 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080364", + "ref": "FR*HPC*PNF080364", + "name": "RELAIS BEAUGENCY MESSAS", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4519, + 43.4155 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080371", + "ref": "FR*HPC*PNF080371", + "name": "RELAIS VIDAUBAN NORD", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4519, + 43.4155 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080371", + "ref": "FR*HPC*PNF080371", + "name": "RELAIS VIDAUBAN NORD", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4519, + 43.4155 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080371", + "ref": "FR*HPC*PNF080371", + "name": "RELAIS VIDAUBAN NORD", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4519, + 43.4155 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080371", + "ref": "FR*HPC*PNF080371", + "name": "RELAIS VIDAUBAN NORD", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4519, + 43.4155 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080371", + "ref": "FR*HPC*PNF080371", + "name": "RELAIS VIDAUBAN NORD", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4519, + 43.4155 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080371", + "ref": "FR*HPC*PNF080371", + "name": "RELAIS VIDAUBAN NORD", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4519, + 43.4155 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080371", + "ref": "FR*HPC*PNF080371", + "name": "RELAIS VIDAUBAN NORD", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4519, + 43.4155 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080371", + "ref": "FR*HPC*PNF080371", + "name": "RELAIS VIDAUBAN NORD", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4519, + 43.4155 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080371", + "ref": "FR*HPC*PNF080371", + "name": "RELAIS VIDAUBAN NORD", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4519, + 43.4155 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080371", + "ref": "FR*HPC*PNF080371", + "name": "RELAIS VIDAUBAN NORD", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4519, + 43.4155 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080371", + "ref": "FR*HPC*PNF080371", + "name": "RELAIS VIDAUBAN NORD", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.97228, + 42.951091 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080363", + "ref": "FR*HPC*PNF080363", + "name": "RELAIS DE LA PALME EST", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.97228, + 42.951091 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080363", + "ref": "FR*HPC*PNF080363", + "name": "RELAIS DE LA PALME EST", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.97228, + 42.951091 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080363", + "ref": "FR*HPC*PNF080363", + "name": "RELAIS DE LA PALME EST", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-22", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080362", + "ref": "FR*HPC*PNF080362", + "name": "RELAIS DE FENIOUX OUEST", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080361", + "ref": "FR*HPC*PNF080361", + "name": "RELAIS DE TREMENTINES", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080361", + "ref": "FR*HPC*PNF080361", + "name": "RELAIS DE TREMENTINES", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080361", + "ref": "FR*HPC*PNF080361", + "name": "RELAIS DE TREMENTINES", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080361", + "ref": "FR*HPC*PNF080361", + "name": "RELAIS DE TREMENTINES", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080361", + "ref": "FR*HPC*PNF080361", + "name": "RELAIS DE TREMENTINES", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080361", + "ref": "FR*HPC*PNF080361", + "name": "RELAIS DE TREMENTINES", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080361", + "ref": "FR*HPC*PNF080361", + "name": "RELAIS DE TREMENTINES", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-04", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080362", + "ref": "FR*HPC*PNF080362", + "name": "RELAIS DE FENIOUX OUEST", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080362", + "ref": "FR*HPC*PNF080362", + "name": "RELAIS DE FENIOUX OUEST", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080362", + "ref": "FR*HPC*PNF080362", + "name": "RELAIS DE FENIOUX OUEST", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080362", + "ref": "FR*HPC*PNF080362", + "name": "RELAIS DE FENIOUX OUEST", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080362", + "ref": "FR*HPC*PNF080362", + "name": "RELAIS DE FENIOUX OUEST", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080362", + "ref": "FR*HPC*PNF080362", + "name": "RELAIS DE FENIOUX OUEST", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080362", + "ref": "FR*HPC*PNF080362", + "name": "RELAIS DE FENIOUX OUEST", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080362", + "ref": "FR*HPC*PNF080362", + "name": "RELAIS DE FENIOUX OUEST", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080362", + "ref": "FR*HPC*PNF080362", + "name": "RELAIS DE FENIOUX OUEST", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080362", + "ref": "FR*HPC*PNF080362", + "name": "RELAIS DE FENIOUX OUEST", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080362", + "ref": "FR*HPC*PNF080362", + "name": "RELAIS DE FENIOUX OUEST", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080356", + "ref": "FR*HPC*PNF080356", + "name": "RELAIS VIRONVAY NORD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080356", + "ref": "FR*HPC*PNF080356", + "name": "RELAIS VIRONVAY NORD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080356", + "ref": "FR*HPC*PNF080356", + "name": "RELAIS VIRONVAY NORD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.743748, + 50.405129 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080345", + "ref": "FR*HPC*PNF080345", + "name": "RELAIS DE ANGRES", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.311491, + 46.49502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080343", + "ref": "FR*HPC*PNF080343", + "name": "RELAIS DE POULET DE BRESSE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.311491, + 46.49502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080343", + "ref": "FR*HPC*PNF080343", + "name": "RELAIS DE POULET DE BRESSE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.311491, + 46.49502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080343", + "ref": "FR*HPC*PNF080343", + "name": "RELAIS DE POULET DE BRESSE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908246, + 48.660713 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080344", + "ref": "FR*HPC*PNF080344", + "name": "RELAIS DE TOUL DOMMARTIN", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908246, + 48.660713 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080344", + "ref": "FR*HPC*PNF080344", + "name": "RELAIS DE TOUL DOMMARTIN", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908246, + 48.660713 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080344", + "ref": "FR*HPC*PNF080344", + "name": "RELAIS DE TOUL DOMMARTIN", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908246, + 48.660713 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080344", + "ref": "FR*HPC*PNF080344", + "name": "RELAIS DE TOUL DOMMARTIN", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908246, + 48.660713 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080344", + "ref": "FR*HPC*PNF080344", + "name": "RELAIS DE TOUL DOMMARTIN", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908246, + 48.660713 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080344", + "ref": "FR*HPC*PNF080344", + "name": "RELAIS DE TOUL DOMMARTIN", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908246, + 48.660713 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080344", + "ref": "FR*HPC*PNF080344", + "name": "RELAIS DE TOUL DOMMARTIN", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908246, + 48.660713 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080344", + "ref": "FR*HPC*PNF080344", + "name": "RELAIS DE TOUL DOMMARTIN", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908246, + 48.660713 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080344", + "ref": "FR*HPC*PNF080344", + "name": "RELAIS DE TOUL DOMMARTIN", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908246, + 48.660713 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080344", + "ref": "FR*HPC*PNF080344", + "name": "RELAIS DE TOUL DOMMARTIN", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908246, + 48.660713 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080344", + "ref": "FR*HPC*PNF080344", + "name": "RELAIS DE TOUL DOMMARTIN", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908246, + 48.660713 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080344", + "ref": "FR*HPC*PNF080344", + "name": "RELAIS DE TOUL DOMMARTIN", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908246, + 48.660713 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080344", + "ref": "FR*HPC*PNF080344", + "name": "RELAIS DE TOUL DOMMARTIN", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908246, + 48.660713 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080344", + "ref": "FR*HPC*PNF080344", + "name": "RELAIS DE TOUL DOMMARTIN", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908246, + 48.660713 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080344", + "ref": "FR*HPC*PNF080344", + "name": "RELAIS DE TOUL DOMMARTIN", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908246, + 48.660713 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080344", + "ref": "FR*HPC*PNF080344", + "name": "RELAIS DE TOUL DOMMARTIN", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.311491, + 46.49502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080343", + "ref": "FR*HPC*PNF080343", + "name": "RELAIS DE POULET DE BRESSE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.311491, + 46.49502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080343", + "ref": "FR*HPC*PNF080343", + "name": "RELAIS DE POULET DE BRESSE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.311491, + 46.49502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080343", + "ref": "FR*HPC*PNF080343", + "name": "RELAIS DE POULET DE BRESSE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.138174, + 47.716307 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080342", + "ref": "FR*HPC*PNF080342", + "name": "RELAIS DE PORTE D'ALSACE SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843354, + 46.692852 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080341", + "ref": "FR*HPC*PNF080341", + "name": "RELAIS DE LA FERTE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843354, + 46.692852 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080341", + "ref": "FR*HPC*PNF080341", + "name": "RELAIS DE LA FERTE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843354, + 46.692852 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080341", + "ref": "FR*HPC*PNF080341", + "name": "RELAIS DE LA FERTE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843354, + 46.692852 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080341", + "ref": "FR*HPC*PNF080341", + "name": "RELAIS DE LA FERTE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843354, + 46.692852 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080341", + "ref": "FR*HPC*PNF080341", + "name": "RELAIS DE LA FERTE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843354, + 46.692852 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080341", + "ref": "FR*HPC*PNF080341", + "name": "RELAIS DE LA FERTE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843354, + 46.692852 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080341", + "ref": "FR*HPC*PNF080341", + "name": "RELAIS DE LA FERTE", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.138174, + 47.716307 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080342", + "ref": "FR*HPC*PNF080342", + "name": "RELAIS DE PORTE D'ALSACE SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-02-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.138174, + 47.716307 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080342", + "ref": "FR*HPC*PNF080342", + "name": "RELAIS DE PORTE D'ALSACE SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.311491, + 46.49502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080343", + "ref": "FR*HPC*PNF080343", + "name": "RELAIS DE POULET DE BRESSE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.138174, + 47.716307 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080342", + "ref": "FR*HPC*PNF080342", + "name": "RELAIS DE PORTE D'ALSACE SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.138174, + 47.716307 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080342", + "ref": "FR*HPC*PNF080342", + "name": "RELAIS DE PORTE D'ALSACE SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.138174, + 47.716307 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080342", + "ref": "FR*HPC*PNF080342", + "name": "RELAIS DE PORTE D'ALSACE SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.138174, + 47.716307 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080342", + "ref": "FR*HPC*PNF080342", + "name": "RELAIS DE PORTE D'ALSACE SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.138174, + 47.716307 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080342", + "ref": "FR*HPC*PNF080342", + "name": "RELAIS DE PORTE D'ALSACE SUD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-02-08", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.311491, + 46.49502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080343", + "ref": "FR*HPC*PNF080343", + "name": "RELAIS DE POULET DE BRESSE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.311491, + 46.49502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080343", + "ref": "FR*HPC*PNF080343", + "name": "RELAIS DE POULET DE BRESSE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.311491, + 46.49502 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080343", + "ref": "FR*HPC*PNF080343", + "name": "RELAIS DE POULET DE BRESSE", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.743748, + 50.405129 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080345", + "ref": "FR*HPC*PNF080345", + "name": "RELAIS DE ANGRES", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-22", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.743748, + 50.405129 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080345", + "ref": "FR*HPC*PNF080345", + "name": "RELAIS DE ANGRES", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080356", + "ref": "FR*HPC*PNF080356", + "name": "RELAIS VIRONVAY NORD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.743748, + 50.405129 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080345", + "ref": "FR*HPC*PNF080345", + "name": "RELAIS DE ANGRES", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-21", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.090159, + 50.122864 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080350", + "ref": "FR*HPC*PNF080350", + "name": "RELAIS DE HAVRINCOURT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.090159, + 50.122864 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080350", + "ref": "FR*HPC*PNF080350", + "name": "RELAIS DE HAVRINCOURT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.090159, + 50.122864 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080350", + "ref": "FR*HPC*PNF080350", + "name": "RELAIS DE HAVRINCOURT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.090159, + 50.122864 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080350", + "ref": "FR*HPC*PNF080350", + "name": "RELAIS DE HAVRINCOURT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.580335, + 50.829441 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080352", + "ref": "FR*HPC*PNF080352", + "name": "RELAIS DE SAINT ELOI", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.580335, + 50.829441 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080352", + "ref": "FR*HPC*PNF080352", + "name": "RELAIS DE SAINT ELOI", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.580335, + 50.829441 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080352", + "ref": "FR*HPC*PNF080352", + "name": "RELAIS DE SAINT ELOI", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.580335, + 50.829441 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080352", + "ref": "FR*HPC*PNF080352", + "name": "RELAIS DE SAINT ELOI", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.538076, + 49.12686 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080353", + "ref": "FR*HPC*PNF080353", + "name": "RELAIS TARDENOIS NORD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.538076, + 49.12686 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080353", + "ref": "FR*HPC*PNF080353", + "name": "RELAIS TARDENOIS NORD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.538076, + 49.12686 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080353", + "ref": "FR*HPC*PNF080353", + "name": "RELAIS TARDENOIS NORD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.538076, + 49.12686 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080353", + "ref": "FR*HPC*PNF080353", + "name": "RELAIS TARDENOIS NORD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.537903, + 49.125699 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080354", + "ref": "FR*HPC*PNF080354", + "name": "RELAIS TARDENOIS SUD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.537903, + 49.125699 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080354", + "ref": "FR*HPC*PNF080354", + "name": "RELAIS TARDENOIS SUD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.537903, + 49.125699 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080354", + "ref": "FR*HPC*PNF080354", + "name": "RELAIS TARDENOIS SUD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.537903, + 49.125699 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080354", + "ref": "FR*HPC*PNF080354", + "name": "RELAIS TARDENOIS SUD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.342533, + 48.026513 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080355", + "ref": "FR*HPC*PNF080355", + "name": "RELAIS DE VALLEE DE L ERVE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.342533, + 48.026513 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080355", + "ref": "FR*HPC*PNF080355", + "name": "RELAIS DE VALLEE DE L ERVE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-23", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080356", + "ref": "FR*HPC*PNF080356", + "name": "RELAIS VIRONVAY NORD", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-17", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.090019, + 50.123916 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080349", + "ref": "FR*HPC*PNF080349", + "name": "RELAIS DE GRAINCOURT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.090019, + 50.123916 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080349", + "ref": "FR*HPC*PNF080349", + "name": "RELAIS DE GRAINCOURT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.090019, + 50.123916 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080349", + "ref": "FR*HPC*PNF080349", + "name": "RELAIS DE GRAINCOURT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.840505, + 49.888161 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080346", + "ref": "FR*HPC*PNF080346", + "name": "RELAIS DE COEUR DES HAUTS DE FRANCE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.840505, + 49.888161 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080346", + "ref": "FR*HPC*PNF080346", + "name": "RELAIS DE COEUR DES HAUTS DE FRANCE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.840505, + 49.888161 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080346", + "ref": "FR*HPC*PNF080346", + "name": "RELAIS DE COEUR DES HAUTS DE FRANCE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.840505, + 49.888161 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080346", + "ref": "FR*HPC*PNF080346", + "name": "RELAIS DE COEUR DES HAUTS DE FRANCE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.840505, + 49.888161 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080346", + "ref": "FR*HPC*PNF080346", + "name": "RELAIS DE COEUR DES HAUTS DE FRANCE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.840505, + 49.888161 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080346", + "ref": "FR*HPC*PNF080346", + "name": "RELAIS DE COEUR DES HAUTS DE FRANCE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.840505, + 49.888161 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080346", + "ref": "FR*HPC*PNF080346", + "name": "RELAIS DE COEUR DES HAUTS DE FRANCE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.840505, + 49.888161 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080346", + "ref": "FR*HPC*PNF080346", + "name": "RELAIS DE COEUR DES HAUTS DE FRANCE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-12-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.840505, + 49.888161 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080346", + "ref": "FR*HPC*PNF080346", + "name": "RELAIS DE COEUR DES HAUTS DE FRANCE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.840505, + 49.888161 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080346", + "ref": "FR*HPC*PNF080346", + "name": "RELAIS DE COEUR DES HAUTS DE FRANCE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-05", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.090019, + 50.123916 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080349", + "ref": "FR*HPC*PNF080349", + "name": "RELAIS DE GRAINCOURT", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.840505, + 49.888161 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080346", + "ref": "FR*HPC*PNF080346", + "name": "RELAIS DE COEUR DES HAUTS DE FRANCE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.840505, + 49.888161 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080346", + "ref": "FR*HPC*PNF080346", + "name": "RELAIS DE COEUR DES HAUTS DE FRANCE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.840505, + 49.888161 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080346", + "ref": "FR*HPC*PNF080346", + "name": "RELAIS DE COEUR DES HAUTS DE FRANCE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.840505, + 49.888161 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080346", + "ref": "FR*HPC*PNF080346", + "name": "RELAIS DE COEUR DES HAUTS DE FRANCE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.840505, + 49.888161 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080346", + "ref": "FR*HPC*PNF080346", + "name": "RELAIS DE COEUR DES HAUTS DE FRANCE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.840505, + 49.888161 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080346", + "ref": "FR*HPC*PNF080346", + "name": "RELAIS DE COEUR DES HAUTS DE FRANCE", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-24", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6457, + 50.5759 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080347", + "ref": "FR*HPC*PNF080347", + "name": "RELAIS DE FALAISES DE WIDEHEM EST", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-11-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6374, + 50.5766 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080348", + "ref": "FR*HPC*PNF080348", + "name": "RELAIS DE FALAISES DE WIDEHEM OUEST", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-11-18", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4519, + 43.4155 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080371", + "ref": "FR*HPC*PNF080371", + "name": "RELAIS VIDAUBAN NORD", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-11", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.036728, + 45.001584 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080372", + "ref": "FR*HPC*PNF080372", + "name": "RELAIS DES PALOMBIERES", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.246004, + 49.119215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080373", + "ref": "FR*HPC*PNF080373", + "name": "RELAIS REIMS CHAMPAGNE NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36554, + 48.865097 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901102", + "ref": "FR*V75*P9011*02", + "name": "Paris | Boulevard du Temple 27", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321369, + 48.880698 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900802", + "ref": "FR*V75*P9008*02", + "name": "Paris | Rue de Rome 72", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.309542, + 48.875854 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900803", + "ref": "FR*V75*P9008*03", + "name": "Paris | Rue Louis Murat 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.309542, + 48.875854 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900803", + "ref": "FR*V75*P9008*03", + "name": "Paris | Rue Louis Murat 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.309542, + 48.875854 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900803", + "ref": "FR*V75*P9008*03", + "name": "Paris | Rue Louis Murat 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.303269, + 48.86937 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900804", + "ref": "FR*V75*P9008*04", + "name": "Paris | Rue Pierre Charron 55", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.303269, + 48.86937 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900804", + "ref": "FR*V75*P9008*04", + "name": "Paris | Rue Pierre Charron 55", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.303269, + 48.86937 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900804", + "ref": "FR*V75*P9008*04", + "name": "Paris | Rue Pierre Charron 55", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.335728, + 48.88264 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900901", + "ref": "FR*V75*P9009*01", + "name": "Paris | Boulevard de Clichy 31", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.335728, + 48.88264 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900901", + "ref": "FR*V75*P9009*01", + "name": "Paris | Boulevard de Clichy 31", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.335728, + 48.88264 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900901", + "ref": "FR*V75*P9009*01", + "name": "Paris | Boulevard de Clichy 31", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3696815, + 48.878099 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901001", + "ref": "FR*V75*P9010*01", + "name": "Paris | Place du Colonel Fabien 9", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3696815, + 48.878099 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901001", + "ref": "FR*V75*P9010*01", + "name": "Paris | Place du Colonel Fabien 9", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3696815, + 48.878099 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901001", + "ref": "FR*V75*P9010*01", + "name": "Paris | Place du Colonel Fabien 9", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.360103, + 48.875465 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901002", + "ref": "FR*V75*P9010*02", + "name": "Paris | Rue du Faubourg Saint Martin 150", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.360103, + 48.875465 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901002", + "ref": "FR*V75*P9010*02", + "name": "Paris | Rue du Faubourg Saint Martin 150", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.360103, + 48.875465 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901002", + "ref": "FR*V75*P9010*02", + "name": "Paris | Rue du Faubourg Saint Martin 150", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379874, + 48.858952 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901101", + "ref": "FR*V75*P9011*01", + "name": "Paris | Avenue Parmentier 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379874, + 48.858952 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901101", + "ref": "FR*V75*P9011*01", + "name": "Paris | Avenue Parmentier 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379874, + 48.858952 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901101", + "ref": "FR*V75*P9011*01", + "name": "Paris | Avenue Parmentier 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321369, + 48.880698 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900802", + "ref": "FR*V75*P9008*02", + "name": "Paris | Rue de Rome 72", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321369, + 48.880698 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900802", + "ref": "FR*V75*P9008*02", + "name": "Paris | Rue de Rome 72", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.309952, + 48.847931 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900706", + "ref": "FR*V75*P9007*06", + "name": "Paris | Rue Pérignon 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31368, + 48.852665 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900703", + "ref": "FR*V75*P9007*03", + "name": "Paris | Avenue de Villars 9", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326367, + 48.851025 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900604", + "ref": "FR*V75*P9006*04", + "name": "Paris | Rue de Sevres 20", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326367, + 48.851025 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900604", + "ref": "FR*V75*P9006*04", + "name": "Paris | Rue de Sevres 20", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30437, + 48.857552 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900701", + "ref": "FR*V75*P9007*01", + "name": "Paris | Avenue Bosquet 47", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30437, + 48.857552 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900701", + "ref": "FR*V75*P9007*01", + "name": "Paris | Avenue Bosquet 47", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30437, + 48.857552 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900701", + "ref": "FR*V75*P9007*01", + "name": "Paris | Avenue Bosquet 47", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30749972, + 48.8497494 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900702", + "ref": "FR*V75*P9007*02", + "name": "Paris | Avenue de Saxe 10", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30749972, + 48.8497494 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900702", + "ref": "FR*V75*P9007*02", + "name": "Paris | Avenue de Saxe 10", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30749972, + 48.8497494 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900702", + "ref": "FR*V75*P9007*02", + "name": "Paris | Avenue de Saxe 10", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31368, + 48.852665 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900703", + "ref": "FR*V75*P9007*03", + "name": "Paris | Avenue de Villars 9", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.309952, + 48.847931 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900706", + "ref": "FR*V75*P9007*06", + "name": "Paris | Rue Pérignon 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31368, + 48.852665 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900703", + "ref": "FR*V75*P9007*03", + "name": "Paris | Avenue de Villars 9", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.327753, + 48.857124 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900704", + "ref": "FR*V75*P9007*04", + "name": "Paris | Rue du Bac 35", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.327753, + 48.857124 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900704", + "ref": "FR*V75*P9007*04", + "name": "Paris | Rue du Bac 35", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.327753, + 48.857124 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900704", + "ref": "FR*V75*P9007*04", + "name": "Paris | Rue du Bac 35", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31144092, + 48.8606571 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900705", + "ref": "FR*V75*P9007*05", + "name": "Paris | Rue Fabert 22", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31144092, + 48.8606571 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900705", + "ref": "FR*V75*P9007*05", + "name": "Paris | Rue Fabert 22", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31144092, + 48.8606571 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900705", + "ref": "FR*V75*P9007*05", + "name": "Paris | Rue Fabert 22", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.309952, + 48.847931 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900706", + "ref": "FR*V75*P9007*06", + "name": "Paris | Rue Pérignon 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36554, + 48.865097 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901102", + "ref": "FR*V75*P9011*02", + "name": "Paris | Boulevard du Temple 27", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36554, + 48.865097 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901102", + "ref": "FR*V75*P9011*02", + "name": "Paris | Boulevard du Temple 27", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.331346, + 48.852126 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900603", + "ref": "FR*V75*P9006*03", + "name": "Paris | Rue de Rennes 66", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.387548, + 48.854664 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901103", + "ref": "FR*V75*P9011*03", + "name": "Paris | Rue Léon Frot 26", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.411238, + 48.845265 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901206", + "ref": "FR*V75*P9012*06", + "name": "Paris | Rue Changarnier 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.397822, + 48.839947 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901207", + "ref": "FR*V75*P9012*07", + "name": "Paris | Rue Docteur Goujon 5", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.397822, + 48.839947 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901207", + "ref": "FR*V75*P9012*07", + "name": "Paris | Rue Docteur Goujon 5", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.397822, + 48.839947 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901207", + "ref": "FR*V75*P9012*07", + "name": "Paris | Rue Docteur Goujon 5", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3748828, + 48.8412037 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901208", + "ref": "FR*V75*P9012*08", + "name": "Paris | Rue Villiot 10", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3748828, + 48.8412037 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901208", + "ref": "FR*V75*P9012*08", + "name": "Paris | Rue Villiot 10", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3748828, + 48.8412037 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901208", + "ref": "FR*V75*P9012*08", + "name": "Paris | Rue Villiot 10", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372971, + 48.822432 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901301", + "ref": "FR*V75*P9013*01", + "name": "Paris | Avenue Claude Régaud 3", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372971, + 48.822432 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901301", + "ref": "FR*V75*P9013*01", + "name": "Paris | Avenue Claude Régaud 3", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372971, + 48.822432 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901301", + "ref": "FR*V75*P9013*01", + "name": "Paris | Avenue Claude Régaud 3", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.363025, + 48.832893 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901302", + "ref": "FR*V75*P9013*02", + "name": "Paris | Boulevard Vincent-Auriol 137", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.363025, + 48.832893 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901302", + "ref": "FR*V75*P9013*02", + "name": "Paris | Boulevard Vincent-Auriol 137", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.363025, + 48.832893 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901302", + "ref": "FR*V75*P9013*02", + "name": "Paris | Boulevard Vincent-Auriol 137", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34965, + 48.835499 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901303", + "ref": "FR*V75*P9013*03", + "name": "Paris | Rue Berbier du Mets 21", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34965, + 48.835499 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901303", + "ref": "FR*V75*P9013*03", + "name": "Paris | Rue Berbier du Mets 21", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34965, + 48.835499 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901303", + "ref": "FR*V75*P9013*03", + "name": "Paris | Rue Berbier du Mets 21", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.343626, + 48.82085 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901304", + "ref": "FR*V75*P9013*04", + "name": "Paris | Rue de l'Amiral Mouchez 77", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.343626, + 48.82085 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901304", + "ref": "FR*V75*P9013*04", + "name": "Paris | Rue de l'Amiral Mouchez 77", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.343626, + 48.82085 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901304", + "ref": "FR*V75*P9013*04", + "name": "Paris | Rue de l'Amiral Mouchez 77", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.411238, + 48.845265 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901206", + "ref": "FR*V75*P9012*06", + "name": "Paris | Rue Changarnier 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.411238, + 48.845265 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901206", + "ref": "FR*V75*P9012*06", + "name": "Paris | Rue Changarnier 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.389173, + 48.833603 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901205", + "ref": "FR*V75*P9012*05", + "name": "Paris | Rue Baron le Roy 53", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38804, + 48.847446 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901202", + "ref": "FR*V75*P9012*02", + "name": "Paris | Boulevard Diderot 126", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.387548, + 48.854664 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901103", + "ref": "FR*V75*P9011*03", + "name": "Paris | Rue Léon Frot 26", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.387548, + 48.854664 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901103", + "ref": "FR*V75*P9011*03", + "name": "Paris | Rue Léon Frot 26", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.377939, + 48.865358 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901104", + "ref": "FR*V75*P9011*04", + "name": "Paris | Rue Saint-Maur 94", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.377939, + 48.865358 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901104", + "ref": "FR*V75*P9011*04", + "name": "Paris | Rue Saint-Maur 94", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.377939, + 48.865358 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901104", + "ref": "FR*V75*P9011*04", + "name": "Paris | Rue Saint-Maur 94", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.405248, + 48.834084 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901201", + "ref": "FR*V75*P9012*01", + "name": "Paris | Avenue du General Dodds 3", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.405248, + 48.834084 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901201", + "ref": "FR*V75*P9012*01", + "name": "Paris | Avenue du General Dodds 3", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.405248, + 48.834084 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901201", + "ref": "FR*V75*P9012*01", + "name": "Paris | Avenue du General Dodds 3", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38804, + 48.847446 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901202", + "ref": "FR*V75*P9012*02", + "name": "Paris | Boulevard Diderot 126", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.389173, + 48.833603 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901205", + "ref": "FR*V75*P9012*05", + "name": "Paris | Rue Baron le Roy 53", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38804, + 48.847446 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901202", + "ref": "FR*V75*P9012*02", + "name": "Paris | Boulevard Diderot 126", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.401736, + 48.847485 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901203", + "ref": "FR*V75*P9012*03", + "name": "Paris | Cours de Vincennes 66", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.401736, + 48.847485 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901203", + "ref": "FR*V75*P9012*03", + "name": "Paris | Cours de Vincennes 66", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.401736, + 48.847485 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901203", + "ref": "FR*V75*P9012*03", + "name": "Paris | Cours de Vincennes 66", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.374877, + 48.846295 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901204", + "ref": "FR*V75*P9012*04", + "name": "Paris | Rue Abel 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.374877, + 48.846295 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901204", + "ref": "FR*V75*P9012*04", + "name": "Paris | Rue Abel 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.374877, + 48.846295 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901204", + "ref": "FR*V75*P9012*04", + "name": "Paris | Rue Abel 2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.389173, + 48.833603 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P901205", + "ref": "FR*V75*P9012*05", + "name": "Paris | Rue Baron le Roy 53", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326367, + 48.851025 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900604", + "ref": "FR*V75*P9006*04", + "name": "Paris | Rue de Sevres 20", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.331346, + 48.852126 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900603", + "ref": "FR*V75*P9006*03", + "name": "Paris | Rue de Rennes 66", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.246004, + 49.119215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080373", + "ref": "FR*HPC*PNF080373", + "name": "RELAIS REIMS CHAMPAGNE NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.591773, + 43.246902 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP01489", + "ref": "FR*TCB*P01489", + "name": "Roquefort La Bedoule", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2994811, + 48.8434786 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1534", + "ref": "FR*V75*PPX15*34", + "name": "Paris | Rue Mademoiselle 67", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.369344884371708, + 43.31506007724927 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP00802", + "ref": "FR*TCB*P00802", + "name": "Rue de Ruffi", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.369344884371708, + 43.31506007724927 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP00802", + "ref": "FR*TCB*P00802", + "name": "Rue de Ruffi", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3953496, + 43.2674985 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP00954", + "ref": "FR*TCB*P00954", + "name": "Michelet-Vélodrome", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3953496, + 43.2674985 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP00954", + "ref": "FR*TCB*P00954", + "name": "Michelet-Vélodrome", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3953496, + 43.2674985 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP00954", + "ref": "FR*TCB*P00954", + "name": "Michelet-Vélodrome", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.244126, + 49.119763 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080374", + "ref": "FR*HPC*PNF080374", + "name": "RELAIS REIMS CHAMPAGNE SUD", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.246004, + 49.119215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080373", + "ref": "FR*HPC*PNF080373", + "name": "RELAIS REIMS CHAMPAGNE NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.246004, + 49.119215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080373", + "ref": "FR*HPC*PNF080373", + "name": "RELAIS REIMS CHAMPAGNE NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.246004, + 49.119215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080373", + "ref": "FR*HPC*PNF080373", + "name": "RELAIS REIMS CHAMPAGNE NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.246004, + 49.119215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080373", + "ref": "FR*HPC*PNF080373", + "name": "RELAIS REIMS CHAMPAGNE NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.246004, + 49.119215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080373", + "ref": "FR*HPC*PNF080373", + "name": "RELAIS REIMS CHAMPAGNE NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.246004, + 49.119215 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080373", + "ref": "FR*HPC*PNF080373", + "name": "RELAIS REIMS CHAMPAGNE NORD", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.244126, + 49.119763 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080374", + "ref": "FR*HPC*PNF080374", + "name": "RELAIS REIMS CHAMPAGNE SUD", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.244126, + 49.119763 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080374", + "ref": "FR*HPC*PNF080374", + "name": "RELAIS REIMS CHAMPAGNE SUD", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.244126, + 49.119763 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080374", + "ref": "FR*HPC*PNF080374", + "name": "RELAIS REIMS CHAMPAGNE SUD", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.244126, + 49.119763 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080374", + "ref": "FR*HPC*PNF080374", + "name": "RELAIS REIMS CHAMPAGNE SUD", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.244126, + 49.119763 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080374", + "ref": "FR*HPC*PNF080374", + "name": "RELAIS REIMS CHAMPAGNE SUD", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.244126, + 49.119763 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080374", + "ref": "FR*HPC*PNF080374", + "name": "RELAIS REIMS CHAMPAGNE SUD", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.244126, + 49.119763 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080374", + "ref": "FR*HPC*PNF080374", + "name": "RELAIS REIMS CHAMPAGNE SUD", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.244126, + 49.119763 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080374", + "ref": "FR*HPC*PNF080374", + "name": "RELAIS REIMS CHAMPAGNE SUD", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.244126, + 49.119763 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF080374", + "ref": "FR*HPC*PNF080374", + "name": "RELAIS REIMS CHAMPAGNE SUD", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-28", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref:EU:EVSE": "FRHPCPNF088576", + "ref": "FR*HPC*PNF088576", + "name": "RELAIS AGEN PORTE D'AQUITAINE", + "capacity": "20", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3953496, + 43.2674985 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP00954", + "ref": "FR*TCB*P00954", + "name": "Michelet-Vélodrome", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-10", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.591773, + 43.246902 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP01489", + "ref": "FR*TCB*P01489", + "name": "Roquefort La Bedoule", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-16", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.331346, + 48.852126 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900603", + "ref": "FR*V75*P9006*03", + "name": "Paris | Rue de Rennes 66", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.474731, + 43.30344 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP01734", + "ref": "FR*TCB*P01734", + "name": "AMP | 168 Route des Trois Lucs à la Valentine", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.359043, + 48.864719 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900301", + "ref": "FR*V75*P9003*01", + "name": "Paris | Rue Réaumur 5", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3615763, + 48.8502305 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900402", + "ref": "FR*V75*P9004*02", + "name": "Paris | Quai Henri IV 44", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3615763, + 48.8502305 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900402", + "ref": "FR*V75*P9004*02", + "name": "Paris | Quai Henri IV 44", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3615763, + 48.8502305 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900402", + "ref": "FR*V75*P9004*02", + "name": "Paris | Quai Henri IV 44", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345032, + 48.845715 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900501", + "ref": "FR*V75*P9005*01", + "name": "Paris | Place du Panthéon 17", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345032, + 48.845715 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900501", + "ref": "FR*V75*P9005*01", + "name": "Paris | Place du Panthéon 17", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345032, + 48.845715 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900501", + "ref": "FR*V75*P9005*01", + "name": "Paris | Place du Panthéon 17", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35242, + 48.84477 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900502", + "ref": "FR*V75*P9005*02", + "name": "Paris | Rue Monge 55", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35242, + 48.84477 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900502", + "ref": "FR*V75*P9005*02", + "name": "Paris | Rue Monge 55", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35242, + 48.84477 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900502", + "ref": "FR*V75*P9005*02", + "name": "Paris | Rue Monge 55", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345342915215558, + 48.85061353189264 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900503", + "ref": "FR*V75*P9005*03", + "name": "Paris | Rue Saint-Jacques 34", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345342915215558, + 48.85061353189264 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900503", + "ref": "FR*V75*P9005*03", + "name": "Paris | Rue Saint-Jacques 34", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345342915215558, + 48.85061353189264 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900503", + "ref": "FR*V75*P9005*03", + "name": "Paris | Rue Saint-Jacques 34", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.341483, + 48.852459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900601", + "ref": "FR*V75*P9006*01", + "name": "Paris | Rue Danton 7", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.341483, + 48.852459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900601", + "ref": "FR*V75*P9006*01", + "name": "Paris | Rue Danton 7", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.341483, + 48.852459 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900601", + "ref": "FR*V75*P9006*01", + "name": "Paris | Rue Danton 7", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.339865, + 48.84824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900602", + "ref": "FR*V75*P9006*02", + "name": "Paris | Rue de Medicis 11", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.339865, + 48.84824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900602", + "ref": "FR*V75*P9006*02", + "name": "Paris | Rue de Medicis 11", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.339865, + 48.84824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900602", + "ref": "FR*V75*P9006*02", + "name": "Paris | Rue de Medicis 11", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.359043, + 48.864719 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900301", + "ref": "FR*V75*P9003*01", + "name": "Paris | Rue Réaumur 5", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.359043, + 48.864719 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900301", + "ref": "FR*V75*P9003*01", + "name": "Paris | Rue Réaumur 5", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.342244, + 48.865788 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900203", + "ref": "FR*V75*P9002*03", + "name": "Paris | Rue Étienne Marcel 52", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34046, + 48.86003 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900102", + "ref": "FR*V75*P9001*02", + "name": "Paris | Rue de L'Amiral De Coligny 1", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.474731, + 43.30344 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP01734", + "ref": "FR*TCB*P01734", + "name": "AMP | 168 Route des Trois Lucs à la Valentine", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.354652, + 43.346007 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP01789", + "ref": "FR*TCB*P01789", + "name": "AMP | 527 Chemin de la Madrague-Ville", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.354652, + 43.346007 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP01789", + "ref": "FR*TCB*P01789", + "name": "AMP | 527 Chemin de la Madrague-Ville", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.362246, + 43.235483 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP01788", + "ref": "FR*TCB*P01788", + "name": "AMP | 18 Boulevard de la Grotte Rolland", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.362246, + 43.235483 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref:EU:EVSE": "FRTCBP01788", + "ref": "FR*TCB*P01788", + "name": "AMP | 18 Boulevard de la Grotte Rolland", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34556, + 48.854057 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900101", + "ref": "FR*V75*P9001*01", + "name": "Paris | Quai du Marché Neuf 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34556, + 48.854057 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900101", + "ref": "FR*V75*P9001*01", + "name": "Paris | Quai du Marché Neuf 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34556, + 48.854057 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900101", + "ref": "FR*V75*P9001*01", + "name": "Paris | Quai du Marché Neuf 4", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34046, + 48.86003 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900102", + "ref": "FR*V75*P9001*02", + "name": "Paris | Rue de L'Amiral De Coligny 1", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.342244, + 48.865788 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900203", + "ref": "FR*V75*P9002*03", + "name": "Paris | Rue Étienne Marcel 52", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34046, + 48.86003 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900102", + "ref": "FR*V75*P9001*02", + "name": "Paris | Rue de L'Amiral De Coligny 1", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33321, + 48.870628 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900201", + "ref": "FR*V75*P9002*01", + "name": "Paris | Boulevard des Capucines 7", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33321, + 48.870628 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900201", + "ref": "FR*V75*P9002*01", + "name": "Paris | Boulevard des Capucines 7", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33321, + 48.870628 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900201", + "ref": "FR*V75*P9002*01", + "name": "Paris | Boulevard des Capucines 7", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.343436, + 48.865311 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900202", + "ref": "FR*V75*P9002*02", + "name": "Paris | Rue Étienne Marcel 44", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.343436, + 48.865311 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900202", + "ref": "FR*V75*P9002*02", + "name": "Paris | Rue Étienne Marcel 44", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.343436, + 48.865311 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900202", + "ref": "FR*V75*P9002*02", + "name": "Paris | Rue Étienne Marcel 44", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-03-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.342244, + 48.865788 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75P900203", + "ref": "FR*V75*P9002*03", + "name": "Paris | Rue Étienne Marcel 52", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2994811, + 48.8434786 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1534", + "ref": "FR*V75*PPX15*34", + "name": "Paris | Rue Mademoiselle 67", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3888, + 48.8886 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1906", + "ref": "FR*V75*PPX19*06", + "name": "Paris | Rue Adolphe Mille 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2994811, + 48.8434786 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1534", + "ref": "FR*V75*PPX15*34", + "name": "Paris | Rue Mademoiselle 67", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3730799, + 48.888195 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1902", + "ref": "FR*V75*PPX19*02", + "name": "Paris | Avenue de Flandre 61", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388647, + 48.8794816 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1901", + "ref": "FR*V75*PPX19*01", + "name": "Paris | Rue Botzaris 76", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388647, + 48.8794816 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1901", + "ref": "FR*V75*PPX19*01", + "name": "Paris | Rue Botzaris 76", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388647, + 48.8794816 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1901", + "ref": "FR*V75*PPX19*01", + "name": "Paris | Rue Botzaris 76", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388647, + 48.8794816 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1901", + "ref": "FR*V75*PPX19*01", + "name": "Paris | Rue Botzaris 76", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3730799, + 48.888195 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1902", + "ref": "FR*V75*PPX19*02", + "name": "Paris | Avenue de Flandre 61", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3730799, + 48.888195 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1902", + "ref": "FR*V75*PPX19*02", + "name": "Paris | Avenue de Flandre 61", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3730799, + 48.888195 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1902", + "ref": "FR*V75*PPX19*02", + "name": "Paris | Avenue de Flandre 61", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3730799, + 48.888195 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1902", + "ref": "FR*V75*PPX19*02", + "name": "Paris | Avenue de Flandre 61", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3475914, + 48.8850068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1816", + "ref": "FR*V75*PPX18*16", + "name": "Paris | Rue Sofia 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3730799, + 48.888195 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1902", + "ref": "FR*V75*PPX19*02", + "name": "Paris | Avenue de Flandre 61", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3730799, + 48.888195 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1902", + "ref": "FR*V75*PPX19*02", + "name": "Paris | Avenue de Flandre 61", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3740363, + 48.8989321 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1903", + "ref": "FR*V75*PPX19*03", + "name": "Paris | Rue Jacques Duchesne 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3740363, + 48.8989321 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1903", + "ref": "FR*V75*PPX19*03", + "name": "Paris | Rue Jacques Duchesne 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3740363, + 48.8989321 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1903", + "ref": "FR*V75*PPX19*03", + "name": "Paris | Rue Jacques Duchesne 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3740363, + 48.8989321 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1903", + "ref": "FR*V75*PPX19*03", + "name": "Paris | Rue Jacques Duchesne 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3740363, + 48.8989321 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1903", + "ref": "FR*V75*PPX19*03", + "name": "Paris | Rue Jacques Duchesne 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3475914, + 48.8850068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1816", + "ref": "FR*V75*PPX18*16", + "name": "Paris | Rue Sofia 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-06-30", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3475914, + 48.8850068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1816", + "ref": "FR*V75*PPX18*16", + "name": "Paris | Rue Sofia 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3978, + 48.88101 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1904", + "ref": "FR*V75*PPX19*04", + "name": "Paris | Boulevard Sérurier 60", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3331353, + 48.8920824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1815", + "ref": "FR*V75*PPX18*15", + "name": "Paris | Rue Marcadet 220", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3449781, + 48.8916426 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1813", + "ref": "FR*V75*PPX18*13", + "name": "Paris | Rue Ramey 62", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3449781, + 48.8916426 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1813", + "ref": "FR*V75*PPX18*13", + "name": "Paris | Rue Ramey 62", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3305461, + 48.8844148 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1814", + "ref": "FR*V75*PPX18*14", + "name": "Paris | Avenue Rachel 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3305461, + 48.8844148 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1814", + "ref": "FR*V75*PPX18*14", + "name": "Paris | Avenue Rachel 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3305461, + 48.8844148 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1814", + "ref": "FR*V75*PPX18*14", + "name": "Paris | Avenue Rachel 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3305461, + 48.8844148 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1814", + "ref": "FR*V75*PPX18*14", + "name": "Paris | Avenue Rachel 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3305461, + 48.8844148 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1814", + "ref": "FR*V75*PPX18*14", + "name": "Paris | Avenue Rachel 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3331353, + 48.8920824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1815", + "ref": "FR*V75*PPX18*15", + "name": "Paris | Rue Marcadet 220", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3475914, + 48.8850068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1816", + "ref": "FR*V75*PPX18*16", + "name": "Paris | Rue Sofia 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3331353, + 48.8920824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1815", + "ref": "FR*V75*PPX18*15", + "name": "Paris | Rue Marcadet 220", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3331353, + 48.8920824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1815", + "ref": "FR*V75*PPX18*15", + "name": "Paris | Rue Marcadet 220", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3331353, + 48.8920824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1815", + "ref": "FR*V75*PPX18*15", + "name": "Paris | Rue Marcadet 220", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3331353, + 48.8920824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1815", + "ref": "FR*V75*PPX18*15", + "name": "Paris | Rue Marcadet 220", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3331353, + 48.8920824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1815", + "ref": "FR*V75*PPX18*15", + "name": "Paris | Rue Marcadet 220", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3475914, + 48.8850068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1816", + "ref": "FR*V75*PPX18*16", + "name": "Paris | Rue Sofia 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3475914, + 48.8850068 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1816", + "ref": "FR*V75*PPX18*16", + "name": "Paris | Rue Sofia 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3740363, + 48.8989321 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1903", + "ref": "FR*V75*PPX19*03", + "name": "Paris | Rue Jacques Duchesne 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3978, + 48.88101 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1904", + "ref": "FR*V75*PPX19*04", + "name": "Paris | Boulevard Sérurier 60", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3449781, + 48.8916426 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1813", + "ref": "FR*V75*PPX18*13", + "name": "Paris | Rue Ramey 62", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3812, + 48.8769 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1909", + "ref": "FR*V75*PPX19*09", + "name": "Paris | Rue de Botzaris 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3839, + 48.8792 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1907", + "ref": "FR*V75*PPX19*07", + "name": "Paris | Rue Botzaris 50", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3938, + 48.8818 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1908", + "ref": "FR*V75*PPX19*08", + "name": "Paris | Rue David d'Angers 54", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3938, + 48.8818 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1908", + "ref": "FR*V75*PPX19*08", + "name": "Paris | Rue David d'Angers 54", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3938, + 48.8818 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1908", + "ref": "FR*V75*PPX19*08", + "name": "Paris | Rue David d'Angers 54", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3938, + 48.8818 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1908", + "ref": "FR*V75*PPX19*08", + "name": "Paris | Rue David d'Angers 54", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3938, + 48.8818 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1908", + "ref": "FR*V75*PPX19*08", + "name": "Paris | Rue David d'Angers 54", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3938, + 48.8818 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1908", + "ref": "FR*V75*PPX19*08", + "name": "Paris | Rue David d'Angers 54", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3812, + 48.8769 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1909", + "ref": "FR*V75*PPX19*09", + "name": "Paris | Rue de Botzaris 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3839, + 48.8792 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1907", + "ref": "FR*V75*PPX19*07", + "name": "Paris | Rue Botzaris 50", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3812, + 48.8769 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1909", + "ref": "FR*V75*PPX19*09", + "name": "Paris | Rue de Botzaris 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3812, + 48.8769 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1909", + "ref": "FR*V75*PPX19*09", + "name": "Paris | Rue de Botzaris 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3812, + 48.8769 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1909", + "ref": "FR*V75*PPX19*09", + "name": "Paris | Rue de Botzaris 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3812, + 48.8769 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1909", + "ref": "FR*V75*PPX19*09", + "name": "Paris | Rue de Botzaris 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3916, + 48.8777 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1910", + "ref": "FR*V75*PPX19*10", + "name": "Paris | Rue de Crimée 8", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3916, + 48.8777 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1910", + "ref": "FR*V75*PPX19*10", + "name": "Paris | Rue de Crimée 8", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3916, + 48.8777 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1910", + "ref": "FR*V75*PPX19*10", + "name": "Paris | Rue de Crimée 8", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3839, + 48.8792 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1907", + "ref": "FR*V75*PPX19*07", + "name": "Paris | Rue Botzaris 50", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3839, + 48.8792 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1907", + "ref": "FR*V75*PPX19*07", + "name": "Paris | Rue Botzaris 50", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3978, + 48.88101 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1904", + "ref": "FR*V75*PPX19*04", + "name": "Paris | Boulevard Sérurier 60", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3691, + 48.8917 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1905", + "ref": "FR*V75*PPX19*05", + "name": "Paris | Rue d'Aubervilliers 126", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-05", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3978, + 48.88101 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1904", + "ref": "FR*V75*PPX19*04", + "name": "Paris | Boulevard Sérurier 60", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3978, + 48.88101 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1904", + "ref": "FR*V75*PPX19*04", + "name": "Paris | Boulevard Sérurier 60", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3691, + 48.8917 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1905", + "ref": "FR*V75*PPX19*05", + "name": "Paris | Rue d'Aubervilliers 126", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-08-05", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3691, + 48.8917 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1905", + "ref": "FR*V75*PPX19*05", + "name": "Paris | Rue d'Aubervilliers 126", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-05", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3691, + 48.8917 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1905", + "ref": "FR*V75*PPX19*05", + "name": "Paris | Rue d'Aubervilliers 126", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-05", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3691, + 48.8917 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1905", + "ref": "FR*V75*PPX19*05", + "name": "Paris | Rue d'Aubervilliers 126", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-05", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3691, + 48.8917 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1905", + "ref": "FR*V75*PPX19*05", + "name": "Paris | Rue d'Aubervilliers 126", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-05", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3691, + 48.8917 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1905", + "ref": "FR*V75*PPX19*05", + "name": "Paris | Rue d'Aubervilliers 126", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-05", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3839, + 48.8792 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1907", + "ref": "FR*V75*PPX19*07", + "name": "Paris | Rue Botzaris 50", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3888, + 48.8886 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1906", + "ref": "FR*V75*PPX19*06", + "name": "Paris | Rue Adolphe Mille 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3888, + 48.8886 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1906", + "ref": "FR*V75*PPX19*06", + "name": "Paris | Rue Adolphe Mille 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3888, + 48.8886 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1906", + "ref": "FR*V75*PPX19*06", + "name": "Paris | Rue Adolphe Mille 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3888, + 48.8886 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1906", + "ref": "FR*V75*PPX19*06", + "name": "Paris | Rue Adolphe Mille 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3888, + 48.8886 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1906", + "ref": "FR*V75*PPX19*06", + "name": "Paris | Rue Adolphe Mille 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3839, + 48.8792 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1907", + "ref": "FR*V75*PPX19*07", + "name": "Paris | Rue Botzaris 50", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3839, + 48.8792 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1907", + "ref": "FR*V75*PPX19*07", + "name": "Paris | Rue Botzaris 50", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-26", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3449781, + 48.8916426 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1813", + "ref": "FR*V75*PPX18*13", + "name": "Paris | Rue Ramey 62", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3449781, + 48.8916426 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1813", + "ref": "FR*V75*PPX18*13", + "name": "Paris | Rue Ramey 62", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2849721, + 48.8854246 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1723", + "ref": "FR*V75*PPX17*23", + "name": "Paris | Avenue de la Porte de Villiers 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3330069, + 48.8872522 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1804", + "ref": "FR*V75*PPX18*04", + "name": "Paris | Rue Caulaincourt 17", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3649827, + 48.8990509 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1803", + "ref": "FR*V75*PPX18*03", + "name": "Paris | Rue Charles Hermite 52", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3649827, + 48.8990509 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1803", + "ref": "FR*V75*PPX18*03", + "name": "Paris | Rue Charles Hermite 52", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3649827, + 48.8990509 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1803", + "ref": "FR*V75*PPX18*03", + "name": "Paris | Rue Charles Hermite 52", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3649827, + 48.8990509 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1803", + "ref": "FR*V75*PPX18*03", + "name": "Paris | Rue Charles Hermite 52", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3330069, + 48.8872522 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1804", + "ref": "FR*V75*PPX18*04", + "name": "Paris | Rue Caulaincourt 17", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3330069, + 48.8872522 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1804", + "ref": "FR*V75*PPX18*04", + "name": "Paris | Rue Caulaincourt 17", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3330069, + 48.8872522 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1804", + "ref": "FR*V75*PPX18*04", + "name": "Paris | Rue Caulaincourt 17", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3480345, + 48.8883596 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1805", + "ref": "FR*V75*PPX18*05", + "name": "Paris | Rue Custine 17", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3649827, + 48.8990509 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1803", + "ref": "FR*V75*PPX18*03", + "name": "Paris | Rue Charles Hermite 52", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3480345, + 48.8883596 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1805", + "ref": "FR*V75*PPX18*05", + "name": "Paris | Rue Custine 17", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3480345, + 48.8883596 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1805", + "ref": "FR*V75*PPX18*05", + "name": "Paris | Rue Custine 17", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3480345, + 48.8883596 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1805", + "ref": "FR*V75*PPX18*05", + "name": "Paris | Rue Custine 17", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3480345, + 48.8883596 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1805", + "ref": "FR*V75*PPX18*05", + "name": "Paris | Rue Custine 17", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3480345, + 48.8883596 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1805", + "ref": "FR*V75*PPX18*05", + "name": "Paris | Rue Custine 17", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3385, + 48.8913 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1806", + "ref": "FR*V75*PPX18*06", + "name": "Paris | Rue Marcadet 150", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-08-05", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3385, + 48.8913 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1806", + "ref": "FR*V75*PPX18*06", + "name": "Paris | Rue Marcadet 150", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-05", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3649827, + 48.8990509 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1803", + "ref": "FR*V75*PPX18*03", + "name": "Paris | Rue Charles Hermite 52", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.330375, + 48.89919 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1802", + "ref": "FR*V75*PPX18*02", + "name": "Paris | Rue Henri Huchard 48", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3385, + 48.8913 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1806", + "ref": "FR*V75*PPX18*06", + "name": "Paris | Rue Marcadet 150", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-05", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3423252, + 48.898303 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1801", + "ref": "FR*V75*PPX18*01", + "name": "Paris | Rue Fernand Labori 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2922036, + 48.8824249 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1725", + "ref": "FR*V75*PPX17*25", + "name": "Paris | boulevard Pereire 170", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2922036, + 48.8824249 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1725", + "ref": "FR*V75*PPX17*25", + "name": "Paris | boulevard Pereire 170", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2922036, + 48.8824249 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1725", + "ref": "FR*V75*PPX17*25", + "name": "Paris | boulevard Pereire 170", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2922036, + 48.8824249 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1725", + "ref": "FR*V75*PPX17*25", + "name": "Paris | boulevard Pereire 170", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2922036, + 48.8824249 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1725", + "ref": "FR*V75*PPX17*25", + "name": "Paris | boulevard Pereire 170", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3423252, + 48.898303 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1801", + "ref": "FR*V75*PPX18*01", + "name": "Paris | Rue Fernand Labori 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3423252, + 48.898303 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1801", + "ref": "FR*V75*PPX18*01", + "name": "Paris | Rue Fernand Labori 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3423252, + 48.898303 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1801", + "ref": "FR*V75*PPX18*01", + "name": "Paris | Rue Fernand Labori 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.330375, + 48.89919 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1802", + "ref": "FR*V75*PPX18*02", + "name": "Paris | Rue Henri Huchard 48", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3423252, + 48.898303 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1801", + "ref": "FR*V75*PPX18*01", + "name": "Paris | Rue Fernand Labori 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3423252, + 48.898303 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1801", + "ref": "FR*V75*PPX18*01", + "name": "Paris | Rue Fernand Labori 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3423252, + 48.898303 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1801", + "ref": "FR*V75*PPX18*01", + "name": "Paris | Rue Fernand Labori 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.330375, + 48.89919 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1802", + "ref": "FR*V75*PPX18*02", + "name": "Paris | Rue Henri Huchard 48", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.330375, + 48.89919 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1802", + "ref": "FR*V75*PPX18*02", + "name": "Paris | Rue Henri Huchard 48", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.330375, + 48.89919 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1802", + "ref": "FR*V75*PPX18*02", + "name": "Paris | Rue Henri Huchard 48", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.330375, + 48.89919 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1802", + "ref": "FR*V75*PPX18*02", + "name": "Paris | Rue Henri Huchard 48", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3385, + 48.8913 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1806", + "ref": "FR*V75*PPX18*06", + "name": "Paris | Rue Marcadet 150", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-05", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3385, + 48.8913 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1806", + "ref": "FR*V75*PPX18*06", + "name": "Paris | Rue Marcadet 150", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-05", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3449781, + 48.8916426 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1813", + "ref": "FR*V75*PPX18*13", + "name": "Paris | Rue Ramey 62", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3375536, + 48.8850802 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1811", + "ref": "FR*V75*PPX18*11", + "name": "Paris | Rue Ravignan 1bis", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3395, + 48.8823 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1810", + "ref": "FR*V75*PPX18*10", + "name": "Paris | Boulevard de Clichy 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3395, + 48.8823 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1810", + "ref": "FR*V75*PPX18*10", + "name": "Paris | Boulevard de Clichy 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3395, + 48.8823 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1810", + "ref": "FR*V75*PPX18*10", + "name": "Paris | Boulevard de Clichy 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3395, + 48.8823 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1810", + "ref": "FR*V75*PPX18*10", + "name": "Paris | Boulevard de Clichy 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3395, + 48.8823 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1810", + "ref": "FR*V75*PPX18*10", + "name": "Paris | Boulevard de Clichy 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3375536, + 48.8850802 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1811", + "ref": "FR*V75*PPX18*11", + "name": "Paris | Rue Ravignan 1bis", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3375536, + 48.8850802 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1811", + "ref": "FR*V75*PPX18*11", + "name": "Paris | Rue Ravignan 1bis", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3375536, + 48.8850802 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1811", + "ref": "FR*V75*PPX18*11", + "name": "Paris | Rue Ravignan 1bis", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3355, + 48.8949 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1809", + "ref": "FR*V75*PPX18*09", + "name": "Paris | Rue Championnet 162", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3375536, + 48.8850802 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1811", + "ref": "FR*V75*PPX18*11", + "name": "Paris | Rue Ravignan 1bis", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3375536, + 48.8850802 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1811", + "ref": "FR*V75*PPX18*11", + "name": "Paris | Rue Ravignan 1bis", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3394999, + 48.8932768 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1812", + "ref": "FR*V75*PPX18*12", + "name": "Paris | Rue Ordener 120", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3394999, + 48.8932768 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1812", + "ref": "FR*V75*PPX18*12", + "name": "Paris | Rue Ordener 120", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3394999, + 48.8932768 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1812", + "ref": "FR*V75*PPX18*12", + "name": "Paris | Rue Ordener 120", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3394999, + 48.8932768 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1812", + "ref": "FR*V75*PPX18*12", + "name": "Paris | Rue Ordener 120", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3394999, + 48.8932768 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1812", + "ref": "FR*V75*PPX18*12", + "name": "Paris | Rue Ordener 120", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3355, + 48.8949 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1809", + "ref": "FR*V75*PPX18*09", + "name": "Paris | Rue Championnet 162", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3355, + 48.8949 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1809", + "ref": "FR*V75*PPX18*09", + "name": "Paris | Rue Championnet 162", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3385, + 48.8913 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1806", + "ref": "FR*V75*PPX18*06", + "name": "Paris | Rue Marcadet 150", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-05", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3591, + 48.8861 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1807", + "ref": "FR*V75*PPX18*07", + "name": "Paris | Rue Jean-François Lépine 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3385, + 48.8913 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1806", + "ref": "FR*V75*PPX18*06", + "name": "Paris | Rue Marcadet 150", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-05", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3591, + 48.8861 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1807", + "ref": "FR*V75*PPX18*07", + "name": "Paris | Rue Jean-François Lépine 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3591, + 48.8861 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1807", + "ref": "FR*V75*PPX18*07", + "name": "Paris | Rue Jean-François Lépine 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3591, + 48.8861 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1807", + "ref": "FR*V75*PPX18*07", + "name": "Paris | Rue Jean-François Lépine 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3591, + 48.8861 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1807", + "ref": "FR*V75*PPX18*07", + "name": "Paris | Rue Jean-François Lépine 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3591, + 48.8861 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1807", + "ref": "FR*V75*PPX18*07", + "name": "Paris | Rue Jean-François Lépine 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3591, + 48.8861 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1807", + "ref": "FR*V75*PPX18*07", + "name": "Paris | Rue Jean-François Lépine 1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-08-17", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35, + 48.8954 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1808", + "ref": "FR*V75*PPX18*08", + "name": "Paris | Rue Championnet 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3355, + 48.8949 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1809", + "ref": "FR*V75*PPX18*09", + "name": "Paris | Rue Championnet 162", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35, + 48.8954 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1808", + "ref": "FR*V75*PPX18*08", + "name": "Paris | Rue Championnet 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35, + 48.8954 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1808", + "ref": "FR*V75*PPX18*08", + "name": "Paris | Rue Championnet 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35, + 48.8954 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1808", + "ref": "FR*V75*PPX18*08", + "name": "Paris | Rue Championnet 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35, + 48.8954 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1808", + "ref": "FR*V75*PPX18*08", + "name": "Paris | Rue Championnet 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35, + 48.8954 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1808", + "ref": "FR*V75*PPX18*08", + "name": "Paris | Rue Championnet 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3355, + 48.8949 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1809", + "ref": "FR*V75*PPX18*09", + "name": "Paris | Rue Championnet 162", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3355, + 48.8949 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1809", + "ref": "FR*V75*PPX18*09", + "name": "Paris | Rue Championnet 162", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3916, + 48.8777 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1910", + "ref": "FR*V75*PPX19*10", + "name": "Paris | Rue de Crimée 8", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3916, + 48.8777 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1910", + "ref": "FR*V75*PPX19*10", + "name": "Paris | Rue de Crimée 8", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3866, + 48.8824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1911", + "ref": "FR*V75*PPX19*11", + "name": "Paris | Rue de Crimée 82", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3982, + 48.8519 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2012", + "ref": "FR*V75*PPX20*12", + "name": "Paris | Boulevard de Charonne 52", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4133, + 48.8492 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2011", + "ref": "FR*V75*PPX20*11", + "name": "Paris | Rue de Lagny 117", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4133, + 48.8492 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2011", + "ref": "FR*V75*PPX20*11", + "name": "Paris | Rue de Lagny 117", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4133, + 48.8492 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2011", + "ref": "FR*V75*PPX20*11", + "name": "Paris | Rue de Lagny 117", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4133, + 48.8492 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2011", + "ref": "FR*V75*PPX20*11", + "name": "Paris | Rue de Lagny 117", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4133, + 48.8492 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2011", + "ref": "FR*V75*PPX20*11", + "name": "Paris | Rue de Lagny 117", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3982, + 48.8519 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2012", + "ref": "FR*V75*PPX20*12", + "name": "Paris | Boulevard de Charonne 52", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3982, + 48.8519 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2012", + "ref": "FR*V75*PPX20*12", + "name": "Paris | Boulevard de Charonne 52", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3982, + 48.8519 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2012", + "ref": "FR*V75*PPX20*12", + "name": "Paris | Boulevard de Charonne 52", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3809, + 48.8692 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2010", + "ref": "FR*V75*PPX20*10", + "name": "Paris | Rue des Couronnes 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3982, + 48.8519 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2012", + "ref": "FR*V75*PPX20*12", + "name": "Paris | Boulevard de Charonne 52", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3982, + 48.8519 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2012", + "ref": "FR*V75*PPX20*12", + "name": "Paris | Boulevard de Charonne 52", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4062, + 48.8495 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2013", + "ref": "FR*V75*PPX20*13", + "name": "Paris | Rue Frédéric Loliée 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4062, + 48.8495 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2013", + "ref": "FR*V75*PPX20*13", + "name": "Paris | Rue Frédéric Loliée 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4062, + 48.8495 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2013", + "ref": "FR*V75*PPX20*13", + "name": "Paris | Rue Frédéric Loliée 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4062, + 48.8495 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2013", + "ref": "FR*V75*PPX20*13", + "name": "Paris | Rue Frédéric Loliée 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4062, + 48.8495 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2013", + "ref": "FR*V75*PPX20*13", + "name": "Paris | Rue Frédéric Loliée 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4133, + 48.8492 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2011", + "ref": "FR*V75*PPX20*11", + "name": "Paris | Rue de Lagny 117", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3809, + 48.8692 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2010", + "ref": "FR*V75*PPX20*10", + "name": "Paris | Rue des Couronnes 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4087, + 48.8657 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2014", + "ref": "FR*V75*PPX20*14", + "name": "Paris | Boulevard Mortier 15", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3984912, + 48.8552253 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2008", + "ref": "FR*V75*PPX20*08", + "name": "Paris | Rue Monte Cristo 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4056437, + 48.8614319 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2007", + "ref": "FR*V75*PPX20*07", + "name": "Paris | Rue de Bagnolet 142", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4056437, + 48.8614319 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2007", + "ref": "FR*V75*PPX20*07", + "name": "Paris | Rue de Bagnolet 142", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3984912, + 48.8552253 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2008", + "ref": "FR*V75*PPX20*08", + "name": "Paris | Rue Monte Cristo 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3984912, + 48.8552253 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2008", + "ref": "FR*V75*PPX20*08", + "name": "Paris | Rue Monte Cristo 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3984912, + 48.8552253 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2008", + "ref": "FR*V75*PPX20*08", + "name": "Paris | Rue Monte Cristo 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3984912, + 48.8552253 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2008", + "ref": "FR*V75*PPX20*08", + "name": "Paris | Rue Monte Cristo 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3984912, + 48.8552253 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2008", + "ref": "FR*V75*PPX20*08", + "name": "Paris | Rue Monte Cristo 24", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4092, + 48.8731 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2009", + "ref": "FR*V75*PPX20*09", + "name": "Paris | Rue Guébriant 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3809, + 48.8692 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2010", + "ref": "FR*V75*PPX20*10", + "name": "Paris | Rue des Couronnes 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4092, + 48.8731 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2009", + "ref": "FR*V75*PPX20*09", + "name": "Paris | Rue Guébriant 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4092, + 48.8731 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2009", + "ref": "FR*V75*PPX20*09", + "name": "Paris | Rue Guébriant 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4092, + 48.8731 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2009", + "ref": "FR*V75*PPX20*09", + "name": "Paris | Rue Guébriant 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4092, + 48.8731 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2009", + "ref": "FR*V75*PPX20*09", + "name": "Paris | Rue Guébriant 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4092, + 48.8731 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2009", + "ref": "FR*V75*PPX20*09", + "name": "Paris | Rue Guébriant 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3809, + 48.8692 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2010", + "ref": "FR*V75*PPX20*10", + "name": "Paris | Rue des Couronnes 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3809, + 48.8692 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2010", + "ref": "FR*V75*PPX20*10", + "name": "Paris | Rue des Couronnes 2", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4062, + 48.8495 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2013", + "ref": "FR*V75*PPX20*13", + "name": "Paris | Rue Frédéric Loliée 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4087, + 48.8657 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2014", + "ref": "FR*V75*PPX20*14", + "name": "Paris | Boulevard Mortier 15", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3866, + 48.8824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1911", + "ref": "FR*V75*PPX19*11", + "name": "Paris | Rue de Crimée 82", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402911, + 48.85844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2019", + "ref": "FR*V75*PPX20*19", + "name": "Paris | Rue des Pyrénées 137", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3929721, + 48.8656837 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2018", + "ref": "FR*V75*PPX20*18", + "name": "Paris | Rue Sorbier 40", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3929721, + 48.8656837 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2018", + "ref": "FR*V75*PPX20*18", + "name": "Paris | Rue Sorbier 40", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402911, + 48.85844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2019", + "ref": "FR*V75*PPX20*19", + "name": "Paris | Rue des Pyrénées 137", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402911, + 48.85844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2019", + "ref": "FR*V75*PPX20*19", + "name": "Paris | Rue des Pyrénées 137", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402911, + 48.85844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2019", + "ref": "FR*V75*PPX20*19", + "name": "Paris | Rue des Pyrénées 137", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402911, + 48.85844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2019", + "ref": "FR*V75*PPX20*19", + "name": "Paris | Rue des Pyrénées 137", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402911, + 48.85844 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2019", + "ref": "FR*V75*PPX20*19", + "name": "Paris | Rue des Pyrénées 137", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4021436, + 48.8676044 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2020", + "ref": "FR*V75*PPX20*20", + "name": "Paris | Rue Pelleport 86", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3929721, + 48.8656837 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2018", + "ref": "FR*V75*PPX20*18", + "name": "Paris | Rue Sorbier 40", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4021436, + 48.8676044 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2020", + "ref": "FR*V75*PPX20*20", + "name": "Paris | Rue Pelleport 86", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4021436, + 48.8676044 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2020", + "ref": "FR*V75*PPX20*20", + "name": "Paris | Rue Pelleport 86", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4021436, + 48.8676044 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2020", + "ref": "FR*V75*PPX20*20", + "name": "Paris | Rue Pelleport 86", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3911798, + 48.8736473 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2021", + "ref": "FR*V75*PPX20*21", + "name": "Paris | rue Frédérick Lemaître 5", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3911798, + 48.8736473 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2021", + "ref": "FR*V75*PPX20*21", + "name": "Paris | rue Frédérick Lemaître 5", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3911798, + 48.8736473 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2021", + "ref": "FR*V75*PPX20*21", + "name": "Paris | rue Frédérick Lemaître 5", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3198109, + 48.8447061 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1535", + "ref": "FR*V75*PPX15*35", + "name": "Paris | Avenue du Maine 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3929721, + 48.8656837 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2018", + "ref": "FR*V75*PPX20*18", + "name": "Paris | Rue Sorbier 40", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3929721, + 48.8656837 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2018", + "ref": "FR*V75*PPX20*18", + "name": "Paris | Rue Sorbier 40", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4087, + 48.8657 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2014", + "ref": "FR*V75*PPX20*14", + "name": "Paris | Boulevard Mortier 15", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3864659, + 48.8738701 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2015", + "ref": "FR*V75*PPX20*15", + "name": "Paris | Rue des Pyrénées 356", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4087, + 48.8657 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2014", + "ref": "FR*V75*PPX20*14", + "name": "Paris | Boulevard Mortier 15", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4087, + 48.8657 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2014", + "ref": "FR*V75*PPX20*14", + "name": "Paris | Boulevard Mortier 15", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-29", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3864659, + 48.8738701 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2015", + "ref": "FR*V75*PPX20*15", + "name": "Paris | Rue des Pyrénées 356", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3864659, + 48.8738701 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2015", + "ref": "FR*V75*PPX20*15", + "name": "Paris | Rue des Pyrénées 356", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3864659, + 48.8738701 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2015", + "ref": "FR*V75*PPX20*15", + "name": "Paris | Rue des Pyrénées 356", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3864659, + 48.8738701 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2015", + "ref": "FR*V75*PPX20*15", + "name": "Paris | Rue des Pyrénées 356", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3864659, + 48.8738701 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2015", + "ref": "FR*V75*PPX20*15", + "name": "Paris | Rue des Pyrénées 356", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3995098, + 48.8723314 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2016", + "ref": "FR*V75*PPX20*16", + "name": "Paris | Rue du Télégraphe 16", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.400348, + 48.86959 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2017", + "ref": "FR*V75*PPX20*17", + "name": "Paris | Rue Pelleport 105 bis", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3995098, + 48.8723314 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2016", + "ref": "FR*V75*PPX20*16", + "name": "Paris | Rue du Télégraphe 16", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3995098, + 48.8723314 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2016", + "ref": "FR*V75*PPX20*16", + "name": "Paris | Rue du Télégraphe 16", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3995098, + 48.8723314 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2016", + "ref": "FR*V75*PPX20*16", + "name": "Paris | Rue du Télégraphe 16", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3995098, + 48.8723314 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2016", + "ref": "FR*V75*PPX20*16", + "name": "Paris | Rue du Télégraphe 16", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.400348, + 48.86959 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2017", + "ref": "FR*V75*PPX20*17", + "name": "Paris | Rue Pelleport 105 bis", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.400348, + 48.86959 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2017", + "ref": "FR*V75*PPX20*17", + "name": "Paris | Rue Pelleport 105 bis", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.400348, + 48.86959 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2017", + "ref": "FR*V75*PPX20*17", + "name": "Paris | Rue Pelleport 105 bis", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4056437, + 48.8614319 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2007", + "ref": "FR*V75*PPX20*07", + "name": "Paris | Rue de Bagnolet 142", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4056437, + 48.8614319 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2007", + "ref": "FR*V75*PPX20*07", + "name": "Paris | Rue de Bagnolet 142", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4056437, + 48.8614319 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2007", + "ref": "FR*V75*PPX20*07", + "name": "Paris | Rue de Bagnolet 142", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371162, + 48.899335 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1915", + "ref": "FR*V75*PPX19*15", + "name": "Paris | Avenue de la Porte d'Aubervilliers 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3782985, + 48.8727407 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1914", + "ref": "FR*V75*PPX19*14", + "name": "Paris | Rue Jules Romains 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3782985, + 48.8727407 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1914", + "ref": "FR*V75*PPX19*14", + "name": "Paris | Rue Jules Romains 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371162, + 48.899335 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1915", + "ref": "FR*V75*PPX19*15", + "name": "Paris | Avenue de la Porte d'Aubervilliers 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371162, + 48.899335 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1915", + "ref": "FR*V75*PPX19*15", + "name": "Paris | Avenue de la Porte d'Aubervilliers 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371162, + 48.899335 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1915", + "ref": "FR*V75*PPX19*15", + "name": "Paris | Avenue de la Porte d'Aubervilliers 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371162, + 48.899335 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1915", + "ref": "FR*V75*PPX19*15", + "name": "Paris | Avenue de la Porte d'Aubervilliers 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371162, + 48.899335 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1915", + "ref": "FR*V75*PPX19*15", + "name": "Paris | Avenue de la Porte d'Aubervilliers 10", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3790176, + 48.8765968 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1916", + "ref": "FR*V75*PPX19*16", + "name": "Paris | Rue Manin 1", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3782985, + 48.8727407 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1914", + "ref": "FR*V75*PPX19*14", + "name": "Paris | Rue Jules Romains 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3790176, + 48.8765968 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1916", + "ref": "FR*V75*PPX19*16", + "name": "Paris | Rue Manin 1", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3790176, + 48.8765968 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1916", + "ref": "FR*V75*PPX19*16", + "name": "Paris | Rue Manin 1", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3790176, + 48.8765968 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1916", + "ref": "FR*V75*PPX19*16", + "name": "Paris | Rue Manin 1", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3708912, + 48.8821756 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1917", + "ref": "FR*V75*PPX19*17", + "name": "Paris | Avenue Secrétan 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-15", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3708912, + 48.8821756 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1917", + "ref": "FR*V75*PPX19*17", + "name": "Paris | Avenue Secrétan 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3708912, + 48.8821756 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1917", + "ref": "FR*V75*PPX19*17", + "name": "Paris | Avenue Secrétan 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3708912, + 48.8821756 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1917", + "ref": "FR*V75*PPX19*17", + "name": "Paris | Avenue Secrétan 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3782985, + 48.8727407 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1914", + "ref": "FR*V75*PPX19*14", + "name": "Paris | Rue Jules Romains 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3782985, + 48.8727407 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1914", + "ref": "FR*V75*PPX19*14", + "name": "Paris | Rue Jules Romains 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4056437, + 48.8614319 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2007", + "ref": "FR*V75*PPX20*07", + "name": "Paris | Rue de Bagnolet 142", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3775942, + 48.891659 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1912", + "ref": "FR*V75*PPX19*12", + "name": "Paris | Avenue de Flandre 119", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3866, + 48.8824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1911", + "ref": "FR*V75*PPX19*11", + "name": "Paris | Rue de Crimée 82", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3866, + 48.8824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1911", + "ref": "FR*V75*PPX19*11", + "name": "Paris | Rue de Crimée 82", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3866, + 48.8824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1911", + "ref": "FR*V75*PPX19*11", + "name": "Paris | Rue de Crimée 82", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3866, + 48.8824 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1911", + "ref": "FR*V75*PPX19*11", + "name": "Paris | Rue de Crimée 82", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3775942, + 48.891659 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1912", + "ref": "FR*V75*PPX19*12", + "name": "Paris | Avenue de Flandre 119", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3775942, + 48.891659 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1912", + "ref": "FR*V75*PPX19*12", + "name": "Paris | Avenue de Flandre 119", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3775942, + 48.891659 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1912", + "ref": "FR*V75*PPX19*12", + "name": "Paris | Avenue de Flandre 119", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3775942, + 48.891659 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1912", + "ref": "FR*V75*PPX19*12", + "name": "Paris | Avenue de Flandre 119", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3936, + 48.886098 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1913", + "ref": "FR*V75*PPX19*13", + "name": "Paris | Rue Manin 159", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3775942, + 48.891659 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1912", + "ref": "FR*V75*PPX19*12", + "name": "Paris | Avenue de Flandre 119", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3775942, + 48.891659 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1912", + "ref": "FR*V75*PPX19*12", + "name": "Paris | Avenue de Flandre 119", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3936, + 48.886098 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1913", + "ref": "FR*V75*PPX19*13", + "name": "Paris | Rue Manin 159", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3936, + 48.886098 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1913", + "ref": "FR*V75*PPX19*13", + "name": "Paris | Rue Manin 159", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3936, + 48.886098 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1913", + "ref": "FR*V75*PPX19*13", + "name": "Paris | Rue Manin 159", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3936, + 48.886098 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1913", + "ref": "FR*V75*PPX19*13", + "name": "Paris | Rue Manin 159", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3936, + 48.886098 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1913", + "ref": "FR*V75*PPX19*13", + "name": "Paris | Rue Manin 159", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3708912, + 48.8821756 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1917", + "ref": "FR*V75*PPX19*17", + "name": "Paris | Avenue Secrétan 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3708912, + 48.8821756 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1917", + "ref": "FR*V75*PPX19*17", + "name": "Paris | Avenue Secrétan 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4019645, + 48.8500605 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2001", + "ref": "FR*V75*PPX20*01", + "name": "Paris | Rue de la Plaine 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3941433, + 48.8569151 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2005", + "ref": "FR*V75*PPX20*05", + "name": "Paris | Boulevard de Charonne 158", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.405207, + 48.865359 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2004", + "ref": "FR*V75*PPX20*04", + "name": "Paris | bis Rue du Capitaine Ferber 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.405207, + 48.865359 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2004", + "ref": "FR*V75*PPX20*04", + "name": "Paris | bis Rue du Capitaine Ferber 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.405207, + 48.865359 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2004", + "ref": "FR*V75*PPX20*04", + "name": "Paris | bis Rue du Capitaine Ferber 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.405207, + 48.865359 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2004", + "ref": "FR*V75*PPX20*04", + "name": "Paris | bis Rue du Capitaine Ferber 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3941433, + 48.8569151 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2005", + "ref": "FR*V75*PPX20*05", + "name": "Paris | Boulevard de Charonne 158", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3941433, + 48.8569151 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2005", + "ref": "FR*V75*PPX20*05", + "name": "Paris | Boulevard de Charonne 158", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3941433, + 48.8569151 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2005", + "ref": "FR*V75*PPX20*05", + "name": "Paris | Boulevard de Charonne 158", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3941433, + 48.8569151 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2005", + "ref": "FR*V75*PPX20*05", + "name": "Paris | Boulevard de Charonne 158", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4019645, + 48.8500605 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2001", + "ref": "FR*V75*PPX20*01", + "name": "Paris | Rue de la Plaine 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3941433, + 48.8569151 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2005", + "ref": "FR*V75*PPX20*05", + "name": "Paris | Boulevard de Charonne 158", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38494, + 48.86986 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2006", + "ref": "FR*V75*PPX20*06", + "name": "Paris | Rue Julien Lacroix 39", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38494, + 48.86986 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2006", + "ref": "FR*V75*PPX20*06", + "name": "Paris | Rue Julien Lacroix 39", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38494, + 48.86986 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2006", + "ref": "FR*V75*PPX20*06", + "name": "Paris | Rue Julien Lacroix 39", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38494, + 48.86986 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2006", + "ref": "FR*V75*PPX20*06", + "name": "Paris | Rue Julien Lacroix 39", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38494, + 48.86986 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2006", + "ref": "FR*V75*PPX20*06", + "name": "Paris | Rue Julien Lacroix 39", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38494, + 48.86986 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2006", + "ref": "FR*V75*PPX20*06", + "name": "Paris | Rue Julien Lacroix 39", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.405207, + 48.865359 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2004", + "ref": "FR*V75*PPX20*04", + "name": "Paris | bis Rue du Capitaine Ferber 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.405207, + 48.865359 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2004", + "ref": "FR*V75*PPX20*04", + "name": "Paris | bis Rue du Capitaine Ferber 5", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-01-27", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3906964, + 48.867322 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2003", + "ref": "FR*V75*PPX20*03", + "name": "Paris | Rue Sorbier 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3906964, + 48.867322 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2003", + "ref": "FR*V75*PPX20*03", + "name": "Paris | Rue Sorbier 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4019645, + 48.8500605 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2001", + "ref": "FR*V75*PPX20*01", + "name": "Paris | Rue de la Plaine 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4019645, + 48.8500605 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2001", + "ref": "FR*V75*PPX20*01", + "name": "Paris | Rue de la Plaine 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4019645, + 48.8500605 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2001", + "ref": "FR*V75*PPX20*01", + "name": "Paris | Rue de la Plaine 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4019645, + 48.8500605 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2001", + "ref": "FR*V75*PPX20*01", + "name": "Paris | Rue de la Plaine 25", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-05-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.399738, + 48.87559 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2002", + "ref": "FR*V75*PPX20*02", + "name": "Paris | Rue de Belleville 265", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.399738, + 48.87559 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2002", + "ref": "FR*V75*PPX20*02", + "name": "Paris | Rue de Belleville 265", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-08", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.399738, + 48.87559 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2002", + "ref": "FR*V75*PPX20*02", + "name": "Paris | Rue de Belleville 265", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.399738, + 48.87559 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2002", + "ref": "FR*V75*PPX20*02", + "name": "Paris | Rue de Belleville 265", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.399738, + 48.87559 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2002", + "ref": "FR*V75*PPX20*02", + "name": "Paris | Rue de Belleville 265", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.399738, + 48.87559 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2002", + "ref": "FR*V75*PPX20*02", + "name": "Paris | Rue de Belleville 265", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.399738, + 48.87559 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2002", + "ref": "FR*V75*PPX20*02", + "name": "Paris | Rue de Belleville 265", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3906964, + 48.867322 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2003", + "ref": "FR*V75*PPX20*03", + "name": "Paris | Rue Sorbier 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3906964, + 48.867322 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2003", + "ref": "FR*V75*PPX20*03", + "name": "Paris | Rue Sorbier 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3906964, + 48.867322 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2003", + "ref": "FR*V75*PPX20*03", + "name": "Paris | Rue Sorbier 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3906964, + 48.867322 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2003", + "ref": "FR*V75*PPX20*03", + "name": "Paris | Rue Sorbier 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-25", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2922036, + 48.8824249 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1725", + "ref": "FR*V75*PPX17*25", + "name": "Paris | boulevard Pereire 170", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.400348, + 48.86959 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX2017", + "ref": "FR*V75*PPX20*17", + "name": "Paris | Rue Pelleport 105 bis", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2849721, + 48.8854246 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1723", + "ref": "FR*V75*PPX17*23", + "name": "Paris | Avenue de la Porte de Villiers 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2595, + 48.8433 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1617", + "ref": "FR*V75*PPX16*17", + "name": "Paris | Boulevard Exelmans 77", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274, + 48.8603 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1615", + "ref": "FR*V75*PPX16*15", + "name": "Paris | Boulevard Émile Augier 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2858, + 48.863 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1616", + "ref": "FR*V75*PPX16*16", + "name": "Paris | Avenue Georges Mandel 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2858, + 48.863 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1616", + "ref": "FR*V75*PPX16*16", + "name": "Paris | Avenue Georges Mandel 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2858, + 48.863 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1616", + "ref": "FR*V75*PPX16*16", + "name": "Paris | Avenue Georges Mandel 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2858, + 48.863 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1616", + "ref": "FR*V75*PPX16*16", + "name": "Paris | Avenue Georges Mandel 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2858, + 48.863 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1616", + "ref": "FR*V75*PPX16*16", + "name": "Paris | Avenue Georges Mandel 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2858, + 48.863 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1616", + "ref": "FR*V75*PPX16*16", + "name": "Paris | Avenue Georges Mandel 1", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2595, + 48.8433 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1617", + "ref": "FR*V75*PPX16*17", + "name": "Paris | Boulevard Exelmans 77", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274, + 48.8603 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1615", + "ref": "FR*V75*PPX16*15", + "name": "Paris | Boulevard Émile Augier 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2595, + 48.8433 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1617", + "ref": "FR*V75*PPX16*17", + "name": "Paris | Boulevard Exelmans 77", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2595, + 48.8433 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1617", + "ref": "FR*V75*PPX16*17", + "name": "Paris | Boulevard Exelmans 77", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2628, + 48.8379 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1618", + "ref": "FR*V75*PPX16*18", + "name": "Paris | Boulevard Murat 157", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2628, + 48.8379 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1618", + "ref": "FR*V75*PPX16*18", + "name": "Paris | Boulevard Murat 157", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2628, + 48.8379 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1618", + "ref": "FR*V75*PPX16*18", + "name": "Paris | Boulevard Murat 157", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2628, + 48.8379 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1618", + "ref": "FR*V75*PPX16*18", + "name": "Paris | Boulevard Murat 157", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2628, + 48.8379 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1618", + "ref": "FR*V75*PPX16*18", + "name": "Paris | Boulevard Murat 157", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274, + 48.8603 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1615", + "ref": "FR*V75*PPX16*15", + "name": "Paris | Boulevard Émile Augier 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274, + 48.8603 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1615", + "ref": "FR*V75*PPX16*15", + "name": "Paris | Boulevard Émile Augier 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2996, + 48.8655 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1619", + "ref": "FR*V75*PPX16*19", + "name": "Paris | Avenue Marceau 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2843, + 48.8735 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1613", + "ref": "FR*V75*PPX16*13", + "name": "Paris | Avenue de Malakoff 115", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2685, + 48.8534 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1612", + "ref": "FR*V75*PPX16*12", + "name": "Paris | Avenue Mozart 68", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2685, + 48.8534 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1612", + "ref": "FR*V75*PPX16*12", + "name": "Paris | Avenue Mozart 68", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2685, + 48.8534 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1612", + "ref": "FR*V75*PPX16*12", + "name": "Paris | Avenue Mozart 68", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2843, + 48.8735 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1613", + "ref": "FR*V75*PPX16*13", + "name": "Paris | Avenue de Malakoff 115", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2843, + 48.8735 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1613", + "ref": "FR*V75*PPX16*13", + "name": "Paris | Avenue de Malakoff 115", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2843, + 48.8735 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1613", + "ref": "FR*V75*PPX16*13", + "name": "Paris | Avenue de Malakoff 115", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2843, + 48.8735 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1613", + "ref": "FR*V75*PPX16*13", + "name": "Paris | Avenue de Malakoff 115", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2843, + 48.8735 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1613", + "ref": "FR*V75*PPX16*13", + "name": "Paris | Avenue de Malakoff 115", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274, + 48.8603 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1615", + "ref": "FR*V75*PPX16*15", + "name": "Paris | Boulevard Émile Augier 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2806, + 48.864 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1614", + "ref": "FR*V75*PPX16*14", + "name": "Paris | Avenue Georges Mandel 42 bis", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2806, + 48.864 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1614", + "ref": "FR*V75*PPX16*14", + "name": "Paris | Avenue Georges Mandel 42 bis", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2806, + 48.864 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1614", + "ref": "FR*V75*PPX16*14", + "name": "Paris | Avenue Georges Mandel 42 bis", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2806, + 48.864 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1614", + "ref": "FR*V75*PPX16*14", + "name": "Paris | Avenue Georges Mandel 42 bis", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2806, + 48.864 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1614", + "ref": "FR*V75*PPX16*14", + "name": "Paris | Avenue Georges Mandel 42 bis", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2806, + 48.864 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1614", + "ref": "FR*V75*PPX16*14", + "name": "Paris | Avenue Georges Mandel 42 bis", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274, + 48.8603 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1615", + "ref": "FR*V75*PPX16*15", + "name": "Paris | Boulevard Émile Augier 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2628, + 48.8379 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1618", + "ref": "FR*V75*PPX16*18", + "name": "Paris | Boulevard Murat 157", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2996, + 48.8655 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1619", + "ref": "FR*V75*PPX16*19", + "name": "Paris | Avenue Marceau 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2685, + 48.8534 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1612", + "ref": "FR*V75*PPX16*12", + "name": "Paris | Avenue Mozart 68", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2858795, + 48.8669712 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1624", + "ref": "FR*V75*PPX16*24", + "name": "Paris | Avenue Raymond Poincaré 51", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2915577, + 48.8724415 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1623", + "ref": "FR*V75*PPX16*23", + "name": "Paris | Avenue Victor Hugo 18", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2915577, + 48.8724415 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1623", + "ref": "FR*V75*PPX16*23", + "name": "Paris | Avenue Victor Hugo 18", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2915577, + 48.8724415 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1623", + "ref": "FR*V75*PPX16*23", + "name": "Paris | Avenue Victor Hugo 18", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2915577, + 48.8724415 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1623", + "ref": "FR*V75*PPX16*23", + "name": "Paris | Avenue Victor Hugo 18", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2915577, + 48.8724415 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1623", + "ref": "FR*V75*PPX16*23", + "name": "Paris | Avenue Victor Hugo 18", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2915577, + 48.8724415 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1623", + "ref": "FR*V75*PPX16*23", + "name": "Paris | Avenue Victor Hugo 18", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2858795, + 48.8669712 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1624", + "ref": "FR*V75*PPX16*24", + "name": "Paris | Avenue Raymond Poincaré 51", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2858795, + 48.8669712 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1624", + "ref": "FR*V75*PPX16*24", + "name": "Paris | Avenue Raymond Poincaré 51", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286851, + 48.870343 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1622", + "ref": "FR*V75*PPX16*22", + "name": "Paris | Avenue Victor Hugo 60", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2858795, + 48.8669712 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1624", + "ref": "FR*V75*PPX16*24", + "name": "Paris | Avenue Raymond Poincaré 51", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2858795, + 48.8669712 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1624", + "ref": "FR*V75*PPX16*24", + "name": "Paris | Avenue Raymond Poincaré 51", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2858795, + 48.8669712 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1624", + "ref": "FR*V75*PPX16*24", + "name": "Paris | Avenue Raymond Poincaré 51", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28423, + 48.8612923 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1625", + "ref": "FR*V75*PPX16*25", + "name": "Paris | Rue Pétrarque 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28423, + 48.8612923 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1625", + "ref": "FR*V75*PPX16*25", + "name": "Paris | Rue Pétrarque 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28423, + 48.8612923 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1625", + "ref": "FR*V75*PPX16*25", + "name": "Paris | Rue Pétrarque 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28423, + 48.8612923 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1625", + "ref": "FR*V75*PPX16*25", + "name": "Paris | Rue Pétrarque 2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286851, + 48.870343 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1622", + "ref": "FR*V75*PPX16*22", + "name": "Paris | Avenue Victor Hugo 60", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286851, + 48.870343 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1622", + "ref": "FR*V75*PPX16*22", + "name": "Paris | Avenue Victor Hugo 60", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2996, + 48.8655 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1619", + "ref": "FR*V75*PPX16*19", + "name": "Paris | Avenue Marceau 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2754, + 48.8646 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1620", + "ref": "FR*V75*PPX16*20", + "name": "Paris | Avenue Henri Martin 70", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2996, + 48.8655 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1619", + "ref": "FR*V75*PPX16*19", + "name": "Paris | Avenue Marceau 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2996, + 48.8655 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1619", + "ref": "FR*V75*PPX16*19", + "name": "Paris | Avenue Marceau 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2754, + 48.8646 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1620", + "ref": "FR*V75*PPX16*20", + "name": "Paris | Avenue Henri Martin 70", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2754, + 48.8646 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1620", + "ref": "FR*V75*PPX16*20", + "name": "Paris | Avenue Henri Martin 70", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2754, + 48.8646 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1620", + "ref": "FR*V75*PPX16*20", + "name": "Paris | Avenue Henri Martin 70", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2754, + 48.8646 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1620", + "ref": "FR*V75*PPX16*20", + "name": "Paris | Avenue Henri Martin 70", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2754, + 48.8646 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1620", + "ref": "FR*V75*PPX16*20", + "name": "Paris | Avenue Henri Martin 70", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2636, + 48.8478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1621", + "ref": "FR*V75*PPX16*21", + "name": "Paris | Rue d'Auteuil 55", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286851, + 48.870343 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1622", + "ref": "FR*V75*PPX16*22", + "name": "Paris | Avenue Victor Hugo 60", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2636, + 48.8478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1621", + "ref": "FR*V75*PPX16*21", + "name": "Paris | Rue d'Auteuil 55", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2636, + 48.8478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1621", + "ref": "FR*V75*PPX16*21", + "name": "Paris | Rue d'Auteuil 55", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2636, + 48.8478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1621", + "ref": "FR*V75*PPX16*21", + "name": "Paris | Rue d'Auteuil 55", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2636, + 48.8478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1621", + "ref": "FR*V75*PPX16*21", + "name": "Paris | Rue d'Auteuil 55", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2636, + 48.8478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1621", + "ref": "FR*V75*PPX16*21", + "name": "Paris | Rue d'Auteuil 55", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286851, + 48.870343 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1622", + "ref": "FR*V75*PPX16*22", + "name": "Paris | Avenue Victor Hugo 60", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.286851, + 48.870343 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1622", + "ref": "FR*V75*PPX16*22", + "name": "Paris | Avenue Victor Hugo 60", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2685, + 48.8534 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1612", + "ref": "FR*V75*PPX16*12", + "name": "Paris | Avenue Mozart 68", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2685, + 48.8534 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1612", + "ref": "FR*V75*PPX16*12", + "name": "Paris | Avenue Mozart 68", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2768772, + 48.8538134 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1626", + "ref": "FR*V75*PPX16*26", + "name": "Paris | Rue du Ranelagh 33", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2856025, + 48.8566608 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1603", + "ref": "FR*V75*PPX16*03", + "name": "Paris | Rue des Eaux 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2640334, + 48.8452821 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1601", + "ref": "FR*V75*PPX16*01", + "name": "Paris | Rue Molitor 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267881, + 48.85926 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1602", + "ref": "FR*V75*PPX16*02", + "name": "Paris | Avenue Raphaël 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267881, + 48.85926 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1602", + "ref": "FR*V75*PPX16*02", + "name": "Paris | Avenue Raphaël 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267881, + 48.85926 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1602", + "ref": "FR*V75*PPX16*02", + "name": "Paris | Avenue Raphaël 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267881, + 48.85926 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1602", + "ref": "FR*V75*PPX16*02", + "name": "Paris | Avenue Raphaël 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267881, + 48.85926 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1602", + "ref": "FR*V75*PPX16*02", + "name": "Paris | Avenue Raphaël 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267881, + 48.85926 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1602", + "ref": "FR*V75*PPX16*02", + "name": "Paris | Avenue Raphaël 20", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2856025, + 48.8566608 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1603", + "ref": "FR*V75*PPX16*03", + "name": "Paris | Rue des Eaux 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2640334, + 48.8452821 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1601", + "ref": "FR*V75*PPX16*01", + "name": "Paris | Rue Molitor 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2856025, + 48.8566608 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1603", + "ref": "FR*V75*PPX16*03", + "name": "Paris | Rue des Eaux 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2856025, + 48.8566608 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1603", + "ref": "FR*V75*PPX16*03", + "name": "Paris | Rue des Eaux 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2856025, + 48.8566608 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1603", + "ref": "FR*V75*PPX16*03", + "name": "Paris | Rue des Eaux 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2856025, + 48.8566608 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1603", + "ref": "FR*V75*PPX16*03", + "name": "Paris | Rue des Eaux 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2719012, + 48.8509978 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1604", + "ref": "FR*V75*PPX16*04", + "name": "Paris | Rue Jean de la Fontaine 42", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2719012, + 48.8509978 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1604", + "ref": "FR*V75*PPX16*04", + "name": "Paris | Rue Jean de la Fontaine 42", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2719012, + 48.8509978 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1604", + "ref": "FR*V75*PPX16*04", + "name": "Paris | Rue Jean de la Fontaine 42", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2640334, + 48.8452821 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1601", + "ref": "FR*V75*PPX16*01", + "name": "Paris | Rue Molitor 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2640334, + 48.8452821 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1601", + "ref": "FR*V75*PPX16*01", + "name": "Paris | Rue Molitor 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2698931, + 48.8437929 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1605", + "ref": "FR*V75*PPX16*05", + "name": "Paris | Avenue de Versailles 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3132661, + 48.8426446 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1536", + "ref": "FR*V75*PPX15*36", + "name": "Paris | Boulevard Pasteur 41", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3198109, + 48.8447061 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1535", + "ref": "FR*V75*PPX15*35", + "name": "Paris | Avenue du Maine 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2849721, + 48.8854246 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1723", + "ref": "FR*V75*PPX17*23", + "name": "Paris | Avenue de la Porte de Villiers 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3198109, + 48.8447061 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1535", + "ref": "FR*V75*PPX15*35", + "name": "Paris | Avenue du Maine 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3198109, + 48.8447061 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1535", + "ref": "FR*V75*PPX15*35", + "name": "Paris | Avenue du Maine 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3198109, + 48.8447061 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1535", + "ref": "FR*V75*PPX15*35", + "name": "Paris | Avenue du Maine 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3198109, + 48.8447061 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1535", + "ref": "FR*V75*PPX15*35", + "name": "Paris | Avenue du Maine 4", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3132661, + 48.8426446 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1536", + "ref": "FR*V75*PPX15*36", + "name": "Paris | Boulevard Pasteur 41", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3132661, + 48.8426446 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1536", + "ref": "FR*V75*PPX15*36", + "name": "Paris | Boulevard Pasteur 41", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2640334, + 48.8452821 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1601", + "ref": "FR*V75*PPX16*01", + "name": "Paris | Rue Molitor 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3132661, + 48.8426446 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1536", + "ref": "FR*V75*PPX15*36", + "name": "Paris | Boulevard Pasteur 41", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3132661, + 48.8426446 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1536", + "ref": "FR*V75*PPX15*36", + "name": "Paris | Boulevard Pasteur 41", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292136, + 48.8454505 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1537", + "ref": "FR*V75*PPX15*37", + "name": "Paris | Place du Commerce 5", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292136, + 48.8454505 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1537", + "ref": "FR*V75*PPX15*37", + "name": "Paris | Place du Commerce 5", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292136, + 48.8454505 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1537", + "ref": "FR*V75*PPX15*37", + "name": "Paris | Place du Commerce 5", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292136, + 48.8454505 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1537", + "ref": "FR*V75*PPX15*37", + "name": "Paris | Place du Commerce 5", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2640334, + 48.8452821 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1601", + "ref": "FR*V75*PPX16*01", + "name": "Paris | Rue Molitor 16", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-04-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2719012, + 48.8509978 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1604", + "ref": "FR*V75*PPX16*04", + "name": "Paris | Rue Jean de la Fontaine 42", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2698931, + 48.8437929 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1605", + "ref": "FR*V75*PPX16*05", + "name": "Paris | Avenue de Versailles 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2927, + 48.8685 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1611", + "ref": "FR*V75*PPX16*11", + "name": "Paris | Place des États-Unis 16", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2745266, + 48.8478619 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1610", + "ref": "FR*V75*PPX16*10", + "name": "Paris | Avenue de Versailles 53", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2739245, + 48.8507539 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1608", + "ref": "FR*V75*PPX16*08", + "name": "Paris | Avenue Théophile Gauthier 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2786938, + 48.859756 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1609", + "ref": "FR*V75*PPX16*09", + "name": "Paris | Avenue Paul Doumer 72", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2786938, + 48.859756 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1609", + "ref": "FR*V75*PPX16*09", + "name": "Paris | Avenue Paul Doumer 72", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2786938, + 48.859756 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1609", + "ref": "FR*V75*PPX16*09", + "name": "Paris | Avenue Paul Doumer 72", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2786938, + 48.859756 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1609", + "ref": "FR*V75*PPX16*09", + "name": "Paris | Avenue Paul Doumer 72", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2786938, + 48.859756 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1609", + "ref": "FR*V75*PPX16*09", + "name": "Paris | Avenue Paul Doumer 72", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2786938, + 48.859756 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1609", + "ref": "FR*V75*PPX16*09", + "name": "Paris | Avenue Paul Doumer 72", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2745266, + 48.8478619 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1610", + "ref": "FR*V75*PPX16*10", + "name": "Paris | Avenue de Versailles 53", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2739245, + 48.8507539 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1608", + "ref": "FR*V75*PPX16*08", + "name": "Paris | Avenue Théophile Gauthier 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2745266, + 48.8478619 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1610", + "ref": "FR*V75*PPX16*10", + "name": "Paris | Avenue de Versailles 53", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2745266, + 48.8478619 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1610", + "ref": "FR*V75*PPX16*10", + "name": "Paris | Avenue de Versailles 53", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2745266, + 48.8478619 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1610", + "ref": "FR*V75*PPX16*10", + "name": "Paris | Avenue de Versailles 53", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2927, + 48.8685 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1611", + "ref": "FR*V75*PPX16*11", + "name": "Paris | Place des États-Unis 16", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2927, + 48.8685 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1611", + "ref": "FR*V75*PPX16*11", + "name": "Paris | Place des États-Unis 16", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2927, + 48.8685 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1611", + "ref": "FR*V75*PPX16*11", + "name": "Paris | Place des États-Unis 16", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2927, + 48.8685 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1611", + "ref": "FR*V75*PPX16*11", + "name": "Paris | Place des États-Unis 16", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2739245, + 48.8507539 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1608", + "ref": "FR*V75*PPX16*08", + "name": "Paris | Avenue Théophile Gauthier 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2739245, + 48.8507539 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1608", + "ref": "FR*V75*PPX16*08", + "name": "Paris | Avenue Théophile Gauthier 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2698931, + 48.8437929 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1605", + "ref": "FR*V75*PPX16*05", + "name": "Paris | Avenue de Versailles 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295196, + 48.8713288 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1606", + "ref": "FR*V75*PPX16*06", + "name": "Paris | Avenue d'Iéna 63", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2698931, + 48.8437929 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1605", + "ref": "FR*V75*PPX16*05", + "name": "Paris | Avenue de Versailles 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2698931, + 48.8437929 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1605", + "ref": "FR*V75*PPX16*05", + "name": "Paris | Avenue de Versailles 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2698931, + 48.8437929 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1605", + "ref": "FR*V75*PPX16*05", + "name": "Paris | Avenue de Versailles 112", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295196, + 48.8713288 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1606", + "ref": "FR*V75*PPX16*06", + "name": "Paris | Avenue d'Iéna 63", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295196, + 48.8713288 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1606", + "ref": "FR*V75*PPX16*06", + "name": "Paris | Avenue d'Iéna 63", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295196, + 48.8713288 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1606", + "ref": "FR*V75*PPX16*06", + "name": "Paris | Avenue d'Iéna 63", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295196, + 48.8713288 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1606", + "ref": "FR*V75*PPX16*06", + "name": "Paris | Avenue d'Iéna 63", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.295196, + 48.8713288 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1606", + "ref": "FR*V75*PPX16*06", + "name": "Paris | Avenue d'Iéna 63", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2739245, + 48.8507539 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1608", + "ref": "FR*V75*PPX16*08", + "name": "Paris | Avenue Théophile Gauthier 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2616981, + 48.8531 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1607", + "ref": "FR*V75*PPX16*07", + "name": "Paris | square Tolstoï 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2616981, + 48.8531 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1607", + "ref": "FR*V75*PPX16*07", + "name": "Paris | square Tolstoï 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2616981, + 48.8531 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1607", + "ref": "FR*V75*PPX16*07", + "name": "Paris | square Tolstoï 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2616981, + 48.8531 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1607", + "ref": "FR*V75*PPX16*07", + "name": "Paris | square Tolstoï 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2616981, + 48.8531 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1607", + "ref": "FR*V75*PPX16*07", + "name": "Paris | square Tolstoï 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2616981, + 48.8531 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1607", + "ref": "FR*V75*PPX16*07", + "name": "Paris | square Tolstoï 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2739245, + 48.8507539 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1608", + "ref": "FR*V75*PPX16*08", + "name": "Paris | Avenue Théophile Gauthier 14", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-22", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2768772, + 48.8538134 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1626", + "ref": "FR*V75*PPX16*26", + "name": "Paris | Rue du Ranelagh 33", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292136, + 48.8454505 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1537", + "ref": "FR*V75*PPX15*37", + "name": "Paris | Place du Commerce 5", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2768772, + 48.8538134 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1626", + "ref": "FR*V75*PPX16*26", + "name": "Paris | Rue du Ranelagh 33", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3099, + 48.8809 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1714", + "ref": "FR*V75*PPX17*14", + "name": "Paris | Rue Georges Berger 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3148, + 48.8935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1713", + "ref": "FR*V75*PPX17*13", + "name": "Paris | Avenue de Clichy 181 quater", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3148, + 48.8935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1713", + "ref": "FR*V75*PPX17*13", + "name": "Paris | Avenue de Clichy 181 quater", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3099, + 48.8809 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1714", + "ref": "FR*V75*PPX17*14", + "name": "Paris | Rue Georges Berger 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3099, + 48.8809 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1714", + "ref": "FR*V75*PPX17*14", + "name": "Paris | Rue Georges Berger 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3099, + 48.8809 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1714", + "ref": "FR*V75*PPX17*14", + "name": "Paris | Rue Georges Berger 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3099, + 48.8809 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1714", + "ref": "FR*V75*PPX17*14", + "name": "Paris | Rue Georges Berger 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3099, + 48.8809 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1714", + "ref": "FR*V75*PPX17*14", + "name": "Paris | Rue Georges Berger 2", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2899947, + 48.8794622 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1715", + "ref": "FR*V75*PPX17*15", + "name": "Paris | Avenue des Ternes 73", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3148, + 48.8935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1713", + "ref": "FR*V75*PPX17*13", + "name": "Paris | Avenue de Clichy 181 quater", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2899947, + 48.8794622 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1715", + "ref": "FR*V75*PPX17*15", + "name": "Paris | Avenue des Ternes 73", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2899947, + 48.8794622 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1715", + "ref": "FR*V75*PPX17*15", + "name": "Paris | Avenue des Ternes 73", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2899947, + 48.8794622 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1715", + "ref": "FR*V75*PPX17*15", + "name": "Paris | Avenue des Ternes 73", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2899947, + 48.8794622 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1715", + "ref": "FR*V75*PPX17*15", + "name": "Paris | Avenue des Ternes 73", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3242009, + 48.8957574 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1716", + "ref": "FR*V75*PPX17*16", + "name": "Paris | Rue Navier 47", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3242009, + 48.8957574 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1716", + "ref": "FR*V75*PPX17*16", + "name": "Paris | Rue Navier 47", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3242009, + 48.8957574 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1716", + "ref": "FR*V75*PPX17*16", + "name": "Paris | Rue Navier 47", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3148, + 48.8935 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1713", + "ref": "FR*V75*PPX17*13", + "name": "Paris | Avenue de Clichy 181 quater", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2884, + 48.876 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1712", + "ref": "FR*V75*PPX17*12", + "name": "Paris | Avenue de la Grande Armée 40", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3242009, + 48.8957574 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1716", + "ref": "FR*V75*PPX17*16", + "name": "Paris | Rue Navier 47", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3151, + 48.8863 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1710", + "ref": "FR*V75*PPX17*10", + "name": "Paris | Rue Dulong 67", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3213, + 48.8847 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1709", + "ref": "FR*V75*PPX17*09", + "name": "Paris | Rue des Batignolles 27", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3213, + 48.8847 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1709", + "ref": "FR*V75*PPX17*09", + "name": "Paris | Rue des Batignolles 27", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3213, + 48.8847 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1709", + "ref": "FR*V75*PPX17*09", + "name": "Paris | Rue des Batignolles 27", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3151, + 48.8863 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1710", + "ref": "FR*V75*PPX17*10", + "name": "Paris | Rue Dulong 67", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3151, + 48.8863 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1710", + "ref": "FR*V75*PPX17*10", + "name": "Paris | Rue Dulong 67", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3151, + 48.8863 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1710", + "ref": "FR*V75*PPX17*10", + "name": "Paris | Rue Dulong 67", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3151, + 48.8863 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1710", + "ref": "FR*V75*PPX17*10", + "name": "Paris | Rue Dulong 67", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2955, + 48.8867 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1711", + "ref": "FR*V75*PPX17*11", + "name": "Paris | Rue de Courcelles 210", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2884, + 48.876 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1712", + "ref": "FR*V75*PPX17*12", + "name": "Paris | Avenue de la Grande Armée 40", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2955, + 48.8867 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1711", + "ref": "FR*V75*PPX17*11", + "name": "Paris | Rue de Courcelles 210", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2955, + 48.8867 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1711", + "ref": "FR*V75*PPX17*11", + "name": "Paris | Rue de Courcelles 210", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2955, + 48.8867 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1711", + "ref": "FR*V75*PPX17*11", + "name": "Paris | Rue de Courcelles 210", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2955, + 48.8867 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1711", + "ref": "FR*V75*PPX17*11", + "name": "Paris | Rue de Courcelles 210", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2955, + 48.8867 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1711", + "ref": "FR*V75*PPX17*11", + "name": "Paris | Rue de Courcelles 210", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2884, + 48.876 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1712", + "ref": "FR*V75*PPX17*12", + "name": "Paris | Avenue de la Grande Armée 40", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2884, + 48.876 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1712", + "ref": "FR*V75*PPX17*12", + "name": "Paris | Avenue de la Grande Armée 40", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-21", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3242009, + 48.8957574 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1716", + "ref": "FR*V75*PPX17*16", + "name": "Paris | Rue Navier 47", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3242009, + 48.8957574 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1716", + "ref": "FR*V75*PPX17*16", + "name": "Paris | Rue Navier 47", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3222, + 48.8888 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1708", + "ref": "FR*V75*PPX17*08", + "name": "Paris | Rue Legendre 126", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-02-04", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2878557, + 48.8788442 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1721", + "ref": "FR*V75*PPX17*21", + "name": "Paris | Rue Brunel 42", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2928, + 48.87683 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1720", + "ref": "FR*V75*PPX17*20", + "name": "Paris | Avenue Carnot 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2928, + 48.87683 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1720", + "ref": "FR*V75*PPX17*20", + "name": "Paris | Avenue Carnot 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2878557, + 48.8788442 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1721", + "ref": "FR*V75*PPX17*21", + "name": "Paris | Rue Brunel 42", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2878557, + 48.8788442 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1721", + "ref": "FR*V75*PPX17*21", + "name": "Paris | Rue Brunel 42", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2878557, + 48.8788442 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1721", + "ref": "FR*V75*PPX17*21", + "name": "Paris | Rue Brunel 42", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2878557, + 48.8788442 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1721", + "ref": "FR*V75*PPX17*21", + "name": "Paris | Rue Brunel 42", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2878557, + 48.8788442 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1721", + "ref": "FR*V75*PPX17*21", + "name": "Paris | Rue Brunel 42", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2956282, + 48.881032 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1722", + "ref": "FR*V75*PPX17*22", + "name": "Paris | Avenue de Niel 28", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2928, + 48.87683 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1720", + "ref": "FR*V75*PPX17*20", + "name": "Paris | Avenue Carnot 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2956282, + 48.881032 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1722", + "ref": "FR*V75*PPX17*22", + "name": "Paris | Avenue de Niel 28", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2956282, + 48.881032 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1722", + "ref": "FR*V75*PPX17*22", + "name": "Paris | Avenue de Niel 28", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2956282, + 48.881032 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1722", + "ref": "FR*V75*PPX17*22", + "name": "Paris | Avenue de Niel 28", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2849721, + 48.8854246 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1723", + "ref": "FR*V75*PPX17*23", + "name": "Paris | Avenue de la Porte de Villiers 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2849721, + 48.8854246 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1723", + "ref": "FR*V75*PPX17*23", + "name": "Paris | Avenue de la Porte de Villiers 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2768772, + 48.8538134 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1626", + "ref": "FR*V75*PPX16*26", + "name": "Paris | Rue du Ranelagh 33", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2849721, + 48.8854246 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1723", + "ref": "FR*V75*PPX17*23", + "name": "Paris | Avenue de la Porte de Villiers 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2928, + 48.87683 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1720", + "ref": "FR*V75*PPX17*20", + "name": "Paris | Avenue Carnot 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2928, + 48.87683 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1720", + "ref": "FR*V75*PPX17*20", + "name": "Paris | Avenue Carnot 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3242009, + 48.8957574 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1716", + "ref": "FR*V75*PPX17*16", + "name": "Paris | Rue Navier 47", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29950738, + 48.88003 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1718", + "ref": "FR*V75*PPX17*18", + "name": "Paris | Avenue de Wagram 77", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3050366, + 48.8876949 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1717", + "ref": "FR*V75*PPX17*17", + "name": "Paris | Boulevard Pereire 50", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3050366, + 48.8876949 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1717", + "ref": "FR*V75*PPX17*17", + "name": "Paris | Boulevard Pereire 50", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3050366, + 48.8876949 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1717", + "ref": "FR*V75*PPX17*17", + "name": "Paris | Boulevard Pereire 50", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3050366, + 48.8876949 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1717", + "ref": "FR*V75*PPX17*17", + "name": "Paris | Boulevard Pereire 50", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29950738, + 48.88003 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1718", + "ref": "FR*V75*PPX17*18", + "name": "Paris | Avenue de Wagram 77", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29950738, + 48.88003 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1718", + "ref": "FR*V75*PPX17*18", + "name": "Paris | Avenue de Wagram 77", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29950738, + 48.88003 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1718", + "ref": "FR*V75*PPX17*18", + "name": "Paris | Avenue de Wagram 77", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29950738, + 48.88003 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1718", + "ref": "FR*V75*PPX17*18", + "name": "Paris | Avenue de Wagram 77", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2928, + 48.87683 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1720", + "ref": "FR*V75*PPX17*20", + "name": "Paris | Avenue Carnot 28", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3035012, + 48.8849507 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1719", + "ref": "FR*V75*PPX17*19", + "name": "Paris | Rue Brémontier 19", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3035012, + 48.8849507 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1719", + "ref": "FR*V75*PPX17*19", + "name": "Paris | Rue Brémontier 19", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3035012, + 48.8849507 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1719", + "ref": "FR*V75*PPX17*19", + "name": "Paris | Rue Brémontier 19", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3035012, + 48.8849507 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1719", + "ref": "FR*V75*PPX17*19", + "name": "Paris | Rue Brémontier 19", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3035012, + 48.8849507 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1719", + "ref": "FR*V75*PPX17*19", + "name": "Paris | Rue Brémontier 19", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3035012, + 48.8849507 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1719", + "ref": "FR*V75*PPX17*19", + "name": "Paris | Rue Brémontier 19", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3035012, + 48.8849507 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1719", + "ref": "FR*V75*PPX17*19", + "name": "Paris | Rue Brémontier 19", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-14", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3213, + 48.8847 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1709", + "ref": "FR*V75*PPX17*09", + "name": "Paris | Rue des Batignolles 27", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-08-10", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2956282, + 48.881032 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1722", + "ref": "FR*V75*PPX17*22", + "name": "Paris | Avenue de Niel 28", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-23", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3222, + 48.8888 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1708", + "ref": "FR*V75*PPX17*08", + "name": "Paris | Rue Legendre 126", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-02-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.280347, + 48.867315 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1630", + "ref": "FR*V75*PPX16*30", + "name": "Paris | Rue de la Pompe 137", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2723059, + 48.8478478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1629", + "ref": "FR*V75*PPX16*29", + "name": "Paris | Rue Rémusat 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.280347, + 48.867315 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1630", + "ref": "FR*V75*PPX16*30", + "name": "Paris | Rue de la Pompe 137", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.280347, + 48.867315 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1630", + "ref": "FR*V75*PPX16*30", + "name": "Paris | Rue de la Pompe 137", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.280347, + 48.867315 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1630", + "ref": "FR*V75*PPX16*30", + "name": "Paris | Rue de la Pompe 137", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.280347, + 48.867315 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1630", + "ref": "FR*V75*PPX16*30", + "name": "Paris | Rue de la Pompe 137", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.280347, + 48.867315 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1630", + "ref": "FR*V75*PPX16*30", + "name": "Paris | Rue de la Pompe 137", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.280347, + 48.867315 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1630", + "ref": "FR*V75*PPX16*30", + "name": "Paris | Rue de la Pompe 137", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2976445, + 48.8698929 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1631", + "ref": "FR*V75*PPX16*31", + "name": "Paris | Avenue Marceau 59", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2723059, + 48.8478478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1629", + "ref": "FR*V75*PPX16*29", + "name": "Paris | Rue Rémusat 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2976445, + 48.8698929 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1631", + "ref": "FR*V75*PPX16*31", + "name": "Paris | Avenue Marceau 59", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2976445, + 48.8698929 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1631", + "ref": "FR*V75*PPX16*31", + "name": "Paris | Avenue Marceau 59", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2976445, + 48.8698929 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1631", + "ref": "FR*V75*PPX16*31", + "name": "Paris | Avenue Marceau 59", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2976445, + 48.8698929 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1631", + "ref": "FR*V75*PPX16*31", + "name": "Paris | Avenue Marceau 59", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2023-03-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967633, + 48.8782587 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1701", + "ref": "FR*V75*PPX17*01", + "name": "Paris | Avenue des Ternes 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Réservé PMR", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967633, + 48.8782587 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1701", + "ref": "FR*V75*PPX17*01", + "name": "Paris | Avenue des Ternes 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967633, + 48.8782587 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1701", + "ref": "FR*V75*PPX17*01", + "name": "Paris | Avenue des Ternes 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2723059, + 48.8478478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1629", + "ref": "FR*V75*PPX16*29", + "name": "Paris | Rue Rémusat 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2723059, + 48.8478478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1629", + "ref": "FR*V75*PPX16*29", + "name": "Paris | Rue Rémusat 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967633, + 48.8782587 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1701", + "ref": "FR*V75*PPX17*01", + "name": "Paris | Avenue des Ternes 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2762194, + 48.8658188 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1627", + "ref": "FR*V75*PPX16*27", + "name": "Paris | Avenue Victor Hugo 180", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3222, + 48.8888 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1708", + "ref": "FR*V75*PPX17*08", + "name": "Paris | Rue Legendre 126", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-02-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2762194, + 48.8658188 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1627", + "ref": "FR*V75*PPX16*27", + "name": "Paris | Avenue Victor Hugo 180", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2768772, + 48.8538134 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1626", + "ref": "FR*V75*PPX16*26", + "name": "Paris | Rue du Ranelagh 33", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2768772, + 48.8538134 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1626", + "ref": "FR*V75*PPX16*26", + "name": "Paris | Rue du Ranelagh 33", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-09", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2762194, + 48.8658188 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1627", + "ref": "FR*V75*PPX16*27", + "name": "Paris | Avenue Victor Hugo 180", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2762194, + 48.8658188 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1627", + "ref": "FR*V75*PPX16*27", + "name": "Paris | Avenue Victor Hugo 180", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2762194, + 48.8658188 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1627", + "ref": "FR*V75*PPX16*27", + "name": "Paris | Avenue Victor Hugo 180", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2762194, + 48.8658188 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1627", + "ref": "FR*V75*PPX16*27", + "name": "Paris | Avenue Victor Hugo 180", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-11-16", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2723059, + 48.8478478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1629", + "ref": "FR*V75*PPX16*29", + "name": "Paris | Rue Rémusat 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2851211, + 48.8585701 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1628", + "ref": "FR*V75*PPX16*28", + "name": "Paris | Boulevard Delessert 23", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2851211, + 48.8585701 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1628", + "ref": "FR*V75*PPX16*28", + "name": "Paris | Boulevard Delessert 23", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2851211, + 48.8585701 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1628", + "ref": "FR*V75*PPX16*28", + "name": "Paris | Boulevard Delessert 23", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2851211, + 48.8585701 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1628", + "ref": "FR*V75*PPX16*28", + "name": "Paris | Boulevard Delessert 23", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2851211, + 48.8585701 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1628", + "ref": "FR*V75*PPX16*28", + "name": "Paris | Boulevard Delessert 23", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2851211, + 48.8585701 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1628", + "ref": "FR*V75*PPX16*28", + "name": "Paris | Boulevard Delessert 23", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2851211, + 48.8585701 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1628", + "ref": "FR*V75*PPX16*28", + "name": "Paris | Boulevard Delessert 23", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967633, + 48.8782587 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1701", + "ref": "FR*V75*PPX17*01", + "name": "Paris | Avenue des Ternes 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2723059, + 48.8478478 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1629", + "ref": "FR*V75*PPX16*29", + "name": "Paris | Rue Rémusat 8", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-10-19", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967633, + 48.8782587 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1701", + "ref": "FR*V75*PPX17*01", + "name": "Paris | Avenue des Ternes 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-12-01", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323452, + 48.8979743 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1704", + "ref": "FR*V75*PPX17*04", + "name": "Paris | Avenue de la Porte Pouchet 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3211581, + 48.8941653 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1705", + "ref": "FR*V75*PPX17*05", + "name": "Paris | Rue de la Jonquière 66", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3211581, + 48.8941653 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1705", + "ref": "FR*V75*PPX17*05", + "name": "Paris | Rue de la Jonquière 66", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3211581, + 48.8941653 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1705", + "ref": "FR*V75*PPX17*05", + "name": "Paris | Rue de la Jonquière 66", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3211581, + 48.8941653 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1705", + "ref": "FR*V75*PPX17*05", + "name": "Paris | Rue de la Jonquière 66", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3283, + 48.8955 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1706", + "ref": "FR*V75*PPX17*06", + "name": "Paris | Rue Navier 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3283, + 48.8955 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1706", + "ref": "FR*V75*PPX17*06", + "name": "Paris | Rue Navier 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3283, + 48.8955 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1706", + "ref": "FR*V75*PPX17*06", + "name": "Paris | Rue Navier 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3283, + 48.8955 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1706", + "ref": "FR*V75*PPX17*06", + "name": "Paris | Rue Navier 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304, + 48.8914 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1707", + "ref": "FR*V75*PPX17*07", + "name": "Paris | Rue Marguerite Long 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304, + 48.8914 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1707", + "ref": "FR*V75*PPX17*07", + "name": "Paris | Rue Marguerite Long 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304, + 48.8914 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1707", + "ref": "FR*V75*PPX17*07", + "name": "Paris | Rue Marguerite Long 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304, + 48.8914 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1707", + "ref": "FR*V75*PPX17*07", + "name": "Paris | Rue Marguerite Long 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3222, + 48.8888 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1708", + "ref": "FR*V75*PPX17*08", + "name": "Paris | Rue Legendre 126", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-02-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284095, + 48.88112 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1702", + "ref": "FR*V75*PPX17*02", + "name": "Paris | Place du Général Koënig 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304, + 48.8914 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1707", + "ref": "FR*V75*PPX17*07", + "name": "Paris | Rue Marguerite Long 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304, + 48.8914 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1707", + "ref": "FR*V75*PPX17*07", + "name": "Paris | Rue Marguerite Long 11", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3222, + 48.8888 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1708", + "ref": "FR*V75*PPX17*08", + "name": "Paris | Rue Legendre 126", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2022-02-03", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3211581, + 48.8941653 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1705", + "ref": "FR*V75*PPX17*05", + "name": "Paris | Rue de la Jonquière 66", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-13", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3283, + 48.8955 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1706", + "ref": "FR*V75*PPX17*06", + "name": "Paris | Rue Navier 1", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-09-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3160603, + 48.8884456 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1703", + "ref": "FR*V75*PPX17*03", + "name": "Paris | Place Charles Fillion 22", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284095, + 48.88112 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1702", + "ref": "FR*V75*PPX17*02", + "name": "Paris | Place du Général Koënig 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284095, + 48.88112 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1702", + "ref": "FR*V75*PPX17*02", + "name": "Paris | Place du Général Koënig 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3160603, + 48.8884456 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1703", + "ref": "FR*V75*PPX17*03", + "name": "Paris | Place Charles Fillion 22", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3160603, + 48.8884456 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1703", + "ref": "FR*V75*PPX17*03", + "name": "Paris | Place Charles Fillion 22", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284095, + 48.88112 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1702", + "ref": "FR*V75*PPX17*02", + "name": "Paris | Place du Général Koënig 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284095, + 48.88112 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1702", + "ref": "FR*V75*PPX17*02", + "name": "Paris | Place du Général Koënig 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3160603, + 48.8884456 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1703", + "ref": "FR*V75*PPX17*03", + "name": "Paris | Place Charles Fillion 22", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3160603, + 48.8884456 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1703", + "ref": "FR*V75*PPX17*03", + "name": "Paris | Place Charles Fillion 22", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323452, + 48.8979743 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1704", + "ref": "FR*V75*PPX17*04", + "name": "Paris | Avenue de la Porte Pouchet 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3160603, + 48.8884456 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1703", + "ref": "FR*V75*PPX17*03", + "name": "Paris | Place Charles Fillion 22", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-07", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323452, + 48.8979743 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1704", + "ref": "FR*V75*PPX17*04", + "name": "Paris | Avenue de la Porte Pouchet 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284095, + 48.88112 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1702", + "ref": "FR*V75*PPX17*02", + "name": "Paris | Place du Général Koënig 12", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-06-24", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323452, + 48.8979743 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1704", + "ref": "FR*V75*PPX17*04", + "name": "Paris | Avenue de la Porte Pouchet 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323452, + 48.8979743 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1704", + "ref": "FR*V75*PPX17*04", + "name": "Paris | Avenue de la Porte Pouchet 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323452, + 48.8979743 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref:EU:EVSE": "FRV75PPX1704", + "ref": "FR*V75*PPX17*04", + "name": "Paris | Avenue de la Porte Pouchet 6", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Non accessible", + "start_date": "2021-07-12", + "note": "Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr", + "source:date": "2023-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.368846, + 43.765692 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "489638338", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "BAR RESTAURANT L’ARENA", + "ref:EU:EVSE": "FRTCBP01794", + "ref": "", + "name": "TOTALENERGIES | BAR RESTAURANT L’ARENA", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-20", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.368846, + 43.765692 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "489638338", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "BAR RESTAURANT L’ARENA", + "ref:EU:EVSE": "FRTCBP01794", + "ref": "", + "name": "TOTALENERGIES | BAR RESTAURANT L’ARENA", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-20", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.218075, + 43.295789 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "489638338", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "RESTAURANT L’ETAPE BEZIERS", + "ref:EU:EVSE": "FRTCBP01793", + "ref": "", + "name": "TOTALENERGIES | RESTAURANT L’ETAPE BEZIERS", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-20", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.368846, + 43.765692 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "489638338", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "BAR RESTAURANT L’ARENA", + "ref:EU:EVSE": "FRTCBP01794", + "ref": "", + "name": "TOTALENERGIES | BAR RESTAURANT L’ARENA", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-20", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.218075, + 43.295789 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "489638338", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "RESTAURANT L’ETAPE BEZIERS", + "ref:EU:EVSE": "FRTCBP01793", + "ref": "", + "name": "TOTALENERGIES | RESTAURANT L’ETAPE BEZIERS", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-20", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.218075, + 43.295789 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "489638338", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "RESTAURANT L’ETAPE BEZIERS", + "ref:EU:EVSE": "FRTCBP01793", + "ref": "", + "name": "TOTALENERGIES | RESTAURANT L’ETAPE BEZIERS", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-20", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.218075, + 43.295789 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "489638338", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "RESTAURANT L’ETAPE BEZIERS", + "ref:EU:EVSE": "FRTCBP01793", + "ref": "", + "name": "TOTALENERGIES | RESTAURANT L’ETAPE BEZIERS", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-20", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.368846, + 43.765692 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "489638338", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "BAR RESTAURANT L’ARENA", + "ref:EU:EVSE": "FRTCBP01794", + "ref": "", + "name": "TOTALENERGIES | BAR RESTAURANT L’ARENA", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-20", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref:EU:EVSE": "FRTCBP01199", + "ref": "FRTCBP01199", + "name": "Entrepôt du Bricolage - Comboire", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0894925, + 48.803014 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "746150218", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER COULOMMIERS", + "ref:EU:EVSE": "FRTCBP01302", + "ref": "FRTCBP01302", + "name": "RIESTER - COULOMMIERS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0894925, + 48.803014 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "746150218", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER COULOMMIERS", + "ref:EU:EVSE": "FRTCBP01302", + "ref": "FRTCBP01302", + "name": "RIESTER - COULOMMIERS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.804661630684159, + 48.7960019597569 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "479081903", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "KIA HAGUENAU", + "ref:EU:EVSE": "FRTCBP01299", + "ref": "FRTCBP01299", + "name": "CAR AVENUE - KIA HAGUENAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.804661630684159, + 48.7960019597569 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "479081903", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "KIA HAGUENAU", + "ref:EU:EVSE": "FRTCBP01299", + "ref": "FRTCBP01299", + "name": "CAR AVENUE - KIA HAGUENAU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref:EU:EVSE": "FRTCBP01199", + "ref": "FRTCBP01199", + "name": "Entrepôt du Bricolage - Comboire", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref:EU:EVSE": "FRTCBP01199", + "ref": "FRTCBP01199", + "name": "Entrepôt du Bricolage - Comboire", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref:EU:EVSE": "FRTCBP01199", + "ref": "FRTCBP01199", + "name": "Entrepôt du Bricolage - Comboire", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0894925, + 48.803014 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "746150218", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER COULOMMIERS", + "ref:EU:EVSE": "FRTCBP01302", + "ref": "FRTCBP01302", + "name": "RIESTER - COULOMMIERS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref:EU:EVSE": "FRTCBP01199", + "ref": "FRTCBP01199", + "name": "Entrepôt du Bricolage - Comboire", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref:EU:EVSE": "FRTCBP01199", + "ref": "FRTCBP01199", + "name": "Entrepôt du Bricolage - Comboire", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref:EU:EVSE": "FRTCBP01199", + "ref": "FRTCBP01199", + "name": "Entrepôt du Bricolage - Comboire", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref:EU:EVSE": "FRTCBP01199", + "ref": "FRTCBP01199", + "name": "Entrepôt du Bricolage - Comboire", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref:EU:EVSE": "FRTCBP01199", + "ref": "FRTCBP01199", + "name": "Entrepôt du Bricolage - Comboire", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0894925, + 48.803014 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "746150218", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER COULOMMIERS", + "ref:EU:EVSE": "FRTCBP01302", + "ref": "FRTCBP01302", + "name": "RIESTER - COULOMMIERS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4680534959656213, + 49.2313543194067 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089158", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER SAINT MAXIMIN", + "ref:EU:EVSE": "FRTCBP00700", + "ref": "FRTCBP00700", + "name": "RIESTER HYUNDAI - SAINT MAXIMIN", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4680534959656213, + 49.2313543194067 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089158", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER SAINT MAXIMIN", + "ref:EU:EVSE": "FRTCBP00700", + "ref": "FRTCBP00700", + "name": "RIESTER HYUNDAI - SAINT MAXIMIN", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4680534959656213, + 49.2313543194067 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089158", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER SAINT MAXIMIN", + "ref:EU:EVSE": "FRTCBP00700", + "ref": "FRTCBP00700", + "name": "RIESTER HYUNDAI - SAINT MAXIMIN", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.437154769315841, + 48.21617580915875 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "479081903", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "KIA EPINAL", + "ref:EU:EVSE": "FRTCBP00701", + "ref": "FRTCBP00701", + "name": "CAR AVENUE - KIA EPINAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.437154769315841, + 48.21617580915875 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "479081903", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "KIA EPINAL", + "ref:EU:EVSE": "FRTCBP00701", + "ref": "FRTCBP00701", + "name": "CAR AVENUE - KIA EPINAL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071864476703762, + 45.713664931380926 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "523107621", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "IBIS BUDGET AEROPORT DE LYON", + "ref:EU:EVSE": "FRTCBP00803", + "ref": "FRTCBP00803", + "name": "IBIS Budget Aeroport de Lyon", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071864476703762, + 45.713664931380926 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "523107621", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "IBIS BUDGET AEROPORT DE LYON", + "ref:EU:EVSE": "FRTCBP00803", + "ref": "FRTCBP00803", + "name": "IBIS Budget Aeroport de Lyon", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071864476703762, + 45.713664931380926 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "523107621", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "IBIS BUDGET AEROPORT DE LYON", + "ref:EU:EVSE": "FRTCBP00803", + "ref": "FRTCBP00803", + "name": "IBIS Budget Aeroport de Lyon", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071864476703762, + 45.713664931380926 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "523107621", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "IBIS BUDGET AEROPORT DE LYON", + "ref:EU:EVSE": "FRTCBP00803", + "ref": "FRTCBP00803", + "name": "IBIS Budget Aeroport de Lyon", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref:EU:EVSE": "FRTCBP01199", + "ref": "FRTCBP01199", + "name": "Entrepôt du Bricolage - Comboire", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071864476703762, + 45.713664931380926 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "523107621", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "IBIS BUDGET AEROPORT DE LYON", + "ref:EU:EVSE": "FRTCBP00803", + "ref": "FRTCBP00803", + "name": "IBIS Budget Aeroport de Lyon", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.814664415340753, + 43.126642692001724 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "524125036", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "VIKINGS CASINO SANARY SUR MER", + "ref:EU:EVSE": "FRTCBP00805", + "ref": "FRTCBP00805", + "name": "Viking Casinos Sanary sur Mer", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3486904895097536, + 48.850723128182764 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPLAG", + "ref": "FRSAEPLAG", + "name": "SAEMES | PARKING LAGRANGE ", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2523614732393145, + 48.844450618719236 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPJBO", + "ref": "FRSAEPJBO", + "name": "SAEMES | PARKING JEAN BOUIN", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2523614732393145, + 48.844450618719236 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPJBO", + "ref": "FRSAEPJBO", + "name": "SAEMES | PARKING JEAN BOUIN", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3486904895097536, + 48.850723128182764 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPLAG", + "ref": "FRSAEPLAG", + "name": "SAEMES | PARKING LAGRANGE ", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3486904895097536, + 48.850723128182764 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPLAG", + "ref": "FRSAEPLAG", + "name": "SAEMES | PARKING LAGRANGE ", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3486904895097536, + 48.850723128182764 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPLAG", + "ref": "FRSAEPLAG", + "name": "SAEMES | PARKING LAGRANGE ", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3486904895097536, + 48.850723128182764 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPLAG", + "ref": "FRSAEPLAG", + "name": "SAEMES | PARKING LAGRANGE ", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3486904895097536, + 48.850723128182764 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPLAG", + "ref": "FRSAEPLAG", + "name": "SAEMES | PARKING LAGRANGE ", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3486904895097536, + 48.850723128182764 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPLAG", + "ref": "FRSAEPLAG", + "name": "SAEMES | PARKING LAGRANGE ", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3486904895097536, + 48.850723128182764 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPLAG", + "ref": "FRSAEPLAG", + "name": "SAEMES | PARKING LAGRANGE ", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3486904895097536, + 48.850723128182764 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPLAG", + "ref": "FRSAEPLAG", + "name": "SAEMES | PARKING LAGRANGE ", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3486904895097536, + 48.850723128182764 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPLAG", + "ref": "FRSAEPLAG", + "name": "SAEMES | PARKING LAGRANGE ", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2523614732393145, + 48.844450618719236 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPJBO", + "ref": "FRSAEPJBO", + "name": "SAEMES | PARKING JEAN BOUIN", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2523614732393145, + 48.844450618719236 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPJBO", + "ref": "FRSAEPJBO", + "name": "SAEMES | PARKING JEAN BOUIN", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2523614732393145, + 48.844450618719236 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPJBO", + "ref": "FRSAEPJBO", + "name": "SAEMES | PARKING JEAN BOUIN", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.814664415340753, + 43.126642692001724 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "524125036", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "VIKINGS CASINO SANARY SUR MER", + "ref:EU:EVSE": "FRTCBP00805", + "ref": "FRTCBP00805", + "name": "Viking Casinos Sanary sur Mer", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3546758690873664, + 44.015987295958546 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "843206434", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMRO", + "ref": "FRIPKPMRO", + "name": "INTERPARKING | PARKING Montauban Roosevelt", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-29", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.366667, + 48.8678524 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPALH", + "ref": "FRIPKPALH", + "name": "INTERPARKING | PARKING PARIS ALHAMBRA", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-02", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.366667, + 48.8678524 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPALH", + "ref": "FRIPKPALH", + "name": "INTERPARKING | PARKING PARIS ALHAMBRA", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-02", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.366667, + 48.8678524 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPALH", + "ref": "FRIPKPALH", + "name": "INTERPARKING | PARKING PARIS ALHAMBRA", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-02", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.366667, + 48.8678524 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPALH", + "ref": "FRIPKPALH", + "name": "INTERPARKING | PARKING PARIS ALHAMBRA", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-02", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.465746327260876, + 47.259069997714015 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPARC", + "ref": "FRIPKPARC", + "name": "INTERPARKING | PARKING Azay-le-Rideau Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-18", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.465746327260876, + 47.259069997714015 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPARC", + "ref": "FRIPKPARC", + "name": "INTERPARKING | PARKING Azay-le-Rideau Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-18", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5062241, + 43.7746702 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPMBA", + "ref": "FRIPKPMBA", + "name": "INTERPARKING | PARKING MENTON BASTION", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-15", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5062241, + 43.7746702 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPMBA", + "ref": "FRIPKPMBA", + "name": "INTERPARKING | PARKING MENTON BASTION", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-15", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5062241, + 43.7746702 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPMBA", + "ref": "FRIPKPMBA", + "name": "INTERPARKING | PARKING MENTON BASTION", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-15", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4963382, + 43.7738717 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPMG5", + "ref": "FRIPKPMG5", + "name": "INTERPARKING | PARKING MENTON GEORGE V", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-15", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4963382, + 43.7738717 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPMG5", + "ref": "FRIPKPMG5", + "name": "INTERPARKING | PARKING MENTON GEORGE V", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-15", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5039817, + 43.7759834 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPMHV", + "ref": "FRIPKPMHV", + "name": "INTERPARKING | PARKING MENTON HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-15", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5039817, + 43.7759834 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPMHV", + "ref": "FRIPKPMHV", + "name": "INTERPARKING | PARKING MENTON HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-15", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5039817, + 43.7759834 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPMHV", + "ref": "FRIPKPMHV", + "name": "INTERPARKING | PARKING MENTON HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-15", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5039817, + 43.7759834 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPMHV", + "ref": "FRIPKPMHV", + "name": "INTERPARKING | PARKING MENTON HOTEL DE VILLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-15", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.3042228, + 47.7504708 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "479081903", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "KIA MULHOUSE", + "ref:EU:EVSE": "FRTCBP01606", + "ref": "FRTCBP01606", + "name": "GROUPE CAR AVENUE - OHK MULHOUSE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-07", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.3042228, + 47.7504708 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "479081903", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "KIA MULHOUSE", + "ref:EU:EVSE": "FRTCBP01606", + "ref": "FRTCBP01606", + "name": "GROUPE CAR AVENUE - OHK MULHOUSE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-07", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85745361168763, + 47.88572973520105 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "478915374", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": " VIKINGS CASINO BUSSANG", + "ref:EU:EVSE": "FRTCBP00968", + "ref": "FRTCBP00968", + "name": "VIKINGS CASINOS - Casino Bussang", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.745622938624003, + 43.425620410989545 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "533913497", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "VIKINGS CASINO FREJUS", + "ref:EU:EVSE": "FRTCBP00814", + "ref": "FRTCBP00814", + "name": "Vikings Casinos Frejus", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.814664415340753, + 43.126642692001724 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "524125036", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "VIKINGS CASINO SANARY SUR MER", + "ref:EU:EVSE": "FRTCBP00805", + "ref": "FRTCBP00805", + "name": "Viking Casinos Sanary sur Mer", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.814664415340753, + 43.126642692001724 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "524125036", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "VIKINGS CASINO SANARY SUR MER", + "ref:EU:EVSE": "FRTCBP00805", + "ref": "FRTCBP00805", + "name": "Viking Casinos Sanary sur Mer", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.814664415340753, + 43.126642692001724 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "524125036", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "VIKINGS CASINO SANARY SUR MER", + "ref:EU:EVSE": "FRTCBP00805", + "ref": "FRTCBP00805", + "name": "Viking Casinos Sanary sur Mer", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.814664415340753, + 43.126642692001724 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "524125036", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "VIKINGS CASINO SANARY SUR MER", + "ref:EU:EVSE": "FRTCBP00805", + "ref": "FRTCBP00805", + "name": "Viking Casinos Sanary sur Mer", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.745622938624003, + 43.425620410989545 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "533913497", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "VIKINGS CASINO FREJUS", + "ref:EU:EVSE": "FRTCBP00814", + "ref": "FRTCBP00814", + "name": "Vikings Casinos Frejus", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.745622938624003, + 43.425620410989545 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "533913497", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "VIKINGS CASINO FREJUS", + "ref:EU:EVSE": "FRTCBP00814", + "ref": "FRTCBP00814", + "name": "Vikings Casinos Frejus", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.745622938624003, + 43.425620410989545 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "533913497", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "VIKINGS CASINO FREJUS", + "ref:EU:EVSE": "FRTCBP00814", + "ref": "FRTCBP00814", + "name": "Vikings Casinos Frejus", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-07", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85745361168763, + 47.88572973520105 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "478915374", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": " VIKINGS CASINO BUSSANG", + "ref:EU:EVSE": "FRTCBP00968", + "ref": "FRTCBP00968", + "name": "VIKINGS CASINOS - Casino Bussang", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4708516751267252, + 43.908112555133386 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "853114767", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "IBIS MONT DE MARSAN", + "ref:EU:EVSE": "FRTCBP00935", + "ref": "FRTCBP00935", + "name": "IBIS Mont de Marsan", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4708516751267252, + 43.908112555133386 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "853114767", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "IBIS MONT DE MARSAN", + "ref:EU:EVSE": "FRTCBP00935", + "ref": "FRTCBP00935", + "name": "IBIS Mont de Marsan", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4708516751267252, + 43.908112555133386 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "853114767", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "IBIS MONT DE MARSAN", + "ref:EU:EVSE": "FRTCBP00935", + "ref": "FRTCBP00935", + "name": "IBIS Mont de Marsan", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4708516751267252, + 43.908112555133386 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "853114767", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "IBIS MONT DE MARSAN", + "ref:EU:EVSE": "FRTCBP00935", + "ref": "FRTCBP00935", + "name": "IBIS Mont de Marsan", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85745361168763, + 47.88572973520105 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "478915374", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": " VIKINGS CASINO BUSSANG", + "ref:EU:EVSE": "FRTCBP00968", + "ref": "FRTCBP00968", + "name": "VIKINGS CASINOS - Casino Bussang", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85745361168763, + 47.88572973520105 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "478915374", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": " VIKINGS CASINO BUSSANG", + "ref:EU:EVSE": "FRTCBP00968", + "ref": "FRTCBP00968", + "name": "VIKINGS CASINOS - Casino Bussang", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-20", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3546758690873664, + 44.015987295958546 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "843206434", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMRO", + "ref": "FRIPKPMRO", + "name": "INTERPARKING | PARKING Montauban Roosevelt", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-29", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3546758690873664, + 44.015987295958546 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "843206434", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMRO", + "ref": "FRIPKPMRO", + "name": "INTERPARKING | PARKING Montauban Roosevelt", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-29", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2523614732393145, + 48.844450618719236 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPJBO", + "ref": "FRSAEPJBO", + "name": "SAEMES | PARKING JEAN BOUIN", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3546758690873664, + 44.015987295958546 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "843206434", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMRO", + "ref": "FRIPKPMRO", + "name": "INTERPARKING | PARKING Montauban Roosevelt", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-29", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.098126, + 48.449691 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "256102922", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "TERRITOIRE D'ENERGIE ORNE", + "ref:EU:EVSE": "FRS61P61497A", + "ref": "FRS61P61497A", + "name": "VALFRAMBERT - Rue de Gâtel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-15", + "note": "", + "source:date": "2022-05-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.098126, + 48.449691 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "256102922", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "TERRITOIRE D'ENERGIE ORNE", + "ref:EU:EVSE": "FRS61P61497A", + "ref": "FRS61P61497A", + "name": "VALFRAMBERT - Rue de Gâtel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-15", + "note": "", + "source:date": "2022-05-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2523614732393145, + 48.844450618719236 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPJBO", + "ref": "FRSAEPJBO", + "name": "SAEMES | PARKING JEAN BOUIN", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2523614732393145, + 48.844450618719236 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPJBO", + "ref": "FRSAEPJBO", + "name": "SAEMES | PARKING JEAN BOUIN", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2523614732393145, + 48.844450618719236 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPJBO", + "ref": "FRSAEPJBO", + "name": "SAEMES | PARKING JEAN BOUIN", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2523614732393145, + 48.844450618719236 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPJBO", + "ref": "FRSAEPJBO", + "name": "SAEMES | PARKING JEAN BOUIN", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2523614732393145, + 48.844450618719236 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPJBO", + "ref": "FRSAEPJBO", + "name": "SAEMES | PARKING JEAN BOUIN", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2523614732393145, + 48.844450618719236 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPJBO", + "ref": "FRSAEPJBO", + "name": "SAEMES | PARKING JEAN BOUIN", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3546758690873664, + 44.015987295958546 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "843206434", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMRO", + "ref": "FRIPKPMRO", + "name": "INTERPARKING | PARKING Montauban Roosevelt", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-29", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3546758690873664, + 44.015987295958546 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "843206434", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMRO", + "ref": "FRIPKPMRO", + "name": "INTERPARKING | PARKING Montauban Roosevelt", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-29", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3546758690873664, + 44.015987295958546 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "843206434", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMRO", + "ref": "FRIPKPMRO", + "name": "INTERPARKING | PARKING Montauban Roosevelt", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-29", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3546758690873664, + 44.015987295958546 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "843206434", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMRO", + "ref": "FRIPKPMRO", + "name": "INTERPARKING | PARKING Montauban Roosevelt", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-29", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3546758690873664, + 44.015987295958546 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "843206434", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMRO", + "ref": "FRIPKPMRO", + "name": "INTERPARKING | PARKING Montauban Roosevelt", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-29", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3546758690873664, + 44.015987295958546 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "843206434", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMRO", + "ref": "FRIPKPMRO", + "name": "INTERPARKING | PARKING Montauban Roosevelt", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-29", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3546758690873664, + 44.015987295958546 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "843206434", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMRO", + "ref": "FRIPKPMRO", + "name": "INTERPARKING | PARKING Montauban Roosevelt", + "capacity": "11", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-29", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.21256, + 43.6689 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref:EU:EVSE": "FRIPKPNVR", + "ref": "FRIPKPNVR", + "name": "Interparking | Parking Nice Nouvel'R", + "capacity": "18", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref:EU:EVSE": "FRTCBP01199", + "ref": "FRTCBP01199", + "name": "Entrepôt du Bricolage - Comboire", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref:EU:EVSE": "FRTCBP01199", + "ref": "FRTCBP01199", + "name": "Entrepôt du Bricolage - Comboire", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref:EU:EVSE": "FRTCBP01199", + "ref": "FRTCBP01199", + "name": "Entrepôt du Bricolage - Comboire", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465756, + 43.512302 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "800994055", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00528", + "ref": "FRTCBP00528", + "name": "IBIS AIX EN PROVENCE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "", + "source:date": "2021-11-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.145928, + 49.349901 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "851381459", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BMW", + "ref:EU:EVSE": "FRTCBP00601", + "ref": "FRTCBP00601", + "name": "CAR AVENUE TERVILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "", + "source:date": "2021-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.145928, + 49.349901 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "851381459", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BMW", + "ref:EU:EVSE": "FRTCBP00601", + "ref": "FRTCBP00601", + "name": "CAR AVENUE TERVILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "", + "source:date": "2021-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.065153169232204, + 49.27058538303454 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "350416350", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "F.B SERVICE", + "ref:EU:EVSE": "FRTCBP00568", + "ref": "FRTCBP00568", + "name": "FB SERVICE - Reims - All Paul Halary", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-21", + "note": "", + "source:date": "2022-07-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.065153169232204, + 49.27058538303454 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "350416350", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "F.B SERVICE", + "ref:EU:EVSE": "FRTCBP00568", + "ref": "FRTCBP00568", + "name": "FB SERVICE - Reims - All Paul Halary", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-21", + "note": "", + "source:date": "2022-07-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.065153169232204, + 49.27058538303454 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "350416350", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "F.B SERVICE", + "ref:EU:EVSE": "FRTCBP00568", + "ref": "FRTCBP00568", + "name": "FB SERVICE - Reims - All Paul Halary", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-21", + "note": "", + "source:date": "2022-07-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.065153169232204, + 49.27058538303454 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "350416350", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "F.B SERVICE", + "ref:EU:EVSE": "FRTCBP00568", + "ref": "FRTCBP00568", + "name": "FB SERVICE - Reims - All Paul Halary", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-21", + "note": "", + "source:date": "2022-07-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.790004885038854, + 49.396659217227096 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "339436917", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00530", + "ref": "FRTCBP00530", + "name": "IBIS COMPIEGNE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.790004885038854, + 49.396659217227096 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "339436917", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00530", + "ref": "FRTCBP00530", + "name": "IBIS COMPIEGNE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.790004885038854, + 49.396659217227096 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "339436917", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00530", + "ref": "FRTCBP00530", + "name": "IBIS COMPIEGNE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.775424, + 49.402224 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "500152780", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00530", + "ref": "FRTCBP00530", + "name": "Ibis Styles Compiegne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "", + "source:date": "2021-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.790004885038854, + 49.396659217227096 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "339436917", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00530", + "ref": "FRTCBP00530", + "name": "IBIS COMPIEGNE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64245, + 50.52183 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "520393661", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR HOTELS", + "ref:EU:EVSE": "FRTCBP00529", + "ref": "FRTCBP00529", + "name": "IBIS BETHUNE CENTRE GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-22", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.64245, + 50.52183 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "520393661", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR HOTELS", + "ref:EU:EVSE": "FRTCBP00529", + "ref": "FRTCBP00529", + "name": "IBIS BETHUNE CENTRE GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-22", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465756, + 43.512302 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "800994055", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00528", + "ref": "FRTCBP00528", + "name": "IBIS AIX EN PROVENCE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "", + "source:date": "2021-11-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465756, + 43.512302 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "800994055", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00528", + "ref": "FRTCBP00528", + "name": "IBIS AIX EN PROVENCE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "", + "source:date": "2021-11-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.145928, + 49.349901 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "851381459", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BMW", + "ref:EU:EVSE": "FRTCBP00601", + "ref": "FRTCBP00601", + "name": "CAR AVENUE TERVILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "", + "source:date": "2021-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.145928, + 49.349901 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "851381459", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BMW", + "ref:EU:EVSE": "FRTCBP00601", + "ref": "FRTCBP00601", + "name": "CAR AVENUE TERVILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "", + "source:date": "2021-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6604186, + 46.1920729 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "751131202", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "HOTEL VAL DE VIENNE", + "ref:EU:EVSE": "FRTCBP00621", + "ref": "FRTCBP00621", + "name": "Hotel Val de Vienne - Le Vigeant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "", + "source:date": "2022-05-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0415555914491317, + 47.50852503292789 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "811425065", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "DA COSTA AUTOMOBILES", + "ref:EU:EVSE": "FRTCBP00691", + "ref": "FRTCBP00691", + "name": "PSA Agents France", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-05", + "note": "", + "source:date": "2022-09-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.710239355468517, + 48.830511379284836 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089162", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER BUSSY", + "ref:EU:EVSE": "FRTCBP00696", + "ref": "FRTCBP00696", + "name": "RIESTER HYUNDAI - BUSSY-SAINT-GEORGES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.710239355468517, + 48.830511379284836 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089163", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER BUSSY", + "ref:EU:EVSE": "FRTCBP00696", + "ref": "FRTCBP00696", + "name": "RIESTER HYUNDAI - BUSSY-SAINT-GEORGES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.710239355468517, + 48.830511379284836 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089158", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER BUSSY", + "ref:EU:EVSE": "FRTCBP00696", + "ref": "FRTCBP00696", + "name": "RIESTER HYUNDAI - BUSSY-SAINT-GEORGES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.710239355468517, + 48.830511379284836 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089159", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER BUSSY", + "ref:EU:EVSE": "FRTCBP00696", + "ref": "FRTCBP00696", + "name": "RIESTER HYUNDAI - BUSSY-SAINT-GEORGES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2589672351008163, + 45.702755954262976 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "322591892", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "PSA Agents France", + "ref:EU:EVSE": "FRTCBP00695", + "ref": "FRTCBP00695", + "name": "GARAGE TACHARD - LA COURTINE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-23", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.036040724644734, + 45.39793430999813 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "332574540", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "PSA Agents France", + "ref:EU:EVSE": "FRTCBP00694", + "ref": "FRTCBP00694", + "name": "TACHARD AUTOMOBILES - EGLETONS", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-17", + "note": "", + "source:date": "2022-09-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.721469092114616, + 47.65561996206715 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "880708748", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "PSA Agents France", + "ref:EU:EVSE": "FRTCBP00690", + "ref": "FRTCBP00690", + "name": "LE RANCH - VANNES", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-23", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6604186, + 46.1920729 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "751131202", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "HOTEL VAL DE VIENNE", + "ref:EU:EVSE": "FRTCBP00621", + "ref": "FRTCBP00621", + "name": "Hotel Val de Vienne - Le Vigeant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-04", + "note": "", + "source:date": "2022-05-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8140013, + 47.5188961 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "877150144", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "GARAGE PEUGEOT CUCIS", + "ref:EU:EVSE": "FRTCBP00689", + "ref": "FRTCBP00689", + "name": "ETABLISSEMENTS BRUNO CUCIS ET CIE - MONTBELIARD", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "", + "source:date": "2022-05-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8459941, + 47.0325195 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "778168005", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Résidence les Primevères", + "ref:EU:EVSE": "FRTCBP00650", + "ref": "FRTCBP00650", + "name": "Residence Les Primeveres - Beaune", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-17", + "note": "", + "source:date": "2022-07-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8459941, + 47.0325195 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "778168005", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Résidence les Primevères", + "ref:EU:EVSE": "FRTCBP00650", + "ref": "FRTCBP00650", + "name": "Residence Les Primeveres - Beaune", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-17", + "note": "", + "source:date": "2022-07-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8459941, + 47.0325195 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "778168005", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Résidence les Primevères", + "ref:EU:EVSE": "FRTCBP00650", + "ref": "FRTCBP00650", + "name": "Residence Les Primeveres - Beaune", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-17", + "note": "", + "source:date": "2022-07-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8459941, + 47.0325195 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "778168005", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Résidence les Primevères", + "ref:EU:EVSE": "FRTCBP00650", + "ref": "FRTCBP00650", + "name": "Residence Les Primeveres - Beaune", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-17", + "note": "", + "source:date": "2022-07-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9659948222190418, + 47.41092605168244 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "377638911", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "PSA Agents France", + "ref:EU:EVSE": "FRTCBP00627", + "ref": "FRTCBP00627", + "name": "GARAGE PLISSONNEAU - CAMPBON", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-20", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465756, + 43.512302 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "800994055", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00528", + "ref": "FRTCBP00528", + "name": "IBIS AIX EN PROVENCE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-12", + "note": "", + "source:date": "2021-11-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.175193, + 43.587342 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "888632957", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00513", + "ref": "FRTCBP00513", + "name": "Greet Hotel Castres Saïx", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "", + "source:date": "2021-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.233597954184353, + 49.10522433612676 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "332834175", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BMW METZ", + "ref:EU:EVSE": "FRTCBP00697", + "ref": "FRTCBP00697", + "name": "CAR AVENUE - BMW METZ", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.175193, + 43.587342 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "888632957", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00513", + "ref": "FRTCBP00513", + "name": "Greet Hotel Castres Saïx", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "", + "source:date": "2021-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.762013, + 48.508649 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "478811458", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00425", + "ref": "FRTCBP00425", + "name": "Novotel Saint Brieuc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-13", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.251248, + 43.434434 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00415", + "ref": "FRTCBP00415", + "name": "WARNING - Marseille", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.251248, + 43.434434 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00415", + "ref": "FRTCBP00415", + "name": "WARNING - Marseille", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.251248, + 43.434434 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00415", + "ref": "FRTCBP00415", + "name": "WARNING - Marseille", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.251248, + 43.434434 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00415", + "ref": "FRTCBP00415", + "name": "WARNING - Marseille", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388259, + 48.98659 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "878873942", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "LOUVRE HOTELS GROUP", + "ref:EU:EVSE": "FRTCBP00396", + "ref": "FRTCBP00396", + "name": "Premiere Classe - Sarcelles", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388259, + 48.98659 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "878873942", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "LOUVRE HOTELS GROUP", + "ref:EU:EVSE": "FRTCBP00396", + "ref": "FRTCBP00396", + "name": "Premiere Classe - Sarcelles", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388259, + 48.98659 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "878873942", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "LOUVRE HOTELS GROUP", + "ref:EU:EVSE": "FRTCBP00396", + "ref": "FRTCBP00396", + "name": "Premiere Classe - Sarcelles", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-10", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.413516, + 43.710233 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00392", + "ref": "FRTCBP00392", + "name": "WARNING Toulouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.413516, + 43.710233 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00392", + "ref": "FRTCBP00392", + "name": "WARNING Toulouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.937386, + 47.939605 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00390", + "ref": "FRTCBP00390", + "name": "WARNING Orleans", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.937386, + 47.939605 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00390", + "ref": "FRTCBP00390", + "name": "WARNING Orleans", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.195802, + 43.703258 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00389", + "ref": "FRTCBP00389", + "name": "WARNING Nice", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.195802, + 43.703258 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00389", + "ref": "FRTCBP00389", + "name": "WARNING Nice", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.188131, + 48.642626 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00387", + "ref": "FRTCBP00387", + "name": "WARNING Nancy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-31", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.762013, + 48.508649 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "478811458", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00425", + "ref": "FRTCBP00425", + "name": "Novotel Saint Brieuc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-13", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.832477, + 46.79978 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "521675777", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00426", + "ref": "FRTCBP00426", + "name": "IBIS STYLES CHALON SUR SAONE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.832477, + 46.79978 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "521675777", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00426", + "ref": "FRTCBP00426", + "name": "IBIS STYLES CHALON SUR SAONE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.117295, + 49.282126 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "433528734", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00427", + "ref": "FRTCBP00427", + "name": "Mercure Cabourg", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.175193, + 43.587342 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "888632957", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00513", + "ref": "FRTCBP00513", + "name": "Greet Hotel Castres Saïx", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "", + "source:date": "2021-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.175193, + 43.587342 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "888632957", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00513", + "ref": "FRTCBP00513", + "name": "Greet Hotel Castres Saïx", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "", + "source:date": "2021-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.601978976728186, + 43.20610905711502 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "441568748", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00475", + "ref": "FRTCBP00475", + "name": "Ibis la ciotat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-15", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.601978976728186, + 43.20610905711502 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "441568748", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00475", + "ref": "FRTCBP00475", + "name": "Ibis la ciotat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-15", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.601978976728186, + 43.20610905711502 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "441568748", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00475", + "ref": "FRTCBP00475", + "name": "Ibis la ciotat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-15", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.601978976728186, + 43.20610905711502 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "441568748", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00475", + "ref": "FRTCBP00475", + "name": "Ibis la ciotat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-15", + "note": "", + "source:date": "2022-03-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.117295, + 49.282126 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "433528734", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00427", + "ref": "FRTCBP00427", + "name": "Mercure Cabourg", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.832477, + 46.79978 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "521675777", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00426", + "ref": "FRTCBP00426", + "name": "IBIS STYLES CHALON SUR SAONE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.117295, + 49.282126 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "433528734", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00427", + "ref": "FRTCBP00427", + "name": "Mercure Cabourg", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-21", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.832477, + 46.79978 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "521675777", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00426", + "ref": "FRTCBP00426", + "name": "IBIS STYLES CHALON SUR SAONE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.832477, + 46.79978 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "521675777", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00426", + "ref": "FRTCBP00426", + "name": "IBIS STYLES CHALON SUR SAONE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.832477, + 46.79978 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "521675777", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00426", + "ref": "FRTCBP00426", + "name": "IBIS STYLES CHALON SUR SAONE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.832477, + 46.79978 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "521675777", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00426", + "ref": "FRTCBP00426", + "name": "IBIS STYLES CHALON SUR SAONE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.832477, + 46.79978 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "521675777", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00426", + "ref": "FRTCBP00426", + "name": "IBIS STYLES CHALON SUR SAONE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-11", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.233597954184353, + 49.10522433612676 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "332834175", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BMW METZ", + "ref:EU:EVSE": "FRTCBP00697", + "ref": "FRTCBP00697", + "name": "CAR AVENUE - BMW METZ", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.233597954184353, + 49.10522433612676 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "332834175", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BMW METZ", + "ref:EU:EVSE": "FRTCBP00697", + "ref": "FRTCBP00697", + "name": "CAR AVENUE - BMW METZ", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06979, + 45.688937 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00386", + "ref": "FRTCBP00386", + "name": "WARNING Lyon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.771762215343999, + 45.712529840333644 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "791433501", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Atelier de l'Aluminium Chanopost", + "ref:EU:EVSE": "FRTCBP00839", + "ref": "FRTCBP00839", + "name": "Atelier de l'Aluminium Chanopost", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.892356830681991, + 49.154257203162594 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "325805547", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "L.R. Participations", + "ref:EU:EVSE": "FRTCBP00991", + "ref": "FRTCBP00991", + "name": "LECLERC AUTOMOBILE - JARNY - RENAULT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-07", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref:EU:EVSE": "FRTCBP00989", + "ref": "FRTCBP00989", + "name": "Best Western Nantes Beaujoire - Sure Hotel", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref:EU:EVSE": "FRTCBP00989", + "ref": "FRTCBP00989", + "name": "Best Western Nantes Beaujoire - Sure Hotel", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref:EU:EVSE": "FRTCBP00989", + "ref": "FRTCBP00989", + "name": "Best Western Nantes Beaujoire - Sure Hotel", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref:EU:EVSE": "FRTCBP00989", + "ref": "FRTCBP00989", + "name": "Best Western Nantes Beaujoire - Sure Hotel", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref:EU:EVSE": "FRTCBP00989", + "ref": "FRTCBP00989", + "name": "Best Western Nantes Beaujoire - Sure Hotel", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref:EU:EVSE": "FRTCBP00989", + "ref": "FRTCBP00989", + "name": "Best Western Nantes Beaujoire - Sure Hotel", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref:EU:EVSE": "FRTCBP00989", + "ref": "FRTCBP00989", + "name": "Best Western Nantes Beaujoire - Sure Hotel", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref:EU:EVSE": "FRTCBP00989", + "ref": "FRTCBP00989", + "name": "Best Western Nantes Beaujoire - Sure Hotel", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref:EU:EVSE": "FRTCBP00989", + "ref": "FRTCBP00989", + "name": "Best Western Nantes Beaujoire - Sure Hotel", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref:EU:EVSE": "FRTCBP00989", + "ref": "FRTCBP00989", + "name": "Best Western Nantes Beaujoire - Sure Hotel", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref:EU:EVSE": "FRTCBP00989", + "ref": "FRTCBP00989", + "name": "Best Western Nantes Beaujoire - Sure Hotel", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref:EU:EVSE": "FRTCBP00989", + "ref": "FRTCBP00989", + "name": "Best Western Nantes Beaujoire - Sure Hotel", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.547615742328, + 48.66533198978757 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "801484627", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SCI GADMP", + "ref:EU:EVSE": "FRTCBP00915", + "ref": "FRTCBP00916", + "name": "SCI GADMP - Combs la ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-08", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.547615742328, + 48.66533198978757 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "801484627", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SCI GADMP", + "ref:EU:EVSE": "FRTCBP00915", + "ref": "FRTCBP00915", + "name": "SCI GADMP - Combs la ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-07", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.892356830681991, + 49.154257203162594 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "325805547", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "L.R. Participations", + "ref:EU:EVSE": "FRTCBP00991", + "ref": "FRTCBP00991", + "name": "LECLERC AUTOMOBILE - JARNY - RENAULT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-07", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.892356830681991, + 49.154257203162594 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "325805547", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "L.R. Participations", + "ref:EU:EVSE": "FRTCBP00991", + "ref": "FRTCBP00991", + "name": "LECLERC AUTOMOBILE - JARNY - RENAULT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-07", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.892356830681991, + 49.154257203162594 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "325805547", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "L.R. Participations", + "ref:EU:EVSE": "FRTCBP00991", + "ref": "FRTCBP00991", + "name": "LECLERC AUTOMOBILE - JARNY - RENAULT", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-07", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.949377130687999, + 45.57229420213553 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP BASSENS-Parking magasin", + "ref:EU:EVSE": "FRTCBP01198", + "ref": "FRTCBP01198", + "name": "Entrepôt du Bricolage - Bassens", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref:EU:EVSE": "FRTCBP01199", + "ref": "FRTCBP01199", + "name": "Entrepôt du Bricolage - Comboire", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.949377130687999, + 45.57229420213553 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP BASSENS-Parking magasin", + "ref:EU:EVSE": "FRTCBP01198", + "ref": "FRTCBP01198", + "name": "Entrepôt du Bricolage - Bassens", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.949377130687999, + 45.57229420213553 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP BASSENS-Parking magasin", + "ref:EU:EVSE": "FRTCBP01198", + "ref": "FRTCBP01198", + "name": "Entrepôt du Bricolage - Bassens", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.949377130687999, + 45.57229420213553 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP BASSENS-Parking magasin", + "ref:EU:EVSE": "FRTCBP01198", + "ref": "FRTCBP01198", + "name": "Entrepôt du Bricolage - Bassens", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.949377130687999, + 45.57229420213553 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP BASSENS-Parking magasin", + "ref:EU:EVSE": "FRTCBP01198", + "ref": "FRTCBP01198", + "name": "Entrepôt du Bricolage - Bassens", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.949377130687999, + 45.57229420213553 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP BASSENS-Parking magasin", + "ref:EU:EVSE": "FRTCBP01198", + "ref": "FRTCBP01198", + "name": "Entrepôt du Bricolage - Bassens", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.949377130687999, + 45.57229420213553 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP BASSENS-Parking magasin", + "ref:EU:EVSE": "FRTCBP01198", + "ref": "FRTCBP01198", + "name": "Entrepôt du Bricolage - Bassens", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.146379, + 43.932802 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "341636918", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "MERCURE ALBI", + "ref:EU:EVSE": "FRTCBP01185", + "ref": "FRTCBP01185", + "name": "Mercure Albi Bastides", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.949377130687999, + 45.57229420213553 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP BASSENS-Parking magasin", + "ref:EU:EVSE": "FRTCBP01198", + "ref": "FRTCBP01198", + "name": "Entrepôt du Bricolage - Bassens", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.949377130687999, + 45.57229420213553 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP BASSENS-Parking magasin", + "ref:EU:EVSE": "FRTCBP01198", + "ref": "FRTCBP01198", + "name": "Entrepôt du Bricolage - Bassens", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.949377130687999, + 45.57229420213553 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP BASSENS-Parking magasin", + "ref:EU:EVSE": "FRTCBP01198", + "ref": "FRTCBP01198", + "name": "Entrepôt du Bricolage - Bassens", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.146379, + 43.932802 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "341636918", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "MERCURE ALBI", + "ref:EU:EVSE": "FRTCBP01185", + "ref": "FRTCBP01185", + "name": "Mercure Albi Bastides", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.146379, + 43.932802 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "341636918", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "MERCURE ALBI", + "ref:EU:EVSE": "FRTCBP01185", + "ref": "FRTCBP01185", + "name": "Mercure Albi Bastides", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.146379, + 43.932802 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "341636918", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "MERCURE ALBI", + "ref:EU:EVSE": "FRTCBP01185", + "ref": "FRTCBP01185", + "name": "Mercure Albi Bastides", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.771762215343999, + 45.712529840333644 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "791433501", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Atelier de l'Aluminium Chanopost", + "ref:EU:EVSE": "FRTCBP00839", + "ref": "FRTCBP00839", + "name": "Atelier de l'Aluminium Chanopost", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.771762215343999, + 45.712529840333644 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "791433501", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Atelier de l'Aluminium Chanopost", + "ref:EU:EVSE": "FRTCBP00839", + "ref": "FRTCBP00839", + "name": "Atelier de l'Aluminium Chanopost", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.233597954184353, + 49.10522433612676 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "332834175", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BMW METZ", + "ref:EU:EVSE": "FRTCBP00697", + "ref": "FRTCBP00697", + "name": "CAR AVENUE - BMW METZ", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.771762215343999, + 45.712529840333644 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "791433501", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Atelier de l'Aluminium Chanopost", + "ref:EU:EVSE": "FRTCBP00839", + "ref": "FRTCBP00839", + "name": "Atelier de l'Aluminium Chanopost", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.43787095756094, + 48.21586889780601 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "347638884", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BMW EPINAL", + "ref:EU:EVSE": "FRTCBP00707", + "ref": "FRTCBP00707", + "name": "CAR AVENUE - BMW EPINAL CHAVELOT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8803172978119616, + 49.1758271238547 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "321775769", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "KIA FORBACH", + "ref:EU:EVSE": "FRTCBP00705", + "ref": "FRTCBP00705", + "name": "CAR AVENUE - KIA FORBACH", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8803172978119616, + 49.1758271238547 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "321775769", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "KIA FORBACH", + "ref:EU:EVSE": "FRTCBP00705", + "ref": "FRTCBP00705", + "name": "CAR AVENUE - KIA FORBACH", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.378737442328959, + 48.11208081972636 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "479081903", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "KIA COLMAR CAR AVENUE", + "ref:EU:EVSE": "FRTCBP00703", + "ref": "FRTCBP00703", + "name": "CAR AVENUE - KIA COLMAR", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.378737442328959, + 48.11208081972636 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "479081903", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "KIA COLMAR CAR AVENUE", + "ref:EU:EVSE": "FRTCBP00703", + "ref": "FRTCBP00703", + "name": "CAR AVENUE - KIA COLMAR", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87930851314442, + 48.94679007929618 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089158", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER MEAUX", + "ref:EU:EVSE": "FRTCBP00702", + "ref": "FRTCBP00702", + "name": "RIESTER MEAUX", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87930851314442, + 48.94679007929618 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089158", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER MEAUX", + "ref:EU:EVSE": "FRTCBP00702", + "ref": "FRTCBP00702", + "name": "RIESTER MEAUX", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87930851314442, + 48.94679007929618 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089158", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER MEAUX", + "ref:EU:EVSE": "FRTCBP00702", + "ref": "FRTCBP00702", + "name": "RIESTER MEAUX", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87930851314442, + 48.94679007929618 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089158", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER MEAUX", + "ref:EU:EVSE": "FRTCBP00702", + "ref": "FRTCBP00702", + "name": "RIESTER MEAUX", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0869538865065596, + 49.45162182529298 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089158", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER BEAUVAIS", + "ref:EU:EVSE": "FRTCBP00699", + "ref": "FRTCBP00699", + "name": "RIESTER HYUNDAI - BEAUVAIS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0869538865065596, + 49.45162182529298 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089158", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER BEAUVAIS", + "ref:EU:EVSE": "FRTCBP00699", + "ref": "FRTCBP00699", + "name": "RIESTER HYUNDAI - BEAUVAIS", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0869538865065596, + 49.45162182529298 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089158", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER BEAUVAIS", + "ref:EU:EVSE": "FRTCBP00699", + "ref": "FRTCBP00699", + "name": "RIESTER HYUNDAI - BEAUVAIS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0869538865065596, + 49.45162182529298 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089158", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER BEAUVAIS", + "ref:EU:EVSE": "FRTCBP00699", + "ref": "FRTCBP00699", + "name": "RIESTER HYUNDAI - BEAUVAIS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.044175784657921, + 48.72321115587331 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "851779066", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BMW SARREBOURG", + "ref:EU:EVSE": "FRTCBP00698", + "ref": "FRTCBP00698", + "name": "CAR AVENUE - BMW SARREBOURG", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.044175784657921, + 48.72321115587331 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "851779066", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BMW SARREBOURG", + "ref:EU:EVSE": "FRTCBP00698", + "ref": "FRTCBP00698", + "name": "CAR AVENUE - BMW SARREBOURG", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.43787095756094, + 48.21586889780601 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "347638884", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BMW EPINAL", + "ref:EU:EVSE": "FRTCBP00707", + "ref": "FRTCBP00707", + "name": "CAR AVENUE - BMW EPINAL CHAVELOT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16706109596188, + 49.14217184031736 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "321775769", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "KIA METZ", + "ref:EU:EVSE": "FRTCBP00708", + "ref": "FRTCBP00708", + "name": "CAR AVENUE - KIA METZ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16706109596188, + 49.14217184031736 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "321775769", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "KIA METZ", + "ref:EU:EVSE": "FRTCBP00708", + "ref": "FRTCBP00708", + "name": "CAR AVENUE - KIA METZ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.369344884371708, + 43.31506007724927 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "200054807", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "METROPOLE D'AIX-MARSEILLE-PROVENCE", + "ref:EU:EVSE": "FRTCBP00802", + "ref": "FRTCBP00802", + "name": "Rue de Ruffi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.771762215343999, + 45.712529840333644 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "791433501", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Atelier de l'Aluminium Chanopost", + "ref:EU:EVSE": "FRTCBP00839", + "ref": "FRTCBP00839", + "name": "Atelier de l'Aluminium Chanopost", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.771762215343999, + 45.712529840333644 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "791433501", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Atelier de l'Aluminium Chanopost", + "ref:EU:EVSE": "FRTCBP00839", + "ref": "FRTCBP00839", + "name": "Atelier de l'Aluminium Chanopost", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.072599014770537, + 46.58534902679759 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "412973711", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "VIKING CASINOS", + "ref:EU:EVSE": "FRTCBP00809", + "ref": "FRTCBP00809", + "name": "Viking Casinos Bourbon l'Archambault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-13", + "note": "", + "source:date": "2022-09-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.072599014770537, + 46.58534902679759 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "412973711", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "VIKING CASINOS", + "ref:EU:EVSE": "FRTCBP00809", + "ref": "FRTCBP00809", + "name": "Viking Casinos Bourbon l'Archambault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-13", + "note": "", + "source:date": "2022-09-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.072599014770537, + 46.58534902679759 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "412973711", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "VIKING CASINOS", + "ref:EU:EVSE": "FRTCBP00809", + "ref": "FRTCBP00809", + "name": "Viking Casinos Bourbon l'Archambault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-13", + "note": "", + "source:date": "2022-09-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.072599014770537, + 46.58534902679759 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "412973711", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "VIKING CASINOS", + "ref:EU:EVSE": "FRTCBP00809", + "ref": "FRTCBP00809", + "name": "Viking Casinos Bourbon l'Archambault", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-13", + "note": "", + "source:date": "2022-09-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.369344884371708, + 43.31506007724927 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "200054807", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "METROPOLE D'AIX-MARSEILLE-PROVENCE", + "ref:EU:EVSE": "FRTCBP00802", + "ref": "FRTCBP00802", + "name": "Rue de Ruffi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3392135708282433, + 45.72855122129419 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "345036750", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Renault Agents France", + "ref:EU:EVSE": "FRTCBP00724", + "ref": "FRTCBP00724", + "name": "BEAL ET FILS - BILLOM", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-04", + "note": "", + "source:date": "2022-09-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8680684832543035, + 46.8568964996855 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "539245803", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "CHALLANS AUTOMOBILES", + "ref:EU:EVSE": "FRTCBP00774", + "ref": "FRTCBP00774", + "name": "KIA LITTOTAL - CHALLANS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "", + "source:date": "2022-05-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8680684832543035, + 46.8568964996855 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "539245803", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "CHALLANS AUTOMOBILES", + "ref:EU:EVSE": "FRTCBP00774", + "ref": "FRTCBP00774", + "name": "KIA LITTOTAL - CHALLANS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "", + "source:date": "2022-05-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18515, + 48.87968 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "340725803", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR HOTELS", + "ref:EU:EVSE": "FRTCBP00753", + "ref": "FRTCBP00753", + "name": "HOTEL IBIS PARIS RUEIL MALMAISON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2022-09-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18515, + 48.87968 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "340725803", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR HOTELS", + "ref:EU:EVSE": "FRTCBP00753", + "ref": "FRTCBP00753", + "name": "HOTEL IBIS PARIS RUEIL MALMAISON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2022-09-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.226915023755001, + 46.19406639950159 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "392231403", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Renault Agents France", + "ref:EU:EVSE": "FRTCBP00727", + "ref": "FRTCBP00727", + "name": "GOUZON AUTOMOBILES BENOIT ET BUJON - GOUZON", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-12", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0343797063079334, + 45.396309000661006 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "753105006", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Renault Agents France", + "ref:EU:EVSE": "FRTCBP00726", + "ref": "FRTCBP00726", + "name": "EGLETONS AUTOMOBILES - EGLETONS", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-18", + "note": "", + "source:date": "2022-09-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.188131, + 48.642626 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00387", + "ref": "FRTCBP00387", + "name": "WARNING Nancy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-31", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06979, + 45.688937 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00386", + "ref": "FRTCBP00386", + "name": "WARNING Lyon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06979, + 45.688937 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00386", + "ref": "FRTCBP00386", + "name": "WARNING Lyon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.899705, + 49.178504 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "434017455", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00124", + "ref": "FRTCBP00124", + "name": "Mercure Forbach", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.899705, + 49.178504 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "434017455", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00124", + "ref": "FRTCBP00124", + "name": "Mercure Forbach", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863347, + 45.771057 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "380301317", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00123", + "ref": "FRTCBP00123", + "name": "Mercure - Villeurbanne Charpennes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-05", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863347, + 45.771057 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "380301317", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00123", + "ref": "FRTCBP00123", + "name": "Mercure - Villeurbanne Charpennes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-05", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863347, + 45.771057 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "380301317", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00123", + "ref": "FRTCBP00123", + "name": "Mercure - Villeurbanne Charpennes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-05", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.863347, + 45.771057 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "380301317", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00123", + "ref": "FRTCBP00123", + "name": "Mercure - Villeurbanne Charpennes", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-05", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.861404, + 45.759883 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "490227402", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00120", + "ref": "FRTCBP00120", + "name": "Mercure - Lyon Part Dieu", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-27", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.861404, + 45.759883 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "490227402", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00120", + "ref": "FRTCBP00120", + "name": "Mercure - Lyon Part Dieu", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-27", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.861404, + 45.759883 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "490227402", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00120", + "ref": "FRTCBP00120", + "name": "Mercure - Lyon Part Dieu", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-27", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.861404, + 45.759883 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "490227402", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00120", + "ref": "FRTCBP00120", + "name": "Mercure - Lyon Part Dieu", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-27", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.067277, + 43.420531 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "349925362", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00125", + "ref": "FRTCBP00125", + "name": "Ibis Brignoles Provence", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-16", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.067277, + 43.420531 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "349925362", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00125", + "ref": "FRTCBP00125", + "name": "Ibis Brignoles Provence", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-16", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.387229, + 48.831487 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "533390514", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00355", + "ref": "FRTCBP00355", + "name": "Pullman Paris Centre - Bercy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-20", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.691778, + 44.88082 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00382", + "ref": "FRTCBP00382", + "name": "WARNING - Bordeaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06979, + 45.688937 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00386", + "ref": "FRTCBP00386", + "name": "WARNING Lyon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06979, + 45.688937 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00386", + "ref": "FRTCBP00386", + "name": "WARNING Lyon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06979, + 45.688937 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00386", + "ref": "FRTCBP00386", + "name": "WARNING Lyon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.093141, + 47.317976 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00384", + "ref": "FRTCBP00384", + "name": "WARNING Dijon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.093141, + 47.317976 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00384", + "ref": "FRTCBP00384", + "name": "WARNING Dijon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.691778, + 44.88082 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00382", + "ref": "FRTCBP00382", + "name": "WARNING - Bordeaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03287, + 50.568861 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00371", + "ref": "FRTCBP00371", + "name": "WARNING Lille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.387229, + 48.831487 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "533390514", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00355", + "ref": "FRTCBP00355", + "name": "Pullman Paris Centre - Bercy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-20", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03287, + 50.568861 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref:EU:EVSE": "FRTCBP00371", + "ref": "FRTCBP00371", + "name": "WARNING Lille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-12", + "note": "", + "source:date": "2021-12-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.208368, + 47.300077 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "331996140", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00357", + "ref": "FRTCBP00357", + "name": "Ibis Saint Nazaire - Trignac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.208368, + 47.300077 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "331996140", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00357", + "ref": "FRTCBP00357", + "name": "Ibis Saint Nazaire - Trignac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-11", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.070968, + 50.639161 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "821185634", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00356", + "ref": "FRTCBP00356", + "name": "Mama Shelter Lille", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-01", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.070968, + 50.639161 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "821185634", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00356", + "ref": "FRTCBP00356", + "name": "Mama Shelter Lille", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-01", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.070968, + 50.639161 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "821185634", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref:EU:EVSE": "FRTCBP00356", + "ref": "FRTCBP00356", + "name": "Mama Shelter Lille", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-01", + "note": "", + "source:date": "2021-09-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2561617253619675, + 48.847266326997016 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPPDA", + "ref": "FRSAEPPDA", + "name": "SAEMES | Parking Porte d'Auteuil", + "capacity": "241", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3010955846585653, + 49.16246233244864 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "414111310", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", + "ref:EU:EVSE": "FRTCBP00999", + "ref": "FRTCBP00999", + "name": "IBIS Budget - Mondeville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7155734422333266, + 48.989153264996226 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCDM", + "ref": "FRIPKPCDM", + "name": "INTERPARKING - Cœur de Mantes (Mantes-la-Jolie)", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71151, + 48.98856 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMLJ", + "ref": "FRIPKPMLJ", + "name": "INTERPARKING - Normandie (Mantes-la-Jolie)", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71151, + 48.98856 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMLJ", + "ref": "FRIPKPMLJ", + "name": "INTERPARKING - Normandie (Mantes-la-Jolie)", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71151, + 48.98856 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMLJ", + "ref": "FRIPKPMLJ", + "name": "INTERPARKING - Normandie (Mantes-la-Jolie)", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71151, + 48.98856 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMLJ", + "ref": "FRIPKPMLJ", + "name": "INTERPARKING - Normandie (Mantes-la-Jolie)", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71151, + 48.98856 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMLJ", + "ref": "FRIPKPMLJ", + "name": "INTERPARKING - Normandie (Mantes-la-Jolie)", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71151, + 48.98856 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMLJ", + "ref": "FRIPKPMLJ", + "name": "INTERPARKING - Normandie (Mantes-la-Jolie)", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71525, + 48.99051 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPHDV", + "ref": "FRIPKPHDV", + "name": "INTERPARKING - Hôtel de Ville (Mantes-la-Jolie)", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71525, + 48.99051 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPHDV", + "ref": "FRIPKPHDV", + "name": "INTERPARKING - Hôtel de Ville (Mantes-la-Jolie)", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71525, + 48.99051 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPHDV", + "ref": "FRIPKPHDV", + "name": "INTERPARKING - Hôtel de Ville (Mantes-la-Jolie)", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71525, + 48.99051 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPHDV", + "ref": "FRIPKPHDV", + "name": "INTERPARKING - Hôtel de Ville (Mantes-la-Jolie)", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71525, + 48.99051 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPHDV", + "ref": "FRIPKPHDV", + "name": "INTERPARKING - Hôtel de Ville (Mantes-la-Jolie)", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71525, + 48.99051 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPHDV", + "ref": "FRIPKPHDV", + "name": "INTERPARKING - Hôtel de Ville (Mantes-la-Jolie)", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71525, + 48.99051 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPHDV", + "ref": "FRIPKPHDV", + "name": "INTERPARKING - Hôtel de Ville (Mantes-la-Jolie)", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71525, + 48.99051 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPHDV", + "ref": "FRIPKPHDV", + "name": "INTERPARKING - Hôtel de Ville (Mantes-la-Jolie)", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71525, + 48.99051 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPHDV", + "ref": "FRIPKPHDV", + "name": "INTERPARKING - Hôtel de Ville (Mantes-la-Jolie)", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71151, + 48.98856 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMLJ", + "ref": "FRIPKPMLJ", + "name": "INTERPARKING - Normandie (Mantes-la-Jolie)", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71151, + 48.98856 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPMLJ", + "ref": "FRIPKPMLJ", + "name": "INTERPARKING - Normandie (Mantes-la-Jolie)", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7155734422333266, + 48.989153264996226 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCDM", + "ref": "FRIPKPCDM", + "name": "INTERPARKING - Cœur de Mantes (Mantes-la-Jolie)", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7155734422333266, + 48.989153264996226 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCDM", + "ref": "FRIPKPCDM", + "name": "INTERPARKING - Cœur de Mantes (Mantes-la-Jolie)", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.595404028892517, + 48.84031677246094 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "352191910", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO MERCURE GRANVILLE", + "ref:EU:EVSE": "FRTCBP01004", + "ref": "FRTCBP01004", + "name": "VIKINGS CASINO MERCURE GRANVILLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7155734422333266, + 48.989153264996226 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCDM", + "ref": "FRIPKPCDM", + "name": "INTERPARKING - Cœur de Mantes (Mantes-la-Jolie)", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7155734422333266, + 48.989153264996226 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCDM", + "ref": "FRIPKPCDM", + "name": "INTERPARKING - Cœur de Mantes (Mantes-la-Jolie)", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7155734422333266, + 48.989153264996226 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCDM", + "ref": "FRIPKPCDM", + "name": "INTERPARKING - Cœur de Mantes (Mantes-la-Jolie)", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7155734422333266, + 48.989153264996226 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCDM", + "ref": "FRIPKPCDM", + "name": "INTERPARKING - Cœur de Mantes (Mantes-la-Jolie)", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7155734422333266, + 48.989153264996226 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCDM", + "ref": "FRIPKPCDM", + "name": "INTERPARKING - Cœur de Mantes (Mantes-la-Jolie)", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.265881, + 43.695113 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNRME", + "ref": "FRIPKNRME", + "name": "INTERPARKING - Nice Ruhl Méridien", + "capacity": "22", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-12-21", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5446009851970426, + 48.83853657966518 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "432412104", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET GRANVILLE", + "ref:EU:EVSE": "FRTCBP01000", + "ref": "FRTCBP01000", + "name": "IBIS Budget - Grandville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-29", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5446009851970426, + 48.83853657966518 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "432412104", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET GRANVILLE", + "ref:EU:EVSE": "FRTCBP01000", + "ref": "FRTCBP01000", + "name": "IBIS Budget - Grandville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-28", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3010955846585653, + 49.16246233244864 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "414111310", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", + "ref:EU:EVSE": "FRTCBP00999", + "ref": "FRTCBP00999", + "name": "IBIS Budget - Mondeville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3010955846585653, + 49.16246233244864 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "414111310", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", + "ref:EU:EVSE": "FRTCBP00999", + "ref": "FRTCBP00999", + "name": "IBIS Budget - Mondeville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3010955846585653, + 49.16246233244864 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "414111310", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", + "ref:EU:EVSE": "FRTCBP00999", + "ref": "FRTCBP00999", + "name": "IBIS Budget - Mondeville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3010955846585653, + 49.16246233244864 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "414111310", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", + "ref:EU:EVSE": "FRTCBP00999", + "ref": "FRTCBP00999", + "name": "IBIS Budget - Mondeville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3010955846585653, + 49.16246233244864 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "414111310", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", + "ref:EU:EVSE": "FRTCBP00999", + "ref": "FRTCBP00999", + "name": "IBIS Budget - Mondeville", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71206, + 48.99212 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPVPM", + "ref": "FRIPKPVPM", + "name": "INTERPARKING - Vieux Pilori (Mantes-la-Jolie)", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71206, + 48.99212 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPVPM", + "ref": "FRIPKPVPM", + "name": "INTERPARKING - Vieux Pilori (Mantes-la-Jolie)", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71206, + 48.99212 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPVPM", + "ref": "FRIPKPVPM", + "name": "INTERPARKING - Vieux Pilori (Mantes-la-Jolie)", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71206, + 48.99212 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "901573139", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPVPM", + "ref": "FRIPKPVPM", + "name": "INTERPARKING - Vieux Pilori (Mantes-la-Jolie)", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5446009851970426, + 48.83853657966518 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "432412104", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET GRANVILLE", + "ref:EU:EVSE": "FRTCBP01000", + "ref": "FRTCBP01000", + "name": "IBIS Budget - Grandville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-30", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5446009851970426, + 48.83853657966518 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "432412104", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET GRANVILLE", + "ref:EU:EVSE": "FRTCBP01000", + "ref": "FRTCBP01000", + "name": "IBIS Budget - Grandville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-01", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5446009851970426, + 48.83853657966518 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "432412104", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET GRANVILLE", + "ref:EU:EVSE": "FRTCBP01000", + "ref": "FRTCBP01000", + "name": "IBIS Budget - Grandville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-31", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20869700610637665, + 48.90683364868164 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "393397435", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS ROUGE FALAISE", + "ref:EU:EVSE": "FRTCBP01002", + "ref": "FRTCBP01002", + "name": "IBIS Rouge Falaise", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24642427703547448, + 49.414548090909335 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "812941052", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO B&B LA RIVIERE ST SAUVEUR", + "ref:EU:EVSE": "FRTCBP01003", + "ref": "FRTCBP01003", + "name": "B&B HOTEL HONFLEUR - la riviere Saint-Sauveur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24642427703547448, + 49.414548090909335 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "812941052", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO B&B LA RIVIERE ST SAUVEUR", + "ref:EU:EVSE": "FRTCBP01003", + "ref": "FRTCBP01003", + "name": "B&B HOTEL HONFLEUR - la riviere Saint-Sauveur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24642427703547448, + 49.414548090909335 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "812941052", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO B&B LA RIVIERE ST SAUVEUR", + "ref:EU:EVSE": "FRTCBP01003", + "ref": "FRTCBP01003", + "name": "B&B HOTEL HONFLEUR - la riviere Saint-Sauveur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24642427703547448, + 49.414548090909335 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "812941052", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO B&B LA RIVIERE ST SAUVEUR", + "ref:EU:EVSE": "FRTCBP01003", + "ref": "FRTCBP01003", + "name": "B&B HOTEL HONFLEUR - la riviere Saint-Sauveur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24642427703547448, + 49.414548090909335 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "812941052", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO B&B LA RIVIERE ST SAUVEUR", + "ref:EU:EVSE": "FRTCBP01003", + "ref": "FRTCBP01003", + "name": "B&B HOTEL HONFLEUR - la riviere Saint-Sauveur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24642427703547448, + 49.414548090909335 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "812941052", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO B&B LA RIVIERE ST SAUVEUR", + "ref:EU:EVSE": "FRTCBP01003", + "ref": "FRTCBP01003", + "name": "B&B HOTEL HONFLEUR - la riviere Saint-Sauveur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20869700610637665, + 48.90683364868164 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "393397435", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS ROUGE FALAISE", + "ref:EU:EVSE": "FRTCBP01002", + "ref": "FRTCBP01002", + "name": "IBIS Rouge Falaise", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5446009851970426, + 48.83853657966518 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "432412104", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET GRANVILLE", + "ref:EU:EVSE": "FRTCBP01000", + "ref": "FRTCBP01000", + "name": "IBIS Budget - Grandville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-02", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20869700610637665, + 48.90683364868164 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "393397435", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS ROUGE FALAISE", + "ref:EU:EVSE": "FRTCBP01002", + "ref": "FRTCBP01002", + "name": "IBIS Rouge Falaise", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20869700610637665, + 48.90683364868164 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "393397435", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS ROUGE FALAISE", + "ref:EU:EVSE": "FRTCBP01002", + "ref": "FRTCBP01002", + "name": "IBIS Rouge Falaise", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20869700610637665, + 48.90683364868164 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "393397435", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS ROUGE FALAISE", + "ref:EU:EVSE": "FRTCBP01002", + "ref": "FRTCBP01002", + "name": "IBIS Rouge Falaise", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20869700610637665, + 48.90683364868164 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "393397435", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS ROUGE FALAISE", + "ref:EU:EVSE": "FRTCBP01002", + "ref": "FRTCBP01002", + "name": "IBIS Rouge Falaise", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5446009851970426, + 48.83853657966518 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "432412104", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET GRANVILLE", + "ref:EU:EVSE": "FRTCBP01000", + "ref": "FRTCBP01000", + "name": "IBIS Budget - Grandville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-04", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5446009851970426, + 48.83853657966518 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "432412104", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET GRANVILLE", + "ref:EU:EVSE": "FRTCBP01000", + "ref": "FRTCBP01000", + "name": "IBIS Budget - Grandville", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-03", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35791, + 48.8354 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPSI", + "ref": "FRIPKPPSI", + "name": "INTERPARKING - Paris Salpêtrière Italie", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPAJ", + "ref": "FRIPKPPAJ", + "name": "INTERPARKING - Palais Jaurès", + "capacity": "40", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPNEM", + "ref": "FRIPKPNEM", + "name": "INTERPARKING - Nimes Nemausus", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPNEM", + "ref": "FRIPKPNEM", + "name": "INTERPARKING - Nimes Nemausus", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPNEM", + "ref": "FRIPKPNEM", + "name": "INTERPARKING - Nimes Nemausus", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPNEM", + "ref": "FRIPKPNEM", + "name": "INTERPARKING - Nimes Nemausus", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPNEM", + "ref": "FRIPKPNEM", + "name": "INTERPARKING - Nimes Nemausus", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPNEM", + "ref": "FRIPKPNEM", + "name": "INTERPARKING - Nimes Nemausus", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPNEM", + "ref": "FRIPKPNEM", + "name": "INTERPARKING - Nimes Nemausus", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPNEM", + "ref": "FRIPKPNEM", + "name": "INTERPARKING - Nimes Nemausus", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPNEM", + "ref": "FRIPKPNEM", + "name": "INTERPARKING - Nimes Nemausus", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPNEM", + "ref": "FRIPKPNEM", + "name": "INTERPARKING - Nimes Nemausus", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPNEM", + "ref": "FRIPKPNEM", + "name": "INTERPARKING - Nimes Nemausus", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPNEM", + "ref": "FRIPKPNEM", + "name": "INTERPARKING - Nimes Nemausus", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.26451, + 43.69807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPGRI", + "ref": "FRIPKPGRI", + "name": "INTERPARKING - Nice Grimaldi", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.26451, + 43.69807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPGRI", + "ref": "FRIPKPGRI", + "name": "INTERPARKING - Nice Grimaldi", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.26451, + 43.69807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPGRI", + "ref": "FRIPKPGRI", + "name": "INTERPARKING - Nice Grimaldi", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPNEM", + "ref": "FRIPKPNEM", + "name": "INTERPARKING - Nimes Nemausus", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPNEM", + "ref": "FRIPKPNEM", + "name": "INTERPARKING - Nimes Nemausus", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPNEM", + "ref": "FRIPKPNEM", + "name": "INTERPARKING - Nimes Nemausus", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPPM", + "ref": "FRIPKPPPM", + "name": "INTERPARKING - Salon de Provence place Morgan", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPPM", + "ref": "FRIPKPPPM", + "name": "INTERPARKING - Salon de Provence place Morgan", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPPM", + "ref": "FRIPKPPPM", + "name": "INTERPARKING - Salon de Provence place Morgan", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPPM", + "ref": "FRIPKPPPM", + "name": "INTERPARKING - Salon de Provence place Morgan", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPPM", + "ref": "FRIPKPPPM", + "name": "INTERPARKING - Salon de Provence place Morgan", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPPM", + "ref": "FRIPKPPPM", + "name": "INTERPARKING - Salon de Provence place Morgan", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPPM", + "ref": "FRIPKPPPM", + "name": "INTERPARKING - Salon de Provence place Morgan", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPPM", + "ref": "FRIPKPPPM", + "name": "INTERPARKING - Salon de Provence place Morgan", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPPM", + "ref": "FRIPKPPPM", + "name": "INTERPARKING - Salon de Provence place Morgan", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPPM", + "ref": "FRIPKPPPM", + "name": "INTERPARKING - Salon de Provence place Morgan", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPPM", + "ref": "FRIPKPPPM", + "name": "INTERPARKING - Salon de Provence place Morgan", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPPM", + "ref": "FRIPKPPPM", + "name": "INTERPARKING - Salon de Provence place Morgan", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPPM", + "ref": "FRIPKPPPM", + "name": "INTERPARKING - Salon de Provence place Morgan", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPPM", + "ref": "FRIPKPPPM", + "name": "INTERPARKING - Salon de Provence place Morgan", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPPM", + "ref": "FRIPKPPPM", + "name": "INTERPARKING - Salon de Provence place Morgan", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.26451, + 43.69807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPGRI", + "ref": "FRIPKPGRI", + "name": "INTERPARKING - Nice Grimaldi", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.26451, + 43.69807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPGRI", + "ref": "FRIPKPGRI", + "name": "INTERPARKING - Nice Grimaldi", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.26451, + 43.69807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPGRI", + "ref": "FRIPKPGRI", + "name": "INTERPARKING - Nice Grimaldi", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.26451, + 43.69807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPGRI", + "ref": "FRIPKPGRI", + "name": "INTERPARKING - Nice Grimaldi", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.26451, + 43.69807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPGRI", + "ref": "FRIPKPGRI", + "name": "INTERPARKING - Nice Grimaldi", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.26451, + 43.69807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPGRI", + "ref": "FRIPKPGRI", + "name": "INTERPARKING - Nice Grimaldi", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.26451, + 43.69807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPGRI", + "ref": "FRIPKPGRI", + "name": "INTERPARKING - Nice Grimaldi", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.26451, + 43.69807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPGRI", + "ref": "FRIPKPGRI", + "name": "INTERPARKING - Nice Grimaldi", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.26451, + 43.69807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPGRI", + "ref": "FRIPKPGRI", + "name": "INTERPARKING - Nice Grimaldi", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.26451, + 43.69807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPGRI", + "ref": "FRIPKPGRI", + "name": "INTERPARKING - Nice Grimaldi", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.26451, + 43.69807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPGRI", + "ref": "FRIPKPGRI", + "name": "INTERPARKING - Nice Grimaldi", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.26451, + 43.69807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPGRI", + "ref": "FRIPKPGRI", + "name": "INTERPARKING - Nice Grimaldi", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.26451, + 43.69807 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPGRI", + "ref": "FRIPKPGRI", + "name": "INTERPARKING - Nice Grimaldi", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPCTV", + "ref": "FRIPKPCTV", + "name": "INTERPARKING - Bordeaux Cité du Vin", + "capacity": "21", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPPM", + "ref": "FRIPKPPPM", + "name": "INTERPARKING - Salon de Provence place Morgan", + "capacity": "16", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.968749384840031, + 47.13239465083698 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "480120203", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY- ACCOR - IBIS BUDGET NUITS SAINT GEORGES", + "ref:EU:EVSE": "FRTCBP01334", + "ref": "FRTCBP01334", + "name": "DESFOSSEY- ACCOR - IBIS BUDGET NUITS SAINT GEORGES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.968749384840031, + 47.13239465083698 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "480120203", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY- ACCOR - IBIS BUDGET NUITS SAINT GEORGES", + "ref:EU:EVSE": "FRTCBP01334", + "ref": "FRTCBP01334", + "name": "DESFOSSEY- ACCOR - IBIS BUDGET NUITS SAINT GEORGES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.968749384840031, + 47.13239465083698 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "480120203", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY- ACCOR - IBIS BUDGET NUITS SAINT GEORGES", + "ref:EU:EVSE": "FRTCBP01334", + "ref": "FRTCBP01334", + "name": "DESFOSSEY- ACCOR - IBIS BUDGET NUITS SAINT GEORGES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1288420730115881, + 44.93076715073785 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "881834881", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "HOTEL AUX DUCS DE SIENNE", + "ref:EU:EVSE": "FRTCBP01313", + "ref": "FRTCBP01313", + "name": "HOTEL AUX DUCS DE SIENNE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1288420730115881, + 44.93076715073785 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "881834881", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "HOTEL AUX DUCS DE SIENNE", + "ref:EU:EVSE": "FRTCBP01313", + "ref": "FRTCBP01313", + "name": "HOTEL AUX DUCS DE SIENNE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1288420730115881, + 44.93076715073785 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "881834881", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "HOTEL AUX DUCS DE SIENNE", + "ref:EU:EVSE": "FRTCBP01313", + "ref": "FRTCBP01313", + "name": "HOTEL AUX DUCS DE SIENNE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1288420730115881, + 44.93076715073785 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "881834881", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "HOTEL AUX DUCS DE SIENNE", + "ref:EU:EVSE": "FRTCBP01313", + "ref": "FRTCBP01313", + "name": "HOTEL AUX DUCS DE SIENNE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-17", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.335902615342613, + 46.91060667443239 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "480120203", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY - ACCOR - IBIS RED PONTARLIER", + "ref:EU:EVSE": "FRTCBP01253", + "ref": "FRTCBP01253", + "name": "DESFOSSEY - ACCOR - IBIS RED PONTARLIER", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.335902615342613, + 46.91060667443239 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "480120203", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY - ACCOR - IBIS RED PONTARLIER", + "ref:EU:EVSE": "FRTCBP01253", + "ref": "FRTCBP01253", + "name": "DESFOSSEY - ACCOR - IBIS RED PONTARLIER", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.335902615342613, + 46.91060667443239 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "480120203", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY - ACCOR - IBIS RED PONTARLIER", + "ref:EU:EVSE": "FRTCBP01253", + "ref": "FRTCBP01253", + "name": "DESFOSSEY - ACCOR - IBIS RED PONTARLIER", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.335902615342613, + 46.91060667443239 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "480120203", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY - ACCOR - IBIS RED PONTARLIER", + "ref:EU:EVSE": "FRTCBP01253", + "ref": "FRTCBP01253", + "name": "DESFOSSEY - ACCOR - IBIS RED PONTARLIER", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834670844833498, + 47.019918627758656 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "330713108", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS RED BEAUNE CENTRE", + "ref:EU:EVSE": "FRTCBP01169", + "ref": "FRTCBP01169", + "name": "DESFOSSEY - ACCOR - IBIS RED BEAUNE CENTRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834670844833498, + 47.019918627758656 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "330713108", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS RED BEAUNE CENTRE", + "ref:EU:EVSE": "FRTCBP01169", + "ref": "FRTCBP01169", + "name": "DESFOSSEY - ACCOR - IBIS RED BEAUNE CENTRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834670844833498, + 47.019918627758656 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "330713108", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS RED BEAUNE CENTRE", + "ref:EU:EVSE": "FRTCBP01169", + "ref": "FRTCBP01169", + "name": "DESFOSSEY - ACCOR - IBIS RED BEAUNE CENTRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834670844833498, + 47.019918627758656 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "330713108", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS RED BEAUNE CENTRE", + "ref:EU:EVSE": "FRTCBP01169", + "ref": "FRTCBP01169", + "name": "DESFOSSEY - ACCOR - IBIS RED BEAUNE CENTRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.968749384840031, + 47.13239465083698 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "480120203", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY- ACCOR - IBIS BUDGET NUITS SAINT GEORGES", + "ref:EU:EVSE": "FRTCBP01334", + "ref": "FRTCBP01334", + "name": "DESFOSSEY- ACCOR - IBIS BUDGET NUITS SAINT GEORGES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-20", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.260794257663834, + 43.704066010469525 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKNGTH", + "ref": "FRIPKNGTH", + "name": "INTERPARKING - Nice Gare Thiers", + "capacity": "28", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-09", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838246420326645, + 46.796392784177385 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "501584296", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY - ACCOR - IBIS RED CHALON SUR SAONE NORD", + "ref:EU:EVSE": "FRTCBP01168", + "ref": "FRTCBP01168", + "name": "DESFOSSEY - ACCOR - IBIS RED CHALON SUR SAONE NORD", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838246420326645, + 46.796392784177385 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "501584296", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY - ACCOR - IBIS RED CHALON SUR SAONE NORD", + "ref:EU:EVSE": "FRTCBP01168", + "ref": "FRTCBP01168", + "name": "DESFOSSEY - ACCOR - IBIS RED CHALON SUR SAONE NORD", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838246420326645, + 46.796392784177385 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "501584296", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY - ACCOR - IBIS RED CHALON SUR SAONE NORD", + "ref:EU:EVSE": "FRTCBP01168", + "ref": "FRTCBP01168", + "name": "DESFOSSEY - ACCOR - IBIS RED CHALON SUR SAONE NORD", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2967943540808378, + 48.87715355652244 + ] + }, + "properties": { + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPWA", + "ref": "FRIPKPPWA", + "name": "INTERPARKING - Paris Wagram", + "capacity": "19", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-27", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2385127991437912, + 49.41841125488281 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "343123766", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "VIKINGS CASINO MERCURE HONFLEUR", + "ref:EU:EVSE": "FRTCBP01001", + "ref": "FRTCBP01001", + "name": "MERCURE - Honfleur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838246420326645, + 46.796392784177385 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "501584296", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY - ACCOR - IBIS RED CHALON SUR SAONE NORD", + "ref:EU:EVSE": "FRTCBP01168", + "ref": "FRTCBP01168", + "name": "DESFOSSEY - ACCOR - IBIS RED CHALON SUR SAONE NORD", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-12", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839751898330378, + 47.0211145050141 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "725721757", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS STYLES BEAUNE CENTRE", + "ref:EU:EVSE": "FRTCBP01166", + "ref": "FRTCBP01166", + "name": "DESFOSSEY - ACCOR - IBIS STYLES BEAUNE CENTRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.947743473694628, + 47.13177788637616 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "447541541", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY- ACCOR - IBIS RED NUITS SAINT GEORGES", + "ref:EU:EVSE": "FRTCBP01167", + "ref": "FRTCBP01167", + "name": "DESFOSSEY - ACCOR - IBIS RED NUITS SAINT GEORGES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.947743473694628, + 47.13177788637616 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "447541541", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY- ACCOR - IBIS RED NUITS SAINT GEORGES", + "ref:EU:EVSE": "FRTCBP01167", + "ref": "FRTCBP01167", + "name": "DESFOSSEY - ACCOR - IBIS RED NUITS SAINT GEORGES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.947743473694628, + 47.13177788637616 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "447541541", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY- ACCOR - IBIS RED NUITS SAINT GEORGES", + "ref:EU:EVSE": "FRTCBP01167", + "ref": "FRTCBP01167", + "name": "DESFOSSEY - ACCOR - IBIS RED NUITS SAINT GEORGES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.947743473694628, + 47.13177788637616 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "447541541", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY- ACCOR - IBIS RED NUITS SAINT GEORGES", + "ref:EU:EVSE": "FRTCBP01167", + "ref": "FRTCBP01167", + "name": "DESFOSSEY - ACCOR - IBIS RED NUITS SAINT GEORGES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839751898330378, + 47.0211145050141 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "725721757", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS STYLES BEAUNE CENTRE", + "ref:EU:EVSE": "FRTCBP01166", + "ref": "FRTCBP01166", + "name": "DESFOSSEY - ACCOR - IBIS STYLES BEAUNE CENTRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839751898330378, + 47.0211145050141 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "725721757", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS STYLES BEAUNE CENTRE", + "ref:EU:EVSE": "FRTCBP01166", + "ref": "FRTCBP01166", + "name": "DESFOSSEY - ACCOR - IBIS STYLES BEAUNE CENTRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839751898330378, + 47.0211145050141 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "725721757", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS STYLES BEAUNE CENTRE", + "ref:EU:EVSE": "FRTCBP01166", + "ref": "FRTCBP01166", + "name": "DESFOSSEY - ACCOR - IBIS STYLES BEAUNE CENTRE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2385127991437912, + 49.41841125488281 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "343123766", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "VIKINGS CASINO MERCURE HONFLEUR", + "ref:EU:EVSE": "FRTCBP01001", + "ref": "FRTCBP01001", + "name": "MERCURE - Honfleur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.846772144834794, + 47.02550828376189 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "838699742", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY - SIEGE", + "ref:EU:EVSE": "FRTCBP01165", + "ref": "FRTCBP01165", + "name": "DESFOSSEY - SIEGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.846772144834794, + 47.02550828376189 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "838699742", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY - SIEGE", + "ref:EU:EVSE": "FRTCBP01165", + "ref": "FRTCBP01165", + "name": "DESFOSSEY - SIEGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-15", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2385127991437912, + 49.41841125488281 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "343123766", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "VIKINGS CASINO MERCURE HONFLEUR", + "ref:EU:EVSE": "FRTCBP01001", + "ref": "FRTCBP01001", + "name": "MERCURE - Honfleur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2385127991437912, + 49.41841125488281 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "343123766", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "VIKINGS CASINO MERCURE HONFLEUR", + "ref:EU:EVSE": "FRTCBP01001", + "ref": "FRTCBP01001", + "name": "MERCURE - Honfleur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2385127991437912, + 49.41841125488281 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "343123766", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "VIKINGS CASINO MERCURE HONFLEUR", + "ref:EU:EVSE": "FRTCBP01001", + "ref": "FRTCBP01001", + "name": "MERCURE - Honfleur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2385127991437912, + 49.41841125488281 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "343123766", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "VIKINGS CASINO MERCURE HONFLEUR", + "ref:EU:EVSE": "FRTCBP01001", + "ref": "FRTCBP01001", + "name": "MERCURE - Honfleur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-28", + "note": "", + "source:date": "2023-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.595404028892517, + 48.84031677246094 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "352191910", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO MERCURE GRANVILLE", + "ref:EU:EVSE": "FRTCBP01004", + "ref": "FRTCBP01004", + "name": "VIKINGS CASINO MERCURE GRANVILLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324200757103425, + 48.871139475303686 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPMAD", + "ref": "FRSAEPMAD", + "name": "SAEMES | Parking Madeleine-Tronchet", + "capacity": "505", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "", + "source:date": "2022-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.595404028892517, + 48.84031677246094 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "352191910", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO MERCURE GRANVILLE", + "ref:EU:EVSE": "FRTCBP01004", + "ref": "FRTCBP01004", + "name": "VIKINGS CASINO MERCURE GRANVILLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.595404028892517, + 48.84031677246094 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "352191910", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO MERCURE GRANVILLE", + "ref:EU:EVSE": "FRTCBP01004", + "ref": "FRTCBP01004", + "name": "VIKINGS CASINO MERCURE GRANVILLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854, + 48.86359 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPTE", + "ref": "FRIPKPPTE", + "name": "INTERPARKING - Parking Temple", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30588, + 48.86761 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPFRA", + "ref": "FRIPKPFRA", + "name": "INTERPARKING - Paris François 1er", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-08", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30588, + 48.86761 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPFRA", + "ref": "FRIPKPFRA", + "name": "INTERPARKING - Paris François 1er", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-08", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30588, + 48.86761 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPFRA", + "ref": "FRIPKPFRA", + "name": "INTERPARKING - Paris François 1er", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-08", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30588, + 48.86761 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPFRA", + "ref": "FRIPKPFRA", + "name": "INTERPARKING - Paris François 1er", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-08", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045389, + 47.358192 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "383447927", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "MAISON DES ENTREPRISES DIJON", + "ref:EU:EVSE": "FRTCBP01609", + "ref": "FRTCBP01609", + "name": "MAISON DES ENTREPRISES - Dijon", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045389, + 47.358192 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "383447927", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "MAISON DES ENTREPRISES DIJON", + "ref:EU:EVSE": "FRTCBP01609", + "ref": "FRTCBP01609", + "name": "MAISON DES ENTREPRISES - Dijon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045389, + 47.358192 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "383447927", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "MAISON DES ENTREPRISES DIJON", + "ref:EU:EVSE": "FRTCBP01609", + "ref": "FRTCBP01609", + "name": "MAISON DES ENTREPRISES - Dijon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854, + 48.86359 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPTE", + "ref": "FRIPKPPTE", + "name": "INTERPARKING - Parking Temple", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854, + 48.86359 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPTE", + "ref": "FRIPKPPTE", + "name": "INTERPARKING - Parking Temple", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854, + 48.86359 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPTE", + "ref": "FRIPKPPTE", + "name": "INTERPARKING - Parking Temple", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854, + 48.86359 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPTE", + "ref": "FRIPKPPTE", + "name": "INTERPARKING - Parking Temple", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854, + 48.86359 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPTE", + "ref": "FRIPKPPTE", + "name": "INTERPARKING - Parking Temple", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854, + 48.86359 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPTE", + "ref": "FRIPKPPTE", + "name": "INTERPARKING - Parking Temple", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34781, + 48.87122 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPRA", + "ref": "FRIPKPPRA", + "name": "INTERPARKING - Paris Rex Atrium", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-20", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045389, + 47.358192 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "383447927", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "MAISON DES ENTREPRISES DIJON", + "ref:EU:EVSE": "FRTCBP01609", + "ref": "FRTCBP01609", + "name": "MAISON DES ENTREPRISES - Dijon", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref:EU:EVSE": "FRTCBP01400", + "ref": "FRTCBP01400", + "name": "Siège Social - Pitet", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref:EU:EVSE": "FRTCBP01400", + "ref": "FRTCBP01400", + "name": "Siège Social - Pitet", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2463627684080526, + 49.41412118399849 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "452873193", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", + "ref:EU:EVSE": "FRTCBP01006", + "ref": "FRTCBP01006", + "name": "IBIS - Rouge Honfleur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.259749755820001, + 46.19579293671129 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SAMSE - ERP EDB ANNEMASSE", + "ref:EU:EVSE": "FRTCBP01329", + "ref": "FRTCBP01329", + "name": "Entrepôt du Bricolage - Annemasse", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-28", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842535284659247, + 47.03594831089646 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "849691829", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SCI DUBOIS SIMONNEAU BEAUNE", + "ref:EU:EVSE": "FRTCBP01110", + "ref": "FRTCBP01110", + "name": "SPORT ET NATURE - SCI DUBOIS SIMONNEAU BEAUNE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842535284659247, + 47.03594831089646 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "849691829", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SCI DUBOIS SIMONNEAU BEAUNE", + "ref:EU:EVSE": "FRTCBP01110", + "ref": "FRTCBP01110", + "name": "SPORT ET NATURE - SCI DUBOIS SIMONNEAU BEAUNE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842535284659247, + 47.03594831089646 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "849691829", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SCI DUBOIS SIMONNEAU BEAUNE", + "ref:EU:EVSE": "FRTCBP01110", + "ref": "FRTCBP01110", + "name": "SPORT ET NATURE - SCI DUBOIS SIMONNEAU BEAUNE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842535284659247, + 47.03594831089646 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "849691829", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SCI DUBOIS SIMONNEAU BEAUNE", + "ref:EU:EVSE": "FRTCBP01110", + "ref": "FRTCBP01110", + "name": "SPORT ET NATURE - SCI DUBOIS SIMONNEAU BEAUNE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2463627684080526, + 49.41412118399849 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "452873193", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", + "ref:EU:EVSE": "FRTCBP01006", + "ref": "FRTCBP01006", + "name": "IBIS - Rouge Honfleur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2463627684080526, + 49.41412118399849 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "452873193", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", + "ref:EU:EVSE": "FRTCBP01006", + "ref": "FRTCBP01006", + "name": "IBIS - Rouge Honfleur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.259749755820001, + 46.19579293671129 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SAMSE - ERP EDB ANNEMASSE", + "ref:EU:EVSE": "FRTCBP01329", + "ref": "FRTCBP01329", + "name": "Entrepôt du Bricolage - Annemasse", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-28", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2463627684080526, + 49.41412118399849 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "452873193", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", + "ref:EU:EVSE": "FRTCBP01006", + "ref": "FRTCBP01006", + "name": "IBIS - Rouge Honfleur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2463627684080526, + 49.41412118399849 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "452873193", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", + "ref:EU:EVSE": "FRTCBP01006", + "ref": "FRTCBP01006", + "name": "IBIS - Rouge Honfleur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2463627684080526, + 49.41412118399849 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "452873193", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", + "ref:EU:EVSE": "FRTCBP01006", + "ref": "FRTCBP01006", + "name": "IBIS - Rouge Honfleur", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7257659312513107, + 48.07223223395324 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "379041379", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET BONCHAMPS LAVAL", + "ref:EU:EVSE": "FRTCBP01005", + "ref": "FRTCBP01005", + "name": "IBIS Budget Bonchamps Laval", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7257659312513107, + 48.07223223395324 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "379041379", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET BONCHAMPS LAVAL", + "ref:EU:EVSE": "FRTCBP01005", + "ref": "FRTCBP01005", + "name": "IBIS Budget Bonchamps Laval", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7257659312513107, + 48.07223223395324 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "379041379", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET BONCHAMPS LAVAL", + "ref:EU:EVSE": "FRTCBP01005", + "ref": "FRTCBP01005", + "name": "IBIS Budget Bonchamps Laval", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.259749755820001, + 46.19579293671129 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SAMSE - ERP EDB ANNEMASSE", + "ref:EU:EVSE": "FRTCBP01329", + "ref": "FRTCBP01329", + "name": "Entrepôt du Bricolage - Annemasse", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-28", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.259749755820001, + 46.19579293671129 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SAMSE - ERP EDB ANNEMASSE", + "ref:EU:EVSE": "FRTCBP01329", + "ref": "FRTCBP01329", + "name": "Entrepôt du Bricolage - Annemasse", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-28", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref:EU:EVSE": "FRTCBP01400", + "ref": "FRTCBP01400", + "name": "Siège Social - Pitet", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref:EU:EVSE": "FRTCBP01400", + "ref": "FRTCBP01400", + "name": "Siège Social - Pitet", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref:EU:EVSE": "FRTCBP01400", + "ref": "FRTCBP01400", + "name": "Siège Social - Pitet", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref:EU:EVSE": "FRTCBP01400", + "ref": "FRTCBP01400", + "name": "Siège Social - Pitet", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref:EU:EVSE": "FRTCBP01400", + "ref": "FRTCBP01400", + "name": "Siège Social - Pitet", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref:EU:EVSE": "FRTCBP01400", + "ref": "FRTCBP01400", + "name": "Siège Social - Pitet", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref:EU:EVSE": "FRTCBP01400", + "ref": "FRTCBP01400", + "name": "Siège Social - Pitet", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref:EU:EVSE": "FRTCBP01400", + "ref": "FRTCBP01400", + "name": "Siège Social - Pitet", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref:EU:EVSE": "FRTCBP01400", + "ref": "FRTCBP01400", + "name": "Siège Social - Pitet", + "capacity": "12", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.259749755820001, + 46.19579293671129 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SAMSE - ERP EDB ANNEMASSE", + "ref:EU:EVSE": "FRTCBP01329", + "ref": "FRTCBP01329", + "name": "Entrepôt du Bricolage - Annemasse", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-28", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref:EU:EVSE": "FRTCBP01400", + "ref": "FRTCBP01400", + "name": "Siège Social - Pitet", + "capacity": "12", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-24", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.259749755820001, + 46.19579293671129 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SAMSE - ERP EDB ANNEMASSE", + "ref:EU:EVSE": "FRTCBP01329", + "ref": "FRTCBP01329", + "name": "Entrepôt du Bricolage - Annemasse", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-28", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.259749755820001, + 46.19579293671129 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SAMSE - ERP EDB ANNEMASSE", + "ref:EU:EVSE": "FRTCBP01329", + "ref": "FRTCBP01329", + "name": "Entrepôt du Bricolage - Annemasse", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-28", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.259749755820001, + 46.19579293671129 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SAMSE - ERP EDB ANNEMASSE", + "ref:EU:EVSE": "FRTCBP01329", + "ref": "FRTCBP01329", + "name": "Entrepôt du Bricolage - Annemasse", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-28", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.259749755820001, + 46.19579293671129 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SAMSE - ERP EDB ANNEMASSE", + "ref:EU:EVSE": "FRTCBP01329", + "ref": "FRTCBP01329", + "name": "Entrepôt du Bricolage - Annemasse", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-28", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.259749755820001, + 46.19579293671129 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SAMSE - ERP EDB ANNEMASSE", + "ref:EU:EVSE": "FRTCBP01329", + "ref": "FRTCBP01329", + "name": "Entrepôt du Bricolage - Annemasse", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-28", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854, + 48.86359 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPTE", + "ref": "FRIPKPPTE", + "name": "INTERPARKING - Parking Temple", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854, + 48.86359 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPTE", + "ref": "FRIPKPPTE", + "name": "INTERPARKING - Parking Temple", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854, + 48.86359 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPTE", + "ref": "FRIPKPPTE", + "name": "INTERPARKING - Parking Temple", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7257659312513107, + 48.07223223395324 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "379041379", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET BONCHAMPS LAVAL", + "ref:EU:EVSE": "FRTCBP01005", + "ref": "FRTCBP01005", + "name": "IBIS Budget Bonchamps Laval", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854, + 48.86359 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPTE", + "ref": "FRIPKPPTE", + "name": "INTERPARKING - Parking Temple", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854, + 48.86359 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPTE", + "ref": "FRIPKPPTE", + "name": "INTERPARKING - Parking Temple", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854, + 48.86359 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPTE", + "ref": "FRIPKPPTE", + "name": "INTERPARKING - Parking Temple", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854, + 48.86359 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPTE", + "ref": "FRIPKPPTE", + "name": "INTERPARKING - Parking Temple", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35854, + 48.86359 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref:EU:EVSE": "FRIPKPPTE", + "ref": "FRIPKPPTE", + "name": "INTERPARKING - Parking Temple", + "capacity": "15", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320074840507427, + 48.87579799849022 + ] + }, + "properties": { + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "317032993", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAEMES", + "ref:EU:EVSE": "FRSAEPSA", + "ref": "FRSAEPSA", + "name": "SAEMES | Parking Saint-Augustin", + "capacity": "350", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.760177, + 48.462003 + ] + }, + "properties": { + "operator": "ENERGIE Eure-et-Loir", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0675389808", + "network": "FR*S28", + "ref:EU:EVSE": "FRS28E139679", + "ref": "FRS28E139679", + "name": "AUNEAU Complexe sportif", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-15", + "note": "", + "source:date": "2022-06-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.058089, + 48.503768 + ] + }, + "properties": { + "operator": "ENERGIE Eure-et-Loir", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0675389808", + "network": "FR*S28", + "ref:EU:EVSE": "FRS28E137374", + "ref": "FRS28E137374", + "name": "BELHOMERT", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-02", + "note": "", + "source:date": "2022-06-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.058089, + 48.503768 + ] + }, + "properties": { + "operator": "ENERGIE Eure-et-Loir", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0675389808", + "network": "FR*S28", + "ref:EU:EVSE": "FRS28E137373", + "ref": "FRS28E137373", + "name": "BELHOMERT", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-02", + "note": "", + "source:date": "2022-06-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.760177, + 48.462003 + ] + }, + "properties": { + "operator": "ENERGIE Eure-et-Loir", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0675389808", + "network": "FR*S28", + "ref:EU:EVSE": "FRS28E139678", + "ref": "FRS28E139678", + "name": "AUNEAU Complexe sportif", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-15", + "note": "", + "source:date": "2022-06-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.135334, + 48.079524 + ] + }, + "properties": { + "operator": "ENERGIE Eure-et-Loir", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0675389808", + "network": "FR*S28", + "ref:EU:EVSE": "FRS28E137294", + "ref": "FRS28E137294", + "name": "COURTALAIN", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-01", + "note": "", + "source:date": "2022-06-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186173, + 48.044022 + ] + }, + "properties": { + "operator": "ENERGIE Eure-et-Loir", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0675389808", + "network": "FR*S28", + "ref:EU:EVSE": "FRS28E137316", + "ref": "FRS28E137316", + "name": "LANGEY", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-01", + "note": "", + "source:date": "2022-06-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.135334, + 48.079524 + ] + }, + "properties": { + "operator": "ENERGIE Eure-et-Loir", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0675389808", + "network": "FR*S28", + "ref:EU:EVSE": "FRS28E137295", + "ref": "FRS28E137295", + "name": "COURTALAIN", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-01", + "note": "", + "source:date": "2022-06-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186173, + 48.044022 + ] + }, + "properties": { + "operator": "ENERGIE Eure-et-Loir", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0675389808", + "network": "FR*S28", + "ref:EU:EVSE": "FRS28E137317", + "ref": "FRS28E137317", + "name": "LANGEY", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-01", + "note": "", + "source:date": "2022-06-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.340418, + 48.703594 + ] + }, + "properties": { + "operator": "ENERGIE Eure-et-Loir", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0675389808", + "network": "FR*S28", + "ref:EU:EVSE": "FRS28E137367", + "ref": "FRS28E137367", + "name": "GARNAY", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-02", + "note": "", + "source:date": "2022-06-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.340418, + 48.703594 + ] + }, + "properties": { + "operator": "ENERGIE Eure-et-Loir", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0675389808", + "network": "FR*S28", + "ref:EU:EVSE": "FRS28E137368", + "ref": "FRS28E137368", + "name": "GARNAY", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-02", + "note": "", + "source:date": "2022-06-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.348379, + 48.079293 + ] + }, + "properties": { + "operator": "ENERGIE EURE-ET-LOIR", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "237840785", + "network": "FR*S28", + "ref:EU:EVSE": "FRS28ESDE28CHATDUN2B1P1", + "ref": "", + "name": "Place de Schweinfurt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-26", + "note": "", + "source:date": "2021-12-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.329051, + 48.070643 + ] + }, + "properties": { + "operator": "ENERGIE EURE-ET-LOIR", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "237840785", + "network": "FR*S28", + "ref:EU:EVSE": "FRS28ESDE28CHATDUN1B1P1", + "ref": "", + "name": "Place du 18 octobre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-26", + "note": "", + "source:date": "2021-12-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.470213, + 48.040626 + ] + }, + "properties": { + "operator": "ENERGIE EURE-ET-LOIR", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "237840785", + "network": "FR*S28", + "ref:EU:EVSE": "FRS28ESDE28CLOU1B1P1", + "ref": "", + "name": "30 Rue des Murgers", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-23", + "note": "", + "source:date": "2021-12-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.322335, + 48.676212 + ] + }, + "properties": { + "operator": "ENERGIE EURE-ET-LOIR", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "237840785", + "network": "FR*S28", + "ref:EU:EVSE": "FRS28ESDE28TREON1B1P1", + "ref": "", + "name": "Rue Jean-Michel Hérault", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-23", + "note": "", + "source:date": "2021-12-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.355261, + 48.720711 + ] + }, + "properties": { + "operator": "ENERGIE EURE-ET-LOIR", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "237840785", + "network": "FR*S28", + "ref:EU:EVSE": "FRS28ESDE28VER4B1P1", + "ref": "", + "name": "Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-11", + "note": "", + "source:date": "2021-12-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.631473, + 48.27611 + ] + }, + "properties": { + "operator": "ENERGIE EURE-ET-LOIR", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "237840785", + "network": "FR*S28", + "ref:EU:EVSE": "FRS28ESDE28VOV3B1P1", + "ref": "", + "name": "Parking de la Piscine municipale ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-03", + "note": "", + "source:date": "2021-12-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.011409, + 48.474017 + ] + }, + "properties": { + "operator": "ENERGIE EURE-ET-LOIR", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0237840785", + "network": "FR*S28", + "ref:EU:EVSE": "FRS28ESDE28LOU3B1P1", + "ref": "", + "name": "Place de la Gare - LA LOUPE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-03", + "note": "", + "source:date": "2021-09-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.428846, + 47.053393 + ] + }, + "properties": { + "operator": "2F Production", + "owner:ref:FR:SIREN": "434085395", + "email": "benjamin@2fproduction.fr", + "phone": "03 84 87 64 40", + "network": "2F Production", + "ref:EU:EVSE": "Non concerné", + "ref": "67b1865c-14bb-11ec-82a8-0242ac130003", + "name": "Bureau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "Recharge uniquement à la clientèle", + "source:date": "2021-09-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.095828, + 47.972872 + ] + }, + "properties": { + "operator": "See You Sun", + "owner:ref:FR:SIREN": "824641294", + "email": "aguerin@seeyousun.fr", + "phone": "", + "network": "Le mans sun ", + "ref:EU:EVSE": "FRSYSELMSSGDB", + "ref": "", + "name": "Saint-Georges-du-bois", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-08-31", + "note": "", + "source:date": "2021-10-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24189, + 48.033895 + ] + }, + "properties": { + "operator": "See You Sun", + "owner:ref:FR:SIREN": "824641294", + "email": "aguerin@seeyousun.fr", + "phone": "", + "network": "Le mans sun", + "ref:EU:EVSE": "FRSYSELMSSAR", + "ref": "", + "name": "Sargé Capucines", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "", + "source:date": "2021-10-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24189, + 48.033895 + ] + }, + "properties": { + "operator": "See You Sun", + "owner:ref:FR:SIREN": "824641294", + "email": "aguerin@seeyousun.fr", + "phone": "", + "network": "Le mans sun", + "ref:EU:EVSE": "FRSYSELMSSAR", + "ref": "", + "name": "Sargé Capucines", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-08-25", + "note": "", + "source:date": "2021-10-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.827436, + 48.624091 + ] + }, + "properties": { + "operator": "See You Sun", + "owner:ref:FR:SIREN": "824641294", + "email": "aguerin@seeyousun.fr", + "phone": "", + "network": "Foncière des parcs", + "ref:EU:EVSE": "FRSYSEFDPRAM", + "ref": "", + "name": "Rambouillet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-02", + "note": "", + "source:date": "2022-08-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033458, + 47.905351 + ] + }, + "properties": { + "operator": "See You Sun", + "owner:ref:FR:SIREN": "824641294", + "email": "aguerin@seeyousun.fr", + "phone": "", + "network": "Foncière des parcs", + "ref:EU:EVSE": "FRSYSEFDPCHECY", + "ref": "", + "name": "Checy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-07-19", + "note": "", + "source:date": "2022-08-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5297513000000009, + 44.790757700000015 + ] + }, + "properties": { + "operator": "HFOOD VILLENAVE", + "owner:ref:FR:SIREN": "881471791", + "email": "hippo.villenave@groupeflo.franchises.fr", + "phone": "", + "network": "HIPPOPOTAMUS", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1941188", + "name": "Parking Hippopotamus Villenave d'Ornon", + "capacity": "4", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-16", + "note": "", + "source:date": "2021-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5297513000000009, + 44.790757700000015 + ] + }, + "properties": { + "operator": "HFOOD VILLENAVE", + "owner:ref:FR:SIREN": "881471791", + "email": "hippo.villenave@groupeflo.franchises.fr", + "phone": "", + "network": "HIPPOPOTAMUS", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1941188", + "name": "Parking Hippopotamus Villenave d'Ornon", + "capacity": "4", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-16", + "note": "", + "source:date": "2021-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5297513000000009, + 44.790757700000015 + ] + }, + "properties": { + "operator": "HFOOD VILLENAVE", + "owner:ref:FR:SIREN": "881471791", + "email": "hippo.villenave@groupeflo.franchises.fr", + "phone": "", + "network": "HIPPOPOTAMUS", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1941188", + "name": "Parking Hippopotamus Villenave d'Ornon", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-16", + "note": "", + "source:date": "2021-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5297513000000009, + 44.790757700000015 + ] + }, + "properties": { + "operator": "HFOOD VILLENAVE", + "owner:ref:FR:SIREN": "881471791", + "email": "hippo.villenave@groupeflo.franchises.fr", + "phone": "", + "network": "HIPPOPOTAMUS", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1941188", + "name": "Parking Hippopotamus Villenave d'Ornon", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-16", + "note": "", + "source:date": "2021-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.094714, + 49.474365 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "449431683", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge L2B", + "ref:EU:EVSE": "FRSGAP1M2003", + "ref": "", + "name": "M2003", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-30", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.094714, + 49.474365 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "449431683", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge L2B", + "ref:EU:EVSE": "FRSGAP1M2003", + "ref": "", + "name": "M2003", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-30", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "ref:EU:EVSE": "FRSGAP1M2025", + "ref": "", + "name": "M2025", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-04", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "ref:EU:EVSE": "FRSGAP1M2023", + "ref": "", + "name": "M2023", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-04", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "ref:EU:EVSE": "FRSGAP1M2023", + "ref": "", + "name": "M2023", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-04", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "ref:EU:EVSE": "FRSGAP1M2024", + "ref": "", + "name": "M2024", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-04", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "ref:EU:EVSE": "FRSGAP1M2024", + "ref": "", + "name": "M2024", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-04", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "ref:EU:EVSE": "FRSGAP1M2024", + "ref": "", + "name": "M2024", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-04", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "ref:EU:EVSE": "FRSGAP1M2023", + "ref": "", + "name": "M2023", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-04", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "ref:EU:EVSE": "FRSGAP1M2025", + "ref": "", + "name": "M2025", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-04", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "ref:EU:EVSE": "FRSGAP1M2026", + "ref": "", + "name": "M2026", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-04", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "ref:EU:EVSE": "FRSGAP1M2026", + "ref": "", + "name": "M2026", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-04", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "ref:EU:EVSE": "FRSGAP1M2026", + "ref": "", + "name": "M2026", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-04", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "ref:EU:EVSE": "FRSGAP1M2025", + "ref": "", + "name": "M2025", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-04", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-10-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.937887, + 43.267998 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "ref:EU:EVSE": "FRSGAP1M2029", + "ref": "", + "name": "M2029", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-01", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2022-03-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.937887, + 43.267998 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "ref:EU:EVSE": "FRSGAP1M2029", + "ref": "", + "name": "M2029", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-01", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2022-03-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.937887, + 43.267998 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "ref:EU:EVSE": "FRSGAP1M2029", + "ref": "", + "name": "M2029", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-01", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2022-03-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.42, + 49.17 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "349586859", + "email": "service@ev-box.com", + "phone": "+31887755450", + "network": "Hötel Orchidées S.A.R.L Céline", + "ref:EU:EVSE": "FREVBP1926010", + "ref": "", + "name": "Hôtel Orchidées", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-23", + "note": "", + "source:date": "2021-10-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8781143, + 50.8648906 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "LELIEUR FERNAND", + "ref:EU:EVSE": "Non concerné", + "ref": "01FHDM6WJ5MKS65JRPYB48K6BD", + "name": "LELIEUR FERNAND", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-31", + "note": "", + "source:date": "2021-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2287561, + 50.4769909 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "0361626161", + "network": "SOLLIX", + "ref:EU:EVSE": "Non concerné", + "ref": "01FHFE4GDH2FH23D14SJJB8XKG", + "name": "SOLLIX", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-19", + "note": "", + "source:date": "2021-03-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.414278, + 43.268556 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZ1I0TISJ6M", + "ref": "", + "name": "Marseille-10E, 1 Rue Gaston Berger", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43951, + 43.28123 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PFBQTAZPU5O", + "ref": "", + "name": "Marseille-10E, Chemin la Valbarelle À St-Marcel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.421824, + 43.269773 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PT0JAIS6CEK", + "ref": "", + "name": "Marseille-10E, 271 Bd Paul Claudel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.421824, + 43.269773 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PT0JAIS6CEK", + "ref": "", + "name": "Marseille-10E, 271 Bd Paul Claudel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.414278, + 43.268556 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZ1I0TISJ6M", + "ref": "", + "name": "Marseille-10E, 1 Rue Gaston Berger", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.213539, + 43.417033 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PY6J1LXVNOZ", + "ref": "", + "name": "Marignane, Place Alderic Chave", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4082, + 43.280252 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PXGVSGL0WTG", + "ref": "", + "name": "Marseille-10E, 1 Rue Alfred Curtel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4082, + 43.280252 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PXGVSGL0WTG", + "ref": "", + "name": "Marseille-10E, 1 Rue Alfred Curtel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.213539, + 43.417033 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PY6J1LXVNOZ", + "ref": "", + "name": "Marignane, Place Alderic Chave", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.431066, + 43.282781 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEQOCKTZXOF", + "ref": "", + "name": "Marseille-10E, Traverse de la Roue, Bd de St Loup", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.217351, + 43.418544 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PP0AY8SWKFP", + "ref": "", + "name": "Marignane, Boulevard de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.217351, + 43.418544 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PP0AY8SWKFP", + "ref": "", + "name": "Marignane, Boulevard de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.177512, + 43.728394 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZKWGVJNQDL", + "ref": "", + "name": "Mallemort, Parking de L'Auratoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43951, + 43.28123 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PFBQTAZPU5O", + "ref": "", + "name": "Marseille-10E, Chemin la Valbarelle À St-Marcel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.459582, + 43.288847 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PH8MP2KTFOQ", + "ref": "", + "name": "Marseille-11E, 71 Boulevard Saint-Marcel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.431066, + 43.282781 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEQOCKTZXOF", + "ref": "", + "name": "Marseille-10E, Traverse de la Roue, Bd de St Loup", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.481858, + 43.298393 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PTUKBLMUEU8", + "ref": "", + "name": "Marseille-11E, 270 Route des 3Lucs la Valentine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.340986, + 43.393554 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POQETE8EV5G", + "ref": "", + "name": "Les Pennes-Mirabeau, Vieille Route de la Gavotte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.450343, + 43.303279 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PV3SQCFZ3B0", + "ref": "", + "name": "Marseille-12E, Avenue des Caillols", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.450343, + 43.303279 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PV3SQCFZ3B0", + "ref": "", + "name": "Marseille-12E, Avenue des Caillols", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.42204, + 43.318421 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PPTTDTJW2TK", + "ref": "", + "name": "Marseille-12E, 365 Avenue de Montolivet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.42204, + 43.318421 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PPTTDTJW2TK", + "ref": "", + "name": "Marseille-12E, 365 Avenue de Montolivet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.449793, + 43.312251 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PIL6NJST1KN", + "ref": "", + "name": "Marseille-12E, 31 Avenue Fernandel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.449793, + 43.312251 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PIL6NJST1KN", + "ref": "", + "name": "Marseille-12E, 31 Avenue Fernandel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.464186, + 43.312781 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUNIBW0BDIK", + "ref": "", + "name": "Marseille-12E, 3 Avenue des Trois Lucs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.464186, + 43.312781 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUNIBW0BDIK", + "ref": "", + "name": "Marseille-12E, 3 Avenue des Trois Lucs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.50964, + 43.30106 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUEYLQLJOZZ", + "ref": "", + "name": "Marseille-11E, Traverse des Migauds", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.50964, + 43.30106 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUEYLQLJOZZ", + "ref": "", + "name": "Marseille-11E, Traverse des Migauds", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.51211, + 43.31196 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PD155WPC2WD", + "ref": "", + "name": "Marseille-11E, Route de la Treille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.51211, + 43.31196 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PD155WPC2WD", + "ref": "", + "name": "Marseille-11E, Route de la Treille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.459582, + 43.288847 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PH8MP2KTFOQ", + "ref": "", + "name": "Marseille-11E, 71 Boulevard Saint-Marcel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.481858, + 43.298393 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PTUKBLMUEU8", + "ref": "", + "name": "Marseille-11E, 270 Route des 3Lucs la Valentine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.177512, + 43.728394 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZKWGVJNQDL", + "ref": "", + "name": "Mallemort, Parking de L'Auratoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.194176, + 43.551585 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGGE0J0EACH", + "ref": "", + "name": "La Fare-Les-Oliviers, Avenue René Seyssaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.340986, + 43.393554 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POQETE8EV5G", + "ref": "", + "name": "Les Pennes-Mirabeau, Vieille Route de la Gavotte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.194176, + 43.551585 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGGE0J0EACH", + "ref": "", + "name": "La Fare-Les-Oliviers, Avenue René Seyssaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.992584, + 43.476179 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWLAHPZSCZF", + "ref": "", + "name": "Istres, Complexe Sportif Davini", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.980599, + 43.515583 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZA82QDL3L4", + "ref": "", + "name": "Istres, Gare Sncf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.980599, + 43.515583 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZA82QDL3L4", + "ref": "", + "name": "Istres, Gare Sncf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988932, + 43.502474 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PVKCVXORVJJ", + "ref": "", + "name": "Istres, Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988932, + 43.502474 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PVKCVXORVJJ", + "ref": "", + "name": "Istres, Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.983332, + 43.494334 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PKFGPLZY9XH", + "ref": "", + "name": "Istres, Mairie Annexe Prépaou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.983332, + 43.494334 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PKFGPLZY9XH", + "ref": "", + "name": "Istres, Mairie Annexe Prépaou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.990593, + 43.513977 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYDWQGIEKHG", + "ref": "", + "name": "Istres, Parking Des Arnavaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.990593, + 43.513977 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYDWQGIEKHG", + "ref": "", + "name": "Istres, Parking Des Arnavaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.176413, + 43.629899 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYSFQV000CI", + "ref": "", + "name": "La Barben, Route des Feissiniers, Parking Tennis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.176413, + 43.629899 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYSFQV000CI", + "ref": "", + "name": "La Barben, Route des Feissiniers, Parking Tennis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.60471, + 43.376505 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PPMKAPXPJIE", + "ref": "", + "name": "La destrousse, Avenue du Mistral", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.60471, + 43.376505 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PPMKAPXPJIE", + "ref": "", + "name": "La destrousse, Avenue du Mistral", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43225, + 43.32013 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUDCFNPL8VK", + "ref": "", + "name": "Marseille-12E, Avenue Jean Compadieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.517073, + 43.281395 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PVMLQ8YA4XO", + "ref": "", + "name": "La Penne-Sur-Huveaune, Boulevard Voltaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.348994, + 43.380874 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCXCWHGZ76X", + "ref": "", + "name": "Les Pennes-Mirabeau, Parking Square Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.517073, + 43.281395 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PVMLQ8YA4XO", + "ref": "", + "name": "La Penne-Sur-Huveaune, Boulevard Voltaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.309295, + 43.714044 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PB9WICAGNEG", + "ref": "", + "name": "La Roque-D'Antheron, Rue de L'Europe Unie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.309295, + 43.714044 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PB9WICAGNEG", + "ref": "", + "name": "La Roque-D'Antheron, Rue de L'Europe Unie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.08596, + 43.699042 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PULLQFHU4NZ", + "ref": "", + "name": "Lamanon, Cd 71 D Rte de la Provence", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.08596, + 43.699042 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PULLQFHU4NZ", + "ref": "", + "name": "Lamanon, Cd 71 D Rte de la Provence", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.264653, + 43.654859 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POSK96BNRD9", + "ref": "", + "name": "Lambesc, Route de Caireval", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.264653, + 43.654859 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POSK96BNRD9", + "ref": "", + "name": "Lambesc, Route de Caireval", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.124454, + 43.59286 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PKYWXS8TNNN", + "ref": "", + "name": "Lançon-Provence, Rue Saint-Marc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.124454, + 43.59286 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PKYWXS8TNNN", + "ref": "", + "name": "Lançon-Provence, Rue Saint-Marc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.487714, + 43.510783 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PVGYZ8CMZRO", + "ref": "", + "name": "Le Tholonet, 664 Avenue Paul Julien", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.487714, + 43.510783 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PVGYZ8CMZRO", + "ref": "", + "name": "Le Tholonet, 664 Avenue Paul Julien", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.309629, + 43.410797 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQUT7OKQ0SX", + "ref": "", + "name": "Les Pennes-Mirabeau, Parking D113", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.309629, + 43.410797 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQUT7OKQ0SX", + "ref": "", + "name": "Les Pennes-Mirabeau, Parking D113", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.348994, + 43.380874 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCXCWHGZ76X", + "ref": "", + "name": "Les Pennes-Mirabeau, Parking Square Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43225, + 43.32013 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUDCFNPL8VK", + "ref": "", + "name": "Marseille-12E, Avenue Jean Compadieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.374552, + 43.332198 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PK8PQPUH6YB", + "ref": "", + "name": "Marseille-14E, 9 Boulevard Gay Lussac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.446643, + 43.342856 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGJM32KDT73", + "ref": "", + "name": "Marseille-13E, 1 Rue Augustin Fresnel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.368833, + 43.301462 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGYNNQEOQUU", + "ref": "", + "name": "Marseille-2E, 1 Rue Jean François Leca", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.371379, + 43.309042 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGX8QBUSVXW", + "ref": "", + "name": "Marseille-3E, 20 Rue Désirée Clary", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.371379, + 43.309042 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGX8QBUSVXW", + "ref": "", + "name": "Marseille-3E, 20 Rue Désirée Clary", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.366179, + 43.298904 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUEV5Y4HIUP", + "ref": "", + "name": "Marseille-2E, 38 Rue de L'Evêché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.366179, + 43.298904 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUEV5Y4HIUP", + "ref": "", + "name": "Marseille-2E, 38 Rue de L'Evêché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.367851, + 43.308184 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYLFBSWOZES", + "ref": "", + "name": "Marseille-2E, 29 Boulevard de dunkerque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.367851, + 43.308184 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYLFBSWOZES", + "ref": "", + "name": "Marseille-2E, 29 Boulevard de dunkerque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.368833, + 43.301462 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGYNNQEOQUU", + "ref": "", + "name": "Marseille-2E, 1 Rue Jean François Leca", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.446643, + 43.342856 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGJM32KDT73", + "ref": "", + "name": "Marseille-13E, 1 Rue Augustin Fresnel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381055, + 43.301561 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCCCQNBES7L", + "ref": "", + "name": "Marseille-1E, Place des Marseillaises", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381055, + 43.301561 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCCCQNBES7L", + "ref": "", + "name": "Marseille-1E, Place des Marseillaises", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.38179, + 43.299055 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PT2C8IPTWZ0", + "ref": "", + "name": "Marseille-1E, 14 Allée Léon Gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.38179, + 43.299055 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PT2C8IPTWZ0", + "ref": "", + "name": "Marseille-1E, 14 Allée Léon Gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39319, + 43.304651 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PALJ6PPQPWI", + "ref": "", + "name": "Marseille-1E, 11 Boulevard Montricher", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39319, + 43.304651 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PALJ6PPQPWI", + "ref": "", + "name": "Marseille-1E, 11 Boulevard Montricher", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.389845, + 43.309831 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PJNUDLIYWFR", + "ref": "", + "name": "Marseille-3E, 28 Rue Jobin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.389845, + 43.309831 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PJNUDLIYWFR", + "ref": "", + "name": "Marseille-3E, 28 Rue Jobin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.400517, + 43.302721 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PNJ7DFNAEGP", + "ref": "", + "name": "Marseille-4E, 41 Boulevard Françoise duparc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.400517, + 43.302721 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PNJ7DFNAEGP", + "ref": "", + "name": "Marseille-4E, 41 Boulevard Françoise duparc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.400736, + 43.310012 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PABIQLDXW2C", + "ref": "", + "name": "Marseille-4E, Avenue des Chartreux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.400736, + 43.310012 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PABIQLDXW2C", + "ref": "", + "name": "Marseille-4E, Avenue des Chartreux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.397974, + 43.315138 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQPVEMIHEDP", + "ref": "", + "name": "Marseille-4E, Avenue des Chutes lavie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.397974, + 43.315138 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQPVEMIHEDP", + "ref": "", + "name": "Marseille-4E, Avenue des Chutes lavie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.396799, + 43.303235 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYMKN4UZNFP", + "ref": "", + "name": "Marseille-4E, Boulevard Jardin Zoologique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.396799, + 43.303235 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYMKN4UZNFP", + "ref": "", + "name": "Marseille-4E, Boulevard Jardin Zoologique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.399566, + 43.300388 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGAHEBRSFVD", + "ref": "", + "name": "Marseille-4E, Rue du Bosquet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.399566, + 43.300388 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGAHEBRSFVD", + "ref": "", + "name": "Marseille-4E, Rue du Bosquet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.396151, + 43.289353 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PKIIZS7PVVD", + "ref": "", + "name": "Marseille-5E, Boulevard Baille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.396151, + 43.289353 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PKIIZS7PVVD", + "ref": "", + "name": "Marseille-5E, Boulevard Baille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.400273, + 43.289235 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PKSP20MZJOH", + "ref": "", + "name": "Marseille-5E, Boulevard Jean Moulin (Jarret)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.400273, + 43.289235 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PKSP20MZJOH", + "ref": "", + "name": "Marseille-5E, Boulevard Jean Moulin (Jarret)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387306, + 43.295444 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYACDJSIY62", + "ref": "", + "name": "Marseille-5E, Place Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329846, + 43.361274 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PFMWWHATL3A", + "ref": "", + "name": "Marseille-16E, Boulevard D'Annam", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329846, + 43.361274 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PFMWWHATL3A", + "ref": "", + "name": "Marseille-16E, Boulevard D'Annam", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.337002, + 43.357724 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PNFXKHPISCR", + "ref": "", + "name": "Marseille-16E, 9 Rue Rabelais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.436152, + 43.342681 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PER6BQRZZTP", + "ref": "", + "name": "Marseille-13E, Rue Frédéric Joliot Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409596, + 43.320297 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYVJUQE7XDA", + "ref": "", + "name": "Marseille-13E, 101 Rue Alphonse Daudet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409596, + 43.320297 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYVJUQE7XDA", + "ref": "", + "name": "Marseille-13E, 101 Rue Alphonse Daudet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.413793, + 43.326733 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEPGB68LSIC", + "ref": "", + "name": "Marseille-13E, 34 Bouevard Laveran", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.413793, + 43.326733 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEPGB68LSIC", + "ref": "", + "name": "Marseille-13E, 34 Bouevard Laveran", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.418971, + 43.329629 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEZBAZP1QTI", + "ref": "", + "name": "Marseille-13E, 45 Avenue de Saint-Jérôme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.418971, + 43.329629 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEZBAZP1QTI", + "ref": "", + "name": "Marseille-13E, 45 Avenue de Saint-Jérôme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.437851, + 43.352498 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWLH6PU4ONQ", + "ref": "", + "name": "Marseille-13E, 6 Chemin de Palama", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.437851, + 43.352498 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWLH6PU4ONQ", + "ref": "", + "name": "Marseille-13E, 6 Chemin de Palama", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404849, + 43.317055 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PDZK91KHIS4", + "ref": "", + "name": "Marseille-13E, 61 Avenue de Saint-Just", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404849, + 43.317055 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PDZK91KHIS4", + "ref": "", + "name": "Marseille-13E, 61 Avenue de Saint-Just", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.455123, + 43.32522 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQRFXWU2P8I", + "ref": "", + "name": "Marseille-13E, Avenue des Poilus", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.455123, + 43.32522 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQRFXWU2P8I", + "ref": "", + "name": "Marseille-13E, Avenue des Poilus", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.42744, + 43.32901 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEIJQU5GBZX", + "ref": "", + "name": "Marseille-13E, Rue des Glycines", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.42744, + 43.32901 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEIJQU5GBZX", + "ref": "", + "name": "Marseille-13E, Rue des Glycines", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.436152, + 43.342681 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PER6BQRZZTP", + "ref": "", + "name": "Marseille-13E, Rue Frédéric Joliot Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.337002, + 43.357724 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PNFXKHPISCR", + "ref": "", + "name": "Marseille-16E, 9 Rue Rabelais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.382365, + 43.32494 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWL9CIGXIQ9", + "ref": "", + "name": "Marseille-14E, 42 Boulevard Charles Moretti", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.382365, + 43.32494 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWL9CIGXIQ9", + "ref": "", + "name": "Marseille-14E, 42 Boulevard Charles Moretti", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.992965, + 43.50076 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PIR3488PKF3", + "ref": "", + "name": "Istres, Cec Stade", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.374552, + 43.332198 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PK8PQPUH6YB", + "ref": "", + "name": "Marseille-14E, 9 Boulevard Gay Lussac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5, + 43.34564 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PBV9ES5PSGD", + "ref": "", + "name": "Marseille-14E, Boulevard Simon Bolivar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5, + 43.34564 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PBV9ES5PSGD", + "ref": "", + "name": "Marseille-14E, Boulevard Simon Bolivar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356946, + 43.339505 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCWXBIOCK47", + "ref": "", + "name": "Marseille-15E, Boulevard Ledru-Rollin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356946, + 43.339505 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCWXBIOCK47", + "ref": "", + "name": "Marseille-15E, Boulevard Ledru-Rollin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.361972, + 43.379781 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PKLJUML34FA", + "ref": "", + "name": "Marseille-15E, Chemin des Bourrely", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.361972, + 43.379781 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PKLJUML34FA", + "ref": "", + "name": "Marseille-15E, Chemin des Bourrely", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.363271, + 43.324349 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PBODBAXFWO9", + "ref": "", + "name": "Marseille-15E, Rue André Allar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.363271, + 43.324349 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PBODBAXFWO9", + "ref": "", + "name": "Marseille-15E, Rue André Allar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.309551, + 43.362236 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PSMLJQ89TDS", + "ref": "", + "name": "Marseille-16E, 148 Plage de L'Estaque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.309551, + 43.362236 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PSMLJQ89TDS", + "ref": "", + "name": "Marseille-16E, 148 Plage de L'Estaque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.992584, + 43.476179 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWLAHPZSCZF", + "ref": "", + "name": "Istres, Complexe Sportif Davini", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44866, + 43.450954 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PHN9WAB5YWI", + "ref": "", + "name": "Gardanne, Avenue D'Arménie (Semag)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.992965, + 43.50076 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PIR3488PKF3", + "ref": "", + "name": "Istres, Cec Stade", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.419379, + 43.556706 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGFPIIHPEMY", + "ref": "", + "name": "Aix-En-Provence, Chemin des Plâtrières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.443726, + 43.528782 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PN1OD6X6J1D", + "ref": "", + "name": "Aix-En-Provence, Cours Sextius", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.453065, + 43.529819 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PPK9OWIO0TU", + "ref": "", + "name": "Aix-En-Provence, Cours Saint-Louis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.453065, + 43.529819 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PPK9OWIO0TU", + "ref": "", + "name": "Aix-En-Provence, Cours Saint-Louis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387851, + 43.50363 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PBBUN2MXDGQ", + "ref": "", + "name": "Aix-En-Provence, Cours Marcel Bremond", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387851, + 43.50363 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PBBUN2MXDGQ", + "ref": "", + "name": "Aix-En-Provence, Cours Marcel Bremond", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.419379, + 43.556706 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGFPIIHPEMY", + "ref": "", + "name": "Aix-En-Provence, Chemin des Plâtrières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.450732, + 43.524099 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PHKAUJ09YVD", + "ref": "", + "name": "Aix-En-Provence, Boulevard du Roi René", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.422441, + 43.580561 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PIZWTR3Q4WP", + "ref": "", + "name": "Aix-En-Provence, Avenue Jean Orsini", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.450732, + 43.524099 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PHKAUJ09YVD", + "ref": "", + "name": "Aix-En-Provence, Boulevard du Roi René", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.419438, + 43.536986 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PAKOHJSGZDG", + "ref": "", + "name": "Aix-En-Provence, Avenue Saint-Mitre des Champs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.419438, + 43.536986 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PAKOHJSGZDG", + "ref": "", + "name": "Aix-En-Provence, Avenue Saint-Mitre des Champs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.418336, + 43.484952 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PJFUQO0CX1X", + "ref": "", + "name": "Aix-En-Provence, Avenue Robert Daugey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.418336, + 43.484952 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PJFUQO0CX1X", + "ref": "", + "name": "Aix-En-Provence, Avenue Robert Daugey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.449734, + 43.519155 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PX3IV7MS20Y", + "ref": "", + "name": "Aix-En-Provence, Avenue Jules Ferry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.443726, + 43.528782 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PN1OD6X6J1D", + "ref": "", + "name": "Aix-En-Provence, Cours Sextius", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.420083, + 43.522361 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PTISNEH7IUG", + "ref": "", + "name": "Aix-En-Provence, Place Albert laforest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.420083, + 43.522361 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PTISNEH7IUG", + "ref": "", + "name": "Aix-En-Provence, Place Albert laforest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.460704, + 43.526456 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PBJRSHPQN6R", + "ref": "", + "name": "Aix-En-Provence, Place du Souvenir Français", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.460704, + 43.526456 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PBJRSHPQN6R", + "ref": "", + "name": "Aix-En-Provence, Place du Souvenir Français", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.438274, + 43.509298 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PIUBOYD33AF", + "ref": "", + "name": "Aix-En-Provence, Place Sextia Conca", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.438274, + 43.509298 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PIUBOYD33AF", + "ref": "", + "name": "Aix-En-Provence, Place Sextia Conca", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.459641, + 43.556239 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PRUH4VBDEU2", + "ref": "", + "name": "Aix-En-Provence, Route de Sisteron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.459641, + 43.556239 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PRUH4VBDEU2", + "ref": "", + "name": "Aix-En-Provence, Route de Sisteron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.435907, + 43.515683 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PS0GR1QBOSU", + "ref": "", + "name": "Aix-En-Provence, Rue du Dr Lucien Cartotto", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.435907, + 43.515683 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PS0GR1QBOSU", + "ref": "", + "name": "Aix-En-Provence, Rue du Dr Lucien Cartotto", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.347074, + 43.485668 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PC5BXB3E6ZD", + "ref": "", + "name": "Aix-en-Provence, Rue Neil Armstrong", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.347074, + 43.485668 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PC5BXB3E6ZD", + "ref": "", + "name": "Aix-en-Provence, Rue Neil Armstrong", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.488317, + 43.357858 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PDJ0EEX8K6J", + "ref": "", + "name": "Allauch, Avenue Jean Moulin, Parking Fassanaro", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.488317, + 43.357858 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PDJ0EEX8K6J", + "ref": "", + "name": "Allauch, Avenue Jean Moulin, Parking Fassanaro", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.483673, + 43.336789 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PHPWSYVR6AD", + "ref": "", + "name": "Allauch, Chemin du Garlaban, Parking Monge", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.483673, + 43.336789 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PHPWSYVR6AD", + "ref": "", + "name": "Allauch, Chemin du Garlaban, Parking Monge", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.449734, + 43.519155 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PX3IV7MS20Y", + "ref": "", + "name": "Aix-En-Provence, Avenue Jules Ferry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.422441, + 43.580561 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PIZWTR3Q4WP", + "ref": "", + "name": "Aix-En-Provence, Avenue Jean Orsini", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.992965, + 43.50076 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PIR3488PKF3", + "ref": "", + "name": "Istres, Cec Stade", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755862, + 43.788423 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPGSYEOU8ML0", + "ref": "", + "name": "Mas-Blanc-Des-Alpilles, Place Pierre Limberton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.870647, + 43.691626 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPH5VUJOQTXG", + "ref": "", + "name": "Mouries, Pré D'Ester", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.870647, + 43.691626 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPH5VUJOQTXG", + "ref": "", + "name": "Mouries, Pré D'Ester", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80578, + 43.721516 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPBHH4EKNEYH", + "ref": "", + "name": "Maussane-Les-Alpilles, Maison De Retraite", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80578, + 43.721516 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPBHH4EKNEYH", + "ref": "", + "name": "Maussane-Les-Alpilles, Maison De Retraite", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.805189, + 43.722592 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPW1O0NOVXTC", + "ref": "", + "name": "Maussane-Les-Alpilles, Avenue Des Alpilles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.805189, + 43.722592 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPW1O0NOVXTC", + "ref": "", + "name": "Maussane-Les-Alpilles, Avenue Des Alpilles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755862, + 43.788423 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPGSYEOU8ML0", + "ref": "", + "name": "Mas-Blanc-Des-Alpilles, Place Pierre Limberton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.461132, + 43.534036 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUSBPJLWZ15", + "ref": "", + "name": "Aix-En-Provence, Avenue Jean Et Marcel Fontenaille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.709475, + 43.724666 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPMKWTRFEQK1", + "ref": "", + "name": "Fontvieille, Parking Des Arènes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.709475, + 43.724666 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPMKWTRFEQK1", + "ref": "", + "name": "Fontvieille, Parking Des Arènes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.94716, + 43.761237 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPPGWCRPMKIO", + "ref": "", + "name": "Eygalieres, Parking Avenue Leon Blum", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.94716, + 43.761237 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPPGWCRPMKIO", + "ref": "", + "name": "Eygalieres, Parking Avenue Leon Blum", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.948532, + 43.706298 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPUCXEDJDCYB", + "ref": "", + "name": "Aureille, Place Du Huit Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.948532, + 43.706298 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPUCXEDJDCYB", + "ref": "", + "name": "Aureille, Place Du Huit Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.782551, + 43.719317 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPOPUJ4UCI7I", + "ref": "", + "name": "Paradou, Parking Des coles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.782551, + 43.719317 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPOPUJ4UCI7I", + "ref": "", + "name": "Paradou, Parking Des coles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.726419, + 43.781708 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPH0XRZTNB67", + "ref": "", + "name": "Saint-Etienne-Du-Gres, Avenue Frédéric Mistral", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.726419, + 43.781708 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPH0XRZTNB67", + "ref": "", + "name": "Saint-Etienne-Du-Gres, Avenue Frédéric Mistral", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834699, + 43.788743 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPSFIA7B7ZKA", + "ref": "", + "name": "St-Remy-de-Provence, Avenue De La Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834699, + 43.788743 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPSFIA7B7ZKA", + "ref": "", + "name": "St-Remy-de-Provence, Avenue De La Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.829994, + 43.790756 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPSY6TQUL6QL", + "ref": "", + "name": "St-Remy-de-Provence, Avenue Louis Mistral", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.829994, + 43.790756 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPSY6TQUL6QL", + "ref": "", + "name": "St-Remy-de-Provence, Avenue Louis Mistral", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.831202, + 43.786244 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPFCDYTO0R4D", + "ref": "", + "name": "St-Remy-de-Provence, Office De Tourisme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.831202, + 43.786244 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPFCDYTO0R4D", + "ref": "", + "name": "St-Remy-de-Provence, Office De Tourisme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.829711, + 43.792941 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPVYUJSOBDFD", + "ref": "", + "name": "St-Remy-de-Provence, Place Du Général De Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.829711, + 43.792941 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRABAPVYUJSOBDFD", + "ref": "", + "name": "St-Remy-de-Provence, Place Du Général De Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.431899, + 43.524809 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGP4NZAMPXA", + "ref": "", + "name": "Aix-En-Provence, Avenue de Tübingen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.431899, + 43.524809 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGP4NZAMPXA", + "ref": "", + "name": "Aix-En-Provence, Avenue de Tübingen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.354437, + 43.491323 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PW22UGJSMYD", + "ref": "", + "name": "Aix-en-Provence, avenue François Argo, Parking Annexe Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.354437, + 43.491323 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PW22UGJSMYD", + "ref": "", + "name": "Aix-en-Provence, avenue François Argo, Parking Annexe Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.461132, + 43.534036 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUSBPJLWZ15", + "ref": "", + "name": "Aix-En-Provence, Avenue Jean Et Marcel Fontenaille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.468472, + 43.334722 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PL8S0A4J2GJ", + "ref": "", + "name": "Allauch, Chemin Marius Milon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.468472, + 43.334722 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PL8S0A4J2GJ", + "ref": "", + "name": "Allauch, Chemin Marius Milon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1569112, + 43.704091 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PM2DDVWBKWB", + "ref": "", + "name": "Alleins, Avenue René Cassin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.193556, + 43.356012 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQIH3BAQZEB", + "ref": "", + "name": "Ensues-la-Redonne, Parking des Coulins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44866, + 43.450954 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PHN9WAB5YWI", + "ref": "", + "name": "Gardanne, Avenue D'Arménie (Semag)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39792, + 43.295949 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PU796VHPE9G", + "ref": "", + "name": "Marseille-5E, Rue George", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.944231, + 43.454421 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZWOMJGRCUI", + "ref": "", + "name": "Fos-Sur-Mer, Allée Henri Barbusse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.944231, + 43.454421 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZWOMJGRCUI", + "ref": "", + "name": "Fos-Sur-Mer, Allée Henri Barbusse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.026815, + 43.69299 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PLZZ3ATOVJ7", + "ref": "", + "name": "Eyguieres, Avenue Saint Veredeme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.026815, + 43.69299 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PLZZ3ATOVJ7", + "ref": "", + "name": "Eyguieres, Avenue Saint Veredeme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.193556, + 43.356012 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQIH3BAQZEB", + "ref": "", + "name": "Ensues-la-Redonne, Parking des Coulins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1569112, + 43.704091 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PM2DDVWBKWB", + "ref": "", + "name": "Alleins, Avenue René Cassin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.353442, + 43.571542 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PE88OYFM8DH", + "ref": "", + "name": "Eguilles, Avenue des Anciens Combattants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.353442, + 43.571542 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PE88OYFM8DH", + "ref": "", + "name": "Eguilles, Avenue des Anciens Combattants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.700573, + 43.274927 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POAU5YBNLRK", + "ref": "", + "name": "Cuges-Les-Pins, Chemin du Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.700573, + 43.274927 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POAU5YBNLRK", + "ref": "", + "name": "Cuges-Les-Pins, Chemin du Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071913, + 43.565413 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PM1EIINVUXQ", + "ref": "", + "name": "Cornillon-Confoux, Rue des Ferrages", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071913, + 43.565413 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PM1EIINVUXQ", + "ref": "", + "name": "Cornillon-Confoux, Rue des Ferrages", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.47019, + 43.451656 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PAIILRQ9GK8", + "ref": "", + "name": "Gardanne, Parking de la Cité Administrative", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.47019, + 43.451656 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PAIILRQ9GK8", + "ref": "", + "name": "Gardanne, Parking de la Cité Administrative", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.464812, + 43.434866 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POBINORTZUC", + "ref": "", + "name": "Gardanne, Place de Biver", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.464812, + 43.434866 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POBINORTZUC", + "ref": "", + "name": "Gardanne, Place de Biver", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.474463, + 43.4563 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWV0SZKH55C", + "ref": "", + "name": "Gardanne, Rue du Stade, Parking Savine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.474463, + 43.4563 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWV0SZKH55C", + "ref": "", + "name": "Gardanne, Rue du Stade, Parking Savine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.627451, + 43.293444 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEY80KDCGAI", + "ref": "", + "name": "Gemenos, Chemin de Routelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.627451, + 43.293444 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEY80KDCGAI", + "ref": "", + "name": "Gemenos, Chemin de Routelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23536, + 43.39324 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCLGWBICPBU", + "ref": "", + "name": "Gignac-la-Nerthe, Boulevard Perrier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23536, + 43.39324 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCLGWBICPBU", + "ref": "", + "name": "Gignac-la-Nerthe, Boulevard Perrier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.063095, + 43.605489 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PVGSP7YZJNR", + "ref": "", + "name": "Grans, Parking Place du Souvenir Français", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.063095, + 43.605489 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PVGSP7YZJNR", + "ref": "", + "name": "Grans, Parking Place du Souvenir Français", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.995847, + 43.499057 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POIIHE59O2J", + "ref": "", + "name": "Istres, Cec Piscine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.995847, + 43.499057 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POIIHE59O2J", + "ref": "", + "name": "Istres, Cec Piscine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.995847, + 43.499057 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POIIHE59O2J", + "ref": "", + "name": "Istres, Cec Piscine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.995847, + 43.499057 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POIIHE59O2J", + "ref": "", + "name": "Istres, Cec Piscine", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.992965, + 43.50076 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PIR3488PKF3", + "ref": "", + "name": "Istres, Cec Stade", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.162934, + 43.382782 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYJVZYZLZON", + "ref": "", + "name": "Chateauneuf-Les-Martigues, Place des Résistants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.162934, + 43.382782 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYJVZYZLZON", + "ref": "", + "name": "Chateauneuf-Les-Martigues, Place des Résistants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.246711, + 43.719609 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PROAELTYHGN", + "ref": "", + "name": "Charleval, Place André Leblanc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.168224, + 43.472999 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PFYFFW8P7QL", + "ref": "", + "name": "Berre-L'Etang, Parking des Lisses", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.545049, + 43.284336 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWFTGFOVTRE", + "ref": "", + "name": "Aubagne, 1465 Route Nationnale 8, Le Charrel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.545049, + 43.284336 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWFTGFOVTRE", + "ref": "", + "name": "Aubagne, 1465 Route Nationnale 8, Le Charrel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.57308, + 43.288849 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PP8NE1JHEQV", + "ref": "", + "name": "Aubagne, 22 Avenue de Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.57308, + 43.288849 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PP8NE1JHEQV", + "ref": "", + "name": "Aubagne, 22 Avenue de Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56348, + 43.29134 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCVTJZP23HZ", + "ref": "", + "name": "Aubagne, Avenue des Soeurs Gastine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56348, + 43.29134 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCVTJZP23HZ", + "ref": "", + "name": "Aubagne, Avenue des Soeurs Gastine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.603132, + 43.287061 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWLDRUCN0MP", + "ref": "", + "name": "Aubagne, Centre de Vie Agora", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.603132, + 43.287061 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWLDRUCN0MP", + "ref": "", + "name": "Aubagne, Centre de Vie Agora", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.632679, + 43.368648 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCSDTYL4XBB", + "ref": "", + "name": "Auriol, Place Raymond Plumier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.632679, + 43.368648 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCSDTYL4XBB", + "ref": "", + "name": "Auriol, Place Raymond Plumier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.156308, + 43.663796 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCCLDSL1I4Z", + "ref": "", + "name": "Aurons, Route de Pelissane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.156308, + 43.663796 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCCLDSL1I4Z", + "ref": "", + "name": "Aurons, Route de Pelissane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.168563, + 43.477008 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PPD4HPWAKTN", + "ref": "", + "name": "Berre-L'Etang, Parking de L'Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.168563, + 43.477008 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PPD4HPWAKTN", + "ref": "", + "name": "Berre-L'Etang, Parking de L'Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.168224, + 43.472999 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PFYFFW8P7QL", + "ref": "", + "name": "Berre-L'Etang, Parking des Lisses", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.246711, + 43.719609 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PROAELTYHGN", + "ref": "", + "name": "Charleval, Place André Leblanc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423155, + 43.44122 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PKT5N8G7RMY", + "ref": "", + "name": "Bouc-Bel-Air, Boulevard Montesquieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423155, + 43.44122 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PKT5N8G7RMY", + "ref": "", + "name": "Bouc-Bel-Air, Boulevard Montesquieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41303, + 43.459768 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PXTZTDXREI6", + "ref": "", + "name": "Bouc-Bel-Air, Impasse des Acacias", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41303, + 43.459768 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PXTZTDXREI6", + "ref": "", + "name": "Bouc-Bel-Air, Impasse des Acacias", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.352806, + 43.459944 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEEFI9CMTW1", + "ref": "", + "name": "Cabries, rue Roumavage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.352806, + 43.459944 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEEFI9CMTW1", + "ref": "", + "name": "Cabries, rue Roumavage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.566859, + 43.255951 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQNERYS0WMI", + "ref": "", + "name": "Carnoux-En-Provence, Place du Maréchal Lyautey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.566859, + 43.255951 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQNERYS0WMI", + "ref": "", + "name": "Carnoux-En-Provence, Place du Maréchal Lyautey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.151676, + 43.33248 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PBWI7YUBTIJ", + "ref": "", + "name": "Carry-Le-Rouet, Avenue Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.151676, + 43.33248 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PBWI7YUBTIJ", + "ref": "", + "name": "Carry-Le-Rouet, Avenue Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.536259, + 43.218608 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PNTVGVQ3QZ5", + "ref": "", + "name": "Cassis, Parking Daudet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.536259, + 43.218608 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PNTVGVQ3QZ5", + "ref": "", + "name": "Cassis, Parking Daudet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.624754, + 43.210398 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZKDFFRVJVT", + "ref": "", + "name": "Ceyreste, Chemin des Peupliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.624754, + 43.210398 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZKDFFRVJVT", + "ref": "", + "name": "Ceyreste, Chemin des Peupliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387306, + 43.295444 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYACDJSIY62", + "ref": "", + "name": "Marseille-5E, Place Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.421871, + 43.253283 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PORSVRLD7DV", + "ref": "", + "name": "Marseille-9E, 83-81 Boulevard du Redon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39792, + 43.295949 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PU796VHPE9G", + "ref": "", + "name": "Marseille-5E, Rue George", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395063, + 43.266244 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PXQFUC40G3S", + "ref": "", + "name": "Marseille-9E, 131 Boulevard Michelet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.057812, + 43.40283 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PSGHPRL5APS", + "ref": "", + "name": "Martigues, Quai Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.057812, + 43.40283 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PSGHPRL5APS", + "ref": "", + "name": "Martigues, Quai Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.053184, + 43.339068 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PJVEBD8EYAJ", + "ref": "", + "name": "Martigues, Avenue de la Gare de la Couronne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.053184, + 43.339068 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PJVEBD8EYAJ", + "ref": "", + "name": "Martigues, Avenue de la Gare de la Couronne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39766, + 43.24166 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POQNYMVOKHN", + "ref": "", + "name": "Marseille-9E, Boulevard de L'Océan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39766, + 43.24166 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POQNYMVOKHN", + "ref": "", + "name": "Marseille-9E, Boulevard de L'Océan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395063, + 43.266244 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PXQFUC40G3S", + "ref": "", + "name": "Marseille-9E, 131 Boulevard Michelet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.076277, + 43.746832 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PPFSZOPWPE3", + "ref": "", + "name": "Senas, Avenue de Chevigné", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.351102, + 43.286276 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PET3BX6UHCK", + "ref": "", + "name": "Marseille-7E, Square du Lieutenant Danjaume", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.351102, + 43.286276 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PET3BX6UHCK", + "ref": "", + "name": "Marseille-7E, Square du Lieutenant Danjaume", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.366079, + 43.290685 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGKPELSRB0P", + "ref": "", + "name": "Marseille-7E, 7 Place Saint-Victor", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.366079, + 43.290685 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGKPELSRB0P", + "ref": "", + "name": "Marseille-7E, 7 Place Saint-Victor", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.373858, + 43.29145 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PTJMAUEDWMZ", + "ref": "", + "name": "Marseille-1E, 90 Rue Grignan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.373858, + 43.29145 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PTJMAUEDWMZ", + "ref": "", + "name": "Marseille-1E, 90 Rue Grignan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.50502, + 43.417 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PB42MUATGIM", + "ref": "", + "name": "Mimet, Rue de Balotesti", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.50502, + 43.417 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PB42MUATGIM", + "ref": "", + "name": "Mimet, Rue de Balotesti", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.639103, + 43.447876 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POZM6K3D0AA", + "ref": "", + "name": "Peynier, Avenue de la Garenne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.639103, + 43.447876 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POZM6K3D0AA", + "ref": "", + "name": "Peynier, Avenue de la Garenne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.57785, + 43.38458 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PIJOAYJVK0X", + "ref": "", + "name": "Peypin, Avenue de Valdonne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.57785, + 43.38458 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PIJOAYJVK0X", + "ref": "", + "name": "Peypin, Avenue de Valdonne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.227451, + 43.487976 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUUYBW0AJRF", + "ref": "", + "name": "Rognac, Boulevard Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.227451, + 43.487976 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUUYBW0AJRF", + "ref": "", + "name": "Rognac, Boulevard Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62431, + 43.4809 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PXBHHTHGIG5", + "ref": "", + "name": "Rousset, Avenue Louis Alard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62431, + 43.4809 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PXBHHTHGIG5", + "ref": "", + "name": "Rousset, Avenue Louis Alard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.03184, + 43.54726 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PSOK7YPDWPC", + "ref": "", + "name": "Saint-Chamas, Avenue Marx Dormoy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.03184, + 43.54726 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PSOK7YPDWPC", + "ref": "", + "name": "Saint-Chamas, Avenue Marx Dormoy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.040562, + 43.550837 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PES35XG41P7", + "ref": "", + "name": "Saint-Chamas, Parking de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.040562, + 43.550837 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PES35XG41P7", + "ref": "", + "name": "Saint-Chamas, Parking de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.403016, + 43.680347 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PMXWCZENI8P", + "ref": "", + "name": "Saint-Esteve-Jeanson, Parking Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.403016, + 43.680347 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PMXWCZENI8P", + "ref": "", + "name": "Saint-Esteve-Jeanson, Parking Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404101, + 43.679402 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PVAMSGXGVKQ", + "ref": "", + "name": "Saint-Esteve-Jeanson, Parking Sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.363658, + 43.333326 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PKXLBBWPBDC", + "ref": "", + "name": "Marseille-15E, 5 Boulevard de la Méditerranée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.363658, + 43.333326 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PKXLBBWPBDC", + "ref": "", + "name": "Marseille-15E, 5 Boulevard de la Méditerranée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.360216, + 43.341629 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PTC1WGPK4JD", + "ref": "", + "name": "Marseille-15E, 456 Rue de Lyon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.636482, + 43.635899 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PM1NPQJLPCX", + "ref": "", + "name": "Jouques, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988923, + 43.516083 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PL4LNJ5Z811", + "ref": "", + "name": "Istres, Parvis Hotel De Ville, Esplanade Bernadin Laugier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988923, + 43.516083 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PL4LNJ5Z811", + "ref": "", + "name": "Istres, Parvis Hotel De Ville, Esplanade Bernadin Laugier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988923, + 43.516083 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PL4LNJ5Z811", + "ref": "", + "name": "Istres, Parvis Hotel De Ville, Esplanade Bernadin Laugier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986984, + 43.504714 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PB0WBD1JFEQ", + "ref": "", + "name": "Istres, Place Champollion", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986984, + 43.504714 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PB0WBD1JFEQ", + "ref": "", + "name": "Istres, Place Champollion", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986984, + 43.504714 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PB0WBD1JFEQ", + "ref": "", + "name": "Istres, Place Champollion", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986984, + 43.504714 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PB0WBD1JFEQ", + "ref": "", + "name": "Istres, Place Champollion", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986984, + 43.504714 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PB0WBD1JFEQ", + "ref": "", + "name": "Istres, Place Champollion", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986984, + 43.504714 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PB0WBD1JFEQ", + "ref": "", + "name": "Istres, Place Champollion", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.994777, + 43.502734 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PNEJP5QIS1P", + "ref": "", + "name": "Istres, Sous Préfecture", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.994777, + 43.502734 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PNEJP5QIS1P", + "ref": "", + "name": "Istres, Sous Préfecture", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9899, + 43.51302 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PS5QPNAXBZW", + "ref": "", + "name": "Istres, Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9899, + 43.51302 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PS5QPNAXBZW", + "ref": "", + "name": "Istres, Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.636482, + 43.635899 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PM1NPQJLPCX", + "ref": "", + "name": "Jouques, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.435216, + 43.663894 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGK9NJGGDFX", + "ref": "", + "name": "Le Puy-Sainte-Reparade, Rue de L'Hotel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.360216, + 43.341629 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PTC1WGPK4JD", + "ref": "", + "name": "Marseille-15E, 456 Rue de Lyon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.435216, + 43.663894 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGK9NJGGDFX", + "ref": "", + "name": "Le Puy-Sainte-Reparade, Rue de L'Hotel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25035, + 43.36924 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PX5YVABTEAR", + "ref": "", + "name": "Le Rove, Place de L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25035, + 43.36924 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PX5YVABTEAR", + "ref": "", + "name": "Le Rove, Place de L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.416769, + 43.279139 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZOBRSUP7OM", + "ref": "", + "name": "Marseille-10E, 3 Boulevard Rouvier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.416769, + 43.279139 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZOBRSUP7OM", + "ref": "", + "name": "Marseille-10E, 3 Boulevard Rouvier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.439112, + 43.290268 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PHFZWKZHQRS", + "ref": "", + "name": "Marseille-11E, Boulevard Pierre Ménard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.439112, + 43.290268 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PHFZWKZHQRS", + "ref": "", + "name": "Marseille-11E, Boulevard Pierre Ménard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.49404, + 43.30195 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PPXDTZYBOYM", + "ref": "", + "name": "Marseille-11E, Chemin de Saint-Menet Aux Accates", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.49404, + 43.30195 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PPXDTZYBOYM", + "ref": "", + "name": "Marseille-11E, Chemin de Saint-Menet Aux Accates", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417336, + 43.304228 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PHNBAMMHQBV", + "ref": "", + "name": "Marseille-12E, 11 Rue des Électriciens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41021, + 43.33595 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PA4UPFN0L2I", + "ref": "", + "name": "Marseille-13E, Avenue Escadrille Normandie Niemen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41021, + 43.33595 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PA4UPFN0L2I", + "ref": "", + "name": "Marseille-13E, Avenue Escadrille Normandie Niemen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.393556, + 43.330417 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PLJRNOERMCL", + "ref": "", + "name": "Marseille-14E, Rue de la Busserine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.393556, + 43.330417 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PLJRNOERMCL", + "ref": "", + "name": "Marseille-14E, Rue de la Busserine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404101, + 43.679402 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PVAMSGXGVKQ", + "ref": "", + "name": "Saint-Esteve-Jeanson, Parking Sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.076277, + 43.746832 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PPFSZOPWPE3", + "ref": "", + "name": "Senas, Avenue de Chevigné", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988923, + 43.516083 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PL4LNJ5Z811", + "ref": "", + "name": "Istres, Parvis Hotel De Ville, Esplanade Bernadin Laugier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00374, + 43.608018 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PKAQAWPMKL3", + "ref": "", + "name": "Miramas, Avenue Marco Polo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.998991, + 43.809447 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PBEKMYGZAFL", + "ref": "", + "name": "Plan-D'Orgon, Route De Cavaillon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.903217, + 43.87559 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PWOHIDZZHLB", + "ref": "", + "name": "Noves, Route du 19 mars 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.903217, + 43.87559 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PWOHIDZZHLB", + "ref": "", + "name": "Noves, Route du 19 mars 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.949075, + 43.807491 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PHYPRPLI5TD", + "ref": "", + "name": "Molleges, Route De St Andiol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.949075, + 43.807491 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PHYPRPLI5TD", + "ref": "", + "name": "Molleges, Route De St Andiol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00374, + 43.608018 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PKAQAWPMKL3", + "ref": "", + "name": "Miramas, Avenue Marco Polo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.775139, + 43.850038 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PQ4WRG0VPAM", + "ref": "", + "name": "Graveson, Avenue Du Général De Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.257975, + 43.436392 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PNPDMLS3DDB", + "ref": "", + "name": "Vitrolles, Avenue Denis Padovani", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.775139, + 43.850038 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PQ4WRG0VPAM", + "ref": "", + "name": "Graveson, Avenue Du Général De Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.841645, + 43.839761 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PSVNNSDC2XP", + "ref": "", + "name": "Eyragues, Avenue Gabriel Péri", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.841645, + 43.839761 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PSVNNSDC2XP", + "ref": "", + "name": "Eyragues, Avenue Gabriel Péri", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.857174, + 43.883885 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PSQ6LSDTSXW", + "ref": "", + "name": "Chateaurenard, Parking Avenue Marx Dormoy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.857174, + 43.883885 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PSQ6LSDTSXW", + "ref": "", + "name": "Chateaurenard, Parking Avenue Marx Dormoy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852998, + 43.881935 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PUEZC9A2ZNH", + "ref": "", + "name": "Chateaurenard, Gare Routière - Salle Du Réal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.998991, + 43.809447 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PBEKMYGZAFL", + "ref": "", + "name": "Plan-D'Orgon, Route De Cavaillon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.805896282196045, + 43.89907521461469 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PTGKFDYOF2O", + "ref": "", + "name": "Rognonas, Place Du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.805896282196045, + 43.89907521461469 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PTGKFDYOF2O", + "ref": "", + "name": "Rognonas, Place Du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.944956, + 43.834723 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PZKJVIAARAQ", + "ref": "", + "name": "Saint-Andiol, RN7", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.944956, + 43.834723 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PZKJVIAARAQ", + "ref": "", + "name": "Saint-Andiol, RN7", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.813026, + 43.638466 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PNDJUZUDKNN", + "ref": "", + "name": "Saint-Martin-De-Crau, Avenue Nostradamus", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.813026, + 43.638466 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PNDJUZUDKNN", + "ref": "", + "name": "Saint-Martin-De-Crau, Avenue Nostradamus", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.42714, + 43.457535 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PHT2TOP3OOS", + "ref": "", + "name": "Stes-Maries-De-La-Mer, Rue Des Artisans", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.42714, + 43.457535 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PHT2TOP3OOS", + "ref": "", + "name": "Stes-Maries-De-La-Mer, Rue Des Artisans", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.427083, + 43.457513 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PHT2TOP3OOS", + "ref": "", + "name": "Stes-Maries-De-La-Mer, Rue Des Artisans", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.427083, + 43.457513 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PHT2TOP3OOS", + "ref": "", + "name": "Stes-Maries-De-La-Mer, Rue Des Artisans", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.648661, + 43.859012 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PKUZGIQ9EMY", + "ref": "", + "name": "St-Pierre-De-Mezoargues, Pl. Georges de Régis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.648661, + 43.859012 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PKUZGIQ9EMY", + "ref": "", + "name": "St-Pierre-De-Mezoargues, Pl. Georges de Régis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.918112, + 43.839632 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PSJL0F0PTXN", + "ref": "", + "name": "Verquieres, Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.918112, + 43.839632 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PSJL0F0PTXN", + "ref": "", + "name": "Verquieres, Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.783836, + 43.832303 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PLQM3GRBNUA", + "ref": "", + "name": "Maillane, Rue Pierre Damian, parking Noria", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.783836, + 43.832303 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PLQM3GRBNUA", + "ref": "", + "name": "Maillane, Rue Pierre Damian, parking Noria", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852998, + 43.881935 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PUEZC9A2ZNH", + "ref": "", + "name": "Chateaurenard, Gare Routière - Salle Du Réal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.948373, + 43.860836 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PVWCDEJHEV0", + "ref": "", + "name": "Cabannes, Place De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.948373, + 43.860836 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PVWCDEJHEV0", + "ref": "", + "name": "Cabannes, Place De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.448569, + 43.345406 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQCV0GDGIKP", + "ref": "", + "name": "Marseille, Parking Relais Einstein", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.257975, + 43.436392 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PNPDMLS3DDB", + "ref": "", + "name": "Vitrolles, Avenue Denis Padovani", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53811, + 43.213528 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQZ8BVWGGCG", + "ref": "", + "name": "Cassis, Parking Savon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53811, + 43.213528 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQZ8BVWGGCG", + "ref": "", + "name": "Cassis, Parking Savon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53811, + 43.213528 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQZ8BVWGGCG", + "ref": "", + "name": "Cassis, Parking Savon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53811, + 43.213528 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQZ8BVWGGCG", + "ref": "", + "name": "Cassis, Parking Savon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53811, + 43.213528 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQZ8BVWGGCG", + "ref": "", + "name": "Cassis, Parking Savon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53811, + 43.213528 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQZ8BVWGGCG", + "ref": "", + "name": "Cassis, Parking Savon", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62862, + 43.297151 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PTBBFFXUY50", + "ref": "", + "name": "Gemenos, Cours Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.21803, + 43.416931 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PG28UATDMKK", + "ref": "", + "name": "Marignane, Rue De Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.438303, + 43.231932 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PRKX3ZSAXIM", + "ref": "", + "name": "Marseille, Campus Luminy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.438303, + 43.231932 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PRKX3ZSAXIM", + "ref": "", + "name": "Marseille, Campus Luminy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.438303, + 43.231932 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PRKX3ZSAXIM", + "ref": "", + "name": "Marseille, Campus Luminy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.438303, + 43.231932 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PRKX3ZSAXIM", + "ref": "", + "name": "Marseille, Campus Luminy", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.484191, + 43.285678 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCZXYUE9SOO", + "ref": "", + "name": "Marseille, Parking De La Gare La Barasse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.448569, + 43.345406 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQCV0GDGIKP", + "ref": "", + "name": "Marseille, Parking Relais Einstein", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.69093, + 43.863427 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PUWBDRYNW5W", + "ref": "", + "name": "Boulbon, Chemin De La Lone", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.431385, + 43.344402 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PU6R2I3MI6S", + "ref": "", + "name": "Marseille, Parking Technoptic", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.431385, + 43.344402 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PU6R2I3MI6S", + "ref": "", + "name": "Marseille, Parking Technoptic", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.431385, + 43.344402 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PU6R2I3MI6S", + "ref": "", + "name": "Marseille, Parking Technoptic", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.431385, + 43.344402 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PU6R2I3MI6S", + "ref": "", + "name": "Marseille, Parking Technoptic", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.443135, + 43.297307 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWKEHSVYHAQ", + "ref": "", + "name": "Marseille, Parking De La Mairie, Bd Bouyala D'Arnaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.443135, + 43.297307 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWKEHSVYHAQ", + "ref": "", + "name": "Marseille, Parking De La Mairie, Bd Bouyala D'Arnaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.412199, + 43.245262 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PDM2AYCTUS2", + "ref": "", + "name": "Marseille, Rue Henri Tommasi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.412199, + 43.245262 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PDM2AYCTUS2", + "ref": "", + "name": "Marseille, Rue Henri Tommasi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62862, + 43.297151 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PTBBFFXUY50", + "ref": "", + "name": "Gemenos, Cours Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.21803, + 43.416931 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PG28UATDMKK", + "ref": "", + "name": "Marignane, Rue De Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.484191, + 43.285678 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCZXYUE9SOO", + "ref": "", + "name": "Marseille, Parking De La Gare La Barasse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.754017, + 43.90181 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PFCEGOYX74T", + "ref": "", + "name": "Barbentane, Route De Boulbon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.754017, + 43.90181 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PFCEGOYX74T", + "ref": "", + "name": "Barbentane, Route De Boulbon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.69093, + 43.863427 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "ref:EU:EVSE": "FRS13PUWBDRYNW5W", + "ref": "", + "name": "Boulbon, Chemin De La Lone", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988923, + 43.516083 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PL4LNJ5Z811", + "ref": "", + "name": "Istres, Parvis Hotel De Ville, Esplanade Bernadin Laugier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988923, + 43.516083 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PL4LNJ5Z811", + "ref": "", + "name": "Istres, Parvis Hotel De Ville, Esplanade Bernadin Laugier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.388323, + 43.284704 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PILU2D0DW8B", + "ref": "", + "name": "Marseille-6E, Avenue de delphes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.584868, + 43.645533 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PRXLHQXGESH", + "ref": "", + "name": "Peyrolles-En-Provence, Parking de L'Abreuvoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.981837, + 43.404731 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQGM9NJEA1F", + "ref": "", + "name": "Port-de-Bouc, Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.981837, + 43.404731 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQGM9NJEA1F", + "ref": "", + "name": "Port-de-Bouc, Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.46472, + 43.347677 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQQMLW36C4P", + "ref": "", + "name": "Plan-de-Cuques, Rue du 14 Juillet, Parking Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.46472, + 43.347677 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQQMLW36C4P", + "ref": "", + "name": "Plan-de-Cuques, Rue du 14 Juillet, Parking Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.463668, + 43.343455 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQBEKUAPQYB", + "ref": "", + "name": "Plan-de-Cuques, Avenue Georges Pompidou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.463668, + 43.343455 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQBEKUAPQYB", + "ref": "", + "name": "Plan-de-Cuques, Avenue Georges Pompidou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.584868, + 43.645533 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PRXLHQXGESH", + "ref": "", + "name": "Peyrolles-En-Provence, Parking de L'Abreuvoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.525681, + 43.40751 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PAKTRQMXLWX", + "ref": "", + "name": "Saint-Savournin, Chemin du Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.501983, + 43.692855 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGOTPNEEIKG", + "ref": "", + "name": "Pertuis, Place Granier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.501983, + 43.692855 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGOTPNEEIKG", + "ref": "", + "name": "Pertuis, Place Granier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.152651, + 43.631195 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PJTREOM1X8E", + "ref": "", + "name": "Pelissanne, Place Roux Brignoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.152651, + 43.631195 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PJTREOM1X8E", + "ref": "", + "name": "Pelissanne, Place Roux Brignoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.003616, + 43.582842 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PSXIYLXOBHD", + "ref": "", + "name": "Miramas, Avenue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.003616, + 43.582842 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PSXIYLXOBHD", + "ref": "", + "name": "Miramas, Avenue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80192, + 43.389722 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUWAP4BDZ5S", + "ref": "", + "name": "Port-Saint-Louis-du-Rhone, Avenue Hippolyte Peut", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80192, + 43.389722 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUWAP4BDZ5S", + "ref": "", + "name": "Port-Saint-Louis-du-Rhone, Avenue Hippolyte Peut", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.673313, + 43.524756 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PJY28QDJCF6", + "ref": "", + "name": "Puyloubier, Avenue du Chemin Neuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.673313, + 43.524756 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PJY28QDJCF6", + "ref": "", + "name": "Puyloubier, Avenue du Chemin Neuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23283, + 43.48956 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PONBZA2FLZQ", + "ref": "", + "name": "Rognac, Boulevard des Jeunes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23283, + 43.48956 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PONBZA2FLZQ", + "ref": "", + "name": "Rognac, Boulevard des Jeunes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.588032, + 43.248829 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PREA85RFW29", + "ref": "", + "name": "Roquefort-la-Bedoule, Avenue Marius Ghirardelli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.588032, + 43.248829 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PREA85RFW29", + "ref": "", + "name": "Roquefort-la-Bedoule, Avenue Marius Ghirardelli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.604201, + 43.348577 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUIKFXKPWLN", + "ref": "", + "name": "Roquevaire, 23 Allée Alfred Rinn", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.604201, + 43.348577 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUIKFXKPWLN", + "ref": "", + "name": "Roquevaire, 23 Allée Alfred Rinn", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.299185, + 43.623065 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PTDKR6HZAQA", + "ref": "", + "name": "Saint-Cannat, Avenue Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.299185, + 43.623065 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PTDKR6HZAQA", + "ref": "", + "name": "Saint-Cannat, Avenue Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.030772, + 43.549935 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PU3M2CRXOTQ", + "ref": "", + "name": "Saint-Chamas, Rue Victor Ferrier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.030772, + 43.549935 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PU3M2CRXOTQ", + "ref": "", + "name": "Saint-Chamas, Rue Victor Ferrier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.011772, + 43.453829 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZB3PP3S10S", + "ref": "", + "name": "Saint-Mitre-Les-Remparts, Résidence Les Remparts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.011772, + 43.453829 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZB3PP3S10S", + "ref": "", + "name": "Saint-Mitre-Les-Remparts, Résidence Les Remparts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.710252, + 43.686469 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZHH0MOQERH", + "ref": "", + "name": "Saint-Paul-Lez-durance, D11", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.49543, + 43.473074 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PPQDOFXYO9K", + "ref": "", + "name": "Meyreuil, Parking Mourvedre, Rue des Mineurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.49543, + 43.473074 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PPQDOFXYO9K", + "ref": "", + "name": "Meyreuil, Parking Mourvedre, Rue des Mineurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.527233, + 43.637349 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUJFFS1VFDS", + "ref": "", + "name": "Meyrargues, Police Municipale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.38785, + 43.27915 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYU3HHLOBIV", + "ref": "", + "name": "Marseille-8E, Avenue du Prado", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.388323, + 43.284704 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PILU2D0DW8B", + "ref": "", + "name": "Marseille-6E, Avenue de delphes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.373637, + 43.287646 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCU18L59EFY", + "ref": "", + "name": "Marseille-6E, Boulevard Notre Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.373637, + 43.287646 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCU18L59EFY", + "ref": "", + "name": "Marseille-6E, Boulevard Notre Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.384417, + 43.288361 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PLBZJ2E4Z2Z", + "ref": "", + "name": "Marseille-6E, Cours Lieutaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.384417, + 43.288361 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PLBZJ2E4Z2Z", + "ref": "", + "name": "Marseille-6E, Cours Lieutaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356014, + 43.289968 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PXPXWDIMWV9", + "ref": "", + "name": "Marseille-7E, 113 Avenue de la Corse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356014, + 43.289968 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PXPXWDIMWV9", + "ref": "", + "name": "Marseille-7E, 113 Avenue de la Corse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.370056, + 43.286242 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PAQMI6HDE7N", + "ref": "", + "name": "Marseille-7E, 12 Place du Colonel Edon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.370056, + 43.286242 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PAQMI6HDE7N", + "ref": "", + "name": "Marseille-7E, 12 Place du Colonel Edon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.358481, + 43.291969 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQK9NSBFHAX", + "ref": "", + "name": "Marseille-7E, 85 Boulevard Charles Livon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.358481, + 43.291969 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQK9NSBFHAX", + "ref": "", + "name": "Marseille-7E, 85 Boulevard Charles Livon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381914, + 43.247392 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PHJMLW4RZTL", + "ref": "", + "name": "Marseille-8E, Avenue André Zénatti", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381914, + 43.247392 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PHJMLW4RZTL", + "ref": "", + "name": "Marseille-8E, Avenue André Zénatti", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.38785, + 43.27915 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYU3HHLOBIV", + "ref": "", + "name": "Marseille-8E, Avenue du Prado", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.390105, + 43.272778 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PTPQ3LRWKOM", + "ref": "", + "name": "Marseille-8E, Boulevard Edouard Herriot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.527233, + 43.637349 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PUJFFS1VFDS", + "ref": "", + "name": "Meyrargues, Police Municipale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.390105, + 43.272778 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PTPQ3LRWKOM", + "ref": "", + "name": "Marseille-8E, Boulevard Edouard Herriot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.399622, + 43.24787 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PI53KWZZUZ8", + "ref": "", + "name": "Marseille-9E, 16 Rue Emile Zola", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.399622, + 43.24787 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PI53KWZZUZ8", + "ref": "", + "name": "Marseille-9E, 16 Rue Emile Zola", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.421871, + 43.253283 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PORSVRLD7DV", + "ref": "", + "name": "Marseille-9E, 83-81 Boulevard du Redon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404021, + 43.238356 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PAIVVF8TXNT", + "ref": "", + "name": "Marseille-9E, Rue Antoine Fortuné Marion", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404021, + 43.238356 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PAIVVF8TXNT", + "ref": "", + "name": "Marseille-9E, Rue Antoine Fortuné Marion", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409066, + 43.258666 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PET8HVBT9DL", + "ref": "", + "name": "Marseille-9E, Traverse de la Gaye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409066, + 43.258666 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PET8HVBT9DL", + "ref": "", + "name": "Marseille-9E, Traverse de la Gaye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.056633, + 43.408601 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWQEE1Y2BAW", + "ref": "", + "name": "Martigues, Avenue du Président Salvadore Allende", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.056633, + 43.408601 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWQEE1Y2BAW", + "ref": "", + "name": "Martigues, Avenue du Président Salvadore Allende", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.048822, + 43.406476 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PMXFGYDVAN0", + "ref": "", + "name": "Martigues, Parking Stade Turcan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.048822, + 43.406476 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PMXFGYDVAN0", + "ref": "", + "name": "Martigues, Parking Stade Turcan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.039669, + 43.329723 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PBHNTH2N03P", + "ref": "", + "name": "Martigues, Quai Jean Verandy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.039669, + 43.329723 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PBHNTH2N03P", + "ref": "", + "name": "Martigues, Quai Jean Verandy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.710252, + 43.686469 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZHH0MOQERH", + "ref": "", + "name": "Saint-Paul-Lez-durance, D11", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.525681, + 43.40751 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PAKTRQMXLWX", + "ref": "", + "name": "Saint-Savournin, Chemin du Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.990593, + 43.513977 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYDWQGIEKHG", + "ref": "", + "name": "Istres, Parking Des Arnavaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.933619, + 43.59184 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PRN6NE1CSIN", + "ref": "", + "name": "Entressens, Gymnase Arcelli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.557972, + 43.452861 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQPPRKM9JOL", + "ref": "", + "name": "Fuveau, Avenue Du Maréchal, Parking", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.557972, + 43.452861 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQPPRKM9JOL", + "ref": "", + "name": "Fuveau, Avenue Du Maréchal, Parking", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.94352, + 43.42977 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQMV1OWNDGR", + "ref": "", + "name": "Fos-Sur-Mer, Avenue du Sablé D'Or", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.94352, + 43.42977 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PQMV1OWNDGR", + "ref": "", + "name": "Fos-Sur-Mer, Avenue du Sablé D'Or", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.939013, + 43.593007 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCCB60UGD7I", + "ref": "", + "name": "Entressens, Place Dei Blagiaires", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.939013, + 43.593007 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCCB60UGD7I", + "ref": "", + "name": "Entressens, Place Dei Blagiaires", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.933619, + 43.59184 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PRN6NE1CSIN", + "ref": "", + "name": "Entressens, Gymnase Arcelli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24102, + 43.415533 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PMSH0CPXJBC", + "ref": "", + "name": "Saint-Victoret, Boulevard Paul Liotard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253117, + 43.558456 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PBQGOLZLZK9", + "ref": "", + "name": "Coudoux, Avenue De La République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253117, + 43.558456 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PBQGOLZLZK9", + "ref": "", + "name": "Coudoux, Avenue De La République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.574552, + 43.292736 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PAQC0J4PNTP", + "ref": "", + "name": "Aubagne, Place du Souvenir Français", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.574552, + 43.292736 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PAQC0J4PNTP", + "ref": "", + "name": "Aubagne, Place du Souvenir Français", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.370653, + 43.490568 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PRSPVF85Q8I", + "ref": "", + "name": "Aix-En-Provence, Rue André Ampère (Paap)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.370653, + 43.490568 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PRSPVF85Q8I", + "ref": "", + "name": "Aix-En-Provence, Rue André Ampère (Paap)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.223084, + 43.386888 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POPBQD3XA2R", + "ref": "", + "name": "Gignac-la-Nerthe, Parking laure", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.223084, + 43.386888 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POPBQD3XA2R", + "ref": "", + "name": "Gignac-la-Nerthe, Parking laure", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.540469, + 43.434712 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PTFGLGFKWZ3", + "ref": "", + "name": "Greasque, Boulevard Salvadore Allende", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.540469, + 43.434712 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PTFGLGFKWZ3", + "ref": "", + "name": "Greasque, Boulevard Salvadore Allende", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.955317, + 43.526777 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PONQDMBBKNC", + "ref": "", + "name": "Istres, Bayanne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.955317, + 43.526777 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PONQDMBBKNC", + "ref": "", + "name": "Istres, Bayanne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.987945, + 43.493681 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PLDYQJ5N3BA", + "ref": "", + "name": "Istres, Centre Commercial Prédina", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.987945, + 43.493681 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PLDYQJ5N3BA", + "ref": "", + "name": "Istres, Centre Commercial Prédina", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986419, + 43.51365 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PNKMEPWGGPW", + "ref": "", + "name": "Istres, Forum Des Carmes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986419, + 43.51365 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PNKMEPWGGPW", + "ref": "", + "name": "Istres, Forum Des Carmes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988791, + 43.507643 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEDUESRUBU4", + "ref": "", + "name": "Istres, Gymnase Donadieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988791, + 43.507643 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEDUESRUBU4", + "ref": "", + "name": "Istres, Gymnase Donadieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988791, + 43.507643 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEDUESRUBU4", + "ref": "", + "name": "Istres, Gymnase Donadieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988791, + 43.507643 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEDUESRUBU4", + "ref": "", + "name": "Istres, Gymnase Donadieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.974134, + 43.494049 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGNCU8D204C", + "ref": "", + "name": "Istres, Halle Polyvalente Rassuen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.974134, + 43.494049 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PGNCU8D204C", + "ref": "", + "name": "Istres, Halle Polyvalente Rassuen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.990593, + 43.513977 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PYDWQGIEKHG", + "ref": "", + "name": "Istres, Parking Des Arnavaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.446349, + 43.519237 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZK2VPLYFXC", + "ref": "", + "name": "Aix-En-Provence, Avenue Winston Churchill", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.446349, + 43.519237 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PZK2VPLYFXC", + "ref": "", + "name": "Aix-En-Provence, Avenue Winston Churchill", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25032, + 43.459262 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PG7ZCV4KJPS", + "ref": "", + "name": "Vitrolles, Place de L'Aire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.366413, + 43.398629 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PAKDLHKKHGE", + "ref": "", + "name": "Septemes-Les-Vallons, 50 Avenue du 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24102, + 43.415533 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PMSH0CPXJBC", + "ref": "", + "name": "Saint-Victoret, Boulevard Paul Liotard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.235656, + 43.420631 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PKEOQA5N1B9", + "ref": "", + "name": "Saint-Victoret, Rue Raymond Marin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.235656, + 43.420631 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PKEOQA5N1B9", + "ref": "", + "name": "Saint-Victoret, Rue Raymond Marin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.056872, + 43.638515 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCJUSI0VOYH", + "ref": "", + "name": "Salon-de-Provence, 270 Rue Victor Grignard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.056872, + 43.638515 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PCJUSI0VOYH", + "ref": "", + "name": "Salon-de-Provence, 270 Rue Victor Grignard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.090649, + 43.635131 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PXNMMEMUQWX", + "ref": "", + "name": "Salon-de-Provence, Avenue de Grans", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.099081, + 43.65232 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PREOLZZUWZG", + "ref": "", + "name": "Salon-de-Provence, Avenue du Dauphiné", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.099081, + 43.65232 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PREOLZZUWZG", + "ref": "", + "name": "Salon-de-Provence, Avenue du Dauphiné", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.107927, + 43.639222 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWXW2IZZV6L", + "ref": "", + "name": "Salon-de-Provence, Rue André Marie Ampère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.107927, + 43.639222 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PWXW2IZZV6L", + "ref": "", + "name": "Salon-de-Provence, Rue André Marie Ampère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.093004, + 43.638665 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PK0VMTM4AOW", + "ref": "", + "name": "Salon-de-Provence, Rue César Bossy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.093004, + 43.638665 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PK0VMTM4AOW", + "ref": "", + "name": "Salon-de-Provence, Rue César Bossy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.109004, + 43.332432 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PNBWYREEXN0", + "ref": "", + "name": "Sausset-Les-Pins, Place des Droits de L'Homme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.109004, + 43.332432 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PNBWYREEXN0", + "ref": "", + "name": "Sausset-Les-Pins, Place des Droits de L'Homme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.366413, + 43.398629 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PAKDLHKKHGE", + "ref": "", + "name": "Septemes-Les-Vallons, 50 Avenue du 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25032, + 43.459262 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PG7ZCV4KJPS", + "ref": "", + "name": "Vitrolles, Place de L'Aire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.436711, + 43.429731 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PJIJE5L9RS2", + "ref": "", + "name": "Simiane-Collongue, 4 Rue lambert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.436711, + 43.429731 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PJIJE5L9RS2", + "ref": "", + "name": "Simiane-Collongue, 4 Rue lambert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.688023, + 43.448682 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEDNRUJ2XDY", + "ref": "", + "name": "Trets, Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.688023, + 43.448682 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PEDNRUJ2XDY", + "ref": "", + "name": "Trets, Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.598967, + 43.555415 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PMMOMS4MYOD", + "ref": "", + "name": "Vauvenargues, 5 Boulevard Moraliste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.598967, + 43.555415 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PMMOMS4MYOD", + "ref": "", + "name": "Vauvenargues, 5 Boulevard Moraliste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.255214, + 43.523198 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POMGFAWEZZ8", + "ref": "", + "name": "Velaux, Rue Diderot (Pl du Bon Puit)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.255214, + 43.523198 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13POMGFAWEZZ8", + "ref": "", + "name": "Velaux, Rue Diderot (Pl du Bon Puit)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.486176, + 43.600001 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PESOARGTP4B", + "ref": "", + "name": "Venelles, Avenue Maurice Plantier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.486176, + 43.600001 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PESOARGTP4B", + "ref": "", + "name": "Venelles, Avenue Maurice Plantier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.293237, + 43.54659 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PORTOSOJP3Y", + "ref": "", + "name": "Ventabren, Avenue Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.293237, + 43.54659 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PORTOSOJP3Y", + "ref": "", + "name": "Ventabren, Avenue Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.205005, + 43.689299 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PN9PFWXWKQI", + "ref": "", + "name": "Vernegues, Route du Château Bas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.205005, + 43.689299 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PN9PFWXWKQI", + "ref": "", + "name": "Vernegues, Route du Château Bas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417336, + 43.304228 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PHNBAMMHQBV", + "ref": "", + "name": "Marseille-12E, 11 Rue des Électriciens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.090649, + 43.635131 + ] + }, + "properties": { + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "ref:EU:EVSE": "FRM13PXNMMEMUQWX", + "ref": "", + "name": "Salon-de-Provence, Avenue de Grans", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8935134, + 45.8488467 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63381A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Ours - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-09", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25019974, + 45.54625829 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63178C", + "ref": "", + "name": "SIEG63 - ePremium - Issoire - Place Montagne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-28", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.10959, + 45.810183 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113B", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Clementel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.10959, + 45.810183 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113B", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Clementel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.108089, + 45.79353 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113C", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Rodade", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.108089, + 45.79353 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113C", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Rodade", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.108089, + 45.79353 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113C", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Rodade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.10163, + 45.785758 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113D", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - République", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-31", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.10163, + 45.785758 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113D", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - République", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-31", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.10163, + 45.785758 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113D", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-31", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.105057, + 45.778448 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113E", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Banville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-26", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.105057, + 45.778448 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113E", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Banville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-26", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.105057, + 45.778448 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113E", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Banville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-26", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.080522, + 45.771753 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113F", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Salins", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.080522, + 45.771753 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113F", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Salins", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.080522, + 45.771753 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113F", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Salins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.085003, + 45.78558 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113G", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Bughes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-14", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.10959, + 45.810183 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113B", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Clementel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.088685, + 45.760472 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113A", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Dunant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.088685, + 45.760472 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113A", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Dunant", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1293519, + 45.5896077 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63080B", + "ref": "", + "name": "SIEG63 - ePremium - Champeix - Place du Foirail", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.068955, + 45.776503 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63075A", + "ref": "", + "name": "SIEG63 - ePremium - Chamalieres - Fournier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-27", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.068955, + 45.776503 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63075A", + "ref": "", + "name": "SIEG63 - ePremium - Chamalieres - Fournier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-27", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.068955, + 45.776503 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63075A", + "ref": "", + "name": "SIEG63 - ePremium - Chamalieres - Fournier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.068955, + 45.776503 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63075A", + "ref": "", + "name": "SIEG63 - ePremium - Chamalieres - Fournier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.068955, + 45.776503 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63075A", + "ref": "", + "name": "SIEG63 - ePremium - Chamalieres - Fournier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1293519, + 45.5896077 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63080B", + "ref": "", + "name": "SIEG63 - ePremium - Champeix - Place du Foirail", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1293519, + 45.5896077 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63080B", + "ref": "", + "name": "SIEG63 - ePremium - Champeix - Place du Foirail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.088685, + 45.760472 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113A", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Dunant", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.084515, + 45.849755 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63099A", + "ref": "", + "name": "SIEG63 - ePremium - Chateaugay - Gaulle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.084515, + 45.849755 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63099A", + "ref": "", + "name": "SIEG63 - ePremium - Chateaugay - Gaulle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.084515, + 45.849755 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63099A", + "ref": "", + "name": "SIEG63 - ePremium - Chateaugay - Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.072574, + 45.919709 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63103A", + "ref": "", + "name": "SIEG63 - ePremium - Chatel Guyon - Europe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-17", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.072574, + 45.919709 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63103A", + "ref": "", + "name": "SIEG63 - ePremium - Chatel Guyon - Europe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-17", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.072574, + 45.919709 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63103A", + "ref": "", + "name": "SIEG63 - ePremium - Chatel Guyon - Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-17", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.085003, + 45.78558 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113G", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Bughes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-14", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.085003, + 45.78558 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113G", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Bughes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-14", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.072883, + 45.778677 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113H", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Menat", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.050666, + 45.795907 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63141A", + "ref": "", + "name": "SIEG63 - ePremium - Durtol - Chataigniers", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1928496, + 45.7307631 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63124A", + "ref": "", + "name": "SIEG63 - ePremium - Cournon D Auvergne - Domes (12)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1928738, + 45.7313678 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63124B", + "ref": "", + "name": "SIEG63 - ePremium - Cournon D Auvergne - Domes (15)", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-08", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1928738, + 45.7313678 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63124B", + "ref": "", + "name": "SIEG63 - ePremium - Cournon D Auvergne - Domes (15)", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-08", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.535703, + 45.755722 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63125A", + "ref": "", + "name": "SIEG63 - ePremium - Courpiere - Roses", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-15", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.535703, + 45.755722 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63125A", + "ref": "", + "name": "SIEG63 - ePremium - Courpiere - Roses", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-15", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.535703, + 45.755722 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63125A", + "ref": "", + "name": "SIEG63 - ePremium - Courpiere - Roses", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-15", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.050666, + 45.795907 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63141A", + "ref": "", + "name": "SIEG63 - ePremium - Durtol - Chataigniers", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1928496, + 45.7307631 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63124A", + "ref": "", + "name": "SIEG63 - ePremium - Cournon D Auvergne - Domes (12)", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.050666, + 45.795907 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63141A", + "ref": "", + "name": "SIEG63 - ePremium - Durtol - Chataigniers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.144055, + 45.825378 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63164A", + "ref": "", + "name": "SIEG63 - ePremium - Gerzat - Vigeries", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.144055, + 45.825378 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63164A", + "ref": "", + "name": "SIEG63 - ePremium - Gerzat - Vigeries", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.144055, + 45.825378 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63164A", + "ref": "", + "name": "SIEG63 - ePremium - Gerzat - Vigeries", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.468026, + 45.802692 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63165A", + "ref": "", + "name": "SIEG63 - ePremium - Giat - Hotel de Ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.468026, + 45.802692 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63165A", + "ref": "", + "name": "SIEG63 - ePremium - Giat - Hotel de Ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1928496, + 45.7307631 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63124A", + "ref": "", + "name": "SIEG63 - ePremium - Cournon D Auvergne - Domes (12)", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.087534, + 45.993258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63116A", + "ref": "", + "name": "SIEG63 - ePremium - Combronde - Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.072883, + 45.778677 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113H", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Menat", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.083815, + 45.764902 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113J", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Bruyant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.072883, + 45.778677 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113H", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Menat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.078341, + 45.781253 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113I", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Fayolle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.078341, + 45.781253 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113I", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Fayolle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.078341, + 45.781253 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113I", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Fayolle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.083815, + 45.764902 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113J", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Bruyant", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.083815, + 45.764902 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113J", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Bruyant", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.065886, + 45.793482 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113K", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Eychart", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.087534, + 45.993258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63116A", + "ref": "", + "name": "SIEG63 - ePremium - Combronde - Europe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.065886, + 45.793482 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113K", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Eychart", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.065886, + 45.793482 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63113K", + "ref": "", + "name": "SIEG63 - ePremium - Clermont Ferrand - Eychart", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.087534, + 45.993258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63116A", + "ref": "", + "name": "SIEG63 - ePremium - Combronde - Europe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.087534, + 45.993258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63116A", + "ref": "", + "name": "SIEG63 - ePremium - Combronde - Europe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.087534, + 45.993258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63116A", + "ref": "", + "name": "SIEG63 - ePremium - Combronde - Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.087534, + 45.993258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63116A", + "ref": "", + "name": "SIEG63 - ePremium - Combronde - Europe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.068955, + 45.776503 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63075A", + "ref": "", + "name": "SIEG63 - ePremium - Chamalieres - Fournier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-27", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0646, + 45.73286 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63070B", + "ref": "", + "name": "SIEG63 - ePremium - Ceyrat - Brunmurol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0646, + 45.73286 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63070B", + "ref": "", + "name": "SIEG63 - ePremium - Ceyrat - Brunmurol", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.096065, + 45.75256 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63032A", + "ref": "", + "name": "SIEG63 - ePremium - Beaumont - Masage (624)", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.168743, + 45.795585 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63019A", + "ref": "", + "name": "SIEG63 - ePremium - Aulnat - Coubertin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.168743, + 45.795585 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63019A", + "ref": "", + "name": "SIEG63 - ePremium - Aulnat - Coubertin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9810852, + 45.666657 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63026A", + "ref": "", + "name": "SIEG63 - ePremium - Aydat - Egueules", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9810852, + 45.666657 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63026A", + "ref": "", + "name": "SIEG63 - ePremium - Aydat - Egueules", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9810852, + 45.666657 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63026A", + "ref": "", + "name": "SIEG63 - ePremium - Aydat - Egueules", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.096065, + 45.75256 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63032A", + "ref": "", + "name": "SIEG63 - ePremium - Beaumont - Masage (624)", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.096065, + 45.75256 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63032A", + "ref": "", + "name": "SIEG63 - ePremium - Beaumont - Masage (624)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.109378, + 45.747517 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63014A", + "ref": "", + "name": "SIEG63 - ePremium - Aubière - Romagnat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.086385, + 45.754934 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63032B", + "ref": "", + "name": "SIEG63 - ePremium - Beaumont - Hessel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.086385, + 45.754934 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63032B", + "ref": "", + "name": "SIEG63 - ePremium - Beaumont - Hessel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.086385, + 45.754934 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63032B", + "ref": "", + "name": "SIEG63 - ePremium - Beaumont - Hessel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8542, + 45.5119 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63038A", + "ref": "", + "name": "SIEG63 - ePremium - Besse et Saint Anastaise - Pistes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8542, + 45.5119 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63038A", + "ref": "", + "name": "SIEG63 - ePremium - Besse et Saint Anastaise - Pistes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8542, + 45.5119 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63038A", + "ref": "", + "name": "SIEG63 - ePremium - Besse et Saint Anastaise - Pistes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.168743, + 45.795585 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63019A", + "ref": "", + "name": "SIEG63 - ePremium - Aulnat - Coubertin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.109378, + 45.747517 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63014A", + "ref": "", + "name": "SIEG63 - ePremium - Aubière - Romagnat", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9324802, + 45.510146 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63038B", + "ref": "", + "name": "SIEG63 - ePremium - Besse et Saint Anastaise - Gazelle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-26", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.04208259, + 45.33291829 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63006B", + "ref": "", + "name": "SIEG63 - ePremium - Anzat-Le-Luguet - Parking Entree", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.200362, + 46.020521 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63001A", + "ref": "", + "name": "SIEG63 - ePremium - Aigueperse - Chevrils", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.200362, + 46.020521 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63001A", + "ref": "", + "name": "SIEG63 - ePremium - Aigueperse - Chevrils", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.200362, + 46.020521 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63001A", + "ref": "", + "name": "SIEG63 - ePremium - Aigueperse - Chevrils", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.04208259, + 45.33291829 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63006A", + "ref": "", + "name": "SIEG63 - ePremium - Anzat-Le-Luguet - Parking Entree", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-02-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.04208259, + 45.33291829 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63006A", + "ref": "", + "name": "SIEG63 - ePremium - Anzat-Le-Luguet - Parking Entree", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-02-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.04208259, + 45.33291829 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63006B", + "ref": "", + "name": "SIEG63 - ePremium - Anzat-Le-Luguet - Parking Entree", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.04208259, + 45.33291829 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63006B", + "ref": "", + "name": "SIEG63 - ePremium - Anzat-Le-Luguet - Parking Entree", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.109378, + 45.747517 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63014A", + "ref": "", + "name": "SIEG63 - ePremium - Aubière - Romagnat", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12345866, + 45.40161915 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63009B", + "ref": "", + "name": "SIEG63 - ePremium - Ardes - Place du Foirail", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12345866, + 45.40161915 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63009B", + "ref": "", + "name": "SIEG63 - ePremium - Ardes - Place du Foirail", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12345866, + 45.40161915 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63009B", + "ref": "", + "name": "SIEG63 - ePremium - Ardes - Place du Foirail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-30", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.724858, + 45.413449 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63010A", + "ref": "", + "name": "SIEG63 - ePremium - Arlanc - Vellay", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-28", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.724858, + 45.413449 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63010A", + "ref": "", + "name": "SIEG63 - ePremium - Arlanc - Vellay", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-28", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.724858, + 45.413449 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63010A", + "ref": "", + "name": "SIEG63 - ePremium - Arlanc - Vellay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-28", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9324802, + 45.510146 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63038B", + "ref": "", + "name": "SIEG63 - ePremium - Besse et Saint Anastaise - Gazelle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-26", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9324802, + 45.510146 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63038B", + "ref": "", + "name": "SIEG63 - ePremium - Besse et Saint Anastaise - Gazelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-26", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0646, + 45.73286 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63070B", + "ref": "", + "name": "SIEG63 - ePremium - Ceyrat - Brunmurol", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.634929, + 45.85832 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63066A", + "ref": "", + "name": "SIEG63 - ePremium - Celles Sur Durolle - Huit Mai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.819578, + 45.8380775 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63055A", + "ref": "", + "name": "SIEG63 - ePremium - Bromon Lamothe - Combrailles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-21", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.819578, + 45.8380775 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63055A", + "ref": "", + "name": "SIEG63 - ePremium - Bromon Lamothe - Combrailles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-21", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.098991, + 45.829498 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63063A", + "ref": "", + "name": "SIEG63 - ePremium - Cebazat - Grillon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.098991, + 45.829498 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63063A", + "ref": "", + "name": "SIEG63 - ePremium - Cebazat - Grillon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.098991, + 45.829498 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63063A", + "ref": "", + "name": "SIEG63 - ePremium - Cebazat - Grillon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.634929, + 45.85832 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63066A", + "ref": "", + "name": "SIEG63 - ePremium - Celles Sur Durolle - Huit Mai", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.634929, + 45.85832 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63066A", + "ref": "", + "name": "SIEG63 - ePremium - Celles Sur Durolle - Huit Mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.247247, + 45.499488 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63054B", + "ref": "", + "name": "SIEG63 - ePremium - Le Broc - Vigneaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-08", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.189445, + 45.723408 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63069B", + "ref": "", + "name": "SIEG63 - ePremium - Le Cendre - Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.189445, + 45.723408 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63069B", + "ref": "", + "name": "SIEG63 - ePremium - Le Cendre - Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.189445, + 45.723408 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63069B", + "ref": "", + "name": "SIEG63 - ePremium - Le Cendre - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.060217, + 45.739984 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63070A", + "ref": "", + "name": "SIEG63 - ePremium - Ceyrat - Vialle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.060217, + 45.739984 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63070A", + "ref": "", + "name": "SIEG63 - ePremium - Ceyrat - Vialle", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.060217, + 45.739984 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63070A", + "ref": "", + "name": "SIEG63 - ePremium - Ceyrat - Vialle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.819578, + 45.8380775 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63055A", + "ref": "", + "name": "SIEG63 - ePremium - Bromon Lamothe - Combrailles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-21", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.247247, + 45.499488 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63054B", + "ref": "", + "name": "SIEG63 - ePremium - Le Broc - Vigneaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-08", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.34237, + 45.726008 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63040A", + "ref": "", + "name": "SIEG63 - ePremium - Billom - Cohalion", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.078451, + 45.827998 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63042A", + "ref": "", + "name": "SIEG63 - ePremium - Blanzat - Primeveres", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.34237, + 45.726008 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63040A", + "ref": "", + "name": "SIEG63 - ePremium - Billom - Cohalion", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.34237, + 45.726008 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63040A", + "ref": "", + "name": "SIEG63 - ePremium - Billom - Cohalion", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.338388, + 45.724561 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63040B", + "ref": "", + "name": "SIEG63 - ePremium - Billom - Voutes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.338388, + 45.724561 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63040B", + "ref": "", + "name": "SIEG63 - ePremium - Billom - Voutes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.338388, + 45.724561 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63040B", + "ref": "", + "name": "SIEG63 - ePremium - Billom - Voutes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.078451, + 45.827998 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63042A", + "ref": "", + "name": "SIEG63 - ePremium - Blanzat - Primeveres", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.078451, + 45.827998 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63042A", + "ref": "", + "name": "SIEG63 - ePremium - Blanzat - Primeveres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.247247, + 45.499488 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63054B", + "ref": "", + "name": "SIEG63 - ePremium - Le Broc - Vigneaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-08", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.18769063, + 45.45757491 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63046B", + "ref": "", + "name": "SIEG63 - ePremium - Boudes - Parking Entree", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.18769063, + 45.45757491 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63046B", + "ref": "", + "name": "SIEG63 - ePremium - Boudes - Parking Entree", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.18769063, + 45.45757491 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63046B", + "ref": "", + "name": "SIEG63 - ePremium - Boudes - Parking Entree", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3307619, + 45.4131122 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63050B", + "ref": "", + "name": "SIEG63 - ePremium - Brassac-Les-Mines - Charles Souligoux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3307619, + 45.4131122 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63050B", + "ref": "", + "name": "SIEG63 - ePremium - Brassac-Les-Mines - Charles Souligoux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3307619, + 45.4131122 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63050B", + "ref": "", + "name": "SIEG63 - ePremium - Brassac-Les-Mines - Charles Souligoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.468026, + 45.802692 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63165A", + "ref": "", + "name": "SIEG63 - ePremium - Giat - Hotel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1928738, + 45.7313678 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63124B", + "ref": "", + "name": "SIEG63 - ePremium - Cournon D Auvergne - Domes (15)", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-08", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25019974, + 45.54625829 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63178C", + "ref": "", + "name": "SIEG63 - ePremium - Issoire - Place Montagne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-28", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.914898, + 45.527348 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63319A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Antheme - Ambert", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-11", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2373332, + 45.456907 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63352C", + "ref": "", + "name": "SIEG63 - ePremium - St Germain Lembron - Place du desert", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2373332, + 45.456907 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63352C", + "ref": "", + "name": "SIEG63 - ePremium - St Germain Lembron - Place du desert", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2373332, + 45.456907 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63352C", + "ref": "", + "name": "SIEG63 - ePremium - St Germain Lembron - Place du desert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.820273, + 46.030863 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63354A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Gervais D Auvergne - Foirail", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.820273, + 46.030863 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63354A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Gervais D Auvergne - Foirail", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.820273, + 46.030863 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63354A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Gervais D Auvergne - Foirail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7053498, + 45.6464757 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63370A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Julien Puy Laveze - Laqueuille", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7053498, + 45.6464757 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63370A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Julien Puy Laveze - Laqueuille", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7053498, + 45.6464757 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63370A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Julien Puy Laveze - Laqueuille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7053498, + 45.6464757 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63370A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Julien Puy Laveze - Laqueuille", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7053498, + 45.6464757 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63370A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Julien Puy Laveze - Laqueuille", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7053498, + 45.6464757 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63370A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Julien Puy Laveze - Laqueuille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8935134, + 45.8488467 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63381A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Ours - Eglise", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-09", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8935134, + 45.8488467 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63381A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Ours - Eglise", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-09", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3698728, + 45.55 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63415B", + "ref": "", + "name": "SIEG63 - ePremium - Sauxillanges - Stade", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2547808, + 45.4602738 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63352B", + "ref": "", + "name": "SIEG63 - EV-QC45 - St Germain Lembron - Coustilles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-02-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2547808, + 45.4602738 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63352B", + "ref": "", + "name": "SIEG63 - EV-QC45 - St Germain Lembron - Coustilles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-02-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2547808, + 45.4602738 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63352B", + "ref": "", + "name": "SIEG63 - EV-QC45 - St Germain Lembron - Coustilles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-02-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1044068, + 45.5500991 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63342B", + "ref": "", + "name": "SIEG63 - ePremium - St Floret - Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.182088, + 45.8528279 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63322A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Beauzire - Pont Neuf", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-09", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.182088, + 45.8528279 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63322A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Beauzire - Pont Neuf", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-09", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.182088, + 45.8528279 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63322A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Beauzire - Pont Neuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-09", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.835858, + 46.158716 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63338A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Eloy les Mines - Jean Jaures", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.835858, + 46.158716 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63338A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Eloy les Mines - Jean Jaures", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.835858, + 46.158716 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63338A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Eloy les Mines - Jean Jaures", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1044068, + 45.5500991 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63342B", + "ref": "", + "name": "SIEG63 - ePremium - St Floret - Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.01792, + 45.720608 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63345B", + "ref": "", + "name": "SIEG63 - ePremium - Saint Genes Champanelle - Cassin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-27", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1044068, + 45.5500991 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63342B", + "ref": "", + "name": "SIEG63 - ePremium - St Floret - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-18", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.02307, + 45.70559 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63345A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Genes Champanelle - Theix", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-08-02", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25019974, + 45.54625829 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63178C", + "ref": "", + "name": "SIEG63 - ePremium - Issoire - Place Montagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-28", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.02307, + 45.70559 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63345A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Genes Champanelle - Theix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-08-02", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.01792, + 45.720608 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63345B", + "ref": "", + "name": "SIEG63 - ePremium - Saint Genes Champanelle - Cassin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-27", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.01792, + 45.720608 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63345B", + "ref": "", + "name": "SIEG63 - ePremium - Saint Genes Champanelle - Cassin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-27", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3698728, + 45.55 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63415B", + "ref": "", + "name": "SIEG63 - ePremium - Sauxillanges - Stade", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3698728, + 45.55 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63415B", + "ref": "", + "name": "SIEG63 - ePremium - Sauxillanges - Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.623934, + 45.560108 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63426A", + "ref": "", + "name": "SIEG63 - ePremium - Tauves - Aurlandeix", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1849199, + 45.4777874 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63458A", + "ref": "", + "name": "SIEG63 - ePremium - Villeneuve - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-02-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4514244, + 45.4727824 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63448B", + "ref": "", + "name": "SIEG63 - ePremium - Vernet La Varenne - Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4514244, + 45.4727824 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63448B", + "ref": "", + "name": "SIEG63 - ePremium - Vernet La Varenne - Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4514244, + 45.4727824 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63448B", + "ref": "", + "name": "SIEG63 - ePremium - Vernet La Varenne - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.207466, + 45.663033 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63457A", + "ref": "", + "name": "SIEG63 - ePremium - Vic le Comte - Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.207466, + 45.663033 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63457A", + "ref": "", + "name": "SIEG63 - ePremium - Vic le Comte - Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.207466, + 45.663033 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63457A", + "ref": "", + "name": "SIEG63 - ePremium - Vic le Comte - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1849199, + 45.4777874 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63458A", + "ref": "", + "name": "SIEG63 - ePremium - Villeneuve - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-02-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3363148, + 45.5265496 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63439B", + "ref": "", + "name": "SIEG63 - ePremium - Usson - Parking Visiteurs", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1849199, + 45.4777874 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63458B", + "ref": "", + "name": "SIEG63 - ePremium - Villeneuve - Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1849199, + 45.4777874 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63458B", + "ref": "", + "name": "SIEG63 - ePremium - Villeneuve - Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1849199, + 45.4777874 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63458B", + "ref": "", + "name": "SIEG63 - ePremium - Villeneuve - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.04223102, + 45.87167589 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63470B", + "ref": "", + "name": "SIEG63 - ePremium - Volvic - Centre historique", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-08", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.04223102, + 45.87167589 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63470B", + "ref": "", + "name": "SIEG63 - ePremium - Volvic - Centre historique", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-08", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.04223102, + 45.87167589 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63470B", + "ref": "", + "name": "SIEG63 - ePremium - Volvic - Centre historique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-08", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3363148, + 45.5265496 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63439B", + "ref": "", + "name": "SIEG63 - ePremium - Usson - Parking Visiteurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3363148, + 45.5265496 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63439B", + "ref": "", + "name": "SIEG63 - ePremium - Usson - Parking Visiteurs", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.623934, + 45.560108 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63426A", + "ref": "", + "name": "SIEG63 - ePremium - Tauves - Aurlandeix", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.521339, + 45.845524 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63430A", + "ref": "", + "name": "SIEG63 - ePremium - Thiers - Sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.623934, + 45.560108 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63426A", + "ref": "", + "name": "SIEG63 - ePremium - Tauves - Aurlandeix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.521339, + 45.845524 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63430A", + "ref": "", + "name": "SIEG63 - ePremium - Thiers - Sports", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.521339, + 45.845524 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63430A", + "ref": "", + "name": "SIEG63 - ePremium - Thiers - Sports", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.521339, + 45.845524 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63430A", + "ref": "", + "name": "SIEG63 - ePremium - Thiers - Sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.521339, + 45.845524 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63430A", + "ref": "", + "name": "SIEG63 - ePremium - Thiers - Sports", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.521339, + 45.845524 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63430A", + "ref": "", + "name": "SIEG63 - ePremium - Thiers - Sports", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-17", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5475098, + 45.8570762 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63430B", + "ref": "", + "name": "SIEG63 - ePremium - Thiers - Duchasseint", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3363148, + 45.5265496 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63439A", + "ref": "", + "name": "SIEG63 - ePremium - Usson - Parking Visiteurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-02-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5475098, + 45.8570762 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63430B", + "ref": "", + "name": "SIEG63 - ePremium - Thiers - Duchasseint", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5475098, + 45.8570762 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63430B", + "ref": "", + "name": "SIEG63 - ePremium - Thiers - Duchasseint", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5464023, + 45.8552796 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63430C", + "ref": "", + "name": "SIEG63 - ePremium - Thiers - Forest", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5464023, + 45.8552796 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63430C", + "ref": "", + "name": "SIEG63 - ePremium - Thiers - Forest", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5464023, + 45.8552796 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63430C", + "ref": "", + "name": "SIEG63 - ePremium - Thiers - Forest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3363148, + 45.5265496 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63439A", + "ref": "", + "name": "SIEG63 - ePremium - Usson - Parking Visiteurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-02-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.914898, + 45.527348 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63319A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Antheme - Ambert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-11", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.02307, + 45.70559 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63345A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Genes Champanelle - Theix", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-08-02", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.914898, + 45.527348 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63319A", + "ref": "", + "name": "SIEG63 - ePremium - Saint Antheme - Ambert", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-11", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9417191, + 45.5727239 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63247A", + "ref": "", + "name": "SIEG63 - ePremium - Murol - Jassaguet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-08", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8164264, + 45.5420679 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63236B", + "ref": "", + "name": "SIEG63 - ePremium - Mont Dore - Sancy", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8164264, + 45.5420679 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63236B", + "ref": "", + "name": "SIEG63 - ePremium - Mont Dore - Sancy", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0558558, + 45.7664558 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63308A", + "ref": "", + "name": "SIEG63 - ePremium - Royat - Allard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2003302, + 45.6245733 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63241B", + "ref": "", + "name": "SIEG63 - ePremium - Montpeyroux - Parking Entree", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-26", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2003302, + 45.6245733 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63241B", + "ref": "", + "name": "SIEG63 - ePremium - Montpeyroux - Parking Entree", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-26", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2003302, + 45.6245733 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63241B", + "ref": "", + "name": "SIEG63 - ePremium - Montpeyroux - Parking Entree", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-26", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9417191, + 45.5727239 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63247A", + "ref": "", + "name": "SIEG63 - ePremium - Murol - Jassaguet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-08", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8083731, + 45.5723908 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63236A", + "ref": "", + "name": "SIEG63 - ePremium - Mont Dore - Libération", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-21", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9417191, + 45.5727239 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63247A", + "ref": "", + "name": "SIEG63 - ePremium - Murol - Jassaguet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-08", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.055715, + 45.808796 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63254A", + "ref": "", + "name": "SIEG63 - ePremium - Nohanent - Durtol", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-26", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.055715, + 45.808796 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63254A", + "ref": "", + "name": "SIEG63 - ePremium - Nohanent - Durtol", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-26", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.055715, + 45.808796 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63254A", + "ref": "", + "name": "SIEG63 - ePremium - Nohanent - Durtol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-26", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28099446, + 45.47737767 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63255B", + "ref": "", + "name": "SIEG63 - ePremium - Nonette Orsonnette - Place du Bouillas", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28099446, + 45.47737767 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63255B", + "ref": "", + "name": "SIEG63 - ePremium - Nonette Orsonnette - Place du Bouillas", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8083731, + 45.5723908 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63236A", + "ref": "", + "name": "SIEG63 - ePremium - Mont Dore - Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-21", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8083731, + 45.5723908 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63236A", + "ref": "", + "name": "SIEG63 - ePremium - Mont Dore - Libération", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-21", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0132707, + 45.7840008 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63263A", + "ref": "", + "name": "SIEG63 - ePremium - Orcines - Liberté", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1967603, + 45.768258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63193A", + "ref": "", + "name": "SIEG63 - ePremium - Lempdes - Verny", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2429965, + 45.5436886 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63178D", + "ref": "", + "name": "SIEG63 - ePremium - Issoire - Place Freres Lumieres", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-29", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2429965, + 45.5436886 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63178D", + "ref": "", + "name": "SIEG63 - ePremium - Issoire - Place Freres Lumieres", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-29", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2429965, + 45.5436886 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63178D", + "ref": "", + "name": "SIEG63 - ePremium - Issoire - Place Freres Lumieres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-29", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6875493, + 45.5330676 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63192A", + "ref": "", + "name": "SIEG63 - ePremium - La Tour d'Auvergne - Bagnols", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6875493, + 45.5330676 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63192A", + "ref": "", + "name": "SIEG63 - ePremium - La Tour d'Auvergne - Bagnols", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6875493, + 45.5330676 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63192A", + "ref": "", + "name": "SIEG63 - ePremium - La Tour d'Auvergne - Bagnols", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-22", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1967603, + 45.768258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63193A", + "ref": "", + "name": "SIEG63 - ePremium - Lempdes - Verny", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6059, + 45.8691923 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63231A", + "ref": "", + "name": "SIEG63 - ePremium - Monnerie le Montel - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1967603, + 45.768258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63193A", + "ref": "", + "name": "SIEG63 - ePremium - Lempdes - Verny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3785739, + 45.828258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63195A", + "ref": "", + "name": "SIEG63 - ePremium - Lezoux - Lopick", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3785739, + 45.828258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63195A", + "ref": "", + "name": "SIEG63 - ePremium - Lezoux - Lopick", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3785739, + 45.828258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63195A", + "ref": "", + "name": "SIEG63 - ePremium - Lezoux - Lopick", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-20", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6059, + 45.8691923 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63231A", + "ref": "", + "name": "SIEG63 - ePremium - Monnerie le Montel - Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6059, + 45.8691923 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63231A", + "ref": "", + "name": "SIEG63 - ePremium - Monnerie le Montel - Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28099446, + 45.47737767 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63255B", + "ref": "", + "name": "SIEG63 - ePremium - Nonette Orsonnette - Place du Bouillas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8164264, + 45.5420679 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63236B", + "ref": "", + "name": "SIEG63 - ePremium - Mont Dore - Sancy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-27", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0132707, + 45.7840008 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63263A", + "ref": "", + "name": "SIEG63 - ePremium - Orcines - Liberté", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.805302, + 45.6840001 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63305A", + "ref": "", + "name": "SIEG63 - ePremium - Rochefort Montagne - Eglise", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.118337, + 45.887632 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63300B", + "ref": "", + "name": "SIEG63 - ePremium - Riom - Cornet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-13", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.118337, + 45.887632 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63300B", + "ref": "", + "name": "SIEG63 - ePremium - Riom - Cornet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-13", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.118337, + 45.887632 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63300B", + "ref": "", + "name": "SIEG63 - ePremium - Riom - Cornet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-13", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.111787, + 45.89586 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63300C", + "ref": "", + "name": "SIEG63 - ePremium - Riom - Reynouard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.111787, + 45.89586 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63300C", + "ref": "", + "name": "SIEG63 - ePremium - Riom - Reynouard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.111787, + 45.89586 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63300C", + "ref": "", + "name": "SIEG63 - ePremium - Riom - Reynouard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-10", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.805302, + 45.6840001 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63305A", + "ref": "", + "name": "SIEG63 - ePremium - Rochefort Montagne - Eglise", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.114279, + 45.890311 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63300A", + "ref": "", + "name": "SIEG63 - ePremium - Riom - Jeanne D Arc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-13", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.805302, + 45.6840001 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63305A", + "ref": "", + "name": "SIEG63 - ePremium - Rochefort Montagne - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-16", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.100119, + 45.731146 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63307A", + "ref": "", + "name": "SIEG63 - ePremium - Romagnat - Jean Moulin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-09", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0132707, + 45.7840008 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63263A", + "ref": "", + "name": "SIEG63 - ePremium - Orcines - Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-25", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.100119, + 45.731146 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63307A", + "ref": "", + "name": "SIEG63 - ePremium - Romagnat - Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-09", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0558558, + 45.7664558 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63308A", + "ref": "", + "name": "SIEG63 - ePremium - Royat - Allard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0558558, + 45.7664558 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63308A", + "ref": "", + "name": "SIEG63 - ePremium - Royat - Allard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.114279, + 45.890311 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63300A", + "ref": "", + "name": "SIEG63 - ePremium - Riom - Jeanne D Arc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-13", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.100119, + 45.731146 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63307A", + "ref": "", + "name": "SIEG63 - ePremium - Romagnat - Jean Moulin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-09", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.114279, + 45.890311 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63300A", + "ref": "", + "name": "SIEG63 - ePremium - Riom - Jeanne D Arc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-13", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.139562, + 45.740944 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63272A", + "ref": "", + "name": "SIEG63 - ePremium - Pérignat les Sarliève - République", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.47442, + 45.959944 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63291A", + "ref": "", + "name": "SIEG63 - ePremium - Puy Guillaume - Jaures", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.21635011, + 45.61447849 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63269B", + "ref": "", + "name": "SIEG63 - ePremium - Parent - Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-08", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.21635011, + 45.61447849 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63269B", + "ref": "", + "name": "SIEG63 - ePremium - Parent - Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-08", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.21635011, + 45.61447849 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63269B", + "ref": "", + "name": "SIEG63 - ePremium - Parent - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-08", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2902348, + 45.5323749 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63270B", + "ref": "", + "name": "SIEG63 - ePremium - Parentignat - Chateau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2902348, + 45.5323749 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63270B", + "ref": "", + "name": "SIEG63 - ePremium - Parentignat - Chateau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.139562, + 45.740944 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63272A", + "ref": "", + "name": "SIEG63 - ePremium - Pérignat les Sarliève - République", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2902348, + 45.5323749 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63270B", + "ref": "", + "name": "SIEG63 - ePremium - Parentignat - Chateau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-12", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.139562, + 45.740944 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63272A", + "ref": "", + "name": "SIEG63 - ePremium - Pérignat les Sarliève - République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.248129, + 45.79836 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63284A", + "ref": "", + "name": "SIEG63 - ePremium - Pont Du Chateau - Chambige", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-12", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.248129, + 45.79836 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63284A", + "ref": "", + "name": "SIEG63 - ePremium - Pont Du Chateau - Chambige", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-12", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.248129, + 45.79836 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63284A", + "ref": "", + "name": "SIEG63 - ePremium - Pont Du Chateau - Chambige", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-12", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.47442, + 45.959944 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63291A", + "ref": "", + "name": "SIEG63 - ePremium - Puy Guillaume - Jaures", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.47442, + 45.959944 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "256300146", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "SIEG63", + "ref:EU:EVSE": "FRS63P63291A", + "ref": "", + "name": "SIEG63 - ePremium - Puy Guillaume - Jaures", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-07-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5474457, + 50.7384692 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "0361626161", + "network": "RENAULT HAZEBROUCK", + "ref:EU:EVSE": "Non concerné", + "ref": "01FHQK32DYB4KYY5Z3B0C21JGH", + "name": "RENAULT HAZEBROUCK", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2021-04-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCKUIFU8QA0000JHPFD4KMPF72", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "name": "Technopole Arbois", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-24", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du Technopole de l'Arbois", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCKUIFU8QA0000JHPFD4KMPF72", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "name": "Technopole Arbois", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-31", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du Technopole de l'Arbois", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCKUIFU8QA0000JHPFD4KMPF72", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "name": "Technopole Arbois", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-31", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du Technopole de l'Arbois", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCKUIFU8QA0000JHPFD4KMPF72", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "name": "Technopole Arbois", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-31", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du Technopole de l'Arbois", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCKUIFU8QA0000JHPFD4KMPF72", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "name": "Technopole Arbois", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-31", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du Technopole de l'Arbois", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCKUIFU8QA0000JHPFD4KMPF72", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "name": "Technopole Arbois", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-24", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du Technopole de l'Arbois", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCKUIFU8QA0000JHPFD4KMPF72", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "name": "Technopole Arbois", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-24", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du Technopole de l'Arbois", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCKUIFU8QA0000JHPFD4KMPF72", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "name": "Technopole Arbois", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-24", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du Technopole de l'Arbois", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCKUIFU8QA0000JHPFD4KMPF72", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "name": "Technopole Arbois", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-24", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du Technopole de l'Arbois", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14829, + 45.73457 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "879689750", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCL667TZRR31386098QO29VPVB0N", + "ref": "cl667tzrr31386098qo29vpvb0n", + "name": "INDIAN MOTORCYCLE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "-", + "source:date": "2022-09-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCKUIFU8QA0000JHPFD4KMPF72", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "name": "Technopole Arbois", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-24", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du Technopole de l'Arbois", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCKUIFU8QA0000JHPFD4KMPF72", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "name": "Technopole Arbois", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-24", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du Technopole de l'Arbois", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCKUIFU8QA0000JHPFD4KMPF72", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "name": "Technopole Arbois", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-31", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du Technopole de l'Arbois", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14829, + 45.73457 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "879689750", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCL667TZRR31386098QO29VPVB0N", + "ref": "cl667tzrr31386098qo29vpvb0n", + "name": "INDIAN MOTORCYCLE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "-", + "source:date": "2022-09-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14829, + 45.73457 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "879689750", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCL667TZRR31386098QO29VPVB0N", + "ref": "cl667tzrr31386098qo29vpvb0n", + "name": "INDIAN MOTORCYCLE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "-", + "source:date": "2022-09-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14829, + 45.73457 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "879689750", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCL667TZRR31386098QO29VPVB0N", + "ref": "cl667tzrr31386098qo29vpvb0n", + "name": "INDIAN MOTORCYCLE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "-", + "source:date": "2022-09-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.14829, + 45.73457 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "879689750", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCL667TZRR31386098QO29VPVB0N", + "ref": "cl667tzrr31386098qo29vpvb0n", + "name": "INDIAN MOTORCYCLE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "-", + "source:date": "2022-09-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref:EU:EVSE": "FRCHAPCKUIFU8QA0000JHPFD4KMPF72", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "name": "Technopole Arbois", + "capacity": "13", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-24", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du Technopole de l'Arbois", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.532536, + 49.292436 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "215701061", + "email": "exploitation@freshmile.com", + "phone": "03.68.78.14.35", + "network": "FRESMILE", + "ref:EU:EVSE": "FRFR1EZTBC1", + "ref": "", + "name": "Bouzonville Place du Marché", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-19", + "note": "", + "source:date": "2021-09-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.535945, + 49.289694 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "215701061", + "email": "exploitation@freshmile.com", + "phone": "03.68.78.14.35", + "network": "FRESMILE", + "ref:EU:EVSE": "FRFR1EDSVA1", + "ref": "", + "name": "Bouzonville Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-19", + "note": "", + "source:date": "2021-09-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.831599, + 50.485561 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "315255752", + "email": "contact@sga-automation.com", + "phone": "0232103853", + "network": "Réseau de recharge Brasserie Castelain", + "ref:EU:EVSE": "FRSGAP1M2018", + "ref": "", + "name": "M2018", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-16", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-09-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.831599, + 50.485561 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "315255752", + "email": "contact@sga-automation.com", + "phone": "0232103853", + "network": "Réseau de recharge Brasserie Castelain", + "ref:EU:EVSE": "FRSGAP1M2018", + "ref": "", + "name": "M2018", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-16", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-09-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.831599, + 50.485561 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "315255752", + "email": "contact@sga-automation.com", + "phone": "0232103853", + "network": "Réseau de recharge Brasserie Castelain", + "ref:EU:EVSE": "FRSGAP1M2018", + "ref": "", + "name": "M2018", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-16", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-09-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9942375, + 44.0769349 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMELORIOL11", + "ref": "47bbb1da-a79f-42b8-bc43-4d9a05039fb1", + "name": "LUMI'IN LORIOL", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-25", + "note": "DISPONIBLE 24/7", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -5101,6 +1156001,40 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7212472222222224, + 48.1790417 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE35NSP3", + "ref": "", + "name": "NISSAN ESPACE 3 - ST GREGOIRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-01-24", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -5135,6 +1156069,924 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.894763, + 50.423336 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62BEGA", + "ref": "", + "name": "Gare SNCF - BEAURAINVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.093459, + 49.45384 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE60BVQA", + "ref": "", + "name": "Aquaspace - BEAUVAIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.093459, + 49.45384 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE60BVQA", + "ref": "", + "name": "Aquaspace - BEAUVAIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.093535, + 49.430228 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE60BVTA", + "ref": "", + "name": "Tennis Club - BEAUVAIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.093535, + 49.430228 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE60BVTA", + "ref": "", + "name": "Tennis Club - BEAUVAIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.102055, + 50.399946 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62AHCA", + "ref": "", + "name": "Carrefour Contact - AUCHY LES HESDIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.102055, + 50.399946 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62AHCA", + "ref": "", + "name": "Carrefour Contact - AUCHY LES HESDIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.102472, + 50.396286 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62AHGA", + "ref": "", + "name": "Gare SNCF - AUCHY LES HESDIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.102472, + 50.396286 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62AHGA", + "ref": "", + "name": "Gare SNCF - AUCHY LES HESDIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.894763, + 50.423336 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62BEGA", + "ref": "", + "name": "Gare SNCF - BEAURAINVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.901209, + 50.424837 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62BEMA", + "ref": "", + "name": "Mairie - BEAURAINVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.115386, + 49.433287 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE60BVMA", + "ref": "", + "name": "Restaurant Memphis - BEAUVAIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.901209, + 50.424837 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62BEMA", + "ref": "", + "name": "Mairie - BEAURAINVILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.038331, + 50.372075 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62HAXA", + "ref": "", + "name": "Petit Séminaire - HESDIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.038331, + 50.372075 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62HAXA", + "ref": "", + "name": "Petit Séminaire - HESDIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.040881, + 50.375851 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62HBXA", + "ref": "", + "name": "Le stade - HESDIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.035047, + 50.378089 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62HGXA", + "ref": "", + "name": "Gare SNCF - HESDIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.035047, + 50.378089 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62HGXA", + "ref": "", + "name": "Gare SNCF - HESDIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.035473, + 50.381443 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62HSXA", + "ref": "", + "name": "Stade - HUBY SAINT LIEU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.035473, + 50.381443 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62HSXA", + "ref": "", + "name": "Stade - HUBY SAINT LIEU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.030860517090839, + 50.37340163915224 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62MACA", + "ref": "", + "name": "Clinique de santé - MARCONNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.115386, + 49.433287 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE60BVMA", + "ref": "", + "name": "Restaurant Memphis - BEAUVAIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.10449, + 49.438526 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE60BVJA", + "ref": "", + "name": "Jardins Rostand - BEAUVAIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.03235, + 50.364271 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62MAPA", + "ref": "", + "name": "Centre aquatique - MARCONNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.968528, + 48.635862 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE52DYZA", + "ref": "", + "name": "BYMYCAR - SAINT-DIZIER", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.196098, + 43.266711 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE31RVTA", + "ref": "", + "name": "Route de Latrape - RIEUX VOLVESTRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.196098, + 43.266711 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE31RVTA", + "ref": "", + "name": "Route de Latrape - RIEUX VOLVESTRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -5169,6 +1157021,856 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7212472222222224, + 48.1790417 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE35NSP3", + "ref": "", + "name": "NISSAN ESPACE 3 - ST GREGOIRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-01-24", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7316805, + 47.9749816 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE45NSBA", + "ref": "", + "name": "Nissan Basty - AMILLY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-06-16", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7316805, + 47.9749816 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE45NSBA", + "ref": "", + "name": "Nissan Basty - AMILLY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-06-16", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7316805, + 47.9749816 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE45NSBB", + "ref": "", + "name": "Nissan Basty - AMILLY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-06-16", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7316805, + 47.9749816 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE45NSBB", + "ref": "", + "name": "Nissan Basty - AMILLY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-06-16", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7316805, + 47.9749816 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE45NSBB", + "ref": "", + "name": "Nissan Basty - AMILLY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-06-16", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.968528, + 48.635862 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE52DYZA", + "ref": "", + "name": "BYMYCAR - SAINT-DIZIER", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.10449, + 49.438526 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE60BVJA", + "ref": "", + "name": "Jardins Rostand - BEAUVAIS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.968528, + 48.635862 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE52DYZA", + "ref": "", + "name": "BYMYCAR - SAINT-DIZIER", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.489767, + 48.584177 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE54LYVA", + "ref": "", + "name": "BYMYCAR - LUNEVILLE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.489767, + 48.584177 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE54LYVA", + "ref": "", + "name": "BYMYCAR - LUNEVILLE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.489767, + 48.584177 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE54LYVA", + "ref": "", + "name": "BYMYCAR - LUNEVILLE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-13", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.040212, + 48.909046 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE54PYXA", + "ref": "", + "name": "BYMYCAR - PONT A MOUSSON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.040212, + 48.909046 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE54PYXA", + "ref": "", + "name": "BYMYCAR - PONT A MOUSSON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.175758, + 48.766458 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE55BYBA", + "ref": "", + "name": "BYMYCAR - BAR-LE-DUC", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-12", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.175758, + 48.766458 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE55BYBA", + "ref": "", + "name": "BYMYCAR - BAR-LE-DUC", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-12", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.175758, + 48.766458 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE55BYBA", + "ref": "", + "name": "BYMYCAR - BAR-LE-DUC", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-12", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.030860517090839, + 50.37340163915224 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62MACA", + "ref": "", + "name": "Clinique de santé - MARCONNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.040881, + 50.375851 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62HBXA", + "ref": "", + "name": "Le stade - HESDIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.03235, + 50.364271 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62MAPA", + "ref": "", + "name": "Centre aquatique - MARCONNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.627516720238731, + 48.53187547443857 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE77MCHA", + "ref": "", + "name": "Château du Mée - LE MEE SUR SEINE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-12-28", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6623570502624494, + 48.614318800000014 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE77MSRA", + "ref": "", + "name": "FIRALP - MONTEREAU SUR LE JARD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-09-08", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6623570502624494, + 48.614318800000014 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE77MSRA", + "ref": "", + "name": "FIRALP - MONTEREAU SUR LE JARD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-09-08", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94251, + 48.284472 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE88SYBA", + "ref": "", + "name": "BYMYCAR - SAINT-DIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94251, + 48.284472 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE88SYBA", + "ref": "", + "name": "BYMYCAR - SAINT-DIE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-10-17", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -5203,6 +1157905,40 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6139677517069222, + 50.45591099689726 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62MBBA", + "ref": "", + "name": "Mairie - MERLIMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-02-02", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -5713,6 +1158449,40 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.627516720238731, + 48.53187547443857 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE77MCHA", + "ref": "", + "name": "Château du Mée - LE MEE SUR SEINE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-12-28", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -5747,6 +1158517,96838 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.566489583236157, + 48.64892309996577 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE77CVZA", + "ref": "", + "name": "ZAC EcoSénart - COMBS LA VILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-12-28", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12882767066976641, + 49.487331285074724 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE76HBDB", + "ref": "", + "name": "Les Bains de Docks - LE HAVRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6139677517069222, + 50.45591099689726 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62MBBA", + "ref": "", + "name": "Mairie - MERLIMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-02-02", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.614797784474848, + 50.45384387673885 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62MBCA", + "ref": "", + "name": "Stade - MERLIMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-02-02", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.566489583236157, + 48.64892309996577 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE77CVZA", + "ref": "", + "name": "ZAC EcoSénart - COMBS LA VILLE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2020-12-28", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.581321738638749, + 50.46090694111128 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62MBDA", + "ref": "", + "name": "Place du Marché - MERLIMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-02-20", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.581321738638749, + 50.46090694111128 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62MBDA", + "ref": "", + "name": "Place du Marché - MERLIMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-02-20", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.312264, + 48.0449181 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE68EGPV", + "ref": "", + "name": "Pierre & Vacances - EGUISHEIM", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.312264, + 48.0449181 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE68EGPV", + "ref": "", + "name": "Pierre & Vacances - EGUISHEIM", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12882767066976641, + 49.487331285074724 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE76HBDA", + "ref": "", + "name": "Les Bains de Docks - LE HAVRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12882767066976641, + 49.487331285074724 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE76HBDA", + "ref": "", + "name": "Les Bains de Docks - LE HAVRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.614797784474848, + 50.45384387673885 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE62MBCA", + "ref": "", + "name": "Stade - MERLIMONT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-02-02", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12882767066976641, + 49.487331285074724 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE76HBDB", + "ref": "", + "name": "Les Bains de Docks - LE HAVRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-10-26", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5753830764544885, + 48.65993572270077 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE77CVAA", + "ref": "", + "name": "L'Abreuvoir - Combs-la-Ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5753830764544885, + 48.65993572270077 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE77CVAA", + "ref": "", + "name": "L'Abreuvoir - Combs-la-Ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5586172119781576, + 48.66622067379457 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE77CVKA", + "ref": "", + "name": "Place de l'An 2000 - Combs-la-Ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-05", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5586172119781576, + 48.66622067379457 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE77CVKA", + "ref": "", + "name": "Place de l'An 2000 - Combs-la-Ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-05", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56593753620647, + 48.65956307159419 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE77CVQA", + "ref": "", + "name": "La Coupole Conservatoire Piscine - Combs-la-Ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-11-02", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56593753620647, + 48.65956307159419 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE77CVQA", + "ref": "", + "name": "La Coupole Conservatoire Piscine - Combs-la-Ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-11-02", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.568798248488855, + 48.66428455199971 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE77CVXA", + "ref": "", + "name": "Eglise Saint Vincent - Combs-la-Ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-05", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.568798248488855, + 48.66428455199971 + ] + }, + "properties": { + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "ref:EU:EVSE": "FRSE1PSE77CVXA", + "ref": "", + "name": "Eglise Saint Vincent - Combs-la-Ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-12-05", + "note": "", + "source:date": "2023-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1459805, + 50.6399697 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "ANS COM", + "ref:EU:EVSE": "Non concerné", + "ref": "01FEG2Q7790MKZPGT58T8G1KD8", + "name": "ANS COM", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-20", + "note": "", + "source:date": "2021-08-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8965763, + 50.6561949 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "BDS MENUISERIE", + "ref:EU:EVSE": "Non concerné", + "ref": "01FEK79E4NNDZAPESGBYSYPZ7J", + "name": "BDS MENUISERIE", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2021-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89, + 44.02 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMELAMONTAGNESA", + "ref": "167730c5-b7ef-48d4-b39c-9337bfece636", + "name": "CAMPING LA MONTAGNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-26", + "note": "DISPONIBLE 24/7", + "source:date": "2022-03-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.7103309, + 49.0313229 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEAUCHEVALBLANCNIEDERSTEINBACH1", + "ref": "62570df4-ab8b-11ed-afa1-0242ac120002", + "name": "Au Cheval Blanc Niedersteinbach", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-15", + "note": "24/7", + "source:date": "2023-02-13", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828324822319736, + 43.78639927025314 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEJRIMMO11", + "ref": "", + "name": "017a012b-1701-4a2c-a262-2d5dfd1ff1fd", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-15", + "note": "DISPONIBLE 24/7", + "source:date": "2023-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1485441, + 50.7582304 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEACACIAS11", + "ref": "ed2da8f2-b28e-11ed-afa1-0242ac120002", + "name": "Logis Hôtel des Acacias Lille Tourcoing", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-22", + "note": "24/7", + "source:date": "2023-02-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.503644299999999, + 44.6477737 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMECAMPINGLAVANDES11", + "ref": "747a4ee8-b28d-11ed-afa1-0242ac120002", + "name": "Camping les lavandes Darbres ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-22", + "note": "24/7", + "source:date": "2023-02-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9041925, + 44.1160294 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMERAMADES11", + "ref": "4daae94a-c7db-11ed-afa1-0242ac120002", + "name": "RAMADES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-24", + "note": "24/7", + "source:date": "2023-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.050015999999999, + 44.04692499999999 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEMALIJAI441", + "ref": "4d3a0cb6-c7db-11ed-afa1-0242ac120002", + "name": "ECOPARC DE MALIJAI", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-24", + "note": "24/7", + "source:date": "2023-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.345135599999999, + 41.69983680000001 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEPINARELLO11", + "ref": "64117dc4-cf8e-11ed-afa1-0242ac120002", + "name": "SARL C&M", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-31", + "note": "24/7", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.118697, + 43.5871748 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEHOTELLECOLLIER11", + "ref": "34e85270-ea64-11ed-a05b-0242ac120003", + "name": "HOTEL LE COLLIER", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-04", + "note": "24/7", + "source:date": "2023-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83, + 43.79 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "cpo@lumi-in.fr", + "phone": "04 82 79 82 82", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMROUMANILLE1", + "ref": "a0a9bb0e-4199-11ec-81d3-0242ac130003", + "name": "PARKING ROUMANILLE ", + "capacity": "3", + "socket:typee": "TRUE", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "TRUE", + "payment:credit_cards": "true", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-10", + "note": "application E-mobility", + "source:date": "2012-09-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.105857, + 50.5314804 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "LE DOMAINE DES CIGOGNES", + "ref:EU:EVSE": "Non concerné", + "ref": "01FENA6FWRWNN3X1EHFBAQ53ZG", + "name": "LE DOMAINE DES CIGOGNES", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2021-06-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.19, + 45.73 + ] + }, + "properties": { + "operator": "ESPACE AUTO COURNON", + "owner:ref:FR:SIREN": "490391620", + "email": "espaceautocournon@orange.fr", + "phone": "0473848307", + "network": "ESPACE AUTO COURNON", + "ref:EU:EVSE": "Non concerné", + "ref": "01FEJX4YZEHDSET14TRKNSJJ2C", + "name": "ESPACE AUTO COURNON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-06", + "note": "Recharge uniquement disponible aux horaires d'ouverture de l'etablissement. ", + "source:date": "2021-09-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6453929999999919, + 44.787885 + ] + }, + "properties": { + "operator": "HFOOD PESSAC", + "owner:ref:FR:SIREN": "881047948", + "email": "hippo.pessac@groupeflo.franchises.fr", + "phone": "", + "network": "HIPPOPOTAMUS", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1941191", + "name": "Parking Hippopotamus Pessac", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-11", + "note": "", + "source:date": "2021-09-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6453929999999919, + 44.787885 + ] + }, + "properties": { + "operator": "HFOOD PESSAC", + "owner:ref:FR:SIREN": "881047948", + "email": "hippo.pessac@groupeflo.franchises.fr", + "phone": "", + "network": "HIPPOPOTAMUS", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1941191", + "name": "Parking Hippopotamus Pessac", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "", + "source:date": "2021-09-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6453929999999919, + 44.787885 + ] + }, + "properties": { + "operator": "HFOOD PESSAC", + "owner:ref:FR:SIREN": "881047948", + "email": "hippo.pessac@groupeflo.franchises.fr", + "phone": "", + "network": "HIPPOPOTAMUS", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1941191", + "name": "Parking Hippopotamus Pessac", + "capacity": "4", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "", + "source:date": "2021-09-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6453929999999919, + 44.787885 + ] + }, + "properties": { + "operator": "HFOOD PESSAC", + "owner:ref:FR:SIREN": "881047948", + "email": "hippo.pessac@groupeflo.franchises.fr", + "phone": "", + "network": "HIPPOPOTAMUS", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1941191", + "name": "Parking Hippopotamus Pessac", + "capacity": "4", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-11", + "note": "", + "source:date": "2021-09-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1, + 47.48 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "450743398", + "email": "europa.hotel.entretien@gmail.com", + "phone": "", + "network": "Hôtel EUROPA", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Hôtel EUROPA - QUIBERON", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-30", + "note": "", + "source:date": "2021-08-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64, + 47.7 + ] + }, + "properties": { + "operator": "La dilettante", + "owner:ref:FR:SIREN": "812439511", + "email": "jb@brasserieladilettante.com", + "phone": "0610166210", + "network": "LA DILETTANTE", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Brasserie LA DILETTANTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-05", + "note": "", + "source:date": "2022-01-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0448811, + 50.5467231 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "GOOD KING", + "ref:EU:EVSE": "Non concerné", + "ref": "01FEXVKTTEMPX67SNSGRWXERZA", + "name": "GOOD KING", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2021-05-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654826, + 47.353958 + ] + }, + "properties": { + "operator": "HERVE THERMIQUE", + "owner:ref:FR:SIREN": "627220049", + "email": "bornederecharge@herve-thermique.com", + "phone": "247682000", + "network": "HERVE THERMIQUE IRVE", + "ref:EU:EVSE": "Non concerné", + "ref": "VRT_003417", + "name": "HERVE THERMIQUE JOUE LES TOURS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "", + "source:date": "2021-09-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654826, + 47.353958 + ] + }, + "properties": { + "operator": "HERVE THERMIQUE", + "owner:ref:FR:SIREN": "627220049", + "email": "bornederecharge@herve-thermique.com", + "phone": "247682000", + "network": "HERVE THERMIQUE IRVE", + "ref:EU:EVSE": "Non concerné", + "ref": "VRT_003415", + "name": "HERVE THERMIQUE JOUE LES TOURS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "", + "source:date": "2021-09-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654826, + 47.353958 + ] + }, + "properties": { + "operator": "HERVE THERMIQUE", + "owner:ref:FR:SIREN": "627220049", + "email": "bornederecharge@herve-thermique.com", + "phone": "247682000", + "network": "HERVE THERMIQUE IRVE", + "ref:EU:EVSE": "Non concerné", + "ref": "VRT_003415", + "name": "HERVE THERMIQUE JOUE LES TOURS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "", + "source:date": "2021-09-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654826, + 47.353958 + ] + }, + "properties": { + "operator": "HERVE THERMIQUE", + "owner:ref:FR:SIREN": "627220049", + "email": "bornederecharge@herve-thermique.com", + "phone": "247682000", + "network": "HERVE THERMIQUE IRVE", + "ref:EU:EVSE": "Non concerné", + "ref": "VRT_003416", + "name": "HERVE THERMIQUE JOUE LES TOURS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "", + "source:date": "2021-09-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654826, + 47.353958 + ] + }, + "properties": { + "operator": "HERVE THERMIQUE", + "owner:ref:FR:SIREN": "627220049", + "email": "bornederecharge@herve-thermique.com", + "phone": "247682000", + "network": "HERVE THERMIQUE IRVE", + "ref:EU:EVSE": "Non concerné", + "ref": "VRT_003416", + "name": "HERVE THERMIQUE JOUE LES TOURS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "", + "source:date": "2021-09-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654826, + 47.353958 + ] + }, + "properties": { + "operator": "HERVE THERMIQUE", + "owner:ref:FR:SIREN": "627220049", + "email": "bornederecharge@herve-thermique.com", + "phone": "247682000", + "network": "HERVE THERMIQUE IRVE", + "ref:EU:EVSE": "Non concerné", + "ref": "VRT_003417", + "name": "HERVE THERMIQUE JOUE LES TOURS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "", + "source:date": "2021-09-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654826, + 47.353958 + ] + }, + "properties": { + "operator": "HERVE THERMIQUE", + "owner:ref:FR:SIREN": "627220049", + "email": "bornederecharge@herve-thermique.com", + "phone": "247682000", + "network": "HERVE THERMIQUE IRVE", + "ref:EU:EVSE": "Non concerné", + "ref": "VRT_003418", + "name": "HERVE THERMIQUE JOUE LES TOURS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "", + "source:date": "2021-09-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654826, + 47.353958 + ] + }, + "properties": { + "operator": "HERVE THERMIQUE", + "owner:ref:FR:SIREN": "627220049", + "email": "bornederecharge@herve-thermique.com", + "phone": "247682000", + "network": "HERVE THERMIQUE IRVE", + "ref:EU:EVSE": "Non concerné", + "ref": "VRT_003418", + "name": "HERVE THERMIQUE JOUE LES TOURS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-08-25", + "note": "", + "source:date": "2021-09-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6196363424603306, + 47.11494422473446 + ] + }, + "properties": { + "operator": "Virta", + "owner:ref:FR:SIREN": "399780097", + "email": "support@virta.global", + "phone": "33186472690", + "network": "Réseau de recharge Virta Public", + "ref:EU:EVSE": "FRE10E108652", + "ref": "", + "name": "CREDIT AGRICOLE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-17", + "note": "", + "source:date": "2023-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.573539, + 50.408746 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "STBM", + "ref:EU:EVSE": "Non concerné", + "ref": "01FF28B6WNPQGFRVWMT6FVVV9V", + "name": "STBM", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-20", + "note": "", + "source:date": "2021-05-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.203439987359303, + 50.99486000882223 + ] + }, + "properties": { + "operator": "Société LEVAROY, Monsieur LEROY", + "owner:ref:FR:SIREN": "499606739", + "email": "levaroy@orange.fr", + "phone": "0624854294", + "network": "Levaroy", + "ref:EU:EVSE": "Non concerné", + "ref": "01FB4PZ8WF60XF3FXH7C4M33S9", + "name": "Borne Levaroy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "", + "source:date": "2021-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.481829, + 44.551008 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBVSE9OOBFL", + "ref": "BVSE9OOBFL", + "name": "Embrun, Chemin du Plan d Eau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94401, + 46.0163 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWOVHVSVADV", + "ref": "WOVHVSVADV", + "name": "Musièges, Za Des Bonnets", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0813288, + 46.1446775 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCWBZ2DL8DD", + "ref": "CWBZ2DL8DD", + "name": "Saint-Julien-En-Genevois, Parking de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.400384, + 44.524718 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKYWI522MXW", + "ref": "KYWI522MXW", + "name": "Savines-Le-Lac, Avenue du Faubourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.326756, + 44.695058 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTGYAPJC0IY", + "ref": "TGYAPJC0IY", + "name": "Orcières, Merlette - Casse Blanche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5574, + 44.4952 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZZAOSWZCD5", + "ref": "ZZAOSWZCD5", + "name": "Les Orres, Parking Horizon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5529, + 44.4852 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPG7IIRTHTVV", + "ref": "G7IIRTHTVV", + "name": "Les Orres, Parking Bois Means", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.496613, + 44.567371 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYRHKYUWSPC", + "ref": "YRHKYUWSPC", + "name": "Embrun, Route de Chalvet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13118, + 45.89654 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTSAVE2OGXW", + "ref": "TSAVE2OGXW", + "name": "Annecy, Parging Trésum", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.60619239, + 44.5461648 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJZZFBPHZN0", + "ref": "JZZFBPHZN0", + "name": "Crevoux, Pra Vesqua", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.812786, + 44.272603 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBPVCF4NFWS", + "ref": "BPVCF4NFWS", + "name": "Val Buech-Meouge, Parking Mairie- Château neuf de chabre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22944, + 46.1801 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOWMMX48HPN", + "ref": "OWMMX48HPN", + "name": "Etrembières, Parking RD1206", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.52835, + 46.3958 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSNOMOK8MEQ", + "ref": "SNOMOK8MEQ", + "name": "Publier, Cité De L'Eau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.52835, + 46.3958 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSNOMOK8MEQ", + "ref": "SNOMOK8MEQ", + "name": "Publier, Cité De L'Eau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69832, + 45.9169 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMHBJLZGXHM", + "ref": "MHBJLZGXHM", + "name": "Passy, Stade - Piscine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87171266, + 45.91714084 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPV1G6TQKEFF", + "ref": "V1G6TQKEFF", + "name": "Chamonix, Parking Grépon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.59628696, + 46.40028687 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMCO5MCQGLW", + "ref": "MCO5MCQGLW", + "name": "Evians-Les-Bains, Avenue des Grottes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22944, + 46.1801 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOWMMX48HPN", + "ref": "OWMMX48HPN", + "name": "Etrembières, Parking RD1206", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87171266, + 45.91714084 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPV1G6TQKEFF", + "ref": "V1G6TQKEFF", + "name": "Chamonix, Parking Grépon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12164055, + 45.90815666 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXBYM6MYKUM", + "ref": "XBYM6MYKUM", + "name": "Annecy, Parking des Romains", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.556539, + 44.790737 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEULNXGGME8", + "ref": "EULNXGGME8", + "name": "L'Argentière-La-Bessee, Place de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0564, + 44.4629 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGS486H2R3J", + "ref": "GS486H2R3J", + "name": "Tallard, Place du General de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22918, + 44.4649 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLBOH42YD32", + "ref": "LBOH42YD32", + "name": "Espinasses, Place Amédée Turel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.034507, + 44.458795 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYPBNINMYNO", + "ref": "YPBNINMYNO", + "name": "Tallard, Parking Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.752325, + 44.521057 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWS9GEQKX4X", + "ref": "WS9GEQKX4X", + "name": "Aspres-Sur-Buëch, Office de Tourisme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0103, + 44.5359 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCVTZIA5YAA", + "ref": "CVTZIA5YAA", + "name": "La Freissinouse, Parking de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.856609, + 44.231125 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPL1ZVU3VTKA", + "ref": "L1ZVU3VTKA", + "name": "Ribiers, Place de la Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.361567, + 44.575991 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFUSMB1T2DL", + "ref": "FUSMB1T2DL", + "name": "Reallon, La Station", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.403827, + 44.527699 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRZUDP5ZC6L", + "ref": "RZUDP5ZC6L", + "name": "Savines-Le-Lac, Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.400384, + 44.524718 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKYWI522MXW", + "ref": "KYWI522MXW", + "name": "Savines-Le-Lac, Avenue du Faubourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.72954, + 44.488113 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTOIG5O9FBL", + "ref": "TOIG5O9FBL", + "name": "Aspremont, Parking Coccimarket", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.471063, + 44.389375 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDCO2FHPJTD", + "ref": "DCO2FHPJTD", + "name": "Rosans, Camping Municipal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.498638, + 44.562874 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGLYX8EKDXS", + "ref": "GLYX8EKDXS", + "name": "Embrun, Espace de la Roche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.492683, + 44.562232 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEOEVKW231A", + "ref": "EOEVKW231A", + "name": "Embrun, Esplanade de la Resistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.499543, + 44.564163 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZJOOX1CSEU", + "ref": "ZJOOX1CSEU", + "name": "Embrun, Stade - Champs de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.325711, + 44.684191 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWJ8Z1KJHM8", + "ref": "WJ8Z1KJHM8", + "name": "Orcières, Parking de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.59628696, + 46.40028687 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMCO5MCQGLW", + "ref": "MCO5MCQGLW", + "name": "Evians-Les-Bains, Avenue des Grottes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.701949, + 44.619558 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP4KF4WCINB", + "ref": "P4KF4WCINB", + "name": "Saint-Julien-En-Beauchêne, Aire du Beauchêne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.672902, + 44.914662 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHQX9SNP7JC", + "ref": "HQX9SNP7JC", + "name": "Val-Des-Pres, Parking l Enclare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.721293, + 44.868338 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUHJOVHVZUL", + "ref": "UHJOVHVZUL", + "name": "Cervières, Route du Col d'Izoard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.725729527, + 44.93142339 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRXIEJHAHQH", + "ref": "RXIEJHAHQH", + "name": "Montgenèvre, Office de Tourisme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0103, + 44.5359 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCVTZIA5YAA", + "ref": "CVTZIA5YAA", + "name": "La Freissinouse, Parking de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.607755, + 45.019741 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEYJPJJQYRV", + "ref": "EYJPJJQYRV", + "name": "Nevache, Office de Tourisme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0547, + 44.4604 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPISMVMVMPVP", + "ref": "ISMVMVMPVP", + "name": "Tallard, Rue du Château - Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13118, + 45.89654 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTSAVE2OGXW", + "ref": "TSAVE2OGXW", + "name": "Annecy, Parging Trésum", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.59334, + 46.0498 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRYHFTY2PT7", + "ref": "RYHFTY2PT7", + "name": "Cluses, Autoport", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12164055, + 45.90815666 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXBYM6MYKUM", + "ref": "XBYM6MYKUM", + "name": "Annecy, Parking des Romains", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.59052, + 46.1058 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWVOTTGZPHU", + "ref": "WVOTTGZPHU", + "name": "Taninges, Parking Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2418001, + 46.1872704 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJT2OHSXSCS", + "ref": "JT2OHSXSCS", + "name": "Annemasse, Rue du Sentier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2431239, + 46.1977983 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDR9TBERC11", + "ref": "DR9TBERC11", + "name": "Ville-La-Grand, Rue des Tournelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.70249, + 46.18177 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEGAHT5NLC0", + "ref": "EGAHT5NLC0", + "name": "Morzine, Taille Du Grand Mas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2501381, + 46.1957504 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSFUJIVKVOR", + "ref": "SFUJIVKVOR", + "name": "Annemasse, Rue de la Bruyère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2500572, + 46.2012424 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZUDHFC7WPK", + "ref": "ZUDHFC7WPK", + "name": "Ville-La-Grand, Place Porte-Bonheur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.49167, + 46.06668 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYENI22PAXC", + "ref": "YENI22PAXC", + "name": "Vougy, Place Des Anciens Combattants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42785, + 46.35486 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPFIHFF2BIG", + "ref": "PFIHFF2BIG", + "name": "Anthy-Sur-Leman, Parking Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46464, + 46.33661 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPABQ4SHJDQX", + "ref": "ABQ4SHJDQX", + "name": "Allinges, Parking de l'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.61474, + 45.85996 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPF0XWONZVIN", + "ref": "F0XWONZVIN", + "name": "Megève, Parking Molettaz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.52257, + 46.33715 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSBBFTCPVCD", + "ref": "SBBFTCPVCD", + "name": "Lyaud, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22112, + 45.90633 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVWTMPYFVOZ", + "ref": "VWTMPYFVOZ", + "name": "Dingy-Saint-Clair, Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3705, + 45.8595 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCPJSS61PNE", + "ref": "CPJSS61PNE", + "name": "Manigod, Chef Lieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.425, + 45.9061111 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGXDZ8OG6HC", + "ref": "GXDZ8OG6HC", + "name": "La Clusaz, 39 Rue du cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.56682, + 45.83576 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJPJU8RHNGW", + "ref": "JPJU8RHNGW", + "name": "Praz-Sur-Arly, Plan Meuret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3031717, + 46.3072182 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEFUC1KB7A5", + "ref": "EFUC1KB7A5", + "name": "Douvaine, Avenue du Bas Chablais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.26788, + 46.32539 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDAWE5R7RWO", + "ref": "DAWE5R7RWO", + "name": "Chens-Sur-Leman, Ancienne Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.32492, + 46.36786 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWKHYWYQLE4", + "ref": "WKHYWYQLE4", + "name": "Yvoire, Parking Pré Ponce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3581754, + 46.3459998 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNZUZDQ7AS5", + "ref": "NZUZDQ7AS5", + "name": "Excenevex, Avenue de la Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1047065, + 46.1204422 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDRK2TIBPMV", + "ref": "DRK2TIBPMV", + "name": "Neydens, Parking Chef-Lieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.6859975, + 45.9230095 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDQYFSLZJSI", + "ref": "DQYFSLZJSI", + "name": "Passy, Parking Pfullingen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.234031, + 46.1917492 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGTJY9D5ZAF", + "ref": "GTJY9D5ZAF", + "name": "Annemasse, Rue Fernand David", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1557, + 45.9451 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNPPCXP", + "ref": "NPPCXP", + "name": "Argonay, Rue Des Contamines", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11126, + 45.8969 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAJCWTT", + "ref": "AJCWTT", + "name": "Annecy Cran-Gevrier, Rue Du Rond-Point", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1557, + 45.9451 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNPPCXP", + "ref": "NPPCXP", + "name": "Argonay, Rue Des Contamines", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.31337, + 46.2263 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPH0ZSKAREWB", + "ref": "H0ZSKAREWB", + "name": "Saint-Cergues, Parking Pizzaiola", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0055, + 45.8148 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWYDNKDUR6N", + "ref": "WYDNKDUR6N", + "name": "Alby-Sur-Cheran, Parking P+R", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.323481, + 45.883111 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYQIQWQ8UZY", + "ref": "YQIQWQ8UZY", + "name": "Thônes, Parking Clos", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86026, + 45.9015 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPTHUPUSXPM", + "ref": "PTHUPUSXPM", + "name": "Chamonix-Mont-Blanc, Tunnel du Mont-Blanc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.59334, + 46.0498 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRYHFTY2PT7", + "ref": "RYHFTY2PT7", + "name": "Cluses, Autoport", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27037, + 45.7562 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVHTXXUOXPG", + "ref": "VHTXXUOXPG", + "name": "Faverges, Aire De Repos", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27037, + 45.7562 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVHTXXUOXPG", + "ref": "VHTXXUOXPG", + "name": "Faverges, Aire De Repos", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86026, + 45.9015 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPTHUPUSXPM", + "ref": "PTHUPUSXPM", + "name": "Chamonix-Mont-Blanc, Tunnel du Mont-Blanc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.323481, + 45.883111 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYQIQWQ8UZY", + "ref": "YQIQWQ8UZY", + "name": "Thônes, Parking Clos", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69832, + 45.9169 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMHBJLZGXHM", + "ref": "MHBJLZGXHM", + "name": "Passy, Stade - Piscine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94401, + 46.0163 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWOVHVSVADV", + "ref": "WOVHVSVADV", + "name": "Musièges, Za Des Bonnets", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0055, + 45.8148 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWYDNKDUR6N", + "ref": "WYDNKDUR6N", + "name": "Alby-Sur-Cheran, Parking P+R", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.31337, + 46.2263 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPH0ZSKAREWB", + "ref": "H0ZSKAREWB", + "name": "Saint-Cergues, Parking Pizzaiola", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3274777, + 45.88239121 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYQIQWQ8UZY", + "ref": "YQIQWQ8UZY", + "name": "Thônes, Parking Clos", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11126, + 45.8969 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAJCWTT", + "ref": "AJCWTT", + "name": "Annecy Cran-Gevrier, Rue Du Rond-Point", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-01", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.403103, + 46.207255 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKSXIXLLCSP", + "ref": "KSXIXLLCSP", + "name": "Boëge, Rue de la Vallée verte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.403103, + 46.207255 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKSXIXLLCSP", + "ref": "KSXIXLLCSP", + "name": "Boëge, Rue de la Vallée verte", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3274777, + 45.88239121 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYQIQWQ8UZY", + "ref": "YQIQWQ8UZY", + "name": "Thônes, Parking Clos", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.607755, + 45.019741 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEYJPJJQYRV", + "ref": "EYJPJJQYRV", + "name": "Nevache, Office de Tourisme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.928601, + 44.675988 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGDURFISRRH", + "ref": "GDURFISRRH", + "name": "Devoluy, Superdevoluy - Parking Lilas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.580031, + 44.750171 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCWDDIHOIZF", + "ref": "CWDDIHOIZF", + "name": "La Roche-De-Rame, Voie Communale 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.826448, + 44.313627 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIMNKKM8CKN", + "ref": "IMNKKM8CKN", + "name": "Laragne-Monteglin, Parking Veragne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.632719, + 44.622584 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPM3TYYDTBPB", + "ref": "M3TYYDTBPB", + "name": "Risoul, Office de Tourisme", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.277534, + 44.547316 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKYMNEXEV9U", + "ref": "KYMNEXEV9U", + "name": "Chorges, Place du Grand Logis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1377729, + 46.1421246 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGA7MONBEKP", + "ref": "GA7MONBEKP", + "name": "Collonges-Sous-Salève, Rd 1206", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.891595, + 44.688716 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOTIJNYI4G7", + "ref": "OTIJNYI4G7", + "name": "Devoluy, La Joue du Loup", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.278045, + 44.543139 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZOZRCQYIPI", + "ref": "ZOZRCQYIPI", + "name": "Chorges, Parking des Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.40560759, + 45.0356367 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP0A4HH2T9K", + "ref": "P0A4HH2T9K", + "name": "Le Monêtier-Les-Bains, Hôtel Les Glaciers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.510674, + 44.97595 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDAT3HIUUJM", + "ref": "DAT3HIUUJM", + "name": "Le Monêtier-Les-Bains, Route de Grenoble", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.197639, + 44.565323 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEK3YFXDJPI", + "ref": "EK3YFXDJPI", + "name": "La Batie-Neuve, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.498394, + 44.824989 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHQNBNX4FTU", + "ref": "HQNBNX4FTU", + "name": "Puy-Saint-Vincent, Le Laux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.856609, + 44.231125 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPL1ZVU3VTKA", + "ref": "L1ZVU3VTKA", + "name": "Ribiers, Place de la Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.89593426, + 44.29475516 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLMYDZA6WOH", + "ref": "LMYDZA6WOH", + "name": "Le Poët, Place de la Bascule", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.490031, + 44.844086 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXVHD82BG9X", + "ref": "XVHD82BG9X", + "name": "Vallouise, Pelvoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204541, + 44.62348 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMMNYV6SKZ1", + "ref": "MMNYV6SKZ1", + "name": "Ancelle, Place du Groupe Scolaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.169101, + 44.64284 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDJZ3SGBTQ4", + "ref": "DJZ3SGBTQ4", + "name": "Chabottes, Parking Haute Plaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.231873, + 44.668239 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWGGW16XY2X", + "ref": "WGGW16XY2X", + "name": "Saint-Jean-Saint-Nicolas, Parking de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.499543, + 44.564163 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZJOOX1CSEU", + "ref": "ZJOOX1CSEU", + "name": "Embrun, Stade - Champs de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22918, + 44.4649 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLBOH42YD32", + "ref": "LBOH42YD32", + "name": "Espinasses, Place Amédée Turel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.326756, + 44.695058 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTGYAPJC0IY", + "ref": "TGYAPJC0IY", + "name": "Orcières, Merlette - Casse Blanche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.498638, + 44.562874 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGLYX8EKDXS", + "ref": "GLYX8EKDXS", + "name": "Embrun, Espace de la Roche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5574, + 44.4952 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZZAOSWZCD5", + "ref": "ZZAOSWZCD5", + "name": "Les Orres, Parking Horizon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.649073, + 44.661324 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDRJCSRLME5", + "ref": "DRJCSRLME5", + "name": "Guillestre, Champ de Foire", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.649073, + 44.661324 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDRJCSRLME5", + "ref": "DRJCSRLME5", + "name": "Guillestre, Champ de Foire", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.632719, + 44.622584 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPM3TYYDTBPB", + "ref": "M3TYYDTBPB", + "name": "Risoul, Office de Tourisme", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.498394, + 44.824989 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHQNBNX4FTU", + "ref": "HQNBNX4FTU", + "name": "Puy-Saint-Vincent, Le Laux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.827471, + 44.535099 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO3D66ZVWF8", + "ref": "O3D66ZVWF8", + "name": "Veynes, Place Albert Pons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8223, + 44.7616 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOTB2ORHCSB", + "ref": "OTB2ORHCSB", + "name": "Château-Ville-Vieille, Ville Vieille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.632719, + 44.622584 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPM3TYYDTBPB", + "ref": "M3TYYDTBPB", + "name": "Risoul, Office de Tourisme", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.624609, + 44.670518 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLWVJGTCWAV", + "ref": "LWVJGTCWAV", + "name": "Mont-Dauphin, Le Fort", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.680047, + 44.571774 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEBFZ5AXIPG", + "ref": "EBFZ5AXIPG", + "name": "Vars, Les Claux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.580566, + 44.649808 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPFSNGXZAQM", + "ref": "PFSNGXZAQM", + "name": "Saint-Clement-Sur-Durance, Maison du Tourisme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.718155, + 44.428729 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOZQAXE8API", + "ref": "OZQAXE8API", + "name": "Serres, Rue Marius Meyer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.694359, + 44.312791 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAVPMF7FPWF", + "ref": "AVPMF7FPWF", + "name": "Orpierre, Parking UCPA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65137, + 44.657303 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRH93NMVN5Q", + "ref": "RH93NMVN5Q", + "name": "Guillestre, Rue de la Fontloube", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.865808, + 44.699294 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPT00CHAS1VP", + "ref": "T00CHAS1VP", + "name": "Saint-Veran, Parking Beauregard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58674, + 44.933873 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW5UAOHAP6F", + "ref": "W5UAOHAP6F", + "name": "Saint-Chaffrey, Le Coolidge", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84759393, + 44.71980038 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFFCIXLY2AX", + "ref": "FFCIXLY2AX", + "name": "Molines-En-Queyras, Clot la Chalpe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.865808, + 44.699294 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPT00CHAS1VP", + "ref": "T00CHAS1VP", + "name": "Saint-Veran, Parking Beauregard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.580031, + 44.750171 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCWDDIHOIZF", + "ref": "CWDDIHOIZF", + "name": "La Roche-De-Rame, Voie Communale 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.812786, + 44.272603 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBPVCF4NFWS", + "ref": "BPVCF4NFWS", + "name": "Val Buech-Meouge, Parking Mairie- Château neuf de chabre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.824664, + 44.315547 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR0FHUDC6EV", + "ref": "R0FHUDC6EV", + "name": "Laragne-Monteglin, Place des Lavandes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.89593426, + 44.29475516 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLMYDZA6WOH", + "ref": "LMYDZA6WOH", + "name": "Le Poët, Place de la Bascule", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.649073, + 44.661324 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDRJCSRLME5", + "ref": "DRJCSRLME5", + "name": "Guillestre, Champ de Foire", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.649073, + 44.661324 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDRJCSRLME5", + "ref": "DRJCSRLME5", + "name": "Guillestre, Champ de Foire", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.481829, + 44.551008 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBVSE9OOBFL", + "ref": "BVSE9OOBFL", + "name": "Embrun, Chemin du Plan d Eau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.492683, + 44.562232 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEOEVKW231A", + "ref": "EOEVKW231A", + "name": "Embrun, Esplanade de la Resistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.471063, + 44.389375 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDCO2FHPJTD", + "ref": "DCO2FHPJTD", + "name": "Rosans, Camping Municipal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.694359, + 44.312791 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAVPMF7FPWF", + "ref": "AVPMF7FPWF", + "name": "Orpierre, Parking UCPA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.613159, + 44.415394 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHD9NVGOEYE", + "ref": "HD9NVGOEYE", + "name": "L'Epine, Place du 19 Mars 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58674, + 44.933873 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW5UAOHAP6F", + "ref": "W5UAOHAP6F", + "name": "Saint-Chaffrey, Le Coolidge", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.193801, + 44.81712 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUIV8WSGZS3", + "ref": "UIV8WSGZS3", + "name": "La Chapelle-En-Valgaudemar, Immeuble Les Glaciers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.027689, + 44.780812 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMF3IZD0TYS", + "ref": "MF3IZD0TYS", + "name": "Saint-Firmin, Parking sous la poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.689987, + 44.594376 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCSEKWHVUFM", + "ref": "CSEKWHVUFM", + "name": "Vars, Office de Tourisme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.075528, + 44.683441 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXWOZOZWQ4X", + "ref": "XWOZOZWQ4X", + "name": "Saint-Bonnet-En-Champsaur, Gendarmerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.077297, + 44.682134 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPC3RYGMDUOZ", + "ref": "C3RYGMDUOZ", + "name": "Saint-Bonnet-En-Champsaur, Place Waldems", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.680047, + 44.571774 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEBFZ5AXIPG", + "ref": "EBFZ5AXIPG", + "name": "Vars, Les Claux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.580566, + 44.649808 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPFSNGXZAQM", + "ref": "PFSNGXZAQM", + "name": "Saint-Clement-Sur-Durance, Maison du Tourisme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.632719, + 44.622584 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPM3TYYDTBPB", + "ref": "M3TYYDTBPB", + "name": "Risoul, Office de Tourisme", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.624609, + 44.670518 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLWVJGTCWAV", + "ref": "LWVJGTCWAV", + "name": "Mont-Dauphin, Le Fort", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.721293, + 44.868338 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUHJOVHVZUL", + "ref": "UHJOVHVZUL", + "name": "Cervières, Route du Col d'Izoard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.672902, + 44.914662 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHQX9SNP7JC", + "ref": "HQX9SNP7JC", + "name": "Val-Des-Pres, Parking l Enclare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.725729527, + 44.93142339 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRXIEJHAHQH", + "ref": "RXIEJHAHQH", + "name": "Montgenèvre, Office de Tourisme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.556539, + 44.790737 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEULNXGGME8", + "ref": "EULNXGGME8", + "name": "L'Argentière-La-Bessee, Place de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0547, + 44.4604 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPISMVMVMPVP", + "ref": "ISMVMVMPVP", + "name": "Tallard, Rue du Château - Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.034507, + 44.458795 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYPBNINMYNO", + "ref": "YPBNINMYNO", + "name": "Tallard, Parking Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0564, + 44.4629 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGS486H2R3J", + "ref": "GS486H2R3J", + "name": "Tallard, Place du General de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.824664, + 44.315547 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR0FHUDC6EV", + "ref": "R0FHUDC6EV", + "name": "Laragne-Monteglin, Place des Lavandes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65137, + 44.657303 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRH93NMVN5Q", + "ref": "RH93NMVN5Q", + "name": "Guillestre, Rue de la Fontloube", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.718155, + 44.428729 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOZQAXE8API", + "ref": "OZQAXE8API", + "name": "Serres, Rue Marius Meyer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.72954, + 44.488113 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTOIG5O9FBL", + "ref": "TOIG5O9FBL", + "name": "Aspremont, Parking Coccimarket", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.752325, + 44.521057 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWS9GEQKX4X", + "ref": "WS9GEQKX4X", + "name": "Aspres-Sur-Buëch, Office de Tourisme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.701949, + 44.619558 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP4KF4WCINB", + "ref": "P4KF4WCINB", + "name": "Saint-Julien-En-Beauchêne, Aire du Beauchêne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.826448, + 44.313627 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIMNKKM8CKN", + "ref": "IMNKKM8CKN", + "name": "Laragne-Monteglin, Parking Veragne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.325711, + 44.684191 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWJ8Z1KJHM8", + "ref": "WJ8Z1KJHM8", + "name": "Orcières, Parking de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.403827, + 44.527699 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRZUDP5ZC6L", + "ref": "RZUDP5ZC6L", + "name": "Savines-Le-Lac, Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.361567, + 44.575991 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFUSMB1T2DL", + "ref": "FUSMB1T2DL", + "name": "Reallon, La Station", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.891595, + 44.688716 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOTIJNYI4G7", + "ref": "OTIJNYI4G7", + "name": "Devoluy, La Joue du Loup", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.928601, + 44.675988 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGDURFISRRH", + "ref": "GDURFISRRH", + "name": "Devoluy, Superdevoluy - Parking Lilas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.277534, + 44.547316 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKYMNEXEV9U", + "ref": "KYMNEXEV9U", + "name": "Chorges, Place du Grand Logis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204541, + 44.62348 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMMNYV6SKZ1", + "ref": "MMNYV6SKZ1", + "name": "Ancelle, Place du Groupe Scolaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.490031, + 44.844086 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXVHD82BG9X", + "ref": "XVHD82BG9X", + "name": "Vallouise, Pelvoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.231873, + 44.668239 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWGGW16XY2X", + "ref": "WGGW16XY2X", + "name": "Saint-Jean-Saint-Nicolas, Parking de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.169101, + 44.64284 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDJZ3SGBTQ4", + "ref": "DJZ3SGBTQ4", + "name": "Chabottes, Parking Haute Plaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.60619239, + 44.5461648 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJZZFBPHZN0", + "ref": "JZZFBPHZN0", + "name": "Crevoux, Pra Vesqua", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.496613, + 44.567371 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYRHKYUWSPC", + "ref": "YRHKYUWSPC", + "name": "Embrun, Route de Chalvet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5529, + 44.4852 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPG7IIRTHTVV", + "ref": "G7IIRTHTVV", + "name": "Les Orres, Parking Bois Means", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.40560759, + 45.0356367 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP0A4HH2T9K", + "ref": "P0A4HH2T9K", + "name": "Le Monêtier-Les-Bains, Hôtel Les Glaciers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.278045, + 44.543139 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZOZRCQYIPI", + "ref": "ZOZRCQYIPI", + "name": "Chorges, Parking des Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.197639, + 44.565323 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEK3YFXDJPI", + "ref": "EK3YFXDJPI", + "name": "La Batie-Neuve, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.510674, + 44.97595 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDAT3HIUUJM", + "ref": "DAT3HIUUJM", + "name": "Le Monêtier-Les-Bains, Route de Grenoble", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.7128251, + 45.8878674 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBAVXN00NQZ", + "ref": "BAVXN00NQZ", + "name": "Saint-Gervais-Les-Bains, Parking Patinoire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96791, + 46.10947 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWNCHD87MLT", + "ref": "WNCHD87MLT", + "name": "Valleiry, Rue De La Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0797251, + 46.1411537 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTYMBBVGUX0", + "ref": "TYMBBVGUX0", + "name": "Saint-Julien-En-Genevois, Grand Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.52646, + 46.06035 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAG3CUDNG6G", + "ref": "AG3CUDNG6G", + "name": "Marnaz, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5491808, + 46.0568649 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPB92IX0BMR1", + "ref": "B92IX0BMR1", + "name": "Scionzier, Place du 18 Août", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4282, + 45.9415 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHBM95RMP7A", + "ref": "HBM95RMP7A", + "name": "Le Grand-Bornand, Cimetiere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.6562248, + 46.2319364 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPODXLXEZKBM", + "ref": "ODXLXEZKBM", + "name": "Saint-Jean-D'Aulps, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.867244, + 45.9169475 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPV03V6B3GVC", + "ref": "V03V6B3GVC", + "name": "Chamonix-Mont-Blanc, Parking Courmayeur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4056, + 46.2085 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYAJEY50I1R", + "ref": "YAJEY50I1R", + "name": "Boëge, 50 Rue du Bourno", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5311, + 46.05942 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFEEL9LIPEP", + "ref": "FEEL9LIPEP", + "name": "Marnaz, Parking CTM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.57812, + 46.39822 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPH2TVD8QWSA", + "ref": "H2TVD8QWSA", + "name": "Evian-Les-Bains, Avenue De La Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58711, + 46.40099 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXTOLYUEL6R", + "ref": "XTOLYUEL6R", + "name": "Evian-Les-Bains, Place des Allinges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.80141, + 46.39387 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRSYEDPHZVE", + "ref": "RSYEDPHZVE", + "name": "Saint-Gingolph, Quai Chevallay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.45734, + 46.1382 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYRJ3UX21SF", + "ref": "YRJ3UX21SF", + "name": "Saint-Jeoire, Clos Saint François", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.45734, + 46.1382 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYRJ3UX21SF", + "ref": "YRJ3UX21SF", + "name": "Saint-Jeoire, Clos Saint François", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.139655, + 45.940159 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO21GQVZ2FZ", + "ref": "O21GQVZ2FZ", + "name": "Argonay, Quartier Rigoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.31765, + 46.19112 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPIDK70DETG", + "ref": "PIDK70DETG", + "name": "Lucinges, Place de la Vignule", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720684, + 46.28074 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVHGFCGFP0Q", + "ref": "VHGFCGFP0Q", + "name": "Abondance, Parking De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.72854, + 46.08306 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJJZ5BFGYRF", + "ref": "JJZ5BFGYRF", + "name": "Samoëns, Parking Le Criou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10641, + 46.03216 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJV1D6ZX6CS", + "ref": "JV1D6ZX6CS", + "name": "Cruseilles, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.32021, + 46.16807 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWO2U9NU6WH", + "ref": "WO2U9NU6WH", + "name": "Bonne, RD907", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8723734, + 45.9217431 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJDZUASRU2S", + "ref": "JDZUASRU2S", + "name": "Chamonix-Mont-Blanc, Parking Allobroges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8750103, + 45.9258487 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEWBWX8MWV7", + "ref": "EWBWX8MWV7", + "name": "Chamonix-Mont-Blanc, Parking du Corzelet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8690192, + 45.9239269 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZVTXA1HEAM", + "ref": "ZVTXA1HEAM", + "name": "Chamonix-Mont-Blanc, Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1013174, + 46.0946733 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGM910S6PBS", + "ref": "GM910S6PBS", + "name": "Beaumont, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2688, + 46.13461 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR4SOF6UFOS", + "ref": "R4SOF6UFOS", + "name": "Reignier-Esery, Rue du Môle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2097281, + 46.1913894 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIMKLPMKKZY", + "ref": "IMKLPMKKZY", + "name": "Gaillard, Rue de Moellesulaz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4040479, + 46.1421419 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBAQ6RWB5LG", + "ref": "BAQ6RWB5LG", + "name": "Viuz-En-Sallaz, Proximité centre commercial des Brochets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.62745, + 46.37938 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZSXXLQQOA8", + "ref": "ZSXXLQQOA8", + "name": "Saint-Paul-En-Chablais, Parking Relais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5813048, + 46.0610345 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPLHDMFICPU", + "ref": "PLHDMFICPU", + "name": "Cluses, Rue Pré Benevix - Cœur de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.68976, + 46.00658 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCAU4LIXEUR", + "ref": "CAU4LIXEUR", + "name": "Arâches-La-Frasse, Flaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.6210576, + 46.0200208 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNF37UCDDPC", + "ref": "NF37UCDDPC", + "name": "Magland, Parking de la Bézière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.670556, + 46.16 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLAAMCG1RZX", + "ref": "LAAMCG1RZX", + "name": "Les Gets, Parking Pic", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58349, + 46.08865 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUGTSBKUGBT", + "ref": "UGTSBKUGBT", + "name": "Châtillon-Sur-Cluses, Route de Taninges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63658, + 46.03355 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPIPMPI1GSK", + "ref": "PIPMPI1GSK", + "name": "Arâches-La-Frasse, D106 Route de la Barliette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.50392, + 46.09152 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSMNREJQJRD", + "ref": "SMNREJQJRD", + "name": "Marignier, Parking De la passerelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.7979927, + 45.8889078 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKDBQHXLRTS", + "ref": "KDBQHXLRTS", + "name": "Les Houches, Parking du Fresnay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.50848, + 46.08869 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYRUUXFJYTW", + "ref": "YRUUXFJYTW", + "name": "Marignier, Parking De La Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5414348, + 46.076664 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRJVJ8NDBBF", + "ref": "RJVJ8NDBBF", + "name": "Thyez, Rue des Sorbiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5621063, + 46.0691081 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHHXSOERCYL", + "ref": "HHXSOERCYL", + "name": "Cluses, Sardagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4040479, + 46.1421419 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBAQ6RWB5LG", + "ref": "BAQ6RWB5LG", + "name": "Viuz-En-Sallaz, Proximité centre commercial des Brochets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2115413, + 46.1889469 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCX2VTC22TK", + "ref": "CX2VTC22TK", + "name": "Gaillard, Espace Louis Simon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.670556, + 46.16 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLAAMCG1RZX", + "ref": "LAAMCG1RZX", + "name": "Les Gets, Parking Pic", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.6210576, + 46.0200208 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNF37UCDDPC", + "ref": "NF37UCDDPC", + "name": "Magland, Parking de la Bézière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58349, + 46.08865 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUGTSBKUGBT", + "ref": "UGTSBKUGBT", + "name": "Châtillon-Sur-Cluses, Route de Taninges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2097281, + 46.1913894 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIMKLPMKKZY", + "ref": "IMKLPMKKZY", + "name": "Gaillard, Rue de Moellesulaz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2115413, + 46.1889469 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCX2VTC22TK", + "ref": "CX2VTC22TK", + "name": "Gaillard, Espace Louis Simon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2911397, + 46.1845626 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDQETGFDKRS", + "ref": "DQETGFDKRS", + "name": "Cranves-Sales, Route de Borly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.840009, + 46.267741 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZ1ILFORWGY", + "ref": "Z1ILFORWGY", + "name": "Châtel, Route de Meurba", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09222, + 45.9064 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLZJLZN", + "ref": "LZJLZN", + "name": "Annecy Cran-Gevrier, Allée Jean Mermoz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12962, + 45.9026 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDTJZZQ", + "ref": "DTJZZQ", + "name": "Annecy, Bonlieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.115, + 45.8996 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYGKQEX", + "ref": "YGKQEX", + "name": "Annecy, Place de la Mandallaz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.19782, + 45.8616 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHRCEDY", + "ref": "HRCEDY", + "name": "Menthon-Saint-Bernard, Parking Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.591829, + 46.144208 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLNG7XIKQU2", + "ref": "LNG7XIKQU2", + "name": "Taninges (Praz De Lys), Route de la Ramaz", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.774007, + 46.053531 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGULDWSUOJM", + "ref": "GULDWSUOJM", + "name": "Sixt-Fer-à-Cheval, Place de la Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.073676, + 46.142809 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCVEVFLDAHI", + "ref": "CVEVFLDAHI", + "name": "Saint Julien En Genevois, Rue Jacques Duboin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.473147, + 46.24829 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBKO8NQUJ3G", + "ref": "BKO8NQUJ3G", + "name": "Habère-Poche, Route Vielle verde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.473147, + 46.24829 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBKO8NQUJ3G", + "ref": "BKO8NQUJ3G", + "name": "Habère-Poche, Route Vielle verde", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.591829, + 46.144208 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLNG7XIKQU2", + "ref": "LNG7XIKQU2", + "name": "Taninges (Praz De Lys), Route de la Ramaz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.621296, + 45.860103 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWCBMBTLQJ7", + "ref": "WCBMBTLQJ7", + "name": "Megève, RD1212", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.639805, + 46.025563 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQG1JJTOKPN", + "ref": "QG1JJTOKPN", + "name": "Arâches-La-Frasse, Route des Moulins", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94768024, + 45.86309439 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSAYQDHUGKA", + "ref": "SAYQDHUGKA", + "name": "Rumilly, Parking de la Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.774007, + 46.053531 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGULDWSUOJM", + "ref": "GULDWSUOJM", + "name": "Sixt-Fer-à-Cheval, Place de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.619913, + 45.863904 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPB23XI8EXVR", + "ref": "B23XI8EXVR", + "name": "Megève, Parking du Jaillet", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.424995, + 45.906059 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGCKM4BEY1K", + "ref": "GCKM4BEY1K", + "name": "La Clusaz, Parking Cimetière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.406002, + 46.077103 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPV4BCPZSKGF", + "ref": "V4BCPZSKGF", + "name": "Bonneville, Quai du Parquet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05437, + 45.7866 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMXJSYM", + "ref": "MXJSYM", + "name": "Gruffy, Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05437, + 45.7866 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMXJSYM", + "ref": "MXJSYM", + "name": "Gruffy, Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.29294, + 45.7483 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMMDHJY", + "ref": "MMDHJY", + "name": "Faverges, Place Joseph Sérand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.19782, + 45.8616 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHRCEDY", + "ref": "HRCEDY", + "name": "Menthon-Saint-Bernard, Parking Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.115, + 45.8996 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYGKQEX", + "ref": "YGKQEX", + "name": "Annecy, Place de la Mandallaz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1293, + 45.9124 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQNFNVB", + "ref": "QNFNVB", + "name": "Annecy, Rue de la Fraternité", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09222, + 45.9064 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLZJLZN", + "ref": "LZJLZN", + "name": "Annecy Cran-Gevrier, Allée Jean Mermoz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12307, + 45.8956 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTTWQMV", + "ref": "TTWQMV", + "name": "Annecy, Faubourg Des Balmettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11669, + 45.91755 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW3UFAZDOEH", + "ref": "W3UFAZDOEH", + "name": "Annecy, Parc des sports", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1293, + 45.9124 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQNFNVB", + "ref": "QNFNVB", + "name": "Annecy, Rue de la Fraternité", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16349, + 45.9263 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJKHUKN", + "ref": "JKHUKN", + "name": "Annecy-le-Vieux, RIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16349, + 45.9263 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJKHUKN", + "ref": "JKHUKN", + "name": "Annecy-le-Vieux, RIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11669, + 45.91755 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW3UFAZDOEH", + "ref": "W3UFAZDOEH", + "name": "Annecy, Parc des sports", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11669, + 45.91755 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW3UFAZDOEH", + "ref": "W3UFAZDOEH", + "name": "Annecy, Parc des sports", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11669, + 45.91755 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW3UFAZDOEH", + "ref": "W3UFAZDOEH", + "name": "Annecy, Parc des sports", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11669, + 45.91755 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW3UFAZDOEH", + "ref": "W3UFAZDOEH", + "name": "Annecy, Parc des sports", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11669, + 45.91755 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW3UFAZDOEH", + "ref": "W3UFAZDOEH", + "name": "Annecy, Parc des sports", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11669, + 45.91755 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW3UFAZDOEH", + "ref": "W3UFAZDOEH", + "name": "Annecy, Parc des sports", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11669, + 45.91755 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW3UFAZDOEH", + "ref": "W3UFAZDOEH", + "name": "Annecy, Parc des sports", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13666, + 45.9078 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBMGNQC", + "ref": "BMGNQC", + "name": "Annecy, Route De Vignieres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1202, + 45.9157 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBGWGWV", + "ref": "BGWGWV", + "name": "Annecy, Rue Baron Pierre De Coubertin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1202, + 45.9157 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBGWGWV", + "ref": "BGWGWV", + "name": "Annecy, Rue Baron Pierre De Coubertin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12163, + 45.908 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYYJMCQ", + "ref": "YYJMCQ", + "name": "Annecy, Place Des Romains", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12163, + 45.908 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYYJMCQ", + "ref": "YYJMCQ", + "name": "Annecy, Place Des Romains", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13666, + 45.9078 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBMGNQC", + "ref": "BMGNQC", + "name": "Annecy, Route De Vignieres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12962, + 45.9026 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDTJZZQ", + "ref": "DTJZZQ", + "name": "Annecy, Bonlieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12307, + 45.8956 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTTWQMV", + "ref": "TTWQMV", + "name": "Annecy, Faubourg Des Balmettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.80141, + 46.39387 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRSYEDPHZVE", + "ref": "RSYEDPHZVE", + "name": "Saint-Gingolph, Quai Chevallay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.57812, + 46.39822 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPH2TVD8QWSA", + "ref": "H2TVD8QWSA", + "name": "Evian-Les-Bains, Avenue De La Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.727681, + 45.820233 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEJXYMI6XHO", + "ref": "EJXYMI6XHO", + "name": "Les Contamines-Montjoie, Parking du Solaret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.234031, + 46.1917492 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGTJY9D5ZAF", + "ref": "GTJY9D5ZAF", + "name": "Annemasse, Rue Fernand David", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3031717, + 46.3072182 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEFUC1KB7A5", + "ref": "EFUC1KB7A5", + "name": "Douvaine, Avenue du Bas Chablais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.417302, + 46.0782491 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQH0TXLZWSV", + "ref": "QH0TXLZWSV", + "name": "Bonneville, Avenue de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.62106, + 45.85997 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFQSBKCRGOP", + "ref": "FQSBKCRGOP", + "name": "Megève, Jardin Public RD1212", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.39608, + 46.00143 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPFMAS0BOXW", + "ref": "PFMAS0BOXW", + "name": "Le Petit-Bornand-Les-Glières, Parking de la Médiathèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.32796, + 46.298313 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRZHD8TNRZR", + "ref": "RZHD8TNRZR", + "name": "Ballaison, Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.25827, + 46.26919 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPELVWIEUKPA", + "ref": "ELVWIEUKPA", + "name": "Veigy-Foncenex, Parking Champ Faviol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5414348, + 46.076664 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRJVJ8NDBBF", + "ref": "RJVJ8NDBBF", + "name": "Thyez, Rue des Sorbiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63658, + 46.03355 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPIPMPI1GSK", + "ref": "PIPMPI1GSK", + "name": "Arâches-La-Frasse, D106 Route de la Barliette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5621063, + 46.0691081 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHHXSOERCYL", + "ref": "HHXSOERCYL", + "name": "Cluses, Sardagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.49167, + 46.06668 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYENI22PAXC", + "ref": "YENI22PAXC", + "name": "Vougy, Place Des Anciens Combattants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.62745, + 46.37938 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZSXXLQQOA8", + "ref": "ZSXXLQQOA8", + "name": "Saint-Paul-En-Chablais, Parking Relais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720604, + 45.9279808 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLFIWEBSSVC", + "ref": "LFIWEBSSVC", + "name": "Passy, Place Berger", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.7054898, + 45.9084331 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBOHPZMIGRR", + "ref": "BOHPZMIGRR", + "name": "Passy, Parking Mattel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3705, + 45.8595 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCPJSS61PNE", + "ref": "CPJSS61PNE", + "name": "Manigod, Chef Lieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.68976, + 46.00658 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCAU4LIXEUR", + "ref": "CAU4LIXEUR", + "name": "Arâches-La-Frasse, Flaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5813048, + 46.0610345 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPLHDMFICPU", + "ref": "PLHDMFICPU", + "name": "Cluses, Rue Pré Benevix - Cœur de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2500572, + 46.2012424 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZUDHFC7WPK", + "ref": "ZUDHFC7WPK", + "name": "Ville-La-Grand, Place Porte-Bonheur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.42785, + 46.35486 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPFIHFF2BIG", + "ref": "PFIHFF2BIG", + "name": "Anthy-Sur-Leman, Parking Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2431239, + 46.1977983 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDR9TBERC11", + "ref": "DR9TBERC11", + "name": "Ville-La-Grand, Rue des Tournelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.7054898, + 45.9084331 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBOHPZMIGRR", + "ref": "BOHPZMIGRR", + "name": "Passy, Parking Mattel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.26788, + 46.32539 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDAWE5R7RWO", + "ref": "DAWE5R7RWO", + "name": "Chens-Sur-Leman, Ancienne Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3581754, + 46.3459998 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNZUZDQ7AS5", + "ref": "NZUZDQ7AS5", + "name": "Excenevex, Avenue de la Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3746593, + 46.3324048 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMFG307V2NS", + "ref": "MFG307V2NS", + "name": "Sciez, Parking face à la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.32492, + 46.36786 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWKHYWYQLE4", + "ref": "WKHYWYQLE4", + "name": "Yvoire, Parking Pré Ponce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.62106, + 45.85997 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFQSBKCRGOP", + "ref": "FQSBKCRGOP", + "name": "Megève, Jardin Public RD1212", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.70555, + 46.18337 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHSN542X2AO", + "ref": "HSN542X2AO", + "name": "Morzine, Route Du Palais Des Sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.56682, + 45.83576 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJPJU8RHNGW", + "ref": "JPJU8RHNGW", + "name": "Praz-Sur-Arly, Plan Meuret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.417302, + 46.0782491 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQH0TXLZWSV", + "ref": "QH0TXLZWSV", + "name": "Bonneville, Avenue de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.32796, + 46.298313 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRZHD8TNRZR", + "ref": "RZHD8TNRZR", + "name": "Ballaison, Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3746593, + 46.3324048 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMFG307V2NS", + "ref": "MFG307V2NS", + "name": "Sciez, Parking face à la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.39608, + 46.00143 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPFMAS0BOXW", + "ref": "PFMAS0BOXW", + "name": "Le Petit-Bornand-Les-Glières, Parking de la Médiathèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.25827, + 46.26919 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPELVWIEUKPA", + "ref": "ELVWIEUKPA", + "name": "Veigy-Foncenex, Parking Champ Faviol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1047065, + 46.1204422 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDRK2TIBPMV", + "ref": "DRK2TIBPMV", + "name": "Neydens, Parking Chef-Lieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0813288, + 46.1446775 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCWBZ2DL8DD", + "ref": "CWBZ2DL8DD", + "name": "Saint-Julien-En-Genevois, Parking de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.7128251, + 45.8878674 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBAVXN00NQZ", + "ref": "BAVXN00NQZ", + "name": "Saint-Gervais-Les-Bains, Parking Patinoire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0797251, + 46.1411537 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTYMBBVGUX0", + "ref": "TYMBBVGUX0", + "name": "Saint-Julien-En-Genevois, Grand Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.61474, + 45.85996 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPF0XWONZVIN", + "ref": "F0XWONZVIN", + "name": "Megève, Parking Molettaz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1377729, + 46.1421246 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGA7MONBEKP", + "ref": "GA7MONBEKP", + "name": "Collonges-Sous-Salève, Rd 1206", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.70555, + 46.18337 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHSN542X2AO", + "ref": "HSN542X2AO", + "name": "Morzine, Route Du Palais Des Sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.70249, + 46.18177 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEGAHT5NLC0", + "ref": "EGAHT5NLC0", + "name": "Morzine, Taille Du Grand Mas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720604, + 45.9279808 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLFIWEBSSVC", + "ref": "LFIWEBSSVC", + "name": "Passy, Place Berger", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.727681, + 45.820233 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEJXYMI6XHO", + "ref": "EJXYMI6XHO", + "name": "Les Contamines-Montjoie, Parking du Solaret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.6859975, + 45.9230095 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDQYFSLZJSI", + "ref": "DQYFSLZJSI", + "name": "Passy, Parking Pfullingen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.52257, + 46.33715 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSBBFTCPVCD", + "ref": "SBBFTCPVCD", + "name": "Lyaud, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2501381, + 46.1957504 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSFUJIVKVOR", + "ref": "SFUJIVKVOR", + "name": "Annemasse, Rue de la Bruyère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2418001, + 46.1872704 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJT2OHSXSCS", + "ref": "JT2OHSXSCS", + "name": "Annemasse, Rue du Sentier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3712542, + 46.2652955 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP5NRXSSCMV", + "ref": "P5NRXSSCMV", + "name": "Bons-En-Chablais, Parking de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.628513, + 45.943044 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJ8S4ZSJCGS", + "ref": "J8S4ZSJCGS", + "name": "Sallanches, Parking Gymnase du Rosay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.25063, + 45.99859 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQ5DM2CCSDZ", + "ref": "Q5DM2CCSDZ", + "name": "Thorens Glieres/Filliere, Parking de la CCP de la Fillière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.91994, + 46.01908 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCWQDYD6WZ2", + "ref": "CWQDYD6WZ2", + "name": "Vallorcine, Le Buet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16856, + 46.00947 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPN4XGHTVSZH", + "ref": "N4XGHTVSZH", + "name": "Groisy, Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96791, + 46.10947 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWNCHD87MLT", + "ref": "WNCHD87MLT", + "name": "Valleiry, Rue De La Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22815, + 46.16281 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYPWSTXXUWB", + "ref": "YPWSTXXUWB", + "name": "Monnetier-Mornex, Chemin de la Chapelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.633486, + 45.9321314 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCWYOE0KVEJ", + "ref": "CWYOE0KVEJ", + "name": "Sallanches, Route du Fayet - Sur parcelle B1469", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.26369449, + 46.117427 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGYLUWGEFDI", + "ref": "GYLUWGEFDI", + "name": "Pers-Jussy, Route De Reignier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27012, + 46.13779 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJDZRSUX6PK", + "ref": "JDZRSUX6PK", + "name": "Reignier-Esery, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3712542, + 46.2652955 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP5NRXSSCMV", + "ref": "P5NRXSSCMV", + "name": "Bons-En-Chablais, Parking de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.6110727, + 45.9213467 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUUKLIN1F3L", + "ref": "UUKLIN1F3L", + "name": "Cordon, Parking Centre Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.628513, + 45.943044 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJ8S4ZSJCGS", + "ref": "J8S4ZSJCGS", + "name": "Sallanches, Parking Gymnase du Rosay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4282, + 45.9415 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHBM95RMP7A", + "ref": "HBM95RMP7A", + "name": "Le Grand-Bornand, Cimetiere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5311, + 46.05942 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFEEL9LIPEP", + "ref": "FEEL9LIPEP", + "name": "Marnaz, Parking CTM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.59052, + 46.1058 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWVOTTGZPHU", + "ref": "WVOTTGZPHU", + "name": "Taninges, Parking Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4056, + 46.2085 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYAJEY50I1R", + "ref": "YAJEY50I1R", + "name": "Boëge, 50 Rue du Bourno", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.6562248, + 46.2319364 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPODXLXEZKBM", + "ref": "ODXLXEZKBM", + "name": "Saint-Jean-D'Aulps, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.52646, + 46.06035 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAG3CUDNG6G", + "ref": "AG3CUDNG6G", + "name": "Marnaz, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58711, + 46.40099 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXTOLYUEL6R", + "ref": "XTOLYUEL6R", + "name": "Evian-Les-Bains, Place des Allinges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.6110727, + 45.9213467 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUUKLIN1F3L", + "ref": "UUKLIN1F3L", + "name": "Cordon, Parking Centre Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.72854, + 46.08306 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJJZ5BFGYRF", + "ref": "JJZ5BFGYRF", + "name": "Samoëns, Parking Le Criou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22112, + 45.90633 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVWTMPYFVOZ", + "ref": "VWTMPYFVOZ", + "name": "Dingy-Saint-Clair, Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.7979927, + 45.8889078 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKDBQHXLRTS", + "ref": "KDBQHXLRTS", + "name": "Les Houches, Parking du Fresnay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46464, + 46.33661 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPABQ4SHJDQX", + "ref": "ABQ4SHJDQX", + "name": "Allinges, Parking de l'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.425, + 45.9061111 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGXDZ8OG6HC", + "ref": "GXDZ8OG6HC", + "name": "La Clusaz, 39 Rue du cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.31765, + 46.19112 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPIDK70DETG", + "ref": "PIDK70DETG", + "name": "Lucinges, Place de la Vignule", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.32021, + 46.16807 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWO2U9NU6WH", + "ref": "WO2U9NU6WH", + "name": "Bonne, RD907", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.139655, + 45.940159 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO21GQVZ2FZ", + "ref": "O21GQVZ2FZ", + "name": "Argonay, Quartier Rigoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10641, + 46.03216 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJV1D6ZX6CS", + "ref": "JV1D6ZX6CS", + "name": "Cruseilles, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.720684, + 46.28074 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVHGFCGFP0Q", + "ref": "VHGFCGFP0Q", + "name": "Abondance, Parking De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2911397, + 46.1845626 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDQETGFDKRS", + "ref": "DQETGFDKRS", + "name": "Cranves-Sales, Route de Borly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8750103, + 45.9258487 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEWBWX8MWV7", + "ref": "EWBWX8MWV7", + "name": "Chamonix-Mont-Blanc, Parking du Corzelet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.867244, + 45.9169475 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPV03V6B3GVC", + "ref": "V03V6B3GVC", + "name": "Chamonix-Mont-Blanc, Parking Courmayeur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8723734, + 45.9217431 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJDZUASRU2S", + "ref": "JDZUASRU2S", + "name": "Chamonix-Mont-Blanc, Parking Allobroges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.840009, + 46.267741 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZ1ILFORWGY", + "ref": "Z1ILFORWGY", + "name": "Châtel, Route de Meurba", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8690192, + 45.9239269 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZVTXA1HEAM", + "ref": "ZVTXA1HEAM", + "name": "Chamonix-Mont-Blanc, Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.25063, + 45.99859 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQ5DM2CCSDZ", + "ref": "Q5DM2CCSDZ", + "name": "Thorens Glieres/Filliere, Parking de la CCP de la Fillière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.91994, + 46.01908 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCWQDYD6WZ2", + "ref": "CWQDYD6WZ2", + "name": "Vallorcine, Le Buet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16856, + 46.00947 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPN4XGHTVSZH", + "ref": "N4XGHTVSZH", + "name": "Groisy, Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.738928, + 44.767371 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAXODXBUCIG", + "ref": "AXODXBUCIG", + "name": "Arvieux, Parking de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22815, + 46.16281 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYPWSTXXUWB", + "ref": "YPWSTXXUWB", + "name": "Monnetier-Mornex, Chemin de la Chapelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.633486, + 45.9321314 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCWYOE0KVEJ", + "ref": "CWYOE0KVEJ", + "name": "Sallanches, Route du Fayet - Sur parcelle B1469", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.869095, + 44.781915 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTUNFILFNT4", + "ref": "TUNFILFNT4", + "name": "Aiguilles, Parking Hôpital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.031743, + 43.141124 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWUNGLWZ1YC", + "ref": "WUNGLWZ1YC", + "name": "La Garde, Rue des Frères Lumières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.613159, + 44.415394 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHD9NVGOEYE", + "ref": "HD9NVGOEYE", + "name": "L'Epine, Place du 19 Mars 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.176766, + 43.732476 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGLCUE976K9", + "ref": "GLCUE976K9", + "name": "Bauduen, Rue des Jardins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.013545, + 43.308971 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYJEH1BQMHQ", + "ref": "YJEH1BQMHQ", + "name": "Neoules, 93 Chemin de la Fontaine du Midi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.144734, + 43.226478 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAZ12ROASTI", + "ref": "AZ12ROASTI", + "name": "Pierrefeu-Du-Var, 2 Rue Dr Edmond Mercier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.229499, + 43.301314 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTZ5AN63MMZ", + "ref": "TZ5AN63MMZ", + "name": "Pignans, Avenue De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.847451, + 43.137181 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCRK2IWO5NY", + "ref": "CRK2IWO5NY", + "name": "Ollioules, Place Lemoyne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.143279, + 43.228023 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLEYJ79ZALK", + "ref": "LEYJ79ZALK", + "name": "Pierrefeu-Du-Var, 2 Avenue Léon Blum", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.752095, + 43.606096 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSP7TYXQZVE", + "ref": "SP7TYXQZVE", + "name": "Rians, Rue du Lavoir Neuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.806335, + 43.195169 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO38JYKRTRO", + "ref": "O38JYKRTRO", + "name": "Le Beausset, Rue Antoine Simoni", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.803608, + 43.196687 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOUTJB3CMSJ", + "ref": "OUTJB3CMSJ", + "name": "Le Beausset, 4 Rue de la Fontaine Neuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.625908, + 43.738191 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGUJSPIPZNZ", + "ref": "GUJSPIPZNZ", + "name": "La Bastide, Rue Des Bailes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.798958, + 43.195848 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPG3IUATQPKH", + "ref": "G3IUATQPKH", + "name": "Le Beausset, 3 Rue Du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.236833, + 43.139693 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWV50SNUOZH", + "ref": "WV50SNUOZH", + "name": "La Londe-Les-Maures, Rue Des Poilus", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3387671, + 43.143838 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNPD3JQ3SQ3", + "ref": "NPD3JQ3SQ3", + "name": "Bormes-Les-Mimosas, 38 Rue Montagard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.344754, + 43.150558 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPC8ZGQHEU5W", + "ref": "C8ZGQHEU5W", + "name": "Bormes-Les-Mimosas, Place Saint-Francois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.000198, + 43.246609 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWLHJJJF5Z0", + "ref": "WLHJJJF5Z0", + "name": "Belgentier, Avenue Louis Arnaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3619, + 43.12415 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPULSFSOW4Z1", + "ref": "ULSFSOW4Z1", + "name": "Bormes-Les-Mimosas, Sentier des Pêcheurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.243153, + 43.774849 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHCWWXBM9FJ", + "ref": "HCWWXBM9FJ", + "name": "Aiguines, Place De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.382547, + 43.605991 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIVXGZYQXI3", + "ref": "IVXGZYQXI3", + "name": "Ampus, 8 Boulevard Georges Clemenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.75708, + 43.608633 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUOGJK0ALBQ", + "ref": "UOGJK0ALBQ", + "name": "Rians, Avenue Franklin Roosevelt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.813964, + 43.525115 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPLT8JLOXFE", + "ref": "PLT8JLOXFE", + "name": "Les Adrets-De-L'Esterel, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.225247, + 43.626467 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKYGXBCOEUN", + "ref": "KYGXBCOEUN", + "name": "Aups, Place Martin Bidaure", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.566681, + 43.470632 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPK0VTCHYACN", + "ref": "K0VTCHYACN", + "name": "Le Muy, Parking Le Roucas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.121209, + 43.473247 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMSA4LEJVKS", + "ref": "MSA4LEJVKS", + "name": "Montfort-Sur-Argens, Rue De La Rougiere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.012054, + 43.311571 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFUTIVJGR3W", + "ref": "FUTIVJGR3W", + "name": "Neoules, 7 Avenue de Fontaine Marcellin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.785255, + 43.371555 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQGDY5JC7JJ", + "ref": "QGDY5JC7JJ", + "name": "Nans-Les-Pins, Avenue Julien Jourdan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.425536, + 43.152094 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFU4PDVWWQ4", + "ref": "FU4PDVWWQ4", + "name": "Le Lavandou, Boulevard Des Acacias", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.150075, + 43.524758 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIRNE7AOJCY", + "ref": "IRNE7AOJCY", + "name": "Cotignac, 621 rue Ferraillon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.072607, + 43.150988 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPD9FNLZRTGS", + "ref": "D9FNLZRTGS", + "name": "La Crau, 02 Place du Maréchal De Lattre Tassigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.302705, + 43.237316 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFQSYJSG0TH", + "ref": "FQSYJSG0TH", + "name": "Collobrières, Notre Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.50678, + 43.710943 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOOG3SU0SRF", + "ref": "OOG3SU0SRF", + "name": "Comps-Sur-Artuby, Avenue De La Fontenouille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.074581, + 43.148347 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCNVK97OWH1", + "ref": "CNVK97OWH1", + "name": "La Crau, 01-03 Boulevard de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.24135, + 43.51516 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIMXRRATUPO", + "ref": "IMXRRATUPO", + "name": "Entrecasteaux, Parking Le Collet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.696857, + 43.624273 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPOFMPGHIET", + "ref": "POFMPGHIET", + "name": "Fayence, Avenue Rene Cassin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.073719, + 43.236609 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYIOODBQSFH", + "ref": "YIOODBQSFH", + "name": "Cuers, Avenue Mal De Lattre De Tassigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.075095, + 43.23772 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYV38XHFQKK", + "ref": "YV38XHFQKK", + "name": "Cuers, Chemin De La Guinguette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.736809, + 43.50392 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFOR8KTMTNA", + "ref": "FOR8KTMTNA", + "name": "Pourrieres, Impasse Des Romarins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.024325, + 43.106136 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNSZLO1DE4B", + "ref": "NSZLO1DE4B", + "name": "Le Pradet, Rue Paulin David", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.029939, + 43.553296 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTHCWDAWXKR", + "ref": "THCWDAWXKR", + "name": "Ponteves, Chemin de Brignoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.784954, + 43.471881 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJDC6F1GITF", + "ref": "JDC6F1GITF", + "name": "Pourcieux, Rue Gustave Aubert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.021739, + 43.107612 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLNFOF1DSWU", + "ref": "LNFOF1DSWU", + "name": "Le Pradet, Place de l’Armée d’Afrique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.137679, + 43.288093 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSEODRBQGWL", + "ref": "SEODRBQGWL", + "name": "Puget-Ville, 1-6 Rue des Cantons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.610836, + 43.2172196 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPF0HLVDBZUM", + "ref": "F0HLVDBZUM", + "name": "Ramatuelle, Boulevard Du Huit Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.683481, + 43.453692 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZC6L4PI3AM", + "ref": "ZC6L4PI3AM", + "name": "Puget-Sur-Argens, Rue Gabriel Peri", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.685957, + 43.45612 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTFC7M4PURW", + "ref": "TFC7M4PURW", + "name": "Puget-Sur-Argens, Rue Jubert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.753034, + 43.134693 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGTJYVLLJFU", + "ref": "GTJYVLLJFU", + "name": "Bandol, 3 Allée Alfred Vivien", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.571085, + 43.729968 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGJ9LI4EFUY", + "ref": "GJ9LI4EFUY", + "name": "Bargeme, Parking Du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.699922, + 43.536283 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKT2CJWMHHT", + "ref": "KT2CJWMHHT", + "name": "Bagnols-En-Foret, 133 Boulevard du Rayol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125282, + 43.340772 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPF2WBIZMGSY", + "ref": "F2WBIZMGSY", + "name": "Sainte-Anastasie-Sur-Issole, 11 les Ferrages", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.627985, + 43.723321 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDFTEM0U8ZB", + "ref": "DFTEM0U8ZB", + "name": "La Roque-Esclapon, Quartier Notre Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.704812, + 43.185573 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXQHA8RY3C0", + "ref": "XQHA8RY3C0", + "name": "Saint-Cyr-Sur-Mer, Avenue Aime Carbonnel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.694532, + 43.166973 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPS1UPSAI2WA", + "ref": "S1UPSAI2WA", + "name": "Saint-Cyr-Sur-Mer, Parking La Madrague", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.858855, + 43.452337 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBJDBRGOTJA", + "ref": "BJDBRGOTJA", + "name": "Saint-Maximin-La-Ste-Baume, Chemin de Réal Vieux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.708931, + 43.181444 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHBB3TYFJFW", + "ref": "HBB3TYFJFW", + "name": "Saint-Cyr-Sur-Mer, La Falquette 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.708931, + 43.181444 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHWPPNAD8K0", + "ref": "HWPPNAD8K0", + "name": "Saint-Cyr-Sur-Mer, La Falquette 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.935913, + 43.636472 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTXLNRF6IDO", + "ref": "TXLNRF6IDO", + "name": "La Verdiere, Route De Varage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.927429, + 43.075068 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGM4SFCKU5P", + "ref": "GM4SFCKU5P", + "name": "Saint-Mandrier-Sur-Mer, Chemin Des Aubépines", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.133562, + 43.116603 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAFJ2JVZ4L1", + "ref": "AFJ2JVZ4L1", + "name": "Hyères, Parking Versin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.133562, + 43.116603 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAFJ2JVZ4L1", + "ref": "AFJ2JVZ4L1", + "name": "Hyères, Parking Versin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.907343, + 43.071083 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPL2KTMFZATR", + "ref": "L2KTMFZATR", + "name": "Saint-Mandrier-Sur-Mer, Boulevard Saint-Asile", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.634532, + 43.442627 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVCES3C1APO", + "ref": "VCES3C1APO", + "name": "Roquebrune-Sur-Argens, Boulevard Ferdinand Clavel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.644595, + 43.501255 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXXGOJ7R8NU", + "ref": "XXGOJ7R8NU", + "name": "Roquebrune-Sur-Argens, Allee Du 15 Aout 1944", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.636401, + 43.444287 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNX7Q0NZIA4", + "ref": "NX7Q0NZIA4", + "name": "Roquebrune-Sur-Argens, Boulevard Jean Jaures", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.691177, + 43.342474 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKLMBE6LVV9", + "ref": "KLMBE6LVV9", + "name": "Roquebrune-Sur-Argens, Boulevard Des Murènes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.93622, + 43.127107 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOCMVHL5UIN", + "ref": "OCMVHL5UIN", + "name": "Toulon, Pkg. du parc Des Lices 2 ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.932443, + 43.130591 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNGQP8ETIBP", + "ref": "NGQP8ETIBP", + "name": "Toulon, Pkg. du parc Des Lices 3 ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.072311, + 43.439098 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVHUBJ7QBC6", + "ref": "VHUBJ7QBC6", + "name": "Le Val, Pkg. de la Mairie Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.233294, + 43.562956 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPK9AZWC5W94", + "ref": "K9AZWC5W94", + "name": "Salernes, Place Clémenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.976662, + 43.33822 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJBGVKCN6U7", + "ref": "JBGVKCN6U7", + "name": "La Roquebrussanne, Place Gueit", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.851185, + 43.393343 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCQMQZFLODZ", + "ref": "CQMQZFLODZ", + "name": "Rougiers, Rue de la Rousse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.698561, + 43.536849 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPNZOLN3KQH", + "ref": "PNZOLN3KQH", + "name": "Bagnols-En-Foret, 4 Montée de derrière le Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.028701, + 43.107001 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPT6DOEVM5R", + "ref": "PT6DOEVM5R", + "name": "Le Pradet, Parking Espace Des Arts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08065, + 43.48513 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLQAM9T3B0V", + "ref": "LQAM9T3B0V", + "name": "Correns, La Condamine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08065, + 43.48513 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLQAM9T3B0V", + "ref": "LQAM9T3B0V", + "name": "Correns, La Condamine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06957006, + 43.12051391 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPG9AWPT4DAO", + "ref": "G9AWPT4DAO", + "name": "La Crau, Parking Place Maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06957006, + 43.12051391 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPG9AWPT4DAO", + "ref": "G9AWPT4DAO", + "name": "La Crau, Parking Place Maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.238485, + 43.13889 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCKECHE1YMR", + "ref": "CKECHE1YMR", + "name": "La Londe-Les-Maures, Parking Chateauvert, 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.482466, + 43.610596 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPS4X9OLB4Z", + "ref": "PS4X9OLB4Z", + "name": "Montferrat, Pkg. du Stade rte de Draguignan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.238485, + 43.13889 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFBD13FK4ZJ", + "ref": "FBD13FK4ZJ", + "name": "La Londe-Les-Maures, Parking Chateauvert, 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.028701, + 43.107001 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPT6DOEVM5R", + "ref": "PT6DOEVM5R", + "name": "Le Pradet, Parking Espace Des Arts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.238485, + 43.13889 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCKECHE1YMR", + "ref": "CKECHE1YMR", + "name": "La Londe-Les-Maures, Parking Chateauvert, 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.238485, + 43.13889 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFBD13FK4ZJ", + "ref": "FBD13FK4ZJ", + "name": "La Londe-Les-Maures, Parking Chateauvert, 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9324, + 43.1306 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPICPTZYI5F3", + "ref": "ICPTZYI5F3", + "name": "Toulon, Parking Des Lices 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0387, + 43.1469 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQMYSD12SXN", + "ref": "QMYSD12SXN", + "name": "La Garde, Afuzi Pôle D'Activités De Toulon -Est, Rue Lambot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.952178, + 43.107303 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPBVWLY88ID", + "ref": "PBVWLY88ID", + "name": "Toulon, Plages Du Mourillon 4Ème Anse 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9324, + 43.1306 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPICPTZYI5F3", + "ref": "ICPTZYI5F3", + "name": "Toulon, Parking Des Lices 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0387, + 43.1469 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQMYSD12SXN", + "ref": "QMYSD12SXN", + "name": "La Garde, Afuzi Pôle D'Activités De Toulon -Est, Rue Lambot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86434221, + 43.45548248 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPD9SCVVZETK", + "ref": "D9SCVVZETK", + "name": "Saint-Maximin-La-Sainte-Baume, Ch. de la Glacière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86434221, + 43.45548248 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPD9SCVVZETK", + "ref": "D9SCVVZETK", + "name": "Saint-Maximin-La-Sainte-Baume, Ch. de la Glacière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.201184, + 43.116488 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCOWVZWVFO0", + "ref": "COWVZWVFO0", + "name": "Hyères, Place des Pêcheurs, les salins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.201184, + 43.116488 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCOWVZWVFO0", + "ref": "COWVZWVFO0", + "name": "Hyères, Place des Pêcheurs, les salins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.293704, + 43.323544 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGEUQ9S0IWD", + "ref": "GEUQ9S0IWD", + "name": "Gonfaron, Pont de Maurice", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.369696, + 43.137889 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPT7FIXFEYY", + "ref": "PT7FIXFEYY", + "name": "Le Lavandou, Boulevard De Lattre Tassigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.027689, + 44.780812 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMF3IZD0TYS", + "ref": "MF3IZD0TYS", + "name": "Saint-Firmin, Parking sous la poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.752095, + 43.606096 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSP7TYXQZVE", + "ref": "SP7TYXQZVE", + "name": "Rians, Rue du Lavoir Neuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.497017, + 43.571181 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNT6A1CNH1A", + "ref": "NT6A1CNH1A", + "name": "Figanieres, 4 Avenue des Marthes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.044463, + 43.330293 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPY4OFET8FDN", + "ref": "Y4OFET8FDN", + "name": "Gareoult, Parking Jean Monnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.044463, + 43.330293 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPODJ3J2PXMV", + "ref": "ODJ3J2PXMV", + "name": "Gareoult, Parking Jean Monnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.010334, + 43.120467 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSGQBB9ZVMN", + "ref": "SGQBB9ZVMN", + "name": "La Garde, Parking Gymnase J.Troin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46939, + 43.317779 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIXWH7RUKR0", + "ref": "IXWH7RUKR0", + "name": "La Garde-Freinet, Rue De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.137679, + 43.288093 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSEODRBQGWL", + "ref": "SEODRBQGWL", + "name": "Puget-Ville, 1-6 Rue des Cantons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.610836, + 43.2172196 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPF0HLVDBZUM", + "ref": "F0HLVDBZUM", + "name": "Ramatuelle, Boulevard Du Huit Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.683481, + 43.453692 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZC6L4PI3AM", + "ref": "ZC6L4PI3AM", + "name": "Puget-Sur-Argens, Rue Gabriel Peri", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.685957, + 43.45612 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTFC7M4PURW", + "ref": "TFC7M4PURW", + "name": "Puget-Sur-Argens, Rue Jubert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.243153, + 43.774849 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHCWWXBM9FJ", + "ref": "HCWWXBM9FJ", + "name": "Aiguines, Place De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.044463, + 43.330293 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPODJ3J2PXMV", + "ref": "ODJ3J2PXMV", + "name": "Gareoult, Parking Jean Monnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.382547, + 43.605991 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIVXGZYQXI3", + "ref": "IVXGZYQXI3", + "name": "Ampus, 8 Boulevard Georges Clemenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.75708, + 43.608633 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUOGJK0ALBQ", + "ref": "UOGJK0ALBQ", + "name": "Rians, Avenue Franklin Roosevelt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.813964, + 43.525115 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPLT8JLOXFE", + "ref": "PLT8JLOXFE", + "name": "Les Adrets-De-L'Esterel, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.144734, + 43.226478 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAZ12ROASTI", + "ref": "AZ12ROASTI", + "name": "Pierrefeu-Du-Var, 2 Rue Dr Edmond Mercier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.229499, + 43.301314 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTZ5AN63MMZ", + "ref": "TZ5AN63MMZ", + "name": "Pignans, Avenue De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.847451, + 43.137181 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCRK2IWO5NY", + "ref": "CRK2IWO5NY", + "name": "Ollioules, Place Lemoyne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.143279, + 43.228023 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLEYJ79ZALK", + "ref": "LEYJ79ZALK", + "name": "Pierrefeu-Du-Var, 2 Avenue Léon Blum", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.029939, + 43.553296 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTHCWDAWXKR", + "ref": "THCWDAWXKR", + "name": "Ponteves, Chemin de Brignoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.024325, + 43.106136 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNSZLO1DE4B", + "ref": "NSZLO1DE4B", + "name": "Le Pradet, Rue Paulin David", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.075095, + 43.23772 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYV38XHFQKK", + "ref": "YV38XHFQKK", + "name": "Cuers, Chemin De La Guinguette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.073719, + 43.236609 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYIOODBQSFH", + "ref": "YIOODBQSFH", + "name": "Cuers, Avenue Mal De Lattre De Tassigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.696857, + 43.624273 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPOFMPGHIET", + "ref": "POFMPGHIET", + "name": "Fayence, Avenue Rene Cassin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.24135, + 43.51516 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIMXRRATUPO", + "ref": "IMXRRATUPO", + "name": "Entrecasteaux, Parking Le Collet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.222372, + 43.427744 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMDNBIGKUXC", + "ref": "MDNBIGKUXC", + "name": "Cabasse, 21-22 Rue Jules Ferry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.754467, + 43.197869 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPK3XN6HDHL", + "ref": "PK3XN6HDHL", + "name": "La Cadiere-D'Azur, 105-142 Avenue Henri Jansoulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.064265, + 43.404268 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW1WQZAA03D", + "ref": "W1WQZAA03D", + "name": "Brignoles, 7 Cours de la Liberte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.073943, + 43.408111 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDXBHRKZYBD", + "ref": "DXBHRKZYBD", + "name": "Brignoles, 3 Rue Bruneck Brunico", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.535475, + 43.590682 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZQRMJ7J2UI", + "ref": "ZQRMJ7J2UI", + "name": "Callas, Chemin Des Frayeres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.185457, + 43.300398 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUEZAJDDHKC", + "ref": "UEZAJDDHKC", + "name": "Carnoules, Avenue Colonel Fabien", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.074425, + 43.092958 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR1VOSOO7GO", + "ref": "R1VOSOO7GO", + "name": "Carqueiranne, Rue De La Liberation", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.342794, + 43.390503 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMGSHTS9WRC", + "ref": "MGSHTS9WRC", + "name": "Le Cannet-Des-Maures, 48 Avenue du 8 mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.182072, + 43.475585 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPANUKTTYTG0", + "ref": "ANUKTTYTG0", + "name": "Carces, Parking de la Respelide", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.074581, + 43.148347 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCNVK97OWH1", + "ref": "CNVK97OWH1", + "name": "La Crau, 01-03 Boulevard de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.369696, + 43.137889 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPT7FIXFEYY", + "ref": "PT7FIXFEYY", + "name": "Le Lavandou, Boulevard De Lattre Tassigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.236833, + 43.139693 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWV50SNUOZH", + "ref": "WV50SNUOZH", + "name": "La Londe-Les-Maures, Rue Des Poilus", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.293704, + 43.323544 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGEUQ9S0IWD", + "ref": "GEUQ9S0IWD", + "name": "Gonfaron, Pont de Maurice", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.425536, + 43.152094 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFU4PDVWWQ4", + "ref": "FU4PDVWWQ4", + "name": "Le Lavandou, Boulevard Des Acacias", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.23577, + 43.135207 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCEJHEYUHTK", + "ref": "CEJHEYUHTK", + "name": "La Londe-Les-Maures, Place Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.357913, + 43.314384 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBFO8FWAXWY", + "ref": "BFO8FWAXWY", + "name": "Les Mayons, Avenue Pierre Gaudin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.463953, + 43.208338 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPI0SJOBBFTP", + "ref": "I0SJOBBFTP", + "name": "La Mole, Parking Rue Du Four", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.361105, + 43.490803 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWLVMFDV1MU", + "ref": "WLVMFDV1MU", + "name": "Lorgues, 10 Rue Du 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.316517, + 43.3927 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCOBGZQF7KR", + "ref": "COBGZQF7KR", + "name": "Le Luc, Parking Rond point de l'Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.021739, + 43.107612 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLNFOF1DSWU", + "ref": "LNFOF1DSWU", + "name": "Le Pradet, Place de l’Armée d’Afrique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.784954, + 43.471881 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJDC6F1GITF", + "ref": "JDC6F1GITF", + "name": "Pourcieux, Rue Gustave Aubert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.736809, + 43.50392 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFOR8KTMTNA", + "ref": "FOR8KTMTNA", + "name": "Pourrieres, Impasse Des Romarins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.535475, + 43.590682 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZQRMJ7J2UI", + "ref": "ZQRMJ7J2UI", + "name": "Callas, Chemin Des Frayeres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.074425, + 43.092958 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR1VOSOO7GO", + "ref": "R1VOSOO7GO", + "name": "Carqueiranne, Rue De La Liberation", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.039215, + 43.39442 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPB5WUOR3QQJ", + "ref": "B5WUOR3QQJ", + "name": "La Celle, Rue De La Republique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.450228, + 43.597875 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSZIFDMFRBK", + "ref": "SZIFDMFRBK", + "name": "Chateaudouble, Saint-Eloi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.069992, + 43.096204 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHKHTSQZA2H", + "ref": "HKHTSQZA2H", + "name": "Carqueiranne, Avenue Jean Jaures", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.771902, + 43.176461 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCPRBTI1JCS", + "ref": "CPRBTI1JCS", + "name": "Le Castellet, 3054 Route des Sources", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066481, + 43.407623 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPH3MZXPKIZJ", + "ref": "H3MZXPKIZJ", + "name": "Brignoles, 09 Avenue Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.058906, + 43.406661 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLVC3YKSO2H", + "ref": "LVC3YKSO2H", + "name": "Brignoles, 29 Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.518632, + 43.782955 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSBGEQE8DZY", + "ref": "SBGEQE8DZY", + "name": "Le Bourguet, D252", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.062531, + 43.403983 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW5R7IXTOXN", + "ref": "W5R7IXTOXN", + "name": "Brignoles, 01 Rue du portail Neuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.061688, + 43.407248 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVFR4L4ZIYV", + "ref": "VFR4L4ZIYV", + "name": "Brignoles, 15 Rue Petit Paradis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.222372, + 43.427744 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMDNBIGKUXC", + "ref": "MDNBIGKUXC", + "name": "Cabasse, 21-22 Rue Jules Ferry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.754467, + 43.197869 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPK3XN6HDHL", + "ref": "PK3XN6HDHL", + "name": "La Cadiere-D'Azur, 105-142 Avenue Henri Jansoulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.064265, + 43.404268 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW1WQZAA03D", + "ref": "W1WQZAA03D", + "name": "Brignoles, 7 Cours de la Liberte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.073943, + 43.408111 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDXBHRKZYBD", + "ref": "DXBHRKZYBD", + "name": "Brignoles, 3 Rue Bruneck Brunico", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.30944049, + 43.23924335 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNUTXBIS2GQ", + "ref": "NUTXBIS2GQ", + "name": "Collobrières, Chemin De Sainte Croix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46939, + 43.317779 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIXWH7RUKR0", + "ref": "IXWH7RUKR0", + "name": "La Garde-Freinet, Rue De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.044463, + 43.330293 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPY4OFET8FDN", + "ref": "Y4OFET8FDN", + "name": "Gareoult, Parking Jean Monnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.497017, + 43.571181 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNT6A1CNH1A", + "ref": "NT6A1CNH1A", + "name": "Figanieres, 4 Avenue des Marthes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.010334, + 43.120467 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSGQBB9ZVMN", + "ref": "SGQBB9ZVMN", + "name": "La Garde, Parking Gymnase J.Troin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.342794, + 43.390503 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMGSHTS9WRC", + "ref": "MGSHTS9WRC", + "name": "Le Cannet-Des-Maures, 48 Avenue du 8 mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.185457, + 43.300398 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUEZAJDDHKC", + "ref": "UEZAJDDHKC", + "name": "Carnoules, Avenue Colonel Fabien", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.225247, + 43.626467 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKYGXBCOEUN", + "ref": "KYGXBCOEUN", + "name": "Aups, Place Martin Bidaure", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.182072, + 43.475585 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPANUKTTYTG0", + "ref": "ANUKTTYTG0", + "name": "Carces, Parking de la Respelide", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3387671, + 43.143838 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNPD3JQ3SQ3", + "ref": "NPD3JQ3SQ3", + "name": "Bormes-Les-Mimosas, 38 Rue Montagard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.344754, + 43.150558 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPC8ZGQHEU5W", + "ref": "C8ZGQHEU5W", + "name": "Bormes-Les-Mimosas, Place Saint-Francois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.000198, + 43.246609 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWLHJJJF5Z0", + "ref": "WLHJJJF5Z0", + "name": "Belgentier, Avenue Louis Arnaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3619, + 43.12415 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPULSFSOW4Z1", + "ref": "ULSFSOW4Z1", + "name": "Bormes-Les-Mimosas, Sentier des Pêcheurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.518632, + 43.782955 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSBGEQE8DZY", + "ref": "SBGEQE8DZY", + "name": "Le Bourguet, D252", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.058906, + 43.406661 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLVC3YKSO2H", + "ref": "LVC3YKSO2H", + "name": "Brignoles, 29 Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.061688, + 43.407248 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVFR4L4ZIYV", + "ref": "VFR4L4ZIYV", + "name": "Brignoles, 15 Rue Petit Paradis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.062531, + 43.403983 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW5R7IXTOXN", + "ref": "W5R7IXTOXN", + "name": "Brignoles, 01 Rue du portail Neuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066481, + 43.407623 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPH3MZXPKIZJ", + "ref": "H3MZXPKIZJ", + "name": "Brignoles, 09 Avenue Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.753034, + 43.134693 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGTJYVLLJFU", + "ref": "GTJYVLLJFU", + "name": "Bandol, 3 Allée Alfred Vivien", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.571085, + 43.729968 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGJ9LI4EFUY", + "ref": "GJ9LI4EFUY", + "name": "Bargeme, Parking Du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.699922, + 43.536283 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKT2CJWMHHT", + "ref": "KT2CJWMHHT", + "name": "Bagnols-En-Foret, 133 Boulevard du Rayol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.698561, + 43.536849 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPNZOLN3KQH", + "ref": "PNZOLN3KQH", + "name": "Bagnols-En-Foret, 4 Montée de derrière le Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.625908, + 43.738191 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGUJSPIPZNZ", + "ref": "GUJSPIPZNZ", + "name": "La Bastide, Rue Des Bailes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.803608, + 43.196687 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOUTJB3CMSJ", + "ref": "OUTJB3CMSJ", + "name": "Le Beausset, 4 Rue de la Fontaine Neuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.798958, + 43.195848 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPG3IUATQPKH", + "ref": "G3IUATQPKH", + "name": "Le Beausset, 3 Rue Du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.176766, + 43.732476 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGLCUE976K9", + "ref": "GLCUE976K9", + "name": "Bauduen, Rue des Jardins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.806335, + 43.195169 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO38JYKRTRO", + "ref": "O38JYKRTRO", + "name": "Le Beausset, Rue Antoine Simoni", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.765235, + 43.617906 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFJYNYUSSSJ", + "ref": "FJYNYUSSSJ", + "name": "Montauroux, Place Du Clos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0778, + 43.1476 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHXKNZ664DA", + "ref": "HXKNZ664DA", + "name": "La Crau, Parking du Collége Rue Louis Meric", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.50678, + 43.710943 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOOG3SU0SRF", + "ref": "OOG3SU0SRF", + "name": "Comps-Sur-Artuby, Avenue De La Fontenouille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.302705, + 43.237316 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFQSYJSG0TH", + "ref": "FQSYJSG0TH", + "name": "Collobrières, Notre Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8226, + 43.100631 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKCS9CBB3AU", + "ref": "KCS9CBB3AU", + "name": "Six-Fours-Les-Plages, Parking du Stade Baptiste, Avenue de la Mer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.534731, + 43.49274 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOMDPXMBHFV", + "ref": "OMDPXMBHFV", + "name": "La Motte, Parking Boulevard André Bouis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.010815, + 43.12151 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPS7OZUOKYDE", + "ref": "S7OZUOKYDE", + "name": "La Garde, Pkg de la Poste, Avenue Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.010815, + 43.12151 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPS7OZUOKYDE", + "ref": "S7OZUOKYDE", + "name": "La Garde, Pkg de la Poste, Avenue Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0766, + 43.087644 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMJ8NETPBNZ", + "ref": "MJ8NETPBNZ", + "name": "Carqueiranne, Parking du Port, Avenue Elie Gautier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8125, + 43.099783 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTBCQ7Z5SIN", + "ref": "TBCQ7Z5SIN", + "name": "Six-Fours-Les-Plages, Parking de la Coudoulière, Avenue du Cap Nègre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.842399, + 43.093511 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUYWWVLHDHN", + "ref": "UYWWVLHDHN", + "name": "Six-Fours-Les-Plages, Parking ESPACE MALRAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.97218364, + 43.12926791 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKHJBBVINUJ", + "ref": "KHJBBVINUJ", + "name": "Toulon, Parking Font Pre Borne 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0766, + 43.087644 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMJ8NETPBNZ", + "ref": "MJ8NETPBNZ", + "name": "Carqueiranne, Parking du Port, Avenue Elie Gautier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8226, + 43.100631 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKCS9CBB3AU", + "ref": "KCS9CBB3AU", + "name": "Six-Fours-Les-Plages, Parking du Stade Baptiste, Avenue de la Mer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92022, + 43.130271 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSASKL5PCVO", + "ref": "SASKL5PCVO", + "name": "Toulon, Place Sadi Carnot, Avenue de Valbourdin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.072607, + 43.150988 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPD9FNLZRTGS", + "ref": "D9FNLZRTGS", + "name": "La Crau, 02 Place du Maréchal De Lattre Tassigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.926017, + 43.123831 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWWTYSYKPGE", + "ref": "WWTYSYKPGE", + "name": "Toulon, passage de la Corderie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.902172, + 43.12679 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRJ5MVDIEP8", + "ref": "RJ5MVDIEP8", + "name": "Toulon, Pkg Bon Rencontre, Avenue Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.902172, + 43.12679 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRJ5MVDIEP8", + "ref": "RJ5MVDIEP8", + "name": "Toulon, Pkg Bon Rencontre, Avenue Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.926017, + 43.123831 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWWTYSYKPGE", + "ref": "WWTYSYKPGE", + "name": "Toulon, passage de la Corderie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.952856, + 43.123039 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO6NF58E9RW", + "ref": "O6NF58E9RW", + "name": "Toulon, Place du 4 septembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.952856, + 43.123039 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO6NF58E9RW", + "ref": "O6NF58E9RW", + "name": "Toulon, Place du 4 septembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.987543, + 43.128168 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX1WVLS09JB", + "ref": "X1WVLS09JB", + "name": "La-Valette-du-Var, Rue Marcel Pagnol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88738, + 43.12855 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPD321K1JB15", + "ref": "D321K1JB15", + "name": "Toulon, Pkg co-voiturage Escaillon, Route de Marseille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92022, + 43.130271 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSASKL5PCVO", + "ref": "SASKL5PCVO", + "name": "Toulon, Place Sadi Carnot, Avenue de Valbourdin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.534731, + 43.49274 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOMDPXMBHFV", + "ref": "OMDPXMBHFV", + "name": "La Motte, Parking Boulevard André Bouis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.031743, + 43.141124 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWUNGLWZ1YC", + "ref": "WUNGLWZ1YC", + "name": "La Garde, Rue des Frères Lumières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94080194, + 43.1194873 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEJWEGJHZDG", + "ref": "EJWEGJHZDG", + "name": "Toulon, Rue Henri Poincaré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.075492, + 43.147169 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJRIJGWQ7GS", + "ref": "JRIJGWQ7GS", + "name": "La Crau, Parking Bonnaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.936084, + 43.115201 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPXQQOQYXV2", + "ref": "PXQQOQYXV2", + "name": "Toulon, Parking De La Carte Postale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.28863, + 43.3194 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJYICHSALWP", + "ref": "JYICHSALWP", + "name": "Gonfaron, Place de la Victoire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.018776, + 43.084552 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGTTHOQUJRW", + "ref": "GTTHOQUJRW", + "name": "Le Pradet, Parking Des Oursinières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13862, + 43.286628 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJN2BNPZTJH", + "ref": "JN2BNPZTJH", + "name": "Puget-Ville, Rue de la planque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.800506, + 43.07487 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVCBKGKDJE4", + "ref": "VCBKGKDJE4", + "name": "Six-Fours-les-Plages, Quai St Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.078095, + 43.120548 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIWC3A33G30", + "ref": "IWC3A33G30", + "name": "La Crau, Parking Boulodrome", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13862, + 43.286628 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJN2BNPZTJH", + "ref": "JN2BNPZTJH", + "name": "Puget-Ville, Rue de la planque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.208756, + 43.77316 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNFH22CALUW", + "ref": "NFH22CALUW", + "name": "Les Salles-sur-Verdon, Place Gleb Sivirine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92812, + 43.16388 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBGYAN4GZ5U", + "ref": "BGYAN4GZ5U", + "name": "Le Revest-les-Eaux, Hameau des Dardennes, Chemin du Beal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.800506, + 43.07487 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVCBKGKDJE4", + "ref": "VCBKGKDJE4", + "name": "Six-Fours-les-Plages, Quai St Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.208756, + 43.77316 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNFH22CALUW", + "ref": "NFH22CALUW", + "name": "Les Salles-sur-Verdon, Place Gleb Sivirine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.078095, + 43.120548 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIWC3A33G30", + "ref": "IWC3A33G30", + "name": "La Crau, Parking Boulodrome", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.137923, + 43.111634 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEXSLDWIYGA", + "ref": "EXSLDWIYGA", + "name": "Hyeres, Parking Piscine Municipale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.149858, + 43.064793 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLKPXJJN0R7", + "ref": "LKPXJJN0R7", + "name": "Hyeres, Parking De La Capte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.97218364, + 43.12926791 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUTIMKUAQVQ", + "ref": "UTIMKUAQVQ", + "name": "Toulon, Parking Font Pre Borne 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.97218364, + 43.12926791 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKHJBBVINUJ", + "ref": "KHJBBVINUJ", + "name": "Toulon, Parking Font Pre Borne 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.981366, + 43.139698 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXJM25YBBQP", + "ref": "XJM25YBBQP", + "name": "La Valette Du Var, Parking Collège Daudet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.981366, + 43.139698 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXJM25YBBQP", + "ref": "XJM25YBBQP", + "name": "La Valette Du Var, Parking Collège Daudet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.070709, + 43.147958 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGRL0MUCLX8", + "ref": "GRL0MUCLX8", + "name": "La Crau, Parking Gressler", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.836931, + 43.091682 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLUID3LXHYD", + "ref": "LUID3LXHYD", + "name": "Six-Fours, Parking Bouillibaye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88738, + 43.12855 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPD321K1JB15", + "ref": "D321K1JB15", + "name": "Toulon, Pkg co-voiturage Escaillon, Route de Marseille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.836931, + 43.091682 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLUID3LXHYD", + "ref": "LUID3LXHYD", + "name": "Six-Fours, Parking Bouillibaye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.56418479, + 44.94441185 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXEESI7SAZY", + "ref": "XEESI7SAZY", + "name": "La Salle-Les-Alpes, Parking entre les Eaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.55886, + 44.7927 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPN85SEO7ECP", + "ref": "N85SEO7ECP", + "name": "L'Argentière-La-Bessee, Rue Edward Whymper", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.82656289, + 44.31360432 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJJAKCW9HAW", + "ref": "JJAKCW9HAW", + "name": "Laragne-Monteglin, Parking Veragne 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.072981, + 44.674562 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZ0LIYARX3I", + "ref": "Z0LIYARX3I", + "name": "La Fare-En-Champsaur, Esplanade Napoléon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.82656289, + 44.31360432 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJJAKCW9HAW", + "ref": "JJAKCW9HAW", + "name": "Laragne-Monteglin, Parking Veragne 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.732183, + 44.933961 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIQFRXFB9FK", + "ref": "IQFRXFB9FK", + "name": "Montgenevre, Le Peychier 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.732183, + 44.933961 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIQFRXFB9FK", + "ref": "IQFRXFB9FK", + "name": "Montgenevre, Le Peychier 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.732183, + 44.933961 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIQFRXFB9FK", + "ref": "IQFRXFB9FK", + "name": "Montgenevre, Le Peychier 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.732183, + 44.933961 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIQFRXFB9FK", + "ref": "IQFRXFB9FK", + "name": "Montgenevre, Le Peychier 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.869095, + 44.781915 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTUNFILFNT4", + "ref": "TUNFILFNT4", + "name": "Aiguilles, Parking Hôpital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.827471, + 44.535099 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO3D66ZVWF8", + "ref": "O3D66ZVWF8", + "name": "Veynes, Place Albert Pons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.075528, + 44.683441 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXWOZOZWQ4X", + "ref": "XWOZOZWQ4X", + "name": "Saint-Bonnet-En-Champsaur, Gendarmerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.077297, + 44.682134 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPC3RYGMDUOZ", + "ref": "C3RYGMDUOZ", + "name": "Saint-Bonnet-En-Champsaur, Place Waldems", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.689987, + 44.594376 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCSEKWHVUFM", + "ref": "CSEKWHVUFM", + "name": "Vars, Office de Tourisme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.729531, + 44.93391 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLEI5CBWBVF", + "ref": "LEI5CBWBVF", + "name": "Montgenèvre, Parking de l'obelisque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.729531, + 44.93391 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLEI5CBWBVF", + "ref": "LEI5CBWBVF", + "name": "Montgenèvre, Parking de l'obelisque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84759393, + 44.71980038 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFFCIXLY2AX", + "ref": "FFCIXLY2AX", + "name": "Molines-En-Queyras, Clot la Chalpe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8223, + 44.7616 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOTB2ORHCSB", + "ref": "OTB2ORHCSB", + "name": "Château-Ville-Vieille, Ville Vieille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.738928, + 44.767371 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAXODXBUCIG", + "ref": "AXODXBUCIG", + "name": "Arvieux, Parking de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.193801, + 44.81712 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUIV8WSGZS3", + "ref": "UIV8WSGZS3", + "name": "La Chapelle-En-Valgaudemar, Immeuble Les Glaciers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.55886, + 44.7927 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPN85SEO7ECP", + "ref": "N85SEO7ECP", + "name": "L'Argentière-La-Bessee, Rue Edward Whymper", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.072981, + 44.674562 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZ0LIYARX3I", + "ref": "Z0LIYARX3I", + "name": "La Fare-En-Champsaur, Esplanade Napoléon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.987543, + 43.128168 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX1WVLS09JB", + "ref": "X1WVLS09JB", + "name": "La-Valette-du-Var, Rue Marcel Pagnol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.30074, + 45.0443 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHWGH4CNZPB", + "ref": "HWGH4CNZPB", + "name": "La Grave, Salle Polyvalente", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.732183, + 44.933961 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQQSNCTNJVW", + "ref": "QQSNCTNJVW", + "name": "Montgenèvre, Le Peychier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.48477, + 44.5474 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFKGQLSRA16", + "ref": "FKGQLSRA16", + "name": "Baratier, Rond-Point des Orres", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27106, + 44.5466 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCTXZPJCMCY", + "ref": "CTXZPJCMCY", + "name": "Chorges, La Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.48477, + 44.5474 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFKGQLSRA16", + "ref": "FKGQLSRA16", + "name": "Baratier, Rond-Point des Orres", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.01944, + 44.7749 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTKYLXPMQQR", + "ref": "TKYLXPMQQR", + "name": "Saint-Firmin, ZA sous la Roche", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02653, + 44.4429 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXUHTK332PH", + "ref": "XUHTK332PH", + "name": "La Saulce, La Gandière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02653, + 44.4429 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXUHTK332PH", + "ref": "XUHTK332PH", + "name": "La Saulce, La Gandière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.71816, + 44.4287 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXFOSNUYPUI", + "ref": "XFOSNUYPUI", + "name": "Serres, Rue Marius Meyere", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.71816, + 44.4287 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXFOSNUYPUI", + "ref": "XFOSNUYPUI", + "name": "Serres, Rue Marius Meyere", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27106, + 44.5466 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCTXZPJCMCY", + "ref": "CTXZPJCMCY", + "name": "Chorges, La Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03355, + 44.4554 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEUPMCU29Y2", + "ref": "EUPMCU29Y2", + "name": "Tallard, Parking Aérodrome", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03355, + 44.4554 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEUPMCU29Y2", + "ref": "EUPMCU29Y2", + "name": "Tallard, Parking Aérodrome", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.56418479, + 44.94441185 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXEESI7SAZY", + "ref": "XEESI7SAZY", + "name": "La Salle-Les-Alpes, Parking entre les Eaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.30074, + 45.0443 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHWGH4CNZPB", + "ref": "HWGH4CNZPB", + "name": "La Grave, Salle Polyvalente", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.01944, + 44.7749 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTKYLXPMQQR", + "ref": "TKYLXPMQQR", + "name": "Saint-Firmin, ZA sous la Roche", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.6159, + 44.6747 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPE1RHXEXDBN", + "ref": "E1RHXEXDBN", + "name": "Eygliers, Parking de la Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.6159, + 44.6747 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPE1RHXEXDBN", + "ref": "E1RHXEXDBN", + "name": "Eygliers, Parking de la Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.827471, + 44.535099 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMQM28MJSWG", + "ref": "MQM28MJSWG", + "name": "Veynes, avenue du CDT Dumont", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.827471, + 44.535099 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMQM28MJSWG", + "ref": "MQM28MJSWG", + "name": "Veynes, avenue du CDT Dumont", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9238871, + 43.13027018 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW7NM5NBTSY", + "ref": "W7NM5NBTSY", + "name": "Toulon, Rue Antoine Bonnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88241, + 43.103103 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAEJY2YM4XC", + "ref": "AEJY2YM4XC", + "name": "La Seyne Sur Mer, quai de la marine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94080194, + 43.1194873 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEJWEGJHZDG", + "ref": "EJWEGJHZDG", + "name": "Toulon, Rue Henri Poincaré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.090382, + 43.303283 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGAMO0PZWOK", + "ref": "GAMO0PZWOK", + "name": "Rocbaron, Parking Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.036826, + 43.191242 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPU309RLZWQ4", + "ref": "U309RLZWQ4", + "name": "SOLLIES-PONT, Parking BELTRAME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125679, + 43.119765 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPN0JCAPMP2S", + "ref": "N0JCAPMP2S", + "name": "Hyères, Place Gabriel Péri", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125679, + 43.119765 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPN0JCAPMP2S", + "ref": "N0JCAPMP2S", + "name": "Hyères, Place Gabriel Péri", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.150598, + 43.083425 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHJBBCTOFEI", + "ref": "HJBBCTOFEI", + "name": "Hyères, Parking ARROMANCHES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.150598, + 43.083425 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHJBBCTOFEI", + "ref": "HJBBCTOFEI", + "name": "Hyères, Parking ARROMANCHES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.927102, + 43.126733 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPN2JNLUXZTS", + "ref": "N2JNLUXZTS", + "name": "Toulon, Rue Chalucet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.927102, + 43.126733 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPN2JNLUXZTS", + "ref": "N2JNLUXZTS", + "name": "Toulon, Rue Chalucet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.025026, + 43.092978 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFOP0RMBHQO", + "ref": "FOP0RMBHQO", + "name": "Le pradet, Place Lluch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.025026, + 43.092978 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFOP0RMBHQO", + "ref": "FOP0RMBHQO", + "name": "Le pradet, Place Lluch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.153966, + 43.030095 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXKCZXBQX77", + "ref": "XKCZXBQX77", + "name": "Hyères, Parking Tour Fondue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.855232, + 43.107958 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX9ACD664IX", + "ref": "X9ACD664IX", + "name": "LA SEYNE SUR MER , Rue de Lisbonne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.175952, + 43.348508 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDR8DDD8O45", + "ref": "DR8DDD8O45", + "name": "Parking des Tennis, Besse Sur Issole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.036826, + 43.191242 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPU309RLZWQ4", + "ref": "U309RLZWQ4", + "name": "SOLLIES-PONT, Parking BELTRAME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.855232, + 43.107958 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX9ACD664IX", + "ref": "X9ACD664IX", + "name": "LA SEYNE SUR MER , Rue de Lisbonne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.867203, + 43.124073 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXYQVQRLNOV", + "ref": "XYQVQRLNOV", + "name": "Ollioules, Adeto Technopole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.153966, + 43.030095 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXKCZXBQX77", + "ref": "XKCZXBQX77", + "name": "Hyères, Parking Tour Fondue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.175952, + 43.348508 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDR8DDD8O45", + "ref": "DR8DDD8O45", + "name": "Parking des Tennis, Besse Sur Issole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.867203, + 43.124073 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXYQVQRLNOV", + "ref": "XYQVQRLNOV", + "name": "Ollioules, Adeto Technopole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.982913, + 43.128743 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSXRR7LO13E", + "ref": "SXRR7LO13E", + "name": "Toulon, Parking Ange SICCARDI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.813819, + 43.109906 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPHPFZI11NQ", + "ref": "PHPFZI11NQ", + "name": "Six-Fours-Les-Plages, Parking Square des Bains", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.84677031, + 43.11675785 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRJYQTZVSYG", + "ref": "RJYQTZVSYG", + "name": "Hyères, ZAC Le Palywestre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.543831, + 43.766333 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYHQFQ5KDAE", + "ref": "YHQFQ5KDAE", + "name": "Brenon, PLACE communale des Henry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.813819, + 43.109906 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPHPFZI11NQ", + "ref": "PHPFZI11NQ", + "name": "Six-Fours-Les-Plages, Parking Square des Bains", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.150075, + 43.524758 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIRNE7AOJCY", + "ref": "IRNE7AOJCY", + "name": "Cotignac, 621 rue Ferraillon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.30944049, + 43.23924335 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNUTXBIS2GQ", + "ref": "NUTXBIS2GQ", + "name": "Collobrières, Chemin De Sainte Croix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.771902, + 43.176461 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCPRBTI1JCS", + "ref": "CPRBTI1JCS", + "name": "Le Castellet, 3054 Route des Sources", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.069992, + 43.096204 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHKHTSQZA2H", + "ref": "HKHTSQZA2H", + "name": "Carqueiranne, Avenue Jean Jaures", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.450228, + 43.597875 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSZIFDMFRBK", + "ref": "SZIFDMFRBK", + "name": "Chateaudouble, Saint-Eloi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.039215, + 43.39442 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPB5WUOR3QQJ", + "ref": "B5WUOR3QQJ", + "name": "La Celle, Rue De La Republique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.85204, + 43.105236 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWQRUVP5GZT", + "ref": "WQRUVP5GZT", + "name": "La-Seyne-Sur-Mer, Avenue de Rome", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.85204, + 43.105236 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWQRUVP5GZT", + "ref": "WQRUVP5GZT", + "name": "La-Seyne-Sur-Mer, Avenue de Rome", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.848177, + 43.116827 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX64XQRUOP2", + "ref": "X64XQRUOP2", + "name": "Six-Fours-Les-Plages, Avenue de l'Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.848177, + 43.116827 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX64XQRUOP2", + "ref": "X64XQRUOP2", + "name": "Six-Fours-Les-Plages, Avenue de l'Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.841899, + 43.117565 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBB50GHGEOM", + "ref": "BB50GHGEOM", + "name": "SIX-FOURS-LES-PLAGES, Rue du Revest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.841899, + 43.117565 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBB50GHGEOM", + "ref": "BB50GHGEOM", + "name": "SIX-FOURS-LES-PLAGES, Rue du Revest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.840185, + 43.111404 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGIQRFGC9J6", + "ref": "GIQRFGC9J6", + "name": "Six-Fours-les-Plages, Rue de Saint Mandrier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.840185, + 43.111404 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGIQRFGC9J6", + "ref": "GIQRFGC9J6", + "name": "Six-Fours-les-Plages, Rue de Saint Mandrier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.84677031, + 43.11675785 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRJYQTZVSYG", + "ref": "RJYQTZVSYG", + "name": "Hyères, ZAC Le Palywestre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.082015, + 43.336062 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFGFFNEVI2C", + "ref": "FGFFNEVI2C", + "name": "Forcalqueiret, Parking La Farandole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.090382, + 43.303283 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGAMO0PZWOK", + "ref": "GAMO0PZWOK", + "name": "Rocbaron, Parking Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.982913, + 43.128743 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSXRR7LO13E", + "ref": "SXRR7LO13E", + "name": "Toulon, Parking Ange SICCARDI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.082015, + 43.336062 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFGFFNEVI2C", + "ref": "FGFFNEVI2C", + "name": "Forcalqueiret, Parking La Farandole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.543831, + 43.766333 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYHQFQ5KDAE", + "ref": "YHQFQ5KDAE", + "name": "Brenon, PLACE communale des Henry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.140912, + 43.118344 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUDLITAUEPN", + "ref": "UDLITAUEPN", + "name": "Hyeres, Quartier La Blocarde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.28863, + 43.3194 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJYICHSALWP", + "ref": "JYICHSALWP", + "name": "Gonfaron, Place de la Victoire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.077222, + 43.094876 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPI7JXCEB90K", + "ref": "I7JXCEB90K", + "name": "Carqueiranne, Parking Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.000823, + 43.134444 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCKNLCKILQC", + "ref": "CKNLCKILQC", + "name": "La Valette Du Var, Parking Ecoquartier ENTREVERT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.806694, + 43.080991 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCZTN3RDEN3", + "ref": "CZTN3RDEN3", + "name": "Six-Fours-Les-Plages, Parking du Cros", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.148806, + 43.047876 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP9AXQ55PSR", + "ref": "P9AXQ55PSR", + "name": "Hyères, Parking Avenue de la Bergerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.000823, + 43.134444 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCKNLCKILQC", + "ref": "CKNLCKILQC", + "name": "La Valette Du Var, Parking Ecoquartier ENTREVERT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.945638, + 43.107935 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPANLPJGMNN8", + "ref": "ANLPJGMNN8", + "name": "Toulon, Plage du Mourillon Entrée Ouest 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.175739, + 43.106 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPZ5XASX8DE", + "ref": "PZ5XASX8DE", + "name": "Hyeres, Place des Aigrettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.806694, + 43.080991 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCZTN3RDEN3", + "ref": "CZTN3RDEN3", + "name": "Six-Fours-Les-Plages, Parking du Cros", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.945638, + 43.107935 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPANLPJGMNN8", + "ref": "ANLPJGMNN8", + "name": "Toulon, Plage du Mourillon Entrée Ouest 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8125, + 43.099783 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTBCQ7Z5SIN", + "ref": "TBCQ7Z5SIN", + "name": "Six-Fours-Les-Plages, Parking de la Coudoulière, Avenue du Cap Nègre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.149858, + 43.064793 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLKPXJJN0R7", + "ref": "LKPXJJN0R7", + "name": "Hyeres, Parking De La Capte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.070709, + 43.147958 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGRL0MUCLX8", + "ref": "GRL0MUCLX8", + "name": "La Crau, Parking Gressler", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92812, + 43.16388 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBGYAN4GZ5U", + "ref": "BGYAN4GZ5U", + "name": "Le Revest-les-Eaux, Hameau des Dardennes, Chemin du Beal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.137923, + 43.111634 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEXSLDWIYGA", + "ref": "EXSLDWIYGA", + "name": "Hyeres, Parking Piscine Municipale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9238871, + 43.13027018 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW7NM5NBTSY", + "ref": "W7NM5NBTSY", + "name": "Toulon, Rue Antoine Bonnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.936084, + 43.115201 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPXQQOQYXV2", + "ref": "PXQQOQYXV2", + "name": "Toulon, Parking De La Carte Postale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.075492, + 43.147169 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJRIJGWQ7GS", + "ref": "JRIJGWQ7GS", + "name": "La Crau, Parking Bonnaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.018776, + 43.084552 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGTTHOQUJRW", + "ref": "GTTHOQUJRW", + "name": "Le Pradet, Parking Des Oursinières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.97218364, + 43.12926791 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUTIMKUAQVQ", + "ref": "UTIMKUAQVQ", + "name": "Toulon, Parking Font Pre Borne 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88241, + 43.103103 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAEJY2YM4XC", + "ref": "AEJY2YM4XC", + "name": "La Seyne Sur Mer, quai de la marine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.175739, + 43.106 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPZ5XASX8DE", + "ref": "PZ5XASX8DE", + "name": "Hyeres, Place des Aigrettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.077222, + 43.094876 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPI7JXCEB90K", + "ref": "I7JXCEB90K", + "name": "Carqueiranne, Parking Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.140912, + 43.118344 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUDLITAUEPN", + "ref": "UDLITAUEPN", + "name": "Hyeres, Quartier La Blocarde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22004267, + 43.6266837 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDBGJDBSHVN", + "ref": "DBGJDBSHVN", + "name": "Aups, Parking de la colle ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125505, + 43.10854 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRAV5DFEAEQ", + "ref": "RAV5DFEAEQ", + "name": "Hyères, Gare SNCF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125505, + 43.10854 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRAV5DFEAEQ", + "ref": "RAV5DFEAEQ", + "name": "Hyères, Gare SNCF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.109689, + 43.12475 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYP50UQ5XFT", + "ref": "YP50UQ5XFT", + "name": "Hyères, Avenue des Monocotyledones", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.109689, + 43.12475 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYP50UQ5XFT", + "ref": "YP50UQ5XFT", + "name": "Hyères, Avenue des Monocotyledones", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.131286, + 43.038647 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPU20PVEFMDS", + "ref": "U20PVEFMDS", + "name": "Hyeres, Place du Belvédère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.01814, + 43.108139 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGJ3XL6XZTL", + "ref": "GJ3XL6XZTL", + "name": "Le Pradet, Parking LAVIGERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.910646, + 43.142256 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJYRCFTINHR", + "ref": "JYRCFTINHR", + "name": "Toulon, Parking Museum Départemental", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.842399, + 43.093511 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUYWWVLHDHN", + "ref": "UYWWVLHDHN", + "name": "Six-Fours-Les-Plages, Parking ESPACE MALRAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.01814, + 43.108139 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGJ3XL6XZTL", + "ref": "GJ3XL6XZTL", + "name": "Le Pradet, Parking LAVIGERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.113377, + 43.120276 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCXZL1VHZBY", + "ref": "CXZL1VHZBY", + "name": "Hyères, Avenue Maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.131286, + 43.038647 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPU20PVEFMDS", + "ref": "U20PVEFMDS", + "name": "Hyeres, Place du Belvédère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.910646, + 43.142256 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJYRCFTINHR", + "ref": "JYRCFTINHR", + "name": "Toulon, Parking Museum Départemental", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.113377, + 43.120276 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCXZL1VHZBY", + "ref": "CXZL1VHZBY", + "name": "Hyères, Avenue Maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.148806, + 43.047876 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP9AXQ55PSR", + "ref": "P9AXQ55PSR", + "name": "Hyères, Parking Avenue de la Bergerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.914784, + 43.130261 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWV16QKJAOY", + "ref": "WV16QKJAOY", + "name": "Toulon, Place Parmentier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.914784, + 43.130261 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWV16QKJAOY", + "ref": "WV16QKJAOY", + "name": "Toulon, Place Parmentier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.083604, + 43.088313 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPS0BKBAHJZ9", + "ref": "S0BKBAHJZ9", + "name": "Carqueiranne, Parking Beaurivage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.083604, + 43.088313 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPS0BKBAHJZ9", + "ref": "S0BKBAHJZ9", + "name": "Carqueiranne, Parking Beaurivage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22004267, + 43.6266837 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDBGJDBSHVN", + "ref": "DBGJDBSHVN", + "name": "Aups, Parking de la colle ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.21297, + 45.791 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPBNDNA", + "ref": "PBNDNA", + "name": "Lathuile, Route du Bout du Lac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.21297, + 45.791 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPBNDNA", + "ref": "PBNDNA", + "name": "Lathuile, Route du Bout du Lac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.29294, + 45.7483 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMMDHJY", + "ref": "MMDHJY", + "name": "Faverges, Place Joseph Sérand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81653, + 45.176935 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRDFEUWJLV7", + "ref": "RDFEUWJLV7", + "name": "Saint-Vallier, Place du Champs de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.060403, + 44.522082 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYOVTZBLZ6Y", + "ref": "YOVTZBLZ6Y", + "name": "Dieulefit, Parking des Grands Pres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.993811, + 45.290854 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKMY7EK3TVS", + "ref": "KMY7EK3TVS", + "name": "Moras-En-Valloire, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.954134, + 45.291376 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXEAAPBSHGL", + "ref": "XEAAPBSHGL", + "name": "Saint-Sorlin-En-Valloire, Place des Gauds", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.985143, + 45.122126 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSJORIJEACH", + "ref": "SJORIJEACH", + "name": "Saint-Donat-Sur-L'Herbasse, Place Anatole France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.957015, + 44.972802 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHCVY8ZZGX8", + "ref": "HCVY8ZZGX8", + "name": "Saint-Marcel-Lès-Valence, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9767, + 44.9891 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRHLBTLPSI5", + "ref": "RHLBTLPSI5", + "name": "Alixan, Parking Rovaltain Face SDED", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.27678869, + 44.5691193 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXPWLH9URLF", + "ref": "XPWLH9URLF", + "name": "Saint-Nazaire-Le-Desert, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960262, + 45.229445 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJKA3JEAMYP", + "ref": "JKA3JEAMYP", + "name": "Châteauneuf-De-Galaure, ZI des Aires", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.976144, + 44.989731 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXNTOYCDUUU", + "ref": "XNTOYCDUUU", + "name": "Alixan, Parking SDED Privé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.819175, + 44.752224 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDZI9RFFUXV", + "ref": "DZI9RFFUXV", + "name": "Loriol-Sur-Drôme, Rue du Real Pkg Champ de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.799172, + 44.702527 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVJR4KERRP4", + "ref": "VJR4KERRP4", + "name": "Saulce-Sur-Rhône, Parking Du Temple", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.936933, + 45.015669 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDRERGYFIWV", + "ref": "DRERGYFIWV", + "name": "Châteauneuf-Sur-Isère, Quai de l'Isère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.709302, + 44.441867 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFT9RYLHLGP", + "ref": "FT9RYLHLGP", + "name": "Donzère, 20 Avenue P. de Coubertin - Pkg piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.140972, + 44.358895 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHLIQFU7MBL", + "ref": "HLIQFU7MBL", + "name": "Nyons, Promenade de la Digue Est", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.063022, + 44.332828 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHHI7NXS2BU", + "ref": "HHI7NXS2BU", + "name": "Vinsobres, Passage de l'Amélie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.802167, + 44.418065 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQRT5VAQ5PW", + "ref": "QRT5VAQ5PW", + "name": "Valaurie, Place Nicolas Appert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839749, + 44.769233 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKDSOJBUKIE", + "ref": "KDSOJBUKIE", + "name": "Livron Sur Drome, Place de la Citoyenneté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.873462, + 45.640808 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFBYQDSUWIU", + "ref": "FBYQDSUWIU", + "name": "Le Bourget-Du-Lac, Sud 2, Rue mer Caspienne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.994846, + 45.322879 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLK4IORN6OX", + "ref": "LK4IORN6OX", + "name": "Lapeyrouse-Mornay, Place Jérôme Cavalli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.200007, + 44.697264 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAKHOI6DR2E", + "ref": "AKHOI6DR2E", + "name": "Saillans, Montée Soubeyranne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0291181, + 45.2558692 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSWKGDBKOKM", + "ref": "SWKGDBKOKM", + "name": "Hauterives, Parking du Palais Idéal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.049421, + 45.092633 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCLMU9GFZZA", + "ref": "CLMU9GFZZA", + "name": "Peyrins, Parking de l'école", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.918842, + 44.762521 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP4ZIKZMGVU", + "ref": "P4ZIKZMGVU", + "name": "Allex, Place Saint Joseph", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.893549, + 44.946232 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPO6ZR7Q3T0", + "ref": "PO6ZR7Q3T0", + "name": "Bourg-Lès-Valence, Parking Valentin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.898153, + 44.948826 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRTRXS7Y6C9", + "ref": "RTRXS7Y6C9", + "name": "Bourg-Lès-Valence, Ecole Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356327, + 44.414245 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKU7GOCOQLM", + "ref": "KU7GOCOQLM", + "name": "Remuzat, 1 Place du Champs de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2581, + 44.41145 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHTXRRAG7VZ", + "ref": "HTXRRAG7VZ", + "name": "Sahune, Place du Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381235, + 44.486233 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGHGFD1VXML", + "ref": "GHGFD1VXML", + "name": "La Motte-Chalancon, Parking du Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.091215, + 44.711668 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHYERDCGEKJ", + "ref": "HYERDCGEKJ", + "name": "Mirabel-Et-Blacons, Parking Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.062747, + 44.646529 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOZC3CQY0LP", + "ref": "OZC3CQY0LP", + "name": "Saou, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.133801, + 44.585658 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXB7KJGMX1B", + "ref": "XB7KJGMX1B", + "name": "Bourdeaux, Place du Quai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.934015, + 44.610178 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWJASLMUGE9", + "ref": "WJASLMUGE9", + "name": "Cleon-D'Andran, Route de Beaulieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.859351, + 45.184396 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPT80X29F55X", + "ref": "T80X29F55X", + "name": "Saint-Uze, Les Sources", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873418, + 45.170177 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIVVBJ8KBSM", + "ref": "IVVBJ8KBSM", + "name": "Saint-Barthelemy-De-Vals, Avenue Du Vercors", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.912101, + 44.419857 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWUV7HSEG7Z", + "ref": "WUV7HSEG7Z", + "name": "Grignan, Les Grand Près", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.127572, + 44.357458 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPTMJY7PQFA", + "ref": "PTMJY7PQFA", + "name": "Nyons, Parking Cerisiers Mistral", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70472835, + 44.35463006 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWKHCVF4ZLP", + "ref": "WKHCVF4ZLP", + "name": "Pierrelatte, Ferme au crocodile", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.904457, + 44.904052 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTL1WGTVEO9", + "ref": "TL1WGTVEO9", + "name": "Valence, Lautagne Labo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894544, + 44.934744 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPH5N3BW8X1L", + "ref": "H5N3BW8X1L", + "name": "Valence, Place Herriot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.983865, + 45.050388 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGXXHNQ5HXX", + "ref": "GXXHNQ5HXX", + "name": "Granges-Les-Beaumont, Rue du Tram", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.450919, + 44.616002 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWDLJPIX1QR", + "ref": "WDLJPIX1QR", + "name": "Luc-En-Diois, Parking des Bains", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.052549, + 45.044026 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOMXZZQL6TV", + "ref": "OMXZZQL6TV", + "name": "Romans-Sur-Isere, Place Jules Nadi ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894331, + 44.93486 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQYCADMQWOA", + "ref": "QYCADMQWOA", + "name": "Valence, Place Herriot", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-16", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.017178, + 44.730592 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIY1C479BL4", + "ref": "IY1C479BL4", + "name": "Crest, Avenue George Clémenceau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.08223, + 44.3298 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWL5XZNI7WZ", + "ref": "WL5XZNI7WZ", + "name": "Vinsobres, Route de Nyons", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.08223, + 44.3298 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWL5XZNI7WZ", + "ref": "WL5XZNI7WZ", + "name": "Vinsobres, Route de Nyons", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.052549, + 45.044026 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOMXZZQL6TV", + "ref": "OMXZZQL6TV", + "name": "Romans-Sur-Isere, Place Jules Nadi ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.99937, + 44.9995 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCANHER", + "ref": "CANHER", + "name": "Alixan, Aire de Bayanne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894331, + 44.93486 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQYCADMQWOA", + "ref": "QYCADMQWOA", + "name": "Valence, Place Herriot", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.017178, + 44.730592 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIY1C479BL4", + "ref": "IY1C479BL4", + "name": "Crest, Avenue George Clémenceau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.99937, + 44.9995 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCANHER", + "ref": "CANHER", + "name": "Alixan, Aire de Bayanne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.859653, + 45.65551 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDWG6IHEU7O", + "ref": "DWG6IHEU7O", + "name": "Le Bourget-Du-Lac, Boulevard du lac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.85806, + 45.64881 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYXWYDYAZRR", + "ref": "YXWYDYAZRR", + "name": "Le Bourget-Du-Lac, Rue des Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88804, + 44.925184 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWM3WAO2RMZ", + "ref": "WM3WAO2RMZ", + "name": "Valence, Clos Sylvestre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.903566, + 44.933541 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZIUHTQE97T", + "ref": "ZIUHTQE97T", + "name": "Valence, Latour Maubourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.441792, + 44.174437 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPF36WUWT4H7", + "ref": "F36WUWT4H7", + "name": "Montbrun-Les-Bains, La Condamine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.118107, + 44.35214 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEDVOP2GKDT", + "ref": "EDVOP2GKDT", + "name": "Nyons, 170 Rue Ferdinand Fert -", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.929752, + 44.950546 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPICYZM13ZT9", + "ref": "ICYZM13ZT9", + "name": "Valence, Place Tony Garnier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.883411, + 44.92895 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX215JLJ2YH", + "ref": "X215JLJ2YH", + "name": "Valence, Parking Comette Jouvet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.885265, + 44.931448 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPD5L0ETPPMV", + "ref": "D5L0ETPPMV", + "name": "Valence, Pont du Rhône", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.218949, + 44.428743 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOMHSNRMBVM", + "ref": "OMHSNRMBVM", + "name": "St Ferreol Trente Pas, Place De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.885265, + 44.931448 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPD5L0ETPPMV", + "ref": "D5L0ETPPMV", + "name": "Valence, Pont du Rhône", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.912101, + 44.419857 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWUV7HSEG7Z", + "ref": "WUV7HSEG7Z", + "name": "Grignan, Les Grand Près", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.883411, + 44.92895 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX215JLJ2YH", + "ref": "X215JLJ2YH", + "name": "Valence, Parking Comette Jouvet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53849131, + 44.20221446 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKUZMMX4TIX", + "ref": "KUZMMX4TIX", + "name": "Sederon, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70472835, + 44.35463006 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWKHCVF4ZLP", + "ref": "WKHCVF4ZLP", + "name": "Pierrelatte, Ferme au crocodile", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872427, + 45.001602 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPONVAVTDPJC", + "ref": "ONVAVTDPJC", + "name": "Pont-De-L'Isère, Place du 16 Août", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.844279, + 45.013752 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUHWF1QXLIT", + "ref": "UHWF1QXLIT", + "name": "La Roche-De-Glun, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902889, + 44.904445 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKOKMLXJ1C1", + "ref": "KOKMLXJ1C1", + "name": "Valence, Avenue des Langories", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845401, + 45.067357 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPS5JXS0NDKH", + "ref": "S5JXS0NDKH", + "name": "Tain-L'Hermitage, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.426297, + 44.378797 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP4CTJBHF9Q", + "ref": "P4CTJBHF9Q", + "name": "Verclause, Parking du Supermarche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.142652, + 45.194985 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXZXALUKTTA", + "ref": "XZXALUKTTA", + "name": "Saint-Bonnet-De-Valclerieux, Place du Lavoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.056833, + 44.71694 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKVCB2FBNZ3", + "ref": "KVCB2FBNZ3", + "name": "Aouste-Sur-Sye, D93 - Parking Pharmacie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.056612, + 44.714312 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLR3Z5GMDXD", + "ref": "LR3Z5GMDXD", + "name": "Aouste-Sur-Sye, Parking de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87871, + 44.874 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTZZHBY", + "ref": "TZZHBY", + "name": "Portes-Lès-Valence, 9 Rue Emile Zola", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.75091764, + 44.56067532 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUKTMEQNRXJ", + "ref": "UKTMEQNRXJ", + "name": "Montelimar, Place Bouverie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88637, + 44.944521 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCUG99GGOWF", + "ref": "CUG99GGOWF", + "name": "Bourg-Les-Valence,Parking du Théâtre le Rhône", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88637, + 44.944521 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCUG99GGOWF", + "ref": "CUG99GGOWF", + "name": "Bourg-Les-Valence,Parking du Théâtre le Rhône", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.13266647, + 44.36218458 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLIEIZRQF8F", + "ref": "LIEIZRQF8F", + "name": "Nyons, Coopérative du Nyonsais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.13266647, + 44.36218458 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLIEIZRQF8F", + "ref": "LIEIZRQF8F", + "name": "Nyons, Coopérative du Nyonsais", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02580276, + 44.72066204 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSURFS8ZTGN", + "ref": "SURFS8ZTGN", + "name": "Crest, Aire Multimodale de Saint Ferreol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02580276, + 44.72066204 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSURFS8ZTGN", + "ref": "SURFS8ZTGN", + "name": "Crest, Aire Multimodale de Saint Ferreol", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89511442, + 44.93115343 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLWXQSAKCCJ", + "ref": "LWXQSAKCCJ", + "name": "Valence, Place Jean Collombet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.07845, + 44.9669 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNGKNNY", + "ref": "NGKNNY", + "name": "Besayes, Parking du Prieuré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93998, + 44.8613 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUTSMAL", + "ref": "UTSMAL", + "name": "Beaumont-Lès-Valence, Parking du Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06121, + 45.0304 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXJLPEH", + "ref": "XJLPEH", + "name": "Bourg-De-Peage, Espace François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.07845, + 44.9669 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNGKNNY", + "ref": "NGKNNY", + "name": "Besayes, Parking du Prieuré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02596, + 44.9741 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKRPNCH", + "ref": "KRPNCH", + "name": "Alixan, Parc Colombet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89511442, + 44.93115343 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLWXQSAKCCJ", + "ref": "LWXQSAKCCJ", + "name": "Valence, Place Jean Collombet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93998, + 44.8613 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUTSMAL", + "ref": "UTSMAL", + "name": "Beaumont-Lès-Valence, Parking du Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.75091764, + 44.56067532 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUKTMEQNRXJ", + "ref": "UKTMEQNRXJ", + "name": "Montelimar, Place Bouverie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89067, + 44.8405 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDXPLVE", + "ref": "DXPLVE", + "name": "Etoile-Sur-Rhône, Parking des Gabions", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89067, + 44.8405 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDXPLVE", + "ref": "DXPLVE", + "name": "Etoile-Sur-Rhône, Parking des Gabions", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05117, + 45.0395 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXUNZRR", + "ref": "XUNZRR", + "name": "Bourg-De-Peage, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.96484, + 44.9165 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNYDEBU", + "ref": "NYDEBU", + "name": "Chabeuil, Aéroport - Unamed Road", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05117, + 45.0395 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXUNZRR", + "ref": "XUNZRR", + "name": "Bourg-De-Peage, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09518, + 44.8994 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVZZKPP", + "ref": "VZZKPP", + "name": "Châteaudouble, Place de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.96484, + 44.9165 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNYDEBU", + "ref": "NYDEBU", + "name": "Chabeuil, Aéroport - Unamed Road", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.03997, + 45.0169 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPNSRMA", + "ref": "PNSRMA", + "name": "Bourg-De-Peage, Complexe aquatique Diabolo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06121, + 45.0304 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXJLPEH", + "ref": "XJLPEH", + "name": "Bourg-De-Peage, Espace François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.03997, + 45.0169 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPNSRMA", + "ref": "PNSRMA", + "name": "Bourg-De-Peage, Complexe aquatique Diabolo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0923, + 45.0034 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSXUCBY", + "ref": "SXUCBY", + "name": "Chatuzange-Le-Goubet, 9 Rue du Mont du Matin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09518, + 44.8994 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVZZKPP", + "ref": "VZZKPP", + "name": "Châteaudouble, Place de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.01835, + 44.8993 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGBMHGY", + "ref": "GBMHGY", + "name": "Chabeuil, Rue des Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.01835, + 44.8993 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGBMHGY", + "ref": "GBMHGY", + "name": "Chabeuil, Rue des Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37037, + 44.8955 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMDEFSB", + "ref": "MDEFSB", + "name": "Vassieux-En-Vercors, Place des Martyrs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37037, + 44.8955 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMDEFSB", + "ref": "MDEFSB", + "name": "Vassieux-En-Vercors, Place des Martyrs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0923, + 45.0034 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSXUCBY", + "ref": "SXUCBY", + "name": "Chatuzange-Le-Goubet, 9 Rue du Mont du Matin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02596, + 44.9741 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKRPNCH", + "ref": "KRPNCH", + "name": "Alixan, Parc Colombet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88401, + 44.8756 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMBKYAM", + "ref": "MBKYAM", + "name": "Portes-Lès-Valence, Parking Train Théâtre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024275, + 44.727057 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTNY0MUAT3P", + "ref": "TNY0MUAT3P", + "name": "Crest, Place des Marronniers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0225, + 44.8715 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLLZYYD", + "ref": "LLZYYD", + "name": "Montvendre, Le Pré du Bost", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2494, + 45.06 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJMYBDN", + "ref": "JMYBDN", + "name": "Saint-Nazaire-En-Royans, Angle L. Laurent/J.", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2494, + 45.06 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJMYBDN", + "ref": "JMYBDN", + "name": "Saint-Nazaire-En-Royans, Angle L. Laurent/J.", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44251, + 45.0202 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHMQVVL", + "ref": "HMQVVL", + "name": "Saint-Martin-En-Vercors, Place du Monument au", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44251, + 45.0202 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHMQVVL", + "ref": "HMQVVL", + "name": "Saint-Martin-En-Vercors, Place du Monument au", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05015, + 45.0492 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJGECQF", + "ref": "JGECQF", + "name": "Romans-Sur-Isère, Delay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.04475, + 45.0434 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCLMHBS", + "ref": "CLMHBS", + "name": "Romans-Sur-Isère, Cité de la Musique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05134, + 45.0451 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRQNSQX", + "ref": "RQNSQX", + "name": "Romans-Sur-Isère, Pl. du 75eme Rég Inf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05586, + 45.0422 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNZAXHX", + "ref": "NZAXHX", + "name": "Romans-Sur-Isère, Le Pont Neuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.04475, + 45.0434 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCLMHBS", + "ref": "CLMHBS", + "name": "Romans-Sur-Isère, Cité de la Musique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.04918, + 45.0448 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTWVNEL", + "ref": "TWVNEL", + "name": "Romans-Sur-Isère, Parking Jacquemard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05015, + 45.0492 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJGECQF", + "ref": "JGECQF", + "name": "Romans-Sur-Isère, Delay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05134, + 45.0451 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRQNSQX", + "ref": "RQNSQX", + "name": "Romans-Sur-Isère, Pl. du 75eme Rég Inf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.04918, + 45.0448 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTWVNEL", + "ref": "TWVNEL", + "name": "Romans-Sur-Isère, Parking Jacquemard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.020937, + 44.72668 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDHCKIJOAXG", + "ref": "DHCKIJOAXG", + "name": "Crest, Place de la Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.041824, + 45.29267 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWTKHQRLVGM", + "ref": "WTKHQRLVGM", + "name": "Lens-Lestang, Place Des Tilleuils", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29092, + 45.0166 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNPRXBQ", + "ref": "NPRXBQ", + "name": "Saint-Jean-En-Royans, Parking Ancien Intermar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29092, + 45.0166 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNPRXBQ", + "ref": "NPRXBQ", + "name": "Saint-Jean-En-Royans, Parking Ancien Intermar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32729, + 45.0293 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYYVBBJ", + "ref": "YYVBBJ", + "name": "Saint-Laurent-En-Royans, Rue Du Tram", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92192, + 44.86594 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJLQKAG", + "ref": "JLQKAG", + "name": "Monteleger, Parc Forêt d'Orient", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87871, + 44.874 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTZZHBY", + "ref": "TZZHBY", + "name": "Portes-Lès-Valence, 9 Rue Emile Zola", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05141, + 45.0423 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBRKYBY", + "ref": "BRKYBY", + "name": "Romans-Sur-Isère, Place Sabaton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05586, + 45.0422 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNZAXHX", + "ref": "NZAXHX", + "name": "Romans-Sur-Isère, Le Pont Neuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88401, + 44.8756 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMBKYAM", + "ref": "MBKYAM", + "name": "Portes-Lès-Valence, Parking Train Théâtre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05141, + 45.0423 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBRKYBY", + "ref": "BRKYBY", + "name": "Romans-Sur-Isère, Place Sabaton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0225, + 44.8715 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLLZYYD", + "ref": "LLZYYD", + "name": "Montvendre, Le Pré du Bost", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92192, + 44.86594 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJLQKAG", + "ref": "JLQKAG", + "name": "Monteleger, Parc Forêt d'Orient", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32729, + 45.0293 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYYVBBJ", + "ref": "YYVBBJ", + "name": "Saint-Laurent-En-Royans, Rue Du Tram", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41656, + 44.9687 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSGRPBU", + "ref": "SGRPBU", + "name": "La Chapelle-En-Vercors, Rue Champ Morand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41656, + 44.9687 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSGRPBU", + "ref": "SGRPBU", + "name": "La Chapelle-En-Vercors, Rue Champ Morand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93832, + 44.8003 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCLFAVQ", + "ref": "CLFAVQ", + "name": "Montoison, Route de Valence", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93832, + 44.8003 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCLFAVQ", + "ref": "CLFAVQ", + "name": "Montoison, Route de Valence", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02737, + 44.9355 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYYBZKF", + "ref": "YYBZKF", + "name": "Montelier, Parking co-voiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02737, + 44.9355 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYYBZKF", + "ref": "YYBZKF", + "name": "Montelier, Parking co-voiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.868916, + 45.645002 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFRD1O42B4X", + "ref": "FRD1O42B4X", + "name": "Le Bourget-Du-Lac, Allée lac d'Aiguebellette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.925893, + 45.564292 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGIB8D1B3ML", + "ref": "GIB8D1B3ML", + "name": "Chambery, Rue de la République Manège", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838851, + 44.288371 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHANDNASEFE", + "ref": "HANDNASEFE", + "name": "Suze-La-Rousse, 621 Avenue Des Côtes Du Rhône", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.319735, + 45.68719 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSMK51LMAB7", + "ref": "SMK51LMAB7", + "name": "Trept, Place des Anciens Combattants AFN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.412653, + 45.170807 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIVIDV8DXOP", + "ref": "IVIDV8DXOP", + "name": "Cognin-Les-Gorges, Place de L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.439585, + 45.223157 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNAPOVOMVVA", + "ref": "NAPOVOMVVA", + "name": "L'Albenc, Place Jean Vinay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.607645, + 45.587038 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPJQBERSPPR", + "ref": "PJQBERSPPR", + "name": "Aoste, Place Blanc Jolicoeur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.020297, + 45.432277 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOYFFQZBYFP", + "ref": "OYFFQZBYFP", + "name": "Pontcharra, Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4705944, + 45.6513139 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPH6VUVLTMNF", + "ref": "H6VUVLTMNF", + "name": "Vezeronce-Curtin, Parking Place Clodomir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992505, + 45.2996611 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEDM5XZ78S5", + "ref": "EDM5XZ78S5", + "name": "Theys, Parking RD 2558", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.99027, + 45.371901 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEMAQAISOIN", + "ref": "EMAQAISOIN", + "name": "Le Cheylas, Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.588077, + 45.368226 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDBDELKZ02M", + "ref": "DBDELKZ02M", + "name": "Voiron, Avenue Jules Ravat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585147, + 45.536575 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFT0LK4QOQ6", + "ref": "FT0LK4QOQ6", + "name": "Les Abrets, Rue Clément Gondrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.47326, + 45.674127 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKBRRRM6IGB", + "ref": "KBRRRM6IGB", + "name": "Morestel, Rue Clos Giraud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5698368, + 45.3500388 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPJVJCPOJL2", + "ref": "PJVJCPOJL2", + "name": "Voiron, Hotel Best Western", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.30582, + 45.557352 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTJJ9KFP8UM", + "ref": "TJJ9KFP8UM", + "name": "Nivolas-Vermelle, Square Du 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.286122, + 45.55948 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJLQWOQOKKG", + "ref": "JLQWOQOKKG", + "name": "Meyrie, Rue des Grands Tournants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.820972, + 45.241288 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLGOYUQZSSS", + "ref": "LGOYUQZSSS", + "name": "Saint-Ismier, Chemin du Rozat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22312, + 45.54915 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQRKRSXDLOB", + "ref": "QRKRSXDLOB", + "name": "Crachier, Rue des Écoliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.598293, + 45.349774 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGGVI7THWNN", + "ref": "GGVI7THWNN", + "name": "Coublevie, Impasse Des Genets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.6714725, + 45.5346056 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPS17UEJU18E", + "ref": "S17UEJU18E", + "name": "Le Pont-De-Beauvoisin, Avenue Docteur Pravaz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96026, + 45.57204 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPL26DHUKX0L", + "ref": "L26DHUKX0L", + "name": "La Ravoire, Barillettes-parc, Rue Louis Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410519, + 45.207744 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHEQVLNPGAI", + "ref": "HEQVLNPGAI", + "name": "Vinay, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.255442, + 45.555121 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRVEJP6FQDH", + "ref": "RVEJP6FQDH", + "name": "Bourgneuf, pont d’aiton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.255442, + 45.555121 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRVEJP6FQDH", + "ref": "RVEJP6FQDH", + "name": "Bourgneuf, pont d’aiton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.870602, + 45.646947 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOYKRAJWUI5", + "ref": "OYKRAJWUI5", + "name": "Le Bourget-Du-Lac, House Boat, allée Lac de Garde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.868916, + 45.645002 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFRD1O42B4X", + "ref": "FRD1O42B4X", + "name": "Le Bourget-Du-Lac, Allée lac d'Aiguebellette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.859653, + 45.65551 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDWG6IHEU7O", + "ref": "DWG6IHEU7O", + "name": "Le Bourget-Du-Lac, Boulevard du lac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.897872, + 45.560258 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPVZ0P4QBGB", + "ref": "PVZ0P4QBGB", + "name": "Cognin, Rue de la Poterie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.946799, + 45.786238 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHV3YYVD9CQ", + "ref": "HV3YYVD9CQ", + "name": "Entrelacs, Entrelacs, Pce JM Montillet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.89316, + 45.5928 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCDVYRNUDQ1", + "ref": "CDVYRNUDQ1", + "name": "Chambery, Ecoris Rue de Chantabord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.916712, + 45.588654 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMSU1UWQGZE", + "ref": "MSU1UWQGZE", + "name": "Chambery, Rue d'Anjou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.032985, + 45.480671 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPI8CSUBSTQY", + "ref": "I8CSUBSTQY", + "name": "Francin, Alpespace, Pyramide", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.875031, + 45.596798 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPFDSQONRUW", + "ref": "PFDSQONRUW", + "name": "La Motte-Servolex, Rue des Allobroges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.965906, + 45.57173 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDZTEO5VMC9", + "ref": "DZTEO5VMC9", + "name": "La Ravoire, Place des fées", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96026, + 45.57204 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPL26DHUKX0L", + "ref": "L26DHUKX0L", + "name": "La Ravoire, Barillettes-parc, Rue Louis Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.922962, + 45.718341 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQH3MXFSZJA", + "ref": "QH3MXFSZJA", + "name": "Gresy-Sur-Aix, Grésy sur Aix, Rue du commerce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.523008, + 45.543217 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXHERGSSQS7", + "ref": "XHERGSSQS7", + "name": "Saint-André-Le-Gaz, Parking - Rue Paul Langevin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.583329, + 45.129631 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHUNZB9FZ2G", + "ref": "HUNZB9FZ2G", + "name": "Lans-En-Vercors, Voie du Tram", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630496, + 45.170753 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAEOHHR2DTT", + "ref": "AEOHHR2DTT", + "name": "Saint-Nizier-Du-Moucherotte, Place du 14 Avril 1929", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5271472, + 45.0326389 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUGZUCTHE6K", + "ref": "UGZUCTHE6K", + "name": "Corrençon-En-Vercors, Parking RD 215", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55164676, + 45.07208481 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW1ACYG8P4K", + "ref": "W1ACYG8P4K", + "name": "Villard-De-Lans, Place Mure Ravaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404874, + 45.81437 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYXQDXS", + "ref": "YXQDXS", + "name": "Montalieu-Vercieu, Rue du Besset", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404874, + 45.81437 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYXQDXS", + "ref": "YXQDXS", + "name": "Montalieu-Vercieu, Rue du Besset", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36198, + 45.3908 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIBY7XIF9QN", + "ref": "IBY7XIF9QN", + "name": "La Frette, Place des Déportés et Résistants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36198, + 45.3908 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIBY7XIF9QN", + "ref": "IBY7XIF9QN", + "name": "La Frette, Place des Déportés et Résistants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.67848, + 44.757898 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFL632BDMHN", + "ref": "FL632BDMHN", + "name": "Lalley, Route de Mens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24093, + 45.258479 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBYXYO6YXTR", + "ref": "BYXYO6YXTR", + "name": "Roybon, Place Jean Perraud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.671319, + 44.907212 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJCC4MS2WXT", + "ref": "JCC4MS2WXT", + "name": "Treffort, Parking Mairie - RD 59", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56859, + 44.902538 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGH4VMCSAZK", + "ref": "GH4VMCSAZK", + "name": "Gresse-En-Vercors, Parking Public - RD8A", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.343487, + 45.0595127 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGKE5UHODFR", + "ref": "GKE5UHODFR", + "name": "Pont En Royans, Impasse du Vivier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.887383, + 45.310644 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZ6CIOZHDCI", + "ref": "Z6CIOZHDCI", + "name": "Saint-Hilaire-Du-Touvet, Route des 3 Villages", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.636785, + 45.455873 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSNJTCRYXPQ", + "ref": "SNJTCRYXPQ", + "name": "Saint-Geoire-En-Valdaine, Place André Chaize", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.076071, + 45.392746 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYHBVNIPGQG", + "ref": "YHBVNIPGQG", + "name": "Allevard, Rue De La Republique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.6337565, + 44.9155285 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSJCGRO59VL", + "ref": "SJCGRO59VL", + "name": "Monestier-De-Clermont, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5761418, + 44.9751199 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNKBQJ8XDAJ", + "ref": "NKBQJ8XDAJ", + "name": "Château-Bernard, Parking de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11627, + 44.98706 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOJBNYNLLXC", + "ref": "OJBNYNLLXC", + "name": "Les Deux Alpes, Office de Tourisme de Venosc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77067, + 45.4387 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXZCHPX", + "ref": "XZCHPX", + "name": "Saint-Clair-Du-Rhône, Plc Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77067, + 45.4387 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXZCHPX", + "ref": "XZCHPX", + "name": "Saint-Clair-Du-Rhône, Plc Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.829775, + 45.144034 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSAUDIUNPPA", + "ref": "SAUDIUNPPA", + "name": "St Martin D Uriage, Parking Avenue Des Thermes - Rd 523", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.815538, + 45.341601 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWJJPG4Z7MN", + "ref": "WJJPG4Z7MN", + "name": "Saint-Pierre-De-Chartreuse, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87483, + 45.11147 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZUQ6OZWIHO", + "ref": "ZUQ6OZWIHO", + "name": "Chamrousse, Place des Trolles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.752153, + 45.433729 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPGI7OZI3HX", + "ref": "PGI7OZI3HX", + "name": "Entre Deux Guiers, Avenue du 8 mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.564157, + 45.328211 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOYPH3MTL0S", + "ref": "OYPH3MTL0S", + "name": "Moirans, Rue Mozart", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.829775, + 45.144034 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSAUDIUNPPA", + "ref": "SAUDIUNPPA", + "name": "St Martin D Uriage, Parking Avenue Des Thermes - Rd 523", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.856414, + 45.029217 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYWRAKBDU72", + "ref": "YWRAKBDU72", + "name": "La Morte, Place De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.803005, + 45.226977 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSNSM4WFCED", + "ref": "SNSM4WFCED", + "name": "Montbonnot-Saint-Martin, Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.737686, + 45.390089 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJYPPQA0TJQ", + "ref": "JYPPQA0TJQ", + "name": "Saint-Laurent-Du-Pont, PLACE DU 10E REGROUPEMENT PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.564157, + 45.328211 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOYPH3MTL0S", + "ref": "OYPH3MTL0S", + "name": "Moirans, Rue Mozart", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8611931, + 45.21769 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRDH1HYPVXW", + "ref": "RDH1HYPVXW", + "name": "Le Versoud, Rue des Deymes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8611931, + 45.21769 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRDH1HYPVXW", + "ref": "RDH1HYPVXW", + "name": "Le Versoud, Rue des Deymes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.21895, + 45.621 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX12ABRPVCW", + "ref": "X12ABRPVCW", + "name": "L'Isle-D'Abeau, Avenue Henri Bergson", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.21895, + 45.621 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX12ABRPVCW", + "ref": "X12ABRPVCW", + "name": "L'Isle-D'Abeau, Avenue Henri Bergson", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.01665, + 45.6128 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOE2C6C8Q1R", + "ref": "OE2C6C8Q1R", + "name": "Valencin, Route du 16 Mai 1944", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.01665, + 45.6128 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOE2C6C8Q1R", + "ref": "OE2C6C8Q1R", + "name": "Valencin, Route du 16 Mai 1944", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.85806, + 45.64881 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYXWYDYAZRR", + "ref": "YXWYDYAZRR", + "name": "Le Bourget-Du-Lac, Rue des Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.868361, + 45.644002 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPH6VWTTSVI", + "ref": "PH6VWTTSVI", + "name": "Le Bourget-Du-Lac, Horloge, rue du Lac Majeur ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.117952, + 45.458288 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKQBUJVHM6Y", + "ref": "KQBUJVHM6Y", + "name": "La Rochette, Rue du 8 mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92185, + 45.71688 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJ9OYDDWH7H", + "ref": "J9OYDDWH7H", + "name": "Grésy sur Aix, 6 Rue Boucher de la Rupelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912892, + 45.645266 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQKKIKZK3ZD", + "ref": "QKKIKZK3ZD", + "name": "Mery, Agrion, Rue Maurice Herzog Savoie Hexapole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.051382, + 45.501175 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWXHZWTA5ER", + "ref": "WXHZWTA5ER", + "name": "Montmelian, avenue de Savoie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.870602, + 45.646947 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOYKRAJWUI5", + "ref": "OYKRAJWUI5", + "name": "Le Bourget-Du-Lac, House Boat, allée Lac de Garde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.134802, + 45.68745 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFW8JB0GBVB", + "ref": "FW8JB0GBVB", + "name": "Le Chatelard, En face ex siège social CC BAUGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.000266, + 45.499247 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPL8FMQOSKS4", + "ref": "L8FMQOSKS4", + "name": "Les Marches, Passage du 19 mars 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.960062, + 45.530767 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIOJV93PGDX", + "ref": "IOJV93PGDX", + "name": "Saint-Baldoph, Terraillet 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.156654, + 45.557526 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHAERKHAILF", + "ref": "HAERKHAILF", + "name": "Saint-Pierre-D'Albigny, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.391256, + 45.674221 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW5KMVUFDR3", + "ref": "W5KMVUFDR3", + "name": "Albertville, Commissariat, Rue Jacques Porraz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.83655, + 45.846898 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYHCKATCVZD", + "ref": "YHCKATCVZD", + "name": "Ruffieux, Ruffieux, ZA de Saumont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.955532, + 45.578509 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFLPBRFXHAM", + "ref": "FLPBRFXHAM", + "name": "Saint-Alban-Leysse, Place du commerce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.974522, + 45.576509 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQMCDRLTNYE", + "ref": "QMCDRLTNYE", + "name": "Saint-Alban-Leysse, Rte de Barby, Square de Leysse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.156654, + 45.557526 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHAERKHAILF", + "ref": "HAERKHAILF", + "name": "Saint-Pierre-D'Albigny, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.391256, + 45.674221 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW5KMVUFDR3", + "ref": "W5KMVUFDR3", + "name": "Albertville, Commissariat, Rue Jacques Porraz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.974522, + 45.576509 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQMCDRLTNYE", + "ref": "QMCDRLTNYE", + "name": "Saint-Alban-Leysse, Rte de Barby, Square de Leysse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.960062, + 45.530767 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIOJV93PGDX", + "ref": "IOJV93PGDX", + "name": "Saint-Baldoph, Terraillet 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.106362, + 45.714598 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO2ILRGMRRA", + "ref": "O2ILRGMRRA", + "name": "Lescheraines, Place des Cantalous", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.901328, + 45.583496 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFA3KQKMH2K", + "ref": "FA3KQKMH2K", + "name": "Chambery, Le Phare Bissy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.971748, + 45.545721 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPC4QMLCCH2R", + "ref": "C4QMLCCH2R", + "name": "Challes-Les-Eaux, Massettes 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.973817, + 45.568758 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWOQTPMJD7R", + "ref": "WOQTPMJD7R", + "name": "Barby, Epinettes Avenue Paul Chevalier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.983438, + 45.54879 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCY2ZODO2QU", + "ref": "CY2ZODO2QU", + "name": "Challes-Les-Eaux, Rue du Dr Rochefrette Pkg. Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.117952, + 45.458288 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKQBUJVHM6Y", + "ref": "KQBUJVHM6Y", + "name": "La Rochette, Rue du 8 mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.873377, + 45.640928 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOH9QA6KXPK", + "ref": "OH9QA6KXPK", + "name": "Le Bourget-Du-Lac, Sud 1, rue mer Caspienne ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.875138, + 45.639726 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFQCR2BEGJF", + "ref": "FQCR2BEGJF", + "name": "Le Bourget-Du-Lac, Hélios, avenue du Lac Léman", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.868361, + 45.644002 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPH6VWTTSVI", + "ref": "PH6VWTTSVI", + "name": "Le Bourget-Du-Lac, Horloge, rue du Lac Majeur ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94363, + 45.561391 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCARIVD0JDN", + "ref": "CARIVD0JDN", + "name": "Barberaz, Centre Bourg Route d'Apremont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.977494, + 45.572016 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOM98B5NCGU", + "ref": "OM98B5NCGU", + "name": "Barby, Parking avenue des Salins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9711, + 45.5471 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPG15FUATVOZ", + "ref": "G15FUATVOZ", + "name": "Challes-Les-Eaux, Massettes 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.390545, + 45.676146 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBEXG8FSQXS", + "ref": "BEXG8FSQXS", + "name": "Albertville, Parking Place du Théatre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.388156, + 45.677082 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZHGBKZ4XPO", + "ref": "ZHGBKZ4XPO", + "name": "Albertville, Pkg des sœurs, Rue Claude Genoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.39107, + 45.67794 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNKIJMI48IG", + "ref": "NKIJMI48IG", + "name": "Albertville, Parking Place de L'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.924012, + 45.588643 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMRFEJQ1ZVF", + "ref": "MRFEJQ1ZVF", + "name": "Chambery, Cote Rousse, rue du genevois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.936632, + 45.565976 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPY4YC7FBRZQ", + "ref": "Y4YC7FBRZQ", + "name": "Chambery, Piscine Chambery 29 Rue Henri Oreiller", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.904766, + 45.578371 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZSP1FHHFPM", + "ref": "ZSP1FHHFPM", + "name": "Chambery, Avenue des Follaz, Fontanettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.390545, + 45.676146 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBEXG8FSQXS", + "ref": "BEXG8FSQXS", + "name": "Albertville, Parking Place du Théatre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94363, + 45.561391 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCARIVD0JDN", + "ref": "CARIVD0JDN", + "name": "Barberaz, Centre Bourg Route d'Apremont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.875138, + 45.639726 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFQCR2BEGJF", + "ref": "FQCR2BEGJF", + "name": "Le Bourget-Du-Lac, Hélios, avenue du Lac Léman", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.388156, + 45.677082 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZHGBKZ4XPO", + "ref": "ZHGBKZ4XPO", + "name": "Albertville, Pkg des sœurs, Rue Claude Genoux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.032985, + 45.480671 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPI8CSUBSTQY", + "ref": "I8CSUBSTQY", + "name": "Francin, Alpespace, Pyramide", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.922962, + 45.718341 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQH3MXFSZJA", + "ref": "QH3MXFSZJA", + "name": "Gresy-Sur-Aix, Grésy sur Aix, Rue du commerce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.925893, + 45.564292 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGIB8D1B3ML", + "ref": "GIB8D1B3ML", + "name": "Chambery, Rue de la République Manège", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9711, + 45.5471 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPG15FUATVOZ", + "ref": "G15FUATVOZ", + "name": "Challes-Les-Eaux, Massettes 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.983438, + 45.54879 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCY2ZODO2QU", + "ref": "CY2ZODO2QU", + "name": "Challes-Les-Eaux, Rue du Dr Rochefrette Pkg. Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.973817, + 45.568758 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWOQTPMJD7R", + "ref": "WOQTPMJD7R", + "name": "Barby, Epinettes Avenue Paul Chevalier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.977494, + 45.572016 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOM98B5NCGU", + "ref": "OM98B5NCGU", + "name": "Barby, Parking avenue des Salins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.971748, + 45.545721 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPC4QMLCCH2R", + "ref": "C4QMLCCH2R", + "name": "Challes-Les-Eaux, Massettes 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.904766, + 45.578371 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZSP1FHHFPM", + "ref": "ZSP1FHHFPM", + "name": "Chambery, Avenue des Follaz, Fontanettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.936632, + 45.565976 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPY4YC7FBRZQ", + "ref": "Y4YC7FBRZQ", + "name": "Chambery, Piscine Chambery 29 Rue Henri Oreiller", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.901328, + 45.583496 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFA3KQKMH2K", + "ref": "FA3KQKMH2K", + "name": "Chambery, Le Phare Bissy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.924012, + 45.588643 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMRFEJQ1ZVF", + "ref": "MRFEJQ1ZVF", + "name": "Chambery, Cote Rousse, rue du genevois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.911907, + 45.562052 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJWSJQ6RNHM", + "ref": "JWSJQ6RNHM", + "name": "Chambery, 658 Avenue de Lyon Hôpital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.873377, + 45.640928 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOH9QA6KXPK", + "ref": "OH9QA6KXPK", + "name": "Le Bourget-Du-Lac, Sud 1, rue mer Caspienne ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.873462, + 45.640808 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFBYQDSUWIU", + "ref": "FBYQDSUWIU", + "name": "Le Bourget-Du-Lac, Sud 2, Rue mer Caspienne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.965906, + 45.57173 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDZTEO5VMC9", + "ref": "DZTEO5VMC9", + "name": "La Ravoire, Place des fées", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.875031, + 45.596798 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPFDSQONRUW", + "ref": "PFDSQONRUW", + "name": "La Motte-Servolex, Rue des Allobroges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.946799, + 45.786238 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHV3YYVD9CQ", + "ref": "HV3YYVD9CQ", + "name": "Entrelacs, Entrelacs, Pce JM Montillet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.000266, + 45.499247 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPL8FMQOSKS4", + "ref": "L8FMQOSKS4", + "name": "Les Marches, Passage du 19 mars 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.39107, + 45.67794 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNKIJMI48IG", + "ref": "NKIJMI48IG", + "name": "Albertville, Parking Place de L'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.955532, + 45.578509 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFLPBRFXHAM", + "ref": "FLPBRFXHAM", + "name": "Saint-Alban-Leysse, Place du commerce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.887285, + 45.592874 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPF8KFZXGKDI", + "ref": "F8KFZXGKDI", + "name": "La Motte Servolex, Borne parking SDES, 1 rue de la petite eau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.134802, + 45.68745 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFW8JB0GBVB", + "ref": "FW8JB0GBVB", + "name": "Le Chatelard, En face ex siège social CC BAUGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.92185, + 45.71688 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJ9OYDDWH7H", + "ref": "J9OYDDWH7H", + "name": "Grésy sur Aix, 6 Rue Boucher de la Rupelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.887285, + 45.592874 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPF8KFZXGKDI", + "ref": "F8KFZXGKDI", + "name": "La Motte Servolex, Borne parking SDES, 1 rue de la petite eau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.051382, + 45.501175 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWXHZWTA5ER", + "ref": "WXHZWTA5ER", + "name": "Montmelian, avenue de Savoie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.916712, + 45.588654 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMSU1UWQGZE", + "ref": "MSU1UWQGZE", + "name": "Chambery, Rue d'Anjou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.83655, + 45.846898 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYHCKATCVZD", + "ref": "YHCKATCVZD", + "name": "Ruffieux, Ruffieux, ZA de Saumont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.106362, + 45.714598 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO2ILRGMRRA", + "ref": "O2ILRGMRRA", + "name": "Lescheraines, Place des Cantalous", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912892, + 45.645266 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQKKIKZK3ZD", + "ref": "QKKIKZK3ZD", + "name": "Mery, Agrion, Rue Maurice Herzog Savoie Hexapole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.89316, + 45.5928 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCDVYRNUDQ1", + "ref": "CDVYRNUDQ1", + "name": "Chambery, Ecoris Rue de Chantabord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.897872, + 45.560258 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPVZ0P4QBGB", + "ref": "PVZ0P4QBGB", + "name": "Cognin, Rue de la Poterie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.911907, + 45.562052 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJWSJQ6RNHM", + "ref": "JWSJQ6RNHM", + "name": "Chambery, 658 Avenue de Lyon Hôpital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.71889, + 44.486352 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHON0JAOCCV", + "ref": "HON0JAOCCV", + "name": "Châteauneuf-Du-Rhône, Parking De La Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.97910139, + 44.4428751 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZZEIEVWEMC", + "ref": "ZZEIEVWEMC", + "name": "Taulignan, Place du 11 Novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.690794, + 46.00793 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX5JIHAHDBL", + "ref": "X5JIHAHDBL", + "name": "Arâches-La-Frasse, Flaine 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.881278, + 45.049778 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLCSCVQIEWU", + "ref": "LCSCVQIEWU", + "name": "Aiguilhe, Quincieu – Parking Salle Multisport", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883293, + 45.031025 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCOEZJEA3UI", + "ref": "COEZJEA3UI", + "name": "Le Puy En Velay, Val Vert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883293, + 45.031025 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCOEZJEA3UI", + "ref": "COEZJEA3UI", + "name": "Le Puy En Velay, Val Vert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06222, + 45.03316 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNQ6WNF6GJD", + "ref": "NQ6WNF6GJD", + "name": "Saint-Julien-Chapteuil, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06222, + 45.03316 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNQ6WNF6GJD", + "ref": "NQ6WNF6GJD", + "name": "Saint-Julien-Chapteuil, Place du Marché", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549119, + 44.959245 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYFU3HJXG3L", + "ref": "YFU3HJXG3L", + "name": "Saugues, Route du Puy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549119, + 44.959245 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYFU3HJXG3L", + "ref": "YFU3HJXG3L", + "name": "Saugues, Route du Puy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.38137544, + 45.29758934 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBBB8GR3JG1", + "ref": "BBB8GR3JG1", + "name": "Brioude, 38 Avenue Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.902205, + 45.060964 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGRUGMK6YCJ", + "ref": "GRUGMK6YCJ", + "name": "Chadrac, Avenue Pierre et Marie Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09876, + 45.257872 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHQJOCGGRNM", + "ref": "HQJOCGGRNM", + "name": "Beauzac, Place du Pré Clos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.38137544, + 45.29758934 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBBB8GR3JG1", + "ref": "BBB8GR3JG1", + "name": "Brioude, 38 Avenue Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.902205, + 45.060964 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGRUGMK6YCJ", + "ref": "GRUGMK6YCJ", + "name": "Chadrac, Avenue Pierre et Marie Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.48785, + 44.86069 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFA9HZSEBKE", + "ref": "FA9HZSEBKE", + "name": "Chanaleilles, le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.76284, + 45.07478 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHMCSUP77H7", + "ref": "HMCSUP77H7", + "name": "Chaspuzac, Aérodrome", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34412, + 45.21375 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPED9WZC9LMX", + "ref": "ED9WZC9LMX", + "name": "Dunieres, Rue de St Régis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.17263, + 45.31767 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAJT1WFBIB4", + "ref": "AJT1WFBIB4", + "name": "Blesle, Place Saint-Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.881278, + 45.049778 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLCSCVQIEWU", + "ref": "LCSCVQIEWU", + "name": "Aiguilhe, Quincieu – Parking Salle Multisport", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-01-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.91745792, + 44.99766512 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEAWOEQP1NJ", + "ref": "EAWOEQP1NJ", + "name": "Coubon, Place de la Paix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.94333, + 44.99135 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUVZMY6BLLA", + "ref": "UVZMY6BLLA", + "name": "Arsac-En-Velay, Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12381, + 45.14355 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRBTJQRBXH5", + "ref": "RBTJQRBXH5", + "name": "Yssingeaux, Parking Place Charles de Gaulles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.90733, + 45.12107 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOYTKDNTXGM", + "ref": "OYTKDNTXGM", + "name": "Lavoûte-Sur-Loire, Place du Pont Neuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.71035, + 45.19631 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPC68QZRW5IK", + "ref": "C68QZRW5IK", + "name": "Allegre, Rue de Chateauneuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8506602, + 45.33388671 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPL4TPSNGBZU", + "ref": "L4TPSNGBZU", + "name": "Craponne-Sur-Arzon, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.69669, + 45.31652 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEDRVAH0JV8", + "ref": "EDRVAH0JV8", + "name": "La-Chaise-Dieu, Parking Gare SNCF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.84579, + 45.33199 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPPSSYUNFPG", + "ref": "PPSSYUNFPG", + "name": "Craponne-Sur-Arzon, Place de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.90828, + 45.18615 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPVQEXFHYMO", + "ref": "PVQEXFHYMO", + "name": "Vorey-Sur-Arzon, Place des Moulettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.23258, + 45.24424 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCSC0TUMVZJ", + "ref": "CSC0TUMVZJ", + "name": "Sainte-Sigolène, Place des Anciens d'AFN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.03682, + 45.20158 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWVFSVWVVI6", + "ref": "WVFSVWVVI6", + "name": "Retournac, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.54074, + 45.15616 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPL4NKVCKURV", + "ref": "L4NKVCKURV", + "name": "Saint-Georges-D'Aurac, place Louis de Cazenave", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29221, + 45.11508 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUINJVNH6Q6", + "ref": "UINJVNH6Q6", + "name": "Tence, Parking du Fieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3136, + 45.34064 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFRY0Q66XR9", + "ref": "FRY0Q66XR9", + "name": "Saint-Just-Malmont, Parking des APG 39-45", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96790901, + 45.0379469 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRH3HDEMXJD", + "ref": "RH3HDEMXJD", + "name": "Saint Germain Laprade,Place de l'europe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.91745792, + 44.99766512 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEAWOEQP1NJ", + "ref": "EAWOEQP1NJ", + "name": "Coubon, Place de la Paix", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12381, + 45.14355 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRBTJQRBXH5", + "ref": "RBTJQRBXH5", + "name": "Yssingeaux, Parking Place Charles de Gaulles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09876, + 45.257872 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHQJOCGGRNM", + "ref": "HQJOCGGRNM", + "name": "Beauzac, Place du Pré Clos", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.92956, + 45.0469 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEMWSK7UUY4", + "ref": "EMWSK7UUY4", + "name": "Brives-Charensac, Place blanche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.30415, + 45.06124 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMYQBUNOQVJ", + "ref": "MYQBUNOQVJ", + "name": "Le-Chambon-Sur-Lignon, Rue de la Poste", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.15323, + 44.90396 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGJ3MKVO5IB", + "ref": "GJ3MKVO5IB", + "name": "Les-Estables, Place Rechausseyre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29389, + 45.16762 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKKT7GPURKL", + "ref": "KKT7GPURKL", + "name": "Raucoules, Parking La Gare, lieu dit Oumey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.515296, + 45.206547 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPA6GGB1AQMP", + "ref": "A6GGB1AQMP", + "name": "Paulhaguet, Place Lafayette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.27371, + 45.30199 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQNZBOX38KS", + "ref": "QNZBOX38KS", + "name": "Saint-Didier-En-Velay, Avenue Veron de la Conde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.17263, + 45.31767 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAJT1WFBIB4", + "ref": "AJT1WFBIB4", + "name": "Blesle, Place Saint-Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.92956, + 45.0469 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEMWSK7UUY4", + "ref": "EMWSK7UUY4", + "name": "Brives-Charensac, Place blanche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.30415, + 45.06124 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMYQBUNOQVJ", + "ref": "MYQBUNOQVJ", + "name": "Le-Chambon-Sur-Lignon, Rue de la Poste", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.81171, + 45.13562 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGXLFC4JZQM", + "ref": "GXLFC4JZQM", + "name": "Saint-Paulien, Rue de l’Anyade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.20076, + 45.37026 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYEA0UXRKNY", + "ref": "YEA0UXRKNY", + "name": "Aurec-Sur-Loire, Place des déportés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.11404, + 45.30546 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWRN07GJM7H", + "ref": "WRN07GJM7H", + "name": "Bas -En-Basset, Rue du Marais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.48785, + 44.86069 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFA9HZSEBKE", + "ref": "FA9HZSEBKE", + "name": "Chanaleilles, le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05984, + 45.09719 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPN0APSWIASX", + "ref": "N0APSWIASX", + "name": "Le Pertuis, Parking de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.15323, + 44.90396 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGJ3MKVO5IB", + "ref": "GJ3MKVO5IB", + "name": "Les-Estables, Place Rechausseyre", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17089, + 45.2951 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJDWQT9CAE8", + "ref": "JDWQT9CAE8", + "name": "Monistrol-Sur-Loire, Place Marechal Jourda de Vaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.76284, + 45.07478 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHMCSUP77H7", + "ref": "HMCSUP77H7", + "name": "Chaspuzac, Aérodrome", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34412, + 45.21375 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPED9WZC9LMX", + "ref": "ED9WZC9LMX", + "name": "Dunieres, Rue de St Régis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.85666, + 45.06895 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMTR64UDKFK", + "ref": "MTR64UDKFK", + "name": "Polignac, Parking maison communal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.515296, + 45.206547 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPA6GGB1AQMP", + "ref": "A6GGB1AQMP", + "name": "Paulhaguet, Place Lafayette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.387615, + 45.291636 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGB6G3PUH3V", + "ref": "GB6G3PUH3V", + "name": "Brioude, Place du Postel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.20076, + 45.37026 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYEA0UXRKNY", + "ref": "YEA0UXRKNY", + "name": "Aurec-Sur-Loire, Place des déportés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8785064, + 45.0295307 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBV4HG5JPFC", + "ref": "BV4HG5JPFC", + "name": "Vals-près-le-Puy, avenue Charles Massot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.03682, + 45.20158 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWVFSVWVVI6", + "ref": "WVFSVWVVI6", + "name": "Retournac, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.43568, + 45.1428 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFHJTIMLKOG", + "ref": "FHJTIMLKOG", + "name": "Saint-Bonnet-Le-Froid, Places aux champignons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17089, + 45.2951 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJDWQT9CAE8", + "ref": "JDWQT9CAE8", + "name": "Monistrol-Sur-Loire, Place Marechal Jourda de Vaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05984, + 45.09719 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPN0APSWIASX", + "ref": "N0APSWIASX", + "name": "Le Pertuis, Parking de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.85666, + 45.06895 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMTR64UDKFK", + "ref": "MTR64UDKFK", + "name": "Polignac, Parking maison communal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.11404, + 45.30546 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWRN07GJM7H", + "ref": "WRN07GJM7H", + "name": "Bas -En-Basset, Rue du Marais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.631, + 45.093055 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQNMZFMYOCR", + "ref": "QNMZFMYOCR", + "name": "Siaugues-Sainte-Marie, Place du Général Lafayette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.81171, + 45.13562 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGXLFC4JZQM", + "ref": "GXLFC4JZQM", + "name": "Saint-Paulien, Rue de l’Anyade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.631, + 45.093055 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQNMZFMYOCR", + "ref": "QNMZFMYOCR", + "name": "Siaugues-Sainte-Marie, Place du Général Lafayette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883702, + 44.7698789 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZDR9Q4PKYJ", + "ref": "ZDR9Q4PKYJ", + "name": "Pradelles, Place du Foirail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883702, + 44.7698789 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZDR9Q4PKYJ", + "ref": "ZDR9Q4PKYJ", + "name": "Pradelles, Place du Foirail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8785064, + 45.0295307 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBV4HG5JPFC", + "ref": "BV4HG5JPFC", + "name": "Vals-près-le-Puy, avenue Charles Massot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.387615, + 45.291636 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGB6G3PUH3V", + "ref": "GB6G3PUH3V", + "name": "Brioude, Place du Postel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96790901, + 45.0379469 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRH3HDEMXJD", + "ref": "RH3HDEMXJD", + "name": "Saint Germain Laprade,Place de l'europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29389, + 45.16762 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKKT7GPURKL", + "ref": "KKT7GPURKL", + "name": "Raucoules, Parking La Gare, lieu dit Oumey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.27371, + 45.30199 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQNZBOX38KS", + "ref": "QNZBOX38KS", + "name": "Saint-Didier-En-Velay, Avenue Veron de la Conde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.89164, + 45.04276 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGFHM4A7HUU", + "ref": "GFHM4A7HUU", + "name": "Le-Puy-En-Velay, Avenue Charles Dupuy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.24175, + 44.479972 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYOTTUNSLP2", + "ref": "YOTTUNSLP2", + "name": "Joyeuse, Le Pré du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.00661, + 44.7284 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTGGQTZ", + "ref": "TGGQTZ", + "name": "Lanarce, La Bruge", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.89792, + 44.7303 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQZWCVQ", + "ref": "QZWCVQ", + "name": "Lesperon, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.632694, + 44.7145 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYMML6GJU6C", + "ref": "YMML6GJU6C", + "name": "Alissas, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.267563, + 44.681074 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPG9WTPPZMMX", + "ref": "G9WTPPZMMX", + "name": "Meyras, Place du Champ de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.215867, + 44.463088 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZB114AMUO7", + "ref": "ZB114AMUO7", + "name": "Lablachère, La Jaujon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2569, + 44.6352 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWRWQNR", + "ref": "WRWQNR", + "name": "Jaujac, Fabrias", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2569, + 44.6352 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWRWQNR", + "ref": "WRWQNR", + "name": "Jaujac, Fabrias", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35146, + 44.808 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUJHUNV", + "ref": "UJHUNV", + "name": "Mezilhac, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35146, + 44.808 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUJHUNV", + "ref": "UJHUNV", + "name": "Mezilhac, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58457, + 44.8214 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAVVJGL", + "ref": "AVVJGL", + "name": "Saint-Sauveur-De-Montagut, Saint Sauveur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.00661, + 44.7284 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTGGQTZ", + "ref": "TGGQTZ", + "name": "Lanarce, La Bruge", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.66594299, + 45.166995 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNEKQQUXFMO", + "ref": "NEKQQUXFMO", + "name": "Saint-Romain-D'Ay, Avenue de Praperrier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.61752, + 45.151355 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBD2JDOGVLL", + "ref": "BD2JDOGVLL", + "name": "Satillieu, Place du Collège", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.835527, + 45.0643 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO3TC1Q6PSG", + "ref": "O3TC1Q6PSG", + "name": "Tournon-Sur-Rhône, Place Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.23633, + 44.393373 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUELO0XXIY8", + "ref": "UELO0XXIY8", + "name": "Chandolas, Le Verdal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.267563, + 44.681074 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPG9WTPPZMMX", + "ref": "G9WTPPZMMX", + "name": "Meyras, Place du Champ de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.662959, + 44.706977 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWLQ1UX3WUN", + "ref": "WLQ1UX3WUN", + "name": "Chomerac, Le Triolet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.89792, + 44.7303 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQZWCVQ", + "ref": "QZWCVQ", + "name": "Lesperon, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.254712, + 44.298979 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPR9GFHI1ZR", + "ref": "PR9GFHI1ZR", + "name": "Saint-Sauveur-De-Cruzières, Fangaro", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765732, + 44.941794 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPECO0VKGSLD", + "ref": "ECO0VKGSLD", + "name": "Champis, Fringuet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64776, + 44.8977 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEBHUSN", + "ref": "EBHUSN", + "name": "Vernoux-En-Vivarais, Avenue Vincent D Indy -", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.71452, + 45.2187 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSTY1D71XSX", + "ref": "STY1D71XSX", + "name": "Vernosc-Lès-Annonay, Rue du Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.155203, + 44.366488 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBDBS1JFEDO", + "ref": "BDBS1JFEDO", + "name": "Banne, Lochere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.870804, + 44.932387 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUGOFN7UN37", + "ref": "UGOFN7UN37", + "name": "Guilherand-Granges, Avenue Georges Clemenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.201782, + 44.373635 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBBW5E0H7F7", + "ref": "BBW5E0H7F7", + "name": "Berrias-Et-Casteljau, Place Andrée Rouveyrol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2218, + 44.6758 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCTFQBS", + "ref": "CTFQBS", + "name": "Thueyts, Place du Champ de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.695439, + 45.066154 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRL5NBTAUSM", + "ref": "RL5NBTAUSM", + "name": "Colombier-Le-Vieux, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.685681, + 44.552929 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMGABJYHNMV", + "ref": "MGABJYHNMV", + "name": "Le Teil, Place René Montérémal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.682286, + 44.550008 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJNCQWIKSDA", + "ref": "JNCQWIKSDA", + "name": "Le Teil, Place du Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2218, + 44.6758 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCTFQBS", + "ref": "CTFQBS", + "name": "Thueyts, Place du Champ de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.625376, + 45.085456 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAT2IKRY1YG", + "ref": "AT2IKRY1YG", + "name": "Saint-Felicien, Place du Martouret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64776, + 44.8977 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEBHUSN", + "ref": "EBHUSN", + "name": "Vernoux-En-Vivarais, Avenue Vincent D Indy -", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.704728, + 44.588025 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOHIKRIFSOE", + "ref": "OHIKRIFSOE", + "name": "Rochemaure, Place des Brassieres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.255207, + 44.482199 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIGOBQMLJPP", + "ref": "IGOBQMLJPP", + "name": "Rosières, Place du Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.418393, + 44.539131 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSY0KHPYENM", + "ref": "SY0KHPYENM", + "name": "Vogüe, Place du Heyd", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.94333, + 44.99135 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUVZMY6BLLA", + "ref": "UVZMY6BLLA", + "name": "Arsac-En-Velay, Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.397295, + 44.626255 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGHRMESD8H2", + "ref": "GHRMESD8H2", + "name": "Ucel, Rte de la manufacture royale Esp. Deydier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.382688, + 44.599646 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZHXKZIMNZM", + "ref": "ZHXKZIMNZM", + "name": "Saint-Etienne-De-Fontbellon, Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.445178, + 44.652523 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRKLKJ18RNS", + "ref": "RKLKJ18RNS", + "name": "Vesseaux, Chemin de l'Ancien Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.418393, + 44.539131 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSY0KHPYENM", + "ref": "SY0KHPYENM", + "name": "Vogüe, Place du Heyd", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6887, + 44.484416 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUIM5AFHJMR", + "ref": "UIM5AFHJMR", + "name": "Viviers, Parking les Lauriers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.42219, + 44.9065 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSAURCW", + "ref": "SAURCW", + "name": "Le Cheylard, Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.42219, + 44.9065 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSAURCW", + "ref": "SAURCW", + "name": "Le Cheylard, Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.97075, + 44.8031 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKAKUUL", + "ref": "KAKUUL", + "name": "Coucouron, Place du 14 Juillet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10358, + 44.7779 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYPCKYR", + "ref": "YPCKYR", + "name": "Cros-De-Georand, La Palisse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10358, + 44.7779 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYPCKYR", + "ref": "YPCKYR", + "name": "Cros-De-Georand, La Palisse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.97075, + 44.8031 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKAKUUL", + "ref": "KAKUUL", + "name": "Coucouron, Place du 14 Juillet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.579153, + 44.726121 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZH6GCTOHJB", + "ref": "ZH6GCTOHJB", + "name": "Privas, 283 Chemin d'Argevillières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.579153, + 44.726121 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZH6GCTOHJB", + "ref": "ZH6GCTOHJB", + "name": "Privas, 283 Chemin d'Argevillières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31931, + 45.40492 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQQ4AFDK4RT", + "ref": "QQ4AFDK4RT", + "name": "Sainte-Florine, Parking Rue Anatole France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.87728, + 45.04768 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPELNZBQTZOX", + "ref": "ELNZBQTZOX", + "name": "Le-Puy-En-Velay, Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.43568, + 45.1428 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFHJTIMLKOG", + "ref": "FHJTIMLKOG", + "name": "Saint-Bonnet-Le-Froid, Places aux champignons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.341696, + 44.597907 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHM8S9VMJ8N", + "ref": "HM8S9VMJ8N", + "name": "Ailhon, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07317, + 44.5323 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMSHPUS", + "ref": "MSHPUS", + "name": "Sablières, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22643, + 44.7905 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAWVBDU", + "ref": "AWVBDU", + "name": "Sagnes-Et-Goudoulet, Les Sagnes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.662959, + 44.706977 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWLQ1UX3WUN", + "ref": "WLQ1UX3WUN", + "name": "Chomerac, Le Triolet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06294, + 44.8161 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCXQHLM", + "ref": "CXQHLM", + "name": "Le Lac-D'Issarlès, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06294, + 44.8161 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCXQHLM", + "ref": "CXQHLM", + "name": "Le Lac-D'Issarlès, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.341696, + 44.597907 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHM8S9VMJ8N", + "ref": "HM8S9VMJ8N", + "name": "Ailhon, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.382688, + 44.599646 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZHXKZIMNZM", + "ref": "ZHXKZIMNZM", + "name": "Saint-Etienne-De-Fontbellon, Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.392542, + 44.62086 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFUHOEZSQEV", + "ref": "FUHOEZSQEV", + "name": "Aubenas, Place de l Airette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.632694, + 44.7145 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYMML6GJU6C", + "ref": "YMML6GJU6C", + "name": "Alissas, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.392542, + 44.62086 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFUHOEZSQEV", + "ref": "FUHOEZSQEV", + "name": "Aubenas, Place de l Airette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.386888, + 44.620794 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMRKKQCRF0B", + "ref": "MRKKQCRF0B", + "name": "Aubenas, Place Olivier de Serres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.397295, + 44.626255 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGHRMESD8H2", + "ref": "GHRMESD8H2", + "name": "Ucel, Rte de la manufacture royale Esp. Deydier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58457, + 44.8214 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAVVJGL", + "ref": "AVVJGL", + "name": "Saint-Sauveur-De-Montagut, Saint Sauveur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.629389, + 44.503 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBWIXDHWDKU", + "ref": "BWIXDHWDKU", + "name": "Saint-Thome, Place des Crottes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.625431, + 44.438699 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBPQKMWBSOI", + "ref": "BPQKMWBSOI", + "name": "Saint-Montan, Bauvache", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07317, + 44.5323 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMSHPUS", + "ref": "MSHPUS", + "name": "Sablières, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.387469, + 44.619624 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPL2PVKCY1TX", + "ref": "L2PVKCY1TX", + "name": "Aubenas, Place de la Pécourte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.89164, + 45.04276 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGFHM4A7HUU", + "ref": "GFHM4A7HUU", + "name": "Le-Puy-En-Velay, Avenue Charles Dupuy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.71035, + 45.19631 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPC68QZRW5IK", + "ref": "C68QZRW5IK", + "name": "Allegre, Rue de Chateauneuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82037, + 44.51525 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZIMRJWFPJL", + "ref": "ZIMRJWFPJL", + "name": "Espeluche, Rue Raymond Grosset", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.133801, + 44.585658 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXB7KJGMX1B", + "ref": "XB7KJGMX1B", + "name": "Bourdeaux, Place du Quai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845401, + 45.067357 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPS5JXS0NDKH", + "ref": "S5JXS0NDKH", + "name": "Tain-L'Hermitage, Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.921365, + 45.018041 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQIYDUPSLD7", + "ref": "QIYDUPSLD7", + "name": "Beaumont-Monteux, Place De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.844279, + 45.013752 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUHWF1QXLIT", + "ref": "UHWF1QXLIT", + "name": "La Roche-De-Glun, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53849131, + 44.20221446 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKUZMMX4TIX", + "ref": "KUZMMX4TIX", + "name": "Sederon, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.426297, + 44.378797 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP4CTJBHF9Q", + "ref": "P4CTJBHF9Q", + "name": "Verclause, Parking du Supermarche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.983865, + 45.050388 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGXXHNQ5HXX", + "ref": "GXXHNQ5HXX", + "name": "Granges-Les-Beaumont, Rue du Tram", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.441792, + 44.174437 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPF36WUWT4H7", + "ref": "F36WUWT4H7", + "name": "Montbrun-Les-Bains, La Condamine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83665, + 45.0711 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGJHDGEW1RW", + "ref": "GJHDGEW1RW", + "name": "Tain-L'Hermitage, Place Taurobole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.056833, + 44.71694 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKVCB2FBNZ3", + "ref": "KVCB2FBNZ3", + "name": "Aouste-Sur-Sye, D93 - Parking Pharmacie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83665, + 45.0711 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIL2LVDJOZC", + "ref": "IL2LVDJOZC", + "name": "Tain-L'Hermitage, Place Taurobole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83665, + 45.0711 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGJHDGEW1RW", + "ref": "GJHDGEW1RW", + "name": "Tain-L'Hermitage, Place Taurobole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.142652, + 45.194985 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXZXALUKTTA", + "ref": "XZXALUKTTA", + "name": "Saint-Bonnet-De-Valclerieux, Place du Lavoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.200007, + 44.697264 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAKHOI6DR2E", + "ref": "AKHOI6DR2E", + "name": "Saillans, Montée Soubeyranne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0291181, + 45.2558692 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSWKGDBKOKM", + "ref": "SWKGDBKOKM", + "name": "Hauterives, Parking du Palais Idéal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.049421, + 45.092633 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCLMU9GFZZA", + "ref": "CLMU9GFZZA", + "name": "Peyrins, Parking de l'école", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872427, + 45.001602 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPONVAVTDPJC", + "ref": "ONVAVTDPJC", + "name": "Pont-De-L'Isère, Place du 16 Août", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381235, + 44.486233 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGHGFD1VXML", + "ref": "GHGFD1VXML", + "name": "La Motte-Chalancon, Parking du Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.23258, + 45.24424 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCSC0TUMVZJ", + "ref": "CSC0TUMVZJ", + "name": "Sainte-Sigolène, Place des Anciens d'AFN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.091215, + 44.711668 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHYERDCGEKJ", + "ref": "HYERDCGEKJ", + "name": "Mirabel-Et-Blacons, Parking Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873418, + 45.170177 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIVVBJ8KBSM", + "ref": "IVVBJ8KBSM", + "name": "Saint-Barthelemy-De-Vals, Avenue Du Vercors", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.957015, + 44.972802 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHCVY8ZZGX8", + "ref": "HCVY8ZZGX8", + "name": "Saint-Marcel-Lès-Valence, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.450919, + 44.616002 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWDLJPIX1QR", + "ref": "WDLJPIX1QR", + "name": "Luc-En-Diois, Parking des Bains", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.27678869, + 44.5691193 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXPWLH9URLF", + "ref": "XPWLH9URLF", + "name": "Saint-Nazaire-Le-Desert, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960262, + 45.229445 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJKA3JEAMYP", + "ref": "JKA3JEAMYP", + "name": "Châteauneuf-De-Galaure, ZI des Aires", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.936933, + 45.015669 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDRERGYFIWV", + "ref": "DRERGYFIWV", + "name": "Châteauneuf-Sur-Isère, Quai de l'Isère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.709302, + 44.441867 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFT9RYLHLGP", + "ref": "FT9RYLHLGP", + "name": "Donzère, 20 Avenue P. de Coubertin - Pkg piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9767, + 44.9891 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRHLBTLPSI5", + "ref": "RHLBTLPSI5", + "name": "Alixan, Parking Rovaltain Face SDED", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.976144, + 44.989731 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXNTOYCDUUU", + "ref": "XNTOYCDUUU", + "name": "Alixan, Parking SDED Privé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902889, + 44.904445 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKOKMLXJ1C1", + "ref": "KOKMLXJ1C1", + "name": "Valence, Avenue des Langories", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.893549, + 44.946232 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPO6ZR7Q3T0", + "ref": "PO6ZR7Q3T0", + "name": "Bourg-Lès-Valence, Parking Valentin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.898153, + 44.948826 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRTRXS7Y6C9", + "ref": "RTRXS7Y6C9", + "name": "Bourg-Lès-Valence, Ecole Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356327, + 44.414245 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKU7GOCOQLM", + "ref": "KU7GOCOQLM", + "name": "Remuzat, 1 Place du Champs de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2581, + 44.41145 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHTXRRAG7VZ", + "ref": "HTXRRAG7VZ", + "name": "Sahune, Place du Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.934015, + 44.610178 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWJASLMUGE9", + "ref": "WJASLMUGE9", + "name": "Cleon-D'Andran, Route de Beaulieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024275, + 44.727057 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTNY0MUAT3P", + "ref": "TNY0MUAT3P", + "name": "Crest, Place des Marronniers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.056612, + 44.714312 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLR3Z5GMDXD", + "ref": "LR3Z5GMDXD", + "name": "Aouste-Sur-Sye, Parking de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.062747, + 44.646529 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOZC3CQY0LP", + "ref": "OZC3CQY0LP", + "name": "Saou, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.918842, + 44.762521 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP4ZIKZMGVU", + "ref": "P4ZIKZMGVU", + "name": "Allex, Place Saint Joseph", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.085042, + 45.080627 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBIE1NOC2IO", + "ref": "BIE1NOC2IO", + "name": "Génissieux, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.71889, + 44.486352 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHON0JAOCCV", + "ref": "HON0JAOCCV", + "name": "Châteauneuf-Du-Rhône, Parking De La Piscine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82037, + 44.51525 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZIMRJWFPJL", + "ref": "ZIMRJWFPJL", + "name": "Espeluche, Rue Raymond Grosset", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.799586, + 44.541316 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPK8UHYWJQHE", + "ref": "K8UHYWJQHE", + "name": "Montboucher-Sur-Jabron, Pkg Golf de la Valdaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872588, + 44.642778 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFDJN70AGER", + "ref": "FDJN70AGER", + "name": "Marsanne, Avenue René Chartron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.085042, + 45.080627 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBIE1NOC2IO", + "ref": "BIE1NOC2IO", + "name": "Génissieux, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.781791, + 44.649576 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR8XY0SZE9U", + "ref": "R8XY0SZE9U", + "name": "La Coucourde, Parking Freydier N7", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.69954, + 44.377282 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGE3HA5PUXP", + "ref": "GE3HA5PUXP", + "name": "Pierrelatte, Avenue Jean-Perrin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70697, + 44.666304 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIHDYYMOWSE", + "ref": "IHDYYMOWSE", + "name": "Lus-La-Croix-Haute, Parking de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.703235, + 44.376507 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPCPZSNAJOW", + "ref": "PCPZSNAJOW", + "name": "Pierrelatte, Place Sogno", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.698986, + 44.372311 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHTGDQIHOM0", + "ref": "HTGDQIHOM0", + "name": "Pierrelatte, Rue Charcot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.930583, + 44.285472 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVTPM86E6SG", + "ref": "VTPM86E6SG", + "name": "Tulette, Avenue de Provence", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.866178, + 44.337725 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEP9B5SQXIV", + "ref": "EP9B5SQXIV", + "name": "La Baume-De-Transit, Place Du Tricastin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.921365, + 45.018041 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQIYDUPSLD7", + "ref": "QIYDUPSLD7", + "name": "Beaumont-Monteux, Place De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828305, + 44.24526 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFUVLYZNAC1", + "ref": "FUVLYZNAC1", + "name": "Rochegude, avenue du Comtat Venaissin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.97910139, + 44.4428751 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZZEIEVWEMC", + "ref": "ZZEIEVWEMC", + "name": "Taulignan, Place du 11 Novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.930583, + 44.285472 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVTPM86E6SG", + "ref": "VTPM86E6SG", + "name": "Tulette, Avenue de Provence", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828305, + 44.24526 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFUVLYZNAC1", + "ref": "FUVLYZNAC1", + "name": "Rochegude, avenue du Comtat Venaissin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.703235, + 44.376507 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPCPZSNAJOW", + "ref": "PCPZSNAJOW", + "name": "Pierrelatte, Place Sogno", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.760774, + 44.532597 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBAWG4VXXRC", + "ref": "BAWG4VXXRC", + "name": "Montelimar, Chemin De Ravaly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83665, + 45.0711 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIL2LVDJOZC", + "ref": "IL2LVDJOZC", + "name": "Tain-L'Hermitage, Place Taurobole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.020937, + 44.72668 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDHCKIJOAXG", + "ref": "DHCKIJOAXG", + "name": "Crest, Place de la Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.760774, + 44.532597 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBAWG4VXXRC", + "ref": "BAWG4VXXRC", + "name": "Montelimar, Chemin De Ravaly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.820926, + 45.119321 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDBA0BNH7EP", + "ref": "DBA0BNH7EP", + "name": "Erôme, 66 Rue des Maisons Neuves", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872588, + 44.642778 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFDJN70AGER", + "ref": "FDJN70AGER", + "name": "Marsanne, Avenue René Chartron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.781791, + 44.649576 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR8XY0SZE9U", + "ref": "R8XY0SZE9U", + "name": "La Coucourde, Parking Freydier N7", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838851, + 44.288371 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHANDNASEFE", + "ref": "HANDNASEFE", + "name": "Suze-La-Rousse, 621 Avenue Des Côtes Du Rhône", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.799586, + 44.541316 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPK8UHYWJQHE", + "ref": "K8UHYWJQHE", + "name": "Montboucher-Sur-Jabron, Pkg Golf de la Valdaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70697, + 44.666304 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIHDYYMOWSE", + "ref": "IHDYYMOWSE", + "name": "Lus-La-Croix-Haute, Parking de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.820926, + 45.119321 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDBA0BNH7EP", + "ref": "DBA0BNH7EP", + "name": "Erôme, 66 Rue des Maisons Neuves", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.698986, + 44.372311 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHTGDQIHOM0", + "ref": "HTGDQIHOM0", + "name": "Pierrelatte, Rue Charcot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.69954, + 44.377282 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGE3HA5PUXP", + "ref": "GE3HA5PUXP", + "name": "Pierrelatte, Avenue Jean-Perrin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.866178, + 44.337725 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEP9B5SQXIV", + "ref": "EP9B5SQXIV", + "name": "La Baume-De-Transit, Place Du Tricastin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.859351, + 45.184396 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPT80X29F55X", + "ref": "T80X29F55X", + "name": "Saint-Uze, Les Sources", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.802167, + 44.418065 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQRT5VAQ5PW", + "ref": "QRT5VAQ5PW", + "name": "Valaurie, Place Nicolas Appert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81653, + 45.176935 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRDFEUWJLV7", + "ref": "RDFEUWJLV7", + "name": "Saint-Vallier, Place du Champs de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.929752, + 44.950546 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPICYZM13ZT9", + "ref": "ICYZM13ZT9", + "name": "Valence, Place Tony Garnier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.744417, + 44.556301 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVGOBDGLPKS", + "ref": "VGOBDGLPKS", + "name": "Montelimar, Palais des Congrès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.190152, + 44.23775 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIOEFVEOSYD", + "ref": "IOEFVEOSYD", + "name": "Mollans-Sur-Ouvèze, Place du Monument aux Morts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.401908, + 44.712392 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLOGXNLQR1V", + "ref": "LOGXNLQR1V", + "name": "Aix-En-Diois, Parking face Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9333, + 44.5448 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZ4C1VGM0DH", + "ref": "Z4C1VGM0DH", + "name": "La Begude-De-Mazenc, Parking de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.277503, + 44.277843 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVPY490SRSN", + "ref": "VPY490SRSN", + "name": "Buis-Les-Baronnies, Allée des Platanes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.274113, + 44.273155 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPS2X4SQRIWM", + "ref": "S2X4SQRIWM", + "name": "Buis-Les-Baronnies, Parking Digue Sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.372968, + 44.751122 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBIAIJUVWY6", + "ref": "BIAIJUVWY6", + "name": "Die, 1347 Boulevard du Maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.993811, + 45.290854 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKMY7EK3TVS", + "ref": "KMY7EK3TVS", + "name": "Moras-En-Valloire, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.954134, + 45.291376 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXEAAPBSHGL", + "ref": "XEAAPBSHGL", + "name": "Saint-Sorlin-En-Valloire, Place des Gauds", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.041824, + 45.29267 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWTKHQRLVGM", + "ref": "WTKHQRLVGM", + "name": "Lens-Lestang, Place Des Tilleuils", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.994846, + 45.322879 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLK4IORN6OX", + "ref": "LK4IORN6OX", + "name": "Lapeyrouse-Mornay, Place Jérôme Cavalli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.747654, + 44.549544 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPURHEE05T5G", + "ref": "URHEE05T5G", + "name": "Montelimar, Parking Saint James", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.756491, + 44.556028 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFQCHFMZVJL", + "ref": "FQCHFMZVJL", + "name": "Montelimar, Parking Square Nicolas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.751107, + 44.561668 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHT6OIBP1HQ", + "ref": "HT6OIBP1HQ", + "name": "Montélimar, Rond-Point Charles Trenet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.367919, + 44.75614 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHLDZRB6LRZ", + "ref": "HLDZRB6LRZ", + "name": "Die, Avenue Sadi Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.849828, + 44.894145 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMHLFDHWBOA", + "ref": "MHLFDHWBOA", + "name": "Costaros, Place de la Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.122835, + 45.144505 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSKIDXQPPDJ", + "ref": "SKIDXQPPDJ", + "name": "Yssingeaux, Parking de l'Antreuil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.386839, + 45.294012 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPXZORUFFWG", + "ref": "PXZORUFFWG", + "name": "Brioude, Parking du centre historique", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29221, + 45.11508 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUINJVNH6Q6", + "ref": "UINJVNH6Q6", + "name": "Tence, Parking du Fieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.84579, + 45.33199 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPPSSYUNFPG", + "ref": "PPSSYUNFPG", + "name": "Craponne-Sur-Arzon, Place de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.69669, + 45.31652 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEDRVAH0JV8", + "ref": "EDRVAH0JV8", + "name": "La-Chaise-Dieu, Parking Gare SNCF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.54074, + 45.15616 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPL4NKVCKURV", + "ref": "L4NKVCKURV", + "name": "Saint-Georges-D'Aurac, place Louis de Cazenave", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31931, + 45.40492 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQQ4AFDK4RT", + "ref": "QQ4AFDK4RT", + "name": "Sainte-Florine, Parking Rue Anatole France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3136, + 45.34064 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFRY0Q66XR9", + "ref": "FRY0Q66XR9", + "name": "Saint-Just-Malmont, Parking des APG 39-45", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.90828, + 45.18615 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPVQEXFHYMO", + "ref": "PVQEXFHYMO", + "name": "Vorey-Sur-Arzon, Place des Moulettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8506602, + 45.33388671 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPL4TPSNGBZU", + "ref": "L4TPSNGBZU", + "name": "Craponne-Sur-Arzon, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.886055, + 45.040595 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMQK82BCMDT", + "ref": "MQK82BCMDT", + "name": "Le Puy-en-Velay, Place Michelet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.90733, + 45.12107 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOYTKDNTXGM", + "ref": "OYTKDNTXGM", + "name": "Lavoûte-Sur-Loire, Place du Pont Neuf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.87728, + 45.04768 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPELNZBQTZOX", + "ref": "ELNZBQTZOX", + "name": "Le-Puy-En-Velay, Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.886055, + 45.040595 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMQK82BCMDT", + "ref": "MQK82BCMDT", + "name": "Le Puy-en-Velay, Place Michelet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.122835, + 45.144505 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSKIDXQPPDJ", + "ref": "SKIDXQPPDJ", + "name": "Yssingeaux, Parking de l'Antreuil", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.386839, + 45.294012 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPXZORUFFWG", + "ref": "PXZORUFFWG", + "name": "Brioude, Parking du centre historique", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.849828, + 44.894145 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMHLFDHWBOA", + "ref": "MHLFDHWBOA", + "name": "Costaros, Place de la Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.127572, + 44.357458 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPTMJY7PQFA", + "ref": "PTMJY7PQFA", + "name": "Nyons, Parking Cerisiers Mistral", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.063022, + 44.332828 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHHI7NXS2BU", + "ref": "HHI7NXS2BU", + "name": "Vinsobres, Passage de l'Amélie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.799172, + 44.702527 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVJR4KERRP4", + "ref": "VJR4KERRP4", + "name": "Saulce-Sur-Rhône, Parking Du Temple", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.140972, + 44.358895 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHLIQFU7MBL", + "ref": "HLIQFU7MBL", + "name": "Nyons, Promenade de la Digue Est", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.763941, + 44.345787 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP4BGHJXHOT", + "ref": "P4BGHJXHOT", + "name": "Saint-Paul-Trois-Châteaux, Espace Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.813139, + 45.295163 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZVTPWBGVUT", + "ref": "ZVTPWBGVUT", + "name": "Saint-Rambert-D'Albon, Rue Neuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85676, + 44.36141 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPE6Y7M7AMVB", + "ref": "E6Y7M7AMVB", + "name": "Montsegur-Sur-Lauzon, Avenue Saint Jean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.747654, + 44.549544 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPURHEE05T5G", + "ref": "URHEE05T5G", + "name": "Montelimar, Parking Saint James", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.744417, + 44.556301 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVGOBDGLPKS", + "ref": "VGOBDGLPKS", + "name": "Montelimar, Palais des Congrès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.751107, + 44.561668 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHT6OIBP1HQ", + "ref": "HT6OIBP1HQ", + "name": "Montélimar, Rond-Point Charles Trenet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.756491, + 44.556028 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFQCHFMZVJL", + "ref": "FQCHFMZVJL", + "name": "Montelimar, Parking Square Nicolas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.277503, + 44.277843 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVPY490SRSN", + "ref": "VPY490SRSN", + "name": "Buis-Les-Baronnies, Allée des Platanes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9333, + 44.5448 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZ4C1VGM0DH", + "ref": "Z4C1VGM0DH", + "name": "La Begude-De-Mazenc, Parking de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.190152, + 44.23775 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIOEFVEOSYD", + "ref": "IOEFVEOSYD", + "name": "Mollans-Sur-Ouvèze, Place du Monument aux Morts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.274113, + 44.273155 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPS2X4SQRIWM", + "ref": "S2X4SQRIWM", + "name": "Buis-Les-Baronnies, Parking Digue Sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.790972, + 44.33132 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDOTZDZMFFW", + "ref": "DOTZDZMFFW", + "name": "Saint-Restitut, Parking des Cornettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.985143, + 45.122126 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSJORIJEACH", + "ref": "SJORIJEACH", + "name": "Saint-Donat-Sur-L'Herbasse, Place Anatole France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839749, + 44.769233 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKDSOJBUKIE", + "ref": "KDSOJBUKIE", + "name": "Livron Sur Drome, Place de la Citoyenneté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.819175, + 44.752224 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDZI9RFFUXV", + "ref": "DZI9RFFUXV", + "name": "Loriol-Sur-Drôme, Rue du Real Pkg Champ de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.769987, + 44.347337 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEBYI5NPO9K", + "ref": "EBYI5NPO9K", + "name": "Saint-Paul-Trois-Châteaux, Parking Chaussy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.401908, + 44.712392 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLOGXNLQR1V", + "ref": "LOGXNLQR1V", + "name": "Aix-En-Diois, Parking face Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.372968, + 44.751122 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBIAIJUVWY6", + "ref": "BIAIJUVWY6", + "name": "Die, 1347 Boulevard du Maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.886768, + 45.272129 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAVUGAR5K1V", + "ref": "AVUGAR5K1V", + "name": "Anneyron, Place du Gymnase", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88804, + 44.925184 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWM3WAO2RMZ", + "ref": "WM3WAO2RMZ", + "name": "Valence, Clos Sylvestre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.903566, + 44.933541 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZIUHTQE97T", + "ref": "ZIUHTQE97T", + "name": "Valence, Latour Maubourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.904457, + 44.904052 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTL1WGTVEO9", + "ref": "TL1WGTVEO9", + "name": "Valence, Lautagne Labo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894544, + 44.934744 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPH5N3BW8X1L", + "ref": "H5N3BW8X1L", + "name": "Valence, Place Herriot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85676, + 44.36141 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPE6Y7M7AMVB", + "ref": "E6Y7M7AMVB", + "name": "Montsegur-Sur-Lauzon, Avenue Saint Jean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.769987, + 44.347337 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEBYI5NPO9K", + "ref": "EBYI5NPO9K", + "name": "Saint-Paul-Trois-Châteaux, Parking Chaussy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.813139, + 45.295163 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZVTPWBGVUT", + "ref": "ZVTPWBGVUT", + "name": "Saint-Rambert-D'Albon, Rue Neuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.886768, + 45.272129 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAVUGAR5K1V", + "ref": "AVUGAR5K1V", + "name": "Anneyron, Place du Gymnase", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.218949, + 44.428743 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOMHSNRMBVM", + "ref": "OMHSNRMBVM", + "name": "St Ferreol Trente Pas, Place De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.118107, + 44.35214 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEDVOP2GKDT", + "ref": "EDVOP2GKDT", + "name": "Nyons, 170 Rue Ferdinand Fert -", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.763941, + 44.345787 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP4BGHJXHOT", + "ref": "P4BGHJXHOT", + "name": "Saint-Paul-Trois-Châteaux, Espace Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.790972, + 44.33132 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDOTZDZMFFW", + "ref": "DOTZDZMFFW", + "name": "Saint-Restitut, Parking des Cornettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.060403, + 44.522082 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYOVTZBLZ6Y", + "ref": "YOVTZBLZ6Y", + "name": "Dieulefit, Parking des Grands Pres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.367919, + 44.75614 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHLDZRB6LRZ", + "ref": "HLDZRB6LRZ", + "name": "Die, Avenue Sadi Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11627, + 44.98706 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOJBNYNLLXC", + "ref": "OJBNYNLLXC", + "name": "Les Deux Alpes, Office de Tourisme de Venosc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79927, + 45.37 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPVQGYC", + "ref": "PVQGYC", + "name": "Le Peage-De-Roussillon, Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79927, + 45.37 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPVQGYC", + "ref": "PVQGYC", + "name": "Le Peage-De-Roussillon, Rue de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1807817, + 45.4033238 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPU4AQ0K8DKR", + "ref": "U4AQ0K8DKR", + "name": "Saint-Maurice-En-Gourgois, Parking supérette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.263238, + 45.396748 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDGMDE60VKP", + "ref": "DGMDE60VKP", + "name": "Unieux, Parking rue Marechal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.829734, + 44.856094 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMRH2IYQPC5", + "ref": "MRH2IYQPC5", + "name": "Saint-Georges-Les-Bains, Le Blod", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2404883, + 45.5004988 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWCGRDIRD61", + "ref": "WCGRDIRD61", + "name": "Saint-Just-Saint-Rambert, Parking place Jean Monnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2630078, + 45.5076733 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWUFELBWHT7", + "ref": "WUFELBWHT7", + "name": "Saint-Just-Saint-Rambert, Parking Médiathèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.337093, + 45.4352175 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDBT65NAW0K", + "ref": "DBT65NAW0K", + "name": "Roche-La-Moliere, Parking rue Joseph Sanguedolce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.31678503, + 45.42282428 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIWGHRPVBV0", + "ref": "IWGHRPVBV0", + "name": "Roche-La-Moliere, Parking stade Beaulieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4946901, + 45.2692689 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQOFKA776QB", + "ref": "QOFKA776QB", + "name": "Saint-Sauveur-En-Rue, Parking espace Jean Roux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.336845, + 45.444849 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMCBGYNNUEB", + "ref": "MCBGYNNUEB", + "name": "Saint-Genest-Lerpt, Parking médiathèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.123665, + 46.037983 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNSEE0ZJGLH", + "ref": "NSEE0ZJGLH", + "name": "Perreux, Rue des écoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.042694, + 46.03628 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZ4Q0ZTBFD9", + "ref": "Z4Q0ZTBFD9", + "name": "Riorges, Parc Beaulieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.062721, + 46.086751 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRD0UYEY3MU", + "ref": "RD0UYEY3MU", + "name": "Mably, Parking Salle des Sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.896588, + 46.102351 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGW5Q7UNATT", + "ref": "GW5Q7UNATT", + "name": "Ambierle, D52", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09246, + 46.02658 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXBYO74ENAK", + "ref": "XBYO74ENAK", + "name": "Le Coteau, Parking de la glacière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0583, + 46.0247 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNYCFYH0OAI", + "ref": "NYCFYH0OAI", + "name": "Roanne, Boulevard Thiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.18384, + 45.81856 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUDZL8RTBFG", + "ref": "UDZL8RTBFG", + "name": "Balbigny, Place de Verdun", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2511196, + 45.4093142 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQOX8DO7S4R", + "ref": "QOX8DO7S4R", + "name": "Unieux, Parking le Pertuiset", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3225519, + 45.4243932 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZVYQDEGDC3", + "ref": "ZVYQDEGDC3", + "name": "Roche-La-Moliere, Parking rue de la Briqueterie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.21674, + 45.52367 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPURKGXP7KLK", + "ref": "URKGXP7KLK", + "name": "Bonson, Place François mitterand", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3217772, + 45.4331486 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP1JCQZGYPW", + "ref": "P1JCQZGYPW", + "name": "Roche-La-Moliere, Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4257236, + 45.4753254 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOL7HMZRXTP", + "ref": "OL7HMZRXTP", + "name": "La Talaudiere, Parking rue Salvador Allende", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2812527, + 45.3958253 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSBLMXOFNGQ", + "ref": "SBLMXOFNGQ", + "name": "Unieux, Parking rue Jean Jaures", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.941872, + 45.389256 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPH88YLRP16P", + "ref": "H88YLRP16P", + "name": "Usson-En-Forez, Parking place du souvenir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3721251, + 45.4856699 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHFWXM4PJLA", + "ref": "HFWXM4PJLA", + "name": "L'Etrat, Parking rue de Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.177878, + 45.887058 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSHKDVBCA4O", + "ref": "SHKDVBCA4O", + "name": "Neulise, Les Jacquins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0714987, + 45.596007 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPATU4HTPHF1", + "ref": "ATU4HTPHF1", + "name": "Montbrison, Parking avenue thermale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09246, + 46.02658 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXBYO74ENAK", + "ref": "XBYO74ENAK", + "name": "Le Coteau, Parking de la glacière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.896588, + 46.102351 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGW5Q7UNATT", + "ref": "GW5Q7UNATT", + "name": "Ambierle, D52", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3948511, + 45.2825753 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYLSVBYAJM1", + "ref": "YLSVBYAJM1", + "name": "Marlhes, Marlhes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.376203, + 45.35628 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJOLS2OGPGU", + "ref": "JOLS2OGPGU", + "name": "Saint-Romain-Les-Atheux, Saint Romain les Atheux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1677001, + 45.4980481 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKODGS1EZY2", + "ref": "KODGS1EZY2", + "name": "Saint-Marcellin-En-Forez, Parking rue du 8 mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.082572, + 45.607143 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOGZVDJ7RLD", + "ref": "OGZVDJ7RLD", + "name": "Savigneux, Rue Bayard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0607641, + 45.6073765 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLZFEFO7KSR", + "ref": "LZFEFO7KSR", + "name": "Montbrison, Place Bouvier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2160722, + 45.989587 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHTIYLP7TN0", + "ref": "HTIYLP7TN0", + "name": "Regny, Parking place Jacques Fougerat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2564165, + 45.4467313 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBKUKVCUG0Q", + "ref": "BKUKVCUG0Q", + "name": "Saint-Victor-Sur-Loire, Parking rue de la plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.18384, + 45.81856 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUDZL8RTBFG", + "ref": "UDZL8RTBFG", + "name": "Balbigny, Place de Verdun", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.943568, + 46.189248 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVMYGOPNGKC", + "ref": "VMYGOPNGKC", + "name": "Vivans, Parking de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.930498, + 46.122926 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJY0TJDEVXN", + "ref": "JY0TJDEVXN", + "name": "Saint-Forgeux-Lespinasse, Place de Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9147214, + 46.06752154 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYJUCBYQK33", + "ref": "YJUCBYQK33", + "name": "Saint-Haon-Le-Châtel, Haut du bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3948511, + 45.2825753 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYLSVBYAJM1", + "ref": "YLSVBYAJM1", + "name": "Marlhes, Marlhes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.376203, + 45.35628 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJOLS2OGPGU", + "ref": "JOLS2OGPGU", + "name": "Saint-Romain-Les-Atheux, Saint Romain les Atheux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2160722, + 45.989587 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHTIYLP7TN0", + "ref": "HTIYLP7TN0", + "name": "Regny, Parking place Jacques Fougerat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.177878, + 45.887058 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSHKDVBCA4O", + "ref": "SHKDVBCA4O", + "name": "Neulise, Les Jacquins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0607641, + 45.6073765 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLZFEFO7KSR", + "ref": "LZFEFO7KSR", + "name": "Montbrison, Place Bouvier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.941872, + 45.389256 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPH88YLRP16P", + "ref": "H88YLRP16P", + "name": "Usson-En-Forez, Parking place du souvenir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.082572, + 45.607143 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOGZVDJ7RLD", + "ref": "OGZVDJ7RLD", + "name": "Savigneux, Rue Bayard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3342453, + 45.4473008 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYIDXSFUUSI", + "ref": "YIDXSFUUSI", + "name": "Saint-Genest-Lerpt, Parking rue Louis Richard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.943568, + 46.189248 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVMYGOPNGKC", + "ref": "VMYGOPNGKC", + "name": "Vivans, Parking de la mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0583, + 46.0247 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNYCFYH0OAI", + "ref": "NYCFYH0OAI", + "name": "Roanne, Boulevard Thiers", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.930498, + 46.122926 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJY0TJDEVXN", + "ref": "JY0TJDEVXN", + "name": "Saint-Forgeux-Lespinasse, Place de Verdun", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9147214, + 46.06752154 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYJUCBYQK33", + "ref": "YJUCBYQK33", + "name": "Saint-Haon-Le-Châtel, Haut du bourg", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.27747, + 45.5613 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGBTTMB", + "ref": "GBTTMB", + "name": "Veauche, Veauche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.27747, + 45.5613 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGBTTMB", + "ref": "GBTTMB", + "name": "Veauche, Veauche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.346184, + 46.165401 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQXCNNGKKJJ", + "ref": "QXCNNGKKJJ", + "name": "Belmont De La Loire, Place de l'église", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1677001, + 45.4980481 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKODGS1EZY2", + "ref": "KODGS1EZY2", + "name": "Saint-Marcellin-En-Forez, Parking rue du 8 mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.123665, + 46.037983 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNSEE0ZJGLH", + "ref": "NSEE0ZJGLH", + "name": "Perreux, Rue des écoles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.042694, + 46.03628 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZ4Q0ZTBFD9", + "ref": "Z4Q0ZTBFD9", + "name": "Riorges, Parc Beaulieu", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3225519, + 45.4243932 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZVYQDEGDC3", + "ref": "ZVYQDEGDC3", + "name": "Roche-La-Moliere, Parking rue de la Briqueterie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2630078, + 45.5076733 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWUFELBWHT7", + "ref": "WUFELBWHT7", + "name": "Saint-Just-Saint-Rambert, Parking Médiathèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2564165, + 45.4467313 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBKUKVCUG0Q", + "ref": "BKUKVCUG0Q", + "name": "Saint-Victor-Sur-Loire, Parking rue de la plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3217772, + 45.4331486 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP1JCQZGYPW", + "ref": "P1JCQZGYPW", + "name": "Roche-La-Moliere, Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.263238, + 45.396748 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDGMDE60VKP", + "ref": "DGMDE60VKP", + "name": "Unieux, Parking rue Marechal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1807817, + 45.4033238 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPU4AQ0K8DKR", + "ref": "U4AQ0K8DKR", + "name": "Saint-Maurice-En-Gourgois, Parking supérette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2511196, + 45.4093142 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQOX8DO7S4R", + "ref": "QOX8DO7S4R", + "name": "Unieux, Parking le Pertuiset", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1742548, + 46.1581686 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPICY3X7IVQQ", + "ref": "ICY3X7IVQQ", + "name": "Charlieu, Parking place de la bouverie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3721251, + 45.4856699 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHFWXM4PJLA", + "ref": "HFWXM4PJLA", + "name": "L'Etrat, Parking rue de Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2404883, + 45.5004988 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWCGRDIRD61", + "ref": "WCGRDIRD61", + "name": "Saint-Just-Saint-Rambert, Parking place Jean Monnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4946901, + 45.2692689 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQOFKA776QB", + "ref": "QOFKA776QB", + "name": "Saint-Sauveur-En-Rue, Parking espace Jean Roux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.337093, + 45.4352175 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDBT65NAW0K", + "ref": "DBT65NAW0K", + "name": "Roche-La-Moliere, Parking rue Joseph Sanguedolce", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.316785035, + 45.42282428 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIWGHRPVBV0", + "ref": "IWGHRPVBV0", + "name": "Roche-La-Moliere, Parking stade Beaulieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.062721, + 46.086751 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRD0UYEY3MU", + "ref": "RD0UYEY3MU", + "name": "Mably, Parking Salle des Sports", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0714987, + 45.596007 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPATU4HTPHF1", + "ref": "ATU4HTPHF1", + "name": "Montbrison, Parking avenue thermale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3367866, + 45.7928662 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMHD5MKUFAK", + "ref": "MHD5MKUFAK", + "name": "Panissieres, Parking route de cottance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.064615, + 45.424436 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVXH5EOTKP9", + "ref": "VXH5EOTKP9", + "name": "Saint-Bonnet-Le-Chateau, Avenue du général Gouraud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.336845, + 45.444849 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMCBGYNNUEB", + "ref": "MCBGYNNUEB", + "name": "Saint-Genest-Lerpt, Parking médiathèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64742, + 45.4794 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAAVBTG", + "ref": "AAVBTG", + "name": "Sainte-Croix-En-Jarez, Parking aux portes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4352, + 45.48154 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJR9TTMXTJ7", + "ref": "JR9TTMXTJ7", + "name": "La Talaudiere, Parking place Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4352, + 45.48154 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJR9TTMXTJ7", + "ref": "JR9TTMXTJ7", + "name": "La Talaudiere, Parking place Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.54026293, + 45.48570475 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQLRDN5VITJ", + "ref": "QLRDN5VITJ", + "name": "L'Horme, Parking route des côtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.54026293, + 45.48570475 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQLRDN5VITJ", + "ref": "QLRDN5VITJ", + "name": "L'Horme, Parking route des côtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.57513, + 45.4842 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMWSKGX", + "ref": "MWSKGX", + "name": "Saint-Paul, Rue des anciens combattants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.57513, + 45.4842 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMWSKGX", + "ref": "MWSKGX", + "name": "Saint-Paul, Rue des anciens combattants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.53528, + 45.5561 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHJJFHK", + "ref": "HJJFHK", + "name": "Saint-Romain-En-Jarez, Rue Suel Picat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.53528, + 45.5561 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHJJFHK", + "ref": "HJJFHK", + "name": "Saint-Romain-En-Jarez, Rue Suel Picat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3640911, + 45.4050209 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRMGF2XIQG6", + "ref": "RMGF2XIQG6", + "name": "La Ricamarie, Parking Avenue Maurice Thorez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.273447, + 45.759568 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPROOMZVXRSO", + "ref": "ROOMZVXRSO", + "name": "Salvizinet, Salvizinet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0045021, + 45.7456111 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWLQXF6NKY2", + "ref": "WLQXF6NKY2", + "name": "Boen-Sur-Lignon, Boën-sur-Lignon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5162605, + 45.4165342 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO54IWFIUPP", + "ref": "O54IWFIUPP", + "name": "La Valla-En-Gier, Parking place de la cure", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5695, + 45.50397 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEC5TK1JROM", + "ref": "EC5TK1JROM", + "name": "La Grand-Croix, Parking médiathèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5695, + 45.50397 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEC5TK1JROM", + "ref": "EC5TK1JROM", + "name": "La Grand-Croix, Parking médiathèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.446987, + 45.4098072 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW26C6ONSBL", + "ref": "W26C6ONSBL", + "name": "Saint Etienne Rochetaillee, Parking Rue des Echeneaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4499632, + 45.4877239 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOAUEVKIP5N", + "ref": "OAUEVKIP5N", + "name": "Sorbiers, Parking rue Claudius Remilleux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.273447, + 45.759568 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPROOMZVXRSO", + "ref": "ROOMZVXRSO", + "name": "Salvizinet, Salvizinet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39409, + 45.6384 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHTQZMT", + "ref": "HTQZMT", + "name": "Chazelles-Sur-Lyon, Parking musée du chapeau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.56981, + 45.5055 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBRUPTZ", + "ref": "BRUPTZ", + "name": "La Grand-Croix, Place du Général de Gaule", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.56981, + 45.5055 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBRUPTZ", + "ref": "BRUPTZ", + "name": "La Grand-Croix, Place du Général de Gaule", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.43933, + 45.5482 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVLJGRE", + "ref": "VLJGRE", + "name": "Fontanes, Parking rue Fontanesium", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22096, + 45.7446 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWZBCXJ", + "ref": "WZBCXJ", + "name": "Feurs, Parking rue de l'hotel de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.43933, + 45.5482 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVLJGRE", + "ref": "VLJGRE", + "name": "Fontanes, Parking rue Fontanesium", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58146, + 45.5135 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNTEXHV", + "ref": "NTEXHV", + "name": "Lorette, Parking rue Saint Joseph", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58146, + 45.5135 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNTEXHV", + "ref": "NTEXHV", + "name": "Lorette, Parking rue Saint Joseph", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4370403, + 45.4878958 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPISUMHUQAQG", + "ref": "ISUMHUQAQG", + "name": "Sorbiers, Parking rue des roseaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39409, + 45.6384 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHTQZMT", + "ref": "HTQZMT", + "name": "Chazelles-Sur-Lyon, Parking musée du chapeau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22096, + 45.7446 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWZBCXJ", + "ref": "WZBCXJ", + "name": "Feurs, Parking rue de l'hotel de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5162605, + 45.4165342 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO54IWFIUPP", + "ref": "O54IWFIUPP", + "name": "La Valla-En-Gier, Parking place de la cure", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0045021, + 45.7456111 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWLQXF6NKY2", + "ref": "WLQXF6NKY2", + "name": "Boen-Sur-Lignon, Boën-sur-Lignon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3666899, + 45.402132 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGFBM3TN5RY", + "ref": "GFBM3TN5RY", + "name": "La Ricamarie, Parking Boulevard Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3640911, + 45.4050209 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRMGF2XIQG6", + "ref": "RMGF2XIQG6", + "name": "La Ricamarie, Parking Avenue Maurice Thorez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.446987, + 45.4098072 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW26C6ONSBL", + "ref": "W26C6ONSBL", + "name": "Saint Etienne Rochetaillee, Parking Rue des Echeneaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3666899, + 45.402132 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGFBM3TN5RY", + "ref": "GFBM3TN5RY", + "name": "La Ricamarie, Parking Boulevard Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64742, + 45.4794 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAAVBTG", + "ref": "AAVBTG", + "name": "Sainte-Croix-En-Jarez, Parking aux portes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3342453, + 45.4473008 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYIDXSFUUSI", + "ref": "YIDXSFUUSI", + "name": "Saint-Genest-Lerpt, Parking rue Louis Richard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.31657, + 45.5921 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUDCPRA", + "ref": "UDCPRA", + "name": "Saint-Galmier, Boulevard Gabriel Cousin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3141025, + 45.5019921 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLDBAM0UVXS", + "ref": "LDBAM0UVXS", + "name": "La Fouillouse, Parking rue centrale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.208527, + 45.9483507 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTCHFTRZXQR", + "ref": "TCHFTRZXQR", + "name": "Saint-Symphorien-De-Lay, Parking COPLER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5414507, + 45.5229189 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRVMNOOPOGM", + "ref": "RVMNOOPOGM", + "name": "Cellieu, Parking place Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4499632, + 45.4877239 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOAUEVKIP5N", + "ref": "OAUEVKIP5N", + "name": "Sorbiers, Parking rue Claudius Remilleux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4370403, + 45.4878958 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPISUMHUQAQG", + "ref": "ISUMHUQAQG", + "name": "Sorbiers, Parking rue des roseaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.064615, + 45.424436 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVXH5EOTKP9", + "ref": "VXH5EOTKP9", + "name": "Saint-Bonnet-Le-Chateau, Avenue du général Gouraud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3367866, + 45.7928662 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMHD5MKUFAK", + "ref": "MHD5MKUFAK", + "name": "Panissieres, Parking route de cottance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4257236, + 45.4753254 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOL7HMZRXTP", + "ref": "OL7HMZRXTP", + "name": "La Talaudiere, Parking rue Salvador Allende", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.184682, + 45.538959 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKWASMIIC7L", + "ref": "KWASMIIC7L", + "name": "Sury-Le-Comtal, Boulevard M Orelu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.353032, + 45.467506 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRZTN1YKWP7", + "ref": "RZTN1YKWP7", + "name": "Villars, Parking rue de l'hôtel de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3524202, + 45.466474 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOYO5JSDPCS", + "ref": "OYO5JSDPCS", + "name": "Villars, Parking rue de l'arsenal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.266084, + 45.389132 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQHL8YCFSIR", + "ref": "QHL8YCFSIR", + "name": "Fraisses, Parking place Jean Rist", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3141025, + 45.5019921 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLDBAM0UVXS", + "ref": "LDBAM0UVXS", + "name": "La Fouillouse, Parking rue centrale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.208527, + 45.9483507 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTCHFTRZXQR", + "ref": "TCHFTRZXQR", + "name": "Saint-Symphorien-De-Lay, Parking COPLER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5414507, + 45.5229189 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRVMNOOPOGM", + "ref": "RVMNOOPOGM", + "name": "Cellieu, Parking place Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.266084, + 45.389132 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQHL8YCFSIR", + "ref": "QHL8YCFSIR", + "name": "Fraisses, Parking place Jean Rist", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3524202, + 45.466474 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOYO5JSDPCS", + "ref": "OYO5JSDPCS", + "name": "Villars, Parking rue de l'arsenal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.353032, + 45.467506 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRZTN1YKWP7", + "ref": "RZTN1YKWP7", + "name": "Villars, Parking rue de l'hôtel de ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5950883, + 45.5447567 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXVKVTT", + "ref": "XVKVTT", + "name": "Saint-Martin-La-Plaine, Route de la Tour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.31657, + 45.5921 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUDCPRA", + "ref": "UDCPRA", + "name": "Saint-Galmier, Boulevard Gabriel Cousin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.25891, + 45.6466 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGMFXMF", + "ref": "GMFXMF", + "name": "Saint-Andre-Le-Puy, Parking rue Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.25891, + 45.6466 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGMFXMF", + "ref": "GMFXMF", + "name": "Saint-Andre-Le-Puy, Parking rue Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.48614, + 45.5451 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQQTZQG", + "ref": "QQTZQG", + "name": "Saint-Christo-En-Jarez, Place de la liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.48614, + 45.5451 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQQTZQG", + "ref": "QQTZQG", + "name": "Saint-Christo-En-Jarez, Place de la liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5950883, + 45.5447567 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXVKVTT", + "ref": "XVKVTT", + "name": "Saint-Martin-La-Plaine, Route de la Tour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58422, + 45.5495 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCKVEGB", + "ref": "CKVEGB", + "name": "Saint-Martin-La-Plaine, Parking zoo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.184682, + 45.538959 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKWASMIIC7L", + "ref": "KWASMIIC7L", + "name": "Sury-Le-Comtal, Boulevard M Orelu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58422, + 45.5495 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCKVEGB", + "ref": "CKVEGB", + "name": "Saint-Martin-La-Plaine, Parking zoo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58589, + 45.5341 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEYECWW", + "ref": "EYECWW", + "name": "Genilac, Parking allée des bourdonnes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58589, + 45.5341 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEYECWW", + "ref": "EYECWW", + "name": "Genilac, Parking allée des bourdonnes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37529, + 45.5323 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHRSSFZ", + "ref": "HRSSFZ", + "name": "Saint-Heand, Parking collège Joseph Collard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37529, + 45.5323 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHRSSFZ", + "ref": "HRSSFZ", + "name": "Saint-Heand, Parking collège Joseph Collard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2812527, + 45.3958253 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSBLMXOFNGQ", + "ref": "SBLMXOFNGQ", + "name": "Unieux, Parking rue Jean Jaures", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.21674, + 45.52367 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPURKGXP7KLK", + "ref": "URKGXP7KLK", + "name": "Bonson, Place François mitterand", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07645891, + 46.0379016 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIF1PCDZCRZ", + "ref": "IF1PCDZCRZ", + "name": "Roanne, Parking des Halles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.18387, + 45.6147 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSKUWSYWI8M", + "ref": "SKUWSYWI8M", + "name": "Vaulx-Milieu, Parking Gymnase Rue des Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.091, + 45.9208 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHFWNFZ", + "ref": "HFWNFZ", + "name": "Annecy Meythet, Parking Fruitières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12351, + 45.9356 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQMLUTQ", + "ref": "QMLUTQ", + "name": "Annecy Pringy, Route du Pont du Brogny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.31168, + 46.0665 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJUNKKQX4CA", + "ref": "JUNKKQX4CA", + "name": "La Roche-Sur-Foron, Parking Clavel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.48578, + 46.0536 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSWI9PR0KMU", + "ref": "SWI9PR0KMU", + "name": "Mont-Saxonnex, 89 route de Cluses - Chemin du Bugnon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.48578, + 46.0536 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSWI9PR0KMU", + "ref": "SWI9PR0KMU", + "name": "Mont-Saxonnex, 89 route de Cluses - Chemin du Bugnon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10162, + 45.888 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLVCNJY", + "ref": "LVCNJY", + "name": "Annecy Seynod, Le Polyèdre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10162, + 45.888 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLVCNJY", + "ref": "LVCNJY", + "name": "Annecy Seynod, Le Polyèdre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.31168, + 46.0665 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJUNKKQX4CA", + "ref": "JUNKKQX4CA", + "name": "La Roche-Sur-Foron, Parking Clavel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1334, + 45.9036 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFRGFEE", + "ref": "FRGFEE", + "name": "Annecy, Rue Dupanloup", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14695, + 45.905 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNQTNQA", + "ref": "NQTNQA", + "name": "Annecy-le-Vieux, Albigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14695, + 45.905 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNQTNQA", + "ref": "NQTNQA", + "name": "Annecy-le-Vieux, Albigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12208, + 45.8991 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSXTKJJ", + "ref": "SXTKJJ", + "name": "Annecy, Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12208, + 45.8991 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSXTKJJ", + "ref": "SXTKJJ", + "name": "Annecy, Rue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1334, + 45.9036 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFRGFEE", + "ref": "FRGFEE", + "name": "Annecy, Rue Dupanloup", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16885, + 45.9328 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPVHEQY", + "ref": "PVHEQY", + "name": "Annecy-le-Vieux, NRO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.106581, + 45.907333 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTDVAAV", + "ref": "TDVAAV", + "name": "Annecy Cran-Gevrier, Parking Comedie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.091, + 45.9208 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHFWNFZ", + "ref": "HFWNFZ", + "name": "Annecy Meythet, Parking Fruitières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10387, + 45.9076 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPANTREV", + "ref": "ANTREV", + "name": "Annecy Cran-Gevrier, Les Passerelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07645891, + 46.0379016 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIF1PCDZCRZ", + "ref": "IF1PCDZCRZ", + "name": "Roanne, Parking des Halles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12351, + 45.9356 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQMLUTQ", + "ref": "QMLUTQ", + "name": "Annecy Pringy, Route du Pont du Brogny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.54229116, + 46.08405685 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDHK0LKAJ25", + "ref": "DHK0LKAJ25", + "name": "Thyez, Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.202025, + 45.827454 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMX2GSCSOQH", + "ref": "MX2GSCSOQH", + "name": "Duingt, Place de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.190705, + 45.950926 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYWRSAWNEVT", + "ref": "YWRSAWNEVT", + "name": "Villaz, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1387291, + 45.9450798 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR8PQPHRS5Y", + "ref": "R8PQPHRS5Y", + "name": "Argonay, Pace Arthur Lavy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.164, + 45.97767 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBH9RGRYWWL", + "ref": "BH9RGRYWWL", + "name": "Charvonnex, RD 1203", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22051, + 45.7762 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNLZTSF", + "ref": "NLZTSF", + "name": "Doussard, Parking Maison des Associations", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.619782, + 45.863918 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPB23XI8EXVR", + "ref": "B23XI8EXVR", + "name": "Megève, Parking du Jaillet", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.619782, + 45.863918 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPB23XI8EXVR", + "ref": "B23XI8EXVR", + "name": "Megève, Parking du Jaillet", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22051, + 45.7762 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNLZTSF", + "ref": "NLZTSF", + "name": "Doussard, Parking Maison des Associations", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.190705, + 45.950926 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYWRSAWNEVT", + "ref": "YWRSAWNEVT", + "name": "Villaz, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8643, + 46.0609 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJYATAX", + "ref": "JYATAX", + "name": "Chêne-En-Semine, ZA de la Croisée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8643, + 46.0609 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJYATAX", + "ref": "JYATAX", + "name": "Chêne-En-Semine, ZA de la Croisée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.073676, + 46.142809 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCVEVFLDAHI", + "ref": "CVEVFLDAHI", + "name": "Saint Julien En Genevois, Rue Jacques Duboin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09082, + 45.9141 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUFGBSW", + "ref": "UFGBSW", + "name": "Annecy Meythet, Rue François Vernex", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09082, + 45.9141 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUFGBSW", + "ref": "UFGBSW", + "name": "Annecy Meythet, Rue François Vernex", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.106581, + 45.907333 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTDVAAV", + "ref": "TDVAAV", + "name": "Annecy Cran-Gevrier, Parking Comedie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10387, + 45.9076 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPANTREV", + "ref": "ANTREV", + "name": "Annecy Cran-Gevrier, Les Passerelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16885, + 45.9328 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPVHEQY", + "ref": "PVHEQY", + "name": "Annecy-le-Vieux, NRO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09858, + 45.904 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMPHPDX", + "ref": "MPHPDX", + "name": "Annecy Cran-Gevrier, Avenue Beauregard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.98003, + 46.0461 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWGEEMN", + "ref": "WGEEMN", + "name": "Minzier, Bar A Thym", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06426, + 45.9217 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBDZXDF", + "ref": "BDZXDF", + "name": "Poisy, Parking de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06426, + 45.9217 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBDZXDF", + "ref": "BDZXDF", + "name": "Poisy, Parking de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.30504, + 46.0719 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHUTGNTAFVM", + "ref": "HUTGNTAFVM", + "name": "La Roche-Sur-Foron, Parking Pontet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16202, + 45.8321 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFUJCLK", + "ref": "FUJCLK", + "name": "Saint-Jorioz, Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.37506, + 46.0577 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX0NHNPY2ZZ", + "ref": "X0NHNPY2ZZ", + "name": "Saint-Pierre-En-Faucigny, Place des Arcades", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.37506, + 46.0577 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX0NHNPY2ZZ", + "ref": "X0NHNPY2ZZ", + "name": "Saint-Pierre-En-Faucigny, Place des Arcades", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94833, + 45.8606 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXANHLH", + "ref": "XANHLH", + "name": "Rumilly, Parking des Anciennes Casernes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94833, + 45.8606 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXANHLH", + "ref": "XANHLH", + "name": "Rumilly, Parking des Anciennes Casernes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16202, + 45.8321 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFUJCLK", + "ref": "FUJCLK", + "name": "Saint-Jorioz, Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.690794, + 46.00793 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX5JIHAHDBL", + "ref": "X5JIHAHDBL", + "name": "Arâches-La-Frasse, Flaine 2", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.431687, + 45.905947 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBMFWAN6U8Y", + "ref": "BMFWAN6U8Y", + "name": "La Clusaz, Parking du bossonet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.431687, + 45.905947 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBMFWAN6U8Y", + "ref": "BMFWAN6U8Y", + "name": "La Clusaz, Parking du bossonet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.690794, + 46.00793 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX5JIHAHDBL", + "ref": "X5JIHAHDBL", + "name": "Arâches-La-Frasse, Flaine 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.690794, + 46.00793 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX5JIHAHDBL", + "ref": "X5JIHAHDBL", + "name": "Arâches-La-Frasse, Flaine 2", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.30504, + 46.0719 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHUTGNTAFVM", + "ref": "HUTGNTAFVM", + "name": "La Roche-Sur-Foron, Parking Pontet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94101, + 45.8664 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKUMQMM", + "ref": "KUMQMM", + "name": "Rumilly, Corniche de la Néphaz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94101, + 45.8664 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKUMQMM", + "ref": "KUMQMM", + "name": "Rumilly, Corniche de la Néphaz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.37743, + 46.0731 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNWHQAZN2YT", + "ref": "NWHQAZN2YT", + "name": "Saint-Pierre-En-Faucigny, Les Jourdies", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09858, + 45.904 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMPHPDX", + "ref": "MPHPDX", + "name": "Annecy Cran-Gevrier, Avenue Beauregard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.98003, + 46.0461 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWGEEMN", + "ref": "WGEEMN", + "name": "Minzier, Bar A Thym", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.30372, + 46.0682 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZ77EKJ57Z0", + "ref": "Z77EKJ57Z0", + "name": "La Roche-Sur-Foron, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14032, + 45.8646 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFCUKKE", + "ref": "FCUKKE", + "name": "Sevrier, Chemin de la Tournette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14032, + 45.8646 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFCUKKE", + "ref": "FCUKKE", + "name": "Sevrier, Chemin de la Tournette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.37743, + 46.0731 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNWHQAZN2YT", + "ref": "NWHQAZN2YT", + "name": "Saint-Pierre-En-Faucigny, Les Jourdies", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.30372, + 46.0682 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZ77EKJ57Z0", + "ref": "Z77EKJ57Z0", + "name": "La Roche-Sur-Foron, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17526, + 45.8808 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGUDSGH", + "ref": "GUDSGH", + "name": "Veyrier-Du-Lac, Avenue Général Doyen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08326, + 45.8626 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXGFJVH", + "ref": "XGFJVH", + "name": "Annecy Seynod, Chemin de la Bruyère Vieugy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.21571, + 45.8393 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDWYWZS", + "ref": "DWYWZS", + "name": "Talloires-Montmin, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.21571, + 45.8393 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDWYWZS", + "ref": "DWYWZS", + "name": "Talloires-Montmin, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09711, + 45.88625 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOPXMALLCMW", + "ref": "OPXMALLCMW", + "name": "Annecy (Seynod), Centre Nautique - Rue Jean Clerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08326, + 45.8626 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXGFJVH", + "ref": "XGFJVH", + "name": "Annecy Seynod, Chemin de la Bruyère Vieugy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17526, + 45.8808 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGUDSGH", + "ref": "GUDSGH", + "name": "Veyrier-Du-Lac, Avenue Général Doyen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.646246, + 45.93089 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRPQUB69LKZ", + "ref": "RPQUB69LKZ", + "name": "Sallanches, Parking du Centre Aquatique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3533415, + 46.1632497 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDHQUXFGSJ0", + "ref": "DHQUXFGSJ0", + "name": "Fillinges, Parking Pont de Fillinges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87171266, + 45.91714084 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDGXASAH8ZE", + "ref": "DGXASAH8ZE", + "name": "Chamonix - Parking Grepon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1362, + 45.8924 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSYQDJU", + "ref": "SYQDJU", + "name": "Annecy, Parking des Marquisats", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.619913, + 45.863904 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPB23XI8EXVR", + "ref": "B23XI8EXVR", + "name": "Megève, Parking du Jaillet", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94768024, + 45.86309439 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSAYQDHUGKA", + "ref": "SAYQDHUGKA", + "name": "Rumilly, Parking de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.639805, + 46.025563 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQG1JJTOKPN", + "ref": "QG1JJTOKPN", + "name": "Arâches-La-Frasse, Route des Moulins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.867324, + 45.924709 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFB0EBACBBU", + "ref": "FB0EBACBBU", + "name": "Chamonix, Parking Saint Michel", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.867324, + 45.924709 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFB0EBACBBU", + "ref": "FB0EBACBBU", + "name": "Chamonix, Parking Saint Michel", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.867324, + 45.924709 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFB0EBACBBU", + "ref": "FB0EBACBBU", + "name": "Chamonix, Parking Saint Michel", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.867324, + 45.924709 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFB0EBACBBU", + "ref": "FB0EBACBBU", + "name": "Chamonix, Parking Saint Michel", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.867324, + 45.924709 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFB0EBACBBU", + "ref": "FB0EBACBBU", + "name": "Chamonix, Parking Saint Michel", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13133, + 45.90478 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNHJ0BBAIUH", + "ref": "NHJ0BBAIUH", + "name": "Annecy, Rue de la Paix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13133, + 45.90478 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNHJ0BBAIUH", + "ref": "NHJ0BBAIUH", + "name": "Annecy, Rue de la Paix", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.867324, + 45.924709 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFB0EBACBBU", + "ref": "FB0EBACBBU", + "name": "Chamonix, Parking Saint Michel", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.424995, + 45.906059 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGCKM4BEY1K", + "ref": "GCKM4BEY1K", + "name": "La Clusaz, Parking Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84055, + 46.25796 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPISP5MCPLRA", + "ref": "ISP5MCPLRA", + "name": "Châtel, Lac de Vonne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84055, + 46.25796 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPISP5MCPLRA", + "ref": "ISP5MCPLRA", + "name": "Châtel, Lac de Vonne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03918, + 45.9612 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAWWZZB", + "ref": "AWWZZB", + "name": "La Balme-De-Sillingy, Supermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.406002, + 46.077103 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPV4BCPZSKGF", + "ref": "V4BCPZSKGF", + "name": "Bonneville, Quai du Parquet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.621296, + 45.860103 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWCBMBTLQJ7", + "ref": "WCBMBTLQJ7", + "name": "Megève, RD1212", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.369798, + 46.266546 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPK6RA94IPIY", + "ref": "K6RA94IPIY", + "name": "Bons-en-Chablais, Avenue Louis Armand", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06467, + 46.04125 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBNAVO3VFDJ", + "ref": "BNAVO3VFDJ", + "name": "Roanne, Square Mozart", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22777, + 45.74238 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPI94BQIRYL6", + "ref": "I94BQIRYL6", + "name": "Feurs, Faubourg St antoine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22777, + 45.74238 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPI94BQIRYL6", + "ref": "I94BQIRYL6", + "name": "Feurs, Faubourg St antoine", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.071406, + 46.033345 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPSEA6GJAN3", + "ref": "PSEA6GJAN3", + "name": "Roanne, Parking de La Berge", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.071406, + 46.033345 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPSEA6GJAN3", + "ref": "PSEA6GJAN3", + "name": "Roanne, Parking de La Berge", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.346184, + 46.165401 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQXCNNGKKJJ", + "ref": "QXCNNGKKJJ", + "name": "Belmont De La Loire, Place de l'église", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06467, + 46.04125 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBNAVO3VFDJ", + "ref": "BNAVO3VFDJ", + "name": "Roanne, Square Mozart", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.083534, + 45.918435 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPY9EHBF4TKH", + "ref": "Y9EHBF4TKH", + "name": "Poisy, Route d'Annecy", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.369798, + 46.266546 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPK6RA94IPIY", + "ref": "K6RA94IPIY", + "name": "Bons-en-Chablais, Avenue Louis Armand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.867324, + 45.924709 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFB0EBACBBU", + "ref": "FB0EBACBBU", + "name": "Chamonix, Parking Saint Michel", + "capacity": "9", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.867324, + 45.924709 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFB0EBACBBU", + "ref": "FB0EBACBBU", + "name": "Chamonix, Parking Saint Michel", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.083534, + 45.918435 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPY9EHBF4TKH", + "ref": "Y9EHBF4TKH", + "name": "Poisy, Route d'Annecy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.867324, + 45.924709 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFB0EBACBBU", + "ref": "FB0EBACBBU", + "name": "Chamonix, Parking Saint Michel", + "capacity": "9", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-10-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14202, + 45.91962 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZFNYXIEBSQ", + "ref": "ZFNYXIEBSQ", + "name": "Annecy-le-Vieux, Rue Antoine de Saint-Exupéry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14202, + 45.91962 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZFNYXIEBSQ", + "ref": "ZFNYXIEBSQ", + "name": "Annecy-le-Vieux, Rue Antoine de Saint-Exupéry", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03261, + 45.9713 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLLBHRC", + "ref": "LLBHRC", + "name": "La Balme-De-Sillingy, Lac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1362, + 45.8924 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSYQDJU", + "ref": "SYQDJU", + "name": "Annecy, Parking des Marquisats", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87171266, + 45.91714084 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDGXASAH8ZE", + "ref": "DGXASAH8ZE", + "name": "Chamonix - Parking Grepon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03261, + 45.9713 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLLBHRC", + "ref": "LLBHRC", + "name": "La Balme-De-Sillingy, Lac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1013174, + 46.0946733 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGM910S6PBS", + "ref": "GM910S6PBS", + "name": "Beaumont, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.54797, + 46.0643 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDHSSXX0WPX", + "ref": "DHSSXX0WPX", + "name": "Scionzier, Parking Malvoisin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.54797, + 46.0643 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDHSSXX0WPX", + "ref": "DHSSXX0WPX", + "name": "Scionzier, Parking Malvoisin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87171266, + 45.91714084 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDGXASAH8ZE", + "ref": "DGXASAH8ZE", + "name": "Chamonix - Parking Grepon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87171266, + 45.91714084 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDGXASAH8ZE", + "ref": "DGXASAH8ZE", + "name": "Chamonix - Parking Grepon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87171266, + 45.91714084 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDGXASAH8ZE", + "ref": "DGXASAH8ZE", + "name": "Chamonix - Parking Grepon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09085, + 45.9378 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPHVETX", + "ref": "PHVETX", + "name": "Epagny Metz-Tessy, Rue de la Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10531, + 45.9397 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFGJRNL", + "ref": "FGJRNL", + "name": "Epagny Metz-Tessy, Parking Du Clocher", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10531, + 45.9397 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFGJRNL", + "ref": "FGJRNL", + "name": "Epagny Metz-Tessy, Parking Du Clocher", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09085, + 45.9378 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPHVETX", + "ref": "PHVETX", + "name": "Epagny Metz-Tessy, Rue de la Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87171266, + 45.91714084 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDGXASAH8ZE", + "ref": "DGXASAH8ZE", + "name": "Chamonix - Parking Grepon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87171266, + 45.91714084 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDGXASAH8ZE", + "ref": "DGXASAH8ZE", + "name": "Chamonix - Parking Grepon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87171266, + 45.91714084 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDGXASAH8ZE", + "ref": "DGXASAH8ZE", + "name": "Chamonix - Parking Grepon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87171266, + 45.91714084 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDGXASAH8ZE", + "ref": "DGXASAH8ZE", + "name": "Chamonix - Parking Grepon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.87171266, + 45.91714084 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDGXASAH8ZE", + "ref": "DGXASAH8ZE", + "name": "Chamonix - Parking Grepon", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.57371, + 46.39752 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHWS0KPAQIE", + "ref": "HWS0KPAQIE", + "name": "Evian-les-Bains, Route de Bissingues", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.57371, + 46.39752 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHWS0KPAQIE", + "ref": "HWS0KPAQIE", + "name": "Evian-les-Bains, Route de Bissingues", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.57371, + 46.39752 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHWS0KPAQIE", + "ref": "HWS0KPAQIE", + "name": "Evian-les-Bains, Route de Bissingues", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.164, + 45.97767 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBH9RGRYWWL", + "ref": "BH9RGRYWWL", + "name": "Charvonnex, RD 1203", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3533415, + 46.1632497 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDHQUXFGSJ0", + "ref": "DHQUXFGSJ0", + "name": "Fillinges, Parking Pont de Fillinges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.646246, + 45.93089 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRPQUB69LKZ", + "ref": "RPQUB69LKZ", + "name": "Sallanches, Parking du Centre Aquatique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.54229116, + 46.08405685 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDHK0LKAJ25", + "ref": "DHK0LKAJ25", + "name": "Thyez, Rue de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.202025, + 45.827454 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMX2GSCSOQH", + "ref": "MX2GSCSOQH", + "name": "Duingt, Place de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03918, + 45.9612 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAWWZZB", + "ref": "AWWZZB", + "name": "La Balme-De-Sillingy, Supermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1387291, + 45.9450798 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR8PQPHRS5Y", + "ref": "R8PQPHRS5Y", + "name": "Argonay, Pace Arthur Lavy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2688, + 46.13461 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR4SOF6UFOS", + "ref": "R4SOF6UFOS", + "name": "Reignier-Esery, Rue du Môle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.57371, + 46.39752 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHWS0KPAQIE", + "ref": "HWS0KPAQIE", + "name": "Evian-les-Bains, Route de Bissingues", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.27012, + 46.13779 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJDZRSUX6PK", + "ref": "JDZRSUX6PK", + "name": "Reignier-Esery, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.26369449, + 46.117427 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGYLUWGEFDI", + "ref": "GYLUWGEFDI", + "name": "Pers-Jussy, Route De Reignier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5491808, + 46.0568649 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPB92IX0BMR1", + "ref": "B92IX0BMR1", + "name": "Scionzier, Place du 18 Août", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09711, + 45.88625 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOPXMALLCMW", + "ref": "OPXMALLCMW", + "name": "Annecy (Seynod), Centre Nautique - Rue Jean Clerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.50848, + 46.08869 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYRUUXFJYTW", + "ref": "YRUUXFJYTW", + "name": "Marignier, Parking De La Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.50392, + 46.09152 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSMNREJQJRD", + "ref": "SMNREJQJRD", + "name": "Marignier, Parking De la passerelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.069028, + 46.047472 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBMT481UC66", + "ref": "BMT481UC66", + "name": "Roanne, Avenue de Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.069028, + 46.047472 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBMT481UC66", + "ref": "BMT481UC66", + "name": "Roanne, Avenue de Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.048321, + 46.070421 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFGWMD2UBVQ", + "ref": "FGWMD2UBVQ", + "name": "Mably, rue de Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85669, + 45.3394 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMNCBAF", + "ref": "MNCBAF", + "name": "Agnin, Place Publique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.598293, + 45.349774 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGGVI7THWNN", + "ref": "GGVI7THWNN", + "name": "Coublevie, Impasse Des Genets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5698368, + 45.3500388 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPJVJCPOJL2", + "ref": "PJVJCPOJL2", + "name": "Voiron, Hotel Best Western", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1450261, + 45.6165465 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIQXD4XD3T3", + "ref": "IQXD4XD3T3", + "name": "Villefontaine, 118 Avenue du Driève", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1450261, + 45.6165465 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIQXD4XD3T3", + "ref": "IQXD4XD3T3", + "name": "Villefontaine, 118 Avenue du Driève", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.588077, + 45.368226 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDBDELKZ02M", + "ref": "DBDELKZ02M", + "name": "Voiron, Avenue Jules Ravat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.90845, + 44.90066 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDDGRGVA9AS", + "ref": "DDGRGVA9AS", + "name": "Valbonnais, Rue Principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.070816, + 45.094943 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNV2EOLFRDB", + "ref": "NV2EOLFRDB", + "name": "Huez, Avenue du Rif Nel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.744811, + 44.960441 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYA9IINLOWM", + "ref": "YA9IINLOWM", + "name": "La Motte-D'Aveillans, Rue de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.476562, + 45.485728 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKSTK4RC9AC", + "ref": "KSTK4RC9AC", + "name": "Virieu, Rue de la Barbeniere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.476072, + 45.385062 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW3MF1HLOKZ", + "ref": "W3MF1HLOKZ", + "name": "Colombe, ZA Bievre Dauphine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.42419, + 45.443313 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUWVSZLJ2WU", + "ref": "UWVSZLJ2WU", + "name": "Châbons, Rue de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.75416, + 44.81704 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYYKO4XRXGU", + "ref": "YYKO4XRXGU", + "name": "Mens, Chemin Pré Colombon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.702787, + 44.970991 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUOEXIUJAXI", + "ref": "UOEXIUJAXI", + "name": "Monteynard, Chemin Pré Barbier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.362579, + 45.639335 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPUXYSIZM6Z", + "ref": "PUXYSIZM6Z", + "name": "Saint-Chef, Chemin du Ruisseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.63757, + 45.2958 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNWPV9SOVSE", + "ref": "NWPV9SOVSE", + "name": "Voreppe, Av Honoré De Balzac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85669, + 45.3394 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMNCBAF", + "ref": "MNCBAF", + "name": "Agnin, Place Publique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585147, + 45.536575 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFT0LK4QOQ6", + "ref": "FT0LK4QOQ6", + "name": "Les Abrets, Rue Clément Gondrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.234739, + 46.032035 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTUTD30X35M", + "ref": "TUTD30X35M", + "name": "Montagny, Impasse des sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84452, + 45.5589 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCDANYF", + "ref": "CDANYF", + "name": "Seyssuel, Rue Du Château Picard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.744811, + 44.960441 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYA9IINLOWM", + "ref": "YA9IINLOWM", + "name": "La Motte-D'Aveillans, Rue de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.476562, + 45.485728 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKSTK4RC9AC", + "ref": "KSTK4RC9AC", + "name": "Virieu, Rue de la Barbeniere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.75416, + 44.81704 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYYKO4XRXGU", + "ref": "YYKO4XRXGU", + "name": "Mens, Chemin Pré Colombon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.42419, + 45.443313 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUWVSZLJ2WU", + "ref": "UWVSZLJ2WU", + "name": "Châbons, Rue de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.90845, + 44.90066 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDDGRGVA9AS", + "ref": "DDGRGVA9AS", + "name": "Valbonnais, Rue Principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.420295, + 45.39962 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUYRULM0CVA", + "ref": "UYRULM0CVA", + "name": "Le Grand-Lemps, Parking de la Médiatheque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3891472, + 45.4907722 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLMO4CYWQ7Z", + "ref": "LMO4CYWQ7Z", + "name": "Biol, parking chemin de l usine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.070816, + 45.094943 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNV2EOLFRDB", + "ref": "NV2EOLFRDB", + "name": "Huez, Avenue du Rif Nel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.362579, + 45.639335 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPUXYSIZM6Z", + "ref": "PUXYSIZM6Z", + "name": "Saint-Chef, Chemin du Ruisseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.90136, + 45.4203 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXQSNJH", + "ref": "XQSNJH", + "name": "Vernioz, Place Jean Plantier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.90136, + 45.4203 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXQSNJH", + "ref": "XQSNJH", + "name": "Vernioz, Place Jean Plantier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.607645, + 45.587038 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPJQBERSPPR", + "ref": "PJQBERSPPR", + "name": "Aoste, Place Blanc Jolicoeur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84452, + 45.5589 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCDANYF", + "ref": "CDANYF", + "name": "Seyssuel, Rue Du Château Picard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00383028, + 45.5539001 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQJDZRN", + "ref": "QJDZRN", + "name": "Septème, Route De La Pivollée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00383028, + 45.5539001 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQJDZRN", + "ref": "QJDZRN", + "name": "Septème, Route De La Pivollée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.63757, + 45.2958 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNWPV9SOVSE", + "ref": "NWPV9SOVSE", + "name": "Voreppe, Av Honoré De Balzac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.544305, + 45.173596 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFDY5ILTA9I", + "ref": "FDY5ILTA9I", + "name": "Autrans, Parking Voie du 6 Fevrier 1968", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.248005, + 45.100607 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSOFCJVBSHW", + "ref": "SOFCJVBSHW", + "name": "Saint-Hilaire-Du-Rosier, Parking R21 - Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.513731, + 45.428405 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPICUCTV9PK5", + "ref": "ICUCTV9PK5", + "name": "Charavines, Place Du Marche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.08628, + 45.6679 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVHAMCV", + "ref": "VHAMCV", + "name": "Grenay, Chemin De La Croze", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.587042, + 45.366279 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPVTHLSH5KU", + "ref": "PVTHLSH5KU", + "name": "Voiron, Rue Claude Guillermoz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.587042, + 45.366279 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPVTHLSH5KU", + "ref": "PVTHLSH5KU", + "name": "Voiron, Rue Claude Guillermoz", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410519, + 45.207744 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHEQVLNPGAI", + "ref": "HEQVLNPGAI", + "name": "Vinay, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.412653, + 45.170807 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIVIDV8DXOP", + "ref": "IVIDV8DXOP", + "name": "Cognin-Les-Gorges, Place de L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.523008, + 45.543217 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXHERGSSQS7", + "ref": "XHERGSSQS7", + "name": "Saint-André-Le-Gaz, Parking - Rue Paul Langevin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.6714725, + 45.5346056 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPS17UEJU18E", + "ref": "S17UEJU18E", + "name": "Le Pont-De-Beauvoisin, Avenue Docteur Pravaz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16562, + 45.3936 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGAXPWP", + "ref": "GAXPWP", + "name": "Faramans, Parking Place Rue Centrale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16562, + 45.3936 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGAXPWP", + "ref": "GAXPWP", + "name": "Faramans, Parking Place Rue Centrale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9175, + 45.5281 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCYFHJJ", + "ref": "CYFHJJ", + "name": "Pont Eveque, Rue Louis Leydier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.34407, + 45.3407 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQNXYMD", + "ref": "QNXYMD", + "name": "Saint-Etienne-De-Saint-Geoirs, Place 19 Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1867, + 45.73356 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX3OK9GZBRM", + "ref": "X3OK9GZBRM", + "name": "Tigneu Jameyzieu, Place de Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1867, + 45.73356 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX3OK9GZBRM", + "ref": "X3OK9GZBRM", + "name": "Tigneu Jameyzieu, Place de Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.27874, + 45.59071 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRVKMQBXTEP", + "ref": "RVKMQBXTEP", + "name": "Bourgoin Jallieu, Place du champ de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.27874, + 45.59071 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRVKMQBXTEP", + "ref": "RVKMQBXTEP", + "name": "Bourgoin Jallieu, Place du champ de Mars", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.08628, + 45.6679 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVHAMCV", + "ref": "VHAMCV", + "name": "Grenay, Chemin De La Croze", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.076071, + 45.392746 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYHBVNIPGQG", + "ref": "YHBVNIPGQG", + "name": "Allevard, Rue De La Republique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.636785, + 45.455873 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSNJTCRYXPQ", + "ref": "SNJTCRYXPQ", + "name": "Saint-Geoire-En-Valdaine, Place André Chaize", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.476072, + 45.385062 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW3MF1HLOKZ", + "ref": "W3MF1HLOKZ", + "name": "Colombe, ZA Bievre Dauphine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12483, + 45.013227 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAGUITTXLTF", + "ref": "AGUITTXLTF", + "name": "Les Deux Alpes, Rue De La Muzelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.47326, + 45.674127 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKBRRRM6IGB", + "ref": "KBRRRM6IGB", + "name": "Morestel, Rue Clos Giraud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.887383, + 45.310644 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZ6CIOZHDCI", + "ref": "Z6CIOZHDCI", + "name": "Saint-Hilaire-Du-Touvet, Route des 3 Villages", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.671319, + 44.907212 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJCC4MS2WXT", + "ref": "JCC4MS2WXT", + "name": "Treffort, Parking Mairie - RD 59", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56859, + 44.902538 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGH4VMCSAZK", + "ref": "GH4VMCSAZK", + "name": "Gresse-En-Vercors, Parking Public - RD8A", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.343487, + 45.0595127 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGKE5UHODFR", + "ref": "GKE5UHODFR", + "name": "Pont En Royans, Impasse du Vivier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3891472, + 45.4907722 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLMO4CYWQ7Z", + "ref": "LMO4CYWQ7Z", + "name": "Biol, parking chemin de l usine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5761418, + 44.9751199 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNKBQJ8XDAJ", + "ref": "NKBQJ8XDAJ", + "name": "Château-Bernard, Parking de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.420295, + 45.39962 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUYRULM0CVA", + "ref": "UYRULM0CVA", + "name": "Le Grand-Lemps, Parking de la Médiatheque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.6337565, + 44.9155285 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSJCGRO59VL", + "ref": "SJCGRO59VL", + "name": "Monestier-De-Clermont, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992505, + 45.2996611 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEDM5XZ78S5", + "ref": "EDM5XZ78S5", + "name": "Theys, Parking RD 2558", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.020297, + 45.432277 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOYFFQZBYFP", + "ref": "OYFFQZBYFP", + "name": "Pontcharra, Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4705944, + 45.6513139 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPH6VUVLTMNF", + "ref": "H6VUVLTMNF", + "name": "Vezeronce-Curtin, Parking Place Clodomir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.99027, + 45.371901 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEMAQAISOIN", + "ref": "EMAQAISOIN", + "name": "Le Cheylas, Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.544305, + 45.173596 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFDY5ILTA9I", + "ref": "FDY5ILTA9I", + "name": "Autrans, Parking Voie du 6 Fevrier 1968", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0308339, + 45.0527698 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVS6SOGHFTE", + "ref": "VS6SOGHFTE", + "name": "Le Bourg d'Oisans, Rue Capitaine Meunier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0308339, + 45.0527698 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVS6SOGHFTE", + "ref": "VS6SOGHFTE", + "name": "Le Bourg d'Oisans, Rue Capitaine Meunier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.048525, + 45.376141 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOMMZ7I0YRZ", + "ref": "OMMZ7I0YRZ", + "name": "Crets-En-Belledonne, St Pierre d'Allevard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4828056, + 45.2955083 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDCNJKNE4HQ", + "ref": "DCNJKNE4HQ", + "name": "Tullins, Parking Place Jean Jaures", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.67848, + 44.757898 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFL632BDMHN", + "ref": "FL632BDMHN", + "name": "Lalley, Route de Mens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24093, + 45.258479 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBYXYO6YXTR", + "ref": "BYXYO6YXTR", + "name": "Roybon, Place Jean Perraud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.881739, + 45.283485 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLDJEOI8BK0", + "ref": "LDJEOI8BK0", + "name": "Crolles, Avenue Joliot Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.622193, + 44.826436 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPB46FPVWMDM", + "ref": "B46FPVWMDM", + "name": "Clelles, Parking Place Du Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.853393, + 45.415628 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPC4KRE3VPLQ", + "ref": "C4KRE3VPLQ", + "name": "Saint-Pierre-D'Entremont, Place du Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.048525, + 45.376141 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOMMZ7I0YRZ", + "ref": "OMMZ7I0YRZ", + "name": "Crets-En-Belledonne, St Pierre d'Allevard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.947731, + 44.817169 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUJZXTSOGHT", + "ref": "UJZXTSOGHT", + "name": "Corps, Parking RN 85", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.976983, + 44.8587405 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBJ9TZMED5E", + "ref": "BJ9TZMED5E", + "name": "La Salette-Fallavaux, Parking du Sanctuaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.398483, + 45.5444 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPISLSCODQRA", + "ref": "ISLSCODQRA", + "name": "Saint-Victor-De-Cessieu, Parking RD 51", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.504107, + 45.609835 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNZGBPIAKU2", + "ref": "NZGBPIAKU2", + "name": "Dolomieu, Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.527525, + 45.1274889 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTL3NL9QBRT", + "ref": "TL3NL9QBRT", + "name": "Meaudre, Place Gérard Clet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41652, + 45.581692 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGBOCPUKOTD", + "ref": "GBOCPUKOTD", + "name": "Rochetoirin, Square du 19 Mars 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.077811, + 45.056067 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKAH5MCU0PR", + "ref": "KAH5MCU0PR", + "name": "Auris, Place des Orgières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.077811, + 45.056067 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKAH5MCU0PR", + "ref": "KAH5MCU0PR", + "name": "Auris, Place des Orgières", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.775626, + 45.020777 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKZDPHHY9QV", + "ref": "KZDPHHY9QV", + "name": "Laffrey, Camping Grandes Sagnes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.932438, + 45.252998 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYPOTF1HQQB", + "ref": "YPOTF1HQQB", + "name": "Laval, Parkinng de la mairie - RD 59", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.538613, + 45.279523 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYALRDZFAG8", + "ref": "YALRDZFAG8", + "name": "Saint-Quentin-Sur-Isère, Route du Sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.964939, + 45.271113 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYLM0HHUMDL", + "ref": "YLM0HHUMDL", + "name": "Les Adrets, Parking salle polyvalente", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.18387, + 45.6147 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSKUWSYWI8M", + "ref": "SKUWSYWI8M", + "name": "Vaulx-Milieu, Parking Gymnase Rue des Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06886, + 45.08731 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBR5VEJ4LUC", + "ref": "BR5VEJ4LUC", + "name": "Huez, L'éclose", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06886, + 45.08731 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBR5VEJ4LUC", + "ref": "BR5VEJ4LUC", + "name": "Huez, L'éclose", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.888787, + 45.238327 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUFKDSKNUHA", + "ref": "UFKDSKNUHA", + "name": "Villard-Bonnot, Place de l'Espace Aragon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.326985, + 45.117174 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMD0GNWWEBH", + "ref": "MD0GNWWEBH", + "name": "Saint-Romans, Carrefour Des 4 Routes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8679, + 45.270236 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJB7O75BBKV", + "ref": "JB7O75BBKV", + "name": "Bernin, Place des Droits de l'Homme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.778528, + 44.95151 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPT2SVHB67IN", + "ref": "T2SVHB67IN", + "name": "Pierre-Châtel, Place des Anciens Combattants AFN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.583329, + 45.129631 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHUNZB9FZ2G", + "ref": "HUNZB9FZ2G", + "name": "Lans-En-Vercors, Voie du Tram", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03748, + 45.127339 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPK3YEM8DDW", + "ref": "PK3YEM8DDW", + "name": "Allemond, Chemin Des Ecoliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.218808, + 45.174304 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPA8IMSEI4DH", + "ref": "A8IMSEI4DH", + "name": "Saint-Antoine-L'Abbaye, Parking du Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.503642, + 45.350166 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQSGWZRZ34C", + "ref": "QSGWZRZ34C", + "name": "Rives, Place De La Liberation", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630496, + 45.170753 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAEOHHR2DTT", + "ref": "AEOHHR2DTT", + "name": "Saint-Nizier-Du-Moucherotte, Place du 14 Avril 1929", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.902, + 45.0906 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXC9VDLJNF4", + "ref": "XC9VDLJNF4", + "name": "Livet-Et-Gavet, Rue P. Saras", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55164676, + 45.07208481 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPW1ACYG8P4K", + "ref": "W1ACYG8P4K", + "name": "Villard-De-Lans, Place Mure Ravaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4431, + 45.562975 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZX5LMPLOCQ", + "ref": "ZX5LMPLOCQ", + "name": "La Tour-Du-Pin, Place du Champ de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.503642, + 45.350166 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQSGWZRZ34C", + "ref": "QSGWZRZ34C", + "name": "Rives, Place De La Liberation", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12483, + 45.013227 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAGUITTXLTF", + "ref": "AGUITTXLTF", + "name": "Les Deux Alpes, Rue De La Muzelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.778528, + 44.95151 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPT2SVHB67IN", + "ref": "T2SVHB67IN", + "name": "Pierre-Châtel, Place des Anciens Combattants AFN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.286122, + 45.55948 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJLQWOQOKKG", + "ref": "JLQWOQOKKG", + "name": "Meyrie, Rue des Grands Tournants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5271472, + 45.0326389 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUGZUCTHE6K", + "ref": "UGZUCTHE6K", + "name": "Corrençon-En-Vercors, Parking RD 215", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22312, + 45.54915 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQRKRSXDLOB", + "ref": "QRKRSXDLOB", + "name": "Crachier, Rue des Écoliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.30582, + 45.557352 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTJJ9KFP8UM", + "ref": "TJJ9KFP8UM", + "name": "Nivolas-Vermelle, Square Du 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.947731, + 44.817169 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUJZXTSOGHT", + "ref": "UJZXTSOGHT", + "name": "Corps, Parking RN 85", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.976983, + 44.8587405 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBJ9TZMED5E", + "ref": "BJ9TZMED5E", + "name": "La Salette-Fallavaux, Parking du Sanctuaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.504107, + 45.609835 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNZGBPIAKU2", + "ref": "NZGBPIAKU2", + "name": "Dolomieu, Rue du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4431, + 45.562975 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZX5LMPLOCQ", + "ref": "ZX5LMPLOCQ", + "name": "La Tour-Du-Pin, Place du Champ de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.752153, + 45.433729 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPGI7OZI3HX", + "ref": "PGI7OZI3HX", + "name": "Entre Deux Guiers, Avenue du 8 mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.815538, + 45.341601 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWJJPG4Z7MN", + "ref": "WJJPG4Z7MN", + "name": "Saint-Pierre-De-Chartreuse, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.853393, + 45.415628 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPC4KRE3VPLQ", + "ref": "C4KRE3VPLQ", + "name": "Saint-Pierre-D'Entremont, Place du Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87483, + 45.11147 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZUQ6OZWIHO", + "ref": "ZUQ6OZWIHO", + "name": "Chamrousse, Place des Trolles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.513731, + 45.428405 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPICUCTV9PK5", + "ref": "ICUCTV9PK5", + "name": "Charavines, Place Du Marche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.248005, + 45.100607 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSOFCJVBSHW", + "ref": "SOFCJVBSHW", + "name": "Saint-Hilaire-Du-Rosier, Parking R21 - Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.702787, + 44.970991 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUOEXIUJAXI", + "ref": "UOEXIUJAXI", + "name": "Monteynard, Chemin Pré Barbier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.856414, + 45.029217 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYWRAKBDU72", + "ref": "YWRAKBDU72", + "name": "La Morte, Place De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.737686, + 45.390089 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJYPPQA0TJQ", + "ref": "JYPPQA0TJQ", + "name": "Saint-Laurent-Du-Pont, PLACE DU 10E REGROUPEMENT PARKING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.820972, + 45.241288 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLGOYUQZSSS", + "ref": "LGOYUQZSSS", + "name": "Saint-Ismier, Chemin du Rozat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4828056, + 45.2955083 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDCNJKNE4HQ", + "ref": "DCNJKNE4HQ", + "name": "Tullins, Parking Place Jean Jaures", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.326985, + 45.117174 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMD0GNWWEBH", + "ref": "MD0GNWWEBH", + "name": "Saint-Romans, Carrefour Des 4 Routes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.218808, + 45.174304 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPA8IMSEI4DH", + "ref": "A8IMSEI4DH", + "name": "Saint-Antoine-L'Abbaye, Parking du Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41652, + 45.581692 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGBOCPUKOTD", + "ref": "GBOCPUKOTD", + "name": "Rochetoirin, Square du 19 Mars 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.398483, + 45.5444 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPISLSCODQRA", + "ref": "ISLSCODQRA", + "name": "Saint-Victor-De-Cessieu, Parking RD 51", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03748, + 45.127339 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPK3YEM8DDW", + "ref": "PK3YEM8DDW", + "name": "Allemond, Chemin Des Ecoliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.527525, + 45.1274889 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTL3NL9QBRT", + "ref": "TL3NL9QBRT", + "name": "Meaudre, Place Gérard Clet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.538613, + 45.279523 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYALRDZFAG8", + "ref": "YALRDZFAG8", + "name": "Saint-Quentin-Sur-Isère, Route du Sud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.803005, + 45.226977 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSNSM4WFCED", + "ref": "SNSM4WFCED", + "name": "Montbonnot-Saint-Martin, Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.902, + 45.0906 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXC9VDLJNF4", + "ref": "XC9VDLJNF4", + "name": "Livet-Et-Gavet, Rue P. Saras", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.775626, + 45.020777 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKZDPHHY9QV", + "ref": "KZDPHHY9QV", + "name": "Laffrey, Camping Grandes Sagnes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.964939, + 45.271113 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYLM0HHUMDL", + "ref": "YLM0HHUMDL", + "name": "Les Adrets, Parking salle polyvalente", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.888787, + 45.238327 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUFKDSKNUHA", + "ref": "UFKDSKNUHA", + "name": "Villard-Bonnot, Place de l'Espace Aragon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.932438, + 45.252998 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYPOTF1HQQB", + "ref": "YPOTF1HQQB", + "name": "Laval, Parkinng de la mairie - RD 59", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8679, + 45.270236 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJB7O75BBKV", + "ref": "JB7O75BBKV", + "name": "Bernin, Place des Droits de l'Homme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.439585, + 45.223157 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNAPOVOMVVA", + "ref": "NAPOVOMVVA", + "name": "L'Albenc, Place Jean Vinay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25441, + 45.759 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPELRFKZ", + "ref": "ELRFKZ", + "name": "Leyrieu, Place du 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06444, + 45.09059 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCMTC5TQSOW", + "ref": "CMTC5TQSOW", + "name": "Huez, Quartier Vieil Alpe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.925942, + 46.051708 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGZW7760W41", + "ref": "GZW7760W41", + "name": "Renaison, Parking place du 11 novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.067559, + 46.036543 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHZVBOQT3RZ", + "ref": "HZVBOQT3RZ", + "name": "Roanne, rue Alsace Lorraine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08037845, + 46.05971964 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNA1INBYCYV", + "ref": "NA1INBYCYV", + "name": "Roanne, Numériparc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0408092, + 46.0282332 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKUPUVRMJH2", + "ref": "KUPUVRMJH2", + "name": "Riorges, Parking Scarabée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.002576, + 46.051967 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNLVCDQEOPZ", + "ref": "NLVCDQEOPZ", + "name": "Saint-Leger-Sur-Roanne, Parking aéroport", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0503929, + 46.0302958 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYMXK9OQBKU", + "ref": "YMXK9OQBKU", + "name": "Roanne, Parking halle Vacheresse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0535, + 46.034167 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFSMDLX2G3U", + "ref": "FSMDLX2G3U", + "name": "Roanne, Clinique du Renaison", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.03728, + 45.996498 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRQVKOP24BA", + "ref": "RQVKOP24BA", + "name": "Villerest, Parking mairie de Villerest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.072804, + 46.036429 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZANUNBEQ2X", + "ref": "ZANUNBEQ2X", + "name": "Roanne, Rue Alphonse Coste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0350391, + 46.0434068 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYU5FX9XNFJ", + "ref": "YU5FX9XNFJ", + "name": "Riorges, Parking Place Jean Cocteau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.87573188, + 46.17604575 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPXOA6DYBFU", + "ref": "PXOA6DYBFU", + "name": "La Pacaudiere, Parking gymnase", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9309, + 46.052042 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMPFTAS9LHS", + "ref": "MPFTAS9LHS", + "name": "Renaison, Parking rue Robert Barathon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.076384, + 46.045465 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQFSWJ7JX52", + "ref": "QFSWJ7JX52", + "name": "Roanne, Parking gymnase boulevard de belgique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.079701, + 46.036818 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRVQSHO7N5L", + "ref": "RVQSHO7N5L", + "name": "Roanne, Parking Technopole Diderot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.082342, + 46.042776 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFJCDHNVFJV", + "ref": "FJCDHNVFJV", + "name": "Roanne, Boulevard Jean Baptiste Clément", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.052708, + 46.046313 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYZD20EWHZI", + "ref": "YZD20EWHZI", + "name": "Riorges, Parking gallieni", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.085646, + 46.029813 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSA4FXRNXKE", + "ref": "SA4FXRNXKE", + "name": "Le Coteau, Parking capitaine Aucey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.086384, + 46.080367 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHOQDKHZSAT", + "ref": "HOQDKHZSAT", + "name": "Mably, Bonvert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.060917, + 45.999397 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZKXXATFPZL", + "ref": "ZKXXATFPZL", + "name": "Commelle-Vernay, Parking allée du Parc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0747703, + 46.0414962 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFZYNI4UPQP", + "ref": "FZYNI4UPQP", + "name": "Roanne, Parking avenue de Lyon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.97673, + 45.3424 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO4FMROVXLK", + "ref": "O4FMROVXLK", + "name": "Goncelin, Rue de la Ventive", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.97673, + 45.3424 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO4FMROVXLK", + "ref": "O4FMROVXLK", + "name": "Goncelin, Rue de la Ventive", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0631344, + 46.0376702 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWIBXDEW7O1", + "ref": "WIBXDEW7O1", + "name": "Roanne, Parking Pierre Semard gare SNCF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0672642, + 46.0330277 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKMKK2WXJUA", + "ref": "KMKK2WXJUA", + "name": "Roanne, Centre commercial Saint Louis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08614, + 46.025338 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJ8KQANINTN", + "ref": "J8KQANINTN", + "name": "Le Coteau, Parking rue Bousson", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06897568, + 46.07763561 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJMKUVVPZI3", + "ref": "JMKUVVPZI3", + "name": "Mably, COSEC Mably", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0664465, + 46.0285599 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHFHFSNPFL8", + "ref": "HFHFSNPFL8", + "name": "Roanne, place Gabriel Péri", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0964775, + 46.0296215 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAU1YWRKLWE", + "ref": "AU1YWRKLWE", + "name": "Perreux, Parking super U", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.071512, + 46.045819 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPURQIIQNRHG", + "ref": "URQIIQNRHG", + "name": "Roanne, Parking place du champ de foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.097078, + 45.990188 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBVGPUCVDDT", + "ref": "BVGPUCVDDT", + "name": "Parigny, Parking de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0728184, + 46.0344539 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPE1O6R0CI23", + "ref": "E1O6R0CI23", + "name": "Roanne, Hôtel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057257, + 46.0384893 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPI87DFGGXNC", + "ref": "I87DFGGXNC", + "name": "Roanne, Victor Hugo Mulsant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0729027, + 46.03897 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEZSU5AL3I5", + "ref": "EZSU5AL3I5", + "name": "Roanne, Parking Salengro", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.059, + 46.0325625 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTPZYRFBBHS", + "ref": "TPZYRFBBHS", + "name": "Roanne, Parking Nauticum", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.931463, + 46.031274 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPYFXTRHNOV", + "ref": "PYFXTRHNOV", + "name": "Saint-Andre-D'Apchon, Parking place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.097078, + 45.990188 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBVGPUCVDDT", + "ref": "BVGPUCVDDT", + "name": "Parigny, Parking de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.812742, + 45.221615 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFDSV6LVTDM", + "ref": "FDSV6LVTDM", + "name": "Montbonnot, Innovallée", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.060917, + 45.999397 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZKXXATFPZL", + "ref": "ZKXXATFPZL", + "name": "Commelle-Vernay, Parking allée du Parc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0964775, + 46.0296215 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAU1YWRKLWE", + "ref": "AU1YWRKLWE", + "name": "Perreux, Parking super U", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.931463, + 46.031274 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPYFXTRHNOV", + "ref": "PYFXTRHNOV", + "name": "Saint-Andre-D'Apchon, Parking place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0672642, + 46.0330277 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKMKK2WXJUA", + "ref": "KMKK2WXJUA", + "name": "Roanne, Centre commercial Saint Louis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.072804, + 46.036429 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZANUNBEQ2X", + "ref": "ZANUNBEQ2X", + "name": "Roanne, Rue Alphonse Coste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.925942, + 46.051708 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGZW7760W41", + "ref": "GZW7760W41", + "name": "Renaison, Parking place du 11 novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.87573188, + 46.17604575 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPXOA6DYBFU", + "ref": "PXOA6DYBFU", + "name": "La Pacaudiere, Parking gymnase", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06897568, + 46.07763561 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJMKUVVPZI3", + "ref": "JMKUVVPZI3", + "name": "Mably, COSEC Mably", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0747703, + 46.0414962 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFZYNI4UPQP", + "ref": "FZYNI4UPQP", + "name": "Roanne, Parking avenue de Lyon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0631344, + 46.0376702 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWIBXDEW7O1", + "ref": "WIBXDEW7O1", + "name": "Roanne, Parking Pierre Semard gare SNCF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0664465, + 46.0285599 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHFHFSNPFL8", + "ref": "HFHFSNPFL8", + "name": "Roanne, place Gabriel Péri", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.071512, + 46.045819 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPURQIIQNRHG", + "ref": "URQIIQNRHG", + "name": "Roanne, Parking place du champ de foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.079701, + 46.036818 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRVQSHO7N5L", + "ref": "RVQSHO7N5L", + "name": "Roanne, Parking Technopole Diderot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.076384, + 46.045465 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQFSWJ7JX52", + "ref": "QFSWJ7JX52", + "name": "Roanne, Parking gymnase boulevard de belgique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.048321, + 46.070421 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFGWMD2UBVQ", + "ref": "FGWMD2UBVQ", + "name": "Mably, rue de Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.234739, + 46.032035 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTUTD30X35M", + "ref": "TUTD30X35M", + "name": "Montagny, Impasse des sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.085646, + 46.029813 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSA4FXRNXKE", + "ref": "SA4FXRNXKE", + "name": "Le Coteau, Parking capitaine Aucey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9309, + 46.052042 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMPFTAS9LHS", + "ref": "MPFTAS9LHS", + "name": "Renaison, Parking rue Robert Barathon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.052708, + 46.046313 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYZD20EWHZI", + "ref": "YZD20EWHZI", + "name": "Riorges, Parking gallieni", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0503929, + 46.0302958 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYMXK9OQBKU", + "ref": "YMXK9OQBKU", + "name": "Roanne, Parking halle Vacheresse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057257, + 46.0384893 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPI87DFGGXNC", + "ref": "I87DFGGXNC", + "name": "Roanne, Victor Hugo Mulsant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08614, + 46.025338 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJ8KQANINTN", + "ref": "J8KQANINTN", + "name": "Le Coteau, Parking rue Bousson", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0729027, + 46.03897 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEZSU5AL3I5", + "ref": "EZSU5AL3I5", + "name": "Roanne, Parking Salengro", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.086384, + 46.080367 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHOQDKHZSAT", + "ref": "HOQDKHZSAT", + "name": "Mably, Bonvert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0728184, + 46.0344539 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPE1O6R0CI23", + "ref": "E1O6R0CI23", + "name": "Roanne, Hôtel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.059, + 46.0325625 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTPZYRFBBHS", + "ref": "TPZYRFBBHS", + "name": "Roanne, Parking Nauticum", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.03728, + 45.996498 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRQVKOP24BA", + "ref": "RQVKOP24BA", + "name": "Villerest, Parking mairie de Villerest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.082342, + 46.042776 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFJCDHNVFJV", + "ref": "FJCDHNVFJV", + "name": "Roanne, Boulevard Jean Baptiste Clément", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08037845, + 46.05971964 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNA1INBYCYV", + "ref": "NA1INBYCYV", + "name": "Roanne, Numériparc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0350391, + 46.0434068 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYU5FX9XNFJ", + "ref": "YU5FX9XNFJ", + "name": "Riorges, Parking Place Jean Cocteau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0408092, + 46.0282332 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKUPUVRMJH2", + "ref": "KUPUVRMJH2", + "name": "Riorges, Parking Scarabée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0535, + 46.034167 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFSMDLX2G3U", + "ref": "FSMDLX2G3U", + "name": "Roanne, Clinique du Renaison", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.067559, + 46.036543 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHZVBOQT3RZ", + "ref": "HZVBOQT3RZ", + "name": "Roanne, rue Alsace Lorraine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.002576, + 46.051967 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNLVCDQEOPZ", + "ref": "NLVCDQEOPZ", + "name": "Saint-Leger-Sur-Roanne, Parking aéroport", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.812742, + 45.221615 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFDSV6LVTDM", + "ref": "FDSV6LVTDM", + "name": "Montbonnot, Innovallée", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16856, + 45.7503 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPERWQRN", + "ref": "ERWQRN", + "name": "Pont-De-Cheruy, 10 Rue Grammont", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.91129, + 45.5053 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMAMVPH", + "ref": "MAMVPH", + "name": "Jardin, Route De Berardier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00648, + 45.4409 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHXTWYM", + "ref": "HXTWYM", + "name": "Cour-Et-Buis, Place de la Croix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80409, + 45.3499 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYCJKYF", + "ref": "YCJKYF", + "name": "Salaise-Sur-Sanne, Place Publique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22137, + 45.7563 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPELMCAG", + "ref": "ELMCAG", + "name": "Saint-Romain-De-Jalionas, Rue des Violettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80409, + 45.3499 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYCJKYF", + "ref": "YCJKYF", + "name": "Salaise-Sur-Sanne, Place Publique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.33732, + 45.8525 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGARMFX", + "ref": "GARMFX", + "name": "La Balme-Les-Grottes, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.33732, + 45.8525 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGARMFX", + "ref": "GARMFX", + "name": "La Balme-Les-Grottes, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05698, + 45.3391 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYTBQSB", + "ref": "YTBQSB", + "name": "Beaurepaire, Place du Jeu de Paume", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16758, + 45.6793 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNNKJNY", + "ref": "NNKJNY", + "name": "Chamagnieu, Route de Vienne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16758, + 45.6793 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNNKJNY", + "ref": "NNKJNY", + "name": "Chamagnieu, Route de Vienne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05698, + 45.3391 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYTBQSB", + "ref": "YTBQSB", + "name": "Beaurepaire, Place du Jeu de Paume", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.19798, + 45.7681 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZFXETG", + "ref": "ZFXETG", + "name": "Chavanoz, Parking Route de Loyettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24647, + 45.7252 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGRPQDU", + "ref": "GRPQDU", + "name": "Cremieu, Parking Rue du 19 Mars 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24647, + 45.7252 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGRPQDU", + "ref": "GRPQDU", + "name": "Cremieu, Parking Rue du 19 Mars 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22137, + 45.7563 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPELMCAG", + "ref": "ELMCAG", + "name": "Saint-Romain-De-Jalionas, Rue des Violettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.14015, + 45.4975 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPACUAKZ", + "ref": "ACUAKZ", + "name": "Saint-Jean-De-Bournay, Place Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.14015, + 45.4975 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPACUAKZ", + "ref": "ACUAKZ", + "name": "Saint-Jean-De-Bournay, Place Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.19798, + 45.7681 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZFXETG", + "ref": "ZFXETG", + "name": "Chavanoz, Parking Route de Loyettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.622193, + 44.826436 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPB46FPVWMDM", + "ref": "B46FPVWMDM", + "name": "Clelles, Parking Place Du Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26696, + 45.3291 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNWEPJA", + "ref": "NWEPJA", + "name": "Saint-Simeon-De-Bressieux, Rue de la Cote", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76984, + 45.3191 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKHRDRG", + "ref": "KHRDRG", + "name": "Sablons, Rue Gustave Toursier - Parking", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25441, + 45.759 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPELRFKZ", + "ref": "ELRFKZ", + "name": "Leyrieu, Place du 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.01369, + 45.5054 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAZPDRF", + "ref": "AZPDRF", + "name": "Moidieu-Detourbe, Mouterle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9175, + 45.5281 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCYFHJJ", + "ref": "CYFHJJ", + "name": "Pont Eveque, Rue Louis Leydier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06444, + 45.09059 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCMTC5TQSOW", + "ref": "CMTC5TQSOW", + "name": "Huez, Quartier Vieil Alpe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.01369, + 45.5054 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAZPDRF", + "ref": "AZPDRF", + "name": "Moidieu-Detourbe, Mouterle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06389, + 45.6309 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJUZPMH", + "ref": "JUZPMH", + "name": "Heyrieux, Avenue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.319735, + 45.68719 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSMK51LMAB7", + "ref": "SMK51LMAB7", + "name": "Trept, Place des Anciens Combattants AFN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26696, + 45.3291 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNWEPJA", + "ref": "NWEPJA", + "name": "Saint-Simeon-De-Bressieux, Rue de la Cote", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06389, + 45.6309 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJUZPMH", + "ref": "JUZPMH", + "name": "Heyrieux, Avenue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80239, + 45.3621 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPREMDRY", + "ref": "REMDRY", + "name": "Roussillon, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.91129, + 45.5053 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMAMVPH", + "ref": "MAMVPH", + "name": "Jardin, Route De Berardier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76984, + 45.3191 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKHRDRG", + "ref": "KHRDRG", + "name": "Sablons, Rue Gustave Toursier - Parking", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80239, + 45.3621 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPREMDRY", + "ref": "REMDRY", + "name": "Roussillon, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.881739, + 45.283485 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLDJEOI8BK0", + "ref": "LDJEOI8BK0", + "name": "Crolles, Avenue Joliot Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.34407, + 45.3407 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQNXYMD", + "ref": "QNXYMD", + "name": "Saint-Etienne-De-Saint-Geoirs, Place 19 Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26067, + 45.3918 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLCJTWZ", + "ref": "LCJTWZ", + "name": "La Côte-Saint-Andre, Place Hector Berlioz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83469, + 45.473 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO85SVV2ACJ", + "ref": "O85SVV2ACJ", + "name": "Reventin Vaugris, Parking du Gymnase", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26067, + 45.3918 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLCJTWZ", + "ref": "LCJTWZ", + "name": "La Côte-Saint-Andre, Place Hector Berlioz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03424, + 45.0555 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHGHRMSS0WP", + "ref": "HGHRMSS0WP", + "name": "Le Bourg-D'Oisans, Rue Des Colporteurs", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86115, + 44.8644 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTMF2EKI4VW", + "ref": "TMF2EKI4VW", + "name": "La Salle-En-Beaumont, RN85", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.54047, + 45.6267 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYLGMS2ZOQX", + "ref": "YLGMS2ZOQX", + "name": "Les Avenières, Rue Jean Vittoz", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.6381, + 44.7888 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQP0YIL8IFI", + "ref": "QP0YIL8IFI", + "name": "Le Monestier-Du-Percy, RD 1075", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24054, + 45.59485 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJLVMUSR7MM", + "ref": "JLVMUSR7MM", + "name": "Bourgoin Jallieu, Allée de l'Eden (Flunch)", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24054, + 45.59485 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJLVMUSR7MM", + "ref": "JLVMUSR7MM", + "name": "Bourgoin Jallieu, Allée de l'Eden (Flunch)", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29093, + 45.4559 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDNLKCM", + "ref": "DNLKCM", + "name": "Champier, Route du 16 Mai 1944", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29093, + 45.4559 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDNLKCM", + "ref": "DNLKCM", + "name": "Champier, Route du 16 Mai 1944", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.31921, + 45.1552 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZW7N7BPXFX", + "ref": "ZW7N7BPXFX", + "name": "Saint-Marcellin, Place du Champ de Mars", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.31921, + 45.1552 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZW7N7BPXFX", + "ref": "ZW7N7BPXFX", + "name": "Saint-Marcellin, Place du Champ de Mars", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.155459, + 45.613229 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPG7PHWB2AIL", + "ref": "G7PHWB2AIL", + "name": "Villefontaine, Rue Serge Mauroit", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.155459, + 45.613229 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPG7PHWB2AIL", + "ref": "G7PHWB2AIL", + "name": "Villefontaine, Rue Serge Mauroit", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03424, + 45.0555 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHGHRMSS0WP", + "ref": "HGHRMSS0WP", + "name": "Le Bourg-D'Oisans, Rue Des Colporteurs", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16856, + 45.7503 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPERWQRN", + "ref": "ERWQRN", + "name": "Pont-De-Cheruy, 10 Rue Grammont", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83469, + 45.473 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO85SVV2ACJ", + "ref": "O85SVV2ACJ", + "name": "Reventin Vaugris, Parking du Gymnase", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.54047, + 45.6267 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYLGMS2ZOQX", + "ref": "YLGMS2ZOQX", + "name": "Les Avenières, Rue Jean Vittoz", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59367, + 45.3633 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNDUJH0PIS3", + "ref": "NDUJH0PIS3", + "name": "Voiron, Avenue Francois Mitterand", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.6381, + 44.7888 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQP0YIL8IFI", + "ref": "QP0YIL8IFI", + "name": "Le Monestier-Du-Percy, RD 1075", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2770589, + 45.5937983 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNPBXS3RZKU", + "ref": "NPBXS3RZKU", + "name": "Bourgoin Jallieu, 14 Rue Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00648, + 45.4409 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHXTWYM", + "ref": "HXTWYM", + "name": "Cour-Et-Buis, Place de la Croix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77447, + 45.3964 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFELLSQ", + "ref": "FELLSQ", + "name": "Saint-Maurice-L'Exil, Espace Marcel Noyer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77447, + 45.3964 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFELLSQ", + "ref": "FELLSQ", + "name": "Saint-Maurice-L'Exil, Espace Marcel Noyer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.12667, + 45.6934 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFMSJHW", + "ref": "FMSJHW", + "name": "Satolas Et Bonce, Parking Place De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.276082, + 45.58996 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUSPQX0MDQ8", + "ref": "USPQX0MDQ8", + "name": "Bourgoin Jallieu, Place Jean Jacques Rousseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.12667, + 45.6934 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFMSJHW", + "ref": "FMSJHW", + "name": "Satolas Et Bonce, Parking Place De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12483, + 45.010306 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYSINDSLO2T", + "ref": "YSINDSLO2T", + "name": "Les-Deux-Alpes, Place des Deux Alpes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86115, + 44.8644 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTMF2EKI4VW", + "ref": "TMF2EKI4VW", + "name": "La Salle-En-Beaumont, RN85", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.067759, + 45.09145 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCXDGTIEHUK", + "ref": "CXDGTIEHUK", + "name": "Huez, Avenue des Jeux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.276082, + 45.58996 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUSPQX0MDQ8", + "ref": "USPQX0MDQ8", + "name": "Bourgoin Jallieu, Place Jean Jacques Rousseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.067759, + 45.09145 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCXDGTIEHUK", + "ref": "CXDGTIEHUK", + "name": "Huez, Avenue des Jeux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2770589, + 45.5937983 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNPBXS3RZKU", + "ref": "NPBXS3RZKU", + "name": "Bourgoin Jallieu, 14 Rue Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12483, + 45.010306 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYSINDSLO2T", + "ref": "YSINDSLO2T", + "name": "Les-Deux-Alpes, Place des Deux Alpes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59367, + 45.3633 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNDUJH0PIS3", + "ref": "NDUJH0PIS3", + "name": "Voiron, Avenue Francois Mitterand", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1298, + 43.1062 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNX8FKWS8GN", + "ref": "NX8FKWS8GN", + "name": "Hyères, Parking espace 3000", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1742548, + 46.1581686 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPICY3X7IVQQ", + "ref": "ICY3X7IVQQ", + "name": "Charlieu, Parking place de la bouverie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.016902, + 43.124845 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVAJMYZYNQ8", + "ref": "VAJMYZYNQ8", + "name": "La Garde, Parking des Bleuets Avenue Jules Ferry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.784201, + 43.835102 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTGQQ9EOFPO", + "ref": "TGQQ9EOFPO", + "name": "Manosque, Boulevard les Tilleuls", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.238784, + 44.090763 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCA3BLMPVBD", + "ref": "CA3BLMPVBD", + "name": "Digne-Les-Bains, Avenue Bad Merghenteim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81235, + 43.9489 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCCRCZB", + "ref": "CCRCZB", + "name": "Entrevaux, Parking de La gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81235, + 43.9489 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCCRCZB", + "ref": "CCRCZB", + "name": "Entrevaux, Parking de La gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.7499732, + 43.8109723 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZQJLTS8LZQ", + "ref": "ZQJLTS8LZQ", + "name": "Pierrevert, Place des Ferrages", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09219, + 43.8167 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMQTUEZ", + "ref": "MQTUEZ", + "name": "Riez, Boulevard de Narwick", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.09219, + 43.8167 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMQTUEZ", + "ref": "MQTUEZ", + "name": "Riez, Boulevard de Narwick", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.34313, + 43.7805 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXBFXBY", + "ref": "XBFXBY", + "name": "La Palud-Sur-Verdon, Le Vignaou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5085, + 43.9672 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUQWWKV", + "ref": "UQWWKV", + "name": "Saint-Andre-Les-Alpes, Place de Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94514, + 44.1987 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMNVNQJ", + "ref": "MNVNQJ", + "name": "Sisteron, Place du Dauphiné", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.805136, + 43.829352 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQLKVQH0DOT", + "ref": "QLKVQH0DOT", + "name": "Manosque, Avenue du Dr Bernard Foussier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.7837, + 43.83019 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRAATACOPRW", + "ref": "RAATACOPRW", + "name": "Manosque, Parc du souvenir français Pkg Drouille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.796637, + 43.83 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTUDR0E6GUP", + "ref": "TUDR0E6GUP", + "name": "Manosque, Bas Saint Sépulcre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78056, + 43.83339 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVDPQRVEOZH", + "ref": "VDPQRVEOZH", + "name": "Manosque, Parking Guilhempierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.858366, + 44.266426 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZ3QABMCZC1", + "ref": "Z3QABMCZC1", + "name": "Mison, Les Armands", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992738, + 44.074343 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIXBABVQUXW", + "ref": "IXBABVQUXW", + "name": "Chateau-Arnoux-Saint-Auban, Rue Adrien Badin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.626622, + 44.241315 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYVGSKBCI4J", + "ref": "YVGSKBCI4J", + "name": "Allos, Parking La Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94514, + 44.1987 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMNVNQJ", + "ref": "MNVNQJ", + "name": "Sisteron, Place du Dauphiné", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.230547, + 44.09287 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUBG4WBEFLR", + "ref": "UBG4WBEFLR", + "name": "Digne-Les-Bains, Gare Routière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12718, + 43.8627 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKDUPPQ", + "ref": "KDUPPQ", + "name": "Puimoisson, Rue Hoche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.7499732, + 43.8109723 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZQJLTS8LZQ", + "ref": "ZQJLTS8LZQ", + "name": "Pierrevert, Place des Ferrages", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.98638, + 43.8365 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPACHVAB", + "ref": "ACHVAB", + "name": "Valensole, Parking Salle Polyvalente", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.66765, + 43.9654 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHWBKSS", + "ref": "HWBKSS", + "name": "Annot, Place du Germe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62843, + 44.0379 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZCALPN", + "ref": "ZCALPN", + "name": "Banon, Place de La république", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5692, + 44.290693 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPS4VXC1ZBVR", + "ref": "S4VXC1ZBVR", + "name": "Allos, La Foux d'Allos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.66765, + 43.9654 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHWBKSS", + "ref": "HWBKSS", + "name": "Annot, Place du Germe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.54716, + 44.0824 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSZNPWU", + "ref": "SZNPWU", + "name": "Revest-Du-Bion, Avenue de Miravail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.717422, + 43.909233 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBWUC0Z5W3X", + "ref": "BWUC0Z5W3X", + "name": "Saint-Michel-L'Observatoire, Pkg De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35781, + 44.3521 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPMYFKJ", + "ref": "PMYFKJ", + "name": "Seyne, Saint Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13566, + 44.0327 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFACVXR", + "ref": "FACVXR", + "name": "Le Chaffaut-Saint-Jurson, Lycée Carmejane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.805136, + 43.829352 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQLKVQH0DOT", + "ref": "QLKVQH0DOT", + "name": "Manosque, Avenue du Dr Bernard Foussier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.890822, + 43.927252 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUKPJV9OC6M", + "ref": "UKPJV9OC6M", + "name": "La Brillanne, Place Bon Accueil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88646, + 43.7569 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFANRVL", + "ref": "FANRVL", + "name": "Greoux-Les-Bains, Parking Ecociné Verdon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.735105, + 44.419531 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXQQCZS16EH", + "ref": "XQQCZS16EH", + "name": "Jausiers, Place d'Arnaud Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.918223, + 43.917451 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPANDDND3BDK", + "ref": "ANDDND3BDK", + "name": "Oraison, Parking de La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.23938, + 44.094728 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAHJLY7UVLM", + "ref": "AHJLY7UVLM", + "name": "Digne-Les-Bains, Place Joseph Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13566, + 44.0327 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFACVXR", + "ref": "FACVXR", + "name": "Le Chaffaut-Saint-Jurson, Lycée Carmejane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.765247, + 43.786687 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDBC1X2LWNF", + "ref": "DBC1X2LWNF", + "name": "Sainte-Tulle, Place du Théatre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12718, + 43.8627 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKDUPPQ", + "ref": "KDUPPQ", + "name": "Puimoisson, Rue Hoche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.680762, + 44.374162 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJZZ4ARDOAD", + "ref": "JZZ4ARDOAD", + "name": "Enchastrayes, Le Sauze", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.60302, + 44.3699 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPM7ZASMMQY6", + "ref": "M7ZASMMQY6", + "name": "Uvernet-Fours, Pra Loup", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.7837, + 43.83019 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRAATACOPRW", + "ref": "RAATACOPRW", + "name": "Manosque, Parc du souvenir français Pkg Drouille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.60302, + 44.3699 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPM7ZASMMQY6", + "ref": "M7ZASMMQY6", + "name": "Uvernet-Fours, Pra Loup", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02821, + 44.3425 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTTJZND", + "ref": "TTJZND", + "name": "La Motte-Du-Caire, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.60693, + 44.171957 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCDVWPX", + "ref": "CDVWPX", + "name": "Les Omergues, Entrée du village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.34313, + 43.7805 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXBFXBY", + "ref": "XBFXBY", + "name": "La Palud-Sur-Verdon, Le Vignaou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.038995, + 43.698242 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOBSGYTJHXU", + "ref": "OBSGYTJHXU", + "name": "Quinson, Grand Parking", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.60693, + 44.171957 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCDVWPX", + "ref": "CDVWPX", + "name": "Les Omergues, Entrée du village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.717422, + 43.909233 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBWUC0Z5W3X", + "ref": "BWUC0Z5W3X", + "name": "Saint-Michel-L'Observatoire, Pkg De La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.15186, + 43.7592 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVSQHNQ", + "ref": "VSQHNQ", + "name": "Sainte-Croix-De-Verdon, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3296, + 46.56562 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPIHT6XLNGT", + "ref": "PIHT6XLNGT", + "name": "Moulins, Rue Pierre Ardillon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1959, + 46.10168 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJCAUYPEAYA", + "ref": "JCAUYPEAYA", + "name": "Gannat, Place Rantian 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41637, + 46.12908 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWD8KTGUBE3", + "ref": "WD8KTGUBE3", + "name": "Vichy, Boulevard Maréchal de Lattre de Tassigny", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41637, + 46.12908 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWD8KTGUBE3", + "ref": "WD8KTGUBE3", + "name": "Vichy, Boulevard Maréchal de Lattre de Tassigny", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3296, + 46.56562 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPIHT6XLNGT", + "ref": "PIHT6XLNGT", + "name": "Moulins, Rue Pierre Ardillon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32408, + 46.5712 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMOULINSHOPITAL", + "ref": "moulinshopital", + "name": "Moulins, Hôpital", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.396184, + 46.127122 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAQUALUDIQUE", + "ref": "aqualudique", + "name": "Bellerive sur Allier, Parking Aqualudique", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02821, + 44.3425 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTTJZND", + "ref": "TTJZND", + "name": "La Motte-Du-Caire, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.858366, + 44.266426 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZ3QABMCZC1", + "ref": "Z3QABMCZC1", + "name": "Mison, Les Armands", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.009624, + 44.095176 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWXTEE2IGIX", + "ref": "WXTEE2IGIX", + "name": "Chateau-Arnoux-Saint-Auban, Pl. de la Résistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.038995, + 43.698242 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOBSGYTJHXU", + "ref": "OBSGYTJHXU", + "name": "Quinson, Grand Parking", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.842387, + 43.876715 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHU7ZHXIDPR", + "ref": "HU7ZHXIDPR", + "name": "Volx, Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.23938, + 44.094728 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAHJLY7UVLM", + "ref": "AHJLY7UVLM", + "name": "Digne-Les-Bains, Place Joseph Fontaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.842387, + 43.876715 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHU7ZHXIDPR", + "ref": "HU7ZHXIDPR", + "name": "Volx, Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78056, + 43.83339 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVDPQRVEOZH", + "ref": "VDPQRVEOZH", + "name": "Manosque, Parking Guilhempierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78116, + 44.043 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLPQNUV", + "ref": "LPQNUV", + "name": "Saint-Etienne-Les-Orgues, Parking de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78116, + 44.043 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLPQNUV", + "ref": "LPQNUV", + "name": "Saint-Etienne-Les-Orgues, Parking de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.784201, + 43.835102 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTGQQ9EOFPO", + "ref": "TGQQ9EOFPO", + "name": "Manosque, Boulevard les Tilleuls", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.31201, + 44.3711 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUYBDVS", + "ref": "UYBDVS", + "name": "Selonnet, Place de La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992738, + 44.074343 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIXBABVQUXW", + "ref": "IXBABVQUXW", + "name": "Chateau-Arnoux-Saint-Auban, Rue Adrien Badin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.31201, + 44.3711 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUYBDVS", + "ref": "UYBDVS", + "name": "Selonnet, Place de La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.009624, + 44.095176 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWXTEE2IGIX", + "ref": "WXTEE2IGIX", + "name": "Chateau-Arnoux-Saint-Auban, Pl. de la Résistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.230547, + 44.09287 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUBG4WBEFLR", + "ref": "UBG4WBEFLR", + "name": "Digne-Les-Bains, Gare Routière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.765247, + 43.786687 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDBC1X2LWNF", + "ref": "DBC1X2LWNF", + "name": "Sainte-Tulle, Place du Théatre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5085, + 43.9672 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUQWWKV", + "ref": "UQWWKV", + "name": "Saint-Andre-Les-Alpes, Place de Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.238784, + 44.090763 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCA3BLMPVBD", + "ref": "CA3BLMPVBD", + "name": "Digne-Les-Bains, Avenue Bad Merghenteim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.15186, + 43.7592 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVSQHNQ", + "ref": "VSQHNQ", + "name": "Sainte-Croix-De-Verdon, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.98638, + 43.8365 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPACHVAB", + "ref": "ACHVAB", + "name": "Valensole, Parking Salle Polyvalente", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.680762, + 44.374162 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJZZ4ARDOAD", + "ref": "JZZ4ARDOAD", + "name": "Enchastrayes, Le Sauze", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32408, + 46.5712 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMOULINSHOPITAL", + "ref": "moulinshopital", + "name": "Moulins, Hôpital", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.18529, + 44.0759 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEHWYSYEPGP", + "ref": "EHWYSYEPGP", + "name": "Digne-Les-Bains, Avenue Gutenberg", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.95677, + 44.0431 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPORK5FI3ZMM", + "ref": "ORK5FI3ZMM", + "name": "Peyruis, Rue des Oliviers", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.95677, + 44.0431 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPORK5FI3ZMM", + "ref": "ORK5FI3ZMM", + "name": "Peyruis, Rue des Oliviers", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.651513, + 44.38584 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAP4KK13HNF", + "ref": "AP4KK13HNF", + "name": "Barcelonnette, Place Aimé Gassier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78727, + 43.83218 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIC3VKFYDUZ", + "ref": "IC3VKFYDUZ", + "name": "Manosque, Parking du Riou", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81066, + 43.9488 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZBTMTF", + "ref": "ZBTMTF", + "name": "Entrevaux, Parking Les Lauves", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81066, + 43.9488 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZBTMTF", + "ref": "ZBTMTF", + "name": "Entrevaux, Parking Les Lauves", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.18529, + 44.0759 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEHWYSYEPGP", + "ref": "EHWYSYEPGP", + "name": "Digne-Les-Bains, Avenue Gutenberg", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78727, + 43.83218 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIC3VKFYDUZ", + "ref": "IC3VKFYDUZ", + "name": "Manosque, Parking du Riou", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88641, + 43.75702 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZAO4L8TSGT", + "ref": "ZAO4L8TSGT", + "name": "Greoux-les-bains, Parking Ecociné Verdon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.651513, + 44.38584 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAP4KK13HNF", + "ref": "AP4KK13HNF", + "name": "Barcelonnette, Place Aimé Gassier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94565, + 44.1913 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEVXVDF", + "ref": "EVXVDF", + "name": "Sisteron, Parking de La Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88641, + 43.75702 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZAO4L8TSGT", + "ref": "ZAO4L8TSGT", + "name": "Greoux-les-bains, Parking Ecociné Verdon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94565, + 44.1913 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEVXVDF", + "ref": "EVXVDF", + "name": "Sisteron, Parking de La Gare", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.43503, + 44.4282 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLWBQSZ", + "ref": "LWBQSZ", + "name": "Le Lauzet-Ubaye, Place de La Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.43503, + 44.4282 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLWBQSZ", + "ref": "LWBQSZ", + "name": "Le Lauzet-Ubaye, Place de La Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.591744, + 43.855664 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLK9N6FGDHT", + "ref": "LK9N6FGDHT", + "name": "Cereste, Parking Les Aires", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.515089, + 43.846434 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZVO21H4TWD", + "ref": "ZVO21H4TWD", + "name": "Castellane, Parking de La Boudousque", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.515089, + 43.846434 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZVO21H4TWD", + "ref": "ZVO21H4TWD", + "name": "Castellane, Parking de La Boudousque", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22201, + 43.8438 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVHJVGW", + "ref": "VHJVGW", + "name": "Moustiers-Sainte-Marie, Pkg interm.", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.57977, + 44.987 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCZTFGE", + "ref": "CZTFGE", + "name": "Lamastre, Place Predon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.59495, + 44.7351 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXOOHDY43SH", + "ref": "XOOHDY43SH", + "name": "Privas, Cours Saint Louis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.59495, + 44.7351 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXOOHDY43SH", + "ref": "XOOHDY43SH", + "name": "Privas, Cours Saint Louis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70596, + 45.2618 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPF5GG4XPJNB", + "ref": "F5GG4XPJNB", + "name": "Davezieux, Aire de Covoiturage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.40901, + 44.6124 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSRX4IK756Y", + "ref": "SRX4IK756Y", + "name": "Saint-Didier-Sous-Aubenas, Place des Vignettes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70596, + 45.2618 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPF5GG4XPJNB", + "ref": "F5GG4XPJNB", + "name": "Davezieux, Aire de Covoiturage", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.42441, + 44.9059 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUJNXRL", + "ref": "UJNXRL", + "name": "Le Cheylard, Place de la Guinguette", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.57977, + 44.987 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCZTFGE", + "ref": "CZTFGE", + "name": "Lamastre, Place Predon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-24", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.11127, + 44.6663 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUVUSPH", + "ref": "UVUSPH", + "name": "Mayres, Place du Chambon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.79858, + 43.817 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIZWGVKKKLW", + "ref": "IZWGVKKKLW", + "name": "Manosque, Parking de Pré Combeaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.11127, + 44.6663 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUVUSPH", + "ref": "UVUSPH", + "name": "Mayres, Place du Chambon", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.42441, + 44.9059 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUJNXRL", + "ref": "UJNXRL", + "name": "Le Cheylard, Place de la Guinguette", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76676, + 45.317 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGB7J68Q0BE", + "ref": "GB7J68Q0BE", + "name": "Serrières, Quai Jules Roche Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64673, + 44.3671 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHF7UWCT3XU", + "ref": "HF7UWCT3XU", + "name": "Bourg-Saint-Andeol, Place Jardin Neptune", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76676, + 45.317 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGB7J68Q0BE", + "ref": "GB7J68Q0BE", + "name": "Serrières, Quai Jules Roche Sud", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64673, + 44.3671 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHF7UWCT3XU", + "ref": "HF7UWCT3XU", + "name": "Bourg-Saint-Andeol, Place Jardin Neptune", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.79858, + 43.817 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIZWGVKKKLW", + "ref": "IZWGVKKKLW", + "name": "Manosque, Parking de Pré Combeaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.97563, + 44.03 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDDUFKV", + "ref": "DDUFKV", + "name": "Les Mees, Rue de L'Hopital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.013327, + 44.11129 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQYJLX8F4UH", + "ref": "QYJLX8F4UH", + "name": "Volonne, Place Charles de Gaulles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62843, + 44.0379 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZCALPN", + "ref": "ZCALPN", + "name": "Banon, Place de La république", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88646, + 43.7569 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFANRVL", + "ref": "FANRVL", + "name": "Greoux-Les-Bains, Parking Ecociné Verdon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.764642, + 43.93593 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDIMB9HNUST", + "ref": "DIMB9HNUST", + "name": "Mane, Maison de Pays RN10/Clavieres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.626622, + 44.241315 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYVGSKBCI4J", + "ref": "YVGSKBCI4J", + "name": "Allos, Parking La Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.591744, + 43.855664 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLK9N6FGDHT", + "ref": "LK9N6FGDHT", + "name": "Cereste, Parking Les Aires", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.19651, + 43.9959 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXZTXRU", + "ref": "XZTXRU", + "name": "Mezel, Parking Le Claus", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.19651, + 43.9959 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXZTXRU", + "ref": "XZTXRU", + "name": "Mezel, Parking Le Claus", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.781649, + 43.959465 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPREJFYYSDM4", + "ref": "REJFYYSDM4", + "name": "Forcalquier, Place Notre Dame Du Bourguet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.62872, + 44.18199 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSJXUZ7WVZF", + "ref": "SJXUZ7WVZF", + "name": "Colmars, Rue Sainte-Anne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.29439297, + 44.4571429 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZACDZS", + "ref": "ZACDZS", + "name": "La Breole Ubaye Serre Poncon, Route de Boneis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.149061, + 44.1495 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJZXFBNTFY9", + "ref": "JZXFBNTFY9", + "name": "Thoard, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.29439297, + 44.4571429 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZACDZS", + "ref": "ZACDZS", + "name": "La Breole Ubaye Serre Poncon, Route de Boneis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.37018, + 43.954 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBHNVCQ", + "ref": "BHNVCQ", + "name": "Barreme, Parking PROXI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.37018, + 43.954 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBHNVCQ", + "ref": "BHNVCQ", + "name": "Barreme, Parking PROXI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.30695, + 44.1607 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVPTVQQ", + "ref": "VPTVQQ", + "name": "Le Brusquet, Médiathèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.30695, + 44.1607 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVPTVQQ", + "ref": "VPTVQQ", + "name": "Le Brusquet, Médiathèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5692, + 44.290693 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPS4VXC1ZBVR", + "ref": "S4VXC1ZBVR", + "name": "Allos, La Foux d'Allos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.54716, + 44.0824 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSZNPWU", + "ref": "SZNPWU", + "name": "Revest-Du-Bion, Avenue de Miravail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.013327, + 44.11129 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQYJLX8F4UH", + "ref": "QYJLX8F4UH", + "name": "Volonne, Place Charles de Gaulles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.890822, + 43.927252 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUKPJV9OC6M", + "ref": "UKPJV9OC6M", + "name": "La Brillanne, Place Bon Accueil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.97563, + 44.03 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDDUFKV", + "ref": "DDUFKV", + "name": "Les Mees, Rue de L'Hopital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.601126, + 44.370105 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNTGMS3IKER", + "ref": "NTGMS3IKER", + "name": "Uvernet-Fours, Parking Office Du Tourisme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22201, + 43.8438 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVHJVGW", + "ref": "VHJVGW", + "name": "Moustiers-Sainte-Marie, Pkg interm.", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.149061, + 44.1495 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJZXFBNTFY9", + "ref": "JZXFBNTFY9", + "name": "Thoard, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.77988, + 43.95895 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYDYHNZJJKE", + "ref": "YDYHNZJJKE", + "name": "Forcalquier, Espace Rompe Cuou", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.796637, + 43.83 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTUDR0E6GUP", + "ref": "TUDR0E6GUP", + "name": "Manosque, Bas Saint Sépulcre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.654159, + 44.387667 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQ95UGK3FNX", + "ref": "Q95UGK3FNX", + "name": "Barcelonnette, Place Paul Reynaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.77988, + 43.95895 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYDYHNZJJKE", + "ref": "YDYHNZJJKE", + "name": "Forcalquier, Espace Rompe Cuou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.764642, + 43.93593 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDIMB9HNUST", + "ref": "DIMB9HNUST", + "name": "Mane, Maison de Pays RN10/Clavieres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.62872, + 44.18199 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSJXUZ7WVZF", + "ref": "SJXUZ7WVZF", + "name": "Colmars, Rue Sainte-Anne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.601126, + 44.370105 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNTGMS3IKER", + "ref": "NTGMS3IKER", + "name": "Uvernet-Fours, Parking Office Du Tourisme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.781649, + 43.959465 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPREJFYYSDM4", + "ref": "REJFYYSDM4", + "name": "Forcalquier, Place Notre Dame Du Bourguet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35087674, + 44.41307066 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTFDWRB", + "ref": "TFDWRB", + "name": "Montclar, Parking Les Côtes De St Jean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35781, + 44.3521 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPMYFKJ", + "ref": "PMYFKJ", + "name": "Seyne, Saint Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.654159, + 44.387667 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQ95UGK3FNX", + "ref": "Q95UGK3FNX", + "name": "Barcelonnette, Place Paul Reynaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35087674, + 44.41307066 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTFDWRB", + "ref": "TFDWRB", + "name": "Montclar, Parking Les Côtes De St Jean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.918223, + 43.917451 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPANDDND3BDK", + "ref": "ANDDND3BDK", + "name": "Oraison, Parking de La Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.735105, + 44.419531 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXQQCZS16EH", + "ref": "XQQCZS16EH", + "name": "Jausiers, Place d'Arnaud Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.68414, + 46.5176 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDOMPIERRE", + "ref": "dompierre", + "name": "Dompierre-sur-Besbre, Percières", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.68414, + 46.5176 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDOMPIERRE", + "ref": "dompierre", + "name": "Dompierre-sur-Besbre, Percières", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12818, + 44.4053 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVPMUW1NPUD", + "ref": "VPMUW1NPUD", + "name": "Les Vans, Le Bourdaric", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60561, + 46.3301 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSJWERJ", + "ref": "SJWERJ", + "name": "Montluçon, Ilets Boris Vian", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74365, + 46.2869 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPERZCZN", + "ref": "ERZCZN", + "name": "Commentry, Auguste Blanqui", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59832, + 46.3444 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRNFAUC", + "ref": "RNFAUC", + "name": "Montluçon, Denis Papin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59689, + 46.3511 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKVYTWM", + "ref": "KVYTWM", + "name": "Montluçon, Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.55699, + 46.3273 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWVAJPP", + "ref": "WVAJPP", + "name": "Prémilhat, Étang de Sault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.55699, + 46.3273 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWVAJPP", + "ref": "WVAJPP", + "name": "Prémilhat, Étang de Sault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59832, + 46.3444 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRNFAUC", + "ref": "RNFAUC", + "name": "Montluçon, Denis Papin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5904, + 46.3149 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMDFRBN", + "ref": "MDFRBN", + "name": "Lavault-Sainte-Anne, Charité", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60561, + 46.3301 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSJWERJ", + "ref": "SJWERJ", + "name": "Montluçon, Ilets Boris Vian", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.40415, + 46.3128 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVARENNESMAIRIE", + "ref": "varennesmairie", + "name": "Varennes-sur-Allier, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53289, + 46.3619 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYQUVUC", + "ref": "YQUVUC", + "name": "Domérat, Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53289, + 46.3619 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYQUVUC", + "ref": "YQUVUC", + "name": "Domérat, Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5904, + 46.3149 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMDFRBN", + "ref": "MDFRBN", + "name": "Lavault-Sainte-Anne, Charité", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59689, + 46.3511 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKVYTWM", + "ref": "KVYTWM", + "name": "Montluçon, Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2886, + 46.30993 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPODTKP8CH6Y", + "ref": "ODTKP8CH6Y", + "name": "Saint Pourçain sur Sioule, Cours des Anciens combattant d'Afrique", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.34381, + 46.54197 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPORQZ0JAUKA", + "ref": "ORQZ0JAUKA", + "name": "Yzeure, Route de Lyon - Parking des Halles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.34381, + 46.54197 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPORQZ0JAUKA", + "ref": "ORQZ0JAUKA", + "name": "Yzeure, Route de Lyon - Parking des Halles", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74365, + 46.2869 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPERZCZN", + "ref": "ERZCZN", + "name": "Commentry, Auguste Blanqui", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43955, + 46.1385 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCUSSETGILBERT", + "ref": "cussetgilbert", + "name": "Cusset, Gilbert Roux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42901, + 46.12431 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVUW4OJTP6F", + "ref": "VUW4OJTP6F", + "name": "Vichy, Place de l'Hotel de Ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0522, + 46.5833 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBOURBON", + "ref": "bourbon", + "name": "Bourbon-l'Archambault, Jean Bignon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60975, + 46.3396 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMONTLUCONGI", + "ref": "montlucongi", + "name": "Montluçon, Gironde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.95552, + 46.3171 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMONTMARAULTH", + "ref": "montmaraulth", + "name": "Montmarault, Boulevard Tourret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32884, + 46.5618 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMOULINSROCHE", + "ref": "moulinsroche", + "name": "Moulins, Achille Roche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.95552, + 46.3171 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMONTMARAULTH", + "ref": "montmaraulth", + "name": "Montmarault, Boulevard Tourret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60423, + 46.3414 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMONTLUCONPI", + "ref": "montluconpi", + "name": "Montluçon, Place Pierre Petit", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60423, + 46.3414 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMONTLUCONPI", + "ref": "montluconpi", + "name": "Montluçon, Place Pierre Petit", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.05179, + 46.4088 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLEMONTET", + "ref": "lemontet", + "name": "Le Montet, Centre technique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0522, + 46.5833 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBOURBON", + "ref": "bourbon", + "name": "Bourbon-l'Archambault, Jean Bignon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26319, + 46.471 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNP590305C6AAD59", + "ref": "590305c6aad59", + "name": "Besson , Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27081, + 46.1884 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBROUTVERNET", + "ref": "broutvernet", + "name": "Brout-Vernet, Maison de santé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81824, + 46.6173 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCERILLY", + "ref": "cerilly", + "name": "Cérilly, Champ de Foire - Partie Haute", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27081, + 46.1884 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBROUTVERNET", + "ref": "broutvernet", + "name": "Brout-Vernet, Maison de santé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26319, + 46.471 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNP590305C6AAD59", + "ref": "590305c6aad59", + "name": "Besson , Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.66512, + 46.07 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLEMAYET", + "ref": "lemayet", + "name": "Le Mayet-de-Montagne, Vichy Place aux foires", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.05179, + 46.4088 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLEMONTET", + "ref": "lemontet", + "name": "Le Montet, Centre technique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.36633, + 46.4392 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBESSAY", + "ref": "bessay", + "name": "Bessay-sur-Allier, René Fallet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42901, + 46.12431 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVUW4OJTP6F", + "ref": "VUW4OJTP6F", + "name": "Vichy, Place de l'Hotel de Ville", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2886, + 46.30993 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPODTKP8CH6Y", + "ref": "ODTKP8CH6Y", + "name": "Saint Pourçain sur Sioule, Cours des Anciens combattant d'Afrique", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9377, + 46.7277 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLURCYLEVIS", + "ref": "lurcylevis", + "name": "Lurcy-Levis, Comcom", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.85832, + 46.3964 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWQUYNQ", + "ref": "WQUYNQ", + "name": "Villefranche d'Allier, Fossés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4349, + 46.1247 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVICHY1", + "ref": "vichy1", + "name": "Vichy, Marseille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.63455, + 46.1667 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZSZXKD", + "ref": "ZSZXKD", + "name": "Marcillat-en-Combraille, Champ de foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.63455, + 46.1667 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZSZXKD", + "ref": "ZSZXKD", + "name": "Marcillat-en-Combraille, Champ de foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.36337, + 46.5535 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYZEURELIB", + "ref": "yzeurelib", + "name": "Yzeure, Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.66032, + 46.2883 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHXBSAH", + "ref": "HXBSAH", + "name": "Néris-les-Bains, Arènes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.66032, + 46.2883 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHXBSAH", + "ref": "HXBSAH", + "name": "Néris-les-Bains, Arènes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59894, + 46.3386 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJPWBTH", + "ref": "JPWBTH", + "name": "Montluçon, Marx Dormoy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.85832, + 46.3964 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWQUYNQ", + "ref": "WQUYNQ", + "name": "Villefranche d'Allier, Fossés", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42184, + 46.1217 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVICHY3", + "ref": "VICHY3", + "name": "Vichy, Porte de France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.59894, + 46.3386 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJPWBTH", + "ref": "JPWBTH", + "name": "Montluçon, Marx Dormoy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.36337, + 46.5535 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYZEURELIB", + "ref": "yzeurelib", + "name": "Yzeure, Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35443, + 46.5653 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYZEURE1", + "ref": "yzeure1", + "name": "Yzeure, Place Bendorf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35443, + 46.5653 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYZEURE1", + "ref": "yzeure1", + "name": "Yzeure, Place Bendorf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.62275452, + 44.88128484 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCVWVXPR8FU", + "ref": "CVWVXPR8FU", + "name": "Briançon, Rue Maréchal de Lattre de Tassigny", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.62275452, + 44.88128484 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCVWVXPR8FU", + "ref": "CVWVXPR8FU", + "name": "Briançon, Rue Maréchal de Lattre de Tassigny", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0406, + 43.1488 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPY4UAJNWN4K", + "ref": "Y4UAJNWN4K", + "name": "Afuzy-La Garde, Rue Marcelin Berthelot ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.40415, + 46.3128 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVARENNESMAIRIE", + "ref": "varennesmairie", + "name": "Varennes-sur-Allier, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4349, + 46.1247 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVICHY1", + "ref": "vichy1", + "name": "Vichy, Marseille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.61675, + 46.3457 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMRQEES", + "ref": "MRQEES", + "name": "Désertines, Georges Brassens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.426512, + 46.130601 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVICHY5", + "ref": "vichy5", + "name": "Vichy, Place Jean Epinat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.96364, + 46.468 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBUXIERE", + "ref": "BUXIERE", + "name": "Buxières-les-Mines, station essence", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.478734, + 46.37378 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWQFNAU", + "ref": "WQFNAU", + "name": "Huriel, Pressoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.478734, + 46.37378 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWQFNAU", + "ref": "WQFNAU", + "name": "Huriel, Pressoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.45557, + 46.1327 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRVJNYU", + "ref": "RVJNYU", + "name": "Cusset, Avenue du Drapeau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.45557, + 46.1327 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRVJNYU", + "ref": "RVJNYU", + "name": "Cusset, Avenue du Drapeau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-11-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.96364, + 46.468 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBUXIERE", + "ref": "BUXIERE", + "name": "Buxières-les-Mines, station essence", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.426512, + 46.130601 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVICHY5", + "ref": "vichy5", + "name": "Vichy, Place Jean Epinat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41922, + 46.1225 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVICHY4", + "ref": "vichy4", + "name": "Vichy, Square Gal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43013, + 46.1272 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVICHY2", + "ref": "vichy2", + "name": "Vichy, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42649, + 46.1252 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVICHY6", + "ref": "vichy6", + "name": "Vichy, Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41621, + 46.1332 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVICHY7", + "ref": "vichy7", + "name": "Vichy, Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41621, + 46.1332 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVICHY7", + "ref": "vichy7", + "name": "Vichy, Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42649, + 46.1252 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVICHY6", + "ref": "vichy6", + "name": "Vichy, Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41922, + 46.1225 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVICHY4", + "ref": "vichy4", + "name": "Vichy, Square Gal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43013, + 46.1272 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVICHY2", + "ref": "vichy2", + "name": "Vichy, Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42184, + 46.1217 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVICHY3", + "ref": "VICHY3", + "name": "Vichy, Porte de France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9377, + 46.7277 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLURCYLEVIS", + "ref": "lurcylevis", + "name": "Lurcy-Levis, Comcom", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60412, + 46.3478 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMONTLUCONAT", + "ref": "montluconat", + "name": "Montluçon, Athanor", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29217, + 46.3067 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSAINTPOURCAIN", + "ref": "saintpourcain", + "name": "Saint-Pourçain-sur-Sioule, Quai de La Ronde", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.61675, + 46.3457 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMRQEES", + "ref": "MRQEES", + "name": "Désertines, Georges Brassens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08009, + 46.1985 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNTJBDNGWVUA", + "ref": "ntjbdngwvua", + "name": "Bellenaves, Champ de foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.40917, + 46.1171 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSOURCE", + "ref": "source", + "name": "Bellerive-sur-Allier, Source Intermittente", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08009, + 46.1985 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNTJBDNGWVUA", + "ref": "ntjbdngwvua", + "name": "Bellenaves, Champ de foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.33517, + 46.5676 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMOULINSPR", + "ref": "moulinspr", + "name": "Moulins, Préfecture", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.33517, + 46.5676 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMOULINSPR", + "ref": "moulinspr", + "name": "Moulins, Préfecture", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43213, + 46.4653 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNEUILLYLEREAL", + "ref": "neuillylereal", + "name": "Neuilly-le-Real, Gendarmerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3335, + 46.571 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMOULINSVI", + "ref": "moulinsvi", + "name": "Moulins, Vigenère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4438, + 46.0992 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPABREST", + "ref": "abrest", + "name": "Abrest, Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.40917, + 46.1171 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSOURCE", + "ref": "source", + "name": "Bellerive-sur-Allier, Source Intermittente", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12541, + 46.4799 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNOYANTMARCHE", + "ref": "noyantmarche", + "name": "Noyant-d'Allier, Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.36633, + 46.4392 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBESSAY", + "ref": "bessay", + "name": "Bessay-sur-Allier, René Fallet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3274, + 46.5668 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMOULINSJM", + "ref": "moulinsjm", + "name": "Moulins, Place Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58477, + 46.3787 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR13ICZC6D5", + "ref": "R13ICZC6D5", + "name": "Saint-Victor, La Loue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58477, + 46.3787 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR13ICZC6D5", + "ref": "R13ICZC6D5", + "name": "Saint-Victor, La Loue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43331, + 46.2018 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSAINTGERFOS", + "ref": "saintgerfos", + "name": "Saint-Germain-des-Fossés, Place Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12541, + 46.4799 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNOYANTMARCHE", + "ref": "noyantmarche", + "name": "Noyant-d'Allier, Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3335, + 46.571 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMOULINSVI", + "ref": "moulinsvi", + "name": "Moulins, Vigenère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.40602, + 46.1215 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMAIRIE", + "ref": "mairie", + "name": "Bellerive-sur-Allier, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3389, + 46.5633 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMOULINSRE", + "ref": "moulinsre", + "name": "Moulins, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.61178, + 46.2463 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLAPALISSEVE", + "ref": "lapalisseve", + "name": "Lapalisse, Vérités", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29217, + 46.3067 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSAINTPOURCAIN", + "ref": "saintpourcain", + "name": "Saint-Pourçain-sur-Sioule, Quai de La Ronde", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.396184, + 46.127122 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAQUALUDIQUE", + "ref": "aqualudique", + "name": "Bellerive sur Allier, Parking Aqualudique", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.36124, + 46.5062 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCENTREROUTIER", + "ref": "centreroutier", + "name": "Toulon-sur-Allier, Centre Routier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1959, + 46.10168 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJCAUYPEAYA", + "ref": "JCAUYPEAYA", + "name": "Gannat, Place Rantian 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58477, + 46.3787 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSAINTVICTORLA", + "ref": "saintvictorla", + "name": "Saint-Victor, La Loue", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58477, + 46.3787 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSAINTVICTORLA", + "ref": "saintvictorla", + "name": "Saint-Victor, La Loue", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-03", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.61178, + 46.2463 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLAPALISSEVE", + "ref": "lapalisseve", + "name": "Lapalisse, Vérités", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.83132, + 46.474 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMFMJGR", + "ref": "MFMJGR", + "name": "Cosne-d'Allier, Centre de secours", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.40602, + 46.1215 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMAIRIE", + "ref": "mairie", + "name": "Bellerive-sur-Allier, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.36124, + 46.5062 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCENTREROUTIER", + "ref": "centreroutier", + "name": "Toulon-sur-Allier, Centre Routier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.69498, + 46.7056 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPING60TSNE", + "ref": "PING60TSNE", + "name": "Ainay-le-Château, Intermarché", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.83132, + 46.474 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMFMJGR", + "ref": "MFMJGR", + "name": "Cosne-d'Allier, Centre de secours", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.96782, + 46.3251 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBKPTAV", + "ref": "BKPTAV", + "name": "Montmarault, Maison du Tourisme", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.96782, + 46.3251 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBKPTAV", + "ref": "BKPTAV", + "name": "Montmarault, Maison du Tourisme", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.69498, + 46.7056 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPING60TSNE", + "ref": "PING60TSNE", + "name": "Ainay-le-Château, Intermarché", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43213, + 46.4653 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNEUILLYLEREAL", + "ref": "neuillylereal", + "name": "Neuilly-le-Real, Gendarmerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.51176, + 46.2593 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSAINTGERANDLP", + "ref": "saintgerandlp", + "name": "Saint-Gérand-le-Puy, Maurice Dupont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3274, + 46.5668 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMOULINSJM", + "ref": "moulinsjm", + "name": "Moulins, Place Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60975, + 46.3396 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMONTLUCONGI", + "ref": "montlucongi", + "name": "Montluçon, Gironde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08854, + 46.1169 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEBREUIL", + "ref": "ebreuil", + "name": "Ebreuil, Place Saint-James", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.66512, + 46.07 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLEMAYET", + "ref": "lemayet", + "name": "Le Mayet-de-Montagne, Vichy Place aux foires", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.15781, + 46.2407 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCHANTELLE", + "ref": "chantelle", + "name": "Chantelle, Terrain de tennis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.79649, + 46.3502 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDONJON", + "ref": "donjon", + "name": "Le Donjon, Guillotière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42969, + 46.1548 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCREUZIERLEV", + "ref": "creuzierlev", + "name": "Creuzier-le-Vieux, Guinards", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1982, + 46.1023 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGANNAT", + "ref": "gannat", + "name": "Gannat, Place Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.59224, + 46.3816 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJALIGNY", + "ref": "jaligny", + "name": "Jaligny-sur-Besbre, Place René Fallet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1982, + 46.1023 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGANNAT", + "ref": "gannat", + "name": "Gannat, Place Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08854, + 46.1169 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEBREUIL", + "ref": "ebreuil", + "name": "Ebreuil, Place Saint-James", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.15781, + 46.2407 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCHANTELLE", + "ref": "chantelle", + "name": "Chantelle, Terrain de tennis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43955, + 46.1385 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCUSSETGILBERT", + "ref": "cussetgilbert", + "name": "Cusset, Gilbert Roux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.64484, + 46.2505 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLAPALISSEPA", + "ref": "lapalissepa", + "name": "Lapalisse, Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42969, + 46.1548 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCREUZIERLEV", + "ref": "creuzierlev", + "name": "Creuzier-le-Vieux, Guinards", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.59224, + 46.3816 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJALIGNY", + "ref": "jaligny", + "name": "Jaligny-sur-Besbre, Place René Fallet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.45461, + 46.1344 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCUSSETCENT", + "ref": "cussetcent", + "name": "Cusset, Place du Centenaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.45461, + 46.1344 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCUSSETCENT", + "ref": "cussetcent", + "name": "Cusset, Place du Centenaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60412, + 46.3478 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMONTLUCONAT", + "ref": "montluconat", + "name": "Montluçon, Athanor", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81824, + 46.6173 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCERILLY", + "ref": "cerilly", + "name": "Cérilly, Champ de Foire - Partie Haute", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.55099, + 46.6098 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCHEVAGNES", + "ref": "chevagnes", + "name": "Chevagnes, Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.46515, + 46.0671 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSAINTYORBV", + "ref": "saintyorbv", + "name": "Saint-Yorre, Bellevue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4438, + 46.0992 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPABREST", + "ref": "abrest", + "name": "Abrest, Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.46515, + 46.0671 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSAINTYORBV", + "ref": "saintyorbv", + "name": "Saint-Yorre, Bellevue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43331, + 46.2018 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSAINTGERFOS", + "ref": "saintgerfos", + "name": "Saint-Germain-des-Fossés, Place Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3389, + 46.5633 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMOULINSRE", + "ref": "moulinsre", + "name": "Moulins, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.19333, + 46.5335 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSOUVIGNYMOU", + "ref": "souvignymou", + "name": "Souvigny, Moulins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60819, + 46.5343 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVALLONULLYM", + "ref": "vallonullym", + "name": "Vallon-en-Sully, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60819, + 46.5343 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVALLONULLYM", + "ref": "vallonullym", + "name": "Vallon-en-Sully, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.19333, + 46.5335 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSOUVIGNYMOU", + "ref": "souvignymou", + "name": "Souvigny, Moulins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.51176, + 46.2593 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSAINTGERANDLP", + "ref": "saintgerandlp", + "name": "Saint-Gérand-le-Puy, Maurice Dupont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31194, + 46.1086 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCOGNATLYONNE", + "ref": "cognatlyonne", + "name": "Cognat-Lyonne, Route d'Espinasse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30928, + 46.5868 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAVERMES", + "ref": "avermes", + "name": "Avermes, La Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30928, + 46.5868 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAVERMES", + "ref": "avermes", + "name": "Avermes, La Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32884, + 46.5618 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMOULINSROCHE", + "ref": "moulinsroche", + "name": "Moulins, Achille Roche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.64484, + 46.2505 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLAPALISSEPA", + "ref": "lapalissepa", + "name": "Lapalisse, Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.79649, + 46.3502 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDONJON", + "ref": "donjon", + "name": "Le Donjon, Guillotière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.55099, + 46.6098 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCHEVAGNES", + "ref": "chevagnes", + "name": "Chevagnes, Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31194, + 46.1086 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCOGNATLYONNE", + "ref": "cognatlyonne", + "name": "Cognat-Lyonne, Route d'Espinasse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38994, + 44.4063 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQPPN534ID0", + "ref": "QPPN534ID0", + "name": "Vallon-Pont-D'Arc, Parking Néruda", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70591, + 45.257324 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDXM6EBUDLM", + "ref": "DXM6EBUDLM", + "name": "Davezieux, Place de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38994, + 44.4063 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQPPN534ID0", + "ref": "QPPN534ID0", + "name": "Vallon-Pont-D'Arc, Parking Néruda", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.222468, + 43.846039 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPYIAZJVBWS", + "ref": "PYIAZJVBWS", + "name": "Moustiers-Sainte-Marie, Chemin Marcel Provence", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.927429, + 43.075068 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGM4SFCKU5P", + "ref": "GM4SFCKU5P", + "name": "Saint-Mandrier-Sur-Mer, Chemin Des Aubépines", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03717, + 43.142403 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGL4ERZHDOT", + "ref": "GL4ERZHDOT", + "name": "La Garde, Borne rapide PK ENTREE AFUZI", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03717, + 43.142403 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGL4ERZHDOT", + "ref": "GL4ERZHDOT", + "name": "La Garde, Borne rapide PK ENTREE AFUZI", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-20", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.21490165, + 44.08017094 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZYL6ZBTURA", + "ref": "ZYL6ZBTURA", + "name": "Digne-Les-Bains, Plan d'eau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9435, + 44.195232 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLJK2HESSRK", + "ref": "LJK2HESSRK", + "name": "Sisteron, Allée De Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9435, + 44.195232 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLJK2HESSRK", + "ref": "LJK2HESSRK", + "name": "Sisteron, Allée De Verdun", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.21490165, + 44.08017094 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZYL6ZBTURA", + "ref": "ZYL6ZBTURA", + "name": "Digne-Les-Bains, Plan d'eau", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.222468, + 43.846039 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPYIAZJVBWS", + "ref": "PYIAZJVBWS", + "name": "Moustiers-Sainte-Marie, Chemin Marcel Provence", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.708931, + 43.181444 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHWPPNAD8K0", + "ref": "HWPPNAD8K0", + "name": "Saint-Cyr-Sur-Mer, La Falquette 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.231455, + 44.091577 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXFCI1JOWWR", + "ref": "XFCI1JOWWR", + "name": "Digne les bains, Parking du Tampinet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.231455, + 44.091577 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXFCI1JOWWR", + "ref": "XFCI1JOWWR", + "name": "Digne les bains, Parking du Tampinet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.385347, + 45.290997 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPER0AUMJDGU", + "ref": "ER0AUMJDGU", + "name": "Brioude, Place Champanne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.879068, + 45.046877 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKRAXKE7RE5", + "ref": "KRAXKE7RE5", + "name": "Puy-En-Velay (Le), Boulevard Carnot", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.879068, + 45.046877 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKRAXKE7RE5", + "ref": "KRAXKE7RE5", + "name": "Puy-En-Velay (Le), Boulevard Carnot", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17285285, + 45.29281583 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIBSXDFRIST", + "ref": "IBSXDFRIST", + "name": "Monistrol sur Loire, Place du 19 Mars 1962", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17285285, + 45.29281583 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIBSXDFRIST", + "ref": "IBSXDFRIST", + "name": "Monistrol sur Loire, Place du 19 Mars 1962", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.907343, + 43.071083 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPL2KTMFZATR", + "ref": "L2KTMFZATR", + "name": "Saint-Mandrier-Sur-Mer, Boulevard Saint-Asile", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.935913, + 43.636472 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTXLNRF6IDO", + "ref": "TXLNRF6IDO", + "name": "La Verdiere, Route De Varage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.13972955, + 44.35821959 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLLIIIO2L613NJN", + "ref": "LLIIIO2L613NJN", + "name": "Nyons, Promenade de la Digue Ouest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.704812, + 43.185573 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXQHA8RY3C0", + "ref": "XQHA8RY3C0", + "name": "Saint-Cyr-Sur-Mer, Avenue Aime Carbonnel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86157, + 43.288929 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPY7IPA7UM6O", + "ref": "Y7IPA7UM6O", + "name": "Signes, Chemin De La Rode", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.805145, + 43.075105 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQIJDB1KGQD", + "ref": "QIJDB1KGQD", + "name": "Six-Fours-Les-Plages, 157 Avenue du Mail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.811991, + 43.09991 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDKBK3IZL5E", + "ref": "DKBK3IZL5E", + "name": "Six-Fours-Les-Plages, Corniche de la Coudouliere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.644595, + 43.501255 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXXGOJ7R8NU", + "ref": "XXGOJ7R8NU", + "name": "Roquebrune-Sur-Argens, Allee Du 15 Aout 1944", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.708931, + 43.181444 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHBB3TYFJFW", + "ref": "HBB3TYFJFW", + "name": "Saint-Cyr-Sur-Mer, La Falquette 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.691177, + 43.342474 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKLMBE6LVV9", + "ref": "KLMBE6LVV9", + "name": "Roquebrune-Sur-Argens, Boulevard Des Murènes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.634532, + 43.442627 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVCES3C1APO", + "ref": "VCES3C1APO", + "name": "Roquebrune-Sur-Argens, Boulevard Ferdinand Clavel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.976662, + 43.33822 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJBGVKCN6U7", + "ref": "JBGVKCN6U7", + "name": "La Roquebrussanne, Place Gueit", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9177624, + 43.4124305 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNVJ5E3O6YT", + "ref": "NVJ5E3O6YT", + "name": "Tourves, Avenue de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.627985, + 43.723321 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDFTEM0U8ZB", + "ref": "DFTEM0U8ZB", + "name": "La Roque-Esclapon, Quartier Notre Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125282, + 43.340772 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPF2WBIZMGSY", + "ref": "F2WBIZMGSY", + "name": "Sainte-Anastasie-Sur-Issole, 11 les Ferrages", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.851185, + 43.393343 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCQMQZFLODZ", + "ref": "CQMQZFLODZ", + "name": "Rougiers, Rue de la Rousse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.636401, + 43.444287 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNX7Q0NZIA4", + "ref": "NX7Q0NZIA4", + "name": "Roquebrune-Sur-Argens, Boulevard Jean Jaures", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.442335, + 43.760432 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPF2310LROW6", + "ref": "F2310LROW6", + "name": "Trigance, D90", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.960407, + 43.597668 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPY8NFJOVNCO", + "ref": "Y8NFJOVNCO", + "name": "Varages, Place De La Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.889052, + 43.128623 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTMRZGC2FOR", + "ref": "TMRZGC2FOR", + "name": "Toulon, Parking Escaillon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.385347, + 45.290997 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPER0AUMJDGU", + "ref": "ER0AUMJDGU", + "name": "Brioude, Place Champanne", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.13972955, + 44.35821959 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLLIIIO2L613NJN", + "ref": "LLIIIO2L613NJN", + "name": "Nyons, Promenade de la Digue Ouest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.811745, + 43.112475 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZKDZF8SDVA", + "ref": "ZKDZF8SDVA", + "name": "Six-Fours-Les-Plages, Square Hippolyte Cesmat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9321824, + 46.10196059 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYEEBQJBWE2", + "ref": "YEEBQJBWE2", + "name": "Vulbens, Chemin de la fruitière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.357859, + 45.852431 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVEVO6DOUKL", + "ref": "VEVO6DOUKL", + "name": "Violay, Rue Célestin Linder", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.357859, + 45.852431 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVEVO6DOUKL", + "ref": "VEVO6DOUKL", + "name": "Violay, Rue Célestin Linder", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.035542, + 45.985625 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFU2UCSPHOH", + "ref": "FU2UCSPHOH", + "name": "Villerest, Plage de Villerest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0650575, + 45.60489804 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTJPZS8BPH4", + "ref": "TJPZS8BPH4", + "name": "Montbrison, Boulevard Lachèze", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0650575, + 45.60489804 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTJPZS8BPH4", + "ref": "TJPZS8BPH4", + "name": "Montbrison, Boulevard Lachèze", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.417705, + 45.340454 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJBWSNH5CN2", + "ref": "JBWSNH5CN2", + "name": "Saint-Genest-Malifaux, Rue du bois ternay", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.417705, + 45.340454 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJBWSNH5CN2", + "ref": "JBWSNH5CN2", + "name": "Saint-Genest-Malifaux, Rue du bois ternay", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.333852, + 46.316175 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYO5QCAKPXE", + "ref": "YO5QCAKPXE", + "name": "Massongy, Parking Mairie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23269785, + 45.62297234 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNLEDVFEXF7", + "ref": "NLEDVFEXF7", + "name": "L’Isle-D’Abeau, Place du 8 Mai 1945", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.616385, + 45.857483 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR7WVTFXTZQ", + "ref": "R7WVTFXTZQ", + "name": "Megève, Rue Poste", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.333852, + 46.316175 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYO5QCAKPXE", + "ref": "YO5QCAKPXE", + "name": "Massongy, Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.616385, + 45.857483 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR7WVTFXTZQ", + "ref": "R7WVTFXTZQ", + "name": "Megève, Rue Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9321824, + 46.10196059 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYEEBQJBWE2", + "ref": "YEEBQJBWE2", + "name": "Vulbens, Chemin de la fruitière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.78992, + 46.23258 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEJFSUCSX8H", + "ref": "EJFSUCSX8H", + "name": "Châtel, Pré-la-joux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.78992, + 46.23258 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEJFSUCSX8H", + "ref": "EJFSUCSX8H", + "name": "Châtel, Pré-la-joux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12474, + 45.91174 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJYGTRRTRSD", + "ref": "JYGTRRTRSD", + "name": "Annecy, Rue Max Bruchet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.035542, + 45.985625 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFU2UCSPHOH", + "ref": "FU2UCSPHOH", + "name": "Villerest, Plage de Villerest", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23269785, + 45.62297234 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNLEDVFEXF7", + "ref": "NLEDVFEXF7", + "name": "L’Isle-D’Abeau, Place du 8 Mai 1945", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88973581, + 44.92944338 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBR33QVBXDK", + "ref": "BR33QVBXDK", + "name": "Valence, Place championnet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.904066, + 45.672011 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLLJED8Y6Z1Z0BZ", + "ref": "LLJED8Y6Z1Z0BZ", + "name": "Aix les bains, Hippodrome", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74897911, + 44.55730613 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPN9XQ3KEFL9", + "ref": "N9XQ3KEFL9", + "name": "Montelimar, Place Emile Loubet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74897911, + 44.55730613 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPN9XQ3KEFL9", + "ref": "N9XQ3KEFL9", + "name": "Montelimar, Place Emile Loubet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88973581, + 44.92944338 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBR33QVBXDK", + "ref": "BR33QVBXDK", + "name": "Valence, Place championnet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.904066, + 45.672011 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLLJED8Y6Z1Z0BZ", + "ref": "LLJED8Y6Z1Z0BZ", + "name": "Aix les bains, Hippodrome", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.911434, + 45.689927 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLLJE3WUMOV8L8F", + "ref": "LLJE3WUMOV8L8F", + "name": "Aix les bains, Victoria", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.911434, + 45.689927 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLLJE3WUMOV8L8F", + "ref": "LLJE3WUMOV8L8F", + "name": "Aix les bains, Victoria", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.631899, + 45.598443 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPORFDPC1FUM", + "ref": "ORFDPC1FUM", + "name": "Saint Genix les Villages, Parking Salle Jean Bouchard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.631899, + 45.598443 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPORFDPC1FUM", + "ref": "ORFDPC1FUM", + "name": "Saint Genix les Villages, Parking Salle Jean Bouchard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0676798, + 45.0914135 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPG0F2IUTCE8", + "ref": "G0F2IUTCE8", + "name": "Huez, Parking Des Jeux ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.27552, + 45.588987 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFYDLG22UGH", + "ref": "FYDLG22UGH", + "name": "Bourgoin Jallieu, Parking St Michel Sud, 43 Bd St Michel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.278273, + 45.584676 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZI3F7Q3G9Y", + "ref": "ZI3F7Q3G9Y", + "name": "Bourgoin Jallieu, Parking Medicis. 23 Avenue d'Italie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.278273, + 45.584676 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZI3F7Q3G9Y", + "ref": "ZI3F7Q3G9Y", + "name": "Bourgoin Jallieu, Parking Medicis. 23 Avenue d'Italie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.27552, + 45.588987 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFYDLG22UGH", + "ref": "FYDLG22UGH", + "name": "Bourgoin Jallieu, Parking St Michel Sud, 43 Bd St Michel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.31861937, + 45.15396959 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYZ10HKDMQ8", + "ref": "YZ10HKDMQ8", + "name": "Saint-Marcellin, Avenue de la santé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.31861937, + 45.15396959 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYZ10HKDMQ8", + "ref": "YZ10HKDMQ8", + "name": "Saint-Marcellin, Avenue de la santé", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0676798, + 45.0914135 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPG0F2IUTCE8", + "ref": "G0F2IUTCE8", + "name": "Huez, Parking Des Jeux ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.862383, + 43.29057 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDB729VJMID", + "ref": "DB729VJMID", + "name": "Signes, Rue Ferraillette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03984, + 43.191311 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHIMXOVAKJ0", + "ref": "HIMXOVAKJ0", + "name": "Sollies-Pont, Avenue de la Liberte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.929132, + 43.120398 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLW8YIBIVNR", + "ref": "LW8YIBIVNR", + "name": "TOULON, Avenue de la République - Préfecture maritime", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.932443, + 43.130591 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNGQP8ETIBP", + "ref": "NGQP8ETIBP", + "name": "Toulon, Pkg. du parc Des Lices 3 ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.072311, + 43.439098 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVHUBJ7QBC6", + "ref": "VHUBJ7QBC6", + "name": "Le Val, Pkg. de la Mairie Place de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.898863, + 43.078878 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIMX5QJAPON", + "ref": "IMX5QJAPON", + "name": "Six-Fours, Parking St elme Rue Georges Lahaye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.993895, + 43.131758 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZG0YWPL16J", + "ref": "ZG0YWPL16J", + "name": "Le Val, Parking Collège Bosco Chemin du Buchet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.233294, + 43.562956 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPK9AZWC5W94", + "ref": "K9AZWC5W94", + "name": "Salernes, Place Clémenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.932108, + 43.11232 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYPBFYEH6AZ", + "ref": "YPBFYEH6AZ", + "name": "Toulon, parking DGA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.932108, + 43.11232 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYPBFYEH6AZ", + "ref": "YPBFYEH6AZ", + "name": "Toulon, parking DGA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.93622, + 43.127107 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOCMVHL5UIN", + "ref": "OCMVHL5UIN", + "name": "Toulon, Pkg. du parc Des Lices 2 ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.233225, + 43.562878 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX2OY3JOEPQ", + "ref": "X2OY3JOEPQ", + "name": "Salernes, Place Clemenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.943407, + 43.1085 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPC4DAJBRGSS", + "ref": "C4DAJBRGSS", + "name": "Toulon, Plages Du Mourillon Entrée Ouest 1-1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.811745, + 43.112475 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZKDZF8SDVA", + "ref": "ZKDZF8SDVA", + "name": "Six-Fours-Les-Plages, Square Hippolyte Cesmat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03984, + 43.191311 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHIMXOVAKJ0", + "ref": "HIMXOVAKJ0", + "name": "Sollies-Pont, Avenue de la Liberte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.811991, + 43.09991 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDKBK3IZL5E", + "ref": "DKBK3IZL5E", + "name": "Six-Fours-Les-Plages, Corniche de la Coudouliere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.805145, + 43.075105 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQIJDB1KGQD", + "ref": "QIJDB1KGQD", + "name": "Six-Fours-Les-Plages, 157 Avenue du Mail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.040289, + 43.191434 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLDEIEAYDSL", + "ref": "LDEIEAYDSL", + "name": "Sollies Pont, Parking Rezzonico", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.426889, + 43.453845 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDMH0PBAXCF", + "ref": "DMH0PBAXCF", + "name": "Taradeau, 23 rue l'Ormeau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.304044, + 43.450901 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRRK1AVPNIS", + "ref": "RRK1AVPNIS", + "name": "Le Thoronet, 208 Boulevard du 17 Aout 1944", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.827597, + 43.109013 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSEEISRFNFD", + "ref": "SEEISRFNFD", + "name": "Salernes, Pkg des Playes Rue Président Kennedy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.97480134, + 43.12893153 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR4CFXQWYOD", + "ref": "R4CFXQWYOD", + "name": "Toulon, Complexe Sportif Léo Lagrange", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.027701, + 43.207992 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPY2MRQRX4PV", + "ref": "Y2MRQRX4PV", + "name": "Sollies-Toucas, Avenue Du Gapeau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.926085, + 43.177244 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQUIK8EU3EI", + "ref": "QUIK8EU3EI", + "name": "La Valette Du Var, Pkg. Centre, place Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0406, + 43.1488 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPY4UAJNWN4K", + "ref": "Y4UAJNWN4K", + "name": "Afuzy-La Garde, Rue Marcelin Berthelot ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.40901, + 44.6124 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSRX4IK756Y", + "ref": "SRX4IK756Y", + "name": "Saint-Didier-Sous-Aubenas, Place des Vignettes", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1298, + 43.1062 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNX8FKWS8GN", + "ref": "NX8FKWS8GN", + "name": "Hyères, Parking espace 3000", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0778, + 43.1476 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHXKNZ664DA", + "ref": "HXKNZ664DA", + "name": "La Crau, Parking du Collége Rue Louis Meric", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.016902, + 43.124845 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVAJMYZYNQ8", + "ref": "VAJMYZYNQ8", + "name": "La Garde, Parking des Bleuets Avenue Jules Ferry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.482466, + 43.610596 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPS4X9OLB4Z", + "ref": "PS4X9OLB4Z", + "name": "Montferrat, Pkg. du Stade rte de Draguignan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.993895, + 43.131758 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZG0YWPL16J", + "ref": "ZG0YWPL16J", + "name": "Le Val, Parking Collège Bosco Chemin du Buchet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.898863, + 43.078878 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIMX5QJAPON", + "ref": "IMX5QJAPON", + "name": "Six-Fours, Parking St elme Rue Georges Lahaye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.952178, + 43.107303 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPBVWLY88ID", + "ref": "PBVWLY88ID", + "name": "Toulon, Plages Du Mourillon 4Ème Anse 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.926085, + 43.177244 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQUIK8EU3EI", + "ref": "QUIK8EU3EI", + "name": "La Valette Du Var, Pkg. Centre, place Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.895401, + 43.143787 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQP7TLLYXNL", + "ref": "QP7TLLYXNL", + "name": "Toulon, Piscine Du Pin D'Alep", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.895401, + 43.143787 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQP7TLLYXNL", + "ref": "QP7TLLYXNL", + "name": "Toulon, Piscine Du Pin D'Alep", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.983741, + 43.137653 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXAIFX7NXUY", + "ref": "XAIFX7NXUY", + "name": "La Valette, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.983741, + 43.137653 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXAIFX7NXUY", + "ref": "XAIFX7NXUY", + "name": "La Valette, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.97480134, + 43.12893153 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR4CFXQWYOD", + "ref": "R4CFXQWYOD", + "name": "Toulon, Complexe Sportif Léo Lagrange", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.943407, + 43.1085 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPC4DAJBRGSS", + "ref": "C4DAJBRGSS", + "name": "Toulon, Plages Du Mourillon Entrée Ouest 1-1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.006072, + 43.196785 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFYHUB1BIZF", + "ref": "FYHUB1BIZF", + "name": "Sollies-Toucas, 1475 Route de Valaury", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.233225, + 43.562878 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPX2OY3JOEPQ", + "ref": "X2OY3JOEPQ", + "name": "Salernes, Place Clemenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.040289, + 43.191434 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLDEIEAYDSL", + "ref": "LDEIEAYDSL", + "name": "Sollies Pont, Parking Rezzonico", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.884482, + 43.101577 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUQL1ORKDTH", + "ref": "UQL1ORKDTH", + "name": "La Seyne Sur Mer, Parking Parc Navale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9177624, + 43.4124305 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNVJ5E3O6YT", + "ref": "NVJ5E3O6YT", + "name": "Tourves, Avenue de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.23577, + 43.135207 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCEJHEYUHTK", + "ref": "CEJHEYUHTK", + "name": "La Londe-Les-Maures, Place Victor Hugo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.361105, + 43.490803 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWLVMFDV1MU", + "ref": "WLVMFDV1MU", + "name": "Lorgues, 10 Rue Du 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.442335, + 43.760432 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPF2310LROW6", + "ref": "F2310LROW6", + "name": "Trigance, D90", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.960407, + 43.597668 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPY8NFJOVNCO", + "ref": "Y8NFJOVNCO", + "name": "Varages, Place De La Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.806379, + 43.117049 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPV7ICDQ3LVR", + "ref": "V7ICDQ3LVR", + "name": "Sanary-Sur-Mer, 71 Boulevard George Clemenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.801015, + 43.120048 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMR9BSJWNMJ", + "ref": "MR9BSJWNMJ", + "name": "Sanary-Sur-Mer, 121 Avenue General Rose", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.89433, + 43.080577 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLTG8ORIAX4", + "ref": "LTG8ORIAX4", + "name": "La Seyne Sur Mer, Parking Du Parc Braudel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.925816, + 43.12512 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEKWN2NN56Z", + "ref": "EKWN2NN56Z", + "name": "Toulon, Parking Ancienne Prison De St Roch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.006072, + 43.196785 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFYHUB1BIZF", + "ref": "FYHUB1BIZF", + "name": "Sollies-Toucas, 1475 Route de Valaury", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.910463, + 43.128749 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIMRPTILWO0", + "ref": "IMRPTILWO0", + "name": "Toulon, Place Du Colonel Bonnier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.938863, + 43.126242 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNRPAT4JCYN", + "ref": "NRPAT4JCYN", + "name": "Toulon, Avenue F.Lesseps", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.304044, + 43.450901 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRRK1AVPNIS", + "ref": "RRK1AVPNIS", + "name": "Le Thoronet, 208 Boulevard du 17 Aout 1944", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.925816, + 43.12512 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEKWN2NN56Z", + "ref": "EKWN2NN56Z", + "name": "Toulon, Parking Ancienne Prison De St Roch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.027701, + 43.207992 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPY2MRQRX4PV", + "ref": "Y2MRQRX4PV", + "name": "Sollies-Toucas, Avenue Du Gapeau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.426889, + 43.453845 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDMH0PBAXCF", + "ref": "DMH0PBAXCF", + "name": "Taradeau, 23 rue l'Ormeau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.910463, + 43.128749 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIMRPTILWO0", + "ref": "IMRPTILWO0", + "name": "Toulon, Place Du Colonel Bonnier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.889052, + 43.128623 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTMRZGC2FOR", + "ref": "TMRZGC2FOR", + "name": "Toulon, Parking Escaillon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.801015, + 43.120048 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMR9BSJWNMJ", + "ref": "MR9BSJWNMJ", + "name": "Sanary-Sur-Mer, 121 Avenue General Rose", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.463953, + 43.208338 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPI0SJOBBFTP", + "ref": "I0SJOBBFTP", + "name": "La Mole, Parking Rue Du Four", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.694532, + 43.166973 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPS1UPSAI2WA", + "ref": "S1UPSAI2WA", + "name": "Saint-Cyr-Sur-Mer, Parking La Madrague", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.858855, + 43.452337 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBJDBRGOTJA", + "ref": "BJDBRGOTJA", + "name": "Saint-Maximin-La-Ste-Baume, Chemin de Réal Vieux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.806379, + 43.117049 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPV7ICDQ3LVR", + "ref": "V7ICDQ3LVR", + "name": "Sanary-Sur-Mer, 71 Boulevard George Clemenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86157, + 43.288929 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPY7IPA7UM6O", + "ref": "Y7IPA7UM6O", + "name": "Signes, Chemin De La Rode", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.862383, + 43.29057 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDB729VJMID", + "ref": "DB729VJMID", + "name": "Signes, Rue Ferraillette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.89433, + 43.080577 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLTG8ORIAX4", + "ref": "LTG8ORIAX4", + "name": "La Seyne Sur Mer, Parking Du Parc Braudel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.884482, + 43.101577 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUQL1ORKDTH", + "ref": "UQL1ORKDTH", + "name": "La Seyne Sur Mer, Parking Parc Navale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.765235, + 43.617906 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFJYNYUSSSJ", + "ref": "FJYNYUSSSJ", + "name": "Montauroux, Place Du Clos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.938863, + 43.126242 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNRPAT4JCYN", + "ref": "NRPAT4JCYN", + "name": "Toulon, Avenue F.Lesseps", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.316517, + 43.3927 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCOBGZQF7KR", + "ref": "COBGZQF7KR", + "name": "Le Luc, Parking Rond point de l'Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.357913, + 43.314384 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBFO8FWAXWY", + "ref": "BFO8FWAXWY", + "name": "Les Mayons, Avenue Pierre Gaudin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.121209, + 43.473247 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMSA4LEJVKS", + "ref": "MSA4LEJVKS", + "name": "Montfort-Sur-Argens, Rue De La Rougiere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.012054, + 43.311571 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFUTIVJGR3W", + "ref": "FUTIVJGR3W", + "name": "Neoules, 7 Avenue de Fontaine Marcellin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.013545, + 43.308971 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYJEH1BQMHQ", + "ref": "YJEH1BQMHQ", + "name": "Neoules, 93 Chemin de la Fontaine du Midi", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.566681, + 43.470632 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPK0VTCHYACN", + "ref": "K0VTCHYACN", + "name": "Le Muy, Parking Le Roucas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.785255, + 43.371555 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQGDY5JC7JJ", + "ref": "QGDY5JC7JJ", + "name": "Nans-Les-Pins, Avenue Julien Jourdan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12474, + 45.91174 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJYGTRRTRSD", + "ref": "JYGTRRTRSD", + "name": "Annecy, Rue Max Bruchet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.827597, + 43.109013 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSEEISRFNFD", + "ref": "SEEISRFNFD", + "name": "Salernes, Pkg des Playes Rue Président Kennedy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.751882, + 43.133481 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGUF6TXRR70", + "ref": "GUF6TXRR70", + "name": "Bandol, parking de la Cale", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.674702, + 45.244738 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBTR9WYDZA8", + "ref": "BTR9WYDZA8", + "name": "Annonay, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.399957, + 44.351686 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLRP071S55P", + "ref": "LRP071S55P", + "name": "Labastide-De-Virac, Sous la Vielle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.445178, + 44.652523 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRKLKJ18RNS", + "ref": "RKLKJ18RNS", + "name": "Vesseaux, Chemin de l'Ancien Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.386888, + 44.620794 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMRKKQCRF0B", + "ref": "MRKKQCRF0B", + "name": "Aubenas, Place Olivier de Serres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36312, + 44.563802 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPG03APSS9V1", + "ref": "G03APSS9V1", + "name": "Lachapelle-Sous-Aubenas, Place De L'Alambic", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.501929, + 44.558368 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUDPQ78VIEG", + "ref": "UDPQ78VIEG", + "name": "Villeneuve-De-Berg, Place des Combettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.451231, + 44.555261 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUEVBPQ8MI8", + "ref": "UEVBPQ8MI8", + "name": "Saint-Germain, Place du Champ des Pauvres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856624, + 44.94513 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEAMPVLYEPK", + "ref": "EAMPVLYEPK", + "name": "Saint-Peray, Parking relais Maladière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.291861, + 44.538528 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUTZ2KU4Z0Y", + "ref": "UTZ2KU4Z0Y", + "name": "Largentière, Place les Vergnades", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83965, + 44.94409 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLHNDJZAIFZ", + "ref": "LHNDJZAIFZ", + "name": "Saint-Peray, Place Andre Pic", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.670735, + 45.241713 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAQKP45UGO1", + "ref": "AQKP45UGO1", + "name": "Annonay, Rue de la Valette - Parking la Valette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.574741, + 44.720654 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCHQCBVH6YS", + "ref": "CHQCBVH6YS", + "name": "Saint-Priest, Place Des Mineurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.598438, + 44.734181 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYMTDSVDIJN", + "ref": "YMTDSVDIJN", + "name": "Privas, Avenue de l'Europe Unie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.325842, + 44.537509 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCTXCZNNDNM", + "ref": "CTXCZNNDNM", + "name": "Vinezac, Place Chalendas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.342456, + 44.453956 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPB0LKPLIYGT", + "ref": "B0LKPLIYGT", + "name": "Ruoms, Place Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.848103, + 44.960719 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR3ZND15N5P", + "ref": "R3ZND15N5P", + "name": "Cornas, Avenue du Colonel Rousset", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343681, + 44.424621 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZIQGK2O3XP", + "ref": "ZIQGK2O3XP", + "name": "Sampzon, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.41797, + 44.447861 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR3FECEWLZD", + "ref": "R3FECEWLZD", + "name": "Lagorce, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.366008, + 44.345122 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDVX2BDOT0V", + "ref": "DVX2BDOT0V", + "name": "Vagnas, Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.299883, + 44.426088 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPM5CD2VVGLM", + "ref": "M5CD2VVGLM", + "name": "Saint-Alban-Auriolles, Place Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70591, + 45.257324 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDXM6EBUDLM", + "ref": "DXM6EBUDLM", + "name": "Davezieux, Place de la Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.598804, + 44.736443 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPK59SHDHWTV", + "ref": "K59SHDHWTV", + "name": "Privas, Place du Champs de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39753, + 44.406231 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKBJBS33OUJ", + "ref": "KBJBS33OUJ", + "name": "Vallon-Pont-D'Arc, Quartier Ratiere", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.387469, + 44.619624 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPL2PVKCY1TX", + "ref": "L2PVKCY1TX", + "name": "Aubenas, Place de la Pécourte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.613528, + 44.30425 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGMGOBJACDW", + "ref": "GMGOBJACDW", + "name": "Saint-Just-D'Ardèche, Pl. de l'Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.254712, + 44.298979 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPR9GFHI1ZR", + "ref": "PR9GFHI1ZR", + "name": "Saint-Sauveur-De-Cruzières, Fangaro", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.155203, + 44.366488 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBDBS1JFEDO", + "ref": "BDBS1JFEDO", + "name": "Banne, Lochere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.201782, + 44.373635 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBBW5E0H7F7", + "ref": "BBW5E0H7F7", + "name": "Berrias-Et-Casteljau, Place Andrée Rouveyrol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765732, + 44.941794 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPECO0VKGSLD", + "ref": "ECO0VKGSLD", + "name": "Champis, Fringuet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.413857, + 44.31816 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR4UYHEAYOG", + "ref": "R4UYHEAYOG", + "name": "Orgnac-L'Aven, Camp Redon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.870804, + 44.932387 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUGOFN7UN37", + "ref": "UGOFN7UN37", + "name": "Guilherand-Granges, Avenue Georges Clemenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.365731, + 44.665798 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKGWFWAHGAN", + "ref": "KGWFWAHGAN", + "name": "Vals-Les-Bains, Place Galimard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.553613, + 45.202235 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRGOY0O3953", + "ref": "RGOY0O3953", + "name": "Vocance, Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.358827, + 44.719448 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP8F2SQ4CDB", + "ref": "P8F2SQ4CDB", + "name": "Antraigues-Sur-Volane, Les Allevards", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.883509, + 44.935071 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCCH5F8VIHB", + "ref": "CCH5F8VIHB", + "name": "Guilherand-Granges, Boulevard Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.534039, + 45.119859 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMQRRNQ3NVI", + "ref": "MQRRNQ3NVI", + "name": "Lalouvesc, Place du lac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39753, + 44.406231 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKBJBS33OUJ", + "ref": "KBJBS33OUJ", + "name": "Vallon-Pont-D'Arc, Quartier Ratiere", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.307057, + 44.447701 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIAYB6RCTET", + "ref": "IAYB6RCTET", + "name": "Labeaume, Les Fraysses", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.71452, + 45.2187 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPSTY1D71XSX", + "ref": "STY1D71XSX", + "name": "Vernosc-Lès-Annonay, Rue du Centre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.623651, + 44.735891 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEYZ3RALMSG", + "ref": "EYZ3RALMSG", + "name": "Coux, Place d'Onclaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.682286, + 44.550008 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJNCQWIKSDA", + "ref": "JNCQWIKSDA", + "name": "Le Teil, Place du Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.255207, + 44.482199 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIGOBQMLJPP", + "ref": "IGOBQMLJPP", + "name": "Rosières, Place du Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.24175, + 44.479972 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYOTTUNSLP2", + "ref": "YOTTUNSLP2", + "name": "Joyeuse, Le Pré du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.695439, + 45.066154 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRL5NBTAUSM", + "ref": "RL5NBTAUSM", + "name": "Colombier-Le-Vieux, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.625376, + 45.085456 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAT2IKRY1YG", + "ref": "AT2IKRY1YG", + "name": "Saint-Felicien, Place du Martouret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.704728, + 44.588025 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPOHIKRIFSOE", + "ref": "OHIKRIFSOE", + "name": "Rochemaure, Place des Brassieres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39372, + 45.0099 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPANJXNT", + "ref": "ANJXNT", + "name": "Saint-Agrève, Place de Chantoisel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39372, + 45.0099 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPANJXNT", + "ref": "ANJXNT", + "name": "Saint-Agrève, Place de Chantoisel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12818, + 44.4053 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVPMUW1NPUD", + "ref": "VPMUW1NPUD", + "name": "Les Vans, Le Bourdaric", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95545, + 44.6512 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHWZQNS", + "ref": "HWZQNS", + "name": "Saint-Etienne-De-Lugdarès, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.23633, + 44.393373 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUELO0XXIY8", + "ref": "UELO0XXIY8", + "name": "Chandolas, Le Verdal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.685681, + 44.552929 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMGABJYHNMV", + "ref": "MGABJYHNMV", + "name": "Le Teil, Place René Montérémal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.27483, + 44.8673 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBKGPFE", + "ref": "BKGPFE", + "name": "Saint-Martial, Village Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96914, + 44.6071 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGWLPHY", + "ref": "GWLPHY", + "name": "Saint-Laurent-Les-Bains, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.18949, + 44.8092 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGFZEQP", + "ref": "GFZEQP", + "name": "Sainte-Eulalie, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96914, + 44.6071 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGWLPHY", + "ref": "GWLPHY", + "name": "Saint-Laurent-Les-Bains, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14181, + 43.103655 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZ2GMZTGMKG", + "ref": "Z2GMZTGMKG", + "name": "Hyères, ZAC Saint Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.18949, + 44.8092 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGFZEQP", + "ref": "GFZEQP", + "name": "Sainte-Eulalie, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95545, + 44.6512 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHWZQNS", + "ref": "HWZQNS", + "name": "Saint-Etienne-De-Lugdarès, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.831528, + 45.038472 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQ1XKQPXDSW", + "ref": "Q1XKQPXDSW", + "name": "Mauves, Chemin de Halage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.66594299, + 45.166995 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPNEKQQUXFMO", + "ref": "NEKQQUXFMO", + "name": "Saint-Romain-D'Ay, Avenue de Praperrier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.798643, + 45.239897 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJXWL9CLYQP", + "ref": "JXWL9CLYQP", + "name": "Andance, Place Maxime Chantier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.27483, + 44.8673 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBKGPFE", + "ref": "BKGPFE", + "name": "Saint-Martial, Village Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.815346, + 45.083486 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFRGYSKJMI9", + "ref": "FRGYSKJMI9", + "name": "Saint-Jean-De-Muzols, Rue Centrale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7268, + 45.286166 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGCVCJP15M7", + "ref": "GCVCJP15M7", + "name": "Peaugres, Route de l'Egalité", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.799815, + 45.187721 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTHXUW7AKVF", + "ref": "THXUW7AKVF", + "name": "Sarras, Place Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80108, + 45.271138 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVFVIHSTRMO", + "ref": "VFVIHSTRMO", + "name": "Champagne, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765453, + 44.657171 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPURUMP2J3YM", + "ref": "URUMP2J3YM", + "name": "Cruas, Place René Cassin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6887, + 44.484416 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUIM5AFHJMR", + "ref": "UIM5AFHJMR", + "name": "Viviers, Parking les Lauriers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.597261, + 44.553365 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPV8Z6ZGXG2M", + "ref": "V8Z6ZGXG2M", + "name": "Alba-La-Romaine, Parking le clos - Le clos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.215867, + 44.463088 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZB114AMUO7", + "ref": "ZB114AMUO7", + "name": "Lablachère, La Jaujon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.61752, + 45.151355 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBD2JDOGVLL", + "ref": "BD2JDOGVLL", + "name": "Satillieu, Place du Collège", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.629389, + 44.503 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBWIXDHWDKU", + "ref": "BWIXDHWDKU", + "name": "Saint-Thome, Place des Crottes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.48872, + 44.8149 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRCWJYG", + "ref": "RCWJYG", + "name": "Saint-Pierreville, Place du Clos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.48872, + 44.8149 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRCWJYG", + "ref": "RCWJYG", + "name": "Saint-Pierreville, Place du Clos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.835527, + 45.0643 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPO3TC1Q6PSG", + "ref": "O3TC1Q6PSG", + "name": "Tournon-Sur-Rhône, Place Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.625431, + 44.438699 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBPQKMWBSOI", + "ref": "BPQKMWBSOI", + "name": "Saint-Montan, Bauvache", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.59005, + 44.734135 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTE9XLMEDEJ", + "ref": "TE9XLMEDEJ", + "name": "Privas, Place du Foiral", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.72489514, + 44.60970725 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXDQPVX", + "ref": "XDQPVX", + "name": "Meysse, Rue Chevrière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39753, + 44.406231 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKBJBS33OUJ", + "ref": "KBJBS33OUJ", + "name": "Vallon-Pont-D'Arc, Quartier Ratiere", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.638471, + 45.188983 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEL284IFGMN", + "ref": "EL284IFGMN", + "name": "Saint-Alban-D'Ay, Font Benite", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.751882, + 43.133481 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGUF6TXRR70", + "ref": "GUF6TXRR70", + "name": "Bandol, parking de la Cale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.597261, + 44.553365 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPV8Z6ZGXG2M", + "ref": "V8Z6ZGXG2M", + "name": "Alba-La-Romaine, Parking le clos - Le clos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.781453, + 44.799609 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWHEP9NLKD4", + "ref": "WHEP9NLKD4", + "name": "La Voulte-Sur-Rhône, Quai Anatole France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.831528, + 45.038472 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPQ1XKQPXDSW", + "ref": "Q1XKQPXDSW", + "name": "Mauves, Chemin de Halage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.815346, + 45.083486 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPFRGYSKJMI9", + "ref": "FRGYSKJMI9", + "name": "Saint-Jean-De-Muzols, Rue Centrale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.781453, + 44.799609 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPWHEP9NLKD4", + "ref": "WHEP9NLKD4", + "name": "La Voulte-Sur-Rhône, Quai Anatole France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.638471, + 45.188983 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEL284IFGMN", + "ref": "EL284IFGMN", + "name": "Saint-Alban-D'Ay, Font Benite", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.829734, + 44.856094 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMRH2IYQPC5", + "ref": "MRH2IYQPC5", + "name": "Saint-Georges-Les-Bains, Le Blod", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.948059, + 43.125866 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPK2DBFDWT9W", + "ref": "K2DBFDWT9W", + "name": "Toulon, Boulevard Desaix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12942, + 44.5878 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPYBWJB", + "ref": "PYBWJB", + "name": "Valgorge, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12942, + 44.5878 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPPYBWJB", + "ref": "PYBWJB", + "name": "Valgorge, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.72489514, + 44.60970725 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXDQPVX", + "ref": "XDQPVX", + "name": "Meysse, Rue Chevrière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.799815, + 45.187721 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTHXUW7AKVF", + "ref": "THXUW7AKVF", + "name": "Sarras, Place Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7268, + 45.286166 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGCVCJP15M7", + "ref": "GCVCJP15M7", + "name": "Peaugres, Route de l'Egalité", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.798643, + 45.239897 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJXWL9CLYQP", + "ref": "JXWL9CLYQP", + "name": "Andance, Place Maxime Chantier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765453, + 44.657171 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPURUMP2J3YM", + "ref": "URUMP2J3YM", + "name": "Cruas, Place René Cassin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.907031, + 43.137815 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIHTEVI4L40", + "ref": "IHTEVI4L40", + "name": "Toulon, Place Marius Champagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.907031, + 43.137815 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIHTEVI4L40", + "ref": "IHTEVI4L40", + "name": "Toulon, Place Marius Champagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.848103, + 44.960719 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR3ZND15N5P", + "ref": "R3ZND15N5P", + "name": "Cornas, Avenue du Colonel Rousset", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.934264, + 43.112478 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYADWXN16SX", + "ref": "YADWXN16SX", + "name": "Toulon, Parking Fosse à Bois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14181, + 43.103655 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZ2GMZTGMKG", + "ref": "Z2GMZTGMKG", + "name": "Hyères, ZAC Saint Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-12-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.568563, + 44.301353 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZNYOVG5Q1H", + "ref": "ZNYOVG5Q1H", + "name": "Saint-Martin-D'Ardèche, Chemin du Grand Clos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.929132, + 43.120398 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLW8YIBIVNR", + "ref": "LW8YIBIVNR", + "name": "TOULON, Avenue de la République - Préfecture maritime", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.900207, + 43.091725 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBTEM7L8NXD", + "ref": "BTEM7L8NXD", + "name": "La Seyne sur Mer, Parking Tamaris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.900207, + 43.091725 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBTEM7L8NXD", + "ref": "BTEM7L8NXD", + "name": "La Seyne sur Mer, Parking Tamaris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.153919, + 43.079788 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPE13WCUMQM3", + "ref": "E13WCUMQM3", + "name": "Hyères, Parking Hippodrome", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.934264, + 43.112478 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYADWXN16SX", + "ref": "YADWXN16SX", + "name": "Toulon, Parking Fosse à Bois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.153919, + 43.079788 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPE13WCUMQM3", + "ref": "E13WCUMQM3", + "name": "Hyères, Parking Hippodrome", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.153966, + 43.030095 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXKCZXBQX77", + "ref": "XKCZXBQX77", + "name": "Hyères, Parking Tour Fondue", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.877614, + 43.117208 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRDX2AWT3HH", + "ref": "RDX2AWT3HH", + "name": "La Seyne Sur Mer, Parking Gare SNCF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.811146, + 43.091278 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLLI8VB03EYSCL2", + "ref": "LLI8VB03EYSCL2", + "name": "Six-Fours-Les-Plages, Résidence Le Rayolet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.811146, + 43.091278 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLLI8VB03EYSCL2", + "ref": "LLI8VB03EYSCL2", + "name": "Six-Fours-Les-Plages, Résidence Le Rayolet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.975751, + 43.12525 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHSL9TJXH2X", + "ref": "HSL9TJXH2X", + "name": "Toulon, Allée Rouvière Sainte Musse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.975751, + 43.12525 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPHSL9TJXH2X", + "ref": "HSL9TJXH2X", + "name": "Toulon, Allée Rouvière Sainte Musse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.948059, + 43.125866 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPK2DBFDWT9W", + "ref": "K2DBFDWT9W", + "name": "Toulon, Boulevard Desaix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.153966, + 43.030095 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPXKCZXBQX77", + "ref": "XKCZXBQX77", + "name": "Hyères, Parking Tour Fondue", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-03-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80108, + 45.271138 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPVFVIHSTRMO", + "ref": "VFVIHSTRMO", + "name": "Champagne, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.877614, + 43.117208 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRDX2AWT3HH", + "ref": "RDX2AWT3HH", + "name": "La Seyne Sur Mer, Parking Gare SNCF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.342456, + 44.453956 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPB0LKPLIYGT", + "ref": "B0LKPLIYGT", + "name": "Ruoms, Place Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.670735, + 45.241713 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAQKP45UGO1", + "ref": "AQKP45UGO1", + "name": "Annonay, Rue de la Valette - Parking la Valette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.883509, + 44.935071 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCCH5F8VIHB", + "ref": "CCH5F8VIHB", + "name": "Guilherand-Granges, Boulevard Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.365731, + 44.665798 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKGWFWAHGAN", + "ref": "KGWFWAHGAN", + "name": "Vals-Les-Bains, Place Galimard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.534159, + 44.366203 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPB7F7XR3ZNB", + "ref": "B7F7XR3ZNB", + "name": "Bidon, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.358827, + 44.719448 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPP8F2SQ4CDB", + "ref": "P8F2SQ4CDB", + "name": "Antraigues-Sur-Volane, Les Allevards", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.598438, + 44.734181 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPYMTDSVDIJN", + "ref": "YMTDSVDIJN", + "name": "Privas, Avenue de l'Europe Unie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.574741, + 44.720654 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCHQCBVH6YS", + "ref": "CHQCBVH6YS", + "name": "Saint-Priest, Place Des Mineurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.674702, + 45.244738 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPBTR9WYDZA8", + "ref": "BTR9WYDZA8", + "name": "Annonay, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.598804, + 44.736443 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPK59SHDHWTV", + "ref": "K59SHDHWTV", + "name": "Privas, Place du Champs de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.568563, + 44.301353 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZNYOVG5Q1H", + "ref": "ZNYOVG5Q1H", + "name": "Saint-Martin-D'Ardèche, Chemin du Grand Clos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.534159, + 44.366203 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPB7F7XR3ZNB", + "ref": "B7F7XR3ZNB", + "name": "Bidon, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.59005, + 44.734135 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPTE9XLMEDEJ", + "ref": "TE9XLMEDEJ", + "name": "Privas, Place du Foiral", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.623651, + 44.735891 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEYZ3RALMSG", + "ref": "EYZ3RALMSG", + "name": "Coux, Place d'Onclaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22643, + 44.7905 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPAWVBDU", + "ref": "AWVBDU", + "name": "Sagnes-Et-Goudoulet, Les Sagnes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-01-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.20786, + 44.711 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPK4HHCPMLJM", + "ref": "K4HHCPMLJM", + "name": "Montpezat-Sous-Bauzon, Place de la Poste - Boulevard de la Prairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.20786, + 44.711 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPK4HHCPMLJM", + "ref": "K4HHCPMLJM", + "name": "Montpezat-Sous-Bauzon, Place de la Poste - Boulevard de la Prairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83965, + 44.94409 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLHNDJZAIFZ", + "ref": "LHNDJZAIFZ", + "name": "Saint-Peray, Place Andre Pic", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.534039, + 45.119859 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPMQRRNQ3NVI", + "ref": "MQRRNQ3NVI", + "name": "Lalouvesc, Place du lac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.643774, + 44.371477 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJHNMPLBVVS", + "ref": "JHNMPLBVVS", + "name": "Bourg-Saint-Andeol, Place du Champs de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.399957, + 44.351686 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPLRP071S55P", + "ref": "LRP071S55P", + "name": "Labastide-De-Virac, Sous la Vielle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.553613, + 45.202235 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPRGOY0O3953", + "ref": "RGOY0O3953", + "name": "Vocance, Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.307057, + 44.447701 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPIAYB6RCTET", + "ref": "IAYB6RCTET", + "name": "Labeaume, Les Fraysses", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.325842, + 44.537509 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPCTXCZNNDNM", + "ref": "CTXCZNNDNM", + "name": "Vinezac, Place Chalendas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343681, + 44.424621 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPZIQGK2O3XP", + "ref": "ZIQGK2O3XP", + "name": "Sampzon, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.643774, + 44.371477 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPJHNMPLBVVS", + "ref": "JHNMPLBVVS", + "name": "Bourg-Saint-Andeol, Place du Champs de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.299883, + 44.426088 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPM5CD2VVGLM", + "ref": "M5CD2VVGLM", + "name": "Saint-Alban-Auriolles, Place Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.501929, + 44.558368 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUDPQ78VIEG", + "ref": "UDPQ78VIEG", + "name": "Villeneuve-De-Berg, Place des Combettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36312, + 44.563802 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPG03APSS9V1", + "ref": "G03APSS9V1", + "name": "Lachapelle-Sous-Aubenas, Place De L'Alambic", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.451231, + 44.555261 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUEVBPQ8MI8", + "ref": "UEVBPQ8MI8", + "name": "Saint-Germain, Place du Champ des Pauvres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.366008, + 44.345122 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPDVX2BDOT0V", + "ref": "DVX2BDOT0V", + "name": "Vagnas, Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.41797, + 44.447861 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR3FECEWLZD", + "ref": "R3FECEWLZD", + "name": "Lagorce, Le Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.413857, + 44.31816 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPR4UYHEAYOG", + "ref": "R4UYHEAYOG", + "name": "Orgnac-L'Aven, Camp Redon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39753, + 44.406231 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPKBJBS33OUJ", + "ref": "KBJBS33OUJ", + "name": "Vallon-Pont-D'Arc, Quartier Ratiere", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.291861, + 44.538528 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPUTZ2KU4Z0Y", + "ref": "UTZ2KU4Z0Y", + "name": "Largentière, Place les Vergnades", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.613528, + 44.30425 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPGMGOBJACDW", + "ref": "GMGOBJACDW", + "name": "Saint-Just-D'Ardèche, Pl. de l'Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856624, + 44.94513 + ] + }, + "properties": { + "operator": "SPBR1", + "owner:ref:FR:SIREN": "", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref:EU:EVSE": "FREBNPEAMPVLYEPK", + "ref": "EAMPVLYEPK", + "name": "Saint-Peray, Parking relais Maladière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2023-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.153293, + 49.48322 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "304891641", + "email": "contact@sga-automation.com", + "phone": "0232103853", + "network": "Réseau de recharge Sogestran", + "ref:EU:EVSE": "FRSGAP1D2006", + "ref": "", + "name": "D2006", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-10", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15306, + 49.483216 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "304891641", + "email": "contact@sga-automation.com", + "phone": "0232103853", + "network": "Réseau de recharge Sogestran", + "ref:EU:EVSE": "FRSGAP1D2007", + "ref": "", + "name": "D2007", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-10", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.153293, + 49.48322 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "304891641", + "email": "contact@sga-automation.com", + "phone": "0232103853", + "network": "Réseau de recharge Sogestran", + "ref:EU:EVSE": "FRSGAP1D2006", + "ref": "", + "name": "D2006", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-10", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.153293, + 49.48322 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "304891641", + "email": "contact@sga-automation.com", + "phone": "0232103853", + "network": "Réseau de recharge Sogestran", + "ref:EU:EVSE": "FRSGAP1D2006", + "ref": "", + "name": "D2006", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-10", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15306, + 49.483216 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "304891641", + "email": "contact@sga-automation.com", + "phone": "0232103853", + "network": "Réseau de recharge Sogestran", + "ref:EU:EVSE": "FRSGAP1D2007", + "ref": "", + "name": "D2007", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-10", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.153177, + 49.48322 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "304891641", + "email": "contact@sga-automation.com", + "phone": "0232103853", + "network": "Réseau de recharge Sogestran", + "ref:EU:EVSE": "FRSGAP1D2008", + "ref": "", + "name": "D2008", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-10", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.153177, + 49.48322 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "304891641", + "email": "contact@sga-automation.com", + "phone": "0232103853", + "network": "Réseau de recharge Sogestran", + "ref:EU:EVSE": "FRSGAP1D2008", + "ref": "", + "name": "D2008", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-10", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.153177, + 49.48322 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "304891641", + "email": "contact@sga-automation.com", + "phone": "0232103853", + "network": "Réseau de recharge Sogestran", + "ref:EU:EVSE": "FRSGAP1D2008", + "ref": "", + "name": "D2008", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-10", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15306, + 49.483216 + ] + }, + "properties": { + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "304891641", + "email": "contact@sga-automation.com", + "phone": "0232103853", + "network": "Réseau de recharge Sogestran", + "ref:EU:EVSE": "FRSGAP1D2007", + "ref": "", + "name": "D2007", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-10", + "note": "Recharge uniquement disponible pendant les horaires d'ouvertures de la société", + "source:date": "2021-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.339118, + 45.44058 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42223AA", + "ref": "FRESEP42223AA", + "name": "SEMOB DE VINCI", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-07-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383611, + 45.450606 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BI", + "ref": "FRESEP42218BI", + "name": "SEMOB Edmond Charpentier", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383611, + 45.450606 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BI", + "ref": "FRESEP42218BI", + "name": "SEMOB Edmond Charpentier", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383611, + 45.450606 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BI", + "ref": "FRESEP42218BI", + "name": "SEMOB Edmond Charpentier", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.409465, + 45.422654 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AC", + "ref": "FRESEP42218AC", + "name": "SEMOB Ecole des Mines", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-03-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.409465, + 45.422654 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AC", + "ref": "FRESEP42218AC", + "name": "SEMOB Ecole des Mines", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-03-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.392732, + 45.446148 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BG", + "ref": "FRESEP42218BG", + "name": "SEMOB Desjoyaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.392732, + 45.446148 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BG", + "ref": "FRESEP42218BG", + "name": "SEMOB Desjoyaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.339118, + 45.44058 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42223AA", + "ref": "FRESEP42223AA", + "name": "SEMOB DE VINCI", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-07-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.399325, + 45.440783 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AK", + "ref": "FRESEP42218AK", + "name": "SEMOB Dalgabio - Grüner", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.339118, + 45.44058 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42223AA", + "ref": "FRESEP42223AA", + "name": "SEMOB DE VINCI", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-07-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.285769, + 45.391243 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42095AA", + "ref": "FRESEP42095AA", + "name": "SEMOB Firminy - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.399325, + 45.440783 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AK", + "ref": "FRESEP42218AK", + "name": "SEMOB Dalgabio - Grüner", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3907915488403, + 45.44346056306 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BB", + "ref": "FRESEP42218BB", + "name": "SEMOB Cret de Roc", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3907915488403, + 45.44346056306 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BB", + "ref": "FRESEP42218BB", + "name": "SEMOB Cret de Roc", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3907915488403, + 45.44346056306 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BB", + "ref": "FRESEP42218BB", + "name": "SEMOB Cret de Roc", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.395133, + 45.431483 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AH", + "ref": "FRESEP42218AH", + "name": "SEMOB Conservatoire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.395133, + 45.431483 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AH", + "ref": "FRESEP42218AH", + "name": "SEMOB Conservatoire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.384222, + 45.459475 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AV", + "ref": "FRESEP42218AV", + "name": "SEMOB Claude Odde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-24", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.285769, + 45.391243 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42095AA", + "ref": "FRESEP42095AA", + "name": "SEMOB Firminy - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.286092, + 45.384258 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42095AC", + "ref": "FRESEP42095AC", + "name": "SEMOB FIRMINY CENTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-02-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.323678, + 45.397069 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42044AA", + "ref": "FRESEP42044AA", + "name": "SEMOB Jean Jaures", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-09-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.364239, + 45.479263 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42275AA", + "ref": "FRESEP42275AA", + "name": "SEMOB Hôpital Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-23", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.394564, + 45.433997 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AJ", + "ref": "FRESEP42218AJ", + "name": "SEMOB Chavanelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-08-26", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.323678, + 45.397069 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42044AA", + "ref": "FRESEP42044AA", + "name": "SEMOB Jean Jaures", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-09-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3867507, + 45.4476017 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BK", + "ref": "FRESEP42218BK", + "name": "SEMOB Janin Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3867507, + 45.4476017 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BK", + "ref": "FRESEP42218BK", + "name": "SEMOB Janin Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5158208, + 45.4782379 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42207AD", + "ref": "FRESEP42207AD", + "name": "SEMOB Hotel Dieu St Chamond", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-24", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5158208, + 45.4782379 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42207AD", + "ref": "FRESEP42207AD", + "name": "SEMOB Hotel Dieu St Chamond", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-24", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5158208, + 45.4782379 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42207AD", + "ref": "FRESEP42207AD", + "name": "SEMOB Hotel Dieu St Chamond", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-24", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.364239, + 45.479263 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42275AA", + "ref": "FRESEP42275AA", + "name": "SEMOB Hôpital Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-23", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378651, + 45.463571 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AU", + "ref": "FRESEP42218AU", + "name": "SEMOB GROUCHY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-02-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.286092, + 45.384258 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42095AC", + "ref": "FRESEP42095AC", + "name": "SEMOB FIRMINY CENTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-02-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378651, + 45.463571 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AU", + "ref": "FRESEP42218AU", + "name": "SEMOB GROUCHY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-02-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.368072, + 45.454275 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AR", + "ref": "FRESEP42218AR", + "name": "SEMOB Golf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.368072, + 45.454275 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AR", + "ref": "FRESEP42218AR", + "name": "SEMOB Golf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.620006, + 45.529152 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42186AB", + "ref": "FRESEP42186AB", + "name": "SEMOB Gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-03-10", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.620006, + 45.529152 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42186AB", + "ref": "FRESEP42186AB", + "name": "SEMOB Gambetta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-03-10", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.276472, + 45.379078 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42095AB", + "ref": "FRESEP42095AB", + "name": "SEMOB Firminy Chazeau", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-06-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.276472, + 45.379078 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42095AB", + "ref": "FRESEP42095AB", + "name": "SEMOB Firminy Chazeau", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-06-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.276472, + 45.379078 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42095AB", + "ref": "FRESEP42095AB", + "name": "SEMOB Firminy Chazeau", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-06-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.384222, + 45.459475 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AV", + "ref": "FRESEP42218AV", + "name": "SEMOB Claude Odde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-24", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.613454, + 45.527692 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42186AC", + "ref": "FRESEP42186AC", + "name": "SEMOB 11 novembre Rive de Gier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.394564, + 45.433997 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AJ", + "ref": "FRESEP42218AJ", + "name": "SEMOB Chavanelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-08-26", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.390567, + 45.430944 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AO", + "ref": "FRESEP42218AO", + "name": "SEMOB Anatole France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.292167, + 45.523472 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42005AA", + "ref": "FRESEP42005AA", + "name": "SEMOB Andrézieux-Z.Commerce", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-08", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.292167, + 45.523472 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42005AA", + "ref": "FRESEP42005AA", + "name": "SEMOB Andrézieux-Z.Commerce", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-08", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.292167, + 45.523472 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42005AA", + "ref": "FRESEP42005AA", + "name": "SEMOB Andrézieux-Z.Commerce", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-08", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.257074, + 45.525924 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42005AC", + "ref": "FRESEP42005AC", + "name": "SEMOB Andrézieux Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.257074, + 45.525924 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42005AC", + "ref": "FRESEP42005AC", + "name": "SEMOB Andrézieux Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.272165, + 45.529554 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42005AB", + "ref": "FRESEP42005AB", + "name": "SEMOB Andrézieux Palais des Sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-14", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.272165, + 45.529554 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42005AB", + "ref": "FRESEP42005AB", + "name": "SEMOB Andrézieux Palais des Sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-14", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.390567, + 45.430944 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AO", + "ref": "FRESEP42218AO", + "name": "SEMOB Anatole France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.389903, + 45.411421 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AY", + "ref": "FRESEP42218AY", + "name": "SEMOB Ambroise Paré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-02", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37989, + 45.437243 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BQ", + "ref": "FRESEP42218BQ", + "name": "SEMOB Augustin Dupré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.389903, + 45.411421 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AY", + "ref": "FRESEP42218AY", + "name": "SEMOB Ambroise Paré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-02", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.377888, + 45.467731 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42275AE", + "ref": "FRESEP42275AE", + "name": "SEMOB Albert Raimond", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-29", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.377888, + 45.467731 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42275AE", + "ref": "FRESEP42275AE", + "name": "SEMOB Albert Raimond", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-29", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.526069, + 45.494844 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEPS42207AC", + "ref": "FRESEPS42207AC", + "name": "SEMOB Aire pays du Gier", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-30", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.526069, + 45.494844 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEPS42207AC", + "ref": "FRESEPS42207AC", + "name": "SEMOB Aire pays du Gier", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-30", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.526069, + 45.494844 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEPS42207AC", + "ref": "FRESEPS42207AC", + "name": "SEMOB Aire pays du Gier", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-30", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.613454, + 45.527692 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42186AC", + "ref": "FRESEP42186AC", + "name": "SEMOB 11 novembre Rive de Gier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.388649, + 45.432013 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BD", + "ref": "FRESEP42218BD", + "name": "SEMOB Jovin Bouchard", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37989, + 45.437243 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BQ", + "ref": "FRESEP42218BQ", + "name": "SEMOB Augustin Dupré", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.399995, + 45.41816 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AZ", + "ref": "FRESEP42218AZ", + "name": "SEMOB Avenue Rochetaillée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-27", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400734, + 45.442934 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BS", + "ref": "FRESEP42218BS", + "name": "SEMOB Châteaucreux", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.419098, + 45.418845 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BL", + "ref": "FRESEP42218BL", + "name": "SEMOB Boulevard Fraissinette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400734, + 45.442934 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BS", + "ref": "FRESEP42218BS", + "name": "SEMOB Châteaucreux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400734, + 45.442934 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BS", + "ref": "FRESEP42218BS", + "name": "SEMOB Châteaucreux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.264967, + 45.543839 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42005AD", + "ref": "FRESEP42005AD", + "name": "SEMOB Chateau Bouthéon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-10", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.264967, + 45.543839 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42005AD", + "ref": "FRESEP42005AD", + "name": "SEMOB Chateau Bouthéon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-10", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.403326, + 45.426995 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AD", + "ref": "FRESEP42218AD", + "name": "SEMOB Centre des Congrès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-06-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.403326, + 45.426995 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AD", + "ref": "FRESEP42218AD", + "name": "SEMOB Centre des Congrès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-06-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3801704, + 45.4731837 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42275AC", + "ref": "FRESEP42275AC", + "name": "SEMOB Centenaire St Priest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3801704, + 45.4731837 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42275AC", + "ref": "FRESEP42275AC", + "name": "SEMOB Centenaire St Priest", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.419098, + 45.418845 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BL", + "ref": "FRESEP42218BL", + "name": "SEMOB Boulevard Fraissinette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.399995, + 45.41816 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AZ", + "ref": "FRESEP42218AZ", + "name": "SEMOB Avenue Rochetaillée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-27", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.387767, + 45.453219 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AA", + "ref": "FRESEP42218AA", + "name": "SEMOB BHT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-03-02", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.387767, + 45.453219 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AA", + "ref": "FRESEP42218AA", + "name": "SEMOB BHT", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-03-02", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.387767, + 45.453219 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AA", + "ref": "FRESEP42218AA", + "name": "SEMOB BHT", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-03-02", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39425, + 45.415889 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AI", + "ref": "FRESEP42218AI", + "name": "SEMOB Bellevue - Hôpital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-08-28", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39425, + 45.415889 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AI", + "ref": "FRESEP42218AI", + "name": "SEMOB Bellevue - Hôpital", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-08-28", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.395436, + 45.423999 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BN", + "ref": "FRESEP42218BN", + "name": "SEMOB Basses des Rives", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-19", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.395436, + 45.423999 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BN", + "ref": "FRESEP42218BN", + "name": "SEMOB Basses des Rives", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-19", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.395436, + 45.423999 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BN", + "ref": "FRESEP42218BN", + "name": "SEMOB Basses des Rives", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-19", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.388649, + 45.432013 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BD", + "ref": "FRESEP42218BD", + "name": "SEMOB Jovin Bouchard", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.505508, + 45.477173 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42207AF", + "ref": "FRESEP42207AF", + "name": "SEMOB Melchior Mitte", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-28", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.388649, + 45.432013 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BD", + "ref": "FRESEP42218BD", + "name": "SEMOB Jovin Bouchard", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.62708, + 45.532354 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42186AA", + "ref": "FRESEP42186AA", + "name": "SEMOB Place Chipier", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-30", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.403437, + 45.439087 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AM", + "ref": "FRESEP42218AM", + "name": "SEMOB Saint François", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.403437, + 45.439087 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AM", + "ref": "FRESEP42218AM", + "name": "SEMOB Saint François", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38351, + 45.43067 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BM", + "ref": "FRESEP42218BM", + "name": "SEMOB Sablière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-18", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38351, + 45.43067 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BM", + "ref": "FRESEP42218BM", + "name": "SEMOB Sablière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-18", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.505162, + 45.467122 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42207AE", + "ref": "FRESEP42207AE", + "name": "SEMOB Royet de la Bastie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.505162, + 45.467122 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42207AE", + "ref": "FRESEP42207AE", + "name": "SEMOB Royet de la Bastie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.623377, + 45.53135 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42186AD", + "ref": "FRESEP42186AD", + "name": "SEMOB Rive de Gier Pasteur", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.623377, + 45.53135 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42186AD", + "ref": "FRESEP42186AD", + "name": "SEMOB Rive de Gier Pasteur", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.373289, + 45.444678 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AX", + "ref": "FRESEP42218AX", + "name": "SEMOB Puits de la Loire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.373289, + 45.444678 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AX", + "ref": "FRESEP42218AX", + "name": "SEMOB Puits de la Loire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38404, + 45.439909 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BE", + "ref": "FRESEP42218BE", + "name": "SEMOB Place Jean Plotton", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38404, + 45.439909 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BE", + "ref": "FRESEP42218BE", + "name": "SEMOB Place Jean Plotton", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38404, + 45.439909 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BE", + "ref": "FRESEP42218BE", + "name": "SEMOB Place Jean Plotton", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391937, + 45.438013 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BC", + "ref": "FRESEP42218BC", + "name": "SEMOB Place Jean Moulin", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391937, + 45.438013 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BC", + "ref": "FRESEP42218BC", + "name": "SEMOB Place Jean Moulin", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391937, + 45.438013 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BC", + "ref": "FRESEP42218BC", + "name": "SEMOB Place Jean Moulin", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.396479, + 45.439454 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BJ", + "ref": "FRESEP42218BJ", + "name": "SEMOB Place Fourneyron", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.396479, + 45.439454 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BJ", + "ref": "FRESEP42218BJ", + "name": "SEMOB Place Fourneyron", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.396479, + 45.439454 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BJ", + "ref": "FRESEP42218BJ", + "name": "SEMOB Place Fourneyron", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401687, + 45.45052 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AE", + "ref": "FRESEP42218AE", + "name": "SEMOB Soleil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401687, + 45.45052 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AE", + "ref": "FRESEP42218AE", + "name": "SEMOB Soleil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-26", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.422419, + 45.444738 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42237AB", + "ref": "FRESEP42237AB", + "name": "SEMOB STEEL", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-04-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.386229, + 45.435811 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AW", + "ref": "FRESEP42218AW", + "name": "SEMOB Ursules", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.379868, + 45.43433 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BP", + "ref": "FRESEP42218BP", + "name": "SEMOB Jules Serret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391303, + 45.454669 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AG", + "ref": "FRESEP42218AG", + "name": "SEMOB Zenith", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391303, + 45.454669 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AG", + "ref": "FRESEP42218AG", + "name": "SEMOB Zenith", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.50956, + 45.477746 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42207AG", + "ref": "FRESEP42207AG", + "name": "SEMOB Waldeck Rousseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.50956, + 45.477746 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42207AG", + "ref": "FRESEP42207AG", + "name": "SEMOB Waldeck Rousseau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.368069, + 45.468686 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42330AA", + "ref": "FRESEP42330AA", + "name": "SEMOB Villars", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-24", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.368069, + 45.468686 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42330AA", + "ref": "FRESEP42330AA", + "name": "SEMOB Villars", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-24", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.368069, + 45.468686 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42330AA", + "ref": "FRESEP42330AA", + "name": "SEMOB Villars", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-24", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.386229, + 45.435811 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AW", + "ref": "FRESEP42218AW", + "name": "SEMOB Ursules", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.422419, + 45.444738 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42237AB", + "ref": "FRESEP42237AB", + "name": "SEMOB STEEL", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-04-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.437393, + 45.436396 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AT", + "ref": "FRESEP42218AT", + "name": "SEMOB Terrenoire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-05-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.437393, + 45.436396 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AT", + "ref": "FRESEP42218AT", + "name": "SEMOB Terrenoire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-05-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3976364, + 45.4572274 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BA", + "ref": "FRESEP42218BA", + "name": "SEMOB Technopole - Presse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3976364, + 45.4572274 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BA", + "ref": "FRESEP42218BA", + "name": "SEMOB Technopole - Presse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.392778, + 45.457303 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AF", + "ref": "FRESEP42218AF", + "name": "SEMOB Technopole - artisanat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-06-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.392778, + 45.457303 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AF", + "ref": "FRESEP42218AF", + "name": "SEMOB Technopole - artisanat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-06-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.392778, + 45.457303 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AF", + "ref": "FRESEP42218AF", + "name": "SEMOB Technopole - artisanat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-06-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.422419, + 45.444738 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42237AB", + "ref": "FRESEP42237AB", + "name": "SEMOB STEEL", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-04-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.62708, + 45.532354 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42186AA", + "ref": "FRESEP42186AA", + "name": "SEMOB Place Chipier", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-30", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.392778, + 45.457303 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AF", + "ref": "FRESEP42218AF", + "name": "SEMOB Technopole - artisanat", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-06-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.62708, + 45.532354 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42186AA", + "ref": "FRESEP42186AA", + "name": "SEMOB Place Chipier", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-30", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5039778, + 45.4577757 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42207AH", + "ref": "FRESEP42207AH", + "name": "SEMOB Louis Comte St Chamond", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.444597, + 45.448767 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEPS42237AA", + "ref": "FRESEPS42237AA", + "name": "SEMOB Mairie Saint Jean Bonnefond", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-12-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.444597, + 45.448767 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEPS42237AA", + "ref": "FRESEPS42237AA", + "name": "SEMOB Mairie Saint Jean Bonnefond", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-12-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.387578, + 45.440594 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AQ", + "ref": "FRESEP42218AQ", + "name": "SEMOB Mairie Saint Etienne", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.387578, + 45.440594 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AQ", + "ref": "FRESEP42218AQ", + "name": "SEMOB Mairie Saint Etienne", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.387578, + 45.440594 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AQ", + "ref": "FRESEP42218AQ", + "name": "SEMOB Mairie Saint Etienne", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.386948, + 45.409886 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AP", + "ref": "FRESEP42218AP", + "name": "SEMOB Louis Courrier", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-08-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.386948, + 45.409886 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AP", + "ref": "FRESEP42218AP", + "name": "SEMOB Louis Courrier", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-08-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.386948, + 45.409886 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AP", + "ref": "FRESEP42218AP", + "name": "SEMOB Louis Courrier", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-08-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5039778, + 45.4577757 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42207AH", + "ref": "FRESEP42207AH", + "name": "SEMOB Louis Comte St Chamond", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.505508, + 45.477173 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42207AF", + "ref": "FRESEP42207AF", + "name": "SEMOB Melchior Mitte", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-28", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38127, + 45.44757 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BO", + "ref": "FRESEP42218BO", + "name": "SEMOB Lamartine Place Girodet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378769, + 45.466526 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AB", + "ref": "FRESEP42218AB", + "name": "SEMOB La Terrasse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-03-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378769, + 45.466526 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AB", + "ref": "FRESEP42218AB", + "name": "SEMOB La Terrasse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-03-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.382443, + 45.477253 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42275AD", + "ref": "FRESEP42275AD", + "name": "SEMOB La Bargette St Priest en Jarez", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-24", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.382443, + 45.477253 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42275AD", + "ref": "FRESEP42275AD", + "name": "SEMOB La Bargette St Priest en Jarez", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-24", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.382443, + 45.477253 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42275AD", + "ref": "FRESEP42275AD", + "name": "SEMOB La Bargette St Priest en Jarez", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-24", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.458179, + 45.457039 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42237AC", + "ref": "FRESEP42237AC", + "name": "SEMOB Parc Métrotech", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-18", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.379868, + 45.43433 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BP", + "ref": "FRESEP42218BP", + "name": "SEMOB Jules Serret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-07", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.505508, + 45.477173 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42207AF", + "ref": "FRESEP42207AF", + "name": "SEMOB Melchior Mitte", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-28", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38127, + 45.44757 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BO", + "ref": "FRESEP42218BO", + "name": "SEMOB Lamartine Place Girodet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.354466, + 45.479853 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42275AB", + "ref": "FRESEP42275AB", + "name": "SEMOB Mendes France", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-03-12", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38966, + 45.43496 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BR", + "ref": "FRESEP42218BR", + "name": "SEMOB Michelet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.458179, + 45.457039 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42237AC", + "ref": "FRESEP42237AC", + "name": "SEMOB Parc Métrotech", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-18", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.413217, + 45.420522 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AL", + "ref": "FRESEP42218AL", + "name": "SEMOB Parc de l'Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-08-30", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.354466, + 45.479853 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42275AB", + "ref": "FRESEP42275AB", + "name": "SEMOB Mendes France", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-03-12", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.413217, + 45.420522 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AL", + "ref": "FRESEP42218AL", + "name": "SEMOB Parc de l'Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-08-30", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.508525, + 45.471086 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42207AA", + "ref": "FRESEP42207AA", + "name": "SEMOB Novacieries", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-05-02", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.508525, + 45.471086 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42207AA", + "ref": "FRESEP42207AA", + "name": "SEMOB Novacieries", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-05-02", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.417438, + 45.434308 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AN", + "ref": "FRESEP42218AN", + "name": "SEMOB Montplaisir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-09-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.40185, + 45.4405 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BF", + "ref": "FRESEP42218BF", + "name": "SEMOB Montat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.40185, + 45.4405 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BF", + "ref": "FRESEP42218BF", + "name": "SEMOB Montat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.417438, + 45.434308 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AN", + "ref": "FRESEP42218AN", + "name": "SEMOB Montplaisir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-09-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38966, + 45.43496 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BR", + "ref": "FRESEP42218BR", + "name": "SEMOB Michelet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424937, + 45.42304 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BH", + "ref": "FRESEP42218BH", + "name": "SEMOB Métare Université", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424937, + 45.42304 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BH", + "ref": "FRESEP42218BH", + "name": "SEMOB Métare Université", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.354466, + 45.479853 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42275AB", + "ref": "FRESEP42275AB", + "name": "SEMOB Mendes France", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-03-12", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424937, + 45.42304 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218BH", + "ref": "FRESEP42218BH", + "name": "SEMOB Métare Université", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.412619, + 45.455738 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AS", + "ref": "FRESEP42218AS", + "name": "SEMOB Meons", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-05-12", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.412619, + 45.455738 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AS", + "ref": "FRESEP42218AS", + "name": "SEMOB Meons", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-05-12", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.412619, + 45.455738 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Réseau Saint Étienne Métropole", + "ref:EU:EVSE": "FRESEP42218AS", + "ref": "FRESEP42218AS", + "name": "SEMOB Meons", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-05-12", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057328868811743, + 45.45730543705983 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "DOMAINE DE VALINCHES", + "ref:EU:EVSE": "FRG10P42140A", + "ref": "FRG10P42140A", + "name": "DOMAINE DE VALINCHES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057328868811743, + 45.45730543705983 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "DOMAINE DE VALINCHES", + "ref:EU:EVSE": "FRG10P42140A", + "ref": "FRG10P42140A", + "name": "DOMAINE DE VALINCHES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057328868811743, + 45.45730543705983 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "DOMAINE DE VALINCHES", + "ref:EU:EVSE": "FRG10P42140A", + "ref": "FRG10P42140A", + "name": "DOMAINE DE VALINCHES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057328868811743, + 45.45730543705983 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "DOMAINE DE VALINCHES", + "ref:EU:EVSE": "FRG10P42140A", + "ref": "FRG10P42140A", + "name": "DOMAINE DE VALINCHES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057328868811743, + 45.45730543705983 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "DOMAINE DE VALINCHES", + "ref:EU:EVSE": "FRG10P42140A", + "ref": "FRG10P42140A", + "name": "DOMAINE DE VALINCHES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057328868811743, + 45.45730543705983 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "DOMAINE DE VALINCHES", + "ref:EU:EVSE": "FRG10P42140A", + "ref": "FRG10P42140A", + "name": "DOMAINE DE VALINCHES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057328868811743, + 45.45730543705983 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "DOMAINE DE VALINCHES", + "ref:EU:EVSE": "FRG10P42140A", + "ref": "FRG10P42140A", + "name": "DOMAINE DE VALINCHES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0949882021896373, + 46.13314849171384 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "ETOTEM Aytré", + "ref:EU:EVSE": "FRG10P17028A", + "ref": "FRG10P17028A", + "name": "ETOTEM Aytré", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-05-25", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0949882021896373, + 46.13314849171384 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "ETOTEM Aytré", + "ref:EU:EVSE": "FRG10P17028A", + "ref": "FRG10P17028A", + "name": "ETOTEM Aytré", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-05-25", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0949882021896373, + 46.13314849171384 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "ETOTEM Aytré", + "ref:EU:EVSE": "FRG10P17028A", + "ref": "FRG10P17028A", + "name": "ETOTEM Aytré", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-05-25", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2324345613741965, + 46.18080358900933 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Eurocommercial Etrembières", + "ref:EU:EVSE": "FRG10P74118A", + "ref": "FRG10P74118A", + "name": "Eurocommercial Etrembières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-29", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1936678661598776, + 50.72310631627842 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "DOMAINE DE LA SAPINIERE", + "ref:EU:EVSE": "FRG10P62898A", + "ref": "FRG10P62898A", + "name": "DOMAINE DE LA SAPINIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-08", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057328868811743, + 45.45730543705983 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "DOMAINE DE VALINCHES", + "ref:EU:EVSE": "FRG10P42140A", + "ref": "FRG10P42140A", + "name": "DOMAINE DE VALINCHES", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.47297326742572, + 48.73450821899008 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Cimetière intercommunal de Valenton", + "ref:EU:EVSE": "FRG10P94074A", + "ref": "FRG10P94074A", + "name": "Cimetière intercommunal de Valenton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1936678661598776, + 50.72310631627842 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "DOMAINE DE LA SAPINIERE", + "ref:EU:EVSE": "FRG10P62898A", + "ref": "FRG10P62898A", + "name": "DOMAINE DE LA SAPINIERE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-08", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87179340147923, + 45.6379472717099 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CYTHELIA ENERGY", + "ref:EU:EVSE": "FRG10P73179A", + "ref": "FRG10P73179A", + "name": "CYTHELIA ENERGY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-10", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87179340147923, + 45.6379472717099 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CYTHELIA ENERGY", + "ref:EU:EVSE": "FRG10P73179A", + "ref": "FRG10P73179A", + "name": "CYTHELIA ENERGY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-10", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87179340147923, + 45.6379472717099 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CYTHELIA ENERGY", + "ref:EU:EVSE": "FRG10P73179A", + "ref": "FRG10P73179A", + "name": "CYTHELIA ENERGY", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-10", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.013775, + 49.481695 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CLOS DE LA VAUPALIERE", + "ref:EU:EVSE": "FRG10P76150A", + "ref": "FRG10P76150A", + "name": "CLOS DE LA VAUPALIERE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.013775, + 49.481695 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CLOS DE LA VAUPALIERE", + "ref:EU:EVSE": "FRG10P76150A", + "ref": "FRG10P76150A", + "name": "CLOS DE LA VAUPALIERE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.013775, + 49.481695 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CLOS DE LA VAUPALIERE", + "ref:EU:EVSE": "FRG10P76150A", + "ref": "FRG10P76150A", + "name": "CLOS DE LA VAUPALIERE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.013775, + 49.481695 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CLOS DE LA VAUPALIERE", + "ref:EU:EVSE": "FRG10P76150A", + "ref": "FRG10P76150A", + "name": "CLOS DE LA VAUPALIERE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.47297326742572, + 48.73450821899008 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Cimetière intercommunal de Valenton", + "ref:EU:EVSE": "FRG10P94074A", + "ref": "FRG10P94074A", + "name": "Cimetière intercommunal de Valenton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.796642, + 48.872293 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CERTAS Eurodisney", + "ref:EU:EVSE": "FRG10P77132A", + "ref": "FRG10P77132A", + "name": "CERTAS Eurodisney", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.796642, + 48.872293 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CERTAS Eurodisney", + "ref:EU:EVSE": "FRG10P77132A", + "ref": "FRG10P77132A", + "name": "CERTAS Eurodisney", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.796642, + 48.872293 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CERTAS Eurodisney", + "ref:EU:EVSE": "FRG10P77132A", + "ref": "FRG10P77132A", + "name": "CERTAS Eurodisney", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2324345613741965, + 46.18080358900933 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Eurocommercial Etrembières", + "ref:EU:EVSE": "FRG10P74118A", + "ref": "FRG10P74118A", + "name": "Eurocommercial Etrembières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-24", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.796642, + 48.872293 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CERTAS Eurodisney", + "ref:EU:EVSE": "FRG10P77132A", + "ref": "FRG10P77132A", + "name": "CERTAS Eurodisney", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2324345613741965, + 46.18080358900933 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Eurocommercial Etrembières", + "ref:EU:EVSE": "FRG10P74118A", + "ref": "FRG10P74118A", + "name": "Eurocommercial Etrembières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-29", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.384715, + 48.754223 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Garage de la Senia", + "ref:EU:EVSE": "FRG10P94073A", + "ref": "FRG10P94073A", + "name": "Garage de la Senia", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2324345613741965, + 46.18080358900933 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Eurocommercial Etrembières", + "ref:EU:EVSE": "FRG10P74118A", + "ref": "FRG10P74118A", + "name": "Eurocommercial Etrembières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-24", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22544312, + 45.72749023 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Garage Cheminal - Volkswagen", + "ref:EU:EVSE": "FRG10P42094A", + "ref": "FRG10P42094A", + "name": "Garage Cheminal - Volkswagen", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.108962, + 43.1150004 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CENTRE COMMERCIAL CENTR'AZUR", + "ref:EU:EVSE": "FRG10P83069A", + "ref": "FRG10P83069A", + "name": "CENTRE COMMERCIAL CENTR'AZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78804, + 44.13691 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Hôtel Mercure Orange Centre", + "ref:EU:EVSE": "FRG10P84087A", + "ref": "FRG10P84087A", + "name": "Hôtel Mercure Orange Centre", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1729627219668368, + 48.34361336413087 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Hôtel Ibis Style Fougères", + "ref:EU:EVSE": "FRG10P35021A", + "ref": "FRG10P35021A", + "name": "Hôtel Ibis Style Fougères", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-07", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1729627219668368, + 48.34361336413087 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Hôtel Ibis Style Fougères", + "ref:EU:EVSE": "FRG10P35021A", + "ref": "FRG10P35021A", + "name": "Hôtel Ibis Style Fougères", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-07", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1729627219668368, + 48.34361336413087 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Hôtel Ibis Style Fougères", + "ref:EU:EVSE": "FRG10P35021A", + "ref": "FRG10P35021A", + "name": "Hôtel Ibis Style Fougères", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-07", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1729627219668368, + 48.34361336413087 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Hôtel Ibis Style Fougères", + "ref:EU:EVSE": "FRG10P35021A", + "ref": "FRG10P35021A", + "name": "Hôtel Ibis Style Fougères", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-07", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09371, + 46.118865 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Garage Quantin", + "ref:EU:EVSE": "FRG10P03107A", + "ref": "FRG10P03107A", + "name": "Garage Quantin", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.379127, + 45.63536 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "GARAGE DU CENTRE", + "ref:EU:EVSE": "FRG10P42059A", + "ref": "FRG10P42059A", + "name": "GARAGE DU CENTRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.379127, + 45.63536 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "GARAGE DU CENTRE", + "ref:EU:EVSE": "FRG10P42059A", + "ref": "FRG10P42059A", + "name": "GARAGE DU CENTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.384715, + 48.754223 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Garage de la Senia", + "ref:EU:EVSE": "FRG10P94073A", + "ref": "FRG10P94073A", + "name": "Garage de la Senia", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -5815,6 +1255417,16530 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22544312, + 45.72749023 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Garage Cheminal - Volkswagen", + "ref:EU:EVSE": "FRG10P42094A", + "ref": "FRG10P42094A", + "name": "Garage Cheminal - Volkswagen", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2324345613741965, + 46.18080358900933 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Eurocommercial Etrembières", + "ref:EU:EVSE": "FRG10P74118A", + "ref": "FRG10P74118A", + "name": "Eurocommercial Etrembières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-29", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22544312, + 45.72749023 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Garage Cheminal - Volkswagen", + "ref:EU:EVSE": "FRG10P42094A", + "ref": "FRG10P42094A", + "name": "Garage Cheminal - Volkswagen", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755409, + 45.667861 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "GAMMVERT - BRIGNAIS", + "ref:EU:EVSE": "FRG10P69027A", + "ref": "FRG10P69027A", + "name": "GAMMVERT - BRIGNAIS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755409, + 45.667861 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "GAMMVERT - BRIGNAIS", + "ref:EU:EVSE": "FRG10P69027A", + "ref": "FRG10P69027A", + "name": "GAMMVERT - BRIGNAIS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755409, + 45.667861 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "GAMMVERT - BRIGNAIS", + "ref:EU:EVSE": "FRG10P69027A", + "ref": "FRG10P69027A", + "name": "GAMMVERT - BRIGNAIS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755409, + 45.667861 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "GAMMVERT - BRIGNAIS", + "ref:EU:EVSE": "FRG10P69027A", + "ref": "FRG10P69027A", + "name": "GAMMVERT - BRIGNAIS", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755409, + 45.667861 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "GAMMVERT - BRIGNAIS", + "ref:EU:EVSE": "FRG10P69027A", + "ref": "FRG10P69027A", + "name": "GAMMVERT - BRIGNAIS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755409, + 45.667861 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "GAMMVERT - BRIGNAIS", + "ref:EU:EVSE": "FRG10P69027A", + "ref": "FRG10P69027A", + "name": "GAMMVERT - BRIGNAIS", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755409, + 45.667861 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "GAMMVERT - BRIGNAIS", + "ref:EU:EVSE": "FRG10P69027A", + "ref": "FRG10P69027A", + "name": "GAMMVERT - BRIGNAIS", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.161233, + 45.287634 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "GAMM VERT - MONISTROL SUR LOIRE", + "ref:EU:EVSE": "FRG10P43137A", + "ref": "FRG10P43137A", + "name": "GAMM VERT - MONISTROL SUR LOIRE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78804, + 44.13691 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Hôtel Mercure Orange Centre", + "ref:EU:EVSE": "FRG10P84087A", + "ref": "FRG10P84087A", + "name": "Hôtel Mercure Orange Centre", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.161233, + 45.287634 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "GAMM VERT - MONISTROL SUR LOIRE", + "ref:EU:EVSE": "FRG10P43137A", + "ref": "FRG10P43137A", + "name": "GAMM VERT - MONISTROL SUR LOIRE", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.2324345613741965, + 46.18080358900933 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Eurocommercial Etrembières", + "ref:EU:EVSE": "FRG10P74118A", + "ref": "FRG10P74118A", + "name": "Eurocommercial Etrembières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-29", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.796642, + 48.872293 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CERTAS Eurodisney", + "ref:EU:EVSE": "FRG10P77132A", + "ref": "FRG10P77132A", + "name": "CERTAS Eurodisney", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.697979, + 48.045049 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - CORQUILLEROY", + "ref:EU:EVSE": "FRG10P45104A", + "ref": "FRG10P45104A", + "name": "AGGLOMERATION MONTARGOISE - CORQUILLEROY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.108962, + 43.1150004 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CENTRE COMMERCIAL CENTR'AZUR", + "ref:EU:EVSE": "FRG10P83069A", + "ref": "FRG10P83069A", + "name": "CENTRE COMMERCIAL CENTR'AZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.108962, + 43.1150004 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CENTRE COMMERCIAL CENTR'AZUR", + "ref:EU:EVSE": "FRG10P83069A", + "ref": "FRG10P83069A", + "name": "CENTRE COMMERCIAL CENTR'AZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-07", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.709345, + 47.990865 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - VILLEMANDEUR", + "ref:EU:EVSE": "FRG10P45338A", + "ref": "FRG10P45338A", + "name": "AGGLOMERATION MONTARGOISE - VILLEMANDEUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.709345, + 47.990865 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - VILLEMANDEUR", + "ref:EU:EVSE": "FRG10P45338A", + "ref": "FRG10P45338A", + "name": "AGGLOMERATION MONTARGOISE - VILLEMANDEUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.736521, + 47.918207 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - SOLTERRE", + "ref:EU:EVSE": "FRG10P45312A", + "ref": "FRG10P45312A", + "name": "AGGLOMERATION MONTARGOISE - SOLTERRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.736521, + 47.918207 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - SOLTERRE", + "ref:EU:EVSE": "FRG10P45312A", + "ref": "FRG10P45312A", + "name": "AGGLOMERATION MONTARGOISE - SOLTERRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.792905, + 48.035 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - PAUCOURT", + "ref:EU:EVSE": "FRG10P45249A", + "ref": "FRG10P45249A", + "name": "AGGLOMERATION MONTARGOISE - PAUCOURT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.792905, + 48.035 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - PAUCOURT", + "ref:EU:EVSE": "FRG10P45249A", + "ref": "FRG10P45249A", + "name": "AGGLOMERATION MONTARGOISE - PAUCOURT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.672043, + 48.01739 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - PANNES", + "ref:EU:EVSE": "FRG10P45247A", + "ref": "FRG10P45247A", + "name": "AGGLOMERATION MONTARGOISE - PANNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-26", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.672043, + 48.01739 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - PANNES", + "ref:EU:EVSE": "FRG10P45247A", + "ref": "FRG10P45247A", + "name": "AGGLOMERATION MONTARGOISE - PANNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-26", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.63116, + 47.940856 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - LOMBREUIL", + "ref:EU:EVSE": "FRG10P45185A", + "ref": "FRG10P45185A", + "name": "AGGLOMERATION MONTARGOISE - LOMBREUIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.63116, + 47.940856 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - LOMBREUIL", + "ref:EU:EVSE": "FRG10P45185A", + "ref": "FRG10P45185A", + "name": "AGGLOMERATION MONTARGOISE - LOMBREUIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.697979, + 48.045049 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - CORQUILLEROY", + "ref:EU:EVSE": "FRG10P45104A", + "ref": "FRG10P45104A", + "name": "AGGLOMERATION MONTARGOISE - CORQUILLEROY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.786343, + 47.952598 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - CONFLANS SUR LOING", + "ref:EU:EVSE": "FRG10P45102A", + "ref": "FRG10P45102A", + "name": "AGGLOMERATION MONTARGOISE - CONFLANS SUR LOING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.786343, + 47.952598 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - CONFLANS SUR LOING", + "ref:EU:EVSE": "FRG10P45102A", + "ref": "FRG10P45102A", + "name": "AGGLOMERATION MONTARGOISE - CONFLANS SUR LOING", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.626097, + 47.962275 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - CHEVILLON SUR HUILLARD", + "ref:EU:EVSE": "FRG10P45092A", + "ref": "FRG10P45092A", + "name": "AGGLOMERATION MONTARGOISE - CHEVILLON SUR HUILLARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.626097, + 47.962275 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - CHEVILLON SUR HUILLARD", + "ref:EU:EVSE": "FRG10P45092A", + "ref": "FRG10P45092A", + "name": "AGGLOMERATION MONTARGOISE - CHEVILLON SUR HUILLARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.740798, + 48.043359 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - CEPOY", + "ref:EU:EVSE": "FRG10P45061A", + "ref": "FRG10P45061A", + "name": "AGGLOMERATION MONTARGOISE - CEPOY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.740798, + 48.043359 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - CEPOY", + "ref:EU:EVSE": "FRG10P45061A", + "ref": "FRG10P45061A", + "name": "AGGLOMERATION MONTARGOISE - CEPOY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.774467, + 47.96808 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - AMILLY 2", + "ref:EU:EVSE": "FRG10P45004B", + "ref": "FRG10P45004B", + "name": "AGGLOMERATION MONTARGOISE - AMILLY 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.774467, + 47.96808 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - AMILLY 2", + "ref:EU:EVSE": "FRG10P45004B", + "ref": "FRG10P45004B", + "name": "AGGLOMERATION MONTARGOISE - AMILLY 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.772783, + 47.96827 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - AMILLY 1", + "ref:EU:EVSE": "FRG10P45004A", + "ref": "FRG10P45004A", + "name": "AGGLOMERATION MONTARGOISE - AMILLY 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.772783, + 47.96827 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - AMILLY 1", + "ref:EU:EVSE": "FRG10P45004A", + "ref": "FRG10P45004A", + "name": "AGGLOMERATION MONTARGOISE - AMILLY 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1058477614826088, + 50.57202836954545 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Aéroport de Lille-Lesquin", + "ref:EU:EVSE": "FRG10P59343A", + "ref": "FRG10P59343A", + "name": "Aéroport de Lille-Lesquin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-12-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1058477614826088, + 50.57202836954545 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Aéroport de Lille-Lesquin", + "ref:EU:EVSE": "FRG10P59343A", + "ref": "FRG10P59343A", + "name": "Aéroport de Lille-Lesquin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-12-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1058477614826088, + 50.57202836954545 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Aéroport de Lille-Lesquin", + "ref:EU:EVSE": "FRG10P59343A", + "ref": "FRG10P59343A", + "name": "Aéroport de Lille-Lesquin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-12-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1058477614826088, + 50.57202836954545 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Aéroport de Lille-Lesquin", + "ref:EU:EVSE": "FRG10P59343A", + "ref": "FRG10P59343A", + "name": "Aéroport de Lille-Lesquin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-12-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1058477614826088, + 50.57202836954545 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Aéroport de Lille-Lesquin", + "ref:EU:EVSE": "FRG10P59343A", + "ref": "FRG10P59343A", + "name": "Aéroport de Lille-Lesquin", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-12-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1058477614826088, + 50.57202836954545 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Aéroport de Lille-Lesquin", + "ref:EU:EVSE": "FRG10P59343A", + "ref": "FRG10P59343A", + "name": "Aéroport de Lille-Lesquin", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-12-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.686008, + 47.945956 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - VIMORY", + "ref:EU:EVSE": "FRG10P445345A", + "ref": "FRG10P445345A", + "name": "AGGLOMERATION MONTARGOISE - VIMORY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-26", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.686008, + 47.945956 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "AGGLOMERATION MONTARGOISE - VIMORY", + "ref:EU:EVSE": "FRG10P445345A", + "ref": "FRG10P445345A", + "name": "AGGLOMERATION MONTARGOISE - VIMORY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-26", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5596131075866615, + 48.83673315761998 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Biocoop Granville", + "ref:EU:EVSE": "FRG10P50647A", + "ref": "FRG10P50647A", + "name": "Biocoop Granville", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.188537, + 43.729626 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Nice Lingostière", + "ref:EU:EVSE": "FRG10P06088A", + "ref": "FRG10P06088A", + "name": "Carrefour Nice Lingostière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.108962, + 43.1150004 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CENTRE COMMERCIAL CENTR'AZUR", + "ref:EU:EVSE": "FRG10P83069A", + "ref": "FRG10P83069A", + "name": "CENTRE COMMERCIAL CENTR'AZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-07", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.108962, + 43.1150004 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CENTRE COMMERCIAL CENTR'AZUR", + "ref:EU:EVSE": "FRG10P83069A", + "ref": "FRG10P83069A", + "name": "CENTRE COMMERCIAL CENTR'AZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.108962, + 43.1150004 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CENTRE COMMERCIAL CENTR'AZUR", + "ref:EU:EVSE": "FRG10P83069A", + "ref": "FRG10P83069A", + "name": "CENTRE COMMERCIAL CENTR'AZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.108962, + 43.1150004 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CENTRE COMMERCIAL CENTR'AZUR", + "ref:EU:EVSE": "FRG10P83069A", + "ref": "FRG10P83069A", + "name": "CENTRE COMMERCIAL CENTR'AZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.108962, + 43.1150004 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CENTRE COMMERCIAL CENTR'AZUR", + "ref:EU:EVSE": "FRG10P83069A", + "ref": "FRG10P83069A", + "name": "CENTRE COMMERCIAL CENTR'AZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.108962, + 43.1150004 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CENTRE COMMERCIAL CENTR'AZUR", + "ref:EU:EVSE": "FRG10P83069A", + "ref": "FRG10P83069A", + "name": "CENTRE COMMERCIAL CENTR'AZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.108962, + 43.1150004 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CENTRE COMMERCIAL CENTR'AZUR", + "ref:EU:EVSE": "FRG10P83069A", + "ref": "FRG10P83069A", + "name": "CENTRE COMMERCIAL CENTR'AZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.108962, + 43.1150004 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CENTRE COMMERCIAL CENTR'AZUR", + "ref:EU:EVSE": "FRG10P83069A", + "ref": "FRG10P83069A", + "name": "CENTRE COMMERCIAL CENTR'AZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.108962, + 43.1150004 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CENTRE COMMERCIAL CENTR'AZUR", + "ref:EU:EVSE": "FRG10P83069A", + "ref": "FRG10P83069A", + "name": "CENTRE COMMERCIAL CENTR'AZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.237656, + 45.638173 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CASINO DE MONTROND", + "ref:EU:EVSE": "FRG10P42149A", + "ref": "FRG10P42149A", + "name": "CASINO DE MONTROND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-26", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.237656, + 45.638173 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "CASINO DE MONTROND", + "ref:EU:EVSE": "FRG10P42149A", + "ref": "FRG10P42149A", + "name": "CASINO DE MONTROND", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-26", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.188537, + 43.729626 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Nice Lingostière", + "ref:EU:EVSE": "FRG10P06088A", + "ref": "FRG10P06088A", + "name": "Carrefour Nice Lingostière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.188537, + 43.729626 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Nice Lingostière", + "ref:EU:EVSE": "FRG10P06088A", + "ref": "FRG10P06088A", + "name": "Carrefour Nice Lingostière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5596131075866615, + 48.83673315761998 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Biocoop Granville", + "ref:EU:EVSE": "FRG10P50647A", + "ref": "FRG10P50647A", + "name": "Biocoop Granville", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.188537, + 43.729626 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Nice Lingostière", + "ref:EU:EVSE": "FRG10P06088A", + "ref": "FRG10P06088A", + "name": "Carrefour Nice Lingostière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.188537, + 43.729626 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Nice Lingostière", + "ref:EU:EVSE": "FRG10P06088A", + "ref": "FRG10P06088A", + "name": "Carrefour Nice Lingostière", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.188537, + 43.729626 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Nice Lingostière", + "ref:EU:EVSE": "FRG10P06088A", + "ref": "FRG10P06088A", + "name": "Carrefour Nice Lingostière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.188537, + 43.729626 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Nice Lingostière", + "ref:EU:EVSE": "FRG10P06088A", + "ref": "FRG10P06088A", + "name": "Carrefour Nice Lingostière", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.188537, + 43.729626 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Nice Lingostière", + "ref:EU:EVSE": "FRG10P06088A", + "ref": "FRG10P06088A", + "name": "Carrefour Nice Lingostière", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.188537, + 43.729626 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Nice Lingostière", + "ref:EU:EVSE": "FRG10P06088A", + "ref": "FRG10P06088A", + "name": "Carrefour Nice Lingostière", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.188537, + 43.729626 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Nice Lingostière", + "ref:EU:EVSE": "FRG10P06088A", + "ref": "FRG10P06088A", + "name": "Carrefour Nice Lingostière", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.188537, + 43.729626 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Nice Lingostière", + "ref:EU:EVSE": "FRG10P06088A", + "ref": "FRG10P06088A", + "name": "Carrefour Nice Lingostière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-10", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.188537, + 43.729626 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Nice Lingostière", + "ref:EU:EVSE": "FRG10P06088A", + "ref": "FRG10P06088A", + "name": "Carrefour Nice Lingostière", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-10", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.687658, + 47.845833 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Market Belondis", + "ref:EU:EVSE": "FRG10P29236A", + "ref": "FRG10P29236A", + "name": "Carrefour Market Belondis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-16", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.687658, + 47.845833 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Carrefour Market Belondis", + "ref:EU:EVSE": "FRG10P29236A", + "ref": "FRG10P29236A", + "name": "Carrefour Market Belondis", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-16", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5596131075866615, + 48.83673315761998 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Biocoop Granville", + "ref:EU:EVSE": "FRG10P50647A", + "ref": "FRG10P50647A", + "name": "Biocoop Granville", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78804, + 44.13691 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Hôtel Mercure Orange Centre", + "ref:EU:EVSE": "FRG10P84087A", + "ref": "FRG10P84087A", + "name": "Hôtel Mercure Orange Centre", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.161233, + 45.287634 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "GAMM VERT - MONISTROL SUR LOIRE", + "ref:EU:EVSE": "FRG10P43137A", + "ref": "FRG10P43137A", + "name": "GAMM VERT - MONISTROL SUR LOIRE", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78804, + 44.13691 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Hôtel Mercure Orange Centre", + "ref:EU:EVSE": "FRG10P84087A", + "ref": "FRG10P84087A", + "name": "Hôtel Mercure Orange Centre", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-20", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-19", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-19", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-19", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-19", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-19", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-19", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-11", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-24", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-24", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-19", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-19", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.154298, + 46.162964 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "VILLE DE LA ROCHELLE - PLACE VERDUN", + "ref:EU:EVSE": "FRG10P17300A", + "ref": "FRG10P17300A", + "name": "VILLE DE LA ROCHELLE - PLACE VERDUN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-08", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1161033, + 45.1437823 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Intermarché Yssingeaux", + "ref:EU:EVSE": "FRG10P43268A", + "ref": "FRG10P43268A", + "name": "Intermarché Yssingeaux", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.154298, + 46.162964 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "VILLE DE LA ROCHELLE - PLACE VERDUN", + "ref:EU:EVSE": "FRG10P17300A", + "ref": "FRG10P17300A", + "name": "VILLE DE LA ROCHELLE - PLACE VERDUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-08", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14858, + 46.1598 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "VILLE DE LA ROCHELLE - PLACE JB MARCET", + "ref:EU:EVSE": "FRG10P17300B", + "ref": "FRG10P17300B", + "name": "VILLE DE LA ROCHELLE - PLACE JB MARCET", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14858, + 46.1598 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "VILLE DE LA ROCHELLE - PLACE JB MARCET", + "ref:EU:EVSE": "FRG10P17300B", + "ref": "FRG10P17300B", + "name": "VILLE DE LA ROCHELLE - PLACE JB MARCET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-27", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15676, + 46.15701 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "VILLE DE LA ROCHELLE - PARKING PREFECTURE", + "ref:EU:EVSE": "FRG10P17300D", + "ref": "FRG10P17300D", + "name": "VILLE DE LA ROCHELLE - PARKING PREFECTURE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-26", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15676, + 46.15701 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "VILLE DE LA ROCHELLE - PARKING PREFECTURE", + "ref:EU:EVSE": "FRG10P17300D", + "ref": "FRG10P17300D", + "name": "VILLE DE LA ROCHELLE - PARKING PREFECTURE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-26", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.151072, + 46.16634 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "VILLE DE LA ROCHELLE - PARKING CHASSELOUP LAUBAT", + "ref:EU:EVSE": "FRG10P17300C", + "ref": "FRG10P17300C", + "name": "VILLE DE LA ROCHELLE - PARKING CHASSELOUP LAUBAT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-25", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5214733456906524, + 47.76058808735231 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "VILLE DE DAMPIERRE", + "ref:EU:EVSE": "FRG10P45122A", + "ref": "FRG10P45122A", + "name": "VILLE DE DAMPIERRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5214733456906524, + 47.76058808735231 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "VILLE DE DAMPIERRE", + "ref:EU:EVSE": "FRG10P45122A", + "ref": "FRG10P45122A", + "name": "VILLE DE DAMPIERRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3277, + 46.7179 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "UAB", + "ref:EU:EVSE": "FRG10P85089A", + "ref": "FRG10P85089A", + "name": "UAB", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-10", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3277, + 46.7179 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "UAB", + "ref:EU:EVSE": "FRG10P85089A", + "ref": "FRG10P85089A", + "name": "UAB", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-10", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3277, + 46.7179 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "UAB", + "ref:EU:EVSE": "FRG10P85089A", + "ref": "FRG10P85089A", + "name": "UAB", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-10", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3277, + 46.7179 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "UAB", + "ref:EU:EVSE": "FRG10P85089A", + "ref": "FRG10P85089A", + "name": "UAB", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-10", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.758303, + 42.641425 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Super U Thuir", + "ref:EU:EVSE": "FRG10P66210A", + "ref": "FRG10P66210A", + "name": "Super U Thuir", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-29", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.758303, + 42.641425 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Super U Thuir", + "ref:EU:EVSE": "FRG10P66210A", + "ref": "FRG10P66210A", + "name": "Super U Thuir", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-29", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.758303, + 42.641425 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Super U Thuir", + "ref:EU:EVSE": "FRG10P66210A", + "ref": "FRG10P66210A", + "name": "Super U Thuir", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-29", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.758303, + 42.641425 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Super U Thuir", + "ref:EU:EVSE": "FRG10P66210A", + "ref": "FRG10P66210A", + "name": "Super U Thuir", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-29", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.758303, + 42.641425 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Super U Thuir", + "ref:EU:EVSE": "FRG10P66210A", + "ref": "FRG10P66210A", + "name": "Super U Thuir", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-29", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.758303, + 42.641425 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Super U Thuir", + "ref:EU:EVSE": "FRG10P66210A", + "ref": "FRG10P66210A", + "name": "Super U Thuir", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-29", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-15", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.151072, + 46.16634 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "VILLE DE LA ROCHELLE - PARKING CHASSELOUP LAUBAT", + "ref:EU:EVSE": "FRG10P17300C", + "ref": "FRG10P17300C", + "name": "VILLE DE LA ROCHELLE - PARKING CHASSELOUP LAUBAT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-25", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.396822, + 45.452227 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Meritor", + "ref:EU:EVSE": "FRG10P42218AB", + "ref": "FRG10P42218AB", + "name": "Meritor", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.63659823824593, + 45.67568495884853 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "MAIRIE OLLIERGUES", + "ref:EU:EVSE": "FRG10P63258B", + "ref": "FRG10P63258B", + "name": "MAIRIE OLLIERGUES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.704651, + 45.64493 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Mairie de Vertolaye", + "ref:EU:EVSE": "FRG10P63454A", + "ref": "FRG10P63454A", + "name": "Mairie de Vertolaye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.704651, + 45.64493 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Mairie de Vertolaye", + "ref:EU:EVSE": "FRG10P63454A", + "ref": "FRG10P63454A", + "name": "Mairie de Vertolaye", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-04", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.935323, + 45.683113 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "MAIRIE DE MOUXY", + "ref:EU:EVSE": "FRG10P73182A", + "ref": "FRG10P73182A", + "name": "MAIRIE DE MOUXY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-07", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.935323, + 45.683113 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "MAIRIE DE MOUXY", + "ref:EU:EVSE": "FRG10P73182A", + "ref": "FRG10P73182A", + "name": "MAIRIE DE MOUXY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-07", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.786, + 48.092 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Mairie de Ferrières-en-Gatinais", + "ref:EU:EVSE": "FRG10P45145A", + "ref": "FRG10P45145A", + "name": "Mairie de Ferrières-en-Gatinais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.786, + 48.092 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Mairie de Ferrières-en-Gatinais", + "ref:EU:EVSE": "FRG10P45145A", + "ref": "FRG10P45145A", + "name": "Mairie de Ferrières-en-Gatinais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6301873, + 47.7802058 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Mairie de Beaugency - PARKING RUE NATIONALE", + "ref:EU:EVSE": "FRG10P45028C", + "ref": "FRG10P45028C", + "name": "Mairie de Beaugency - PARKING RUE NATIONALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6301873, + 47.7802058 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Mairie de Beaugency - PARKING RUE NATIONALE", + "ref:EU:EVSE": "FRG10P45028C", + "ref": "FRG10P45028C", + "name": "Mairie de Beaugency - PARKING RUE NATIONALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6296, + 47.7751976 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Mairie de Beaugency - PARKING GRAND MAIL", + "ref:EU:EVSE": "FRG10P45028D", + "ref": "FRG10P45028D", + "name": "Mairie de Beaugency - PARKING GRAND MAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6296, + 47.7751976 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Mairie de Beaugency - PARKING GRAND MAIL", + "ref:EU:EVSE": "FRG10P45028D", + "ref": "FRG10P45028D", + "name": "Mairie de Beaugency - PARKING GRAND MAIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6206933, + 47.780758 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Mairie de Beaugency - PARKING AGORA", + "ref:EU:EVSE": "FRG10P45028B", + "ref": "FRG10P45028B", + "name": "Mairie de Beaugency - PARKING AGORA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6206933, + 47.780758 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Mairie de Beaugency - PARKING AGORA", + "ref:EU:EVSE": "FRG10P45028B", + "ref": "FRG10P45028B", + "name": "Mairie de Beaugency - PARKING AGORA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6206933, + 47.780758 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Mairie de Beaugency - PARKING AGORA", + "ref:EU:EVSE": "FRG10P45028B", + "ref": "FRG10P45028B", + "name": "Mairie de Beaugency - PARKING AGORA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6206933, + 47.780758 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Mairie de Beaugency - PARKING AGORA", + "ref:EU:EVSE": "FRG10P45028B", + "ref": "FRG10P45028B", + "name": "Mairie de Beaugency - PARKING AGORA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-27", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.309668, + 45.588589 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "La Charpinière", + "ref:EU:EVSE": "FRG10P42222A", + "ref": "FRG10P42222A", + "name": "La Charpinière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-13", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.309668, + 45.588589 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "La Charpinière", + "ref:EU:EVSE": "FRG10P42222A", + "ref": "FRG10P42222A", + "name": "La Charpinière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-13", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.309668, + 45.588589 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "La Charpinière", + "ref:EU:EVSE": "FRG10P42222A", + "ref": "FRG10P42222A", + "name": "La Charpinière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-13", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.309668, + 45.588589 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "La Charpinière", + "ref:EU:EVSE": "FRG10P42222A", + "ref": "FRG10P42222A", + "name": "La Charpinière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-13", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.309668, + 45.588589 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "La Charpinière", + "ref:EU:EVSE": "FRG10P42222A", + "ref": "FRG10P42222A", + "name": "La Charpinière", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-13", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.309668, + 45.588589 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "La Charpinière", + "ref:EU:EVSE": "FRG10P42222A", + "ref": "FRG10P42222A", + "name": "La Charpinière", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-13", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578157, + 45.38413 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "King Jouet Voiron", + "ref:EU:EVSE": "FRG10P38563A", + "ref": "FRG10P38563A", + "name": "King Jouet Voiron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578157, + 45.38413 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "King Jouet Voiron", + "ref:EU:EVSE": "FRG10P38563A", + "ref": "FRG10P38563A", + "name": "King Jouet Voiron", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578157, + 45.38413 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "King Jouet Voiron", + "ref:EU:EVSE": "FRG10P38563A", + "ref": "FRG10P38563A", + "name": "King Jouet Voiron", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1161033, + 45.1437823 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Intermarché Yssingeaux", + "ref:EU:EVSE": "FRG10P43268A", + "ref": "FRG10P43268A", + "name": "Intermarché Yssingeaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578157, + 45.38413 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "King Jouet Voiron", + "ref:EU:EVSE": "FRG10P38563A", + "ref": "FRG10P38563A", + "name": "King Jouet Voiron", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.63659823824593, + 45.67568495884853 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "MAIRIE OLLIERGUES", + "ref:EU:EVSE": "FRG10P63258B", + "ref": "FRG10P63258B", + "name": "MAIRIE OLLIERGUES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578157, + 45.38413 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "King Jouet Voiron", + "ref:EU:EVSE": "FRG10P38563A", + "ref": "FRG10P38563A", + "name": "King Jouet Voiron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.396822, + 45.452227 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Meritor", + "ref:EU:EVSE": "FRG10P42218AB", + "ref": "FRG10P42218AB", + "name": "Meritor", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref:EU:EVSE": "FRG10P42218AC", + "ref": "FRG10P42218AC", + "name": "RENAULT THIVOLLE ST ETIENNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.396822, + 45.452227 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Meritor", + "ref:EU:EVSE": "FRG10P42218AB", + "ref": "FRG10P42218AB", + "name": "Meritor", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6265527585509747, + 45.87688686929552 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Salaison Fournet-Fayard", + "ref:EU:EVSE": "FRG10P63231A", + "ref": "FRG10P63231A", + "name": "Salaison Fournet-Fayard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6265527585509747, + 45.87688686929552 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Salaison Fournet-Fayard", + "ref:EU:EVSE": "FRG10P63231A", + "ref": "FRG10P63231A", + "name": "Salaison Fournet-Fayard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref:EU:EVSE": "FRG10P42218AC", + "ref": "FRG10P42218AC", + "name": "RENAULT THIVOLLE ST ETIENNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-30", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref:EU:EVSE": "FRG10P42218AC", + "ref": "FRG10P42218AC", + "name": "RENAULT THIVOLLE ST ETIENNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-30", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref:EU:EVSE": "FRG10P42218AC", + "ref": "FRG10P42218AC", + "name": "RENAULT THIVOLLE ST ETIENNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref:EU:EVSE": "FRG10P42218AC", + "ref": "FRG10P42218AC", + "name": "RENAULT THIVOLLE ST ETIENNE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref:EU:EVSE": "FRG10P42218AC", + "ref": "FRG10P42218AC", + "name": "RENAULT THIVOLLE ST ETIENNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "10", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref:EU:EVSE": "FRG10P42218AC", + "ref": "FRG10P42218AC", + "name": "RENAULT THIVOLLE ST ETIENNE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref:EU:EVSE": "FRG10P42218AC", + "ref": "FRG10P42218AC", + "name": "RENAULT THIVOLLE ST ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.396822, + 45.452227 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "Meritor", + "ref:EU:EVSE": "FRG10P42218AB", + "ref": "FRG10P42218AB", + "name": "Meritor", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.262156, + 45.518189 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT AGENCE LOSANGE", + "ref:EU:EVSE": "FRG10P42279A", + "ref": "FRG10P42279A", + "name": "RENAULT AGENCE LOSANGE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref:EU:EVSE": "FRG10P42218AC", + "ref": "FRG10P42218AC", + "name": "RENAULT THIVOLLE ST ETIENNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.262156, + 45.518189 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT AGENCE LOSANGE", + "ref:EU:EVSE": "FRG10P42279A", + "ref": "FRG10P42279A", + "name": "RENAULT AGENCE LOSANGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref:EU:EVSE": "FRG10P42218AC", + "ref": "FRG10P42218AC", + "name": "RENAULT THIVOLLE ST ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref:EU:EVSE": "FRG10P42218AC", + "ref": "FRG10P42218AC", + "name": "RENAULT THIVOLLE ST ETIENNE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "STEEL Parkings", + "ref:EU:EVSE": "FRG10P42218AA", + "ref": "FRG10P42218AA", + "name": "STEEL Parkings", + "capacity": "10", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref:EU:EVSE": "FRG10P42218AC", + "ref": "FRG10P42218AC", + "name": "RENAULT THIVOLLE ST ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref:EU:EVSE": "FRG10P42218AC", + "ref": "FRG10P42218AC", + "name": "RENAULT THIVOLLE ST ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref:EU:EVSE": "FRG10P42218AC", + "ref": "FRG10P42218AC", + "name": "RENAULT THIVOLLE ST ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref:EU:EVSE": "FRG10P42218AC", + "ref": "FRG10P42218AC", + "name": "RENAULT THIVOLLE ST ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref:EU:EVSE": "FRG10P42218AC", + "ref": "FRG10P42218AC", + "name": "RENAULT THIVOLLE ST ETIENNE", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.187721, + 48.876249 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063M", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Charles Drot", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.193527, + 48.857699 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063K", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Montbrison (159)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.193527, + 48.857699 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063K", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Montbrison (159)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.193527, + 48.857699 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063K", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Montbrison (159)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.193527, + 48.857699 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063K", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Montbrison (159)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.193527, + 48.857699 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063K", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Montbrison (159)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.193527, + 48.857699 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063K", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Montbrison (159)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.191375, + 48.883647 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063J", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Paul Doumer", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.191375, + 48.883647 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063J", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Paul Doumer", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.191375, + 48.883647 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063J", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Paul Doumer", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.191375, + 48.883647 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063J", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Paul Doumer", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.173461, + 48.877092 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063I", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Bois Préau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.173461, + 48.877092 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063I", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Bois Préau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181274, + 48.887186 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063G", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Colmar", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.173461, + 48.877092 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063I", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Bois Préau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.173461, + 48.877092 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063I", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Bois Préau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.171649, + 48.883328 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063H", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Frères Lumière", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.171649, + 48.883328 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063H", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Frères Lumière", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.171649, + 48.883328 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063H", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Frères Lumière", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.171649, + 48.883328 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063H", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Frères Lumière", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181274, + 48.887186 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063G", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Colmar", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181274, + 48.887186 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063G", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Colmar", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.187721, + 48.876249 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063M", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Charles Drot", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.171649, + 48.883328 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063H", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Frères Lumière", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181756, + 48.86333 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063P", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Empereur", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.187721, + 48.876249 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063M", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Charles Drot", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181756, + 48.86333 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063P", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Empereur", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.197047, + 48.863147 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063R", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Montbrison (84-86)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181274, + 48.887186 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063G", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Colmar", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.197047, + 48.863147 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063R", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Montbrison (84-86)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.197047, + 48.863147 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063R", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Montbrison (84-86)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.197047, + 48.863147 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063R", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Montbrison (84-86)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.197047, + 48.863147 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063R", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Montbrison (84-86)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.197047, + 48.863147 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063R", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Montbrison (84-86)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1924, + 48.868154 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063Q", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - 18 juin 1940 (63)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1924, + 48.868154 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063Q", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - 18 juin 1940 (63)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1924, + 48.868154 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063Q", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - 18 juin 1940 (63)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1924, + 48.868154 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063Q", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - 18 juin 1940 (63)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181756, + 48.86333 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063P", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Empereur", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.187721, + 48.876249 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063M", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Charles Drot", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181756, + 48.86333 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063P", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Empereur", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.202896, + 48.871499 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063O", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - 8 mai 1945", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.202896, + 48.871499 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063O", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - 8 mai 1945", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.202896, + 48.871499 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063O", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - 8 mai 1945", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.202896, + 48.871499 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063O", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - 8 mai 1945", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.202896, + 48.871499 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063O", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - 8 mai 1945", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.202896, + 48.871499 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063O", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - 8 mai 1945", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.200918, + 48.876649 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063N", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Driant", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.200918, + 48.876649 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063N", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Driant", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.200918, + 48.876649 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063N", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Driant", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.200918, + 48.876649 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063N", + "ref": "", + "name": "Metropolis - Proximité - Rueil-Malmaison - Driant", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181274, + 48.887186 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063G", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Colmar", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063C", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Albert 1er (98)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181274, + 48.887186 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063G", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Colmar", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.180334, + 48.880227 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063A", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Albert 1er (2)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-07-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.169361, + 48.887705 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063B", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Édouard Belin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.169361, + 48.887705 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063B", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Édouard Belin", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.169361, + 48.887705 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063B", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Édouard Belin", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.169361, + 48.887705 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063B", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Édouard Belin", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.169361, + 48.887705 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063B", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Édouard Belin", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.180334, + 48.880227 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063A", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Albert 1er (2)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-07-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.180334, + 48.880227 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063A", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Albert 1er (2)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-07-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.180334, + 48.880227 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063A", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Albert 1er (2)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-07-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.180334, + 48.880227 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063A", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Albert 1er (2)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-07-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.180334, + 48.880227 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063A", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Albert 1er (2)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-07-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.180334, + 48.880227 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063A", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Albert 1er (2)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-07-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2666712, + 48.891262 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051W", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Saussaye (50)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181274, + 48.887186 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063G", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Colmar", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2666712, + 48.891262 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051W", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Saussaye (50)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271036, + 48.87881 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051V", + "ref": "", + "name": "Metropolis - Express - Neuilly-sur-Seine - Maillot", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271036, + 48.87881 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051V", + "ref": "", + "name": "Metropolis - Express - Neuilly-sur-Seine - Maillot", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271036, + 48.87881 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051V", + "ref": "", + "name": "Metropolis - Express - Neuilly-sur-Seine - Maillot", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271036, + 48.87881 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051V", + "ref": "", + "name": "Metropolis - Express - Neuilly-sur-Seine - Maillot", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270181, + 48.878919 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051U", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-sur-Seine - Maurice Barrès", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270181, + 48.878919 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051U", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-sur-Seine - Maurice Barrès", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270181, + 48.878919 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051U", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-sur-Seine - Maurice Barrès", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270181, + 48.878919 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051U", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-sur-Seine - Maurice Barrès", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270181, + 48.878919 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051U", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-sur-Seine - Maurice Barrès", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.16798566, + 48.88946877 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063S", + "ref": "", + "name": "Metropolis - Express - Rueil-Malmaison - Auguste Perret", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063C", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Albert 1er (98)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063C", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Albert 1er (98)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063C", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Albert 1er (98)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063C", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Albert 1er (98)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063F", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - 18 Juin 1940 (175)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063F", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - 18 Juin 1940 (175)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063F", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - 18 Juin 1940 (175)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063F", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - 18 Juin 1940 (175)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063F", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - 18 Juin 1940 (175)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063F", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - 18 Juin 1940 (175)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063F", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - 18 Juin 1940 (175)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195013, + 48.872781 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063E", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Bons Raisins", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195013, + 48.872781 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063E", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Bons Raisins", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195013, + 48.872781 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063E", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Bons Raisins", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195013, + 48.872781 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063E", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Bons Raisins", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195013, + 48.872781 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063E", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Bons Raisins", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195013, + 48.872781 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063E", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Bons Raisins", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195013, + 48.872781 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063E", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Bons Raisins", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.182311, + 48.87334 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063D", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Richelieu", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.182311, + 48.87334 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063D", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Richelieu", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.182311, + 48.87334 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063D", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Richelieu", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.182311, + 48.87334 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063D", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Richelieu", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.182311, + 48.87334 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063D", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Richelieu", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.182311, + 48.87334 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063D", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Richelieu", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.182311, + 48.87334 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063D", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Richelieu", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063C", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Albert 1er (98)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063C", + "ref": "", + "name": "Metropolis - Citadine - Rueil-Malmaison - Albert 1er (98)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.16798566, + 48.88946877 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063S", + "ref": "", + "name": "Metropolis - Express - Rueil-Malmaison - Auguste Perret", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.484809, + 48.953583 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005F", + "ref": "", + "name": "Metropolis - Express - Aulnay-sous-Bois - Michel Ange", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.16798566, + 48.88946877 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063S", + "ref": "", + "name": "Metropolis - Express - Rueil-Malmaison - Auguste Perret", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42693, + 48.877739 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93006B", + "ref": "", + "name": "Metropolis - Proximité - Bagnolet - Sadi Carnot", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466539, + 48.948493 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93007B", + "ref": "", + "name": "Metropolis - Express - Le Blanc-Mesnil - Albert Einstein", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462518, + 48.937787 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93007A", + "ref": "", + "name": "Metropolis - Citadine - Le Blanc-Mesnil - Claude Terrasse", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462518, + 48.937787 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93007A", + "ref": "", + "name": "Metropolis - Citadine - Le Blanc-Mesnil - Claude Terrasse", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462518, + 48.937787 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93007A", + "ref": "", + "name": "Metropolis - Citadine - Le Blanc-Mesnil - Claude Terrasse", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462518, + 48.937787 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93007A", + "ref": "", + "name": "Metropolis - Citadine - Le Blanc-Mesnil - Claude Terrasse", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462518, + 48.937787 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93007A", + "ref": "", + "name": "Metropolis - Citadine - Le Blanc-Mesnil - Claude Terrasse", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.415652, + 48.857735 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93006C", + "ref": "", + "name": "Metropolis - Proximité - Bagnolet - Edouard Vaillant", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.415652, + 48.857735 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93006C", + "ref": "", + "name": "Metropolis - Proximité - Bagnolet - Edouard Vaillant", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.415652, + 48.857735 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93006C", + "ref": "", + "name": "Metropolis - Proximité - Bagnolet - Edouard Vaillant", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.415652, + 48.857735 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93006C", + "ref": "", + "name": "Metropolis - Proximité - Bagnolet - Edouard Vaillant", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42693, + 48.877739 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93006B", + "ref": "", + "name": "Metropolis - Proximité - Bagnolet - Sadi Carnot", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42693, + 48.877739 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93006B", + "ref": "", + "name": "Metropolis - Proximité - Bagnolet - Sadi Carnot", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.16798566, + 48.88946877 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063S", + "ref": "", + "name": "Metropolis - Express - Rueil-Malmaison - Auguste Perret", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42693, + 48.877739 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93006B", + "ref": "", + "name": "Metropolis - Proximité - Bagnolet - Sadi Carnot", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418981, + 48.876052 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93006A", + "ref": "", + "name": "Metropolis - Citadine - Bagnolet - Pasteur", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418981, + 48.876052 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93006A", + "ref": "", + "name": "Metropolis - Citadine - Bagnolet - Pasteur", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418981, + 48.876052 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93006A", + "ref": "", + "name": "Metropolis - Citadine - Bagnolet - Pasteur", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418981, + 48.876052 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93006A", + "ref": "", + "name": "Metropolis - Citadine - Bagnolet - Pasteur", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418981, + 48.876052 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93006A", + "ref": "", + "name": "Metropolis - Citadine - Bagnolet - Pasteur", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.484809, + 48.953583 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005F", + "ref": "", + "name": "Metropolis - Express - Aulnay-sous-Bois - Michel Ange", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.484809, + 48.953583 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005F", + "ref": "", + "name": "Metropolis - Express - Aulnay-sous-Bois - Michel Ange", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269933, + 48.891087 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051T", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-sur-Seine - Bineau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.484809, + 48.953583 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005F", + "ref": "", + "name": "Metropolis - Express - Aulnay-sous-Bois - Michel Ange", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.484809, + 48.953583 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005F", + "ref": "", + "name": "Metropolis - Express - Aulnay-sous-Bois - Michel Ange", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466539, + 48.948493 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93007B", + "ref": "", + "name": "Metropolis - Express - Le Blanc-Mesnil - Albert Einstein", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466539, + 48.948493 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93007B", + "ref": "", + "name": "Metropolis - Express - Le Blanc-Mesnil - Albert Einstein", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466539, + 48.948493 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93007B", + "ref": "", + "name": "Metropolis - Express - Le Blanc-Mesnil - Albert Einstein", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.424428, + 48.934799 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93013A", + "ref": "", + "name": "Metropolis - Citadine - Le Bourget - Hôtel de Ville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.579557, + 48.91443 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93015A", + "ref": "", + "name": "Metropolis - Citadine - Coubron - Raoul Larché", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.579557, + 48.91443 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93015A", + "ref": "", + "name": "Metropolis - Citadine - Coubron - Raoul Larché", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.579557, + 48.91443 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93015A", + "ref": "", + "name": "Metropolis - Citadine - Coubron - Raoul Larché", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.579557, + 48.91443 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93015A", + "ref": "", + "name": "Metropolis - Citadine - Coubron - Raoul Larché", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.550023, + 48.904666 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93014B", + "ref": "", + "name": "Metropolis - Citadine - Clichy-sous-Bois - Romain Rolland", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.550023, + 48.904666 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93014B", + "ref": "", + "name": "Metropolis - Citadine - Clichy-sous-Bois - Romain Rolland", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.550023, + 48.904666 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93014B", + "ref": "", + "name": "Metropolis - Citadine - Clichy-sous-Bois - Romain Rolland", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.550023, + 48.904666 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93014B", + "ref": "", + "name": "Metropolis - Citadine - Clichy-sous-Bois - Romain Rolland", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.550023, + 48.904666 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93014B", + "ref": "", + "name": "Metropolis - Citadine - Clichy-sous-Bois - Romain Rolland", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54646, + 48.910391 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93014A", + "ref": "", + "name": "Metropolis - Proximité - Clichy-sous-Bois - Place 11 Novembre 1918", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54646, + 48.910391 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93014A", + "ref": "", + "name": "Metropolis - Proximité - Clichy-sous-Bois - Place 11 Novembre 1918", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54646, + 48.910391 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93014A", + "ref": "", + "name": "Metropolis - Proximité - Clichy-sous-Bois - Place 11 Novembre 1918", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54646, + 48.910391 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93014A", + "ref": "", + "name": "Metropolis - Proximité - Clichy-sous-Bois - Place 11 Novembre 1918", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.426986, + 48.932195 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93013B", + "ref": "", + "name": "Metropolis - Proximité - Le Bourget - Elise Deroche", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.426986, + 48.932195 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93013B", + "ref": "", + "name": "Metropolis - Proximité - Le Bourget - Elise Deroche", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.426986, + 48.932195 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93013B", + "ref": "", + "name": "Metropolis - Proximité - Le Bourget - Elise Deroche", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.426986, + 48.932195 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93013B", + "ref": "", + "name": "Metropolis - Proximité - Le Bourget - Elise Deroche", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.426986, + 48.932195 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93013B", + "ref": "", + "name": "Metropolis - Proximité - Le Bourget - Elise Deroche", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.426986, + 48.932195 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93013B", + "ref": "", + "name": "Metropolis - Proximité - Le Bourget - Elise Deroche", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.424428, + 48.934799 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93013A", + "ref": "", + "name": "Metropolis - Citadine - Le Bourget - Hôtel de Ville", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.424428, + 48.934799 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93013A", + "ref": "", + "name": "Metropolis - Citadine - Le Bourget - Hôtel de Ville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.424428, + 48.934799 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93013A", + "ref": "", + "name": "Metropolis - Citadine - Le Bourget - Hôtel de Ville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.424428, + 48.934799 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93013A", + "ref": "", + "name": "Metropolis - Citadine - Le Bourget - Hôtel de Ville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48856985, + 48.94913362 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005E", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Jacquard", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48856985, + 48.94913362 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005E", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Jacquard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48856985, + 48.94913362 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005E", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Jacquard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49520158, + 48.93015608 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005A", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Dumont", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.387797, + 48.901705 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001D", + "ref": "", + "name": "Metropolis - Express - Aubervilliers - Henri Barbusse", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.387797, + 48.901705 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001D", + "ref": "", + "name": "Metropolis - Express - Aubervilliers - Henri Barbusse", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.387797, + 48.901705 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001D", + "ref": "", + "name": "Metropolis - Express - Aubervilliers - Henri Barbusse", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.387797, + 48.901705 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001D", + "ref": "", + "name": "Metropolis - Express - Aubervilliers - Henri Barbusse", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378693, + 48.909141 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001C", + "ref": "", + "name": "Metropolis - Citadine - Aubervilliers - Commune de Paris", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378693, + 48.909141 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001C", + "ref": "", + "name": "Metropolis - Citadine - Aubervilliers - Commune de Paris", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378693, + 48.909141 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001C", + "ref": "", + "name": "Metropolis - Citadine - Aubervilliers - Commune de Paris", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378693, + 48.909141 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001C", + "ref": "", + "name": "Metropolis - Citadine - Aubervilliers - Commune de Paris", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378693, + 48.909141 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001C", + "ref": "", + "name": "Metropolis - Citadine - Aubervilliers - Commune de Paris", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378192, + 48.914588 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001B", + "ref": "", + "name": "Metropolis - Citadine - Aubervilliers - Waldeck Rochet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378192, + 48.914588 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001B", + "ref": "", + "name": "Metropolis - Citadine - Aubervilliers - Waldeck Rochet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378192, + 48.914588 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001B", + "ref": "", + "name": "Metropolis - Citadine - Aubervilliers - Waldeck Rochet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378192, + 48.914588 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001B", + "ref": "", + "name": "Metropolis - Citadine - Aubervilliers - Waldeck Rochet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378192, + 48.914588 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001B", + "ref": "", + "name": "Metropolis - Citadine - Aubervilliers - Waldeck Rochet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383063, + 48.913211 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001A", + "ref": "", + "name": "Metropolis - Citadine - Aubervilliers - Docteur Pesqué", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383063, + 48.913211 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001A", + "ref": "", + "name": "Metropolis - Citadine - Aubervilliers - Docteur Pesqué", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383063, + 48.913211 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001A", + "ref": "", + "name": "Metropolis - Citadine - Aubervilliers - Docteur Pesqué", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383063, + 48.913211 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001A", + "ref": "", + "name": "Metropolis - Citadine - Aubervilliers - Docteur Pesqué", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383063, + 48.913211 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001A", + "ref": "", + "name": "Metropolis - Citadine - Aubervilliers - Docteur Pesqué", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1607189, + 48.8715031 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063T", + "ref": "", + "name": "Metropolis - Express - Rueil-Malmaison - Napoléon Bonaparte", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1607189, + 48.8715031 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063T", + "ref": "", + "name": "Metropolis - Express - Rueil-Malmaison - Napoléon Bonaparte", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1607189, + 48.8715031 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063T", + "ref": "", + "name": "Metropolis - Express - Rueil-Malmaison - Napoléon Bonaparte", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1607189, + 48.8715031 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92063T", + "ref": "", + "name": "Metropolis - Express - Rueil-Malmaison - Napoléon Bonaparte", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.387797, + 48.901705 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93001D", + "ref": "", + "name": "Metropolis - Express - Aubervilliers - Henri Barbusse", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49520158, + 48.93015608 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005A", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Dumont", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48856985, + 48.94913362 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005E", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Jacquard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49520158, + 48.93015608 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005A", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Dumont", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48856985, + 48.94913362 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005E", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Jacquard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5058873, + 48.93053723 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005D", + "ref": "", + "name": "Metropolis - Proximité - Aulnay-sous-Bois - Arthur Chevalier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-13", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5058873, + 48.93053723 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005D", + "ref": "", + "name": "Metropolis - Proximité - Aulnay-sous-Bois - Arthur Chevalier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-13", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5058873, + 48.93053723 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005D", + "ref": "", + "name": "Metropolis - Proximité - Aulnay-sous-Bois - Arthur Chevalier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-13", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5058873, + 48.93053723 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005D", + "ref": "", + "name": "Metropolis - Proximité - Aulnay-sous-Bois - Arthur Chevalier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-13", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5058873, + 48.93053723 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005D", + "ref": "", + "name": "Metropolis - Proximité - Aulnay-sous-Bois - Arthur Chevalier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-13", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5058873, + 48.93053723 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005D", + "ref": "", + "name": "Metropolis - Proximité - Aulnay-sous-Bois - Arthur Chevalier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-13", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49895672, + 48.94121732 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005C", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Rue de Sevran", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49895672, + 48.94121732 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005C", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Rue de Sevran", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49895672, + 48.94121732 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005C", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Rue de Sevran", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49895672, + 48.94121732 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005C", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Rue de Sevran", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49895672, + 48.94121732 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005C", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Rue de Sevran", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49967389, + 48.93369727 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005B", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Hôtel de Ville", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49967389, + 48.93369727 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005B", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Hôtel de Ville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49967389, + 48.93369727 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005B", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Hôtel de Ville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49967389, + 48.93369727 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005B", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Hôtel de Ville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49967389, + 48.93369727 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005B", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Hôtel de Ville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49967389, + 48.93369727 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005B", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Hôtel de Ville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49967389, + 48.93369727 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005B", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Hôtel de Ville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49520158, + 48.93015608 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005A", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Dumont", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49520158, + 48.93015608 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005A", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Dumont", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49520158, + 48.93015608 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005A", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Dumont", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49520158, + 48.93015608 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93005A", + "ref": "", + "name": "Metropolis - Citadine - Aulnay-sous-Bois - Dumont", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269933, + 48.891087 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051T", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-sur-Seine - Bineau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3179907, + 48.8173946 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049D", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Sylvine Candas", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269933, + 48.891087 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051T", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-sur-Seine - Bineau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.250672, + 48.768565 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019B", + "ref": "", + "name": "Metropolis - Express - Châtenay-Malabry - Bergerac", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279994, + 48.768197 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019E", + "ref": "", + "name": "Metropolis - Citadine - Châtenay-Malabry - Jean Longuet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27218497, + 48.76457362 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019D", + "ref": "", + "name": "Metropolis - Proximité - Châtenay-Malabry - Roger Salengro", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27218497, + 48.76457362 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019D", + "ref": "", + "name": "Metropolis - Proximité - Châtenay-Malabry - Roger Salengro", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27218497, + 48.76457362 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019D", + "ref": "", + "name": "Metropolis - Proximité - Châtenay-Malabry - Roger Salengro", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27218497, + 48.76457362 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019D", + "ref": "", + "name": "Metropolis - Proximité - Châtenay-Malabry - Roger Salengro", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255503, + 48.767361 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019C", + "ref": "", + "name": "Metropolis - Proximité - Châtenay-Malabry - Jean Jaurès", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255503, + 48.767361 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019C", + "ref": "", + "name": "Metropolis - Proximité - Châtenay-Malabry - Jean Jaurès", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255503, + 48.767361 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019C", + "ref": "", + "name": "Metropolis - Proximité - Châtenay-Malabry - Jean Jaurès", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255503, + 48.767361 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019C", + "ref": "", + "name": "Metropolis - Proximité - Châtenay-Malabry - Jean Jaurès", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255503, + 48.767361 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019C", + "ref": "", + "name": "Metropolis - Proximité - Châtenay-Malabry - Jean Jaurès", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255503, + 48.767361 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019C", + "ref": "", + "name": "Metropolis - Proximité - Châtenay-Malabry - Jean Jaurès", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.250672, + 48.768565 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019B", + "ref": "", + "name": "Metropolis - Express - Châtenay-Malabry - Bergerac", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26644659, + 48.8312661 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040E", + "ref": "", + "name": "Metropolis - Citadine - Issy-les-Moulineaux - Joseph Frantz", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.250672, + 48.768565 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019B", + "ref": "", + "name": "Metropolis - Express - Châtenay-Malabry - Bergerac", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.250672, + 48.768565 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019B", + "ref": "", + "name": "Metropolis - Express - Châtenay-Malabry - Bergerac", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.250672, + 48.768565 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019B", + "ref": "", + "name": "Metropolis - Express - Châtenay-Malabry - Bergerac", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2904931, + 48.76595607 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019A", + "ref": "", + "name": "Metropolis - Citadine - Châtenay-Malabry - Sully Prudhomme", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2904931, + 48.76595607 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019A", + "ref": "", + "name": "Metropolis - Citadine - Châtenay-Malabry - Sully Prudhomme", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2904931, + 48.76595607 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019A", + "ref": "", + "name": "Metropolis - Citadine - Châtenay-Malabry - Sully Prudhomme", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2904931, + 48.76595607 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019A", + "ref": "", + "name": "Metropolis - Citadine - Châtenay-Malabry - Sully Prudhomme", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2904931, + 48.76595607 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019A", + "ref": "", + "name": "Metropolis - Citadine - Châtenay-Malabry - Sully Prudhomme", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2904931, + 48.76595607 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019A", + "ref": "", + "name": "Metropolis - Citadine - Châtenay-Malabry - Sully Prudhomme", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2904931, + 48.76595607 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019A", + "ref": "", + "name": "Metropolis - Citadine - Châtenay-Malabry - Sully Prudhomme", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317304, + 48.784697 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014D", + "ref": "", + "name": "Metropolis - Express - Bourg-la-Reine - Général Leclerc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279994, + 48.768197 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019E", + "ref": "", + "name": "Metropolis - Citadine - Châtenay-Malabry - Jean Longuet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279994, + 48.768197 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019E", + "ref": "", + "name": "Metropolis - Citadine - Châtenay-Malabry - Jean Longuet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279994, + 48.768197 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019E", + "ref": "", + "name": "Metropolis - Citadine - Châtenay-Malabry - Jean Longuet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279994, + 48.768197 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92019E", + "ref": "", + "name": "Metropolis - Citadine - Châtenay-Malabry - Jean Longuet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26644659, + 48.8312661 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040E", + "ref": "", + "name": "Metropolis - Citadine - Issy-les-Moulineaux - Joseph Frantz", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26644659, + 48.8312661 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040E", + "ref": "", + "name": "Metropolis - Citadine - Issy-les-Moulineaux - Joseph Frantz", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26644659, + 48.8312661 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040E", + "ref": "", + "name": "Metropolis - Citadine - Issy-les-Moulineaux - Joseph Frantz", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26644659, + 48.8312661 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040E", + "ref": "", + "name": "Metropolis - Citadine - Issy-les-Moulineaux - Joseph Frantz", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28357617, + 48.82950414 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040D", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Ernest Renan", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28357617, + 48.82950414 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040D", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Ernest Renan", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28357617, + 48.82950414 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040D", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Ernest Renan", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28357617, + 48.82950414 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040D", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Ernest Renan", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26103455, + 48.82914716 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040C", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Roosevelt", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26103455, + 48.82914716 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040C", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Roosevelt", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26103455, + 48.82914716 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040C", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Roosevelt", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26103455, + 48.82914716 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040C", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Roosevelt", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27441884, + 48.82816072 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040B", + "ref": "", + "name": "Metropolis - Express - Issy-les-Moulineaux - Guynemer (50)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27441884, + 48.82816072 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040B", + "ref": "", + "name": "Metropolis - Express - Issy-les-Moulineaux - Guynemer (50)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27441884, + 48.82816072 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040B", + "ref": "", + "name": "Metropolis - Express - Issy-les-Moulineaux - Guynemer (50)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27441884, + 48.82816072 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040B", + "ref": "", + "name": "Metropolis - Express - Issy-les-Moulineaux - Guynemer (50)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27441884, + 48.82816072 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040B", + "ref": "", + "name": "Metropolis - Express - Issy-les-Moulineaux - Guynemer (50)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27849366, + 48.83087258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040A", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Guynemer (16)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27849366, + 48.83087258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040A", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Guynemer (16)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27849366, + 48.83087258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040A", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Guynemer (16)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27849366, + 48.83087258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040A", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Guynemer (16)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27849366, + 48.83087258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040A", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Guynemer (16)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27849366, + 48.83087258 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040A", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Guynemer (16)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317304, + 48.784697 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014D", + "ref": "", + "name": "Metropolis - Express - Bourg-la-Reine - Général Leclerc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317304, + 48.784697 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014D", + "ref": "", + "name": "Metropolis - Express - Bourg-la-Reine - Général Leclerc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317304, + 48.784697 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014D", + "ref": "", + "name": "Metropolis - Express - Bourg-la-Reine - Général Leclerc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30132922, + 48.75483829 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002D", + "ref": "", + "name": "Metropolis - Citadine - Antony - Velpeau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30132922, + 48.75483829 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002D", + "ref": "", + "name": "Metropolis - Citadine - Antony - Velpeau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3067, + 48.76306 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002C", + "ref": "", + "name": "Metropolis - Express - Antony - Général de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3067, + 48.76306 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002C", + "ref": "", + "name": "Metropolis - Express - Antony - Général de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3067, + 48.76306 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002C", + "ref": "", + "name": "Metropolis - Express - Antony - Général de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3067, + 48.76306 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002C", + "ref": "", + "name": "Metropolis - Express - Antony - Général de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3067, + 48.76306 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002C", + "ref": "", + "name": "Metropolis - Express - Antony - Général de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-28", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3007512, + 48.7503152 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002B", + "ref": "", + "name": "Metropolis - Citadine - Antony - Combattants", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3007512, + 48.7503152 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002B", + "ref": "", + "name": "Metropolis - Citadine - Antony - Combattants", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3007512, + 48.7503152 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002B", + "ref": "", + "name": "Metropolis - Citadine - Antony - Combattants", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3007512, + 48.7503152 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002B", + "ref": "", + "name": "Metropolis - Citadine - Antony - Combattants", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3007512, + 48.7503152 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002B", + "ref": "", + "name": "Metropolis - Citadine - Antony - Combattants", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3007512, + 48.7503152 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002B", + "ref": "", + "name": "Metropolis - Citadine - Antony - Combattants", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3007512, + 48.7503152 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002B", + "ref": "", + "name": "Metropolis - Citadine - Antony - Combattants", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -6155,6 +1272281,162866 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30132922, + 48.75483829 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002D", + "ref": "", + "name": "Metropolis - Citadine - Antony - Velpeau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30132922, + 48.75483829 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002D", + "ref": "", + "name": "Metropolis - Citadine - Antony - Velpeau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.311957, + 48.779158 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014C", + "ref": "", + "name": "Metropolis - Citadine - Bourg-la-Reine - André Theuriet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30132922, + 48.75483829 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002D", + "ref": "", + "name": "Metropolis - Citadine - Antony - Velpeau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.311957, + 48.779158 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014C", + "ref": "", + "name": "Metropolis - Citadine - Bourg-la-Reine - André Theuriet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.311957, + 48.779158 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014C", + "ref": "", + "name": "Metropolis - Citadine - Bourg-la-Reine - André Theuriet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.311957, + 48.779158 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014C", + "ref": "", + "name": "Metropolis - Citadine - Bourg-la-Reine - André Theuriet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.311957, + 48.779158 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014C", + "ref": "", + "name": "Metropolis - Citadine - Bourg-la-Reine - André Theuriet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316886, + 48.78436 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014B", + "ref": "", + "name": "Metropolis - Citadine - Bourg-la-Reine - Elie le Gallais", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316886, + 48.78436 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014B", + "ref": "", + "name": "Metropolis - Citadine - Bourg-la-Reine - Elie le Gallais", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316886, + 48.78436 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014B", + "ref": "", + "name": "Metropolis - Citadine - Bourg-la-Reine - Elie le Gallais", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316886, + 48.78436 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014B", + "ref": "", + "name": "Metropolis - Citadine - Bourg-la-Reine - Elie le Gallais", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316886, + 48.78436 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014B", + "ref": "", + "name": "Metropolis - Citadine - Bourg-la-Reine - Elie le Gallais", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322502, + 48.777139 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014A", + "ref": "", + "name": "Metropolis - Proximité - Bourg-la-Reine - Carnot", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322502, + 48.777139 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014A", + "ref": "", + "name": "Metropolis - Proximité - Bourg-la-Reine - Carnot", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322502, + 48.777139 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014A", + "ref": "", + "name": "Metropolis - Proximité - Bourg-la-Reine - Carnot", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322502, + 48.777139 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014A", + "ref": "", + "name": "Metropolis - Proximité - Bourg-la-Reine - Carnot", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322502, + 48.777139 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014A", + "ref": "", + "name": "Metropolis - Proximité - Bourg-la-Reine - Carnot", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322502, + 48.777139 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92014A", + "ref": "", + "name": "Metropolis - Proximité - Bourg-la-Reine - Carnot", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31383, + 48.73274 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002E", + "ref": "", + "name": "Metropolis - Proximité - Antony - De Tocqueville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31383, + 48.73274 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002E", + "ref": "", + "name": "Metropolis - Proximité - Antony - De Tocqueville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31383, + 48.73274 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002E", + "ref": "", + "name": "Metropolis - Proximité - Antony - De Tocqueville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31383, + 48.73274 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002E", + "ref": "", + "name": "Metropolis - Proximité - Antony - De Tocqueville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31383, + 48.73274 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002E", + "ref": "", + "name": "Metropolis - Proximité - Antony - De Tocqueville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31383, + 48.73274 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002E", + "ref": "", + "name": "Metropolis - Proximité - Antony - De Tocqueville", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30132922, + 48.75483829 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002D", + "ref": "", + "name": "Metropolis - Citadine - Antony - Velpeau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30132922, + 48.75483829 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92002D", + "ref": "", + "name": "Metropolis - Citadine - Antony - Velpeau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26644659, + 48.8312661 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040E", + "ref": "", + "name": "Metropolis - Citadine - Issy-les-Moulineaux - Joseph Frantz", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26644659, + 48.8312661 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040E", + "ref": "", + "name": "Metropolis - Citadine - Issy-les-Moulineaux - Joseph Frantz", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269933, + 48.891087 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051T", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-sur-Seine - Bineau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.278957, + 48.887095 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051B", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Victor Hugo", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-01", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279206, + 48.880952 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051F", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Montrosier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279206, + 48.880952 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051F", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Montrosier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265676, + 48.885127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051E", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Achille Peretti", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265676, + 48.885127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051E", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Achille Peretti", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265676, + 48.885127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051E", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Achille Peretti", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265676, + 48.885127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051E", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Achille Peretti", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.266284, + 48.895496 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051D", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Vital Bouhot", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.266284, + 48.895496 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051D", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Vital Bouhot", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274689, + 48.883412 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051C", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Cordonnier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274689, + 48.883412 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051C", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Cordonnier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.278957, + 48.887095 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051B", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Victor Hugo", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-01", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255578, + 48.875794 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051A", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Bretteville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26183571, + 48.82380279 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040F", + "ref": "", + "name": "Metropolis - Citadine - Issy-les-Moulineaux - René Jacques", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255578, + 48.875794 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051A", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Bretteville", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31451738, + 48.82207878 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049F", + "ref": "", + "name": "Metropolis - Express - Montrouge - Maurice Arnoux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-04", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31451738, + 48.82207878 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049F", + "ref": "", + "name": "Metropolis - Express - Montrouge - Maurice Arnoux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-04", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31451738, + 48.82207878 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049F", + "ref": "", + "name": "Metropolis - Express - Montrouge - Maurice Arnoux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-04", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31451738, + 48.82207878 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049F", + "ref": "", + "name": "Metropolis - Express - Montrouge - Maurice Arnoux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-04", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31451738, + 48.82207878 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049F", + "ref": "", + "name": "Metropolis - Express - Montrouge - Maurice Arnoux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-04", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32785348, + 48.81722451 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049E", + "ref": "", + "name": "Metropolis - Express - Montrouge - Barbes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32785348, + 48.81722451 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049E", + "ref": "", + "name": "Metropolis - Express - Montrouge - Barbes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32785348, + 48.81722451 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049E", + "ref": "", + "name": "Metropolis - Express - Montrouge - Barbes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32785348, + 48.81722451 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049E", + "ref": "", + "name": "Metropolis - Express - Montrouge - Barbes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32785348, + 48.81722451 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049E", + "ref": "", + "name": "Metropolis - Express - Montrouge - Barbes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279206, + 48.880952 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051F", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Montrosier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279206, + 48.880952 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051F", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Montrosier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.266735, + 48.888927 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051H", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Perronet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.266735, + 48.888927 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051H", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Perronet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269933, + 48.891087 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051T", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-sur-Seine - Bineau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274626, + 48.880962 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051S", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Dumas", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274626, + 48.880962 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051S", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Dumas", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.272622, + 48.884055 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051R", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Jean Mermoz", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.272622, + 48.884055 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051R", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Jean Mermoz", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255114, + 48.882007 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051Q", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Longchamp", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255114, + 48.882007 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051Q", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Longchamp", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.262574, + 48.886966 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051P", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Château", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.262574, + 48.886966 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051P", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Château", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26164776, + 48.88806409 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051O", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Saussaye (1)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26164776, + 48.88806409 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051O", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Saussaye (1)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.260021, + 48.883513 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051N", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Madrid", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.260021, + 48.883513 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051N", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Madrid", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265738, + 48.880995 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051M", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Jacques Dulud", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265738, + 48.880995 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051M", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Jacques Dulud", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.276458, + 48.889513 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051L", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Duc d Orléans", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.276458, + 48.889513 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051L", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Duc d Orléans", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.272288, + 48.891649 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051K", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Chauveau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.272288, + 48.891649 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051K", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Chauveau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.281346, + 48.888233 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051J", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Rouvray", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.281346, + 48.888233 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051J", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Rouvray", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274565, + 48.886673 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051I", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Borghèse", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274565, + 48.886673 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051I", + "ref": "", + "name": "Metropolis - ePremium - Neuilly-sur-Seine - Borghèse", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3179907, + 48.8173946 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049D", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Sylvine Candas", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3179907, + 48.8173946 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049D", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Sylvine Candas", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3179907, + 48.8173946 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049D", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Sylvine Candas", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26063816, + 48.81681135 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040J", + "ref": "", + "name": "Metropolis - Express - Issy-les-Moulineaux - Egalité", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26063816, + 48.81681135 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040J", + "ref": "", + "name": "Metropolis - Express - Issy-les-Moulineaux - Egalité", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26063816, + 48.81681135 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040J", + "ref": "", + "name": "Metropolis - Express - Issy-les-Moulineaux - Egalité", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26791608, + 48.82499159 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040I", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Gallieni", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26791608, + 48.82499159 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040I", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Gallieni", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26791608, + 48.82499159 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040I", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Gallieni", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26791608, + 48.82499159 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040I", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Gallieni", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26791608, + 48.82499159 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040I", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Gallieni", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26791608, + 48.82499159 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040I", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Gallieni", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26128899, + 48.82162691 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040H", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Garibaldi", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26128899, + 48.82162691 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040H", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Garibaldi", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26128899, + 48.82162691 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040H", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Garibaldi", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26128899, + 48.82162691 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040H", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Garibaldi", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26128899, + 48.82162691 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040H", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Garibaldi", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26128899, + 48.82162691 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040H", + "ref": "", + "name": "Metropolis - Proximité - Issy-les-Moulineaux - Garibaldi", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26817216, + 48.83272786 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040G", + "ref": "", + "name": "Metropolis - Express - Issy-les-Moulineaux - Bara", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26817216, + 48.83272786 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040G", + "ref": "", + "name": "Metropolis - Express - Issy-les-Moulineaux - Bara", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26817216, + 48.83272786 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040G", + "ref": "", + "name": "Metropolis - Express - Issy-les-Moulineaux - Bara", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26817216, + 48.83272786 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040G", + "ref": "", + "name": "Metropolis - Express - Issy-les-Moulineaux - Bara", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26817216, + 48.83272786 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040G", + "ref": "", + "name": "Metropolis - Express - Issy-les-Moulineaux - Bara", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26183571, + 48.82380279 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040F", + "ref": "", + "name": "Metropolis - Citadine - Issy-les-Moulineaux - René Jacques", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26183571, + 48.82380279 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040F", + "ref": "", + "name": "Metropolis - Citadine - Issy-les-Moulineaux - René Jacques", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26183571, + 48.82380279 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040F", + "ref": "", + "name": "Metropolis - Citadine - Issy-les-Moulineaux - René Jacques", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26183571, + 48.82380279 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040F", + "ref": "", + "name": "Metropolis - Citadine - Issy-les-Moulineaux - René Jacques", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26063816, + 48.81681135 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040J", + "ref": "", + "name": "Metropolis - Express - Issy-les-Moulineaux - Egalité", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26063816, + 48.81681135 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92040J", + "ref": "", + "name": "Metropolis - Express - Issy-les-Moulineaux - Egalité", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3179907, + 48.8173946 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049D", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Sylvine Candas", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315961, + 48.81079 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049A", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Molière", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3179907, + 48.8173946 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049D", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Sylvine Candas", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3179907, + 48.8173946 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049D", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Sylvine Candas", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-05", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.416538, + 48.954492 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93030A", + "ref": "", + "name": "Metropolis - Citadine - Dugny - Gabriel Péri", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30739515, + 48.81253099 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049C", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Roger Salengro", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30739515, + 48.81253099 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049C", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Roger Salengro", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30739515, + 48.81253099 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049C", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Roger Salengro", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30739515, + 48.81253099 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049C", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Roger Salengro", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30739515, + 48.81253099 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049C", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Roger Salengro", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30739515, + 48.81253099 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049C", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Roger Salengro", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30739515, + 48.81253099 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049C", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Roger Salengro", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32361378, + 48.81256199 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049B", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Jules Ferry", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32361378, + 48.81256199 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049B", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Jules Ferry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32361378, + 48.81256199 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049B", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Jules Ferry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32361378, + 48.81256199 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049B", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Jules Ferry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32361378, + 48.81256199 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049B", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Jules Ferry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32361378, + 48.81256199 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049B", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Jules Ferry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32361378, + 48.81256199 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049B", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Jules Ferry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315961, + 48.81079 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049A", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Molière", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315961, + 48.81079 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049A", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Molière", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315961, + 48.81079 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049A", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Molière", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315961, + 48.81079 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049A", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Molière", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315961, + 48.81079 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049A", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Molière", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315961, + 48.81079 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92049A", + "ref": "", + "name": "Metropolis - Citadine - Montrouge - Molière", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.579557, + 48.91443 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93015A", + "ref": "", + "name": "Metropolis - Citadine - Coubron - Raoul Larché", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.452196, + 48.868409 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048D", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Signac", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.416538, + 48.954492 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93030A", + "ref": "", + "name": "Metropolis - Citadine - Dugny - Gabriel Péri", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3438, + 48.960564 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93079A", + "ref": "", + "name": "Metropolis - Citadine - Villetaneuse - Etienne Fajon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432962, + 48.725386 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94001A", + "ref": "", + "name": "Metropolis - Citadine - Ablon-sur-Seine - Villeneuve", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432962, + 48.725386 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94001A", + "ref": "", + "name": "Metropolis - Citadine - Ablon-sur-Seine - Villeneuve", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344242, + 48.955912 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93079B", + "ref": "", + "name": "Metropolis - Citadine - Villetaneuse - Division Leclerc", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344242, + 48.955912 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93079B", + "ref": "", + "name": "Metropolis - Citadine - Villetaneuse - Division Leclerc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344242, + 48.955912 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93079B", + "ref": "", + "name": "Metropolis - Citadine - Villetaneuse - Division Leclerc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344242, + 48.955912 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93079B", + "ref": "", + "name": "Metropolis - Citadine - Villetaneuse - Division Leclerc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344242, + 48.955912 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93079B", + "ref": "", + "name": "Metropolis - Citadine - Villetaneuse - Division Leclerc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3438, + 48.960564 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93079A", + "ref": "", + "name": "Metropolis - Citadine - Villetaneuse - Etienne Fajon", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3438, + 48.960564 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93079A", + "ref": "", + "name": "Metropolis - Citadine - Villetaneuse - Etienne Fajon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3438, + 48.960564 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93079A", + "ref": "", + "name": "Metropolis - Citadine - Villetaneuse - Etienne Fajon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3438, + 48.960564 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93079A", + "ref": "", + "name": "Metropolis - Citadine - Villetaneuse - Etienne Fajon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.539899, + 48.956136 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93078C", + "ref": "", + "name": "Metropolis - Citadine - Villepinte - Norbert Segard", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.399966, + 48.742641 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94054A", + "ref": "", + "name": "Metropolis - Citadine - Orly - Aérodrome", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.539899, + 48.956136 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93078C", + "ref": "", + "name": "Metropolis - Citadine - Villepinte - Norbert Segard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.539899, + 48.956136 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93078C", + "ref": "", + "name": "Metropolis - Citadine - Villepinte - Norbert Segard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.539899, + 48.956136 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93078C", + "ref": "", + "name": "Metropolis - Citadine - Villepinte - Norbert Segard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.539899, + 48.956136 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93078C", + "ref": "", + "name": "Metropolis - Citadine - Villepinte - Norbert Segard", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.562364, + 48.95325 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93078B", + "ref": "", + "name": "Metropolis - Express - Villepinte - Rêve", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.562364, + 48.95325 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93078B", + "ref": "", + "name": "Metropolis - Express - Villepinte - Rêve", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.562364, + 48.95325 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93078B", + "ref": "", + "name": "Metropolis - Express - Villepinte - Rêve", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.562364, + 48.95325 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93078B", + "ref": "", + "name": "Metropolis - Express - Villepinte - Rêve", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.562364, + 48.95325 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93078B", + "ref": "", + "name": "Metropolis - Express - Villepinte - Rêve", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.534704, + 48.963427 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93078A", + "ref": "", + "name": "Metropolis - Citadine - Villepinte - Hôtel de Ville", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.534704, + 48.963427 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93078A", + "ref": "", + "name": "Metropolis - Citadine - Villepinte - Hôtel de Ville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432962, + 48.725386 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94001A", + "ref": "", + "name": "Metropolis - Citadine - Ablon-sur-Seine - Villeneuve", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432962, + 48.725386 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94001A", + "ref": "", + "name": "Metropolis - Citadine - Ablon-sur-Seine - Villeneuve", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432962, + 48.725386 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94001A", + "ref": "", + "name": "Metropolis - Citadine - Ablon-sur-Seine - Villeneuve", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529157, + 48.832844 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94015A", + "ref": "", + "name": "Metropolis - Citadine - Bry-sur-Marne - Pasteur", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402018, + 48.769975 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94022C", + "ref": "", + "name": "Metropolis - Express - Choisy-le-Roi - Stalingrad", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402018, + 48.769975 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94022C", + "ref": "", + "name": "Metropolis - Express - Choisy-le-Roi - Stalingrad", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402018, + 48.769975 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94022C", + "ref": "", + "name": "Metropolis - Express - Choisy-le-Roi - Stalingrad", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402018, + 48.769975 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94022C", + "ref": "", + "name": "Metropolis - Express - Choisy-le-Roi - Stalingrad", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.413793, + 48.771796 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94022B", + "ref": "", + "name": "Metropolis - Citadine - Choisy-le-Roi - Av. d´Alfortville", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.413793, + 48.771796 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94022B", + "ref": "", + "name": "Metropolis - Citadine - Choisy-le-Roi - Av. d´Alfortville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.413793, + 48.771796 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94022B", + "ref": "", + "name": "Metropolis - Citadine - Choisy-le-Roi - Av. d´Alfortville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.413793, + 48.771796 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94022B", + "ref": "", + "name": "Metropolis - Citadine - Choisy-le-Roi - Av. d´Alfortville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.413793, + 48.771796 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94022B", + "ref": "", + "name": "Metropolis - Citadine - Choisy-le-Roi - Av. d´Alfortville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.413922, + 48.761755 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94022A", + "ref": "", + "name": "Metropolis - Citadine - Choisy-le-Roi - Louis Luc", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.413922, + 48.761755 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94022A", + "ref": "", + "name": "Metropolis - Citadine - Choisy-le-Roi - Louis Luc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.413922, + 48.761755 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94022A", + "ref": "", + "name": "Metropolis - Citadine - Choisy-le-Roi - Louis Luc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.413922, + 48.761755 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94022A", + "ref": "", + "name": "Metropolis - Citadine - Choisy-le-Roi - Louis Luc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.413922, + 48.761755 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94022A", + "ref": "", + "name": "Metropolis - Citadine - Choisy-le-Roi - Louis Luc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.520342, + 48.835744 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94015B", + "ref": "", + "name": "Metropolis - Citadine - Bry-sur-Marne - Charles de Gaulle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.520342, + 48.835744 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94015B", + "ref": "", + "name": "Metropolis - Citadine - Bry-sur-Marne - Charles de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.520342, + 48.835744 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94015B", + "ref": "", + "name": "Metropolis - Citadine - Bry-sur-Marne - Charles de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.520342, + 48.835744 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94015B", + "ref": "", + "name": "Metropolis - Citadine - Bry-sur-Marne - Charles de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.520342, + 48.835744 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94015B", + "ref": "", + "name": "Metropolis - Citadine - Bry-sur-Marne - Charles de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529157, + 48.832844 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94015A", + "ref": "", + "name": "Metropolis - Citadine - Bry-sur-Marne - Pasteur", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529157, + 48.832844 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94015A", + "ref": "", + "name": "Metropolis - Citadine - Bry-sur-Marne - Pasteur", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529157, + 48.832844 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94015A", + "ref": "", + "name": "Metropolis - Citadine - Bry-sur-Marne - Pasteur", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529157, + 48.832844 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94015A", + "ref": "", + "name": "Metropolis - Citadine - Bry-sur-Marne - Pasteur", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.534704, + 48.963427 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93078A", + "ref": "", + "name": "Metropolis - Citadine - Villepinte - Hôtel de Ville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.534704, + 48.963427 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93078A", + "ref": "", + "name": "Metropolis - Citadine - Villepinte - Hôtel de Ville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.534704, + 48.963427 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93078A", + "ref": "", + "name": "Metropolis - Citadine - Villepinte - Hôtel de Ville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535163, + 48.934277 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071B", + "ref": "", + "name": "Metropolis - Citadine - Sevran - Avenue de Livry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535163, + 48.934277 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071B", + "ref": "", + "name": "Metropolis - Citadine - Sevran - Avenue de Livry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535163, + 48.934277 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071B", + "ref": "", + "name": "Metropolis - Citadine - Sevran - Avenue de Livry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535163, + 48.934277 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071B", + "ref": "", + "name": "Metropolis - Citadine - Sevran - Avenue de Livry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535163, + 48.934277 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071B", + "ref": "", + "name": "Metropolis - Citadine - Sevran - Avenue de Livry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.522605, + 48.946546 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071A", + "ref": "", + "name": "Metropolis - Citadine - Sevran - Dumont d`Urville", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.522605, + 48.946546 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071A", + "ref": "", + "name": "Metropolis - Citadine - Sevran - Dumont d`Urville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.522605, + 48.946546 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071A", + "ref": "", + "name": "Metropolis - Citadine - Sevran - Dumont d`Urville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.522605, + 48.946546 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071A", + "ref": "", + "name": "Metropolis - Citadine - Sevran - Dumont d`Urville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.522605, + 48.946546 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071A", + "ref": "", + "name": "Metropolis - Citadine - Sevran - Dumont d`Urville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.522605, + 48.946546 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071A", + "ref": "", + "name": "Metropolis - Citadine - Sevran - Dumont d`Urville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.522605, + 48.946546 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071A", + "ref": "", + "name": "Metropolis - Citadine - Sevran - Dumont d`Urville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.333029, + 48.9122 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070E", + "ref": "", + "name": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Lafargue", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.333029, + 48.9122 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070E", + "ref": "", + "name": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Lafargue", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.333029, + 48.9122 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070E", + "ref": "", + "name": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Lafargue", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.333029, + 48.9122 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070E", + "ref": "", + "name": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Lafargue", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.333029, + 48.9122 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070E", + "ref": "", + "name": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Lafargue", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-07", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33084, + 48.91506 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070D", + "ref": "", + "name": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Clef des Champs", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33084, + 48.91506 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070D", + "ref": "", + "name": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Clef des Champs", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33084, + 48.91506 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070D", + "ref": "", + "name": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Clef des Champs", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33084, + 48.91506 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070D", + "ref": "", + "name": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Clef des Champs", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33084, + 48.91506 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070D", + "ref": "", + "name": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Clef des Champs", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33154888, + 48.90712198 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070C", + "ref": "", + "name": "Metropolis - Proximité - Saint-Ouen-sur-Seine - Louis Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-19", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33154888, + 48.90712198 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070C", + "ref": "", + "name": "Metropolis - Proximité - Saint-Ouen-sur-Seine - Louis Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-19", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535163, + 48.934277 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071B", + "ref": "", + "name": "Metropolis - Citadine - Sevran - Avenue de Livry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535163, + 48.934277 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071B", + "ref": "", + "name": "Metropolis - Citadine - Sevran - Avenue de Livry", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.511343, + 48.88911 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93077B", + "ref": "", + "name": "Metropolis - Citadine - Villemomble - Outrebon", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-07", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528189, + 48.939106 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071C", + "ref": "", + "name": "Metropolis - Express - Sevran - Roger le Maner", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.511343, + 48.88911 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93077B", + "ref": "", + "name": "Metropolis - Citadine - Villemomble - Outrebon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-07", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.511343, + 48.88911 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93077B", + "ref": "", + "name": "Metropolis - Citadine - Villemomble - Outrebon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-07", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.511343, + 48.88911 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93077B", + "ref": "", + "name": "Metropolis - Citadine - Villemomble - Outrebon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-07", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.511343, + 48.88911 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93077B", + "ref": "", + "name": "Metropolis - Citadine - Villemomble - Outrebon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-07", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523168, + 48.881865 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93077A", + "ref": "", + "name": "Metropolis - Citadine - Villemomble - Grande Rue", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523168, + 48.881865 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93077A", + "ref": "", + "name": "Metropolis - Citadine - Villemomble - Grande Rue", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523168, + 48.881865 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93077A", + "ref": "", + "name": "Metropolis - Citadine - Villemomble - Grande Rue", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523168, + 48.881865 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93077A", + "ref": "", + "name": "Metropolis - Citadine - Villemomble - Grande Rue", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523168, + 48.881865 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93077A", + "ref": "", + "name": "Metropolis - Citadine - Villemomble - Grande Rue", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.367743, + 48.955523 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93072B", + "ref": "", + "name": "Metropolis - Citadine - Stains - Bois Moussay", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.367743, + 48.955523 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93072B", + "ref": "", + "name": "Metropolis - Citadine - Stains - Bois Moussay", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.367743, + 48.955523 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93072B", + "ref": "", + "name": "Metropolis - Citadine - Stains - Bois Moussay", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.367743, + 48.955523 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93072B", + "ref": "", + "name": "Metropolis - Citadine - Stains - Bois Moussay", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.367743, + 48.955523 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93072B", + "ref": "", + "name": "Metropolis - Citadine - Stains - Bois Moussay", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.381677, + 48.952051 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93072A", + "ref": "", + "name": "Metropolis - Citadine - Stains - Marcel Pointet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.381677, + 48.952051 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93072A", + "ref": "", + "name": "Metropolis - Citadine - Stains - Marcel Pointet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.381677, + 48.952051 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93072A", + "ref": "", + "name": "Metropolis - Citadine - Stains - Marcel Pointet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.381677, + 48.952051 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93072A", + "ref": "", + "name": "Metropolis - Citadine - Stains - Marcel Pointet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.381677, + 48.952051 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93072A", + "ref": "", + "name": "Metropolis - Citadine - Stains - Marcel Pointet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-15", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528189, + 48.939106 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071C", + "ref": "", + "name": "Metropolis - Express - Sevran - Roger le Maner", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528189, + 48.939106 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071C", + "ref": "", + "name": "Metropolis - Express - Sevran - Roger le Maner", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528189, + 48.939106 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071C", + "ref": "", + "name": "Metropolis - Express - Sevran - Roger le Maner", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528189, + 48.939106 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93071C", + "ref": "", + "name": "Metropolis - Express - Sevran - Roger le Maner", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.399966, + 48.742641 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94054A", + "ref": "", + "name": "Metropolis - Citadine - Orly - Aérodrome", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.399966, + 48.742641 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94054A", + "ref": "", + "name": "Metropolis - Citadine - Orly - Aérodrome", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33154888, + 48.90712198 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070C", + "ref": "", + "name": "Metropolis - Proximité - Saint-Ouen-sur-Seine - Louis Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-19", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53491, + 48.832005 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94079C", + "ref": "", + "name": "Metropolis - Express - Villiers-sur-Marne - Bishop`s Stortford", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44084594, + 48.85071082 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080F", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Diderot (48)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44135361, + 48.84684538 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080E", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Brossolette", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44135361, + 48.84684538 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080E", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Brossolette", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.447183, + 48.846896 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080D", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Péri", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.447183, + 48.846896 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080D", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Péri", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4368853, + 48.8514798 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080C", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - République", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4368853, + 48.8514798 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080C", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - République", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42866225, + 48.8438568 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080B", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Petit Parc", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42866225, + 48.8438568 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080B", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Petit Parc", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.424445, + 48.847891 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080A", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Massue", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.424445, + 48.847891 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080A", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Massue", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53491, + 48.832005 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94079C", + "ref": "", + "name": "Metropolis - Express - Villiers-sur-Marne - Bishop`s Stortford", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.399966, + 48.742641 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94054A", + "ref": "", + "name": "Metropolis - Citadine - Orly - Aérodrome", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53491, + 48.832005 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94079C", + "ref": "", + "name": "Metropolis - Express - Villiers-sur-Marne - Bishop`s Stortford", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53491, + 48.832005 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94079C", + "ref": "", + "name": "Metropolis - Express - Villiers-sur-Marne - Bishop`s Stortford", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53491, + 48.832005 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94079C", + "ref": "", + "name": "Metropolis - Express - Villiers-sur-Marne - Bishop`s Stortford", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53511, + 48.823691 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94079B", + "ref": "", + "name": "Metropolis - Citadine - Villiers-sur-Marne - Dunant", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53511, + 48.823691 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94079B", + "ref": "", + "name": "Metropolis - Citadine - Villiers-sur-Marne - Dunant", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53511, + 48.823691 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94079B", + "ref": "", + "name": "Metropolis - Citadine - Villiers-sur-Marne - Dunant", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53511, + 48.823691 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94079B", + "ref": "", + "name": "Metropolis - Citadine - Villiers-sur-Marne - Dunant", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53511, + 48.823691 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94079B", + "ref": "", + "name": "Metropolis - Citadine - Villiers-sur-Marne - Dunant", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.544022, + 48.827653 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94079A", + "ref": "", + "name": "Metropolis - Citadine - Villiers-sur-Marne - Trottin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.544022, + 48.827653 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94079A", + "ref": "", + "name": "Metropolis - Citadine - Villiers-sur-Marne - Trottin", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.544022, + 48.827653 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94079A", + "ref": "", + "name": "Metropolis - Citadine - Villiers-sur-Marne - Trottin", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44084594, + 48.85071082 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080F", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Diderot (48)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43712014, + 48.84624221 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080G", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Lejemptel", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43712014, + 48.84624221 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080G", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Lejemptel", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44706335, + 48.85030215 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080H", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Diderot (118)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.452451, + 48.846774 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080N", + "ref": "", + "name": "Metropolis - Express - Vincennes - Murs du parc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-19", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.452451, + 48.846774 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080N", + "ref": "", + "name": "Metropolis - Express - Vincennes - Murs du parc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-19", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.452451, + 48.846774 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080N", + "ref": "", + "name": "Metropolis - Express - Vincennes - Murs du parc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-19", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.452451, + 48.846774 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080N", + "ref": "", + "name": "Metropolis - Express - Vincennes - Murs du parc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-19", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.452451, + 48.846774 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080N", + "ref": "", + "name": "Metropolis - Express - Vincennes - Murs du parc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-19", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443435, + 48.847775 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080M", + "ref": "", + "name": "Metropolis - Proximité - Vincennes - Rue de Fontenay (44)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443435, + 48.847775 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080M", + "ref": "", + "name": "Metropolis - Proximité - Vincennes - Rue de Fontenay (44)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443435, + 48.847775 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080M", + "ref": "", + "name": "Metropolis - Proximité - Vincennes - Rue de Fontenay (44)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443435, + 48.847775 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080M", + "ref": "", + "name": "Metropolis - Proximité - Vincennes - Rue de Fontenay (44)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433171, + 48.848592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080L", + "ref": "", + "name": "Metropolis - Citadine - Vincennes - Rue de Fontenay (194)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-28", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433171, + 48.848592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080L", + "ref": "", + "name": "Metropolis - Citadine - Vincennes - Rue de Fontenay (194)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-28", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433171, + 48.848592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080L", + "ref": "", + "name": "Metropolis - Citadine - Vincennes - Rue de Fontenay (194)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-28", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433171, + 48.848592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080L", + "ref": "", + "name": "Metropolis - Citadine - Vincennes - Rue de Fontenay (194)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-28", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433171, + 48.848592 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080L", + "ref": "", + "name": "Metropolis - Citadine - Vincennes - Rue de Fontenay (194)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-28", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.434339, + 48.844408 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080K", + "ref": "", + "name": "Metropolis - Proximité - Vincennes - Général de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.434339, + 48.844408 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080K", + "ref": "", + "name": "Metropolis - Proximité - Vincennes - Général de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.434339, + 48.844408 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080K", + "ref": "", + "name": "Metropolis - Proximité - Vincennes - Général de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.434339, + 48.844408 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080K", + "ref": "", + "name": "Metropolis - Proximité - Vincennes - Général de Gaulle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.45519471, + 48.84968646 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080J", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Diderot (216)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-18", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.45519471, + 48.84968646 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080J", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Diderot (216)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-18", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.45605117, + 48.84609748 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080I", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Mur du Parc", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.45605117, + 48.84609748 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080I", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Mur du Parc", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44706335, + 48.85030215 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94080H", + "ref": "", + "name": "Metropolis - ePremium - Vincennes - Diderot (118)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.544022, + 48.827653 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94079A", + "ref": "", + "name": "Metropolis - Citadine - Villiers-sur-Marne - Trottin", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.544022, + 48.827653 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94079A", + "ref": "", + "name": "Metropolis - Citadine - Villiers-sur-Marne - Trottin", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535109, + 48.721889 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94075A", + "ref": "", + "name": "Metropolis - Citadine - Villecresnes - Réveillon", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.487477, + 48.793445 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94068B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Maur-des-Fossés - Adamville", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.487477, + 48.793445 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94068B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Maur-des-Fossés - Adamville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.487477, + 48.793445 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94068B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Maur-des-Fossés - Adamville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.487477, + 48.793445 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94068B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Maur-des-Fossés - Adamville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513764, + 48.794114 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94068A", + "ref": "", + "name": "Metropolis - Proximité - Saint-Maur-des-Fossés - Mesnil", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513764, + 48.794114 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94068A", + "ref": "", + "name": "Metropolis - Proximité - Saint-Maur-des-Fossés - Mesnil", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513764, + 48.794114 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94068A", + "ref": "", + "name": "Metropolis - Proximité - Saint-Maur-des-Fossés - Mesnil", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513764, + 48.794114 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94068A", + "ref": "", + "name": "Metropolis - Proximité - Saint-Maur-des-Fossés - Mesnil", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574213, + 48.789679 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94060A", + "ref": "", + "name": "Metropolis - Citadine - La Queue-en-Brie - Maréchal Mortier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574213, + 48.789679 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94060A", + "ref": "", + "name": "Metropolis - Citadine - La Queue-en-Brie - Maréchal Mortier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574213, + 48.789679 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94060A", + "ref": "", + "name": "Metropolis - Citadine - La Queue-en-Brie - Maréchal Mortier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574213, + 48.789679 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94060A", + "ref": "", + "name": "Metropolis - Citadine - La Queue-en-Brie - Maréchal Mortier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574213, + 48.789679 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94060A", + "ref": "", + "name": "Metropolis - Citadine - La Queue-en-Brie - Maréchal Mortier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540299, + 48.786073 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94055A", + "ref": "", + "name": "Metropolis - Citadine - Ormesson-sur-Marne - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540299, + 48.786073 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94055A", + "ref": "", + "name": "Metropolis - Citadine - Ormesson-sur-Marne - Mairie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540299, + 48.786073 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94055A", + "ref": "", + "name": "Metropolis - Citadine - Ormesson-sur-Marne - Mairie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540299, + 48.786073 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94055A", + "ref": "", + "name": "Metropolis - Citadine - Ormesson-sur-Marne - Mairie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540299, + 48.786073 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94055A", + "ref": "", + "name": "Metropolis - Citadine - Ormesson-sur-Marne - Mairie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40733, + 48.749487 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94054B", + "ref": "", + "name": "Metropolis - Citadine - Orly - Hautes Bornes", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-04", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40733, + 48.749487 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94054B", + "ref": "", + "name": "Metropolis - Citadine - Orly - Hautes Bornes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-04", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40733, + 48.749487 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94054B", + "ref": "", + "name": "Metropolis - Citadine - Orly - Hautes Bornes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-04", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40733, + 48.749487 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94054B", + "ref": "", + "name": "Metropolis - Citadine - Orly - Hautes Bornes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-04", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40733, + 48.749487 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94054B", + "ref": "", + "name": "Metropolis - Citadine - Orly - Hautes Bornes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-04", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.399966, + 48.742641 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94054A", + "ref": "", + "name": "Metropolis - Citadine - Orly - Aérodrome", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.487477, + 48.793445 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94068B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Maur-des-Fossés - Adamville", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4753937, + 48.8037405 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94068C", + "ref": "", + "name": "Metropolis - Citadine - Saint-Maur-des-Fossés - Parking Bollier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535109, + 48.721889 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94075A", + "ref": "", + "name": "Metropolis - Citadine - Villecresnes - Réveillon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4753937, + 48.8037405 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94068C", + "ref": "", + "name": "Metropolis - Citadine - Saint-Maur-des-Fossés - Parking Bollier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535109, + 48.721889 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94075A", + "ref": "", + "name": "Metropolis - Citadine - Villecresnes - Réveillon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535109, + 48.721889 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94075A", + "ref": "", + "name": "Metropolis - Citadine - Villecresnes - Réveillon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535109, + 48.721889 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94075A", + "ref": "", + "name": "Metropolis - Citadine - Villecresnes - Réveillon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.566491, + 48.718446 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94070A", + "ref": "", + "name": "Metropolis - Express - Santeny - Erables", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.566491, + 48.718446 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94070A", + "ref": "", + "name": "Metropolis - Express - Santeny - Erables", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.566491, + 48.718446 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94070A", + "ref": "", + "name": "Metropolis - Express - Santeny - Erables", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.566491, + 48.718446 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94070A", + "ref": "", + "name": "Metropolis - Express - Santeny - Erables", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.566491, + 48.718446 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94070A", + "ref": "", + "name": "Metropolis - Express - Santeny - Erables", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4596527, + 48.8142151 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94069B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Maurice - Jean Renoir", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4596527, + 48.8142151 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94069B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Maurice - Jean Renoir", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4596527, + 48.8142151 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94069B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Maurice - Jean Renoir", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4596527, + 48.8142151 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94069B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Maurice - Jean Renoir", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4596527, + 48.8142151 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94069B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Maurice - Jean Renoir", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4596527, + 48.8142151 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94069B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Maurice - Jean Renoir", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42205713, + 48.82215245 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94069A", + "ref": "", + "name": "Metropolis - Proximité - Saint-Maurice - Verdun", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42205713, + 48.82215245 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94069A", + "ref": "", + "name": "Metropolis - Proximité - Saint-Maurice - Verdun", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42205713, + 48.82215245 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94069A", + "ref": "", + "name": "Metropolis - Proximité - Saint-Maurice - Verdun", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42205713, + 48.82215245 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94069A", + "ref": "", + "name": "Metropolis - Proximité - Saint-Maurice - Verdun", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42205713, + 48.82215245 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94069A", + "ref": "", + "name": "Metropolis - Proximité - Saint-Maurice - Verdun", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42205713, + 48.82215245 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94069A", + "ref": "", + "name": "Metropolis - Proximité - Saint-Maurice - Verdun", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-02", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4753937, + 48.8037405 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94068C", + "ref": "", + "name": "Metropolis - Citadine - Saint-Maur-des-Fossés - Parking Bollier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4753937, + 48.8037405 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94068C", + "ref": "", + "name": "Metropolis - Citadine - Saint-Maur-des-Fossés - Parking Bollier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4753937, + 48.8037405 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94068C", + "ref": "", + "name": "Metropolis - Citadine - Saint-Maur-des-Fossés - Parking Bollier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33154888, + 48.90712198 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070C", + "ref": "", + "name": "Metropolis - Proximité - Saint-Ouen-sur-Seine - Louis Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-19", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33154888, + 48.90712198 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070C", + "ref": "", + "name": "Metropolis - Proximité - Saint-Ouen-sur-Seine - Louis Blanc", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-19", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.416538, + 48.954492 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93030A", + "ref": "", + "name": "Metropolis - Citadine - Dugny - Gabriel Péri", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.479014, + 48.864371 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048F", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Brossolette", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41590762, + 48.85222209 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048H", + "ref": "", + "name": "Metropolis - Express - Montreuil - République", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41590762, + 48.85222209 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048H", + "ref": "", + "name": "Metropolis - Express - Montreuil - République", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433322, + 48.868266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048G", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Général de Gaulle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433322, + 48.868266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048G", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Général de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433322, + 48.868266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048G", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Général de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433322, + 48.868266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048G", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Général de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433322, + 48.868266 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048G", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Général de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.479014, + 48.864371 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048F", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Brossolette", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.479014, + 48.864371 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048F", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Brossolette", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.479014, + 48.864371 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048F", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Brossolette", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.479014, + 48.864371 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048F", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Brossolette", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.458188, + 48.85997 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048E", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Yélimané", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50413376, + 48.86155006 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049A", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-Plaisance - République", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.458188, + 48.85997 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048E", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Yélimané", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.458188, + 48.85997 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048E", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Yélimané", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.458188, + 48.85997 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048E", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Yélimané", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.458188, + 48.85997 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048E", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Yélimané", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.452196, + 48.868409 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048D", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Signac", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.452196, + 48.868409 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048D", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Signac", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.452196, + 48.868409 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048D", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Signac", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431765, + 48.85407 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048C", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Godefroy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431765, + 48.85407 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048C", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Godefroy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431765, + 48.85407 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048C", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Godefroy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431765, + 48.85407 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048C", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Godefroy", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41590762, + 48.85222209 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048H", + "ref": "", + "name": "Metropolis - Express - Montreuil - République", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41590762, + 48.85222209 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048H", + "ref": "", + "name": "Metropolis - Express - Montreuil - République", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41590762, + 48.85222209 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048H", + "ref": "", + "name": "Metropolis - Express - Montreuil - République", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.455554, + 48.876462 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048I", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Léo Lagrange", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50413376, + 48.86155006 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049A", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-Plaisance - République", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50413376, + 48.86155006 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049A", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-Plaisance - République", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50413376, + 48.86155006 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049A", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-Plaisance - République", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50413376, + 48.86155006 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049A", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-Plaisance - République", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50413376, + 48.86155006 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049A", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-Plaisance - République", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42329625, + 48.85316398 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048L", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - République (5)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42329625, + 48.85316398 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048L", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - République (5)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42329625, + 48.85316398 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048L", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - République (5)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42329625, + 48.85316398 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048L", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - République (5)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443663, + 48.861683 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048K", + "ref": "", + "name": "Metropolis - Express - Montreuil - Franklin (30)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443663, + 48.861683 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048K", + "ref": "", + "name": "Metropolis - Express - Montreuil - Franklin (30)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443663, + 48.861683 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048K", + "ref": "", + "name": "Metropolis - Express - Montreuil - Franklin (30)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443663, + 48.861683 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048K", + "ref": "", + "name": "Metropolis - Express - Montreuil - Franklin (30)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.437502, + 48.857057 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048J", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Rue de Vincennes", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.437502, + 48.857057 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048J", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Rue de Vincennes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.437502, + 48.857057 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048J", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Rue de Vincennes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.437502, + 48.857057 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048J", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Rue de Vincennes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.437502, + 48.857057 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048J", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Rue de Vincennes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.437502, + 48.857057 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048J", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Rue de Vincennes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.437502, + 48.857057 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048J", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Rue de Vincennes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.455554, + 48.876462 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048I", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Léo Lagrange", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.455554, + 48.876462 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048I", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Léo Lagrange", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.455554, + 48.876462 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048I", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Léo Lagrange", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431605, + 48.85819 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048B", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Désiré Préaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431605, + 48.85819 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048B", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Désiré Préaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431605, + 48.85819 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048B", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Désiré Préaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32986937, + 48.94929234 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031D", + "ref": "", + "name": "Metropolis - Citadine - Epinay-sur-Seine - Foch", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-13", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32986937, + 48.94929234 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031D", + "ref": "", + "name": "Metropolis - Citadine - Epinay-sur-Seine - Foch", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-13", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32986937, + 48.94929234 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031D", + "ref": "", + "name": "Metropolis - Citadine - Epinay-sur-Seine - Foch", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-13", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32608577, + 48.95828488 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031C", + "ref": "", + "name": "Metropolis - Proximité - Epinay-sur-Seine - Avenir", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32608577, + 48.95828488 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031C", + "ref": "", + "name": "Metropolis - Proximité - Epinay-sur-Seine - Avenir", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32608577, + 48.95828488 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031C", + "ref": "", + "name": "Metropolis - Proximité - Epinay-sur-Seine - Avenir", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32608577, + 48.95828488 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031C", + "ref": "", + "name": "Metropolis - Proximité - Epinay-sur-Seine - Avenir", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32608577, + 48.95828488 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031C", + "ref": "", + "name": "Metropolis - Proximité - Epinay-sur-Seine - Avenir", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32608577, + 48.95828488 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031C", + "ref": "", + "name": "Metropolis - Proximité - Epinay-sur-Seine - Avenir", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29162062, + 48.95992322 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031B", + "ref": "", + "name": "Metropolis - Proximité - Epinay-sur-Seine - Route d'Argenteuil", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29162062, + 48.95992322 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031B", + "ref": "", + "name": "Metropolis - Proximité - Epinay-sur-Seine - Route d'Argenteuil", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29162062, + 48.95992322 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031B", + "ref": "", + "name": "Metropolis - Proximité - Epinay-sur-Seine - Route d'Argenteuil", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29162062, + 48.95992322 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031B", + "ref": "", + "name": "Metropolis - Proximité - Epinay-sur-Seine - Route d'Argenteuil", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29162062, + 48.95992322 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031B", + "ref": "", + "name": "Metropolis - Proximité - Epinay-sur-Seine - Route d'Argenteuil", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29162062, + 48.95992322 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031B", + "ref": "", + "name": "Metropolis - Proximité - Epinay-sur-Seine - Route d'Argenteuil", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30625586, + 48.96022052 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031A", + "ref": "", + "name": "Metropolis - Proximité - Epinay-sur-Seine - Fitzelin", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30625586, + 48.96022052 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031A", + "ref": "", + "name": "Metropolis - Proximité - Epinay-sur-Seine - Fitzelin", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30625586, + 48.96022052 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031A", + "ref": "", + "name": "Metropolis - Proximité - Epinay-sur-Seine - Fitzelin", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30625586, + 48.96022052 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031A", + "ref": "", + "name": "Metropolis - Proximité - Epinay-sur-Seine - Fitzelin", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30625586, + 48.96022052 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031A", + "ref": "", + "name": "Metropolis - Proximité - Epinay-sur-Seine - Fitzelin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.416538, + 48.954492 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93030A", + "ref": "", + "name": "Metropolis - Citadine - Dugny - Gabriel Péri", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.416538, + 48.954492 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93030A", + "ref": "", + "name": "Metropolis - Citadine - Dugny - Gabriel Péri", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.416538, + 48.954492 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93030A", + "ref": "", + "name": "Metropolis - Citadine - Dugny - Gabriel Péri", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.416538, + 48.954492 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93030A", + "ref": "", + "name": "Metropolis - Citadine - Dugny - Gabriel Péri", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32986937, + 48.94929234 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031D", + "ref": "", + "name": "Metropolis - Citadine - Epinay-sur-Seine - Foch", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-13", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32986937, + 48.94929234 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93031D", + "ref": "", + "name": "Metropolis - Citadine - Epinay-sur-Seine - Foch", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-13", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431605, + 48.85819 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048B", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Désiré Préaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.575541, + 48.862919 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93033A", + "ref": "", + "name": "Metropolis - Citadine - Gournay-sur-Marne - Près de Noisy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431605, + 48.85819 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048B", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Désiré Préaux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431605, + 48.85819 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048B", + "ref": "", + "name": "Metropolis - Proximité - Montreuil - Désiré Préaux", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443715, + 48.86173 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048A", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Franklin (18)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443715, + 48.86173 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048A", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Franklin (18)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443715, + 48.86173 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048A", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Franklin (18)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443715, + 48.86173 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048A", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Franklin (18)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443715, + 48.86173 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048A", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Franklin (18)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443715, + 48.86173 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048A", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Franklin (18)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443715, + 48.86173 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93048A", + "ref": "", + "name": "Metropolis - Citadine - Montreuil - Franklin (18)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548643, + 48.927719 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93046A", + "ref": "", + "name": "Metropolis - Express - Livry-Gargan - Robert Schuman", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548643, + 48.927719 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93046A", + "ref": "", + "name": "Metropolis - Express - Livry-Gargan - Robert Schuman", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548643, + 48.927719 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93046A", + "ref": "", + "name": "Metropolis - Express - Livry-Gargan - Robert Schuman", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548643, + 48.927719 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93046A", + "ref": "", + "name": "Metropolis - Express - Livry-Gargan - Robert Schuman", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548643, + 48.927719 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93046A", + "ref": "", + "name": "Metropolis - Express - Livry-Gargan - Robert Schuman", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.338949, + 48.937207 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93039A", + "ref": "", + "name": "Metropolis - Citadine - L'Ile-Saint-Denis - Libération", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.338949, + 48.937207 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93039A", + "ref": "", + "name": "Metropolis - Citadine - L'Ile-Saint-Denis - Libération", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.338949, + 48.937207 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93039A", + "ref": "", + "name": "Metropolis - Citadine - L'Ile-Saint-Denis - Libération", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.338949, + 48.937207 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93039A", + "ref": "", + "name": "Metropolis - Citadine - L'Ile-Saint-Denis - Libération", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.338949, + 48.937207 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93039A", + "ref": "", + "name": "Metropolis - Citadine - L'Ile-Saint-Denis - Libération", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.575541, + 48.862919 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93033A", + "ref": "", + "name": "Metropolis - Citadine - Gournay-sur-Marne - Près de Noisy", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.575541, + 48.862919 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93033A", + "ref": "", + "name": "Metropolis - Citadine - Gournay-sur-Marne - Près de Noisy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.575541, + 48.862919 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93033A", + "ref": "", + "name": "Metropolis - Citadine - Gournay-sur-Marne - Près de Noisy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.575541, + 48.862919 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93033A", + "ref": "", + "name": "Metropolis - Citadine - Gournay-sur-Marne - Près de Noisy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-30", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50413376, + 48.86155006 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049A", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-Plaisance - République", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51122517, + 48.85580614 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049B", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-Plaisance - Chanzy", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33154888, + 48.90712198 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070C", + "ref": "", + "name": "Metropolis - Proximité - Saint-Ouen-sur-Seine - Louis Blanc", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-19", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364529, + 48.907347 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066B", + "ref": "", + "name": "Metropolis - Express - Saint-Denis - Georges Sand", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361115, + 48.93883 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066D", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Félix Faure", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361115, + 48.93883 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066D", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Félix Faure", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361115, + 48.93883 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066D", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Félix Faure", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361115, + 48.93883 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066D", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Félix Faure", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361115, + 48.93883 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066D", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Félix Faure", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364454, + 48.925114 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066C", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Jesse Owens", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364454, + 48.925114 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066C", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Jesse Owens", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364454, + 48.925114 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066C", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Jesse Owens", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364454, + 48.925114 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066C", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Jesse Owens", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364454, + 48.925114 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066C", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Jesse Owens", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-03", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364529, + 48.907347 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066B", + "ref": "", + "name": "Metropolis - Express - Saint-Denis - Georges Sand", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364529, + 48.907347 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066B", + "ref": "", + "name": "Metropolis - Express - Saint-Denis - Georges Sand", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51122517, + 48.85580614 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049B", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-Plaisance - Chanzy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364529, + 48.907347 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066B", + "ref": "", + "name": "Metropolis - Express - Saint-Denis - Georges Sand", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364529, + 48.907347 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066B", + "ref": "", + "name": "Metropolis - Express - Saint-Denis - Georges Sand", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352423, + 48.917798 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066A", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Cheminots", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352423, + 48.917798 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066A", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Cheminots", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352423, + 48.917798 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066A", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Cheminots", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352423, + 48.917798 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066A", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Cheminots", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352423, + 48.917798 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066A", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Cheminots", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-24", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93063C", + "ref": "", + "name": "Metropolis - Citadine - Romainville - Paul Vaillant Couturier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93063C", + "ref": "", + "name": "Metropolis - Citadine - Romainville - Paul Vaillant Couturier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93063C", + "ref": "", + "name": "Metropolis - Citadine - Romainville - Paul Vaillant Couturier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93063C", + "ref": "", + "name": "Metropolis - Citadine - Romainville - Paul Vaillant Couturier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383218, + 48.942317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066E", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Promenade Basilique", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383218, + 48.942317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066E", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Promenade Basilique", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383218, + 48.942317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066E", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Promenade Basilique", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383218, + 48.942317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066E", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Promenade Basilique", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32102156, + 48.90586201 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Dulcie September", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32102156, + 48.90586201 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Dulcie September", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32102156, + 48.90586201 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Dulcie September", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32102156, + 48.90586201 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Dulcie September", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32102156, + 48.90586201 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Dulcie September", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32102156, + 48.90586201 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Dulcie September", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32102156, + 48.90586201 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Ouen-sur-Seine - Dulcie September", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34675284, + 48.9032182 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070A", + "ref": "", + "name": "Metropolis - Proximité - Saint-Ouen-sur-Seine - Entrepôts", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34675284, + 48.9032182 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070A", + "ref": "", + "name": "Metropolis - Proximité - Saint-Ouen-sur-Seine - Entrepôts", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34675284, + 48.9032182 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070A", + "ref": "", + "name": "Metropolis - Proximité - Saint-Ouen-sur-Seine - Entrepôts", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34675284, + 48.9032182 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070A", + "ref": "", + "name": "Metropolis - Proximité - Saint-Ouen-sur-Seine - Entrepôts", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34675284, + 48.9032182 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93070A", + "ref": "", + "name": "Metropolis - Proximité - Saint-Ouen-sur-Seine - Entrepôts", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35408, + 48.947939 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066G", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - 19 mars 1962", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-26", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35408, + 48.947939 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066G", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - 19 mars 1962", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-26", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35408, + 48.947939 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066G", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - 19 mars 1962", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-26", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35408, + 48.947939 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066G", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - 19 mars 1962", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-26", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35408, + 48.947939 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066G", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - 19 mars 1962", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-26", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.362287, + 48.921283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066F", + "ref": "", + "name": "Metropolis - Express - Saint-Denis - Cokerie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.362287, + 48.921283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066F", + "ref": "", + "name": "Metropolis - Express - Saint-Denis - Cokerie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.362287, + 48.921283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066F", + "ref": "", + "name": "Metropolis - Express - Saint-Denis - Cokerie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.362287, + 48.921283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066F", + "ref": "", + "name": "Metropolis - Express - Saint-Denis - Cokerie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.362287, + 48.921283 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066F", + "ref": "", + "name": "Metropolis - Express - Saint-Denis - Cokerie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-16", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383218, + 48.942317 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93066E", + "ref": "", + "name": "Metropolis - Citadine - Saint-Denis - Promenade Basilique", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-20", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93063C", + "ref": "", + "name": "Metropolis - Citadine - Romainville - Paul Vaillant Couturier", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93063B", + "ref": "", + "name": "Metropolis - Citadine - Romainville - Commune de Paris", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93063B", + "ref": "", + "name": "Metropolis - Citadine - Romainville - Commune de Paris", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.520487, + 48.854488 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93050B", + "ref": "", + "name": "Metropolis - Express - Neuilly-sur-Marne - Aristide Briand", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529547, + 48.856893 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93050A", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-sur-Marne - François Mitterrand", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529547, + 48.856893 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93050A", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-sur-Marne - François Mitterrand", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529547, + 48.856893 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93050A", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-sur-Marne - François Mitterrand", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529547, + 48.856893 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93050A", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-sur-Marne - François Mitterrand", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529547, + 48.856893 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93050A", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-sur-Marne - François Mitterrand", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529547, + 48.856893 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93050A", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-sur-Marne - François Mitterrand", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51108902, + 48.87290298 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049D", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-Plaisance - Stalingrad", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51108902, + 48.87290298 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049D", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-Plaisance - Stalingrad", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51108902, + 48.87290298 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049D", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-Plaisance - Stalingrad", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51108902, + 48.87290298 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049D", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-Plaisance - Stalingrad", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51108902, + 48.87290298 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049D", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-Plaisance - Stalingrad", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51108902, + 48.87290298 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049D", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-Plaisance - Stalingrad", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-22", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51480745, + 48.85208486 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049C", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-Plaisance - Cézanne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51480745, + 48.85208486 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049C", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-Plaisance - Cézanne", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51480745, + 48.85208486 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049C", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-Plaisance - Cézanne", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51480745, + 48.85208486 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049C", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-Plaisance - Cézanne", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51480745, + 48.85208486 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049C", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-Plaisance - Cézanne", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51480745, + 48.85208486 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049C", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-Plaisance - Cézanne", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51480745, + 48.85208486 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049C", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-Plaisance - Cézanne", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51122517, + 48.85580614 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049B", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-Plaisance - Chanzy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51122517, + 48.85580614 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049B", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-Plaisance - Chanzy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51122517, + 48.85580614 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049B", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-Plaisance - Chanzy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51122517, + 48.85580614 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93049B", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-Plaisance - Chanzy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529547, + 48.856893 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93050A", + "ref": "", + "name": "Metropolis - Citadine - Neuilly-sur-Marne - François Mitterrand", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-06", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.520487, + 48.854488 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93050B", + "ref": "", + "name": "Metropolis - Express - Neuilly-sur-Marne - Aristide Briand", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93063B", + "ref": "", + "name": "Metropolis - Citadine - Romainville - Commune de Paris", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.520487, + 48.854488 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93050B", + "ref": "", + "name": "Metropolis - Express - Neuilly-sur-Marne - Aristide Briand", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93063B", + "ref": "", + "name": "Metropolis - Citadine - Romainville - Commune de Paris", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93063B", + "ref": "", + "name": "Metropolis - Citadine - Romainville - Commune de Paris", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44475, + 48.878112 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93063A", + "ref": "", + "name": "Metropolis - Proximité - Romainville - Marcel Ethis", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44475, + 48.878112 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93063A", + "ref": "", + "name": "Metropolis - Proximité - Romainville - Marcel Ethis", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44475, + 48.878112 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93063A", + "ref": "", + "name": "Metropolis - Proximité - Romainville - Marcel Ethis", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44475, + 48.878112 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93063A", + "ref": "", + "name": "Metropolis - Proximité - Romainville - Marcel Ethis", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371155, + 48.964743 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93059C", + "ref": "", + "name": "Metropolis - Citadine - Pierrefitte-sur-Seine - Général de Gaulle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371155, + 48.964743 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93059C", + "ref": "", + "name": "Metropolis - Citadine - Pierrefitte-sur-Seine - Général de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371155, + 48.964743 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93059C", + "ref": "", + "name": "Metropolis - Citadine - Pierrefitte-sur-Seine - Général de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371155, + 48.964743 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93059C", + "ref": "", + "name": "Metropolis - Citadine - Pierrefitte-sur-Seine - Général de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371155, + 48.964743 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93059C", + "ref": "", + "name": "Metropolis - Citadine - Pierrefitte-sur-Seine - Général de Gaulle", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361983, + 48.963039 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93059B", + "ref": "", + "name": "Metropolis - Citadine - Pierrefitte-sur-Seine - Salvador Allende", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361983, + 48.963039 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93059B", + "ref": "", + "name": "Metropolis - Citadine - Pierrefitte-sur-Seine - Salvador Allende", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361983, + 48.963039 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93059B", + "ref": "", + "name": "Metropolis - Citadine - Pierrefitte-sur-Seine - Salvador Allende", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361983, + 48.963039 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93059B", + "ref": "", + "name": "Metropolis - Citadine - Pierrefitte-sur-Seine - Salvador Allende", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361983, + 48.963039 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93059B", + "ref": "", + "name": "Metropolis - Citadine - Pierrefitte-sur-Seine - Salvador Allende", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-27", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35897, + 48.963355 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93059A", + "ref": "", + "name": "Metropolis - Express - Pierrefitte-sur-Seine - Gabriel Péri", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-31", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35897, + 48.963355 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93059A", + "ref": "", + "name": "Metropolis - Express - Pierrefitte-sur-Seine - Gabriel Péri", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-31", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35897, + 48.963355 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93059A", + "ref": "", + "name": "Metropolis - Express - Pierrefitte-sur-Seine - Gabriel Péri", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-31", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35897, + 48.963355 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93059A", + "ref": "", + "name": "Metropolis - Express - Pierrefitte-sur-Seine - Gabriel Péri", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-31", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35897, + 48.963355 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93059A", + "ref": "", + "name": "Metropolis - Express - Pierrefitte-sur-Seine - Gabriel Péri", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-31", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.520487, + 48.854488 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93050B", + "ref": "", + "name": "Metropolis - Express - Neuilly-sur-Marne - Aristide Briand", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.520487, + 48.854488 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP93050B", + "ref": "", + "name": "Metropolis - Express - Neuilly-sur-Marne - Aristide Briand", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4596527, + 48.8142151 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP94069B", + "ref": "", + "name": "Metropolis - Citadine - Saint-Maurice - Jean Renoir", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-12", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270181, + 48.878919 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "ref:EU:EVSE": "FRMGPP92051U", + "ref": "", + "name": "Metropolis - Proximité - Neuilly-sur-Seine - Maurice Barrès", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-29", + "note": "", + "source:date": "2023-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.827864, + 50.696382 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "SERITUDE", + "ref:EU:EVSE": "Non concerné", + "ref": "01F855VN9PNYHVV4G2PVR0JSGV", + "name": "Sertitude", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-16", + "note": "", + "source:date": "2021-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.523605738717589, + 46.086405764520606 + ] + }, + "properties": { + "operator": "SAS Sabo", + "owner:ref:FR:SIREN": "399171545", + "email": "romainmarcon@outlook.fr", + "phone": "0450345512", + "network": "Intermarché", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Intermarché Thyez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-11", + "note": "Badge RFID à demander à l'accueil du magasin", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.242799, + 49.120583 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP514", + "ref": "FR*55C*PBP*51400*CHAMPAGNES", + "name": "BP CHAMPAGNE SUD - LES PETITES-LOGES - 69800", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9732, + 45.52667 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP738", + "ref": "FR*55C*PBP*73800*GRAN1ER", + "name": "BP - AIRE DU GRANIER - MYANS - 73800", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255335, + 48.786899 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*FERRAR1", + "name": "HOPITAL BECLERE - AVENUE DE GAULLE - CLAMART", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255335, + 48.786899 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*FERRAR1", + "name": "HOPITAL BECLERE - AVENUE DE GAULLE - CLAMART", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255335, + 48.786899 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*FERRAR1", + "name": "HOPITAL BECLERE - AVENUE DE GAULLE - CLAMART", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9732, + 45.52667 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP738", + "ref": "FR*55C*PBP*73800*GRAN1ER", + "name": "BP - AIRE DU GRANIER - MYANS - 73800", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9732, + 45.52667 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP738", + "ref": "FR*55C*PBP*73800*GRAN1ER", + "name": "BP - AIRE DU GRANIER - MYANS - 73800", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.796913, + 43.952673 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*BARTHELASSE", + "name": "BARTHELASSE - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.796913, + 43.952673 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*BARTHELASSE", + "name": "BARTHELASSE - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255335, + 48.786899 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*FERRAR1", + "name": "HOPITAL BECLERE - AVENUE DE GAULLE - CLAMART", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.181023, + 48.348536 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPRNO35", + "ref": "FR*55C*PRNO*35300*F0UGERES", + "name": "RENAULT DEALER - FOUGERES", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.181023, + 48.348536 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPRNO35", + "ref": "FR*55C*PRNO*35300*F0UGERES", + "name": "RENAULT DEALER - FOUGERES", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267296, + 48.804229 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*HUG0", + "name": "VICTOR HUGO - CLAMART", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267296, + 48.804229 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*HUG0", + "name": "VICTOR HUGO - CLAMART", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255335, + 48.786899 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*FERRAR1", + "name": "HOPITAL BECLERE - AVENUE DE GAULLE - CLAMART", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.262841, + 48.798985 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*BECLERE", + "name": "PLACE FERRARI - CLAMART", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255335, + 48.786899 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*FERRAR1", + "name": "HOPITAL BECLERE - AVENUE DE GAULLE - CLAMART", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267296, + 48.804229 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*HUG0", + "name": "VICTOR HUGO - CLAMART", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.262841, + 48.798985 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*BECLERE", + "name": "PLACE FERRARI - CLAMART", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.262841, + 48.798985 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*BECLERE", + "name": "PLACE FERRARI - CLAMART", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.262841, + 48.798985 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*BECLERE", + "name": "PLACE FERRARI - CLAMART", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.262841, + 48.798985 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*BECLERE", + "name": "PLACE FERRARI - CLAMART", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.262841, + 48.798985 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*BECLERE", + "name": "PLACE FERRARI - CLAMART", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825062, + 43.942905 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*SOLIDARITE", + "name": "MOURRE-SOLIDARITE - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825062, + 43.942905 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*SOLIDARITE", + "name": "MOURRE-SOLIDARITE - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.130067, + 43.641297 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55C06270V", + "ref": "FR*55C*P06270*VNL*COOLWORK", + "name": "COOLWORK - VILLENEUVE-LOUBET ", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.130067, + 43.641297 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55C06270V", + "ref": "FR*55C*P06270*VNL*COOLWORK", + "name": "COOLWORK - VILLENEUVE-LOUBET ", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.130067, + 43.641297 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55C06270V", + "ref": "FR*55C*P06270*VNL*COOLWORK", + "name": "COOLWORK - VILLENEUVE-LOUBET ", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.130067, + 43.641297 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55C06270V", + "ref": "FR*55C*P06270*VNL*COOLWORK", + "name": "COOLWORK - VILLENEUVE-LOUBET ", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838556, + 43.927832 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*CAPSUD", + "name": "CAP SUD - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267296, + 48.804229 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*HUG0", + "name": "VICTOR HUGO - CLAMART", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267296, + 48.804229 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*HUG0", + "name": "VICTOR HUGO - CLAMART", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.585713, + 43.230239 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83580", + "ref": "FR*55C*P83580*GAS*TOURISME", + "name": "OFFICE DU TOURISME - GASSIN", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267296, + 48.804229 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*HUG0", + "name": "VICTOR HUGO - CLAMART", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.027168, + 43.955152 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84740", + "ref": "FR*55C*P84740*VLR*V1LLAGE", + "name": "LE VILLAGE - VELLERON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.027168, + 43.955152 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84740", + "ref": "FR*55C*P84740*VLR*V1LLAGE", + "name": "LE VILLAGE - VELLERON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.635613, + 43.256121 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83350", + "ref": "FR*55C*P83350*RAM*T0RPEZ", + "name": "DOMAINE TORPEZ - RAMATUELLE", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.635613, + 43.256121 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83350", + "ref": "FR*55C*P83350*RAM*T0RPEZ", + "name": "DOMAINE TORPEZ - RAMATUELLE", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.635613, + 43.256121 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83350", + "ref": "FR*55C*P83350*RAM*T0RPEZ", + "name": "DOMAINE TORPEZ - RAMATUELLE", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.635613, + 43.256121 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83350", + "ref": "FR*55C*P83350*RAM*T0RPEZ", + "name": "DOMAINE TORPEZ - RAMATUELLE", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267834, + 48.808019 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*JAURES", + "name": "AVENUE JEAN JAURES - CLAMART", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267834, + 48.808019 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*JAURES", + "name": "AVENUE JEAN JAURES - CLAMART", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267834, + 48.808019 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*JAURES", + "name": "AVENUE JEAN JAURES - CLAMART", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267834, + 48.808019 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*JAURES", + "name": "AVENUE JEAN JAURES - CLAMART", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.267834, + 48.808019 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*JAURES", + "name": "AVENUE JEAN JAURES - CLAMART", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.976272, + 45.526596 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP731", + "ref": "FR*55C*PBP*73190*AB1S", + "name": "BP - AIRE DE L'ABIS - SAINT-JEOIRE-PRIEURE - 73190", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.976272, + 45.526596 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP731", + "ref": "FR*55C*PBP*73190*AB1S", + "name": "BP - AIRE DE L'ABIS - SAINT-JEOIRE-PRIEURE - 73190", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.976272, + 45.526596 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP731", + "ref": "FR*55C*PBP*73190*AB1S", + "name": "BP - AIRE DE L'ABIS - SAINT-JEOIRE-PRIEURE - 73190", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.581173, + 43.276785 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*PRAIRIEGRI", + "name": "PRAIRIE DE LA MER ENTREE GRIMAUD", + "capacity": "3", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.581173, + 43.276785 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*PRAIRIEGRI", + "name": "PRAIRIE DE LA MER ENTREE GRIMAUD", + "capacity": "3", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.581173, + 43.276785 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*PRAIRIEGRI", + "name": "PRAIRIE DE LA MER ENTREE GRIMAUD", + "capacity": "3", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58115, + 43.280687 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*PRAIRIE", + "name": "PRAIRIE DE LA MER GRIMAUD", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58115, + 43.280687 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*PRAIRIE", + "name": "PRAIRIE DE LA MER GRIMAUD", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58115, + 43.280687 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*PRAIRIE", + "name": "PRAIRIE DE LA MER GRIMAUD", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58115, + 43.280687 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*PRAIRIE", + "name": "PRAIRIE DE LA MER GRIMAUD", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23637, + 48.784747 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*P0MP1D0U", + "name": "POMPIDOU - CLAMART", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23637, + 48.784747 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*P0MP1D0U", + "name": "POMPIDOU - CLAMART", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23637, + 48.784747 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*P0MP1D0U", + "name": "POMPIDOU - CLAMART", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23637, + 48.784747 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*P0MP1D0U", + "name": "POMPIDOU - CLAMART", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23637, + 48.784747 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*P0MP1D0U", + "name": "POMPIDOU - CLAMART", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23637, + 48.784747 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92140", + "ref": "FR*55C*P92140*CLM*P0MP1D0U", + "name": "POMPIDOU - CLAMART", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-19", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838556, + 43.927832 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*CAPSUD", + "name": "CAP SUD - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.585713, + 43.230239 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83580", + "ref": "FR*55C*P83580*GAS*TOURISME", + "name": "OFFICE DU TOURISME - GASSIN", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.027168, + 43.955152 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84740", + "ref": "FR*55C*P84740*VLR*V1LLAGE", + "name": "LE VILLAGE - VELLERON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.899412, + 43.940189 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84310", + "ref": "FR*55C*P84310*AVG*M0R1ERE", + "name": "AVENUE JEAN MONNET - MORIERE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.816939, + 43.942256 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*SOUL1ER", + "name": "BOULEVARD DENIS SOULIER- AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.816939, + 43.942256 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*SOUL1ER", + "name": "BOULEVARD DENIS SOULIER- AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.821979, + 43.929502 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*MA1R1ESUD", + "name": "MAIRIE SUD ROCADE - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.821979, + 43.929502 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*MA1R1ESUD", + "name": "MAIRIE SUD ROCADE - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.809387, + 43.930192 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*TARASC0N", + "name": "AVENUE TARASCON - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.809387, + 43.930192 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*TARASC0N", + "name": "AVENUE TARASCON - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.813005, + 43.928623 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*0LIVADES", + "name": "AVENUE CABRIERES OLIVADES - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.813005, + 43.928623 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*0LIVADES", + "name": "AVENUE CABRIERES OLIVADES - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.798628, + 43.937354 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*FERRY", + "name": "LABANDE FERRY - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.798628, + 43.937354 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*FERRY", + "name": "LABANDE FERRY - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.799193, + 43.929592 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*E1SENH0WER", + "name": "AVENUE EISENHOWER - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.799193, + 43.929592 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*E1SENH0WER", + "name": "AVENUE EISENHOWER - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.799193, + 43.929592 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*E1SENH0WER", + "name": "AVENUE EISENHOWER - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.799193, + 43.929592 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*E1SENH0WER", + "name": "AVENUE EISENHOWER - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.833258, + 43.952128 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*BDC0MBES", + "name": "BOULEVARD MARCEL COMBES - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.833258, + 43.952128 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*BDC0MBES", + "name": "BOULEVARD MARCEL COMBES - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876649, + 43.925813 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*RUEDEF1LLES", + "name": "RUE DES FILLES - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876649, + 43.925813 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*RUEDEF1LLES", + "name": "RUE DES FILLES - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44046, + 48.92568 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP93700", + "ref": "FR*55C*P93700*DRY*PM", + "name": "RUE SADI CARNOT - DRANCY", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44046, + 48.92568 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP93700", + "ref": "FR*55C*P93700*DRY*PM", + "name": "RUE SADI CARNOT - DRANCY", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.809693, + 43.936482 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*STRUF", + "name": "PARKING SAINT RUF - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.809693, + 43.936482 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*STRUF", + "name": "PARKING SAINT RUF - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82072, + 43.935617 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*MA1R1EN0RD", + "name": "MAIRIE NORD ROCADE - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82072, + 43.935617 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*MA1R1EN0RD", + "name": "MAIRIE NORD ROCADE - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843686, + 43.946211 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*P0NT", + "name": "PARKING PONT DES DEUX EAUX - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843686, + 43.946211 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*P0NT", + "name": "PARKING PONT DES DEUX EAUX - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843686, + 43.946211 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*P0NT", + "name": "PARKING PONT DES DEUX EAUX - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.899412, + 43.940189 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84310", + "ref": "FR*55C*P84310*AVG*M0R1ERE", + "name": "AVENUE JEAN MONNET - MORIERE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.977306, + 45.698458 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP698", + "ref": "FR*55C*PBP*69800*PR1EST", + "name": "BP MANISSIEUX - SAINT-PRIEST - 69800", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.821433, + 43.939104 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*R0T0NDE", + "name": "SEMARD ROTONDE - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.977306, + 45.698458 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP698", + "ref": "FR*55C*PBP*69800*PR1EST", + "name": "BP MANISSIEUX - SAINT-PRIEST - 69800", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.821433, + 43.939104 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*R0T0NDE", + "name": "SEMARD ROTONDE - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.796952, + 43.943149 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*MLK", + "name": "RUE MARTIN LUTHER KING - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.796952, + 43.943149 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*MLK", + "name": "RUE MARTIN LUTHER KING - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.796952, + 43.943149 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*MLK", + "name": "RUE MARTIN LUTHER KING - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.796952, + 43.943149 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*MLK", + "name": "RUE MARTIN LUTHER KING - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277903, + 48.83624 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP750", + "ref": "FR*55C*PBP*75015*PAR1S", + "name": "BP - Garigliano - 75015", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277903, + 48.83624 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP750", + "ref": "FR*55C*PBP*75015*PAR1S", + "name": "BP - Garigliano - 75015", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277903, + 48.83624 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP750", + "ref": "FR*55C*PBP*75015*PAR1S", + "name": "BP - Garigliano - 75015", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.660772, + 49.132656 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP577", + "ref": "FR*55C*PBP*57740*LONGEV1LLE", + "name": "BP - LONGEVILLE - 57740", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.660772, + 49.132656 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP577", + "ref": "FR*55C*PBP*57740*LONGEV1LLE", + "name": "BP - LONGEVILLE - 57740", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.660772, + 49.132656 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP577", + "ref": "FR*55C*PBP*57740*LONGEV1LLE", + "name": "BP - LONGEVILLE - 57740", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.242644, + 49.120556 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP514", + "ref": "FR*55C*PBP*51400*CHAMPAGNEN", + "name": "BP CHAMPAGNE NORD - LES PETITES-LOGES - 69800", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.242644, + 49.120556 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP514", + "ref": "FR*55C*PBP*51400*CHAMPAGNEN", + "name": "BP CHAMPAGNE NORD - LES PETITES-LOGES - 69800", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.242644, + 49.120556 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP514", + "ref": "FR*55C*PBP*51400*CHAMPAGNEN", + "name": "BP CHAMPAGNE NORD - LES PETITES-LOGES - 69800", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.242799, + 49.120583 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP514", + "ref": "FR*55C*PBP*51400*CHAMPAGNES", + "name": "BP CHAMPAGNE SUD - LES PETITES-LOGES - 69800", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.242799, + 49.120583 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP514", + "ref": "FR*55C*PBP*51400*CHAMPAGNES", + "name": "BP CHAMPAGNE SUD - LES PETITES-LOGES - 69800", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.186172, + 48.838071 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*PLGARE", + "name": "PLACE DE LA GARE - GARCHES", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.974066, + 45.698131 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP698", + "ref": "FR*55C*PBP*69800*PR1EST2", + "name": "BP - SAINT-PRIEST - 69800", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.974066, + 45.698131 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP698", + "ref": "FR*55C*PBP*69800*PR1EST2", + "name": "BP - SAINT-PRIEST - 69800", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.974066, + 45.698131 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP698", + "ref": "FR*55C*PBP*69800*PR1EST2", + "name": "BP - SAINT-PRIEST - 69800", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.490811, + 47.500239 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP494", + "ref": "FR*55C*PBP*49480*ANJOU", + "name": "BP - SAINT-SYLVAIN-D'ANJOU - 49480", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.490811, + 47.500239 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP494", + "ref": "FR*55C*PBP*49480*ANJOU", + "name": "BP - SAINT-SYLVAIN-D'ANJOU - 49480", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.490811, + 47.500239 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP494", + "ref": "FR*55C*PBP*49480*ANJOU", + "name": "BP - SAINT-SYLVAIN-D'ANJOU - 49480", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0833, + 48.240665 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP281", + "ref": "FR*55C*PBP*28160*DAMP1ERRE", + "name": "BP FRAZE - MANOIR DU PERCHE - DAMPIERRE-SOUS-BROU - 28160", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0833, + 48.240665 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP281", + "ref": "FR*55C*PBP*28160*DAMP1ERRE", + "name": "BP FRAZE - MANOIR DU PERCHE - DAMPIERRE-SOUS-BROU - 28160", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0833, + 48.240665 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP281", + "ref": "FR*55C*PBP*28160*DAMP1ERRE", + "name": "BP FRAZE - MANOIR DU PERCHE - DAMPIERRE-SOUS-BROU - 28160", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.977306, + 45.698458 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP698", + "ref": "FR*55C*PBP*69800*PR1EST", + "name": "BP MANISSIEUX - SAINT-PRIEST - 69800", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.027168, + 43.955152 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84740", + "ref": "FR*55C*P84740*VLR*V1LLAGE", + "name": "LE VILLAGE - VELLERON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82889, + 45.275643 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP261", + "ref": "FR*55C*PBP*26140*RAMBERT", + "name": "SAINT-RAMBERT-D'ALBON", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82889, + 45.275643 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP261", + "ref": "FR*55C*PBP*26140*RAMBERT", + "name": "SAINT-RAMBERT-D'ALBON", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.431965, + 44.97493 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP33240", + "ref": "FR*55C*PBP*33240*ME1LLAC", + "name": "BP - AIRE DE MEILLAC - 33240", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-26", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.197545, + 48.847349 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*SURESNES", + "name": "RUE DE SURESNES - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-12", + "note": "", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.597037, + 44.86645 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP33110", + "ref": "FR*55C*P33110*BCT*LAF0NT", + "name": "PARKING LAFONT - LE BOUSCAT", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-22", + "note": "", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.597037, + 44.86645 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP33110", + "ref": "FR*55C*P33110*BCT*LAF0NT", + "name": "PARKING LAFONT - LE BOUSCAT", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-22", + "note": "", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.597037, + 44.86645 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP33110", + "ref": "FR*55C*P33110*BCT*LAF0NT", + "name": "PARKING LAFONT - LE BOUSCAT", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-22", + "note": "", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.597037, + 44.86645 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP33110", + "ref": "FR*55C*P33110*BCT*LAF0NT", + "name": "PARKING LAFONT - LE BOUSCAT", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-22", + "note": "", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.464987, + 43.160329 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CEFR83820", + "ref": "FR*55C*P83820*RCM*CANADEL1A", + "name": "PARKING CANADELIA - RAYOL", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-18", + "note": "", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.464987, + 43.160329 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CEFR83820", + "ref": "FR*55C*P83820*RCM*CANADEL1A", + "name": "PARKING CANADELIA - RAYOL", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-18", + "note": "", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.294772, + 43.535968 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP13122", + "ref": "FR*55C*P13122*VTB*PLATEAU", + "name": "PLATEAU - VENTABREN", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-03", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.302399, + 43.538529 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP13122", + "ref": "FR*55C*P13122*VTB*EC0LE", + "name": "ECOLE - VENTABREN", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-03", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.302399, + 43.538529 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP13122", + "ref": "FR*55C*P13122*VTB*EC0LE", + "name": "ECOLE - VENTABREN", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-03", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.431965, + 44.97493 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP33240", + "ref": "FR*55C*PBP*33240*ME1LLAC", + "name": "BP - AIRE DE MEILLAC - 33240", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-26", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.431965, + 44.97493 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP33240", + "ref": "FR*55C*PBP*33240*ME1LLAC", + "name": "BP - AIRE DE MEILLAC - 33240", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-26", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.431965, + 44.97493 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP33240", + "ref": "FR*55C*PBP*33240*ME1LLAC", + "name": "BP - AIRE DE MEILLAC - 33240", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-26", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.431965, + 44.97493 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP33240", + "ref": "FR*55C*PBP*33240*ME1LLAC", + "name": "BP - AIRE DE MEILLAC - 33240", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-26", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.805081, + 43.936094 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*MONCLAR", + "name": "MONCLAR - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.431965, + 44.97493 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP33240", + "ref": "FR*55C*PBP*33240*ME1LLAC", + "name": "BP - AIRE DE MEILLAC - 33240", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-26", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58432, + 43.28033 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*PRAIRIEVIS", + "name": "PRAIRIE DE LA MER PARKING CLIENTS - GRIMAUD", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-26", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.659943, + 43.220607 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83350", + "ref": "FR*55C*P83350*RAM*N1KK1", + "name": "NIKKI BEACH - RAMATUELLE", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.592279, + 43.283508 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*MURESPLA", + "name": "CAMPING DES MURES PLAGE - GRIMAUD", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.585656, + 43.284265 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*MURESPRE", + "name": "CAMPING DES MURES PRESTIGE - GRIMAUD", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9732, + 45.52667 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP73800", + "ref": "FR*55C*PBP*73800*GRAN1ER", + "name": "BP - AIRE DU GRANIER - MYANS - 73800", + "capacity": "8", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9732, + 45.52667 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP73800", + "ref": "FR*55C*PBP*73800*GRAN1ER", + "name": "BP - AIRE DU GRANIER - MYANS - 73800", + "capacity": "8", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9732, + 45.52667 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP73800", + "ref": "FR*55C*PBP*73800*GRAN1ER", + "name": "BP - AIRE DU GRANIER - MYANS - 73800", + "capacity": "8", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9732, + 45.52667 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP73800", + "ref": "FR*55C*PBP*73800*GRAN1ER", + "name": "BP - AIRE DU GRANIER - MYANS - 73800", + "capacity": "8", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9732, + 45.52667 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP73800", + "ref": "FR*55C*PBP*73800*GRAN1ER", + "name": "BP - AIRE DU GRANIER - MYANS - 73800", + "capacity": "8", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9732, + 45.52667 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP73800", + "ref": "FR*55C*PBP*73800*GRAN1ER", + "name": "BP - AIRE DU GRANIER - MYANS - 73800", + "capacity": "8", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9732, + 45.52667 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP73800", + "ref": "FR*55C*PBP*73800*GRAN1ER", + "name": "BP - AIRE DU GRANIER - MYANS - 73800", + "capacity": "8", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.197545, + 48.847349 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*SURESNES", + "name": "RUE DE SURESNES - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-12", + "note": "", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.197545, + 48.847349 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*SURESNES", + "name": "RUE DE SURESNES - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-12", + "note": "", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.186539, + 48.844752 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*DEV0S", + "name": "PLACE DEVOS - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.186539, + 48.844752 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*DEV0S", + "name": "PLACE DEVOS - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.186172, + 48.838071 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*PLGARE", + "name": "PLACE DE LA GARE - GARCHES", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.198811, + 48.842788 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*GRANDERUE", + "name": "GRANDE RUE - GARCHES", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.198811, + 48.842788 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*GRANDERUE", + "name": "GRANDE RUE - GARCHES", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.198811, + 48.842788 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*GRANDERUE", + "name": "GRANDE RUE - GARCHES", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.198811, + 48.842788 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*GRANDERUE", + "name": "GRANDE RUE - GARCHES", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.64588, + 43.221173 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83350", + "ref": "FR*55C*P83350*RAM*SELLETTES", + "name": "LES SELLETTES - RAMATUELLE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.64588, + 43.221173 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83350", + "ref": "FR*55C*P83350*RAM*SELLETTES", + "name": "LES SELLETTES - RAMATUELLE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1973, + 48.85195 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*DEBAT", + "name": "RUE DU DOCTEUR DEBAT - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1973, + 48.85195 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*DEBAT", + "name": "RUE DU DOCTEUR DEBAT - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1973, + 48.85195 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*DEBAT", + "name": "RUE DU DOCTEUR DEBAT - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.896984, + 43.986445 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84270", + "ref": "FR*55C*P84270*VDN*EGU1LLES", + "name": "AVENUE DE L'EGUILLE - VEDENE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.896984, + 43.986445 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84270", + "ref": "FR*55C*P84270*VDN*EGU1LLES", + "name": "AVENUE DE L'EGUILLE - VEDENE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.907248, + 43.979318 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84270", + "ref": "FR*55C*P84270*VDN*P0NT", + "name": "PLACE DU PETIT PONT - VEDENE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.907248, + 43.979318 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84270", + "ref": "FR*55C*P84270*VDN*P0NT", + "name": "PLACE DU PETIT PONT - VEDENE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19756, + 48.85446 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*SU1SSES", + "name": "RUE DES SUISSES - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19756, + 48.85446 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*SU1SSES", + "name": "RUE DES SUISSES - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19756, + 48.85446 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*SU1SSES", + "name": "RUE DES SUISSES - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.200763, + 48.849002 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*JAUNE", + "name": "PARKING DU 19 JANVIER - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.200763, + 48.849002 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*JAUNE", + "name": "PARKING DU 19 JANVIER - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.200763, + 48.849002 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*JAUNE", + "name": "PARKING DU 19 JANVIER - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.193663, + 48.846928 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*C1MET1ERE", + "name": "PLACE DU CIMETIERE - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.193663, + 48.846928 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*C1MET1ERE", + "name": "PLACE DU CIMETIERE - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.193663, + 48.846928 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*C1MET1ERE", + "name": "PLACE DU CIMETIERE - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181516, + 48.840924 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*PASTEUR", + "name": "RUE PASTEUR - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181516, + 48.840924 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*PASTEUR", + "name": "RUE PASTEUR - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181516, + 48.840924 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*PASTEUR", + "name": "RUE PASTEUR - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.186539, + 48.844752 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*DEV0S", + "name": "PLACE DEVOS - GARCHES", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9732, + 45.52667 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP73800", + "ref": "FR*55C*PBP*73800*GRAN1ER", + "name": "BP - AIRE DU GRANIER - MYANS - 73800", + "capacity": "8", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.976272, + 45.526596 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP73190", + "ref": "FR*55C*PBP*73190*AB1S", + "name": "BP - AIRE DE L'ABIS SAINT-JEOIRE-PRIEURE - 73190", + "capacity": "8", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.976272, + 45.526596 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP73190", + "ref": "FR*55C*PBP*73190*AB1S", + "name": "BP - AIRE DE L'ABIS SAINT-JEOIRE-PRIEURE - 73190", + "capacity": "8", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.287036, + 48.790756 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92260", + "ref": "FR*55C*P92260*FAR*JAURES", + "name": "RUE JEAN JAURES - FONTENAY-AUX-ROSES", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.287036, + 48.790756 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92260", + "ref": "FR*55C*P92260*FAR*JAURES", + "name": "RUE JEAN JAURES - FONTENAY-AUX-ROSES", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.287036, + 48.790756 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92260", + "ref": "FR*55C*P92260*FAR*JAURES", + "name": "RUE JEAN JAURES - FONTENAY-AUX-ROSES", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.90471, + 43.942662 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84310", + "ref": "FR*55C*P84310*MOR*VITRIA", + "name": "PLACE EMMANUEL VITRIA - MORIERE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-28", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.90471, + 43.942662 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84310", + "ref": "FR*55C*P84310*MOR*VITRIA", + "name": "PLACE EMMANUEL VITRIA - MORIERE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-28", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274352, + 48.795044 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92320", + "ref": "FR*55C*P92320*FAR*LECLERC", + "name": "AVENUE DE LA DIVISION LECLERC - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274352, + 48.795044 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92320", + "ref": "FR*55C*P92320*FAR*LECLERC", + "name": "AVENUE DE LA DIVISION LECLERC - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274352, + 48.795044 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92320", + "ref": "FR*55C*P92320*FAR*LECLERC", + "name": "AVENUE DE LA DIVISION LECLERC - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274352, + 48.795044 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92320", + "ref": "FR*55C*P92320*FAR*LECLERC", + "name": "AVENUE DE LA DIVISION LECLERC - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274352, + 48.795044 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92320", + "ref": "FR*55C*P92320*FAR*LECLERC", + "name": "AVENUE DE LA DIVISION LECLERC - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274352, + 48.795044 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92320", + "ref": "FR*55C*P92320*FAR*LECLERC", + "name": "AVENUE DE LA DIVISION LECLERC - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.190194, + 48.782472 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CEFR781", + "ref": "FR*55C*P78140*VLZ*TARRON", + "name": "CAPITAINE TARRON - VELIZY-VILLACOUBLAY", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.190194, + 48.782472 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CEFR781", + "ref": "FR*55C*P78140*VLZ*TARRON", + "name": "CAPITAINE TARRON - VELIZY-VILLACOUBLAY", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.190194, + 48.782472 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CEFR781", + "ref": "FR*55C*P78140*VLZ*TARRON", + "name": "CAPITAINE TARRON - VELIZY-VILLACOUBLAY", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.190194, + 48.782472 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CE78140", + "ref": "FR*55C*P78140*VLZ*TARRON", + "name": "CAPITAINE TARRON - VELIZY-VILLACOUBLAY", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.691184, + 48.724352 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CEFR671", + "ref": "FR*55C*PBP*67170*BRUMATH", + "name": "BP - BRUMATH - 67170", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.691184, + 48.724352 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CEFR671", + "ref": "FR*55C*PBP*67170*BRUMATH", + "name": "BP - BRUMATH - 67170", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.691184, + 48.724352 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CEFR671", + "ref": "FR*55C*PBP*67170*BRUMATH", + "name": "BP - BRUMATH - 67170", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.926161, + 47.665194 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP416", + "ref": "FR*55C*PBP*41600*CHAUM0NT", + "name": "CHAUONT SUR THARONNE", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.926161, + 47.665194 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP416", + "ref": "FR*55C*PBP*41600*CHAUM0NT", + "name": "CHAUONT SUR THARONNE", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.926161, + 47.665194 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP416", + "ref": "FR*55C*PBP*41600*CHAUM0NT", + "name": "CHAUONT SUR THARONNE", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.683721, + 47.862233 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPRNO35", + "ref": "FR*55C*PRNO*35470*BA1N", + "name": "RENAULT DEALER - BAIN DE BRETAGNE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.683721, + 47.862233 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPRNO35", + "ref": "FR*55C*PRNO*35470*BA1N", + "name": "RENAULT DEALER - BAIN DE BRETAGNE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.871245, + 43.934998 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84140", + "ref": "FR*55C*P84140*AVG*PAR01SS1ENS", + "name": "MONTFAVET PAROISSIENS", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.871245, + 43.934998 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84140", + "ref": "FR*55C*P84140*AVG*PAR01SS1ENS", + "name": "MONTFAVET PAROISSIENS", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.871245, + 43.934998 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84140", + "ref": "FR*55C*P84140*AVG*PAR01SS1ENS", + "name": "MONTFAVET PAROISSIENS", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.871245, + 43.934998 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84140", + "ref": "FR*55C*P84140*AVG*PAR01SS1ENS", + "name": "MONTFAVET PAROISSIENS", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82889, + 45.275643 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP261", + "ref": "FR*55C*PBP*26140*RAMBERT", + "name": "SAINT-RAMBERT-D'ALBON", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-13", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.287036, + 48.790756 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92260", + "ref": "FR*55C*P92260*FAR*JAURES", + "name": "RUE JEAN JAURES - FONTENAY-AUX-ROSES", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292852, + 48.789219 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92260", + "ref": "FR*55C*P92260*FAR*L0MBART", + "name": "AVENUE LOMBART - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.976272, + 45.526596 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP73190", + "ref": "FR*55C*PBP*73190*AB1S", + "name": "BP - AIRE DE L'ABIS SAINT-JEOIRE-PRIEURE - 73190", + "capacity": "8", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292852, + 48.789219 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92260", + "ref": "FR*55C*P92260*FAR*L0MBART", + "name": "AVENUE LOMBART - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.976272, + 45.526596 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP73190", + "ref": "FR*55C*PBP*73190*AB1S", + "name": "BP - AIRE DE L'ABIS SAINT-JEOIRE-PRIEURE - 73190", + "capacity": "8", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.976272, + 45.526596 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP73190", + "ref": "FR*55C*PBP*73190*AB1S", + "name": "BP - AIRE DE L'ABIS SAINT-JEOIRE-PRIEURE - 73190", + "capacity": "8", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.976272, + 45.526596 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP73190", + "ref": "FR*55C*PBP*73190*AB1S", + "name": "BP - AIRE DE L'ABIS SAINT-JEOIRE-PRIEURE - 73190", + "capacity": "8", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.976272, + 45.526596 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP73190", + "ref": "FR*55C*PBP*73190*AB1S", + "name": "BP - AIRE DE L'ABIS SAINT-JEOIRE-PRIEURE - 73190", + "capacity": "8", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.976272, + 45.526596 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CPBP73190", + "ref": "FR*55C*PBP*73190*AB1S", + "name": "BP - AIRE DE L'ABIS SAINT-JEOIRE-PRIEURE - 73190", + "capacity": "8", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.643206, + 43.268741 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83990", + "ref": "FR*55C*P83990*STR*F0CH", + "name": "19 RUE DE LA RESISTANCE - SAINT TROPEZ", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-17", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.643206, + 43.268741 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83990", + "ref": "FR*55C*P83990*STR*F0CH", + "name": "19 RUE DE LA RESISTANCE - SAINT TROPEZ", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-08", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.465199, + 43.207435 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*M0L*MA1R1E", + "name": "RUE DU FOUR - LA MOLE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.465199, + 43.207435 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*M0L*MA1R1E", + "name": "RUE DU FOUR - LA MOLE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.130358, + 48.801996 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78000", + "ref": "FR*55C*P78000*VER*AVPARIS", + "name": "6 AVENUE DE PARIS -VERSAILLES", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-05", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.130358, + 48.801996 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78000", + "ref": "FR*55C*P78000*VER*AVPARIS", + "name": "6 AVENUE DE PARIS -VERSAILLES", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-05", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.657337, + 43.250875 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83350", + "ref": "FR*55C*P83350*RAM*GARB1NE", + "name": "300 Route de Tahiti 83350 - Ramatuelle", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-30", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.657337, + 43.250875 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83350", + "ref": "FR*55C*P83350*RAM*GARB1NE", + "name": "300 Route de Tahiti 83350 - Ramatuelle", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-30", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.636581, + 43.272524 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83990", + "ref": "FR*55C*P83990*STR*CAP", + "name": "CAPITAINERIE - SAINT TROPEZ", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.636581, + 43.272524 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83990", + "ref": "FR*55C*P83990*STR*CAP", + "name": "CAPITAINERIE - SAINT TROPEZ", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92151, + 44.005089 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84320", + "ref": "FR*55C*P84320*ENT*GARE", + "name": "GARE - ENTRAIGUES SUR LA SORGUE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92151, + 44.005089 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84320", + "ref": "FR*55C*P84320*ENT*GARE", + "name": "GARE - ENTRAIGUES SUR LA SORGUE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283107, + 48.783485 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92260", + "ref": "FR*55C*P92260*FAR*LANGEV1N", + "name": "AVENUE PAUL LANGEVIN - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283107, + 48.783485 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92260", + "ref": "FR*55C*P92260*FAR*LANGEV1N", + "name": "AVENUE PAUL LANGEVIN - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283107, + 48.783485 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92260", + "ref": "FR*55C*P92260*FAR*LANGEV1N", + "name": "AVENUE PAUL LANGEVIN - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283107, + 48.783485 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92260", + "ref": "FR*55C*P92260*FAR*LANGEV1N", + "name": "AVENUE PAUL LANGEVIN - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283107, + 48.783485 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92260", + "ref": "FR*55C*P92260*FAR*LANGEV1N", + "name": "AVENUE PAUL LANGEVIN - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283107, + 48.783485 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92260", + "ref": "FR*55C*P92260*FAR*LANGEV1N", + "name": "AVENUE PAUL LANGEVIN - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292852, + 48.789219 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92260", + "ref": "FR*55C*P92260*FAR*L0MBART", + "name": "AVENUE LOMBART - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292852, + 48.789219 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92260", + "ref": "FR*55C*P92260*FAR*L0MBART", + "name": "AVENUE LOMBART - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292852, + 48.789219 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92260", + "ref": "FR*55C*P92260*FAR*L0MBART", + "name": "AVENUE LOMBART - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292852, + 48.789219 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92260", + "ref": "FR*55C*P92260*FAR*L0MBART", + "name": "AVENUE LOMBART - FONTENAY-AUX-ROSES", + "capacity": "6", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-09", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843686, + 43.946211 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*P0NT", + "name": "PARKING PONT DES DEUX EAUX - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876349, + 43.940161 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*MONTFAVET", + "name": "MONTFAVET ETOILE - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.805081, + 43.936094 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*MONCLAR", + "name": "MONCLAR - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.254679, + 48.782032 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*HERR10T", + "name": "AVENUE HERRIOT - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.706553, + 43.443935 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83480", + "ref": "FR*55C*P83480*PUG*COMMERCIAL", + "name": "ZONE COMMERCIAL - PUGET SUR ARGENS", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.706553, + 43.443935 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83480", + "ref": "FR*55C*P83480*PUG*COMMERCIAL", + "name": "ZONE COMMERCIAL - PUGET SUR ARGENS", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.635375, + 43.27044 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83990", + "ref": "FR*55C*P83990*STR*PORT", + "name": "PARKING PORT - SAINT TROPEZ", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.635375, + 43.27044 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83990", + "ref": "FR*55C*P83990*STR*PORT", + "name": "PARKING PORT - SAINT TROPEZ", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.534893, + 43.170946 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83240", + "ref": "FR*55C*P83240*CAV*MEDIATHEQUE", + "name": "PARKING MEDIATHEQUE - CAVALAIRE SUR MER", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.534893, + 43.170946 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83240", + "ref": "FR*55C*P83240*CAV*MEDIATHEQUE", + "name": "PARKING MEDIATHEQUE - CAVALAIRE SUR MER", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.256413, + 48.776574 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*PKHALLE", + "name": "PARKING LA HALLE - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.256413, + 48.776574 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*PKHALLE", + "name": "PARKING LA HALLE - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.256413, + 48.776574 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*PKHALLE", + "name": "PARKING LA HALLE - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.256413, + 48.776574 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*PKHALLE", + "name": "PARKING LA HALLE - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.256413, + 48.776574 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*PKHALLE", + "name": "PARKING LA HALLE - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.256413, + 48.776574 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*PKHALLE", + "name": "PARKING LA HALLE - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.256413, + 48.776574 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*PKHALLE", + "name": "PARKING LA HALLE - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-15", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.254679, + 48.782032 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*HERR10T", + "name": "AVENUE HERRIOT - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.793617, + 44.024338 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP30150", + "ref": "FR*55C*P30150*SAU*PLACE", + "name": "PLACE DU MARCHE - SAUVETERRE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18412, + 48.84965 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*4VENTS", + "name": "CRECHE ROSE DES 4 VENTS - GARCHES", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-29", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18412, + 48.84965 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*4VENTS", + "name": "CRECHE ROSE DES 4 VENTS - GARCHES", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-29", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18412, + 48.84965 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*4VENTS", + "name": "CRECHE ROSE DES 4 VENTS - GARCHES", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-29", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18412, + 48.84965 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*4VENTS", + "name": "CRECHE ROSE DES 4 VENTS - GARCHES", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-29", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.342482, + 43.758861 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84160", + "ref": "FR*55C*P84160*PUY*GRANG1ER", + "name": "PLACE ANDRE GRANGIER - PUYVERT", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-03", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.342482, + 43.758861 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84160", + "ref": "FR*55C*P84160*PUY*GRANG1ER", + "name": "PLACE ANDRE GRANGIER - PUYVERT", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-03", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255673, + 48.775787 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*BLUM", + "name": "AVENUE LEON BLUM - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-12", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255673, + 48.775787 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*BLUM", + "name": "AVENUE LEON BLUM - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-12", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255673, + 48.775787 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*BLUM", + "name": "AVENUE LEON BLUM - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-12", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255673, + 48.775787 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*BLUM", + "name": "AVENUE LEON BLUM - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-12", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255673, + 48.775787 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*BLUM", + "name": "AVENUE LEON BLUM - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-12", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255673, + 48.775787 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*BLUM", + "name": "AVENUE LEON BLUM - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-12", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5217, + 43.5468 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP13100", + "ref": "FR*55C*P13100*SMJ*MA1R1E", + "name": "PLACE DE LA MAIRIE - SAINT-MARC-JAUMEGARDE", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-15", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.706553, + 43.443935 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83480", + "ref": "FR*55C*P83480*PUG*COMMERCIAL", + "name": "ZONE COMMERCIAL - PUGET SUR ARGENS", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.706553, + 43.443935 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83480", + "ref": "FR*55C*P83480*PUG*COMMERCIAL", + "name": "ZONE COMMERCIAL - PUGET SUR ARGENS", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.522957, + 43.274431 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*MAIRIE", + "name": "PARKING MAIRIE - GRIMAUD", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.522957, + 43.274431 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*MAIRIE", + "name": "PARKING MAIRIE - GRIMAUD", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.568722, + 43.207298 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83420", + "ref": "FR*55C*P83420*CRV*GARE", + "name": "PARKING GARE - LA CROIX VALMER", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.136693, + 48.79661 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78000", + "ref": "FR*55C*P78000*VER*CHANTIERS", + "name": "RUE DES CHANTIERS - VERSAILLES", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.136693, + 48.79661 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78000", + "ref": "FR*55C*P78000*VER*CHANTIERS", + "name": "RUE DES CHANTIERS - VERSAILLES", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.151875, + 48.806742 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78000", + "ref": "FR*55C*P78000*VER*MONTREUIL", + "name": "RUE BONNE AVENTURE - VERSAILLES", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.151875, + 48.806742 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78000", + "ref": "FR*55C*P78000*VER*MONTREUIL", + "name": "RUE BONNE AVENTURE - VERSAILLES", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.153577, + 48.799674 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78000", + "ref": "FR*55C*P78000*VER*VAUBAN", + "name": "RUE VAUBAN - VERSAILLES", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.153577, + 48.799674 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78000", + "ref": "FR*55C*P78000*VER*VAUBAN", + "name": "RUE VAUBAN - VERSAILLES", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.577631, + 43.279636 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*STPONS", + "name": "PARKING AIRE DE ST PONS - GRIMAUD", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.577631, + 43.279636 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*STPONS", + "name": "PARKING AIRE DE ST PONS - GRIMAUD", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.577631, + 43.279636 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*STPONS", + "name": "PARKING AIRE DE ST PONS - GRIMAUD", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.661056, + 43.227475 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83350", + "ref": "FR*55C*P83350*RAM*CLUB55", + "name": "PARKING CLUB 55 - RAMATUELLE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.661056, + 43.227475 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83350", + "ref": "FR*55C*P83350*RAM*CLUB55", + "name": "PARKING CLUB 55 - RAMATUELLE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.706148, + 43.384124 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83640", + "ref": "FR*55C*P83640*SZA*PARKING", + "name": "PARKING - SAINT ZACHARIE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.706148, + 43.384124 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83640", + "ref": "FR*55C*P83640*SZA*PARKING", + "name": "PARKING - SAINT ZACHARIE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.635375, + 43.27044 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83990", + "ref": "FR*55C*P83990*STR*PORT", + "name": "PARKING PORT - SAINT TROPEZ", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.635375, + 43.27044 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83990", + "ref": "FR*55C*P83990*STR*PORT", + "name": "PARKING PORT - SAINT TROPEZ", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36349, + 43.765756 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84160", + "ref": "FR*55C*P84160*LOU*D943", + "name": "PARKING D943 - LOURMARIN", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36349, + 43.765756 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84160", + "ref": "FR*55C*P84160*LOU*D943", + "name": "PARKING D943 - LOURMARIN", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.640612, + 43.269507 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83990", + "ref": "FR*55C*P83990*STR*LICES", + "name": "PARKING ESPACE DES LICES - SAINT TROPEZ", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.640612, + 43.269507 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83990", + "ref": "FR*55C*P83990*STR*LICES", + "name": "PARKING ESPACE DES LICES - SAINT TROPEZ", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.519044, + 43.172029 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83240", + "ref": "FR*55C*P83240*CAV*CANISSONS", + "name": "CHEMIN DES CANISSONS - CAVALAIRE SUR MER", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.448297, + 43.878408 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP06380", + "ref": "FR*55C*P06380*SOS*PARKING", + "name": "PARKING - SOSPEL", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.521344, + 43.272782 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*RN7", + "name": "PARKING RN7 - GRIMAUD", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.521344, + 43.272782 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*RN7", + "name": "PARKING RN7 - GRIMAUD", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.57743, + 43.274761 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*PORT", + "name": "PARKING PORT - GRIMAUD", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.57743, + 43.274761 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*PORT", + "name": "PARKING PORT - GRIMAUD", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5217, + 43.5468 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP13100", + "ref": "FR*55C*P13100*SMJ*MA1R1E", + "name": "PLACE DE LA MAIRIE - SAINT-MARC-JAUMEGARDE", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-15", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5217, + 43.5468 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP13100", + "ref": "FR*55C*P13100*SMJ*MA1R1E", + "name": "PLACE DE LA MAIRIE - SAINT-MARC-JAUMEGARDE", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-15", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5217, + 43.5468 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP13100", + "ref": "FR*55C*P13100*SMJ*MA1R1E", + "name": "PLACE DE LA MAIRIE - SAINT-MARC-JAUMEGARDE", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-15", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.263835, + 48.781822 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*GAULLE", + "name": "AVENUE DE GAULLE - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-19", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48649, + 46.24693 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP17880", + "ref": "FR*55C*P17880*PER*PHARE", + "name": "LE PHARE - ILE DE RE", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-19", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48649, + 46.24693 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP17880", + "ref": "FR*55C*P17880*PER*PHARE", + "name": "LE PHARE - ILE DE RE", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-19", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48649, + 46.24693 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP17880", + "ref": "FR*55C*P17880*PER*PHARE", + "name": "LE PHARE - ILE DE RE", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-19", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48649, + 46.24693 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP17880", + "ref": "FR*55C*P17880*PER*PHARE", + "name": "LE PHARE - ILE DE RE", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-19", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.042062, + 43.836565 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84300", + "ref": "FR*55C*P84300*CVL*GAUTH1ER", + "name": "PARKING PAUL GAUTHIER - CAVAILLON", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-19", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.042062, + 43.836565 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84300", + "ref": "FR*55C*P84300*CVL*GAUTH1ER", + "name": "PARKING PAUL GAUTHIER - CAVAILLON", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-19", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.519044, + 43.172029 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83240", + "ref": "FR*55C*P83240*CAV*CANISSONS", + "name": "CHEMIN DES CANISSONS CAVALAIRE SUR MER", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2013-02-01", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.448297, + 43.878408 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP06380", + "ref": "FR*55C*P06380*SOS*PARKING", + "name": "RUE BLANCHI SOSPEL", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-04-30", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.690518, + 43.256472 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83990", + "ref": "FR*55C*P83990*STR*SALINS", + "name": "PLAGE DES SALINS - SAINT-TROPEZ", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-06-04", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.201517, + 48.781246 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*EXELMANS", + "name": "RUE DU GENERAL EXELMANS - VELIZY", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-02", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.201517, + 48.781246 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*EXELMANS", + "name": "RUE DU GENERAL EXELMANS - VELIZY", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-02", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.201517, + 48.781246 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*EXELMANS", + "name": "RUE DU GENERAL EXELMANS - VELIZY", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-02", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.201517, + 48.781246 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*EXELMANS", + "name": "RUE DU GENERAL EXELMANS - VELIZY", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-02", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.196945, + 48.781122 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*L0UV01S", + "name": "PLACE LOUVOIS - VELIZY", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-02", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.196945, + 48.781122 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*L0UV01S", + "name": "PLACE LOUVOIS - VELIZY", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-02", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.196945, + 48.781122 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*L0UV01S", + "name": "PLACE LOUVOIS - VELIZY", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-02", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.196945, + 48.781122 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*L0UV01S", + "name": "PLACE LOUVOIS - VELIZY", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-02", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181862, + 48.784202 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*MA1L", + "name": "LE MAIL - VELIZY", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-03", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181862, + 48.784202 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*MA1L", + "name": "LE MAIL - VELIZY", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-03", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181862, + 48.784202 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*MA1L", + "name": "LE MAIL - VELIZY", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-03", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181862, + 48.784202 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*MA1L", + "name": "LE MAIL - VELIZY", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-03", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.170855, + 48.783949 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*MOZART", + "name": "MOZART - VELIZY", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-03", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.170855, + 48.783949 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*MOZART", + "name": "MOZART - VELIZY", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-03", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.170855, + 48.783949 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*MOZART", + "name": "MOZART - VELIZY", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-03", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.170855, + 48.783949 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*MOZART", + "name": "MOZART - VELIZY", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-03", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.57743, + 43.274761 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*PORT", + "name": "PARKING PORT GRIMAUD", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-25", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.57743, + 43.274761 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*GRI*PORT", + "name": "PARKING PORT GRIMAUD", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-25", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.263835, + 48.781822 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*GAULLE", + "name": "AVENUE DE GAULLE - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-19", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.263835, + 48.781822 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*GAULLE", + "name": "AVENUE DE GAULLE - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-19", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603186, + 45.612292 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP17800", + "ref": "FR*55C*PBP*17800*LEGER0UEST", + "name": "BP ST LEGER OUEST", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.263835, + 48.781822 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*GAULLE", + "name": "AVENUE DE GAULLE - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-19", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603186, + 45.612292 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP17800", + "ref": "FR*55C*PBP*17800*LEGER0UEST", + "name": "BP ST LEGER OUEST", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603186, + 45.612292 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP17800", + "ref": "FR*55C*PBP*17800*LEGER0UEST", + "name": "BP ST LEGER OUEST", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.24865, + 44.871477 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP48200", + "ref": "FR*55C*PBP*48200*L0ZERE", + "name": "BP AIRE DE LA LOZERE - ALBARET-SAINTE-MARIE", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.24865, + 44.871477 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP48200", + "ref": "FR*55C*PBP*48200*L0ZERE", + "name": "BP AIRE DE LA LOZERE - ALBARET-SAINTE-MARIE", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.24865, + 44.871477 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP48200", + "ref": "FR*55C*PBP*48200*L0ZERE", + "name": "BP AIRE DE LA LOZERE - ALBARET-SAINTE-MARIE", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-28", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25948, + 48.78001 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*BR1AND", + "name": "ARISTIDE BRIAND - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-06-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25948, + 48.78001 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*BR1AND", + "name": "ARISTIDE BRIAND - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25948, + 48.78001 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*BR1AND", + "name": "ARISTIDE BRIAND - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25948, + 48.78001 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*BR1AND", + "name": "ARISTIDE BRIAND - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25948, + 48.78001 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*BR1AND", + "name": "ARISTIDE BRIAND - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25948, + 48.78001 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*BR1AND", + "name": "ARISTIDE BRIAND - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-05", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271471, + 48.783674 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*ETANG", + "name": "CHAUSSEE DE L'ETANG - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-19", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271471, + 48.783674 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*ETANG", + "name": "CHAUSSEE DE L'ETANG - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-19", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271471, + 48.783674 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*ETANG", + "name": "CHAUSSEE DE L'ETANG - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-19", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271471, + 48.783674 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*ETANG", + "name": "CHAUSSEE DE L'ETANG - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-19", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271471, + 48.783674 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*ETANG", + "name": "CHAUSSEE DE L'ETANG - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-19", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195605, + 48.781261 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*RAB0URD1N", + "name": "RABOURDIN - VELIZY", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-17", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195605, + 48.781261 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*RAB0URD1N", + "name": "RABOURDIN - VELIZY", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-17", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195605, + 48.781261 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*RAB0URD1N", + "name": "RABOURDIN - VELIZY", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-17", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195605, + 48.781261 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*RAB0URD1N", + "name": "RABOURDIN - VELIZY", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-17", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84218, + 43.93032 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*CHAMAND", + "name": "PARKING SAINT-CHAMAND - AVIGNON", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-18", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84218, + 43.93032 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*CHAMAND", + "name": "PARKING SAINT-CHAMAND - AVIGNON", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-18", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84218, + 43.93032 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*CHAMAND", + "name": "PARKING SAINT-CHAMAND - AVIGNON", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-18", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84218, + 43.93032 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*CHAMAND", + "name": "PARKING SAINT-CHAMAND - AVIGNON", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-18", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84218, + 43.93032 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*CHAMAND", + "name": "PARKING SAINT-CHAMAND - AVIGNON", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-18", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.263835, + 48.781822 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*GAULLE", + "name": "AVENUE DE GAULLE - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-19", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.263835, + 48.781822 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92350", + "ref": "FR*55C*P92350*LPR*GAULLE", + "name": "AVENUE DE GAULLE - LE PLESSIS-ROBINSON", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-07-19", + "note": "", + "source:date": "2023-07-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.568722, + 43.207298 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83420", + "ref": "FR*55C*P83420*CRV*GARE", + "name": "PARKING GARE - LA CROIX VALMER", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.793617, + 44.024338 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP30150", + "ref": "FR*55C*P30150*SAU*PLACE", + "name": "PLACE DU MARCHE - SAUVETERRE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.186172, + 48.838071 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*PLGARE", + "name": "PLACE DE LA GARE - GARCHES", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.211931, + 48.785437 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DASSAULT", + "name": "ALLIEE LATECOERE - DASSAULT - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.170362, + 48.83852 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*RAYPOINCARE", + "name": "BOULEVARD RAYMOND POINCARE - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.170362, + 48.83852 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*RAYPOINCARE", + "name": "BOULEVARD RAYMOND POINCARE - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.170362, + 48.83852 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*RAYPOINCARE", + "name": "BOULEVARD RAYMOND POINCARE - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.170362, + 48.83852 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*RAYPOINCARE", + "name": "BOULEVARD RAYMOND POINCARE - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.177635, + 48.784153 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*WAGNER", + "name": "AVENUE WAGNER - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.177635, + 48.784153 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*WAGNER", + "name": "AVENUE WAGNER - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.177635, + 48.784153 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*WAGNER", + "name": "AVENUE WAGNER - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.177635, + 48.784153 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*WAGNER", + "name": "AVENUE WAGNER - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.177635, + 48.784153 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*WAGNER", + "name": "AVENUE WAGNER - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.177635, + 48.784153 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*WAGNER", + "name": "AVENUE WAGNER - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.211931, + 48.785437 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DASSAULT", + "name": "ALLIEE LATECOERE - DASSAULT - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.211931, + 48.785437 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DASSAULT", + "name": "ALLIEE LATECOERE - DASSAULT - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.211931, + 48.785437 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DASSAULT", + "name": "ALLIEE LATECOERE - DASSAULT - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.211931, + 48.785437 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DASSAULT", + "name": "ALLIEE LATECOERE - DASSAULT - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.599485, + 43.184096 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP420CR", + "ref": "FR*55C*P420*CRV*GIGARO", + "name": "PARKING PLAGE DU GIGARO - LA CROIX VALMER", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.211931, + 48.785437 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DASSAULT", + "name": "ALLIEE LATECOERE - DASSAULT - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.215456, + 48.782833 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DEWOITINE", + "name": "RUE DEWOITINE - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.215456, + 48.782833 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DEWOITINE", + "name": "RUE DEWOITINE - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.215456, + 48.782833 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DEWOITINE", + "name": "RUE DEWOITINE - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.215456, + 48.782833 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DEWOITINE", + "name": "RUE DEWOITINE - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.215456, + 48.782833 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DEWOITINE", + "name": "RUE DEWOITINE - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.215456, + 48.782833 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DEWOITINE", + "name": "RUE DEWOITINE - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.210091, + 48.780621 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DAUTIER", + "name": "DAUTIER - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.210091, + 48.780621 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DAUTIER", + "name": "DAUTIER - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.210091, + 48.780621 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DAUTIER", + "name": "DAUTIER - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.210091, + 48.780621 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DAUTIER", + "name": "DAUTIER - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.210091, + 48.780621 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DAUTIER", + "name": "DAUTIER - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.210091, + 48.780621 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78140", + "ref": "FR*55C*P78140*VLZ*DAUTIER", + "name": "DAUTIER - VELIZY-VILLACOUBLAY", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.170362, + 48.83852 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*RAYPOINCARE", + "name": "BOULEVARD RAYMOND POINCARE - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.170362, + 48.83852 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*RAYPOINCARE", + "name": "BOULEVARD RAYMOND POINCARE - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12096, + 48.809898 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78000", + "ref": "FR*55C*P78000*VER*BDREINE", + "name": "BOULEVARD DE LA REINE - VERSAILLES", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12096, + 48.809898 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78000", + "ref": "FR*55C*P78000*VER*BDREINE", + "name": "BOULEVARD DE LA REINE - VERSAILLES", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876349, + 43.940161 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*MONTFAVET", + "name": "MONTFAVET ETOILE - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876349, + 43.940161 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*MONTFAVET", + "name": "MONTFAVET ETOILE - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876349, + 43.940161 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*MONTFAVET", + "name": "MONTFAVET ETOILE - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828155, + 43.947206 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*FOLIE", + "name": "FOLIE BOCACE - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828155, + 43.947206 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*FOLIE", + "name": "FOLIE BOCACE - AVIGNON", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.204549, + 48.85204 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92280", + "ref": "FR*55C*P92280*GAR*BUZENVAL", + "name": "RUE BUZENVAL - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.204549, + 48.85204 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92280", + "ref": "FR*55C*P92280*GAR*BUZENVAL", + "name": "RUE BUZENVAL - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.204549, + 48.85204 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92280", + "ref": "FR*55C*P92280*GAR*BUZENVAL", + "name": "RUE BUZENVAL - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.204549, + 48.85204 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92280", + "ref": "FR*55C*P92280*GAR*BUZENVAL", + "name": "RUE BUZENVAL - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.204549, + 48.85204 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92280", + "ref": "FR*55C*P92280*GAR*BUZENVAL", + "name": "RUE BUZENVAL - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.204549, + 48.85204 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92280", + "ref": "FR*55C*P92280*GAR*BUZENVAL", + "name": "RUE BUZENVAL - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*VERDUN", + "name": "PLACE VERDUN - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*VERDUN", + "name": "PLACE VERDUN - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*VERDUN", + "name": "PLACE VERDUN - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*VERDUN", + "name": "PLACE VERDUN - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*VERDUN", + "name": "PLACE VERDUN - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*VERDUN", + "name": "PLACE VERDUN - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*MOZART", + "name": "PLACE MOZART - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*MOZART", + "name": "PLACE MOZART - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*MOZART", + "name": "PLACE MOZART - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*MOZART", + "name": "PLACE MOZART - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*MOZART", + "name": "PLACE MOZART - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*MOZART", + "name": "PLACE MOZART - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.130358, + 48.801996 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78000", + "ref": "FR*55C*P78000*VER*AVPARIS", + "name": "AVENUE DE PARIS VERSAILLES", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.130358, + 48.801996 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78000", + "ref": "FR*55C*P78000*VER*AVPARIS", + "name": "AVENUE DE PARIS VERSAILLES", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.130358, + 48.801996 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78000", + "ref": "FR*55C*P78000*VER*AVPARIS", + "name": "AVENUE DE PARIS VERSAILLES", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.130358, + 48.801996 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78000", + "ref": "FR*55C*P78000*VER*AVPARIS", + "name": "AVENUE DE PARIS VERSAILLES", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.800516, + 43.949101 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*OULLE", + "name": "PARKING DE L'OULLE - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.800516, + 43.949101 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*OULLE", + "name": "PARKING DE L'OULLE - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.800516, + 43.949101 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*OULLE", + "name": "PARKING DE L'OULLE - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.768425, + 43.958425 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP30133", + "ref": "FR*55C*P30133*LAS*GAULLE", + "name": "PARKING ELEPHANT BLEU - LES ANGLES", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.764347, + 43.958037 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP30133", + "ref": "FR*55C*P30133*LAS*ELEPHANT", + "name": "AVENUE DU GENERAL DE GAULE - LES ANGLES", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.129056, + 48.800833 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78000", + "ref": "FR*55C*P78000*VER*MAIRIE", + "name": "AVENUE DU GENERAL DE GAULE - VERSAILLES", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.129056, + 48.800833 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP78000", + "ref": "FR*55C*P78000*VER*MAIRIE", + "name": "AVENUE DU GENERAL DE GAULE - VERSAILLES", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466818, + 48.816785 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*PLACE", + "name": "PLACE DU 8 MAI 1945 - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466818, + 48.816785 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*PLACE", + "name": "PLACE DU 8 MAI 1945 - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466818, + 48.816785 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*PLACE", + "name": "PLACE DU 8 MAI 1945 - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466818, + 48.816785 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*PLACE", + "name": "PLACE DU 8 MAI 1945 - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466818, + 48.816785 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*PLACE", + "name": "PLACE DU 8 MAI 1945 - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466818, + 48.816785 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP94340", + "ref": "FR*55C*P94340*JVL*PLACE", + "name": "PLACE DU 8 MAI 1945 - JOINVILLE", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.534659, + 43.250675 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*COG*PLACEVH", + "name": "PLACE VICTOR HUGO - COGOLIN", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.533698, + 43.251851 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*COG*PLACEGD", + "name": "PLACE AVENUE GENERAL DE GAULLE -COGOLIN", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.534659, + 43.250675 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*COG*PLACEVH", + "name": "PLACE VICTOR HUGO - COGOLIN", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.533698, + 43.251851 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83310", + "ref": "FR*55C*P83310*COG*PLACEGD", + "name": "PLACE AVENUE GENERAL DE GAULLE -COGOLIN", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.403812, + 43.82887 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84400", + "ref": "FR*55C*P84400*SVG*PARKING", + "name": "PARKING LAUTIER - SIVERGUES", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.586437, + 43.262611 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83580", + "ref": "FR*55C*P83580*GAS*TRIDENT", + "name": "PARKING TRIDENT - GASSIN", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.586437, + 43.262611 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83580", + "ref": "FR*55C*P83580*GAS*TRIDENT", + "name": "PARKING TRIDENT - GASSIN", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.546778, + 43.337839 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83120", + "ref": "FR*55C*P83120*PLT*PARKING", + "name": "PARKING JAURES - PLAN DE LA TOUR", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.546778, + 43.337839 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83120", + "ref": "FR*55C*P83120*PLT*PARKING", + "name": "PARKING JAURES - PLAN DE LA TOUR", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.634794, + 43.310428 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83120", + "ref": "FR*55C*P83120*STM*MERMOZ", + "name": "PLACE MERMOZ - SAINTE MAXIME", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.634794, + 43.310428 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83120", + "ref": "FR*55C*P83120*STM*MERMOZ", + "name": "PLACE MERMOZ - SAINTE MAXIME", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.624927, + 43.325788 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83120", + "ref": "FR*55C*P83120*STM*GAUMONT", + "name": "PARKING GAUMONT - SAINTE MAXIME", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.624927, + 43.325788 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83120", + "ref": "FR*55C*P83120*STM*GAUMONT", + "name": "PARKING GAUMONT - SAINTE MAXIME", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.6342, + 43.314926 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83120", + "ref": "FR*55C*P83120*STM*PASTORELLI", + "name": "PARKING PASTORELLI - SAINTE MAXIME", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.6342, + 43.314926 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83120", + "ref": "FR*55C*P83120*STM*PASTORELLI", + "name": "PARKING PASTORELLI - SAINTE MAXIME", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.616837, + 43.329318 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83120", + "ref": "FR*55C*P83120*STM*BOSQUET", + "name": "PARKING BOSQUET - SAINTE MAXIME", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.616837, + 43.329318 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP83120", + "ref": "FR*55C*P83120*STM*BOSQUET", + "name": "PARKING BOSQUET - SAINTE MAXIME", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.599485, + 43.184096 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP420CR", + "ref": "FR*55C*P420*CRV*GIGARO", + "name": "PARKING PLAGE DU GIGARO - LA CROIX VALMER", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.764347, + 43.958037 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP30133", + "ref": "FR*55C*P30133*LAS*ELEPHANT", + "name": "AVENUE DU GENERAL DE GAULE - LES ANGLES", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.768425, + 43.958425 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP30133", + "ref": "FR*55C*P30133*LAS*GAULLE", + "name": "PARKING ELEPHANT BLEU - LES ANGLES", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.800516, + 43.949101 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*OULLE", + "name": "PARKING DE L'OULLE - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.752516, + 43.962289 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP30133", + "ref": "FR*55C*P30133*LAS*PRIADES", + "name": "PARKING PRIADES - LES ANGLES", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.936124, + 43.948985 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84450", + "ref": "FR*55C*P84450*JQT*FELIBRIGE", + "name": "FELIBRIGE - JONQUERETTE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.936124, + 43.948985 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84450", + "ref": "FR*55C*P84450*JQT*FELIBRIGE", + "name": "FELIBRIGE - JONQUERETTE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.823253, + 43.953885 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*ITALIENS", + "name": "PARKING DES ITALIENS - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.823253, + 43.953885 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*ITALIENS", + "name": "PARKING DES ITALIENS - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.823253, + 43.953885 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*ITALIENS", + "name": "PARKING DES ITALIENS - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.823253, + 43.953885 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP84000", + "ref": "FR*55C*P84000*AVG*ITALIENS", + "name": "PARKING DES ITALIENS - AVIGNON", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445813, + 48.921675 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP93700", + "ref": "FR*55C*P93700*DRY*BERTHELOT", + "name": "1 RUE BERTHELOT DRANCY", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445813, + 48.921675 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP93700", + "ref": "FR*55C*P93700*DRY*BERTHELOT", + "name": "1 RUE BERTHELOT DRANCY", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18696, + 48.838587 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*GAULLE", + "name": "BOULEVARD DU GENERAL DE GAULLE - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18696, + 48.838587 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*GAULLE", + "name": "BOULEVARD DU GENERAL DE GAULLE - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18696, + 48.838587 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*GAULLE", + "name": "BOULEVARD DU GENERAL DE GAULLE - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18696, + 48.838587 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*GAULLE", + "name": "BOULEVARD DU GENERAL DE GAULLE - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18696, + 48.838587 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*GAULLE", + "name": "BOULEVARD DU GENERAL DE GAULLE - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18696, + 48.838587 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*GAULLE", + "name": "BOULEVARD DU GENERAL DE GAULLE - GARCHES", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.249932, + 48.822635 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92130", + "ref": "FR*55C*P92130*ISS*ILES", + "name": "21 BOULEVARD DES ILES - ISSY LES MOULINEAUX", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.249932, + 48.822635 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92130", + "ref": "FR*55C*P92130*ISS*ILES", + "name": "21 BOULEVARD DES ILES - ISSY LES MOULINEAUX", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.249932, + 48.822635 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92130", + "ref": "FR*55C*P92130*ISS*ILES", + "name": "21 BOULEVARD DES ILES - ISSY LES MOULINEAUX", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.249932, + 48.822635 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92130", + "ref": "FR*55C*P92130*ISS*ILES", + "name": "21 BOULEVARD DES ILES - ISSY LES MOULINEAUX", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.249932, + 48.822635 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92130", + "ref": "FR*55C*P92130*ISS*ILES", + "name": "21 BOULEVARD DES ILES - ISSY LES MOULINEAUX", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.249932, + 48.822635 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92130", + "ref": "FR*55C*P92130*ISS*ILES", + "name": "21 BOULEVARD DES ILES - ISSY LES MOULINEAUX", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26765, + 48.827423 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92130", + "ref": "FR*55C*P92130*ISS*GALLIENI", + "name": "27 BOULEVARD GALLIENI - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26765, + 48.827423 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92130", + "ref": "FR*55C*P92130*ISS*GALLIENI", + "name": "27 BOULEVARD GALLIENI - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26765, + 48.827423 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92130", + "ref": "FR*55C*P92130*ISS*GALLIENI", + "name": "27 BOULEVARD GALLIENI - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26765, + 48.827423 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92130", + "ref": "FR*55C*P92130*ISS*GALLIENI", + "name": "27 BOULEVARD GALLIENI - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26765, + 48.827423 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92130", + "ref": "FR*55C*P92130*ISS*GALLIENI", + "name": "27 BOULEVARD GALLIENI - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26765, + 48.827423 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92130", + "ref": "FR*55C*P92130*ISS*GALLIENI", + "name": "27 BOULEVARD GALLIENI - ISSY-LES-MOULINEAUX", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.752516, + 43.962289 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP30133", + "ref": "FR*55C*P30133*LAS*PRIADES", + "name": "PARKING PRIADES - LES ANGLES", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2022-11-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.186172, + 48.838071 + ] + }, + "properties": { + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR55CP92380", + "ref": "FR*55C*P92380*GAR*PLGARE", + "name": "PLACE DE LA GARE - GARCHES", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-10", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8416, + 46.778221 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85182A", + "ref": "", + "name": "OuestCharge - Diva Sp - Pouzauges - Rouault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50769, + 46.767872 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85178B", + "ref": "", + "name": "OuestCharge - E-Twin - Le Poire-sur-Vie - Chapelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.321756, + 46.330966 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85307A", + "ref": "", + "name": "OuestCharge - E-Twin - La Faute-Sur-Mer - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45374, + 46.66589 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191K", + "ref": "", + "name": "OuestCharge - E-Twin - La Roche-sur-Yon - Ornay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45374, + 46.66589 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191K", + "ref": "", + "name": "OuestCharge - E-Twin - La Roche-sur-Yon - Ornay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40609, + 46.670441 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191L", + "ref": "", + "name": "OuestCharge - Diva Sp - La Roche-sur-Yon - Oudairies", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40609, + 46.670441 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191L", + "ref": "", + "name": "OuestCharge - Diva Sp - La Roche-sur-Yon - Oudairies", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.428843, + 46.702999 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191M", + "ref": "", + "name": "OuestCharge - Supercharger - La Roche-Sur-Yon - Michelin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.428843, + 46.702999 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191M", + "ref": "", + "name": "OuestCharge - Supercharger - La Roche-Sur-Yon - Michelin", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78418, + 46.49939 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85194A", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Sables-d'Olonne - Nicot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78418, + 46.49939 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85194A", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Sables-d'Olonne - Nicot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79573, + 46.494049 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85194B", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Sables-d'Olonne - Boucaniers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79573, + 46.494049 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85194B", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Sables-d'Olonne - Boucaniers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79613, + 46.50195 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85194C", + "ref": "", + "name": "OuestCharge - E-Twin - Les Sables-d'Olonne - Prouteau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.79613, + 46.50195 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85194C", + "ref": "", + "name": "OuestCharge - E-Twin - Les Sables-d'Olonne - Prouteau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78187, + 46.497181 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85194D", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Sables-d'Olonne - Dupont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-10", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.78187, + 46.497181 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85194D", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Sables-d'Olonne - Dupont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-10", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772598, + 46.494529 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85194E", + "ref": "", + "name": "OuestCharge - E-Twin - Les Sables-D'Olonne - Audubon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-24", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772598, + 46.494529 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85194E", + "ref": "", + "name": "OuestCharge - E-Twin - Les Sables-D'Olonne - Audubon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-24", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7537332, + 46.5169739 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85194F", + "ref": "", + "name": "OuestCharge - Ultra 150 - Les Sables-d'Olonne - Nationale 160", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7537332, + 46.5169739 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85194F", + "ref": "", + "name": "OuestCharge - Ultra 150 - Les Sables-d'Olonne - Nationale 160", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7537332, + 46.5169739 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85194F", + "ref": "", + "name": "OuestCharge - Ultra 150 - Les Sables-d'Olonne - Nationale 160", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4291, + 46.6909 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191J", + "ref": "", + "name": "OuestCharge - Quick Charger - La Roche-sur-Yon - Palissy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4291, + 46.6909 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191J", + "ref": "", + "name": "OuestCharge - Quick Charger - La Roche-sur-Yon - Palissy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4291, + 46.6909 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191J", + "ref": "", + "name": "OuestCharge - Quick Charger - La Roche-sur-Yon - Palissy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.431739, + 46.669009 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191C", + "ref": "", + "name": "OuestCharge - Diva Sp - La Roche-sur-Yon - Vendee", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83792, + 46.781986 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85182B", + "ref": "", + "name": "OuestCharge - Diva Sp - Pouzauges - Tassigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50997, + 46.940701 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85190A", + "ref": "", + "name": "OuestCharge - Diva Sp - Rocheserviere - Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50997, + 46.940701 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85190A", + "ref": "", + "name": "OuestCharge - Diva Sp - Rocheserviere - Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42502, + 46.6642 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191A", + "ref": "", + "name": "OuestCharge - E-Twin - La Roche-sur-Yon - Etats-Unis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42502, + 46.6642 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191A", + "ref": "", + "name": "OuestCharge - E-Twin - La Roche-sur-Yon - Etats-Unis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43236, + 46.682899 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191B", + "ref": "", + "name": "OuestCharge - E-Twin - La Roche-sur-Yon - Sully", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43236, + 46.682899 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191B", + "ref": "", + "name": "OuestCharge - E-Twin - La Roche-sur-Yon - Sully", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.431739, + 46.669009 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191C", + "ref": "", + "name": "OuestCharge - Diva Sp - La Roche-sur-Yon - Vendee", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.429953, + 46.669237 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191D", + "ref": "", + "name": "OuestCharge - CityCharge - La Roche-sur-Yon - Fayette", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-25", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4383, + 46.650558 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191I", + "ref": "", + "name": "OuestCharge - Quick Charger - La Roche-sur-Yon - Genet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40277, + 46.66093 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191E", + "ref": "", + "name": "OuestCharge - Diva Sp - La Roche-sur-Yon - Mutualite", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40277, + 46.66093 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191E", + "ref": "", + "name": "OuestCharge - Diva Sp - La Roche-sur-Yon - Mutualite", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4282, + 46.671021 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191F", + "ref": "", + "name": "OuestCharge - E-Twin - La Roche-sur-Yon - Anatole France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4282, + 46.671021 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191F", + "ref": "", + "name": "OuestCharge - E-Twin - La Roche-sur-Yon - Anatole France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44083, + 46.66913 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191H", + "ref": "", + "name": "OuestCharge - Diva Sp - La Roche-sur-Yon - Reaumur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.44083, + 46.66913 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191H", + "ref": "", + "name": "OuestCharge - Diva Sp - La Roche-sur-Yon - Reaumur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4383, + 46.650558 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191I", + "ref": "", + "name": "OuestCharge - Quick Charger - La Roche-sur-Yon - Genet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4383, + 46.650558 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85191I", + "ref": "", + "name": "OuestCharge - Quick Charger - La Roche-sur-Yon - Genet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7537332, + 46.5169739 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85194F", + "ref": "", + "name": "OuestCharge - Ultra 150 - Les Sables-d'Olonne - Nationale 160", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7537332, + 46.5169739 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85194F", + "ref": "", + "name": "OuestCharge - Ultra 150 - Les Sables-d'Olonne - Nationale 160", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7537332, + 46.5169739 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85194F", + "ref": "", + "name": "OuestCharge - Ultra 150 - Les Sables-d'Olonne - Nationale 160", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83562, + 46.6063 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85243A", + "ref": "", + "name": "OuestCharge - Diva Sp - Brem-sur-Mer - Prieur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.96324, + 46.711208 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85226B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Hilaire-de-Riez - Riez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94701, + 46.720921 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85226C", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Hilaire-de-Riez - Pins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.94701, + 46.720921 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85226C", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Hilaire-de-Riez - Pins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06249, + 46.79406 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85234A", + "ref": "", + "name": "OuestCharge - E-Twin - Saint-Jean-de-Monts - Novembre 1918", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06249, + 46.79406 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85234A", + "ref": "", + "name": "OuestCharge - E-Twin - Saint-Jean-de-Monts - Novembre 1918", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06061, + 46.79002 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85234B", + "ref": "", + "name": "OuestCharge - E-Twin - Saint-Jean-de-Monts - Chang", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06061, + 46.79002 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85234B", + "ref": "", + "name": "OuestCharge - E-Twin - Saint-Jean-de-Monts - Chang", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83562, + 46.6063 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85243A", + "ref": "", + "name": "OuestCharge - Diva Sp - Brem-sur-Mer - Prieur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.342638, + 46.573218 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85285A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Tablier - Parking", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9781, + 46.712811 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85226A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Hilaire-de-Riez - Collinet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.342638, + 46.573218 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85285A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Tablier - Parking", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61797, + 46.46485 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85288A", + "ref": "", + "name": "OuestCharge - E-Twin - Talmont-Saint-Hilaire - Payre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61797, + 46.46485 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85288A", + "ref": "", + "name": "OuestCharge - E-Twin - Talmont-Saint-Hilaire - Payre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43012, + 46.34767 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85294A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Tranche-sur-Mer - Breton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.43012, + 46.34767 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85294A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Tranche-sur-Mer - Breton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51163, + 46.684349 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85300A", + "ref": "", + "name": "OuestCharge - E-Twin - Venansault - Culture", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51163, + 46.684349 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85300A", + "ref": "", + "name": "OuestCharge - E-Twin - Venansault - Culture", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.321756, + 46.330966 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85307A", + "ref": "", + "name": "OuestCharge - E-Twin - La Faute-Sur-Mer - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.96324, + 46.711208 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85226B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Hilaire-de-Riez - Riez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9781, + 46.712811 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85226A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Hilaire-de-Riez - Collinet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.41197, + 46.93412 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85197A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Andre-Treize-Voies - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-31", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10895, + 46.4669 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85216A", + "ref": "", + "name": "OuestCharge - 50 Compact - Sainte-Gemme-La-Plaine - Chemins", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.41197, + 46.93412 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85197A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Andre-Treize-Voies - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-31", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13728, + 46.811699 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85212A", + "ref": "", + "name": "OuestCharge - 50 Compact - Sainte-Florence - Oie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13728, + 46.811699 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85212A", + "ref": "", + "name": "OuestCharge - 50 Compact - Sainte-Florence - Oie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13728, + 46.811699 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85212A", + "ref": "", + "name": "OuestCharge - 50 Compact - Sainte-Florence - Oie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.17026, + 46.85125 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85215A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Fulgent - Verne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.17026, + 46.85125 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85215A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Fulgent - Verne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.17687, + 46.85087 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85215B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Fulgent - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.17687, + 46.85087 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85215B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Fulgent - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10895, + 46.4669 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85216A", + "ref": "", + "name": "OuestCharge - 50 Compact - Sainte-Gemme-La-Plaine - Chemins", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33125, + 47.00351 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85224A", + "ref": "", + "name": "OuestCharge - E-Twin - Saint-Hilaire-de-Loulay - Giraudet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10895, + 46.4669 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85216A", + "ref": "", + "name": "OuestCharge - 50 Compact - Sainte-Gemme-La-Plaine - Chemins", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29718, + 46.947361 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85217A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Georges-de-Montaigu - Dronneau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-31", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29718, + 46.947361 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85217A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Georges-de-Montaigu - Dronneau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-31", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92586, + 46.697781 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85222A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Gilles-Croix-de-Vie - Cour Rouge", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.92586, + 46.697781 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85222A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Gilles-Croix-de-Vie - Cour Rouge", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.06227, + 46.555099 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85223A", + "ref": "", + "name": "OuestCharge - E-Twin - Sainte-Hermine - Hermand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.06227, + 46.555099 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85223A", + "ref": "", + "name": "OuestCharge - E-Twin - Sainte-Hermine - Hermand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33125, + 47.00351 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85224A", + "ref": "", + "name": "OuestCharge - E-Twin - Saint-Hilaire-de-Loulay - Giraudet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8416, + 46.778221 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85182A", + "ref": "", + "name": "OuestCharge - Diva Sp - Pouzauges - Rouault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83792, + 46.781986 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85182B", + "ref": "", + "name": "OuestCharge - Diva Sp - Pouzauges - Tassigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80692, + 46.46651 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85092C", + "ref": "", + "name": "OuestCharge - E-Twin - Fontenay-Le-Comte - Thivercay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49111, + 46.425529 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85127A", + "ref": "", + "name": "OuestCharge - E-Twin - Longeville-sur-Mer - Clemenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.95255, + 46.99136 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85151B", + "ref": "", + "name": "OuestCharge - Diva Sp - Mortagne-sur-Sevre - Roseraie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.95255, + 46.99136 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85151B", + "ref": "", + "name": "OuestCharge - Diva Sp - Mortagne-sur-Sevre - Roseraie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.94492, + 46.995129 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85151A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mortagne-sur-Sevre - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.94492, + 46.995129 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85151A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mortagne-sur-Sevre - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45214, + 46.90633 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85150A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mormaison - Issoire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-31", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45214, + 46.90633 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85150A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mormaison - Issoire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-31", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31215, + 46.974091 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85146A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montaigu - Jarley", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-25", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31215, + 46.974091 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85146A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montaigu - Jarley", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-25", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22376, + 46.53632 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85135A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mareuil-sur-Lay-Dissais - Halles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22376, + 46.53632 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85135A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mareuil-sur-Lay-Dissais - Halles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16827, + 46.454491 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85128B", + "ref": "", + "name": "OuestCharge - E-Twin - Luçon - Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16827, + 46.454491 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85128B", + "ref": "", + "name": "OuestCharge - E-Twin - Luçon - Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15782, + 46.45393 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85128A", + "ref": "", + "name": "OuestCharge - Diva Sp - Luçon - Abattoirs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15782, + 46.45393 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85128A", + "ref": "", + "name": "OuestCharge - Diva Sp - Luçon - Abattoirs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49111, + 46.425529 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85127A", + "ref": "", + "name": "OuestCharge - E-Twin - Longeville-sur-Mer - Clemenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.65902, + 46.6177 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85152A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Mothe-Achard - Hotel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57682, + 46.41642 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85114A", + "ref": "", + "name": "OuestCharge - Diva Sp - Jard-sur-Mer - Langibaudiere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57682, + 46.41642 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85114A", + "ref": "", + "name": "OuestCharge - Diva Sp - Jard-sur-Mer - Langibaudiere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35018, + 46.727699 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85113B", + "ref": "", + "name": "OuestCharge - Diva Sp - L'Ile-d'Yeu - Heliport", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35018, + 46.727699 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85113B", + "ref": "", + "name": "OuestCharge - Diva Sp - L'Ile-d'Yeu - Heliport", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.34753, + 46.724319 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85113A", + "ref": "", + "name": "OuestCharge - Diva Sp - L'Ile-d'Yeu - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.34753, + 46.724319 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85113A", + "ref": "", + "name": "OuestCharge - Diva Sp - L'Ile-d'Yeu - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.01728, + 46.861481 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85109D", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Herbiers - Coubertin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.01728, + 46.861481 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85109D", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Herbiers - Coubertin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.01449, + 46.871368 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85109C", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Herbiers - Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.01449, + 46.871368 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85109C", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Herbiers - Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.00948, + 46.871399 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85109B", + "ref": "", + "name": "OuestCharge - E-Twin - Les Herbiers - Droits de l'Homme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.00948, + 46.871399 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85109B", + "ref": "", + "name": "OuestCharge - E-Twin - Les Herbiers - Droits de l'Homme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.022143, + 46.877453 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85109A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Les Herbiers - Europe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.022143, + 46.877453 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85109A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Les Herbiers - Europe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.65902, + 46.6177 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85152A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Mothe-Achard - Hotel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45963, + 46.72031 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85155A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mouilleron-le-Captif - Oiseaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.235, + 46.96945 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85106A", + "ref": "", + "name": "OuestCharge - E-Twin - La Gueriniere - Pinsonnieres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7726, + 46.541851 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85166D", + "ref": "", + "name": "OuestCharge - Diva Sp - Olonne-Sur-Mer - Bosquets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61386, + 46.74352 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85003A", + "ref": "", + "name": "OuestCharge - Diva Sp - Aizenay - Villeneuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-31", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.60784, + 46.74025 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85003B", + "ref": "", + "name": "OuestCharge - E-Twin - Aizenay - Mutualite", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.60784, + 46.74025 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85003B", + "ref": "", + "name": "OuestCharge - E-Twin - Aizenay - Mutualite", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.390747, + 46.40573 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85004A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Angles - Moricq", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-10", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.390747, + 46.40573 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85004A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Angles - Moricq", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-10", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.390747, + 46.40573 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85004A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Angles - Moricq", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-10", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4523, + 46.596981 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85008A", + "ref": "", + "name": "OuestCharge - Diva Sp - Aubigny - Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4523, + 46.596981 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85008A", + "ref": "", + "name": "OuestCharge - Diva Sp - Aubigny - Pasteur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50769, + 46.767872 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85178B", + "ref": "", + "name": "OuestCharge - E-Twin - Le Poire-sur-Vie - Chapelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50551, + 46.766079 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85178A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Poire-sur-Vie - Brachetiere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.50551, + 46.766079 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85178A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Poire-sur-Vie - Brachetiere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.98991, + 46.819931 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85172A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Perrier - Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.98991, + 46.819931 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85172A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Perrier - Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7726, + 46.541851 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85166D", + "ref": "", + "name": "OuestCharge - Diva Sp - Olonne-Sur-Mer - Bosquets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.778495, + 46.514553 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85166C", + "ref": "", + "name": "OuestCharge - 50 Compact - Olonne-sur-Mer - Leclerc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45963, + 46.72031 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85155A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mouilleron-le-Captif - Oiseaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.778495, + 46.514553 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85166C", + "ref": "", + "name": "OuestCharge - 50 Compact - Olonne-sur-Mer - Leclerc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.778495, + 46.514553 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85166C", + "ref": "", + "name": "OuestCharge - 50 Compact - Olonne-sur-Mer - Leclerc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77327, + 46.53415 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85166B", + "ref": "", + "name": "OuestCharge - E-Twin - Olonne-sur-Mer - Sables", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77327, + 46.53415 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85166B", + "ref": "", + "name": "OuestCharge - E-Twin - Olonne-sur-Mer - Sables", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77019, + 46.506409 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85166A", + "ref": "", + "name": "OuestCharge - Diva Sp - Olonne-sur-Mer - Cedres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.77019, + 46.506409 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85166A", + "ref": "", + "name": "OuestCharge - Diva Sp - Olonne-sur-Mer - Cedres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.131729, + 46.831223 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85164A", + "ref": "", + "name": "OuestCharge - Diva Sp - Notre-Dame-de-Monts - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.131729, + 46.831223 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85164A", + "ref": "", + "name": "OuestCharge - Diva Sp - Notre-Dame-de-Monts - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24947, + 47.000671 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85163A", + "ref": "", + "name": "OuestCharge - Diva Sp - Noirmoutier-en-l'Ile - Pree Aux Ducs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-31", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24947, + 47.000671 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85163A", + "ref": "", + "name": "OuestCharge - Diva Sp - Noirmoutier-en-l'Ile - Pree Aux Ducs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-31", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40227, + 46.5927 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85160A", + "ref": "", + "name": "OuestCharge - E-Twin - Nesmy - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.40227, + 46.5927 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85160A", + "ref": "", + "name": "OuestCharge - E-Twin - Nesmy - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4251, + 46.492908 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85156A", + "ref": "", + "name": "OuestCharge - E-Twin - Moutiers-les-Mauxfaits - Clemenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4251, + 46.492908 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85156A", + "ref": "", + "name": "OuestCharge - E-Twin - Moutiers-les-Mauxfaits - Clemenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.022143, + 46.877453 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85109A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Les Herbiers - Europe", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.235, + 46.96945 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85106A", + "ref": "", + "name": "OuestCharge - E-Twin - La Gueriniere - Pinsonnieres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.119488, + 46.88022 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85012A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - La Barre-de-Monts - Saint-Jean-de-Monts", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-18", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.17294, + 46.63612 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85034A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bournezeau - Papillons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-04", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.864479, + 46.861111 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85047C", + "ref": "", + "name": "OuestCharge - Quick Charger - Challans - Nantes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.864479, + 46.861111 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85047C", + "ref": "", + "name": "OuestCharge - Quick Charger - Challans - Nantes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.864479, + 46.861111 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85047C", + "ref": "", + "name": "OuestCharge - Quick Charger - Challans - Nantes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88028, + 46.84565 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85047B", + "ref": "", + "name": "OuestCharge - E-Twin - Challans - Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-25", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88028, + 46.84565 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85047B", + "ref": "", + "name": "OuestCharge - E-Twin - Challans - Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-25", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.871946, + 46.848647 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85047A", + "ref": "", + "name": "OuestCharge - Diva Sp - Challans - Foirail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.871946, + 46.848647 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85047A", + "ref": "", + "name": "OuestCharge - Diva Sp - Challans - Foirail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29272, + 46.672119 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85046A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chaize-Le-Vicomte - Marche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.29272, + 46.672119 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85046A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chaize-Le-Vicomte - Marche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.02199, + 46.39301 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85042A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chaille-Les-Marais - 8 Mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.02199, + 46.39301 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85042A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chaille-Les-Marais - 8 Mai", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8556, + 46.626759 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85035A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bretignolles-sur-Mer - Halles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8556, + 46.626759 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85035A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bretignolles-sur-Mer - Halles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.17294, + 46.63612 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85034A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bournezeau - Papillons", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-04", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99678, + 46.97329 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85029A", + "ref": "", + "name": "OuestCharge - E-Twin - Bouin - Pelote", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.05157, + 46.686314 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85051A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chantonnay - Jeanne d'Arc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99678, + 46.97329 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85029A", + "ref": "", + "name": "OuestCharge - E-Twin - Bouin - Pelote", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.351041, + 46.957664 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85027A", + "ref": "", + "name": "OuestCharge - 50 Compact - Bouffere - Flechet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.351041, + 46.957664 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85027A", + "ref": "", + "name": "OuestCharge - 50 Compact - Bouffere - Flechet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.351041, + 46.957664 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85027A", + "ref": "", + "name": "OuestCharge - 50 Compact - Bouffere - Flechet", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59512, + 46.36944 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85020A", + "ref": "", + "name": "OuestCharge - Diva Sp - Benet - Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59512, + 46.36944 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85020A", + "ref": "", + "name": "OuestCharge - Diva Sp - Benet - Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.176674, + 46.941901 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85011A", + "ref": "", + "name": "OuestCharge - Diva Sp - Barbatre - Raguideau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-31", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.040817, + 46.914974 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85018A", + "ref": "", + "name": "OuestCharge - Diva Sp - Beauvoir-Sur-Mer - Gallet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.040817, + 46.914974 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85018A", + "ref": "", + "name": "OuestCharge - Diva Sp - Beauvoir-Sur-Mer - Gallet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91576, + 46.657139 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85014A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bazoges-En-Pareds - Clemenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91576, + 46.657139 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85014A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bazoges-En-Pareds - Clemenceau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11937, + 46.88493 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85012B", + "ref": "", + "name": "OuestCharge - Diva Sp - La Barre-De-Monts - Querruy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.11937, + 46.88493 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85012B", + "ref": "", + "name": "OuestCharge - Diva Sp - La Barre-De-Monts - Querruy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.119488, + 46.88022 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85012A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - La Barre-de-Monts - Saint-Jean-de-Monts", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-18", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.879576, + 46.84815 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85047D", + "ref": "", + "name": "OuestCharge - TMC - Challans - Traversiere", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-17", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.05157, + 46.686314 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85051A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chantonnay - Jeanne d'Arc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-05", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83061, + 46.89101 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85096A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Garnache - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22665, + 46.77294 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85084A", + "ref": "", + "name": "OuestCharge - E-Twin - Les Essarts - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83061, + 46.89101 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85096A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Garnache - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80859, + 46.462 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85092D", + "ref": "", + "name": "OuestCharge - Diva Sp - Fontenay-Le-Comte - Guerin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80859, + 46.462 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85092D", + "ref": "", + "name": "OuestCharge - Diva Sp - Fontenay-Le-Comte - Guerin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.176674, + 46.941901 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85011A", + "ref": "", + "name": "OuestCharge - Diva Sp - Barbatre - Raguideau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-31", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80692, + 46.46651 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85092C", + "ref": "", + "name": "OuestCharge - E-Twin - Fontenay-Le-Comte - Thivercay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80221, + 46.462318 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85092B", + "ref": "", + "name": "OuestCharge - Quick Charger - Fontenay-Le-Comte - Chail", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80221, + 46.462318 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85092B", + "ref": "", + "name": "OuestCharge - Quick Charger - Fontenay-Le-Comte - Chail", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80221, + 46.462318 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85092B", + "ref": "", + "name": "OuestCharge - Quick Charger - Fontenay-Le-Comte - Chail", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80378, + 46.468151 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85092A", + "ref": "", + "name": "OuestCharge - E-Twin - Fontenay-Le-Comte - Rouchefoucault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80378, + 46.468151 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85092A", + "ref": "", + "name": "OuestCharge - E-Twin - Fontenay-Le-Comte - Rouchefoucault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31272, + 46.714 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85089A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Ferriere - Marche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31272, + 46.714 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85089A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Ferriere - Marche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23013, + 46.774151 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85084B", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Essarts - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-11", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23013, + 46.774151 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85084B", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Essarts - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-11", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22665, + 46.77294 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85084A", + "ref": "", + "name": "OuestCharge - E-Twin - Les Essarts - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.05423, + 46.689838 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85051B", + "ref": "", + "name": "OuestCharge - Diva Sp - Chantonnay - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38599, + 46.73901 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85081A", + "ref": "", + "name": "OuestCharge - Diva Sp - Dompierre-Sur-Yon - Margerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38599, + 46.73901 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85081A", + "ref": "", + "name": "OuestCharge - Diva Sp - Dompierre-Sur-Yon - Margerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.76012, + 46.69736 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85070A", + "ref": "", + "name": "OuestCharge - Diva Sp - Coex - Brechoteau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.76012, + 46.69736 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85070A", + "ref": "", + "name": "OuestCharge - Diva Sp - Coex - Brechoteau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7591, + 46.481231 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85060B", + "ref": "", + "name": "OuestCharge - E-Twin - Chateau-d'Olonne - Tanchet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7591, + 46.481231 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85060B", + "ref": "", + "name": "OuestCharge - E-Twin - Chateau-d'Olonne - Tanchet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.73754, + 46.504768 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85060A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chateau-d'Olonne - Millet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-11", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.73754, + 46.504768 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85060A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chateau-d'Olonne - Millet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-11", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.74243, + 46.647221 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85059B", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chataigneraie - Republique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.74243, + 46.647221 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85059B", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chataigneraie - Republique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.746495, + 46.646595 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85059A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - La Chataigneraie - Terriers", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.746495, + 46.646595 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85059A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - La Chataigneraie - Terriers", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.746495, + 46.646595 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85059A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - La Chataigneraie - Terriers", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.05423, + 46.689838 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85051B", + "ref": "", + "name": "OuestCharge - Diva Sp - Chantonnay - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61386, + 46.74352 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85003A", + "ref": "", + "name": "OuestCharge - Diva Sp - Aizenay - Villeneuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-31", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.119488, + 46.88022 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "ref:EU:EVSE": "FRS85P85012A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - La Barre-de-Monts - Saint-Jean-de-Monts", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-18", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2154698, + 46.6395865 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18135", + "ref": "", + "name": "Maisonnais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.844376, + 47.1428978 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18103", + "ref": "", + "name": "Gracay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-04", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5261736, + 47.3032144 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18109A", + "ref": "", + "name": "Henrichemont - Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5261736, + 47.3032144 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18109A", + "ref": "", + "name": "Henrichemont - Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9404834, + 46.9397677 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18108B", + "ref": "", + "name": "La Guerche - Netto", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-05-30", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9404834, + 46.9397677 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18108B", + "ref": "", + "name": "La Guerche - Netto", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-05-30", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9488165, + 46.9518797 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18108A", + "ref": "", + "name": "La Guerche sur l Aubois - Place Auguste Fournier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-30", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9488165, + 46.9518797 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18108A", + "ref": "", + "name": "La Guerche sur l Aubois - Place Auguste Fournier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-30", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.844376, + 47.1428978 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18103", + "ref": "", + "name": "Gracay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-04", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4290438, + 47.1450594 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18097", + "ref": "", + "name": "Fussy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5793588, + 47.2856341 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18109B", + "ref": "", + "name": "Henrichemont - la Borne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-09", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4290438, + 47.1450594 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18097", + "ref": "", + "name": "Fussy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1604604, + 47.1786933 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18096", + "ref": "", + "name": "Foecy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-06-07", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1604604, + 47.1786933 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18096", + "ref": "", + "name": "Foecy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-06-07", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6502551, + 47.0732019 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18092", + "ref": "", + "name": "Farges en Septaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-22", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6502551, + 47.0732019 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18092", + "ref": "", + "name": "Farges en Septaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-22", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5836225, + 46.5585226 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18089", + "ref": "", + "name": "Epineuil le Fleuriel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5836225, + 46.5585226 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18089", + "ref": "", + "name": "Epineuil le Fleuriel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5793588, + 47.2856341 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18109B", + "ref": "", + "name": "Henrichemont - la Borne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-09", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9875759, + 47.0455613 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18118", + "ref": "", + "name": "Jouet sur l'Aubois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-09", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4350891, + 47.411948 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18088B", + "ref": "", + "name": "Ennordres - Surprise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-16", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0139462, + 47.067301 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18139", + "ref": "", + "name": "Marseilles les Aubigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-03", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3079044, + 47.4479337 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18147", + "ref": "", + "name": "Ménétréol sur Sauldre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-16", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4902011, + 47.2317681 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18145", + "ref": "", + "name": "Menetou Salon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4902011, + 47.2317681 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18145", + "ref": "", + "name": "Menetou Salon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.219322, + 47.146584 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18141", + "ref": "", + "name": "Mehun-sur-Yévre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.219322, + 47.146584 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18141", + "ref": "", + "name": "Mehun-sur-Yévre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-14", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9958933, + 47.155189 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18140", + "ref": "", + "name": "Massay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9958933, + 47.155189 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18140", + "ref": "", + "name": "Massay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0139462, + 47.067301 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18139", + "ref": "", + "name": "Marseilles les Aubigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-03", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9875759, + 47.0455613 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18118", + "ref": "", + "name": "Jouet sur l'Aubois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-09", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2839464, + 47.10178 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18138A", + "ref": "", + "name": "Marmagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2839464, + 47.10178 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18138A", + "ref": "", + "name": "Marmagne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2154698, + 46.6395865 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18135", + "ref": "", + "name": "Maisonnais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4072566, + 46.9254674 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18126", + "ref": "", + "name": "Levet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4072566, + 46.9254674 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18126", + "ref": "", + "name": "Levet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8750411, + 47.4736226 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18125", + "ref": "", + "name": "Lere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8750411, + 47.4736226 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18125", + "ref": "", + "name": "Lere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4350891, + 47.411948 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18088B", + "ref": "", + "name": "Ennordres - Surprise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-16", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3796366, + 47.4279525 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18088A", + "ref": "", + "name": "Ennordres - Camping", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3881067, + 47.0833417 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033N", + "ref": "", + "name": "Bourges - Juranville - Rue du Champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6196909, + 47.1238181 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18035", + "ref": "", + "name": "Brecy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4319539, + 47.3643481 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18047", + "ref": "", + "name": "La Chapelle d'Angillon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4319539, + 47.3643481 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18047", + "ref": "", + "name": "La Chapelle d'Angillon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1854754, + 46.7931797 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18043", + "ref": "", + "name": "La Celle Conde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-11", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1854754, + 46.7931797 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18043", + "ref": "", + "name": "La Celle Conde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-11", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2527845, + 47.567834 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18037", + "ref": "", + "name": "Brinon sur Sauldre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-16", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2527845, + 47.567834 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18037", + "ref": "", + "name": "Brinon sur Sauldre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-16", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6196909, + 47.1238181 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18035", + "ref": "", + "name": "Brecy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3987131, + 47.0807651 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033S", + "ref": "", + "name": "Bourges - Hôtel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-05", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3216257, + 47.0627442 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18050", + "ref": "", + "name": "La Chapelle St Ursin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3987131, + 47.0807651 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033S", + "ref": "", + "name": "Bourges - Hôtel de Ville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-05", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3690533, + 47.0635477 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033R", + "ref": "", + "name": "Bourges - Parc d'activites Beaulieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-07", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3690533, + 47.0635477 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033R", + "ref": "", + "name": "Bourges - Parc d'activites Beaulieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-07", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3986157, + 47.0789921 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033Q", + "ref": "", + "name": "Bourges - Seraucourt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-02", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3986157, + 47.0789921 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033Q", + "ref": "", + "name": "Bourges - Seraucourt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-02", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4145031, + 47.0817266 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033P", + "ref": "", + "name": "Bourges - Rue Maurice Roy", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-07-12", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4155377, + 47.0814423 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033O", + "ref": "", + "name": "Bourges - Technopôle Lahitolle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3216257, + 47.0627442 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18050", + "ref": "", + "name": "La Chapelle St Ursin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1174549, + 46.9924213 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18055", + "ref": "", + "name": "Charost", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-11", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3796366, + 47.4279525 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18088A", + "ref": "", + "name": "Ennordres - Camping", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0317329, + 47.0256552 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18075", + "ref": "", + "name": "Cours les Barres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-03", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5651538, + 46.8828722 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18087", + "ref": "", + "name": "Dun sur Auron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-12", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5651538, + 46.8828722 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18087", + "ref": "", + "name": "Dun sur Auron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-12", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3465169, + 46.5471416 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18083", + "ref": "", + "name": "Culan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3465169, + 46.5471416 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18083", + "ref": "", + "name": "Culan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0676172, + 46.9472749 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18082", + "ref": "", + "name": "Cuffy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-01", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0676172, + 46.9472749 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18082", + "ref": "", + "name": "Cuffy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-01", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0317329, + 47.0256552 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18075", + "ref": "", + "name": "Cours les Barres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-03", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1164165, + 46.8267421 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18065", + "ref": "", + "name": "Chezal Benoit", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-09-09", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1174549, + 46.9924213 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18055", + "ref": "", + "name": "Charost", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-11", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1164165, + 46.8267421 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18065", + "ref": "", + "name": "Chezal Benoit", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-09-09", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2834187, + 46.6423156 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18059", + "ref": "", + "name": "Le Chatelet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2834187, + 46.6423156 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18059", + "ref": "", + "name": "Le Chatelet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3192016, + 46.85747 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18058", + "ref": "", + "name": "Chateauneuf sur Cher", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-06", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3192016, + 46.85747 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18058", + "ref": "", + "name": "Chateauneuf sur Cher", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-06", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2010838, + 46.5621523 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18057", + "ref": "", + "name": "Chateaumeillant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2010838, + 46.5621523 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18057", + "ref": "", + "name": "Chateaumeillant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3079044, + 47.4479337 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18147", + "ref": "", + "name": "Ménétréol sur Sauldre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-16", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0500585, + 47.1626718 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18148", + "ref": "", + "name": "Mereau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-10-15", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0500585, + 47.1626718 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18148", + "ref": "", + "name": "Mereau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-10-15", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9115779, + 47.1572062 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18240", + "ref": "", + "name": "Sancergues", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.935038, + 47.254776 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18263", + "ref": "", + "name": "Thenioux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.935038, + 47.254776 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18263", + "ref": "", + "name": "Thenioux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9214142, + 46.8295479 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18242", + "ref": "", + "name": "Sancoins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-16", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9214142, + 46.8295479 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18242", + "ref": "", + "name": "Sancoins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-16", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8365479, + 47.331518 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18241", + "ref": "", + "name": "Sancerre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-09-14", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8365479, + 47.331518 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18241", + "ref": "", + "name": "Sancerre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-09-14", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9115779, + 47.1572062 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18240", + "ref": "", + "name": "Sancergues", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2018356, + 47.0811526 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18237", + "ref": "", + "name": "Ste Thorette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-05-29", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3580642, + 47.0101595 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18267", + "ref": "", + "name": "Trouy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2018356, + 47.0811526 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18237", + "ref": "", + "name": "Ste Thorette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-05-29", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8578603, + 47.3369104 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18233", + "ref": "", + "name": "St Satur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8578603, + 47.3369104 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18233", + "ref": "", + "name": "St Satur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4180206, + 47.204208 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18223", + "ref": "", + "name": "St Martin d Auxigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4180206, + 47.204208 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18223", + "ref": "", + "name": "St Martin d Auxigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.509975, + 46.9923185 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18218", + "ref": "", + "name": "St Just", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.509975, + 46.9923185 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18218", + "ref": "", + "name": "St Just", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3580642, + 47.0101595 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18267", + "ref": "", + "name": "Trouy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6508327, + 47.4583069 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18269", + "ref": "", + "name": "Vailly sur Sauldre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1957124, + 47.3504379 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18159", + "ref": "", + "name": "Nançay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-13", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0691079, + 47.221537 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18279B", + "ref": "", + "name": "Vierzon - Place Fernand Micouraud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-02", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0676642, + 47.2457138 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18279E", + "ref": "", + "name": "Vierzon - Parc d'Activites", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-02", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0676642, + 47.2457138 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18279E", + "ref": "", + "name": "Vierzon - Parc d'Activites", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-02", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0600808, + 47.2260602 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18279D", + "ref": "", + "name": "Vierzon - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-01", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0600808, + 47.2260602 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18279D", + "ref": "", + "name": "Vierzon - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-01", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0986401, + 47.2179487 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18279C", + "ref": "", + "name": "Vierzon - Place Ancienne Mairie des Forges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-14", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0986401, + 47.2179487 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18279C", + "ref": "", + "name": "Vierzon - Place Ancienne Mairie des Forges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-14", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0691079, + 47.221537 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18279B", + "ref": "", + "name": "Vierzon - Place Fernand Micouraud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-02", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.064954, + 47.222651 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18279A", + "ref": "", + "name": "Vierzon - Parking Gaucherie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-02", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6508327, + 47.4583069 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18269", + "ref": "", + "name": "Vailly sur Sauldre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.064954, + 47.222651 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18279A", + "ref": "", + "name": "Vierzon - Parking Gaucherie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-02", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4326471, + 46.5387678 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18278", + "ref": "", + "name": "Vesdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4326471, + 46.5387678 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18278", + "ref": "", + "name": "Vesdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7572507, + 47.2576027 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18272", + "ref": "", + "name": "Veaugues", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-02", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7572507, + 47.2576027 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18272", + "ref": "", + "name": "Veaugues", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-02", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3707813, + 46.8011587 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18270", + "ref": "", + "name": "Vallenay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-18", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3707813, + 46.8011587 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18270", + "ref": "", + "name": "Vallenay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-18", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8885775, + 47.0447626 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18215", + "ref": "", + "name": "St Hilaire de Gondilly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-03", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8885775, + 47.0447626 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18215", + "ref": "", + "name": "St Hilaire de Gondilly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-03", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4826762, + 47.1001602 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18213", + "ref": "", + "name": "St Germain du Puy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4821, + 46.72504 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18172", + "ref": "", + "name": "Orval", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-31", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6852991, + 46.9695843 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18191", + "ref": "", + "name": "Raymond", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-10", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2541854, + 46.4339652 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18187", + "ref": "", + "name": "Preveranges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2541854, + 46.4339652 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18187", + "ref": "", + "name": "Preveranges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4522788, + 46.9980069 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18180", + "ref": "", + "name": "Plaimpied Givaudins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4522788, + 46.9980069 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18180", + "ref": "", + "name": "Plaimpied Givaudins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.784353, + 46.9306179 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18175", + "ref": "", + "name": "Ourouer les Bourdelins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-24", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.784353, + 46.9306179 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18175", + "ref": "", + "name": "Ourouer les Bourdelins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-24", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4821, + 46.72504 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18172", + "ref": "", + "name": "Orval", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-31", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4826762, + 47.1001602 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18213", + "ref": "", + "name": "St Germain du Puy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.419985, + 46.714819 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18171", + "ref": "", + "name": "Orcenais ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-04", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.419985, + 46.714819 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18171", + "ref": "", + "name": "Orcenais ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-04", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2548729, + 47.3148464 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18165", + "ref": "", + "name": "Neuvy sur Barangeon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-10-05", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2548729, + 47.3148464 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18165", + "ref": "", + "name": "Neuvy sur Barangeon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-10-05", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8114988, + 46.9973881 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18160", + "ref": "", + "name": "Nerondes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-09", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8114988, + 46.9973881 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18160", + "ref": "", + "name": "Nerondes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-09", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1957124, + 47.3504379 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18159", + "ref": "", + "name": "Nançay", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-13", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6852991, + 46.9695843 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18191", + "ref": "", + "name": "Raymond", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-10", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3515222, + 46.5770422 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18192", + "ref": "", + "name": "Reigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3515222, + 46.5770422 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18192", + "ref": "", + "name": "Reigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6134124, + 47.1853353 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18194", + "ref": "", + "name": "Rians", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-24", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2658983, + 47.004323 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18207B", + "ref": "", + "name": "St Florent - Rue de la Vigonnière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-08", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2658983, + 47.004323 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18207B", + "ref": "", + "name": "St Florent - Rue de la Vigonnière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-08", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2447831, + 46.9925471 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18207A", + "ref": "", + "name": "St Florent - Place de la Republique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-08", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2447831, + 46.9925471 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18207A", + "ref": "", + "name": "St Florent - Place de la Republique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-08", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3731237, + 47.1012245 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18205B", + "ref": "", + "name": "St Doulchard - Parking2 - de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3731237, + 47.1012245 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18205B", + "ref": "", + "name": "St Doulchard - Parking2 - de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3729787, + 47.101045 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18205A", + "ref": "", + "name": "St Doulchard - Parking1 - Chaperon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3729787, + 47.101045 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18205A", + "ref": "", + "name": "St Doulchard - Parking1 - Chaperon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-21", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49495, + 46.725562 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18197C", + "ref": "", + "name": "St Amand Montrond - Hôpital ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-13", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49495, + 46.725562 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18197C", + "ref": "", + "name": "St Amand Montrond - Hôpital ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-13", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5072402, + 46.7209067 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18197B", + "ref": "", + "name": "St Amand Montrond - Cour Manuel 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-04", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5072402, + 46.7209067 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18197B", + "ref": "", + "name": "St Amand Montrond - Cour Manuel 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-04", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.505091, + 46.721011 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18197A", + "ref": "", + "name": "St Amand Montrond - Cour Manuel 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-04", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.505091, + 46.721011 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18197A", + "ref": "", + "name": "St Amand Montrond - Cour Manuel 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-04", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6134124, + 47.1853353 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18194", + "ref": "", + "name": "Rians", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-24", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4155377, + 47.0814423 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033O", + "ref": "", + "name": "Bourges - Technopôle Lahitolle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3831938, + 47.0828204 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033M", + "ref": "", + "name": "Bourges - Prado - Rue du Pre Doulet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3881067, + 47.0833417 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033N", + "ref": "", + "name": "Bourges - Juranville - Rue du Champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8732176, + 47.4239562 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18032", + "ref": "", + "name": "Boulleret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-09-09", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7306654, + 46.8956458 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18031", + "ref": "", + "name": "Blet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7306654, + 46.8956458 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18031", + "ref": "", + "name": "Blet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5285667, + 47.5322031 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18030", + "ref": "", + "name": "Blancafort", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-16", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5285667, + 47.5322031 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18030", + "ref": "", + "name": "Blancafort", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-16", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7294331, + 47.0822449 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18023", + "ref": "", + "name": "Baugy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-22", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7294331, + 47.0822449 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18023", + "ref": "", + "name": "Baugy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-22", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7134376, + 46.8010561 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18021", + "ref": "", + "name": "Bannegon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-12", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7134376, + 46.8010561 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18021", + "ref": "", + "name": "Bannegon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-12", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6519766, + 47.0327243 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18018B", + "ref": "", + "name": "Avord - Parking des Alouettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-22", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6519766, + 47.0327243 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18018B", + "ref": "", + "name": "Avord - Parking des Alouettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-22", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.653584, + 47.0357121 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18018A", + "ref": "", + "name": "Avord - Place de la salle des fetes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-22", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.441539, + 47.489301 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18015B", + "ref": "", + "name": "Aubigny - Place de la resistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.441539, + 47.489301 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18015B", + "ref": "", + "name": "Aubigny - Place de la resistance", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4378559, + 47.4912269 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18015A", + "ref": "", + "name": "Aubigny - Palais omnisports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-16", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4378559, + 47.4912269 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18015A", + "ref": "", + "name": "Aubigny - Palais omnisports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-16", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4470023, + 47.5592618 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18011", + "ref": "", + "name": "Argent sur Sauldre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4470023, + 47.5592618 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18011", + "ref": "", + "name": "Argent sur Sauldre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0463252, + 46.9075846 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18007", + "ref": "", + "name": "Apremont sur Allier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-09-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0463252, + 46.9075846 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18007", + "ref": "", + "name": "Apremont sur Allier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-09-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3184789, + 47.2257841 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18004", + "ref": "", + "name": "Allogny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3184789, + 47.2257841 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18004", + "ref": "", + "name": "Allogny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5656172, + 47.1950266 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18003", + "ref": "", + "name": "Les Aix d'Angillon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-07", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5656172, + 47.1950266 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18003", + "ref": "", + "name": "Les Aix d'Angillon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-07", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.8732176, + 47.4239562 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18032", + "ref": "", + "name": "Boulleret", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2015-09-09", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.653584, + 47.0357121 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18018A", + "ref": "", + "name": "Avord - Place de la salle des fetes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-22", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390722, + 47.0840408 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033A", + "ref": "", + "name": "Bourges - Place de la Nation", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4030391, + 47.0818529 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033G", + "ref": "", + "name": "Bourges - Parking Anatole France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390722, + 47.0840408 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033A", + "ref": "", + "name": "Bourges - Place de la Nation", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3831938, + 47.0828204 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033M", + "ref": "", + "name": "Bourges - Prado - Rue du Pre Doulet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3999656, + 47.091359 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033L", + "ref": "", + "name": "Bourges - Parking Coubertin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3999656, + 47.091359 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033L", + "ref": "", + "name": "Bourges - Parking Coubertin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3928684, + 47.0966819 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033K", + "ref": "", + "name": "Bourges - Parc d'activites COMITEC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3928684, + 47.0966819 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033K", + "ref": "", + "name": "Bourges - Parc d'activites COMITEC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4314384, + 47.0960894 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033J", + "ref": "", + "name": "Bourges - Parc d'activites Esprit 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3904936, + 47.0771742 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033I", + "ref": "", + "name": "Bourges - Plateau Auron - Rue Edmond Jongleux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3904936, + 47.0771742 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033I", + "ref": "", + "name": "Bourges - Plateau Auron - Rue Edmond Jongleux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4098364, + 47.1034552 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033H", + "ref": "", + "name": "Bourges - Parking Cap Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4098364, + 47.1034552 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033H", + "ref": "", + "name": "Bourges - Parking Cap Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4314384, + 47.0960894 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033J", + "ref": "", + "name": "Bourges - Parc d'activites Esprit 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4026873, + 47.1240694 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033C", + "ref": "", + "name": "Bourges - Parking du 14 juillet Asnieres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4187137, + 47.0770328 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033F", + "ref": "", + "name": "Bourges - Place de la pyrotechnie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4187137, + 47.0770328 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033F", + "ref": "", + "name": "Bourges - Place de la pyrotechnie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3749338, + 47.0690597 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033E", + "ref": "", + "name": "Bourges - Cimetiere du Lautier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3749338, + 47.0690597 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033E", + "ref": "", + "name": "Bourges - Cimetiere du Lautier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4045651, + 47.1055485 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033D", + "ref": "", + "name": "Bourges - Cothenet - Rue Paul Gaucherie Chanceller", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4045651, + 47.1055485 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033D", + "ref": "", + "name": "Bourges - Cothenet - Rue Paul Gaucherie Chanceller", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4026873, + 47.1240694 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033C", + "ref": "", + "name": "Bourges - Parking du 14 juillet Asnieres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-17", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3983808, + 47.063062 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033B", + "ref": "", + "name": "Bourges - Parking Val d'Auron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4030391, + 47.0818529 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033G", + "ref": "", + "name": "Bourges - Parking Anatole France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-20", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3983808, + 47.063062 + ] + }, + "properties": { + "operator": "Modulo énergies", + "owner:ref:FR:SIREN": "241800549", + "email": "contact@modulo-energies.fr", + "phone": "0800373740", + "network": "Modulo", + "ref:EU:EVSE": "FRS18P18033B", + "ref": "", + "name": "Bourges - Parking Val d'Auron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-27", + "note": "Paiement via badge et smarthphone", + "source:date": "2023-06-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.009537, + 49.14109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQETEMVQZCG", + "ref": "QETEMVQZCG", + "name": "Notre-Dame-d'Estrées-Corbon, Carrefour Saint-Jean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567159, + 49.121574 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PX76NRT9OK4", + "ref": "X76NRT9OK4", + "name": "Val d'Arry, Place de l'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567159, + 49.121574 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PX76NRT9OK4", + "ref": "X76NRT9OK4", + "name": "Val d'Arry, Place de l'Église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.257186, + 49.277668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PSWIRJOHWIU", + "ref": "SWIRJOHWIU", + "name": "Ouistreham, Avenue du Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.405121, + 49.023678 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTTTLWP8ERC", + "ref": "TTTLWP8ERC", + "name": "Orbec, Boulevard de Beauvoir 27", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.009537, + 49.14109 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQETEMVQZCG", + "ref": "QETEMVQZCG", + "name": "Notre-Dame-d'Estrées-Corbon, Carrefour Saint-Jean", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.405121, + 49.023678 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTTTLWP8ERC", + "ref": "TTTLWP8ERC", + "name": "Orbec, Boulevard de Beauvoir 27", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.257186, + 49.277668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PSWIRJOHWIU", + "ref": "SWIRJOHWIU", + "name": "Ouistreham, Avenue du Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.405064, + 49.020981 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQ7PXNU5TGT", + "ref": "Q7PXNU5TGT", + "name": "Orbec, Place Maréchal Foch 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.405064, + 49.020981 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQ7PXNU5TGT", + "ref": "Q7PXNU5TGT", + "name": "Orbec, Place Maréchal Foch 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.224748, + 49.182022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14POW2ZNJNSGE", + "ref": "OW2ZNJNSGE", + "name": "Ouilly-le-Vicomte, Route de Deauville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.224748, + 49.182022 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14POW2ZNJNSGE", + "ref": "OW2ZNJNSGE", + "name": "Ouilly-le-Vicomte, Route de Deauville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.242383, + 49.198738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PNJAYNI3IS5", + "ref": "NJAYNI3IS5", + "name": "Norolles, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.242383, + 49.198738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PNJAYNI3IS5", + "ref": "NJAYNI3IS5", + "name": "Norolles, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.317765, + 49.178341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMRZST8CYGX", + "ref": "MRZST8CYGX", + "name": "Mondeville, Rue Calmette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.357187, + 49.19585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PSRFJICA7UF", + "ref": "SRFJICA7UF", + "name": "Moyaux, Rue Gustave Flaubert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.357187, + 49.19585 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PSRFJICA7UF", + "ref": "SRFJICA7UF", + "name": "Moyaux, Rue Gustave Flaubert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.167836, + 49.116592 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQE0UDZRZSN", + "ref": "QE0UDZRZSN", + "name": "Moult-Chicheboville, Route de Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.167836, + 49.116592 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQE0UDZRZSN", + "ref": "QE0UDZRZSN", + "name": "Moult-Chicheboville, Route de Paris", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.073741, + 48.924759 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PDKNJSCFR5M", + "ref": "DKNJSCFR5M", + "name": "Morteaux-Coulibœuf, Rue du stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.073741, + 48.924759 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PDKNJSCFR5M", + "ref": "DKNJSCFR5M", + "name": "Morteaux-Coulibœuf, Rue du stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.768018, + 48.920078 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PXJGG1BX1BV", + "ref": "XJGG1BX1BV", + "name": "Valdallière, Rue de la liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.768018, + 48.920078 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PXJGG1BX1BV", + "ref": "XJGG1BX1BV", + "name": "Valdallière, Rue de la liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.318416, + 49.172173 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGTOZBG9FBP", + "ref": "GTOZBG9FBP", + "name": "Mondeville, Rue Emile Zola 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.318416, + 49.172173 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGTOZBG9FBP", + "ref": "GTOZBG9FBP", + "name": "Mondeville, Rue Emile Zola 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.317765, + 49.178341 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMRZST8CYGX", + "ref": "MRZST8CYGX", + "name": "Mondeville, Rue Calmette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.073146, + 49.071609 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMNMLPFSE3R", + "ref": "MNMLPFSE3R", + "name": "Mézidon Vallée d'Auge, Rue Voltaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.258216, + 49.288376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PULAU7GGFK3", + "ref": "ULAU7GGFK3", + "name": "Ouistreham, Place Alfred Thomas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.258216, + 49.288376 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PULAU7GGFK3", + "ref": "ULAU7GGFK3", + "name": "Ouistreham, Place Alfred Thomas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.220241, + 49.178085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PZUIJICJJYI", + "ref": "ZUIJICJJYI", + "name": "Saline, Rue du maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.250781, + 49.278812 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRKAVXVKURO", + "ref": "RKAVXVKURO", + "name": "Ouistreham, Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.259154, + 49.23476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGHMUTKEBFR", + "ref": "GHMUTKEBFR", + "name": "Ranville, Rue de la Vallée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.649742, + 49.292091 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PZ454AWT7LX", + "ref": "Z454AWT7LX", + "name": "Sommervieu, Rue Saint-Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.649742, + 49.292091 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PZ454AWT7LX", + "ref": "Z454AWT7LX", + "name": "Sommervieu, Rue Saint-Pierre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.082768, + 49.136223 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEINYNUPISK", + "ref": "EINYNUPISK", + "name": "Méry-Bissières-en-Auge, Place Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.220241, + 49.178085 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PZUIJICJJYI", + "ref": "ZUIJICJJYI", + "name": "Saline, Rue du maréchal Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.838209, + 48.83251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PO0GXWLZLG0", + "ref": "O0GXWLZLG0", + "name": "Vire Normandie, Rue de la Mairie 14", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.739149, + 49.02071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PKWSB5QN7ZK", + "ref": "KWSB5QN7ZK", + "name": "Dialan sur Chaîne, Impasse de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.838209, + 48.83251 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PO0GXWLZLG0", + "ref": "O0GXWLZLG0", + "name": "Vire Normandie, Rue de la Mairie 14", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.476986, + 49.205502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVRHCX96IT0", + "ref": "VRHCX96IT0", + "name": "Rots, Rue Haute Bonny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.476986, + 49.205502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVRHCX96IT0", + "ref": "VRHCX96IT0", + "name": "Rots, Rue Haute Bonny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.471729, + 49.199406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBKNQO1ST1J", + "ref": "BKNQO1ST1J", + "name": "Rots, Route de Caen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.471729, + 49.199406 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBKNQO1ST1J", + "ref": "BKNQO1ST1J", + "name": "Rots, Route de Caen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.259154, + 49.23476 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGHMUTKEBFR", + "ref": "GHMUTKEBFR", + "name": "Ranville, Rue de la Vallée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.242004, + 48.96925 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRH6ES7OMSP", + "ref": "RH6ES7OMSP", + "name": "Potigny, Rue du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.250781, + 49.278812 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRKAVXVKURO", + "ref": "RKAVXVKURO", + "name": "Ouistreham, Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.242004, + 48.96925 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRH6ES7OMSP", + "ref": "RH6ES7OMSP", + "name": "Potigny, Rue du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51847393, + 48.86885129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PO5K3TST9TA", + "ref": "O5K3TST9TA", + "name": "Saint-Denis-de-Méré, D562", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51847393, + 48.86885129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PO5K3TST9TA", + "ref": "O5K3TST9TA", + "name": "Saint-Denis-de-Méré, D562", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51847393, + 48.86885129 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PO5K3TST9TA", + "ref": "O5K3TST9TA", + "name": "Saint-Denis-de-Méré, D562", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753076, + 49.34211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PES3CPUZTN9", + "ref": "ES3CPUZTN9", + "name": "Port-en-Bessin-Huppain, Avenue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753076, + 49.34211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PES3CPUZTN9", + "ref": "ES3CPUZTN9", + "name": "Port-en-Bessin-Huppain, Avenue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197402, + 49.287834 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJX4EPALWZ9", + "ref": "JX4EPALWZ9", + "name": "Pont-l'Évêque, Rue Georges Clemenceau 42", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197402, + 49.287834 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJX4EPALWZ9", + "ref": "JX4EPALWZ9", + "name": "Pont-l'Évêque, Rue Georges Clemenceau 42", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.186472, + 49.285782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVRSXXFSM8G", + "ref": "VRSXXFSM8G", + "name": "Pont-l'Évêque, Place du Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.186472, + 49.285782 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVRSXXFSM8G", + "ref": "VRSXXFSM8G", + "name": "Pont-l'Évêque, Place du Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.411662, + 48.872952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEKPWNBEKEL", + "ref": "EKPWNBEKEL", + "name": "Pont-d'Ouilly, Rue du Stade René Vallée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.411662, + 48.872952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEKPWNBEKEL", + "ref": "EKPWNBEKEL", + "name": "Pont-d'Ouilly, Rue du Stade René Vallée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.073146, + 49.071609 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMNMLPFSE3R", + "ref": "MNMLPFSE3R", + "name": "Mézidon Vallée d'Auge, Rue Voltaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.268813, + 49.146912 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PNNOGALD1MD", + "ref": "NNOGALD1MD", + "name": "Lisieux, Rue Nicolas Dulong 102", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.082768, + 49.136223 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEINYNUPISK", + "ref": "EINYNUPISK", + "name": "Méry-Bissières-en-Auge, Place Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.84048, + 48.937435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQM29QD00GP", + "ref": "QM29QD00GP", + "name": "Souleuvre en Bocage, Rue du Chanoine Cochard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.314508, + 49.302155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQRFJYJHILI", + "ref": "QRFJYJHILI", + "name": "Lion-sur-Mer, Rue du 18 juin 1940", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.314508, + 49.302155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQRFJYJHILI", + "ref": "QRFJYJHILI", + "name": "Lion-sur-Mer, Rue du 18 juin 1940", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.789644, + 49.219543 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRLM6CEWDCK", + "ref": "RLM6CEWDCK", + "name": "Le Tronquay, La Tuilerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.789644, + 49.219543 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRLM6CEWDCK", + "ref": "RLM6CEWDCK", + "name": "Le Tronquay, La Tuilerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.830717, + 48.965939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTKVDATEIGS", + "ref": "TKVDATEIGS", + "name": "Souleuvre en Bocage, Le bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.830717, + 48.965939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTKVDATEIGS", + "ref": "TKVDATEIGS", + "name": "Souleuvre en Bocage, Le bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.869728, + 49.242004 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCTHD3M2P9Z", + "ref": "CTHD3M2P9Z", + "name": "Le Molay-Littry, Le Haut Varet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.869728, + 49.242004 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCTHD3M2P9Z", + "ref": "CTHD3M2P9Z", + "name": "Le Molay-Littry, Le Haut Varet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.545198, + 49.195198 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLJYDD69MZG", + "ref": "LJYDD69MZG", + "name": "Thue et Mue, Rue du 11 Juin 1944", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.545198, + 49.195198 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLJYDD69MZG", + "ref": "LJYDD69MZG", + "name": "Thue et Mue, Rue du 11 Juin 1944", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29001, + 49.108196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGH4NB90TR9", + "ref": "GH4NB90TR9", + "name": "Le Mesnil-Guillaume, Route d'Orbec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29001, + 49.108196 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGH4NB90TR9", + "ref": "GH4NB90TR9", + "name": "Le Mesnil-Guillaume, Route d'Orbec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.84048, + 48.937435 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQM29QD00GP", + "ref": "QM29QD00GP", + "name": "Souleuvre en Bocage, Rue du Chanoine Cochard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PYGKZQ5NRRM", + "ref": "YGKZQ5NRRM", + "name": "Lisieux, Rue des Blanches Portes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369945, + 49.325378 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PL7FSMQ3K4U", + "ref": "L7FSMQ3K4U", + "name": "Langrune-sur-Mer, Rue du Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369945, + 49.325378 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PL7FSMQ3K4U", + "ref": "L7FSMQ3K4U", + "name": "Langrune-sur-Mer, Rue du Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.419354, + 49.024189 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PH9D6ILYVTS", + "ref": "H9D6ILYVTS", + "name": "La Vespière-Friardel, Beausoleil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.419354, + 49.024189 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PH9D6ILYVTS", + "ref": "H9D6ILYVTS", + "name": "La Vespière-Friardel, Beausoleil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.269149, + 49.408573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PE4PPW00CLV", + "ref": "E4PPW00CLV", + "name": "La Rivière-Saint-Sauveur, Rue du Port 44", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.269149, + 49.408573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PE4PPW00CLV", + "ref": "E4PPW00CLV", + "name": "La Rivière-Saint-Sauveur, Rue du Port 44", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.883248, + 48.893047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14POIGASENV23", + "ref": "OIGASENV23", + "name": "Souleuvre en Bocage, Place de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.883248, + 48.893047 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14POIGASENV23", + "ref": "OIGASENV23", + "name": "Souleuvre en Bocage, Place de la gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35496471, + 49.32043809 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PUX6T6V86EB", + "ref": "UX6T6V86EB", + "name": "Luc-sur-Mer, Rue Guynemer", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35496471, + 49.32043809 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PUX6T6V86EB", + "ref": "UX6T6V86EB", + "name": "Luc-sur-Mer, Rue Guynemer", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35496471, + 49.32043809 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PUX6T6V86EB", + "ref": "UX6T6V86EB", + "name": "Luc-sur-Mer, Rue Guynemer", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753121, + 49.002502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PS0QPPXPGJG", + "ref": "S0QPPXPGJG", + "name": "Dialan sur Chaîne, La Butte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PYGKZQ5NRRM", + "ref": "YGKZQ5NRRM", + "name": "Lisieux, Rue des Blanches Portes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTUU49NLCLV", + "ref": "TUU49NLCLV", + "name": "Lisieux, Rue des Blanches Portes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20465, + 49.279522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PPMGS18OQBS", + "ref": "PMGS18OQBS", + "name": "Merville-Franceville-Plage, Boulevard Wattier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.765131, + 49.108475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLXEN3QKGGW", + "ref": "LXEN3QKGGW", + "name": "Caumont-sur-Aure, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20465, + 49.279522 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PPMGS18OQBS", + "ref": "PMGS18OQBS", + "name": "Merville-Franceville-Plage, Boulevard Wattier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.373516, + 49.254955 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQTJUNHZSQB", + "ref": "QTJUNHZSQB", + "name": "Mathieu, Rue de la Chaussée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.373516, + 49.254955 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQTJUNHZSQB", + "ref": "QTJUNHZSQB", + "name": "Mathieu, Rue de la Chaussée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371768, + 49.138321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PUW8EXZVJSE", + "ref": "UW8EXZVJSE", + "name": "Marolles, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371768, + 49.138321 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PUW8EXZVJSE", + "ref": "UW8EXZVJSE", + "name": "Marolles, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422221, + 49.128597 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRJC5UJDFHM", + "ref": "RJC5UJDFHM", + "name": "Maltot, Rue du Dorset", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422221, + 49.128597 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRJC5UJDFHM", + "ref": "RJC5UJDFHM", + "name": "Maltot, Rue du Dorset", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.351417, + 49.318889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQ7EG4SVFR8", + "ref": "Q7EG4SVFR8", + "name": "Luc-sur-Mer, Rue du Général Dubail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.351417, + 49.318889 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQ7EG4SVFR8", + "ref": "Q7EG4SVFR8", + "name": "Luc-sur-Mer, Rue du Général Dubail", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.399309, + 49.160816 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQ8JNTUN4KO", + "ref": "Q8JNTUN4KO", + "name": "Louvigny, Rue Edouard Boubat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.399309, + 49.160816 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQ8JNTUN4KO", + "ref": "Q8JNTUN4KO", + "name": "Louvigny, Rue Edouard Boubat", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.765131, + 49.108475 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLXEN3QKGGW", + "ref": "LXEN3QKGGW", + "name": "Caumont-sur-Aure, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.149838, + 49.004524 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PHYNZH5Z54R", + "ref": "HYNZH5Z54R", + "name": "Livarot-Pays-d'Auge, Place Georges Bisson", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTUU49NLCLV", + "ref": "TUU49NLCLV", + "name": "Lisieux, Rue des Blanches Portes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.149838, + 49.004524 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PHYNZH5Z54R", + "ref": "HYNZH5Z54R", + "name": "Livarot-Pays-d'Auge, Place Georges Bisson", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80973, + 48.929178 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLSL7IGJCKA", + "ref": "LSL7IGJCKA", + "name": "Souleuvre En Bocage, Rue de la Bruyère", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80973, + 48.929178 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLSL7IGJCKA", + "ref": "LSL7IGJCKA", + "name": "Souleuvre En Bocage, Rue de la Bruyère", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80973, + 48.929178 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLSL7IGJCKA", + "ref": "LSL7IGJCKA", + "name": "Souleuvre En Bocage, Rue de la Bruyère", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15161, + 49.005394 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTDEMGY1AN7", + "ref": "TDEMGY1AN7", + "name": "Livarot-Pays-d'Auge, Place Xavier de Maistre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15161, + 49.005394 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTDEMGY1AN7", + "ref": "TDEMGY1AN7", + "name": "Livarot-Pays-d'Auge, Place Xavier de Maistre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.221156, + 49.143112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PZJXRR5YPFP", + "ref": "ZJXRR5YPFP", + "name": "Lisieux, Rue du Gaz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.221156, + 49.143112 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PZJXRR5YPFP", + "ref": "ZJXRR5YPFP", + "name": "Lisieux, Rue du Gaz", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.268813, + 49.146912 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PNNOGALD1MD", + "ref": "NNOGALD1MD", + "name": "Lisieux, Rue Nicolas Dulong 102", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298521, + 49.073658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRTYRGHNJ1K", + "ref": "RTYRGHNJ1K", + "name": "Le Castelet, Chemin de la Jalousie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJJ44TQLKVR", + "ref": "JJ44TQLKVR", + "name": "Lisieux, Rue des Blanches Portes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJJ44TQLKVR", + "ref": "JJ44TQLKVR", + "name": "Lisieux, Rue des Blanches Portes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298521, + 49.073658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRTYRGHNJ1K", + "ref": "RTYRGHNJ1K", + "name": "Le Castelet, Chemin de la Jalousie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.606036, + 48.857273 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PKIWGD0YPCW", + "ref": "KIWGD0YPCW", + "name": "Condé-en-Normandie, Route de Vassy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09212, + 49.338612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PW0OVAVEOX2", + "ref": "W0OVAVEOX2", + "name": "Saint-Arnoult, Avenue Michel d'Ornano", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09212, + 49.338612 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PW0OVAVEOX2", + "ref": "W0OVAVEOX2", + "name": "Saint-Arnoult, Avenue Michel d'Ornano", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.672848, + 48.853397 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PWRQX6K3RY5", + "ref": "WRQX6K3RY5", + "name": "Valdallière, Rue Joseph Requeut 46", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.292248, + 49.024796 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PUTD4TMRIWV", + "ref": "UTD4TMRIWV", + "name": "Urville, Route de Langannerie/D131", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.292248, + 49.024796 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PUTD4TMRIWV", + "ref": "UTD4TMRIWV", + "name": "Urville, Route de Langannerie/D131", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.493794, + 49.077198 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTRYMDJ3CBV", + "ref": "TRYMDJ3CBV", + "name": "Sainte-Honorine-du-Fay, Rue du Tour de Ville", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.493794, + 49.077198 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTRYMDJ3CBV", + "ref": "TRYMDJ3CBV", + "name": "Sainte-Honorine-du-Fay, Rue du Tour de Ville", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.493794, + 49.077198 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTRYMDJ3CBV", + "ref": "TRYMDJ3CBV", + "name": "Sainte-Honorine-du-Fay, Rue du Tour de Ville", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05630619, + 49.25483875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PB5J7TXK8V7", + "ref": "B5J7TXK8V7", + "name": "Annebault, Route de Lisieux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05630619, + 49.25483875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PB5J7TXK8V7", + "ref": "B5J7TXK8V7", + "name": "Annebault, Route de Lisieux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05630619, + 49.25483875 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PB5J7TXK8V7", + "ref": "B5J7TXK8V7", + "name": "Annebault, Route de Lisieux", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.080297, + 49.36565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PIHLSGMESO6", + "ref": "IHLSGMESO6", + "name": "Trouville-sur-Mer, Boulevard Fernand Moureaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.080297, + 49.36565 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PIHLSGMESO6", + "ref": "IHLSGMESO6", + "name": "Trouville-sur-Mer, Boulevard Fernand Moureaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.477086, + 49.049606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PIZJM7OHIWO", + "ref": "IZJM7OHIWO", + "name": "Montillières-sur-Orne, Le bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.477086, + 49.049606 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PIZJM7OHIWO", + "ref": "IZJM7OHIWO", + "name": "Montillières-sur-Orne, Le bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08856957, + 49.01214577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PV8ZXCF8KLK", + "ref": "V8ZXCF8KLK", + "name": "Saint-Marguerite-de-Viette, Route de Saint-pierre Sur Dives", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08856957, + 49.01214577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PV8ZXCF8KLK", + "ref": "V8ZXCF8KLK", + "name": "Saint-Marguerite-de-Viette, Route de Saint-pierre Sur Dives", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08856957, + 49.01214577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PV8ZXCF8KLK", + "ref": "V8ZXCF8KLK", + "name": "Saint-Marguerite-de-Viette, Route de Saint-pierre Sur Dives", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-06-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.902956, + 49.3088 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PV4TIQY3EGA", + "ref": "V4TIQY3EGA", + "name": "Trévières, Route de Bayeux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.902956, + 49.3088 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PV4TIQY3EGA", + "ref": "V4TIQY3EGA", + "name": "Trévières, Route de Bayeux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.905397, + 49.308865 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMEXJIN27J7", + "ref": "MEXJIN27J7", + "name": "Trévières, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.905397, + 49.308865 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMEXJIN27J7", + "ref": "MEXJIN27J7", + "name": "Trévières, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.103004, + 49.34425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGNV9UFSQLR", + "ref": "GNV9UFSQLR", + "name": "Touques, Place Georges Roger", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.103004, + 49.34425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGNV9UFSQLR", + "ref": "GNV9UFSQLR", + "name": "Touques, Place Georges Roger", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624253, + 49.176746 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLA2MHNO1J0", + "ref": "LA2MHNO1J0", + "name": "Tilly-sur-Seulles, Rue du Stade 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624253, + 49.176746 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLA2MHNO1J0", + "ref": "LA2MHNO1J0", + "name": "Tilly-sur-Seulles, Rue du Stade 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.481821, + 48.989704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PWIO5B4HAFQ", + "ref": "WIO5B4HAFQ", + "name": "Le Hom, Voie verte de la Suisse Normande", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.481821, + 48.989704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PWIO5B4HAFQ", + "ref": "WIO5B4HAFQ", + "name": "Le Hom, Voie verte de la Suisse Normande", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.472951, + 48.986382 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PPFMKY61J2Z", + "ref": "PFMKY61J2Z", + "name": "Le Hom, Rue de Beauvoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.672848, + 48.853397 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PWRQX6K3RY5", + "ref": "WRQX6K3RY5", + "name": "Valdallière, Rue Joseph Requeut 46", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.854415, + 48.840118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PS3XSSU87WY", + "ref": "S3XSSU87WY", + "name": "Vire Normandie, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.854415, + 48.840118 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PS3XSSU87WY", + "ref": "S3XSSU87WY", + "name": "Vire Normandie, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8849, + 48.84539 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PNUVRR1EADB", + "ref": "NUVRR1EADB", + "name": "Vire Normandie, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.651174, + 49.080152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCPFJ1PSP4H", + "ref": "CPFJ1PSP4H", + "name": "Villers-Bocage, Rue Richard Lenoir", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.651174, + 49.080152 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCPFJ1PSP4H", + "ref": "CPFJ1PSP4H", + "name": "Villers-Bocage, Rue Richard Lenoir", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-04-19", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.885866, + 48.837307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PFZE0IT59TV", + "ref": "FZE0IT59TV", + "name": "Vire Normandie, Rue Turpin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.885866, + 48.837307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PFZE0IT59TV", + "ref": "FZE0IT59TV", + "name": "Vire Normandie, Rue Turpin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.901956, + 48.844872 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRHIZSXG2KA", + "ref": "RHIZSXG2KA", + "name": "Vire Normandie, Rue Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.901956, + 48.844872 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRHIZSXG2KA", + "ref": "RHIZSXG2KA", + "name": "Vire Normandie, Rue Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.890959, + 48.840595 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCPTGDV5IRH", + "ref": "CPTGDV5IRH", + "name": "Vire Normandie, Rue Emile Zimmermann 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.890959, + 48.840595 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCPTGDV5IRH", + "ref": "CPTGDV5IRH", + "name": "Vire Normandie, Rue Emile Zimmermann 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.882365, + 48.849442 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PX76ERWSQBX", + "ref": "X76ERWSQBX", + "name": "Vire Normandie, Rue des Peupliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.882365, + 48.849442 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PX76ERWSQBX", + "ref": "X76ERWSQBX", + "name": "Vire Normandie, Rue des Peupliers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.888584, + 48.84039 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGLD9JG2RUT", + "ref": "GLD9JG2RUT", + "name": "Vire Normandie, Rue du Cotin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.888584, + 48.84039 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGLD9JG2RUT", + "ref": "GLD9JG2RUT", + "name": "Vire Normandie, Rue du Cotin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568107, + 49.277843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVYHQHHZGSX", + "ref": "VYHQHHZGSX", + "name": "Creully sur Seulles, Rue du Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.516991, + 49.343346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVAT5RXQZXS", + "ref": "VAT5RXQZXS", + "name": "Ver-sur-Mer, Route d'Asnelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8849, + 48.84539 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PNUVRR1EADB", + "ref": "NUVRR1EADB", + "name": "Vire Normandie, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566371, + 49.290745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGWNCBEVKLC", + "ref": "GWNCBEVKLC", + "name": "Creully sur Seulles, Rue de Bayeux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566371, + 49.290745 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGWNCBEVKLC", + "ref": "GWNCBEVKLC", + "name": "Creully sur Seulles, Rue de Bayeux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.126629, + 49.399658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLWXGXZ6NVG", + "ref": "LWXGXZ6NVG", + "name": "Villerville, Place du Lavoir 11", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.126629, + 49.399658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLWXGXZ6NVG", + "ref": "LWXGXZ6NVG", + "name": "Villerville, Place du Lavoir 11", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.657508, + 49.07996 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PY6V0AW4AW2", + "ref": "Y6V0AW4AW2", + "name": "Villers-Bocage, Rue des Halles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.657508, + 49.07996 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PY6V0AW4AW2", + "ref": "Y6V0AW4AW2", + "name": "Villers-Bocage, Rue des Halles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-10-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.904563, + 49.374043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PHS5GOHL3FX", + "ref": "HS5GOHL3FX", + "name": "Vierville-sur-Mer, Route de Formigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.904563, + 49.374043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PHS5GOHL3FX", + "ref": "HS5GOHL3FX", + "name": "Vierville-sur-Mer, Route de Formigny", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.450656, + 49.1567 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMDE2V8GM3H", + "ref": "MDE2V8GM3H", + "name": "Verson, Rue de Joal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.450656, + 49.1567 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMDE2V8GM3H", + "ref": "MDE2V8GM3H", + "name": "Verson, Rue de Joal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.516991, + 49.343346 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVAT5RXQZXS", + "ref": "VAT5RXQZXS", + "name": "Ver-sur-Mer, Route d'Asnelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-10", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.472951, + 48.986382 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PPFMKY61J2Z", + "ref": "PFMKY61J2Z", + "name": "Le Hom, Rue de Beauvoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.478406, + 48.9856 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PM5E6SNDFBJ", + "ref": "M5E6SNDFBJ", + "name": "Le Hom, Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.478406, + 48.9856 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PM5E6SNDFBJ", + "ref": "M5E6SNDFBJ", + "name": "Le Hom, Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.185999, + 49.348248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEUQ9MLUPEK", + "ref": "EUQ9MLUPEK", + "name": "Saint-Gatien-des-Bois, Rue des Brioleurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303315, + 49.000648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCTQR1SV2HQ", + "ref": "CTQR1SV2HQ", + "name": "Saint-Germain-le-Vasson, Le Bourg/D237", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303315, + 49.000648 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCTQR1SV2HQ", + "ref": "CTQR1SV2HQ", + "name": "Saint-Germain-le-Vasson, Le Bourg/D237", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.207578, + 49.136806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMTZJ9GHEC9", + "ref": "MTZJ9GHEC9", + "name": "Saint-Désir, Route de Falaise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.606036, + 48.857273 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PKIWGD0YPCW", + "ref": "KIWGD0YPCW", + "name": "Condé-en-Normandie, Route de Vassy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.718632, + 49.27946 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBSWUMHG7ZY", + "ref": "BSWUMHG7ZY", + "name": "Bayeux, Rue St Julien", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.718632, + 49.27946 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBSWUMHG7ZY", + "ref": "BSWUMHG7ZY", + "name": "Bayeux, Rue St Julien", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.900723, + 48.800545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PINJBEBIMWZ", + "ref": "INJBEBIMWZ", + "name": "Vire Normandie, Place des écoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.900723, + 48.800545 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PINJBEBIMWZ", + "ref": "INJBEBIMWZ", + "name": "Vire Normandie, Place des écoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00949802, + 49.141176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCBX7KUYBYW", + "ref": "CBX7KUYBYW", + "name": "Notre-Dame d'Estrees Corbon, Route de Bonnebosq", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00949802, + 49.141176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCBX7KUYBYW", + "ref": "CBX7KUYBYW", + "name": "Notre-Dame d'Estrees Corbon, Route de Bonnebosq", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00949802, + 49.141176 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCBX7KUYBYW", + "ref": "CBX7KUYBYW", + "name": "Notre-Dame d'Estrees Corbon, Route de Bonnebosq", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.185999, + 49.348248 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEUQ9MLUPEK", + "ref": "EUQ9MLUPEK", + "name": "Saint-Gatien-des-Bois, Rue des Brioleurs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568107, + 49.277843 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVYHQHHZGSX", + "ref": "VYHQHHZGSX", + "name": "Creully sur Seulles, Rue du Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.977295, + 48.825451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEZYDLQMDET", + "ref": "EZYDLQMDET", + "name": "Noues de Sienne, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.202366, + 49.137093 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQEINKRD3YH", + "ref": "QEINKRD3YH", + "name": "Saint-Désir, Chemin du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.202366, + 49.137093 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQEINKRD3YH", + "ref": "QEINKRD3YH", + "name": "Saint-Désir, Chemin du Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.297287, + 49.053543 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEIKF1QJBPH", + "ref": "EIKF1QJBPH", + "name": "Valorbiquet, Route de Copplestone", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.297287, + 49.053543 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEIKF1QJBPH", + "ref": "EIKF1QJBPH", + "name": "Valorbiquet, Route de Copplestone", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.269729, + 49.317024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PIVMBTJCG7K", + "ref": "IVMBTJCG7K", + "name": "Saint-Benoît-d'Hébertot, L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.269729, + 49.317024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PIVMBTJCG7K", + "ref": "IVMBTJCG7K", + "name": "Saint-Benoît-d'Hébertot, L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.395594, + 49.332512 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PKTL39IK8IX", + "ref": "KTL39IK8IX", + "name": "Saint-Aubin-sur-Mer, Rue de Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.395594, + 49.332512 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PKTL39IK8IX", + "ref": "KTL39IK8IX", + "name": "Saint-Aubin-sur-Mer, Rue de Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.281319, + 49.262711 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PWX6KIL9ED5", + "ref": "WX6KIL9ED5", + "name": "Saint-Aubin-d'Arquenay, Route de Ouistreham", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.281319, + 49.262711 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PWX6KIL9ED5", + "ref": "WX6KIL9ED5", + "name": "Saint-Aubin-d'Arquenay, Route de Ouistreham", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.391624, + 49.327827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PDTBNNOB9WY", + "ref": "DTBNNOB9WY", + "name": "Saint-Aubin-sur-Mer, Place de la Gare 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.391624, + 49.327827 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PDTBNNOB9WY", + "ref": "DTBNNOB9WY", + "name": "Saint-Aubin-sur-Mer, Place de la Gare 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-10-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.977295, + 48.825451 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEZYDLQMDET", + "ref": "EZYDLQMDET", + "name": "Noues de Sienne, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497137, + 49.180573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVVKHTT0N8X", + "ref": "VVKHTT0N8X", + "name": "Saint-Manvieu-Norrey, Rue de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44972, + 49.258343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGVMAEKKID2", + "ref": "GVMAEKKID2", + "name": "Thaon, Rue du Lavoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.038759, + 48.832748 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PHHQQUNK71G", + "ref": "HHQQUNK71G", + "name": "Noues de Sienne, Rue du Vieux Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44972, + 49.258343 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGVMAEKKID2", + "ref": "GVMAEKKID2", + "name": "Thaon, Rue du Lavoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.212339, + 49.299999 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PL1KGSJOGST", + "ref": "L1KGSJOGST", + "name": "Surville, L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.212339, + 49.299999 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PL1KGSJOGST", + "ref": "L1KGSJOGST", + "name": "Surville, L'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.101562, + 49.320122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PNBKCJUXTTW", + "ref": "NBKCJUXTTW", + "name": "Isigny-sur-Mer, Quai Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.750126, + 49.240765 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PE2RRBXWBWF", + "ref": "E2RRBXWBWF", + "name": "Subles, Rue Saint-Martin 12", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.750126, + 49.240765 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PE2RRBXWBWF", + "ref": "E2RRBXWBWF", + "name": "Subles, Rue Saint-Martin 12", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8074, + 49.347195 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PKMIYT7TETI", + "ref": "KMIYT7TETI", + "name": "Aure sur Mer, Route d'Omaha Beach", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8074, + 49.347195 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PKMIYT7TETI", + "ref": "KMIYT7TETI", + "name": "Aure sur Mer, Route d'Omaha Beach", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21517, + 49.057525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMACRGC0HBC", + "ref": "MACRGC0HBC", + "name": "Saint-Sylvain, Impasse des Semences", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21517, + 49.057525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMACRGC0HBC", + "ref": "MACRGC0HBC", + "name": "Saint-Sylvain, Impasse des Semences", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048561, + 48.840977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PUTPIDLSOX7", + "ref": "UTPIDLSOX7", + "name": "Noues de Sienne, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048561, + 48.840977 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PUTPIDLSOX7", + "ref": "UTPIDLSOX7", + "name": "Noues de Sienne, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.038759, + 48.832748 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PHHQQUNK71G", + "ref": "HHQQUNK71G", + "name": "Noues de Sienne, Rue du Vieux Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497137, + 49.180573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVVKHTT0N8X", + "ref": "VVKHTT0N8X", + "name": "Saint-Manvieu-Norrey, Rue de l'église", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.028522, + 49.016411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEZNQHP1WWZ", + "ref": "EZNQHP1WWZ", + "name": "Saint-Pierre-en-Auge, Rue des Sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.028522, + 49.016411 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEZNQHP1WWZ", + "ref": "EZNQHP1WWZ", + "name": "Saint-Pierre-en-Auge, Rue des Sports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.030718, + 49.02076 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14POUXSBPXK6V", + "ref": "OUXSBPXK6V", + "name": "Saint-Pierre-en-Auge, Place Gombault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.030718, + 49.02076 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14POUXSBPXK6V", + "ref": "OUXSBPXK6V", + "name": "Saint-Pierre-en-Auge, Place Gombault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576396, + 48.920029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PDI3I8QNHXO", + "ref": "DI3I8QNHXO", + "name": "Condé-en-Normandie, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576396, + 48.920029 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PDI3I8QNHXO", + "ref": "DI3I8QNHXO", + "name": "Condé-en-Normandie, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.673939, + 49.266899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PAEY2CFNUTF", + "ref": "AEY2CFNUTF", + "name": "Saint-Martin-des-Entrées, Rue Claude Monet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.673939, + 49.266899 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PAEY2CFNUTF", + "ref": "AEY2CFNUTF", + "name": "Saint-Martin-des-Entrées, Rue Claude Monet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.845168, + 49.011806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTPQYPCO3UW", + "ref": "TPQYPCO3UW", + "name": "Souleuvre en Bocage, Rue des écoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.845168, + 49.011806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTPQYPCO3UW", + "ref": "TPQYPCO3UW", + "name": "Souleuvre en Bocage, Rue des écoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707928, + 49.283667 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEP02VR6FM7", + "ref": "EP02VR6FM7", + "name": "Bayeux, Complexe EIDHOVEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707928, + 49.283667 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEP02VR6FM7", + "ref": "EP02VR6FM7", + "name": "Bayeux, Complexe EIDHOVEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.207578, + 49.136806 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMTZJ9GHEC9", + "ref": "MTZJ9GHEC9", + "name": "Saint-Désir, Route de Falaise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.079796, + 48.975983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMQRZ3VP5TF", + "ref": "MQRZ3VP5TF", + "name": "Jort, Rue des Ponts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.079796, + 48.975983 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMQRZ3VP5TF", + "ref": "MQRZ3VP5TF", + "name": "Jort, Rue des Ponts", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.360357, + 49.187054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTTGYEWCD4D", + "ref": "TTGYEWCD4D", + "name": "Caen, Rue du Vaugueux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380302, + 49.204082 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PDELR9H5LME", + "ref": "DELR9H5LME", + "name": "Caen, Rue des Acadiens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380302, + 49.204082 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PDELR9H5LME", + "ref": "DELR9H5LME", + "name": "Caen, Rue des Acadiens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365122, + 49.199177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRJ5B3FAJRM", + "ref": "RJ5B3FAJRM", + "name": "Caen, Rue de la Défense Passive", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365122, + 49.199177 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRJ5B3FAJRM", + "ref": "RJ5B3FAJRM", + "name": "Caen, Rue de la Défense Passive", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.348103, + 49.178352 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PFLQCEIECNA", + "ref": "FLQCEIECNA", + "name": "Caen, Rue Rosa Parks", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.348103, + 49.178352 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PFLQCEIECNA", + "ref": "FLQCEIECNA", + "name": "Caen, Rue Rosa Parks", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-01", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.366633, + 49.18668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCKEU2AXBPX", + "ref": "CKEU2AXBPX", + "name": "Caen, Rue Chanoine Xavier de Saint Pol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.366633, + 49.18668 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCKEU2AXBPX", + "ref": "CKEU2AXBPX", + "name": "Caen, Rue Chanoine Xavier de Saint Pol", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34267, + 49.160675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PG4DK6RTQ3D", + "ref": "G4DK6RTQ3D", + "name": "Caen, Place de la Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34267, + 49.160675 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PG4DK6RTQ3D", + "ref": "G4DK6RTQ3D", + "name": "Caen, Place de la Liberté", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.371259, + 49.180359 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PXOUSTRWIIJ", + "ref": "XOUSTRWIIJ", + "name": "Caen, Place Guillouard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.371259, + 49.180359 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PXOUSTRWIIJ", + "ref": "XOUSTRWIIJ", + "name": "Caen, Place Guillouard", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355559, + 49.184055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PANOW48R3FC", + "ref": "ANOW48R3FC", + "name": "Caen, Quai de la Londe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355559, + 49.184055 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PANOW48R3FC", + "ref": "ANOW48R3FC", + "name": "Caen, Quai de la Londe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-01-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.612158, + 49.177962 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJZIMSLSNZI", + "ref": "JZIMSLSNZI", + "name": "Tilly-sur-Seules, rue de la Varende", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.612158, + 49.177962 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJZIMSLSNZI", + "ref": "JZIMSLSNZI", + "name": "Tilly-sur-Seules, rue de la Varende", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.612158, + 49.177962 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJZIMSLSNZI", + "ref": "JZIMSLSNZI", + "name": "Tilly-sur-Seules, rue de la Varende", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.347497, + 49.197529 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PL9PDURSKHV", + "ref": "L9PDURSKHV", + "name": "Caen, Place Champlain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.347497, + 49.197529 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PL9PDURSKHV", + "ref": "L9PDURSKHV", + "name": "Caen, Place Champlain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365959, + 49.180958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJERHB0BEAB", + "ref": "JERHB0BEAB", + "name": "Caen, Place du parvis Notre Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365959, + 49.180958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJERHB0BEAB", + "ref": "JERHB0BEAB", + "name": "Caen, Place du parvis Notre Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359741, + 49.203658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PATTXYEMZSE", + "ref": "ATTXYEMZSE", + "name": "Caen, Rue Professeur Joseph Rousselot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359741, + 49.203658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PATTXYEMZSE", + "ref": "ATTXYEMZSE", + "name": "Caen, Rue Professeur Joseph Rousselot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.360565, + 49.161114 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PKPSZKEMHNF", + "ref": "KPSZKEMHNF", + "name": "Caen, Avenue du Père Charles de Foucauld", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.360565, + 49.161114 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PKPSZKEMHNF", + "ref": "KPSZKEMHNF", + "name": "Caen, Avenue du Père Charles de Foucauld", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.360357, + 49.187054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTTGYEWCD4D", + "ref": "TTGYEWCD4D", + "name": "Caen, Rue du Vaugueux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.254735, + 49.146415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMEUKZBWL9R", + "ref": "MEUKZBWL9R", + "name": "Cagny, Allée Saint Germain 33", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380138, + 49.199852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PA1BDJHEJBW", + "ref": "A1BDJHEJBW", + "name": "Caen, Esplanade Brillaud de Laujardière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.254735, + 49.146415 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMEUKZBWL9R", + "ref": "MEUKZBWL9R", + "name": "Cagny, Allée Saint Germain 33", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30948, + 49.18362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PAVHMBVDDEL", + "ref": "AVHMBVDDEL", + "name": "Colombelles, Rue de la Coopérative", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.296286, + 49.204266 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMNJRPSZUVR", + "ref": "MNJRPSZUVR", + "name": "Colombelles, Place Francois Mitterand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.296286, + 49.204266 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMNJRPSZUVR", + "ref": "MNJRPSZUVR", + "name": "Colombelles, Place Francois Mitterand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.283343, + 49.292938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PH1P1PYTVJZ", + "ref": "H1P1PYTVJZ", + "name": "Colleville-Montgomery, Rue du Commandant Kieffer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.283343, + 49.292938 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PH1P1PYTVJZ", + "ref": "H1P1PYTVJZ", + "name": "Colleville-Montgomery, Rue du Commandant Kieffer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.840685, + 49.359657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PREGMVHBLYO", + "ref": "REGMVHBLYO", + "name": "Colleville-sur-Mer, Cavey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.840685, + 49.359657 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PREGMVHBLYO", + "ref": "REGMVHBLYO", + "name": "Colleville-sur-Mer, Cavey", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424286, + 49.085377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PDZWIKE3NEN", + "ref": "DZWIKE3NEN", + "name": "Laize-Clinchamps, D41", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424286, + 49.085377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PDZWIKE3NEN", + "ref": "DZWIKE3NEN", + "name": "Laize-Clinchamps, D41", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48176, + 48.917553 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVIVCM51QGG", + "ref": "VIVCM51QGG", + "name": "Clécy, Rue Arsène Delavigne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48176, + 48.917553 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVIVCM51QGG", + "ref": "VIVCM51QGG", + "name": "Clécy, Rue Arsène Delavigne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.007925, + 48.792999 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PWDC8V4ORJE", + "ref": "WDC8V4ORJE", + "name": "Noues de Sienne, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.007925, + 48.792999 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PWDC8V4ORJE", + "ref": "WDC8V4ORJE", + "name": "Noues de Sienne, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.806385, + 49.090714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PZ7TCFV54RM", + "ref": "Z7TCFV54RM", + "name": "Caumont-sur-Aure, Rue de la Ferière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.806385, + 49.090714 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PZ7TCFV54RM", + "ref": "Z7TCFV54RM", + "name": "Caumont-sur-Aure, Rue de la Ferière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44147, + 49.185043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PYBCAAXHFBE", + "ref": "YBCAAXHFBE", + "name": "Carpiquet, Avenue Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44147, + 49.185043 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PYBCAAXHFBE", + "ref": "YBCAAXHFBE", + "name": "Carpiquet, Avenue Charles de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.924642, + 48.889202 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14POIXFQFMHLO", + "ref": "OIXFQFMHLO", + "name": "Campagnolles, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.924642, + 48.889202 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14POIXFQFMHLO", + "ref": "OIXFQFMHLO", + "name": "Campagnolles, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.046794, + 49.149574 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJ2CAXWCJQ2", + "ref": "J2CAXWCJQ2", + "name": "Cambremer, Avenue des Tilleuls", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.046794, + 49.149574 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJ2CAXWCJQ2", + "ref": "J2CAXWCJQ2", + "name": "Cambremer, Avenue des Tilleuls", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.761437, + 49.158428 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PWDURE5OIIU", + "ref": "WDURE5OIIU", + "name": "Cahagnolles, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.761437, + 49.158428 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PWDURE5OIIU", + "ref": "WDURE5OIIU", + "name": "Cahagnolles, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.767352, + 49.066422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PY6SL8CGLG1", + "ref": "Y6SL8CGLG1", + "name": "Cahagnes, D54", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.767352, + 49.066422 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PY6SL8CGLG1", + "ref": "Y6SL8CGLG1", + "name": "Cahagnes, D54", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380138, + 49.199852 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PA1BDJHEJBW", + "ref": "A1BDJHEJBW", + "name": "Caen, Esplanade Brillaud de Laujardière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-09-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.364503, + 49.184155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PSAKCOZYZCV", + "ref": "SAKCOZYZCV", + "name": "Caen, Rue Gemare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.308223, + 49.18866 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PXZV5YXNZQK", + "ref": "XZV5YXNZQK", + "name": "Colombelles, Rue Irène Joliot-Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339124, + 49.27467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PPGOVR7LE8Z", + "ref": "PGOVR7LE8Z", + "name": "Bonneville-la-Louvet, Rue Henri Louvet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.079897, + 49.204884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMSSZCNYGB6", + "ref": "MSSZCNYGB6", + "name": "Bonnebosq, Avenue du Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83958454, + 49.20576297 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJXVJI1COJF", + "ref": "JXVJI1COJF", + "name": "Vaubadon, route de Saint-Lô", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83958454, + 49.20576297 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJXVJI1COJF", + "ref": "JXVJI1COJF", + "name": "Vaubadon, route de Saint-Lô", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83958454, + 49.20576297 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJXVJI1COJF", + "ref": "JXVJI1COJF", + "name": "Vaubadon, route de Saint-Lô", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-09", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.027659, + 49.33881 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBM0HFP9CGY", + "ref": "BM0HFP9CGY", + "name": "Blonville-sur-Mer, Rue Pierre Jacquot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.027659, + 49.33881 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBM0HFP9CGY", + "ref": "BM0HFP9CGY", + "name": "Blonville-sur-Mer, Rue Pierre Jacquot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.273392, + 49.245373 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJDWZ4GKGLJ", + "ref": "JDWZ4GKGLJ", + "name": "Blangy-le-Château, Chemin du Pont Vert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.273392, + 49.245373 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJDWZ4GKGLJ", + "ref": "JDWZ4GKGLJ", + "name": "Blangy-le-Château, Chemin du Pont Vert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11563, + 49.29363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PXZTAT4QNOV", + "ref": "XZTAT4QNOV", + "name": "Cabourg, Jardin du casino", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11563, + 49.29363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PXZTAT4QNOV", + "ref": "XZTAT4QNOV", + "name": "Cabourg, Jardin du casino", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11563, + 49.29363 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PXZTAT4QNOV", + "ref": "XZTAT4QNOV", + "name": "Cabourg, Jardin du casino", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298162, + 49.228291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PD9MFWXE3BX", + "ref": "D9MFWXE3BX", + "name": "Blainville-sur-Orne, Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298162, + 49.228291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PD9MFWXE3BX", + "ref": "D9MFWXE3BX", + "name": "Blainville-sur-Orne, Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-20", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303067, + 49.226357 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PNU7TML0PLL", + "ref": "NU7TML0PLL", + "name": "Blainville-sur-Orne, Rue Maurice Hébert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303067, + 49.226357 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PNU7TML0PLL", + "ref": "NU7TML0PLL", + "name": "Blainville-sur-Orne, Rue Maurice Hébert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42327, + 49.164383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PHKI3EEJ2VG", + "ref": "HKI3EEJ2VG", + "name": "Bretteville-sur-Odon, Avenue du Fresne 1", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42327, + 49.164383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PHKI3EEJ2VG", + "ref": "HKI3EEJ2VG", + "name": "Bretteville-sur-Odon, Avenue du Fresne 1", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42327, + 49.164383 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PHKI3EEJ2VG", + "ref": "HKI3EEJ2VG", + "name": "Bretteville-sur-Odon, Avenue du Fresne 1", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.327253, + 49.24025 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVUHVSPUVEE", + "ref": "VUHVSPUVEE", + "name": "Biéville-Beuville, Place de Margetshochheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.327253, + 49.24025 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVUHVSPUVEE", + "ref": "VUHVSPUVEE", + "name": "Biéville-Beuville, Place de Margetshochheim", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-25", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.047522, + 49.187656 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PSYA3HIFJSJ", + "ref": "SYA3HIFJSJ", + "name": "Beuvron-en-Auge, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.047522, + 49.187656 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PSYA3HIFJSJ", + "ref": "SYA3HIFJSJ", + "name": "Beuvron-en-Auge, Avenue de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.418581, + 49.334774 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PFN2ROX2AOD", + "ref": "FN2ROX2AOD", + "name": "Bernières-sur-Mer, Rue Victor Tesnière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.418581, + 49.334774 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PFN2ROX2AOD", + "ref": "FN2ROX2AOD", + "name": "Bernières-sur-Mer, Rue Victor Tesnière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.432045, + 49.290691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQNVE1QVN1M", + "ref": "QNVE1QVN1M", + "name": "Bény-sur-Mer, Route de Courseulles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.079897, + 49.204884 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PMSSZCNYGB6", + "ref": "MSSZCNYGB6", + "name": "Bonnebosq, Avenue du Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339124, + 49.27467 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PPGOVR7LE8Z", + "ref": "PGOVR7LE8Z", + "name": "Bonneville-la-Louvet, Rue Henri Louvet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.364503, + 49.184155 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PSAKCOZYZCV", + "ref": "SAKCOZYZCV", + "name": "Caen, Rue Gemare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.514652, + 49.212273 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PW3FDKK3Y4Y", + "ref": "W3FDKK3Y4Y", + "name": "Thue et Mue, Place des Canadiens 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.402715, + 49.182137 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PNPPA9S0IZH", + "ref": "NPPA9S0IZH", + "name": "Caen, Boulevard Georges Pompidou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.402715, + 49.182137 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PNPPA9S0IZH", + "ref": "NPPA9S0IZH", + "name": "Caen, Boulevard Georges Pompidou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.346611, + 49.181694 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PR8RWH8HXZS", + "ref": "R8RWH8HXZS", + "name": "Caen, Cours Caffarelli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.346611, + 49.181694 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PR8RWH8HXZS", + "ref": "R8RWH8HXZS", + "name": "Caen, Cours Caffarelli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.346506, + 49.183704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEYSLWKWYZR", + "ref": "EYSLWKWYZR", + "name": "Caen, Avenue Pierre Berthelot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.346506, + 49.183704 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEYSLWKWYZR", + "ref": "EYSLWKWYZR", + "name": "Caen, Avenue Pierre Berthelot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396299, + 49.191658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PKARW5YQ2G0", + "ref": "KARW5YQ2G0", + "name": "Caen, Avenue Président Coty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396299, + 49.191658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PKARW5YQ2G0", + "ref": "KARW5YQ2G0", + "name": "Caen, Avenue Président Coty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34179, + 49.190582 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PPISAGDEROT", + "ref": "PISAGDEROT", + "name": "Caen, Le Clos Joli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34179, + 49.190582 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PPISAGDEROT", + "ref": "PISAGDEROT", + "name": "Caen, Le Clos Joli", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.401482, + 49.175629 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBJGJFYAMMJ", + "ref": "BJGJFYAMMJ", + "name": "Caen, Avenue Enchanteur Merlin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.401482, + 49.175629 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBJGJFYAMMJ", + "ref": "BJGJFYAMMJ", + "name": "Caen, Avenue Enchanteur Merlin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369844, + 49.176125 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBXFKK77EJT", + "ref": "BXFKK77EJT", + "name": "Caen, Avenue Albert Sorel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369844, + 49.176125 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBXFKK77EJT", + "ref": "BXFKK77EJT", + "name": "Caen, Avenue Albert Sorel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355928, + 49.180374 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PXLR3DJICQY", + "ref": "XLR3DJICQY", + "name": "Caen, Place de la Résistance 6", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355928, + 49.180374 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PXLR3DJICQY", + "ref": "XLR3DJICQY", + "name": "Caen, Place de la Résistance 6", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.116762, + 49.28772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PAGX3GVGGGP", + "ref": "AGX3GVGGGP", + "name": "Cabourg, Avenue de la Mer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.116762, + 49.28772 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PAGX3GVGGGP", + "ref": "AGX3GVGGGP", + "name": "Cabourg, Avenue de la Mer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.417781, + 49.16581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBJLVQM5TAS", + "ref": "BJLVQM5TAS", + "name": "Bretteville-sur-Odon, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.417781, + 49.16581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBJLVQM5TAS", + "ref": "BJLVQM5TAS", + "name": "Bretteville-sur-Odon, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.326488, + 49.044224 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PT6CP8IZJCW", + "ref": "T6CP8IZJCW", + "name": "Bretteville-sur-Laize, Rue des Canadiens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.326488, + 49.044224 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PT6CP8IZJCW", + "ref": "T6CP8IZJCW", + "name": "Bretteville-sur-Laize, Rue des Canadiens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512477, + 49.203705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGI08L1LAZG", + "ref": "GI08L1LAZG", + "name": "Thue et Mue, Rue de la Gare 13", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512477, + 49.203705 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGI08L1LAZG", + "ref": "GI08L1LAZG", + "name": "Thue et Mue, Rue de la Gare 13", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.514652, + 49.212273 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PW3FDKK3Y4Y", + "ref": "W3FDKK3Y4Y", + "name": "Thue et Mue, Place des Canadiens 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30948, + 49.18362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PAVHMBVDDEL", + "ref": "AVHMBVDDEL", + "name": "Colombelles, Rue de la Coopérative", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.308223, + 49.18866 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PXZV5YXNZQK", + "ref": "XZV5YXNZQK", + "name": "Colombelles, Rue Irène Joliot-Curie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.275651, + 49.24791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PYDK2B0ERXB", + "ref": "YDK2B0ERXB", + "name": "Bénouville, Avenue de la Côte de Nacre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.526418, + 49.135658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PX48FPHUJQU", + "ref": "X48FPHUJQU", + "name": "Grainville-sur-Odon, Rue de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.268632, + 49.014362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PXMBUXALML9", + "ref": "XMBUXALML9", + "name": "Grainville-Langannerie, Rue de Lapford", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.268632, + 49.014362 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PXMBUXALML9", + "ref": "XMBUXALML9", + "name": "Grainville-Langannerie, Rue de Lapford", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303596, + 49.034939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCLLQAPXJGQ", + "ref": "CLLQAPXJGQ", + "name": "Gouvix, Place François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303596, + 49.034939 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCLLQAPXJGQ", + "ref": "CLLQAPXJGQ", + "name": "Gouvix, Place François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.276981, + 49.124573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBKLEA4YHK3", + "ref": "BKLEA4YHK3", + "name": "Glos, Rue d'Orbec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.276981, + 49.124573 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBKLEA4YHK3", + "ref": "BKLEA4YHK3", + "name": "Glos, Rue d'Orbec", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.104626, + 48.823738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVFSQFDC7FS", + "ref": "VFSQFDC7FS", + "name": "Noues de Sienne, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.104626, + 48.823738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVFSQFDC7FS", + "ref": "VFSQFDC7FS", + "name": "Noues de Sienne, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.458241, + 49.276985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCPSHDAIWXX", + "ref": "CPSHDAIWXX", + "name": "Fontaine-Henry, Rue de Scoriton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.458241, + 49.276985 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCPSHDAIWXX", + "ref": "CPSHDAIWXX", + "name": "Fontaine-Henry, Rue de Scoriton", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.452932, + 49.274509 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PDATGNHU3DP", + "ref": "DATGNHU3DP", + "name": "Fontaine-Henry, Rue du Régiment de la Chaudière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.452932, + 49.274509 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PDATGNHU3DP", + "ref": "DATGNHU3DP", + "name": "Fontaine-Henry, Rue du Régiment de la Chaudière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.457769, + 49.142525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQADLCK0CXV", + "ref": "QADLCK0CXV", + "name": "Fontaine-Étoupefour, Impasse du Stade Jules Quesnel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.457769, + 49.142525 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQADLCK0CXV", + "ref": "QADLCK0CXV", + "name": "Fontaine-Étoupefour, Impasse du Stade Jules Quesnel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.371682, + 49.152481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLUSPLHMJTM", + "ref": "LUSPLHMJTM", + "name": "Fleury-sur-Orne, Avenue d'Harcourt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.371682, + 49.152481 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLUSPLHMJTM", + "ref": "LUSPLHMJTM", + "name": "Fleury-sur-Orne, Avenue d'Harcourt", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.220548, + 49.251003 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJCXRAXISUD", + "ref": "JCXRAXISUD", + "name": "Fierville-les-Parcs, Route de la vallée de la Touques", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.220548, + 49.251003 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJCXRAXISUD", + "ref": "JCXRAXISUD", + "name": "Fierville-les-Parcs, Route de la vallée de la Touques", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.403748, + 49.113762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PAPLE3YWA6J", + "ref": "APLE3YWA6J", + "name": "Feuguerolles-Bully, Rue Henri Rosel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.403748, + 49.113762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PAPLE3YWA6J", + "ref": "APLE3YWA6J", + "name": "Feuguerolles-Bully, Rue Henri Rosel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.196851, + 48.896561 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGXNIEP4LJS", + "ref": "GXNIEP4LJS", + "name": "Falaise, Rue du Champ Saint-Michel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.196851, + 48.896561 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGXNIEP4LJS", + "ref": "GXNIEP4LJS", + "name": "Falaise, Rue du Champ Saint-Michel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.200854, + 48.895374 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PFJDPVYD3VM", + "ref": "FJDPVYD3VM", + "name": "Falaise, Rue Trinité 24", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.200854, + 48.895374 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PFJDPVYD3VM", + "ref": "FJDPVYD3VM", + "name": "Falaise, Rue Trinité 24", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.207155, + 48.908218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PE7G17KGQS8", + "ref": "E7G17KGQS8", + "name": "Falaise, Route de Caen", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.526418, + 49.135658 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PX48FPHUJQU", + "ref": "X48FPHUJQU", + "name": "Grainville-sur-Odon, Rue de la Libération", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.041252, + 49.387611 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PC7MVLEKOXT", + "ref": "C7MVLEKOXT", + "name": "Grandcamp-Maisy, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.201822, + 48.892605 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLNBVCEOPZC", + "ref": "LNBVCEOPZC", + "name": "Falaise, Place du Docteur Cailloué", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.041252, + 49.387611 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PC7MVLEKOXT", + "ref": "C7MVLEKOXT", + "name": "Grandcamp-Maisy, Place de la République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.101562, + 49.320122 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PNBKCJUXTTW", + "ref": "NBKCJUXTTW", + "name": "Isigny-sur-Mer, Quai Aristide Briand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355094, + 49.140018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PNWNXQPH8TD", + "ref": "NWNXQPH8TD", + "name": "Ifs, Rue des Pyrénées", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355094, + 49.140018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PNWNXQPH8TD", + "ref": "NWNXQPH8TD", + "name": "Ifs, Rue des Pyrénées", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.349523, + 49.137749 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLJ98RD5Z2B", + "ref": "LJ98RD5Z2B", + "name": "Ifs, Esplanade François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.349523, + 49.137749 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLJ98RD5Z2B", + "ref": "LJ98RD5Z2B", + "name": "Ifs, Esplanade François Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.350859, + 49.150547 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PG7U2LCCD4Y", + "ref": "G7U2LCCD4Y", + "name": "Ifs, Avenue Jean Vilar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.350859, + 49.150547 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PG7U2LCCD4Y", + "ref": "G7U2LCCD4Y", + "name": "Ifs, Avenue Jean Vilar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.316764, + 49.127815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCSMXC6RE5P", + "ref": "CSMXC6RE5P", + "name": "Castine-en-Plaine, Rue des Tilleuls", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.316764, + 49.127815 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCSMXC6RE5P", + "ref": "CSMXC6RE5P", + "name": "Castine-en-Plaine, Rue des Tilleuls", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07457, + 49.30206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PAU5QM7JWO3", + "ref": "AU5QM7JWO3", + "name": "Houlgate, Boulevard de Saint-Philbert 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07457, + 49.30206 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PAU5QM7JWO3", + "ref": "AU5QM7JWO3", + "name": "Houlgate, Boulevard de Saint-Philbert 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.237649, + 49.418694 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PZUGT4ZAI25", + "ref": "ZUGT4ZAI25", + "name": "Honfleur, Rue Vannier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.237649, + 49.418694 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PZUGT4ZAI25", + "ref": "ZUGT4ZAI25", + "name": "Honfleur, Rue Vannier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345371, + 49.2024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEO8WQHNMPB", + "ref": "EO8WQHNMPB", + "name": "Hérouville-Saint-Clair, Rue Guyon de Guercheville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-07-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345371, + 49.2024 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PEO8WQHNMPB", + "ref": "EO8WQHNMPB", + "name": "Hérouville-Saint-Clair, Rue Guyon de Guercheville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-07-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332626, + 49.202087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PG1IUADBW5Q", + "ref": "G1IUADBW5Q", + "name": "Hérouville-Saint-Clair, Place du Café des Images", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-07-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332626, + 49.202087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PG1IUADBW5Q", + "ref": "G1IUADBW5Q", + "name": "Hérouville-Saint-Clair, Place du Café des Images", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-07-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.342878, + 49.213123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVK9H0DVFDH", + "ref": "VK9H0DVFDH", + "name": "Hérouville-Saint-Clair, Avenue de Garbsen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.342878, + 49.213123 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PVK9H0DVFDH", + "ref": "VK9H0DVFDH", + "name": "Hérouville-Saint-Clair, Avenue de Garbsen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.313085, + 49.286636 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PC8PSNTNXXV", + "ref": "C8PSNTNXXV", + "name": "Hermanville-sur-Mer, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.313085, + 49.286636 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PC8PSNTNXXV", + "ref": "C8PSNTNXXV", + "name": "Hermanville-sur-Mer, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30163, + 49.2966 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PWNPDHQMXEF", + "ref": "WNPDHQMXEF", + "name": "Hermanville-sur-Mer, Avenue Madame Coty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30163, + 49.2966 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PWNPDHQMXEF", + "ref": "WNPDHQMXEF", + "name": "Hermanville-sur-Mer, Avenue Madame Coty", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.288273, + 49.149944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PNZAMOLTFQS", + "ref": "NZAMOLTFQS", + "name": "Grentheville, Rue Urbain Cardon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.288273, + 49.149944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PNZAMOLTFQS", + "ref": "NZAMOLTFQS", + "name": "Grentheville, Rue Urbain Cardon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.207155, + 48.908218 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PE7G17KGQS8", + "ref": "E7G17KGQS8", + "name": "Falaise, Route de Caen", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.201822, + 48.892605 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLNBVCEOPZC", + "ref": "LNBVCEOPZC", + "name": "Falaise, Place du Docteur Cailloué", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-06-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.554104, + 48.844807 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PYEVQXYXMMI", + "ref": "YEVQXYXMMI", + "name": "Condé-en-Normandie, Rue Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130294, + 49.381866 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PIHJ5AEHHQC", + "ref": "IHJ5AEHHQC", + "name": "Cricquebœuf, Centre hospitalier, 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130306, + 49.381893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJVJN0XRMBD", + "ref": "JVJN0XRMBD", + "name": "Cricquebœuf, Centre hospitalier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130306, + 49.381893 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJVJN0XRMBD", + "ref": "JVJN0XRMBD", + "name": "Cricquebœuf, Centre hospitalier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.538061, + 49.286358 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBCNP9TW96E", + "ref": "BCNP9TW96E", + "name": "Creully sur Seulles, Route de Tierceville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.538061, + 49.286358 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBCNP9TW96E", + "ref": "BCNP9TW96E", + "name": "Creully sur Seulles, Route de Tierceville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-23", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05713, + 49.35398 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLMAJAU9VM3", + "ref": "LMAJAU9VM3", + "name": "Tourgeville, rue des terrasses", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-04-19", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05713, + 49.35398 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLMAJAU9VM3", + "ref": "LMAJAU9VM3", + "name": "Tourgeville, rue des terrasses", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05713, + 49.35398 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLMAJAU9VM3", + "ref": "LMAJAU9VM3", + "name": "Tourgeville, rue des terrasses", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-15", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.457717, + 49.334377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRTTMEX22VQ", + "ref": "RTTMEX22VQ", + "name": "Courseulles-sur-Mer, Place du Six Juin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.457717, + 49.334377 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRTTMEX22VQ", + "ref": "RTTMEX22VQ", + "name": "Courseulles-sur-Mer, Place du Six Juin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.045529, + 48.972824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJ9E72TSRLI", + "ref": "J9E72TSRLI", + "name": "Courcy, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.045529, + 48.972824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJ9E72TSRLI", + "ref": "J9E72TSRLI", + "name": "Courcy, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.913899, + 48.872356 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PYTDEL15IL4", + "ref": "YTDEL15IL4", + "name": "Vire Normandie, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.913899, + 48.872356 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PYTDEL15IL4", + "ref": "YTDEL15IL4", + "name": "Vire Normandie, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.856212, + 49.129959 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRFATER8YU3", + "ref": "RFATER8YU3", + "name": "Cormolain, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.856212, + 49.129959 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRFATER8YU3", + "ref": "RFATER8YU3", + "name": "Cormolain, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332007, + 49.155018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBENXV427ED", + "ref": "BENXV427ED", + "name": "Cormelles-le-Royal, Rue des Écoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332007, + 49.155018 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PBENXV427ED", + "ref": "BENXV427ED", + "name": "Cormelles-le-Royal, Rue des Écoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.212054, + 49.2001 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PPPAT8F1AHP", + "ref": "PPAT8F1AHP", + "name": "Coquainvilliers, Rue du Manoir de Prie 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.212054, + 49.2001 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PPPAT8F1AHP", + "ref": "PPAT8F1AHP", + "name": "Coquainvilliers, Rue du Manoir de Prie 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-17", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.553656, + 48.850952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PIS3DWADVWS", + "ref": "IS3DWADVWS", + "name": "Condé-en-Normandie, Rue des Prés Guillets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.553656, + 48.850952 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PIS3DWADVWS", + "ref": "IS3DWADVWS", + "name": "Condé-en-Normandie, Rue des Prés Guillets", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-09-08", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303376, + 49.171944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJIQBOVFEMZ", + "ref": "JIQBOVFEMZ", + "name": "Mondeville, Route de Rouen", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303376, + 49.171944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJIQBOVFEMZ", + "ref": "JIQBOVFEMZ", + "name": "Mondeville, Route de Rouen", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303376, + 49.171944 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJIQBOVFEMZ", + "ref": "JIQBOVFEMZ", + "name": "Mondeville, Route de Rouen", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-30", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.554104, + 48.844807 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PYEVQXYXMMI", + "ref": "YEVQXYXMMI", + "name": "Condé-en-Normandie, Rue Saint-Martin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130294, + 49.381866 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PIHJ5AEHHQC", + "ref": "IHJ5AEHHQC", + "name": "Cricquebœuf, Centre hospitalier, 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.138757, + 49.402374 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PUEPCJ1ONBV", + "ref": "UEPCJ1ONBV", + "name": "Cricquebœuf, D513", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.504844, + 49.101223 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJRO5XUKNVX", + "ref": "JRO5XUKNVX", + "name": "Évrecy, Rue de la Cabottière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.138757, + 49.402374 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PUEPCJ1ONBV", + "ref": "UEPCJ1ONBV", + "name": "Cricquebœuf, D513", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.504844, + 49.101223 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJRO5XUKNVX", + "ref": "JRO5XUKNVX", + "name": "Évrecy, Rue de la Cabottière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502256, + 49.098824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQVMV4MMGBF", + "ref": "QVMV4MMGBF", + "name": "Évrecy, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502256, + 49.098824 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQVMV4MMGBF", + "ref": "QVMV4MMGBF", + "name": "Évrecy, Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-05-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.206739, + 49.391857 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PSHNTRB88GR", + "ref": "SHNTRB88GR", + "name": "Équemauville, Place de la Paix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.206739, + 49.391857 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PSHNTRB88GR", + "ref": "SHNTRB88GR", + "name": "Équemauville, Place de la Paix", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-29", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.203363, + 49.383171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PA3XTEFNVP7", + "ref": "A3XTEFNVP7", + "name": "Équemauville, Chemin de la Plane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.203363, + 49.383171 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PA3XTEFNVP7", + "ref": "A3XTEFNVP7", + "name": "Équemauville, Chemin de la Plane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37422, + 49.220695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGQX8TOZGDZ", + "ref": "GQX8TOZGDZ", + "name": "Épron, Rue Éole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37422, + 49.220695 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGQX8TOZGDZ", + "ref": "GQX8TOZGDZ", + "name": "Épron, Rue Éole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.677874, + 49.220016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLHXITWLNL8", + "ref": "LHXITWLNL8", + "name": "Ellon, Haut d'Ellon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.677874, + 49.220016 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PLHXITWLNL8", + "ref": "LHXITWLNL8", + "name": "Ellon, Haut d'Ellon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-08-04", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.042063, + 49.232769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PWZVO2GVYMJ", + "ref": "WZVO2GVYMJ", + "name": "Dozulé, Place Jean Vasnier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.042063, + 49.232769 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PWZVO2GVYMJ", + "ref": "WZVO2GVYMJ", + "name": "Dozulé, Place Jean Vasnier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.045078, + 49.230087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTJTE9E9IPY", + "ref": "TJTE9E9IPY", + "name": "Dozulé, Place du champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.045078, + 49.230087 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTJTE9E9IPY", + "ref": "TJTE9E9IPY", + "name": "Dozulé, Place du champ de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.376339, + 49.29459 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PN46VHJDQAK", + "ref": "N46VHJDQAK", + "name": "Douvres-la-Délivrande, Résidence les Portes de Douvres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.376339, + 49.29459 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PN46VHJDQAK", + "ref": "N46VHJDQAK", + "name": "Douvres-la-Délivrande, Résidence les Portes de Douvres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.098968, + 49.287991 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PHUK16Y2VIO", + "ref": "HUK16Y2VIO", + "name": "Dives-sur-Mer, Boulevard Maurice Thorez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.098968, + 49.287991 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PHUK16Y2VIO", + "ref": "HUK16Y2VIO", + "name": "Dives-sur-Mer, Boulevard Maurice Thorez", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.266243, + 49.177143 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PFH2Y5F6VYX", + "ref": "FH2Y5F6VYX", + "name": "Démouville, Rue du Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.266243, + 49.177143 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PFH2Y5F6VYX", + "ref": "FH2Y5F6VYX", + "name": "Démouville, Rue du Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.263063, + 49.192703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PWOGY4YK72D", + "ref": "WOGY4YK72D", + "name": "Cuverville, Rue de Sannerville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.263063, + 49.192703 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PWOGY4YK72D", + "ref": "WOGY4YK72D", + "name": "Cuverville, Rue de Sannerville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.101527, + 49.121693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PIGM47RQUIV", + "ref": "IGM47RQUIV", + "name": "Mézidon Vallée d'Auge, D613", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.101527, + 49.121693 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PIGM47RQUIV", + "ref": "IGM47RQUIV", + "name": "Mézidon Vallée d'Auge, D613", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-06", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.432045, + 49.290691 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQNVE1QVN1M", + "ref": "QNVE1QVN1M", + "name": "Bény-sur-Mer, Route de Courseulles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.275651, + 49.24791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PYDK2B0ERXB", + "ref": "YDK2B0ERXB", + "name": "Bénouville, Avenue de la Côte de Nacre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.739149, + 49.02071 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PKWSB5QN7ZK", + "ref": "KWSB5QN7ZK", + "name": "Dialan sur Chaîne, Impasse de la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-12", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.623846, + 49.338478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTL6QWRNSBJ", + "ref": "TL6QWRNSBJ", + "name": "Arromanches-les-Bains, Rue d'Instow", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.207299, + 49.124958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTYPWUQ7IGF", + "ref": "TYPWUQ7IGF", + "name": "Bellengreville, Route de Paris 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.151468, + 49.10059 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQQ9ULMFY9S", + "ref": "QQ9ULMFY9S", + "name": "Valambray, Rue du Pressoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.151468, + 49.10059 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PQQ9ULMFY9S", + "ref": "QQ9ULMFY9S", + "name": "Valambray, Rue du Pressoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-03", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.439307, + 49.08564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PK9DQ5BOGXT", + "ref": "K9DQ5BOGXT", + "name": "Amayé-sur-Orne, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.439307, + 49.08564 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PK9DQ5BOGXT", + "ref": "K9DQ5BOGXT", + "name": "Amayé-sur-Orne, Grande Rue", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.406258, + 49.265347 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PAWSCCFXPIZ", + "ref": "AWSCCFXPIZ", + "name": "Colomby-Anguerny, Rue du Bout Maçon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.406258, + 49.265347 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PAWSCCFXPIZ", + "ref": "AWSCCFXPIZ", + "name": "Colomby-Anguerny, Rue du Bout Maçon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.059013, + 49.252686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRM3XAKQMTG", + "ref": "RM3XAKQMTG", + "name": "Annebault, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.059013, + 49.252686 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRM3XAKQMTG", + "ref": "RM3XAKQMTG", + "name": "Annebault, Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03761395, + 49.01914912 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PZZNFVRZSHY", + "ref": "ZZNFVRZSHY", + "name": "Saint Pierre Sur Dives, Rue du Bief", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03761395, + 49.01914912 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PZZNFVRZSHY", + "ref": "ZZNFVRZSHY", + "name": "Saint Pierre Sur Dives, Rue du Bief", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03761395, + 49.01914912 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PZZNFVRZSHY", + "ref": "ZZNFVRZSHY", + "name": "Saint Pierre Sur Dives, Rue du Bief", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-12-31", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.165716, + 49.127666 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJ69U6QU8AD", + "ref": "J69U6QU8AD", + "name": "Argences, Rue Gueritot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.165716, + 49.127666 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJ69U6QU8AD", + "ref": "J69U6QU8AD", + "name": "Argences, Rue Gueritot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-04-21", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753121, + 49.002502 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PS0QPPXPGJG", + "ref": "S0QPPXPGJG", + "name": "Dialan sur Chaîne, La Butte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-05", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.623846, + 49.338478 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTL6QWRNSBJ", + "ref": "TL6QWRNSBJ", + "name": "Arromanches-les-Bains, Rue d'Instow", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-14", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.190402, + 49.23114 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PKTAWLU4IZC", + "ref": "KTAWLU4IZC", + "name": "Bavent, Rue de la Petite Justice", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.029128, + 49.306469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGDUIKKNQ0H", + "ref": "GDUIKKNQ0H", + "name": "Auberville, D513", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707942, + 49.280796 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PZABVAJT7UQ", + "ref": "ZABVAJT7UQ", + "name": "Bayeux, Rue Montfiquet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706692, + 49.270863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJLGGHEVQB8", + "ref": "JLGGHEVQB8", + "name": "Bayeux, Boulevard Maréchal Leclerc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706692, + 49.270863 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PJLGGHEVQB8", + "ref": "JLGGHEVQB8", + "name": "Bayeux, Boulevard Maréchal Leclerc", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-19", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "true" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.190402, + 49.23114 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PKTAWLU4IZC", + "ref": "KTAWLU4IZC", + "name": "Bavent, Rue de la Petite Justice", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707942, + 49.280796 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PZABVAJT7UQ", + "ref": "ZABVAJT7UQ", + "name": "Bayeux, Rue Montfiquet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2015-12-22", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.834075, + 49.182762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCIQQYCDPTL", + "ref": "CIQQYCDPTL", + "name": "Balleroy-sur-Drôme, Rue du Sapin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.834075, + 49.182762 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PCIQQYCDPTL", + "ref": "CIQQYCDPTL", + "name": "Balleroy-sur-Drôme, Rue du Sapin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-16", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.633224, + 49.021641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRQ8FFLKBGH", + "ref": "RQ8FFLKBGH", + "name": "Les Monts d'Aunay, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.633224, + 49.021641 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PRQ8FFLKBGH", + "ref": "RQ8FFLKBGH", + "name": "Les Monts d'Aunay, Place du Marché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-03-26", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.029128, + 49.306469 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PGDUIKKNQ0H", + "ref": "GDUIKKNQ0H", + "name": "Auberville, D513", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-07", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.207299, + 49.124958 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref:EU:EVSE": "FRS14PTYPWUQ7IGF", + "ref": "TYPWUQ7IGF", + "name": "Bellengreville, Route de Paris 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-27", + "note": "Autre paiements : compte prépayé.", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55905, + 43.5178 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PWQFNLH", + "ref": "WQFNLH", + "name": "Escalquens, Tennis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-06", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.658565, + 42.9708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PKYHUKN", + "ref": "KYHUKN", + "name": "Frontignan-de-Comminges, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.658565, + 42.9708 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PKYHUKN", + "ref": "KYHUKN", + "name": "Frontignan-de-Comminges, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.61735, + 43.5075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PCHTQTA", + "ref": "CHTQTA", + "name": "Fourquevaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-29", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.61735, + 43.5075 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PCHTQTA", + "ref": "CHTQTA", + "name": "Fourquevaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-29", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18917, + 43.5408 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PFONTENILLES", + "ref": "Fontenilles", + "name": "Fontenilles, Saint-Lys", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18917, + 43.5408 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PFONTENILLES", + "ref": "Fontenilles", + "name": "Fontenilles, Saint-Lys", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2259, + 43.533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PUXRGDF", + "ref": "UXRGDF", + "name": "Fonsorbes, Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2259, + 43.533 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PUXRGDF", + "ref": "UXRGDF", + "name": "Fonsorbes, Intermarché", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55905, + 43.5178 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PWQFNLH", + "ref": "WQFNLH", + "name": "Escalquens, Tennis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-06", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64527, + 42.9147 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PCFCFDE", + "ref": "CFCFDE", + "name": "Cierp-Gaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-18", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74656, + 43.0484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PGSXHEQ", + "ref": "GSXHEQ", + "name": "Encausse les Thermes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74656, + 43.0484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PGSXHEQ", + "ref": "GSXHEQ", + "name": "Encausse les Thermes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.35633, + 43.424 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PBSZNXE", + "ref": "BSZNXE", + "name": "Eaunes, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.35633, + 43.424 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PBSZNXE", + "ref": "BSZNXE", + "name": "Eaunes, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53181, + 43.3139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PUBBRPV", + "ref": "UBBRPV", + "name": "Cintegabelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53181, + 43.3139 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PUBBRPV", + "ref": "UBBRPV", + "name": "Cintegabelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38989, + 43.8399 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PUKUUQS", + "ref": "UKUUQS", + "name": "Fronton, Marcorelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64527, + 42.9147 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PCFCFDE", + "ref": "CFCFDE", + "name": "Cierp-Gaud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-18", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08348, + 43.7146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PNRYGLD", + "ref": "NRYGLD", + "name": "Caubiac, Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08348, + 43.7146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PNRYGLD", + "ref": "NRYGLD", + "name": "Caubiac, Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.35641, + 43.7845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PVVKNSB", + "ref": "VVKNSB", + "name": "Castelnau-d'Estrétefonds", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38989, + 43.8399 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PUKUUQS", + "ref": "UKUUQS", + "name": "Fronton, Marcorelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29456, + 3.7682 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PQRKBCC", + "ref": "QRKBCC", + "name": "Grenade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-06", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32192, + 43.5146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PWCKYQX", + "ref": "WCKYQX", + "name": "Frouzins, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-10-06", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32192, + 43.5146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PWCKYQX", + "ref": "WCKYQX", + "name": "Frouzins, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-10-06", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65462, + 43.5613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PHKTRMU", + "ref": "HKTRMU", + "name": "Lanta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-30", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38962, + 43.4141 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PEJLYVF", + "ref": "EJLYVF", + "name": "Lagardelle-sur-Lèze, Puits", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38962, + 43.4141 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PEJLYVF", + "ref": "EJLYVF", + "name": "Lagardelle-sur-Lèze, Puits", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.16776, + 43.302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PSFQDKY", + "ref": "SFQDKY", + "name": "Lafitte-Vigordane, Chapelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-29", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.16776, + 43.302 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PSFQDKY", + "ref": "SFQDKY", + "name": "Lafitte-Vigordane, Chapelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-29", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.587374, + 43.0393 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PBDSPXY", + "ref": "BDSPXY", + "name": "Labroquère, Rue Armand Ribet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.587374, + 43.0393 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PBDSPXY", + "ref": "BDSPXY", + "name": "Labroquère, Rue Armand Ribet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39608, + 43.4528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PVDUUDE", + "ref": "VDUUDE", + "name": "Labarthe-sur-Lèze, Place François Fournil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39608, + 43.4528 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PVDUUDE", + "ref": "VDUUDE", + "name": "Labarthe-sur-Lèze, Place François Fournil", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53437, + 43.5306 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PLABEGEAUTAN", + "ref": "Labegeautan", + "name": "Labège, Autan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-05", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53437, + 43.5306 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PLABEGEAUTAN", + "ref": "Labegeautan", + "name": "Labège, Autan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-05", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2355, + 43.5993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PHWUTQJ", + "ref": "HWUTQJ", + "name": "Léguevin, rue de la Bastide", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-24", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2355, + 43.5993 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PHWUTQJ", + "ref": "HWUTQJ", + "name": "Léguevin, rue de la Bastide", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-24", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.27251, + 43.5777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PPSBNGZ", + "ref": "PSBNGZ", + "name": "La Salvetat-Saint-Gilles, F. Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-26", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.27251, + 43.5777 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PPSBNGZ", + "ref": "PSBNGZ", + "name": "La Salvetat-Saint-Gilles, F. Mitterrand", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-26", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29456, + 3.7682 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PQRKBCC", + "ref": "QRKBCC", + "name": "Grenade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-06", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53124, + 43.6786 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PHKTWHF", + "ref": "HKTWHF", + "name": "Castelmaurou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11114, + 43.3222 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PNPGJDV", + "ref": "NPGJDV", + "name": "Gratens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-06", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11114, + 43.3222 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PNPGJDV", + "ref": "NPGJDV", + "name": "Gratens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-06", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6839, + 43.3901 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PAMFDJR", + "ref": "AMFDJR", + "name": "Gardouch, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6839, + 43.3901 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PAMFDJR", + "ref": "AMFDJR", + "name": "Gardouch, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.35641, + 43.7845 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PVVKNSB", + "ref": "VVKNSB", + "name": "Castelnau-d'Estrétefonds", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75551, + 43.5312 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PVZFZTP", + "ref": "VZFZTP", + "name": "Caraman, Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-08", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53124, + 43.6786 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PHKTWHF", + "ref": "HKTWHF", + "name": "Castelmaurou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-02", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.49132, + 43.5318 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PTXSCTU", + "ref": "TXSCTU", + "name": "Auzeville-Tolosane, Viognier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-27", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56636, + 43.5063 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PGLTPXT", + "ref": "GLTPXT", + "name": "Belberaud, Chemin de la Briquetterie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-24", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56636, + 43.5063 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PGLTPXT", + "ref": "GLTPXT", + "name": "Belberaud, Chemin de la Briquetterie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-24", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.86942, + 43.1077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PJGVGCS", + "ref": "JGVGCS", + "name": "Beauchalot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.86942, + 43.1077 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PJGVGCS", + "ref": "JGVGCS", + "name": "Beauchalot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62402, + 43.0342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PFVTRXZ", + "ref": "FVTRXZ", + "name": "Barbazan, Pradaou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-23", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62402, + 43.0342 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PFVTRXZ", + "ref": "FVTRXZ", + "name": "Barbazan, Pradaou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-23", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.591993, + 42.7894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PPBFCNZ", + "ref": "PBFCNZ", + "name": "Bagnères-de-Luchon, Lamartine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.591993, + 42.7894 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PPBFCNZ", + "ref": "PBFCNZ", + "name": "Bagnères-de-Luchon, Lamartine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78432, + 43.3666 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PEFDJJV", + "ref": "EFDJJV", + "name": "Avignonet-Lauragais, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-21", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78432, + 43.3666 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PEFDJJV", + "ref": "EFDJJV", + "name": "Avignonet-Lauragais, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-21", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.49132, + 43.5318 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PTXSCTU", + "ref": "TXSCTU", + "name": "Auzeville-Tolosane, Viognier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-27", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.49984, + 43.5146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PGHPTEX", + "ref": "GHPTEX", + "name": "Castanet-Tolosan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-21", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47748, + 43.3508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PATMKAN", + "ref": "ATMKAN", + "name": "Auterive, Proudhon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-27", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47748, + 43.3508 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PATMKAN", + "ref": "ATMKAN", + "name": "Auterive, Proudhon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-27", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.882365, + 43.2166 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PSNAMKZ", + "ref": "SNAMKZ", + "name": "Aurignac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-28", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.882365, + 43.2166 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PSNAMKZ", + "ref": "SNAMKZ", + "name": "Aurignac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-28", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38218, + 43.3521 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PAURIBCIME", + "ref": "Auribcime", + "name": "Auribail, Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-20", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38218, + 43.3521 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PAURIBCIME", + "ref": "Auribcime", + "name": "Auribail, Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-20", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8006, + 43.0147 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PASPECT", + "ref": "aspect", + "name": "Aspet, Armand Latour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-26", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8006, + 43.0147 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PASPECT", + "ref": "aspect", + "name": "Aspet, Armand Latour", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-26", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.667604, + 42.9738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PAQCTJP", + "ref": "AQCTJP", + "name": "Antichan-de-Frontignes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-24", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.667604, + 42.9738 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PAQCTJP", + "ref": "AQCTJP", + "name": "Antichan-de-Frontignes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-24", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.60842, + 43.8004 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PTSMEXT", + "ref": "TSMEXT", + "name": "Bessières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.60842, + 43.8004 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PTSMEXT", + "ref": "TSMEXT", + "name": "Bessières", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.52673, + 43.1917 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PJSYUTY", + "ref": "JSYUTY", + "name": "Boudrac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.52673, + 43.1917 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PJSYUTY", + "ref": "JSYUTY", + "name": "Boudrac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.49984, + 43.5146 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PGHPTEX", + "ref": "GHPTEX", + "name": "Castanet-Tolosan", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-21", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22489, + 43.2959 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PUWQHJA", + "ref": "UWQHJA", + "name": "Carbonne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22489, + 43.2959 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PUWQHJA", + "ref": "UWQHJA", + "name": "Carbonne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02102, + 43.7379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PXNZPHC", + "ref": "XNZPHC", + "name": "Laréole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75551, + 43.5312 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PVZFZTP", + "ref": "VZFZTP", + "name": "Caraman, Cimetière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-08", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.25396, + 43.3436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PQJMSEM", + "ref": "QJMSEM", + "name": "Capens, ZAC Serres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-06", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.25396, + 43.3436 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PQJMSEM", + "ref": "QJMSEM", + "name": "Capens, ZAC Serres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-06", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63377, + 43.2839 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PTSZVVB", + "ref": "TSZVVB", + "name": "Calmont, René Vidal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-27", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63377, + 43.2839 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PTSZVVB", + "ref": "TSZVVB", + "name": "Calmont, René Vidal", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-27", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.05059, + 43.7286 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PCADOURS", + "ref": "cadours", + "name": "Cadours, Raymond Sommer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-29", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.05059, + 43.7286 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PCADOURS", + "ref": "cadours", + "name": "Cadours, Raymond Sommer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-29", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63193, + 43.7791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PZJFBFZ", + "ref": "ZJFBFZ", + "name": "Buzet-sur-Tarn, Rue des Écoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63193, + 43.7791 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PZJFBFZ", + "ref": "ZJFBFZ", + "name": "Buzet-sur-Tarn, Rue des Écoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.19896, + 43.7052 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PXUVKYK", + "ref": "XUVKYK", + "name": "Bretx, Clauses de la Filouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.19896, + 43.7052 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PXUVKYK", + "ref": "XUVKYK", + "name": "Bretx, Clauses de la Filouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.97132, + 43.1764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PBOUSSENSECOL", + "ref": "Boussensecol", + "name": "Boussens, Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.97132, + 43.1764 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PBOUSSENSECOL", + "ref": "Boussensecol", + "name": "Boussens, Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.648923, + 43.2898 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PGUXVRY", + "ref": "GUXVRY", + "name": "Boulogne-sur-Gesse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-28", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.648923, + 43.2898 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PGUXVRY", + "ref": "GUXVRY", + "name": "Boulogne-sur-Gesse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-28", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40547, + 43.7795 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PAJUWUG", + "ref": "AJUWUG", + "name": "Bouloc, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-19", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40547, + 43.7795 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PAJUWUG", + "ref": "AJUWUG", + "name": "Bouloc, République", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-19", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65462, + 43.5613 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PHKTRMU", + "ref": "HKTRMU", + "name": "Lanta", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-30", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.26232, + 43.3967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PLAVERNOSEMAIR", + "ref": "lavernosemair", + "name": "Lavernose-Lacasse, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-12", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02102, + 43.7379 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PXNZPHC", + "ref": "XNZPHC", + "name": "Laréole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21608, + 43.4666 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PZJVBJM", + "ref": "ZJVBJM", + "name": "Saint-Clar-de-Rivière, Grand Place", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-12", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31795, + 43.3307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PEBSQJH", + "ref": "EBSQJH", + "name": "Saint-Sulpice-sur-Lèze, Gendarmerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17848, + 43.5144 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PDFNPAD", + "ref": "DFNPAD", + "name": "Saint-Lys, Rue du Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17848, + 43.5144 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PDFNPAD", + "ref": "DFNPAD", + "name": "Saint-Lys, Rue du Presbytère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.728788, + 43.1101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PVTFJDY", + "ref": "VTFJDY", + "name": "Saint-Gaudens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-09", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.728788, + 43.1101 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PVTFJDY", + "ref": "VTFJDY", + "name": "Saint-Gaudens", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-09", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13566, + 43.2799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PJJBMJP", + "ref": "JJBMJP", + "name": "Saint-Elix-le-Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-28", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13566, + 43.2799 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PJJBMJP", + "ref": "JJBMJP", + "name": "Saint-Elix-le-Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-28", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.61002, + 43.5423 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PUNUUZP", + "ref": "UNUUZP", + "name": "Sainte-Foy-d'Aigrefeuille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.61002, + 43.5423 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PUNUUZP", + "ref": "UNUUZP", + "name": "Sainte-Foy-d'Aigrefeuille", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21608, + 43.4666 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PZJVBJM", + "ref": "ZJVBJM", + "name": "Saint-Clar-de-Rivière, Grand Place", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-12", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.14543, + 43.5284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PXPUVZU", + "ref": "XPUVZU", + "name": "Saiguède, 8 mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18005, + 43.7425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PPWJRPS", + "ref": "PWJRPS", + "name": "Launac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-20", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.14543, + 43.5284 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PXPUVZU", + "ref": "XPUVZU", + "name": "Saiguède, 8 mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.52423, + 43.6649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PSPHLUS", + "ref": "SPHLUS", + "name": "Rouffiac-Tolosan, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.52423, + 43.6649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PSPHLUS", + "ref": "SPHLUS", + "name": "Rouffiac-Tolosan, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.36462, + 43.5001 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PHCREGP", + "ref": "HCREGP", + "name": "Roquettes, Montségur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.36462, + 43.5001 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PHCREGP", + "ref": "HCREGP", + "name": "Roquettes, Montségur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1961, + 43.257 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PZFDBZE", + "ref": "ZFDBZE", + "name": "Rieux-Volvestre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-28", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1961, + 43.257 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PZFDBZE", + "ref": "ZFDBZE", + "name": "Rieux-Volvestre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-28", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11693, + 43.4119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PYURPYW", + "ref": "YURPYW", + "name": "Rieumes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-06", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11693, + 43.4119 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PYURPYW", + "ref": "YURPYW", + "name": "Rieumes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-06", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47782, + 43.5484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PBJUMFP", + "ref": "BJUMFP", + "name": "Ramonville-Saint-Agne, Georges Pompidou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-10", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31795, + 43.3307 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PEBSQJH", + "ref": "EBSQJH", + "name": "Saint-Sulpice-sur-Lèze, Gendarmerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.14609, + 43.4918 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PMYVFWU", + "ref": "MYVFWU", + "name": "Sainte-Foy-de-Peyrolières, Tilleuls", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.14609, + 43.4918 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PMYVFWU", + "ref": "MYVFWU", + "name": "Sainte-Foy-de-Peyrolières, Tilleuls", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7886, + 42.9847 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PSJTZZY", + "ref": "SJTZZY", + "name": "Sengouagnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.50365, + 43.8649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PUDMJKD", + "ref": "UDMJKD", + "name": "Villemur-sur-Tarn", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.50365, + 43.8649 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PUDMJKD", + "ref": "UDMJKD", + "name": "Villemur-sur-Tarn", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71702, + 43.3975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PKWFNTQ", + "ref": "KWFNTQ", + "name": "Villefranche-de-Lauragais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71702, + 43.3975 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PKWFNTQ", + "ref": "KWFNTQ", + "name": "Villefranche-de-Lauragais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4444, + 43.5259 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PVIEILLETOUL", + "ref": "vieilletoul", + "name": "Vieille-Toulouse, Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-05", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4444, + 43.5259 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PVIEILLETOUL", + "ref": "vieilletoul", + "name": "Vieille-Toulouse, Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-05", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66252, + 43.6578 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PWNMVMD", + "ref": "WNMVMD", + "name": "Verfeil, Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66252, + 43.6578 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PWNMVMD", + "ref": "WNMVMD", + "name": "Verfeil, Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4464, + 43.4331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PBSNARD", + "ref": "BSNARD", + "name": "Venerque, Mont Frouzy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-26", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4464, + 43.4331 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PBSNARD", + "ref": "BSNARD", + "name": "Venerque, Mont Frouzy", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-26", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.70622, + 43.0962 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PSDKRWE", + "ref": "SDKRWE", + "name": "Valentine, Baracane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-10", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.70622, + 43.0962 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PSDKRWE", + "ref": "SDKRWE", + "name": "Valentine, Baracane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-10", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58466, + 43.0291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PXEBJZZ", + "ref": "XEBJZZ", + "name": "Valcabrère, Basilique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58466, + 43.0291 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PXEBJZZ", + "ref": "XEBJZZ", + "name": "Valcabrère, Basilique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.95573, + 43.0164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PDBWUFY", + "ref": "DBWUFY", + "name": "Urau, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.95573, + 43.0164 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PDBWUFY", + "ref": "DBWUFY", + "name": "Urau, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67391, + 43.5116 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PUCRLEP", + "ref": "UCRLEP", + "name": "Tarabel, Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-08", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67391, + 43.5116 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PUCRLEP", + "ref": "UCRLEP", + "name": "Tarabel, Ecole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-08", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31135, + 43.4989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PSEYSSESEGL", + "ref": "Seyssesegl", + "name": "Seysses, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-05", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31135, + 43.4989 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PSEYSSESEGL", + "ref": "Seyssesegl", + "name": "Seysses, Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-05", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7886, + 42.9847 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PSJTZZY", + "ref": "SJTZZY", + "name": "Sengouagnet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47782, + 43.5484 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PBJUMFP", + "ref": "BJUMFP", + "name": "Ramonville-Saint-Agne, Georges Pompidou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-10", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03756, + 43.3429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PHBDQVG", + "ref": "HBDQVG", + "name": "Pouy-de-Touges, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03756, + 43.3429 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PHBDQVG", + "ref": "HBDQVG", + "name": "Pouy-de-Touges, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22946, + 43.6919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PWTLBXS", + "ref": "WTLBXS", + "name": "Montaigut-sur-Save, Impasse de la Save", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74389, + 43.0935 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PNXQUHM", + "ref": "NXQUHM", + "name": "Miramont-de-Comminges, Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-06", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74389, + 43.0935 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PNXQUHM", + "ref": "NXQUHM", + "name": "Miramont-de-Comminges, Verdun", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-06", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29722, + 43.723 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PMERVILLEALOU", + "ref": "Mervillealou", + "name": "Merville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29722, + 43.723 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PMERVILLEALOU", + "ref": "Mervillealou", + "name": "Merville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37474, + 43.2247 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PMASSABRAC", + "ref": "Massabrac", + "name": "Massabrac, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-24", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37474, + 43.2247 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PMASSABRAC", + "ref": "Massabrac", + "name": "Massabrac, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-24", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0118, + 43.2001 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PHQDVPR", + "ref": "HQDVPR", + "name": "Martres-Tolosane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0118, + 43.2001 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PHQDVPR", + "ref": "HQDVPR", + "name": "Martres-Tolosane", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24848, + 43.3581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PJMECMY", + "ref": "JMECMY", + "name": "Longages", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83871, + 43.3809 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PEVEHSU", + "ref": "EVEHSU", + "name": "L'Isle en Dodon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83871, + 43.3809 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PEVEHSU", + "ref": "EVEHSU", + "name": "L'Isle en Dodon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22182, + 43.4301 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PVXNBPK", + "ref": "VXNBPK", + "name": "Lherm", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22182, + 43.4301 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PVXNBPK", + "ref": "VXNBPK", + "name": "Lherm", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06589, + 43.2811 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PTWTEDH", + "ref": "TWTEDH", + "name": "Le Fousseret, Place du 11 Novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-06", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06589, + 43.2811 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PTWTEDH", + "ref": "TWTEDH", + "name": "Le Fousseret, Place du 11 Novembre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-06", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29477, + 43.398 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PLEFAUGAFETE", + "ref": "Lefaugafete", + "name": "Le Fauga, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29477, + 43.398 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PLEFAUGAFETE", + "ref": "Lefaugafete", + "name": "Le Fauga, Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.26232, + 43.3967 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PLAVERNOSEMAIR", + "ref": "lavernosemair", + "name": "Lavernose-Lacasse, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-12", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11904, + 43.2552 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PVUSGRP", + "ref": "VUSGRP", + "name": "Lavelanet-de-Comminges, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-10", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11904, + 43.2552 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PVUSGRP", + "ref": "VUSGRP", + "name": "Lavelanet-de-Comminges, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-10", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18005, + 43.7425 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PPWJRPS", + "ref": "PWJRPS", + "name": "Launac", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-20", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22946, + 43.6919 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PWTLBXS", + "ref": "WTLBXS", + "name": "Montaigut-sur-Save, Impasse de la Save", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59226, + 43.717 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PFHPGXB", + "ref": "FHPGXB", + "name": "Montastruc-la-Conseillère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30224, + 43.5628 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PSCPPWG", + "ref": "SCPPWG", + "name": "Plaisance-du-Touch, Avenue Montaigne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-07", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59226, + 43.717 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PFHPGXB", + "ref": "FHPGXB", + "name": "Montastruc-la-Conseillère", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30224, + 43.5628 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PSCPPWG", + "ref": "SCPPWG", + "name": "Plaisance-du-Touch, Avenue Montaigne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-07", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38719, + 43.4798 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PGTTUTH", + "ref": "GTTUTH", + "name": "Pins-Justaret, Croisette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-21", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38719, + 43.4798 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PGTTUTH", + "ref": "GTTUTH", + "name": "Pins-Justaret, Croisette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-21", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39033, + 43.5069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PBMJCXM", + "ref": "BMJCXM", + "name": "Pinsaguel, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-31", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39033, + 43.5069 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PBMJCXM", + "ref": "BMJCXM", + "name": "Pinsaguel, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-31", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17716, + 43.3211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PYKUDXS", + "ref": "YKUDXS", + "name": "Peyssies, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-08", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17716, + 43.3211 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PYKUDXS", + "ref": "YKUDXS", + "name": "Peyssies, Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-08", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46728, + 43.7054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PSSDAJP", + "ref": "SSDAJP", + "name": "Pechbonnieu, 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-10", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46728, + 43.7054 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PSSDAJP", + "ref": "SSDAJP", + "name": "Pechbonnieu, 8 Mai 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-10", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.27554, + 43.3581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PTDZVPU", + "ref": "TDZVPU", + "name": "Noé, Sainte-Marie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-26", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.27554, + 43.3581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PTDZVPU", + "ref": "TDZVPU", + "name": "Noé, Sainte-Marie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-26", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62286, + 43.3577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PWUKNSS", + "ref": "WUKNSS", + "name": "Nailloux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62286, + 43.3577 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PWUKNSS", + "ref": "WUKNSS", + "name": "Nailloux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-16", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57109, + 43.0849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PEFRPWM", + "ref": "EFRPWM", + "name": "Montréjeau, Cinéma", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57109, + 43.0849 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PEFRPWM", + "ref": "EFRPWM", + "name": "Montréjeau, Cinéma", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-15", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53011, + 43.7671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PCLHEGY", + "ref": "CLHEGY", + "name": "Montjoire, Toulouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53011, + 43.7671 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PCLHEGY", + "ref": "CLHEGY", + "name": "Montjoire, Toulouse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-09-13", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23037, + 43.2099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PMONTESQUESPLA", + "ref": "montesquespla", + "name": "Montesquieu-Volvestre, Esplanade Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-05", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23037, + 43.2099 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PMONTESQUESPLA", + "ref": "montesquespla", + "name": "Montesquieu-Volvestre, Esplanade Nord", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-05", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48099, + 43.7151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PMBUWWA", + "ref": "MBUWWA", + "name": "Montberon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-21", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48099, + 43.7151 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PMBUWWA", + "ref": "MBUWWA", + "name": "Montberon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-21", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24848, + 43.3581 + ] + }, + "properties": { + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref:EU:EVSE": "FRS31PJMECMY", + "ref": "JMECMY", + "name": "Longages", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-01", + "note": "", + "source:date": "2022-02-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.941274, + 43.547829 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2612", + "ref": "FR*SOD*S*WIIZ*26*1*_*_", + "name": "MANDELIEU PARKING BEGUIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.934108, + 43.485077 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4212", + "ref": "FR*SOD*S*WIIZ*42*1*_*_", + "name": "THEOULE PORT DE LA FIGUEIRETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.106864, + 43.686066 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7212", + "ref": "FR*SOD*S*WIIZ*72*1*_*_", + "name": "LA COLLE SUR LOUP PARKING STRAPUTICARI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.094443, + 43.627628 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7012", + "ref": "FR*SOD*S*WIIZ*70*1*_*_", + "name": "BIOT PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.099003, + 43.685253 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7111", + "ref": "FR*SOD*S*WIIZ*71*1*_*_", + "name": "LA COLLE SUR LOUP STADE DE FOOTBALL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.099003, + 43.685253 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7112", + "ref": "FR*SOD*S*WIIZ*71*1*_*_", + "name": "LA COLLE SUR LOUP STADE DE FOOTBALL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.106864, + 43.686066 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7211", + "ref": "FR*SOD*S*WIIZ*72*1*_*_", + "name": "LA COLLE SUR LOUP PARKING STRAPUTICARI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.094443, + 43.627628 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7011", + "ref": "FR*SOD*S*WIIZ*70*1*_*_", + "name": "BIOT PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.045228, + 43.624069 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7311", + "ref": "FR*SOD*S*WIIZ*73*1*_*_", + "name": "VALBONNE PARKING GARBEJAIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.045228, + 43.624069 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7312", + "ref": "FR*SOD*S*WIIZ*73*1*_*_", + "name": "VALBONNE PARKING GARBEJAIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.007241, + 43.642086 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7411", + "ref": "FR*SOD*S*WIIZ*74*1*_*_", + "name": "VALBONNE PARKING VALIS BONNA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.007241, + 43.642086 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7412", + "ref": "FR*SOD*S*WIIZ*74*1*_*_", + "name": "VALBONNE PARKING VALIS BONNA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.120866, + 43.578243 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6912", + "ref": "FR*SOD*S*WIIZ*69*1*_*_", + "name": "ANTIBES PARKING FOCH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.973192, + 43.620224 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6612", + "ref": "FR*SOD*S*WIIZ*66*1*_*_", + "name": "MOUANS SARTOUX PARKING DE LA GARE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.971394, + 43.61684 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6721", + "ref": "FR*SOD*S*WIIZ*67*2*_*_", + "name": "MOUANS SARTOUX PARKING DU PARC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.973192, + 43.620224 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6621", + "ref": "FR*SOD*S*WIIZ*66*2*_*_", + "name": "MOUANS SARTOUX PARKING DE LA GARE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.973192, + 43.620224 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6622", + "ref": "FR*SOD*S*WIIZ*66*2*_*_", + "name": "MOUANS SARTOUX PARKING DE LA GARE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.971394, + 43.61684 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6711", + "ref": "FR*SOD*S*WIIZ*67*1*_*_", + "name": "MOUANS SARTOUX PARKING DU PARC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.971394, + 43.61684 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6712", + "ref": "FR*SOD*S*WIIZ*67*1*_*_", + "name": "MOUANS SARTOUX PARKING DU PARC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.971394, + 43.61684 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6722", + "ref": "FR*SOD*S*WIIZ*67*2*_*_", + "name": "MOUANS SARTOUX PARKING DU PARC", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12197, + 43.600079 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6811", + "ref": "FR*SOD*S*WIIZ*68*1*_*_", + "name": "ANTIBES PARKING GARBERO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12197, + 43.600079 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6812", + "ref": "FR*SOD*S*WIIZ*68*1*_*_", + "name": "ANTIBES PARKING GARBERO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.120866, + 43.578243 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6911", + "ref": "FR*SOD*S*WIIZ*69*1*_*_", + "name": "ANTIBES PARKING FOCH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.039275, + 43.621956 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7511", + "ref": "FR*SOD*S*WIIZ*75*1*_*_", + "name": "VALBONNE PLACE BERMOND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.039275, + 43.621956 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7512", + "ref": "FR*SOD*S*WIIZ*75*1*_*_", + "name": "VALBONNE PLACE BERMOND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01581, + 43.569206 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8411", + "ref": "FR*SOD*S*WIIZ*84*1*_*_", + "name": "LE CANNET PARKING GRIGNAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.847364, + 43.700356 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8111", + "ref": "FR*SOD*S*WIIZ*81*1*_*_", + "name": "ST VALLIER DE THIEY PARKING ESPACE DU THIEY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.847364, + 43.700356 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8112", + "ref": "FR*SOD*S*WIIZ*81*1*_*_", + "name": "ST VALLIER DE THIEY PARKING ESPACE DU THIEY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016371, + 43.577526 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8311", + "ref": "FR*SOD*S*WIIZ*83*1*_*_", + "name": "LE CANNET PARKING DES MOULIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.016371, + 43.577526 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8312", + "ref": "FR*SOD*S*WIIZ*83*1*_*_", + "name": "LE CANNET PARKING DES MOULIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01581, + 43.569206 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8412", + "ref": "FR*SOD*S*WIIZ*84*1*_*_", + "name": "LE CANNET PARKING GRIGNAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.998012, + 43.577129 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8511", + "ref": "FR*SOD*S*WIIZ*85*1*_*_", + "name": "LE CANNET PARKING LES LENTISQUES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.998012, + 43.577129 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8512", + "ref": "FR*SOD*S*WIIZ*85*1*_*_", + "name": "LE CANNET PARKING LES LENTISQUES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.006267, + 43.576397 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8611", + "ref": "FR*SOD*S*WIIZ*86*1*_*_", + "name": "LE CANNET PARKING STADE JEANPIERRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.006267, + 43.576397 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8612", + "ref": "FR*SOD*S*WIIZ*86*1*_*_", + "name": "LE CANNET PARKING STADE JEANPIERRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.875872, + 43.639107 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8012", + "ref": "FR*SOD*S*WIIZ*80*1*_*_", + "name": "PEYMEINADE PARKING ST MARC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.875872, + 43.639107 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8011", + "ref": "FR*SOD*S*WIIZ*80*1*_*_", + "name": "PEYMEINADE PARKING ST MARC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.007235, + 43.640324 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7611", + "ref": "FR*SOD*S*WIIZ*76*1*_*_", + "name": "VALBONNE PARKING HOTEL DE VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.007235, + 43.640324 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7612", + "ref": "FR*SOD*S*WIIZ*76*1*_*_", + "name": "VALBONNE PARKING HOTEL DE VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.875867, + 43.655693 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7711", + "ref": "FR*SOD*S*WIIZ*77*1*_*_", + "name": "CABRIS PARKING DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.875867, + 43.655693 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7712", + "ref": "FR*SOD*S*WIIZ*77*1*_*_", + "name": "CABRIS PARKING DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.863265, + 43.888893 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7811", + "ref": "FR*SOD*S*WIIZ*78*1*_*_", + "name": "COLLONGUES PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.863265, + 43.888893 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7812", + "ref": "FR*SOD*S*WIIZ*78*1*_*_", + "name": "COLLONGUES PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.929529, + 43.592361 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7911", + "ref": "FR*SOD*S*WIIZ*79*1*_*_", + "name": "PEGOMAS PARKING LOGIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.929529, + 43.592361 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ7912", + "ref": "FR*SOD*S*WIIZ*79*1*_*_", + "name": "PEGOMAS PARKING LOGIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.973192, + 43.620224 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6611", + "ref": "FR*SOD*S*WIIZ*66*1*_*_", + "name": "MOUANS SARTOUX PARKING DE LA GARE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.968254, + 43.566551 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8711", + "ref": "FR*SOD*S*WIIZ*87*1*_*_", + "name": "LE CANNET PARKING MAIRIE ANNEXE LES PARADISIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12692, + 43.656189 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5112", + "ref": "FR*SOD*S*WIIZ*51*1*_*_", + "name": "VILLENEUVE LOUBET PARKING MEDIATHEQUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.943561, + 43.796143 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4912", + "ref": "FR*SOD*S*WIIZ*49*1*_*_", + "name": "GREOLIERES PARKING FAISSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.063297, + 43.718616 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5011", + "ref": "FR*SOD*S*WIIZ*50*1*_*_", + "name": "TOURETTES SUR LOUP PARKING DE LA MADELEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.063297, + 43.718616 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5012", + "ref": "FR*SOD*S*WIIZ*50*1*_*_", + "name": "TOURETTES SUR LOUP PARKING DE LA MADELEINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12692, + 43.656189 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5111", + "ref": "FR*SOD*S*WIIZ*51*1*_*_", + "name": "VILLENEUVE LOUBET PARKING MEDIATHEQUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12692, + 43.656189 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5121", + "ref": "FR*SOD*S*WIIZ*51*2*_*_", + "name": "VILLENEUVE LOUBET PARKING MEDIATHEQUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.943561, + 43.796143 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4911", + "ref": "FR*SOD*S*WIIZ*49*1*_*_", + "name": "GREOLIERES PARKING FAISSE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12692, + 43.656189 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5122", + "ref": "FR*SOD*S*WIIZ*51*2*_*_", + "name": "VILLENEUVE LOUBET PARKING MEDIATHEQUE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.139475, + 43.637203 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5211", + "ref": "FR*SOD*S*WIIZ*52*1*_*_", + "name": "VILLENEUVE LOUBET PARKING FIGHIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.139475, + 43.637203 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5212", + "ref": "FR*SOD*S*WIIZ*52*1*_*_", + "name": "VILLENEUVE LOUBET PARKING FIGHIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.120687, + 43.658474 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5311", + "ref": "FR*SOD*S*WIIZ*53*1*_*_", + "name": "VILLENEUVE LOUBET PARKING GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.037986, + 43.587605 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4511", + "ref": "FR*SOD*S*WIIZ*45*1*_*_", + "name": "MOUGINS CENTRE SPORTIF DE MOUGINS LE HAUT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.966343, + 43.54985 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4311", + "ref": "FR*SOD*S*WIIZ*43*1*_*_", + "name": "CANNES CONTRE ALLEE FRANCIS TONNER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.966343, + 43.54985 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4312", + "ref": "FR*SOD*S*WIIZ*43*1*_*_", + "name": "CANNES CONTRE ALLEE FRANCIS TONNER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.997377, + 43.60107 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4411", + "ref": "FR*SOD*S*WIIZ*44*1*_*_", + "name": "MOUGINS PARKING DU MOULIN DE LA CROIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.997377, + 43.60107 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4412", + "ref": "FR*SOD*S*WIIZ*44*1*_*_", + "name": "MOUGINS PARKING DU MOULIN DE LA CROIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.037986, + 43.587605 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4512", + "ref": "FR*SOD*S*WIIZ*45*1*_*_", + "name": "MOUGINS CENTRE SPORTIF DE MOUGINS LE HAUT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.998574, + 43.580826 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4812", + "ref": "FR*SOD*S*WIIZ*48*1*_*_", + "name": "MOUGINS PARKING PISCINE DES CAMPELIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.015534, + 43.609589 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4711", + "ref": "FR*SOD*S*WIIZ*47*1*_*_", + "name": "MOUGINS PARKING SALLE OMNISPORTS DU FONT DE LORME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.015534, + 43.609589 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4712", + "ref": "FR*SOD*S*WIIZ*47*1*_*_", + "name": "MOUGINS PARKING SALLE OMNISPORTS DU FONT DE LORME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.998574, + 43.580826 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4811", + "ref": "FR*SOD*S*WIIZ*48*1*_*_", + "name": "MOUGINS PARKING PISCINE DES CAMPELIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.120687, + 43.658474 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5312", + "ref": "FR*SOD*S*WIIZ*53*1*_*_", + "name": "VILLENEUVE LOUBET PARKING GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.944208, + 43.654076 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6212", + "ref": "FR*SOD*S*WIIZ*62*1*_*_", + "name": "GRASSE PARKING GIRATOIRE DU MOULIN DE BRUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.043364, + 43.668011 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5912", + "ref": "FR*SOD*S*WIIZ*59*1*_*_", + "name": "ROQUEFORT PARKING INTERMARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.926369, + 43.654064 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6011", + "ref": "FR*SOD*S*WIIZ*60*1*_*_", + "name": "GRASSE PARKING GARE SNCF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.926369, + 43.654064 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6012", + "ref": "FR*SOD*S*WIIZ*60*1*_*_", + "name": "GRASSE PARKING GARE SNCF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.944208, + 43.654076 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6211", + "ref": "FR*SOD*S*WIIZ*62*1*_*_", + "name": "GRASSE PARKING GIRATOIRE DU MOULIN DE BRUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.056048, + 43.57943 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5411", + "ref": "FR*SOD*S*WIIZ*54*1*_*_", + "name": "VALLAURIS PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.911085, + 43.639103 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6411", + "ref": "FR*SOD*S*WIIZ*64*1*_*_", + "name": "GRASSE PARKING LA CHESNAIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.911085, + 43.639103 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6412", + "ref": "FR*SOD*S*WIIZ*64*1*_*_", + "name": "GRASSE PARKING LA CHESNAIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.936605, + 43.640907 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6511", + "ref": "FR*SOD*S*WIIZ*65*1*_*_", + "name": "GRASSE PARKING ALAMBIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.936605, + 43.640907 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ6512", + "ref": "FR*SOD*S*WIIZ*65*1*_*_", + "name": "GRASSE PARKING ALAMBIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.043364, + 43.668011 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5911", + "ref": "FR*SOD*S*WIIZ*59*1*_*_", + "name": "ROQUEFORT PARKING INTERMARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04891, + 43.665592 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5812", + "ref": "FR*SOD*S*WIIZ*58*1*_*_", + "name": "ROQUEFORT PARKING CENTRE VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.056048, + 43.57943 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5412", + "ref": "FR*SOD*S*WIIZ*54*1*_*_", + "name": "VALLAURIS PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.072232, + 43.564846 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5511", + "ref": "FR*SOD*S*WIIZ*55*1*_*_", + "name": "VALLAURIS PARKING PLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.072232, + 43.564846 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5512", + "ref": "FR*SOD*S*WIIZ*55*1*_*_", + "name": "VALLAURIS PARKING PLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.077683, + 43.571644 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5611", + "ref": "FR*SOD*S*WIIZ*56*1*_*_", + "name": "VALLAURIS PARKING ALLINEI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.077683, + 43.571644 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5612", + "ref": "FR*SOD*S*WIIZ*56*1*_*_", + "name": "VALLAURIS PARKING ALLINEI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.073825, + 43.569656 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5711", + "ref": "FR*SOD*S*WIIZ*57*1*_*_", + "name": "VALLAURIS PARKING LOUCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.073825, + 43.569656 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5712", + "ref": "FR*SOD*S*WIIZ*57*1*_*_", + "name": "VALLAURIS PARKING LOUCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04891, + 43.665592 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ5811", + "ref": "FR*SOD*S*WIIZ*58*1*_*_", + "name": "ROQUEFORT PARKING CENTRE VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92296, + 43.651211 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12212", + "ref": "FR*SOD*S*WIIZ*122*1*_*_", + "name": "GRASSE PARKING SQUARE DES DIABLES BLEUS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.955042, + 43.607211 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12112", + "ref": "FR*SOD*S*WIIZ*121*1*_*_", + "name": "MOUANS SARTOUX - PARKING ZI ARGILE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.955042, + 43.607211 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12121", + "ref": "FR*SOD*S*WIIZ*121*2*_*_", + "name": "MOUANS SARTOUX - PARKING ZI ARGILE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.955042, + 43.607211 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12122", + "ref": "FR*SOD*S*WIIZ*121*2*_*_", + "name": "MOUANS SARTOUX - PARKING ZI ARGILE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92296, + 43.651211 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12211", + "ref": "FR*SOD*S*WIIZ*122*1*_*_", + "name": "GRASSE PARKING SQUARE DES DIABLES BLEUS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.000926, + 43.549382 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12311", + "ref": "FR*SOD*S*WIIZ*123*1*_*_", + "name": "CANNES PARKING LIEGEARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.955042, + 43.607211 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12111", + "ref": "FR*SOD*S*WIIZ*121*1*_*_", + "name": "MOUANS SARTOUX - PARKING ZI ARGILE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.000926, + 43.549382 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12312", + "ref": "FR*SOD*S*WIIZ*123*1*_*_", + "name": "CANNES PARKING LIEGEARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.125101, + 43.573163 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12511", + "ref": "FR*SOD*S*WIIZ*125*1*_*_", + "name": "ANTIBES - PARKING PLAGE DU PONTEIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.125101, + 43.573163 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12512", + "ref": "FR*SOD*S*WIIZ*125*1*_*_", + "name": "ANTIBES - PARKING PLAGE DU PONTEIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.959449, + 43.552794 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12611", + "ref": "FR*SOD*S*WIIZ*126*1*_*_", + "name": "CANNES - PARKING BASTIDE ROUGE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.941249, + 43.52533 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11311", + "ref": "FR*SOD*S*WIIZ*113*1*_*_", + "name": "MANDELIEU-LA-NAPOULE PARKING CHANTIER NAVAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.944397, + 43.487486 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11512", + "ref": "FR*SOD*S*WIIZ*115*1*_*_", + "name": "THEOULE-SUR-MER PARKING VERT BISSON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.941249, + 43.52533 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11312", + "ref": "FR*SOD*S*WIIZ*113*1*_*_", + "name": "MANDELIEU-LA-NAPOULE PARKING CHANTIER NAVAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.939465, + 43.521552 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11411", + "ref": "FR*SOD*S*WIIZ*114*1*_*_", + "name": "MANDELIEU-LA-NAPOULE PARKING BALCONS DAZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.939465, + 43.521552 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11412", + "ref": "FR*SOD*S*WIIZ*114*1*_*_", + "name": "MANDELIEU-LA-NAPOULE PARKING BALCONS DAZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.944397, + 43.487486 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11511", + "ref": "FR*SOD*S*WIIZ*115*1*_*_", + "name": "THEOULE-SUR-MER PARKING VERT BISSON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.030741, + 43.624772 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11611", + "ref": "FR*SOD*S*WIIZ*116*1*_*_", + "name": "SOPHIA ANTIPOLIS - CASA GENETS - PUBLIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.97701, + 43.643076 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12012", + "ref": "FR*SOD*S*WIIZ*120*1*_*_", + "name": "GRASSE - PARKING PLASCASSIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.030741, + 43.624772 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11611", + "ref": "FR*SOD*S*WIIZ*116*1*_*_", + "name": "SOPHIA ANTIPOLIS - CASA GENETS - PUBLIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.030741, + 43.624772 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11612", + "ref": "FR*SOD*S*WIIZ*116*1*_*_", + "name": "SOPHIA ANTIPOLIS - CASA GENETS - PUBLIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.030741, + 43.624772 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11612", + "ref": "FR*SOD*S*WIIZ*116*1*_*_", + "name": "SOPHIA ANTIPOLIS - CASA GENETS - PUBLIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.97701, + 43.643076 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12011", + "ref": "FR*SOD*S*WIIZ*120*1*_*_", + "name": "GRASSE - PARKING PLASCASSIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.959449, + 43.552794 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12612", + "ref": "FR*SOD*S*WIIZ*126*1*_*_", + "name": "CANNES - PARKING BASTIDE ROUGE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.969609, + 43.621304 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13022", + "ref": "FR*SOD*S*WIIZ*130*2*_*_", + "name": "MOUANS SARTOUX - PARKING P+R", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.927584, + 43.653981 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12922", + "ref": "FR*SOD*S*WIIZ*129*2*_*_", + "name": "GRASSE - PARKING P+R GARE DE GRASSE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.969609, + 43.621304 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13011", + "ref": "FR*SOD*S*WIIZ*130*1*_*_", + "name": "MOUANS SARTOUX - PARKING P+R", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.969609, + 43.621304 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13012", + "ref": "FR*SOD*S*WIIZ*130*1*_*_", + "name": "MOUANS SARTOUX - PARKING P+R", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.969609, + 43.621304 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13021", + "ref": "FR*SOD*S*WIIZ*130*2*_*_", + "name": "MOUANS SARTOUX - PARKING P+R", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.959449, + 43.552794 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12621", + "ref": "FR*SOD*S*WIIZ*126*2*_*_", + "name": "CANNES - PARKING BASTIDE ROUGE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.969609, + 43.621304 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13031", + "ref": "FR*SOD*S*WIIZ*130*3*_*_", + "name": "MOUANS SARTOUX - PARKING P+R", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.969609, + 43.621304 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13032", + "ref": "FR*SOD*S*WIIZ*130*3*_*_", + "name": "MOUANS SARTOUX - PARKING P+R", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.969609, + 43.621304 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13041", + "ref": "FR*SOD*S*WIIZ*130*4*_*_", + "name": "MOUANS SARTOUX - PARKING P+R", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.969609, + 43.621304 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ13042", + "ref": "FR*SOD*S*WIIZ*130*4*_*_", + "name": "MOUANS SARTOUX - PARKING P+R", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.927584, + 43.653981 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12921", + "ref": "FR*SOD*S*WIIZ*129*2*_*_", + "name": "GRASSE - PARKING P+R GARE DE GRASSE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.927584, + 43.653981 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12912", + "ref": "FR*SOD*S*WIIZ*129*1*_*_", + "name": "GRASSE - PARKING P+R GARE DE GRASSE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.959449, + 43.552794 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12622", + "ref": "FR*SOD*S*WIIZ*126*2*_*_", + "name": "CANNES - PARKING BASTIDE ROUGE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.959449, + 43.552794 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12631", + "ref": "FR*SOD*S*WIIZ*126*3*_*_", + "name": "CANNES - PARKING BASTIDE ROUGE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.959449, + 43.552794 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12632", + "ref": "FR*SOD*S*WIIZ*126*3*_*_", + "name": "CANNES - PARKING BASTIDE ROUGE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.959449, + 43.552794 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12641", + "ref": "FR*SOD*S*WIIZ*126*4*_*_", + "name": "CANNES - PARKING BASTIDE ROUGE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.959449, + 43.552794 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12642", + "ref": "FR*SOD*S*WIIZ*126*4*_*_", + "name": "CANNES - PARKING BASTIDE ROUGE", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.121963, + 43.70119 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12811", + "ref": "FR*SOD*S*WIIZ*128*1*_*_", + "name": "ST PAUL DE VENCE - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.121963, + 43.70119 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12812", + "ref": "FR*SOD*S*WIIZ*128*1*_*_", + "name": "ST PAUL DE VENCE - PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.927584, + 43.653981 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ12911", + "ref": "FR*SOD*S*WIIZ*129*1*_*_", + "name": "GRASSE - PARKING P+R GARE DE GRASSE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.968254, + 43.566551 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8712", + "ref": "FR*SOD*S*WIIZ*87*1*_*_", + "name": "LE CANNET PARKING MAIRIE ANNEXE LES PARADISIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.892531, + 43.64505 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9411", + "ref": "FR*SOD*S*WIIZ*94*1*_*_", + "name": "PEYMEINADE - PARKING CO-VOITURAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94775, + 43.550339 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9221", + "ref": "FR*SOD*S*WIIZ*92*2*_*_", + "name": "MANDELIEU ROND-POINT DE LA CANARDIERE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94775, + 43.550339 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9222", + "ref": "FR*SOD*S*WIIZ*92*2*_*_", + "name": "MANDELIEU ROND-POINT DE LA CANARDIERE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.932883, + 43.620566 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9311", + "ref": "FR*SOD*S*WIIZ*93*1*_*_", + "name": "GRASSE - PARKING HOPITAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.932883, + 43.620566 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9312", + "ref": "FR*SOD*S*WIIZ*93*1*_*_", + "name": "GRASSE - PARKING HOPITAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.892531, + 43.64505 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9412", + "ref": "FR*SOD*S*WIIZ*94*1*_*_", + "name": "PEYMEINADE - PARKING CO-VOITURAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94775, + 43.550339 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9212", + "ref": "FR*SOD*S*WIIZ*92*1*_*_", + "name": "MANDELIEU ROND-POINT DE LA CANARDIERE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.984026, + 43.568851 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9711", + "ref": "FR*SOD*S*WIIZ*97*1*_*_", + "name": "LE CANNET - PARKING PALESTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.984026, + 43.568851 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9712", + "ref": "FR*SOD*S*WIIZ*97*1*_*_", + "name": "LE CANNET - PARKING PALESTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-03-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.054662, + 43.62566 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9811", + "ref": "FR*SOD*S*WIIZ*98*1*_*_", + "name": "VALBONNE - PARKING NAUTIPOLIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.054662, + 43.62566 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9812", + "ref": "FR*SOD*S*WIIZ*98*1*_*_", + "name": "VALBONNE - PARKING NAUTIPOLIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.038457, + 43.543026 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11212", + "ref": "FR*SOD*S*WIIZ*112*1*_*_", + "name": "CANNES PARKING LERINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.993788, + 43.569118 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8912", + "ref": "FR*SOD*S*WIIZ*89*1*_*_", + "name": "LE CANNET PARKING BUFFON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.018548, + 43.575386 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8811", + "ref": "FR*SOD*S*WIIZ*88*1*_*_", + "name": "LE CANNET PARKING RUE DES ORANGERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.018548, + 43.575386 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8812", + "ref": "FR*SOD*S*WIIZ*88*1*_*_", + "name": "LE CANNET PARKING RUE DES ORANGERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.993788, + 43.569118 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ8911", + "ref": "FR*SOD*S*WIIZ*89*1*_*_", + "name": "LE CANNET PARKING BUFFON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.873651, + 43.638214 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9011", + "ref": "FR*SOD*S*WIIZ*90*1*_*_", + "name": "PEYMEINADE PARKING COMPLEXE SPORTIF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.94775, + 43.550339 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9211", + "ref": "FR*SOD*S*WIIZ*92*1*_*_", + "name": "MANDELIEU ROND-POINT DE LA CANARDIERE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.873651, + 43.638214 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9012", + "ref": "FR*SOD*S*WIIZ*90*1*_*_", + "name": "PEYMEINADE PARKING COMPLEXE SPORTIF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.793363, + 43.650307 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9111", + "ref": "FR*SOD*S*WIIZ*91*1*_*_", + "name": "ST CEZAIRE SUR SIAGNE PARKING CHEMIN DE LA CHAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.793363, + 43.650307 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9112", + "ref": "FR*SOD*S*WIIZ*91*1*_*_", + "name": "ST CEZAIRE SUR SIAGNE PARKING CHEMIN DE LA CHAUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.133592, + 43.628931 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9911", + "ref": "FR*SOD*S*WIIZ*99*1*_*_", + "name": "VILLENEUVE LOUBET PARKING GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.025539, + 43.553686 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11011", + "ref": "FR*SOD*S*WIIZ*110*1*_*_", + "name": "CANNES PARKING LORRAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.922162, + 43.655693 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10711", + "ref": "FR*SOD*S*WIIZ*107*1*_*_", + "name": "GRASSE PARKING AVENUE CARNOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.922162, + 43.655693 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10712", + "ref": "FR*SOD*S*WIIZ*107*1*_*_", + "name": "GRASSE PARKING AVENUE CARNOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.118111, + 43.589299 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10911", + "ref": "FR*SOD*S*WIIZ*109*1*_*_", + "name": "ANTIBES PARKING JULES GREC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.118111, + 43.589299 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10912", + "ref": "FR*SOD*S*WIIZ*109*1*_*_", + "name": "ANTIBES PARKING JULES GREC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.025539, + 43.553686 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11012", + "ref": "FR*SOD*S*WIIZ*110*1*_*_", + "name": "CANNES PARKING LORRAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.133592, + 43.628931 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ9912", + "ref": "FR*SOD*S*WIIZ*99*1*_*_", + "name": "VILLENEUVE LOUBET PARKING GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.032011, + 43.548501 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11111", + "ref": "FR*SOD*S*WIIZ*111*1*_*_", + "name": "CANNES PARKING VAUTRIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.032011, + 43.548501 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11112", + "ref": "FR*SOD*S*WIIZ*111*1*_*_", + "name": "CANNES PARKING VAUTRIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.038457, + 43.543026 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ11211", + "ref": "FR*SOD*S*WIIZ*112*1*_*_", + "name": "CANNES PARKING LERINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.021575, + 43.575086 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10621", + "ref": "FR*SOD*S*WIIZ*106*2*_*_", + "name": "LE CANNET PARKING VAL DAZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.021575, + 43.575086 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10611", + "ref": "FR*SOD*S*WIIZ*106*1*_*_", + "name": "LE CANNET PARKING VAL DAZUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.005276, + 43.570099 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10011", + "ref": "FR*SOD*S*WIIZ*100*1*_*_", + "name": "LE CANNET - PARKING ROCHEVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.005276, + 43.570099 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10012", + "ref": "FR*SOD*S*WIIZ*100*1*_*_", + "name": "LE CANNET - PARKING ROCHEVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-02-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.096315, + 43.628653 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10111", + "ref": "FR*SOD*S*WIIZ*101*1*_*_", + "name": "BIOT PARKING BACHETTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.096315, + 43.628653 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10112", + "ref": "FR*SOD*S*WIIZ*101*1*_*_", + "name": "BIOT PARKING BACHETTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.091817, + 43.595834 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10211", + "ref": "FR*SOD*S*WIIZ*102*1*_*_", + "name": "PARKING MARTYRS DE LA RESISTANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.091817, + 43.595834 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10212", + "ref": "FR*SOD*S*WIIZ*102*1*_*_", + "name": "PARKING MARTYRS DE LA RESISTANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.948066, + 43.567243 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10311", + "ref": "FR*SOD*S*WIIZ*103*1*_*_", + "name": "PARKING MERMOZ 1", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.948066, + 43.567243 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ10312", + "ref": "FR*SOD*S*WIIZ*103*1*_*_", + "name": "PARKING MERMOZ 1", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.123361, + 43.583973 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1021", + "ref": "FR*SOD*S*WIIZ*10*2*_*_", + "name": "ANTIBES PARKING ST ROCH", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.912976, + 43.639542 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1311", + "ref": "FR*SOD*S*WIIZ*13*1*_*_", + "name": "GRASSE PARKING PLACE FREDERIC MISTRAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.932813, + 43.637276 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1611", + "ref": "FR*SOD*S*WIIZ*16*1*_*_", + "name": "GRASSE STADE PERDIGON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.927089, + 43.656872 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1512", + "ref": "FR*SOD*S*WIIZ*15*1*_*_", + "name": "GRASSE PARKING SALLE OMNISPORTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.927089, + 43.656872 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1511", + "ref": "FR*SOD*S*WIIZ*15*1*_*_", + "name": "GRASSE PARKING SALLE OMNISPORTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.912976, + 43.639542 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1312", + "ref": "FR*SOD*S*WIIZ*13*1*_*_", + "name": "GRASSE PARKING PLACE FREDERIC MISTRAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.952294, + 43.632511 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1212", + "ref": "FR*SOD*S*WIIZ*12*1*_*_", + "name": "GRASSE STADE DE LA PAOUTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.952294, + 43.632511 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1211", + "ref": "FR*SOD*S*WIIZ*12*1*_*_", + "name": "GRASSE STADE DE LA PAOUTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.076204, + 43.605541 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1112", + "ref": "FR*SOD*S*WIIZ*11*1*_*_", + "name": "ANTIBES AZUR ARENA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.076204, + 43.605541 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1111", + "ref": "FR*SOD*S*WIIZ*11*1*_*_", + "name": "ANTIBES AZUR ARENA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.123361, + 43.583973 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1022", + "ref": "FR*SOD*S*WIIZ*10*2*_*_", + "name": "ANTIBES PARKING ST ROCH", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.932813, + 43.637276 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1612", + "ref": "FR*SOD*S*WIIZ*16*1*_*_", + "name": "GRASSE STADE PERDIGON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.947942, + 43.580189 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1711", + "ref": "FR*SOD*S*WIIZ*17*1*_*_", + "name": "LA ROQUETTE SUR SIAGNE PARKING ST JEAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.913658, + 43.607716 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2012", + "ref": "FR*SOD*S*WIIZ*20*1*_*_", + "name": "AURIBEAU-SUR-SIAGNE PARKING DU BAYLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.913658, + 43.607716 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2011", + "ref": "FR*SOD*S*WIIZ*20*1*_*_", + "name": "AURIBEAU-SUR-SIAGNE PARKING DU BAYLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.074646, + 43.61813 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1922", + "ref": "FR*SOD*S*WIIZ*19*2*_*_", + "name": "BIOT PARKING ST PHILIPPE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.074646, + 43.61813 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1921", + "ref": "FR*SOD*S*WIIZ*19*2*_*_", + "name": "BIOT PARKING ST PHILIPPE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.074646, + 43.61813 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1912", + "ref": "FR*SOD*S*WIIZ*19*1*_*_", + "name": "BIOT PARKING ST PHILIPPE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.074646, + 43.61813 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1911", + "ref": "FR*SOD*S*WIIZ*19*1*_*_", + "name": "BIOT PARKING ST PHILIPPE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.002274, + 43.550552 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1812", + "ref": "FR*SOD*S*WIIZ*18*1*_*_", + "name": "CANNES PARKING PICAUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.002274, + 43.550552 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1811", + "ref": "FR*SOD*S*WIIZ*18*1*_*_", + "name": "CANNES PARKING PICAUD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.947942, + 43.580189 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1712", + "ref": "FR*SOD*S*WIIZ*17*1*_*_", + "name": "LA ROQUETTE SUR SIAGNE PARKING ST JEAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.123361, + 43.583973 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1012", + "ref": "FR*SOD*S*WIIZ*10*1*_*_", + "name": "ANTIBES PARKING ST ROCH", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.920399, + 43.656429 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2111", + "ref": "FR*SOD*S*WIIZ*21*1*_*_", + "name": "GRASSE PARKING PLACE DU COURS HONORE CRESP", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92641, + 43.594131 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ311", + "ref": "FR*SOD*S*WIIZ*3*1*_*_", + "name": "PEGOMAS PARKING PARCHOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.053818, + 43.575954 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ511", + "ref": "FR*SOD*S*WIIZ*5*1*_*_", + "name": "VALLAURIS PARKING STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.10996, + 43.568874 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ412", + "ref": "FR*SOD*S*WIIZ*4*1*_*_", + "name": "ANTIBES PARKING MAUPASSANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.10996, + 43.568874 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ411", + "ref": "FR*SOD*S*WIIZ*4*1*_*_", + "name": "ANTIBES PARKING MAUPASSANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92641, + 43.594131 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ312", + "ref": "FR*SOD*S*WIIZ*3*1*_*_", + "name": "PEGOMAS PARKING PARCHOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.120677, + 43.580116 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ212", + "ref": "FR*SOD*S*WIIZ*2*1*_*_", + "name": "ANTIBES PLACE GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.120677, + 43.580116 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ211", + "ref": "FR*SOD*S*WIIZ*2*1*_*_", + "name": "ANTIBES PLACE GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01392, + 43.5569 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ112", + "ref": "FR*SOD*S*WIIZ*1*1*_*_", + "name": "CANNES PARKING SAINT LOUIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.01392, + 43.5569 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ111", + "ref": "FR*SOD*S*WIIZ*1*1*_*_", + "name": "CANNES PARKING SAINT LOUIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.934108, + 43.485077 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4211", + "ref": "FR*SOD*S*WIIZ*42*1*_*_", + "name": "THEOULE PORT DE LA FIGUEIRETTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.053818, + 43.575954 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ512", + "ref": "FR*SOD*S*WIIZ*5*1*_*_", + "name": "VALLAURIS PARKING STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.005574, + 43.562817 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ611", + "ref": "FR*SOD*S*WIIZ*6*1*_*_", + "name": "CANNES PARKING BROUSAILLES HOPITAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.123361, + 43.583973 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ1011", + "ref": "FR*SOD*S*WIIZ*10*1*_*_", + "name": "ANTIBES PARKING ST ROCH", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.008748, + 43.551323 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ912", + "ref": "FR*SOD*S*WIIZ*9*1*_*_", + "name": "CANNES PARKING ST DIZIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.008748, + 43.551323 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ911", + "ref": "FR*SOD*S*WIIZ*9*1*_*_", + "name": "CANNES PARKING ST DIZIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.006912, + 43.549686 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ812", + "ref": "FR*SOD*S*WIIZ*8*1*_*_", + "name": "CANNES SQUARE MISTRAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.006912, + 43.549686 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ811", + "ref": "FR*SOD*S*WIIZ*8*1*_*_", + "name": "CANNES SQUARE MISTRAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.985467, + 43.667213 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ712", + "ref": "FR*SOD*S*WIIZ*7*1*_*_", + "name": "OPIO PARKING CENTRE COMMERCIAL FONT NEUVE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.985467, + 43.667213 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ711", + "ref": "FR*SOD*S*WIIZ*7*1*_*_", + "name": "OPIO PARKING CENTRE COMMERCIAL FONT NEUVE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.005574, + 43.562817 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ612", + "ref": "FR*SOD*S*WIIZ*6*1*_*_", + "name": "CANNES PARKING BROUSAILLES HOPITAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.807771, + 43.799503 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3412", + "ref": "FR*SOD*S*WIIZ*34*1*_*_", + "name": "ANDON LAC DE THORENC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.920399, + 43.656429 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2112", + "ref": "FR*SOD*S*WIIZ*21*1*_*_", + "name": "GRASSE PARKING PLACE DU COURS HONORE CRESP", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.977588, + 43.720795 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3612", + "ref": "FR*SOD*S*WIIZ*36*1*_*_", + "name": "GOURDON VILLAGE - PARKING DE LA FERRAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.977588, + 43.720795 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3611", + "ref": "FR*SOD*S*WIIZ*36*1*_*_", + "name": "GOURDON VILLAGE - PARKING DE LA FERRAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.731209, + 43.77903 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3512", + "ref": "FR*SOD*S*WIIZ*35*1*_*_", + "name": "CAILLE PARKING DE LA MOULIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.731209, + 43.77903 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3511", + "ref": "FR*SOD*S*WIIZ*35*1*_*_", + "name": "CAILLE PARKING DE LA MOULIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.122704, + 43.825058 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3211", + "ref": "FR*SOD*S*WIIZ*32*1*_*_", + "name": "BOUYON PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.807771, + 43.799503 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3411", + "ref": "FR*SOD*S*WIIZ*34*1*_*_", + "name": "ANDON LAC DE THORENC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.989127, + 43.701473 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3312", + "ref": "FR*SOD*S*WIIZ*33*1*_*_", + "name": "BAR SUR LOUP PARKING PLACE DE LA TOUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.989127, + 43.701473 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3311", + "ref": "FR*SOD*S*WIIZ*33*1*_*_", + "name": "BAR SUR LOUP PARKING PLACE DE LA TOUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.122704, + 43.825058 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3212", + "ref": "FR*SOD*S*WIIZ*32*1*_*_", + "name": "BOUYON PARKING VILLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.972588, + 43.680862 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3711", + "ref": "FR*SOD*S*WIIZ*37*1*_*_", + "name": "CHATEAUNEUF-GRASSE PARKING PLACE DES PINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.972588, + 43.680862 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3712", + "ref": "FR*SOD*S*WIIZ*37*1*_*_", + "name": "CHATEAUNEUF-GRASSE PARKING PLACE DES PINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.939531, + 43.505989 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4112", + "ref": "FR*SOD*S*WIIZ*41*1*_*_", + "name": "THEOULE PARKING PLACE GENERAL BERTRAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.939531, + 43.505989 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4111", + "ref": "FR*SOD*S*WIIZ*41*1*_*_", + "name": "THEOULE PARKING PLACE GENERAL BERTRAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.022205, + 43.554817 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4012", + "ref": "FR*SOD*S*WIIZ*40*1*_*_", + "name": "CANNES PARKING BRAILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.022205, + 43.554817 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ4011", + "ref": "FR*SOD*S*WIIZ*40*1*_*_", + "name": "CANNES PARKING BRAILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.971852, + 43.54916 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3912", + "ref": "FR*SOD*S*WIIZ*39*1*_*_", + "name": "CANNES PARKING NEGRIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.971852, + 43.54916 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3911", + "ref": "FR*SOD*S*WIIZ*39*1*_*_", + "name": "CANNES PARKING NEGRIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.005572, + 43.674377 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3812", + "ref": "FR*SOD*S*WIIZ*38*1*_*_", + "name": "LE ROURET PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.005572, + 43.674377 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3811", + "ref": "FR*SOD*S*WIIZ*38*1*_*_", + "name": "LE ROURET PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.030538, + 43.54903 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2411", + "ref": "FR*SOD*S*WIIZ*24*1*_*_", + "name": "CANNES PARKING LATOUR MAUBOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.941274, + 43.547829 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2611", + "ref": "FR*SOD*S*WIIZ*26*1*_*_", + "name": "MANDELIEU PARKING BEGUIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.856857, + 43.647991 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2512", + "ref": "FR*SOD*S*WIIZ*25*1*_*_", + "name": "SPERACEDES - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.856857, + 43.647991 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2511", + "ref": "FR*SOD*S*WIIZ*25*1*_*_", + "name": "SPERACEDES - PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.030538, + 43.54903 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2412", + "ref": "FR*SOD*S*WIIZ*24*1*_*_", + "name": "CANNES PARKING LATOUR MAUBOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.842196, + 43.629398 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2312", + "ref": "FR*SOD*S*WIIZ*23*1*_*_", + "name": "LE TIGNET PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.842196, + 43.629398 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2311", + "ref": "FR*SOD*S*WIIZ*23*1*_*_", + "name": "LE TIGNET PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.958667, + 43.64222 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2212", + "ref": "FR*SOD*S*WIIZ*22*1*_*_", + "name": "GRASSE PARKING PLACE STE HELENE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.958667, + 43.64222 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2211", + "ref": "FR*SOD*S*WIIZ*22*1*_*_", + "name": "GRASSE PARKING PLACE STE HELENE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.703947, + 43.773846 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3112", + "ref": "FR*SOD*S*WIIZ*31*1*_*_", + "name": "SERANON PARKING PLACE JOSEPH REBUFFEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.945192, + 43.534256 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2711", + "ref": "FR*SOD*S*WIIZ*27*1*_*_", + "name": "MANDELIEU PARKING ROBINSON THEATRE DE VERDURE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.858089, + 43.843212 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2911", + "ref": "FR*SOD*S*WIIZ*29*1*_*_", + "name": "LE MAS PARKING COUVERT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.703947, + 43.773846 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3111", + "ref": "FR*SOD*S*WIIZ*31*1*_*_", + "name": "SERANON PARKING PLACE JOSEPH REBUFFEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.728566, + 43.846939 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3012", + "ref": "FR*SOD*S*WIIZ*30*1*_*_", + "name": "SAINT-AUBAN PARKING RELAIS DE SERVICES PUBLICS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.728566, + 43.846939 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ3011", + "ref": "FR*SOD*S*WIIZ*30*1*_*_", + "name": "SAINT-AUBAN PARKING RELAIS DE SERVICES PUBLICS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.858089, + 43.843212 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2912", + "ref": "FR*SOD*S*WIIZ*29*1*_*_", + "name": "LE MAS PARKING COUVERT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.793374, + 43.728943 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2812", + "ref": "FR*SOD*S*WIIZ*28*1*_*_", + "name": "ESCRAGNOLLES PARKING SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.793374, + 43.728943 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2811", + "ref": "FR*SOD*S*WIIZ*28*1*_*_", + "name": "ESCRAGNOLLES PARKING SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.945192, + 43.534256 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref:EU:EVSE": "FRA16PWIIZ2712", + "ref": "FR*SOD*S*WIIZ*27*1*_*_", + "name": "MANDELIEU PARKING ROBINSON THEATRE DE VERDURE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2021-10-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7362482, + 49.6043821 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50001001", + "ref": "", + "name": "ACQUEVILLE - carrefour des Pelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-08-25", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.132432, + 49.1121181 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50180002", + "ref": "", + "name": "AGNEAUX - Rue Antoine LAVOISIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-15", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6962131, + 49.3355948 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50580001", + "ref": "", + "name": "PORTBAIL - Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-20", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7876279, + 49.4712494 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P54429001", + "ref": "", + "name": "PIERREVILLE - les Beauvais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-09-25", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3367836, + 48.6249671 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50407001", + "ref": "", + "name": "POILLEY - aire de l'Estuaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-14", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1278249, + 49.1642203 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50880001", + "ref": "", + "name": "PONT-HEBERT - Rue des Juifs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-03", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.499777, + 48.554186 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P504101", + "ref": "", + "name": "PONTORSON - aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-26", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5052815, + 48.5527294 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50410002", + "ref": "", + "name": "PONTORSON - la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-27", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5122859, + 48.5537084 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50170001", + "ref": "", + "name": "PONTORSON - Place Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-24", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.699955, + 49.660872 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50416001", + "ref": "", + "name": "QUERQUEVILLE - Couville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-08-07", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5463226, + 49.2894615 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50250001", + "ref": "", + "name": "LA HAYE DU PUITS - Rue du Vavasseur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-28", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.692228, + 49.665796 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50416002", + "ref": "", + "name": "QUERQUEVILLE - Rocambole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-08-11", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3036013, + 49.5938654 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50630001", + "ref": "", + "name": "QUETTEHOU - Parking Halle au Grain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-17", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4689422, + 48.968137 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50660001", + "ref": "", + "name": "QUETTREVILLE SUR SIENNE - Salle des Fetes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-24", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2592659, + 49.6187571 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50760001", + "ref": "", + "name": "REVILLE - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-22", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.347532, + 48.649714 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505431", + "ref": "", + "name": "SAINT QUENTIN SUR LE HOMME", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-26", + "note": "Prise T2
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr, soit d'un TPE sans contact
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4671269, + 48.760259 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505651", + "ref": "", + "name": "SARTILLY - aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-07", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4209417, + 49.3787366 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50360001", + "ref": "", + "name": "PICAUVILLE - Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-22", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4060821, + 49.1868957 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50190001", + "ref": "", + "name": "PERIERS - Place de la Halle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-23", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19098, + 48.91603 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50410001", + "ref": "", + "name": "PERCY - Place du Champs de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-04", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0898374, + 48.5866543 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50600001", + "ref": "", + "name": "PARIGNY - St Berthevin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-17", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0548212, + 48.60268 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50600002", + "ref": "", + "name": "PARIGNY - le Pointon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-17", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.944979, + 48.6487864 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50359001", + "ref": "", + "name": "MORTAIN BOCAGE - place du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-21", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.523626, + 48.988262 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50590002", + "ref": "", + "name": "MONTMARTIN SUR MER - Place de l’eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-18", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3820192, + 49.4878826 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50341001", + "ref": "", + "name": "MONTEBOURG - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-20", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.662814, + 49.6038954 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50294001", + "ref": "", + "name": "MARTINVAST - Le Pont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-08-25", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2436855, + 49.1000191 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50292001", + "ref": "", + "name": "MARIGNY - Rue du 8 Mai 45", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-22", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2491715, + 49.0897834 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P502921", + "ref": "", + "name": "MARIGNY - aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-20", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5355451, + 49.2189767 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50267001", + "ref": "", + "name": "LESSAY - Place St Cloud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-07-07", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5276278, + 49.2121913 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50430001", + "ref": "", + "name": "LESSAY - Le rond Point", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-18", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8093807, + 49.5128051 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50340002", + "ref": "", + "name": "LES PIEUX - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-22", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8044956, + 49.5064375 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50340004", + "ref": "", + "name": "LES PIEUX - La Fosse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-28", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8746268, + 48.5380251 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50640001", + "ref": "", + "name": "LE TEILLEUL - Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-24", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2819547, + 49.1611428 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50570001", + "ref": "", + "name": "LE MESNIL VIGOT - La Rivière de Haut", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-18", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4549578, + 48.752177 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50530001", + "ref": "", + "name": "SARTILLY - Superette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-09-11", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9214924, + 48.7244128 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50150001", + "ref": "", + "name": "SOURDEVAL - Cote Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-30", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0292342, + 49.1916925 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50680001", + "ref": "", + "name": "ST CLAIR SUR L'ELLE - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-21", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2716169, + 49.5886421 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505621", + "ref": "", + "name": "ST VAAST LA HOUGUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-15", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3638731, + 48.6838561 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200083640", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50025002", + "ref": "", + "name": "AVRANCHES - Place Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-27", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3691367, + 48.6908636 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200083640", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50025001", + "ref": "", + "name": "AVRANCHES - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-11", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5985858, + 49.0490526 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50003001", + "ref": "", + "name": "AGON-COUTAINVILLE - Avenue du Golf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-17", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1135212, + 49.1168854 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50180001", + "ref": "", + "name": "AGNEAUX - Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-04", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.132432, + 49.1121181 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50180002", + "ref": "", + "name": "AGNEAUX - Rue Antoine LAVOISIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-15", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7362482, + 49.6043821 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50001001", + "ref": "", + "name": "ACQUEVILLE - carrefour des Pelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-08-25", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2192249, + 48.8367225 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50800003", + "ref": "", + "name": "VILLEDIEU LES POELES - Place de La Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-17", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.226381, + 48.834159 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50800002", + "ref": "", + "name": "VILLEDIEU LES POELES - La Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-30", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.571767, + 49.639352 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50602004", + "ref": "", + "name": "TOURLAVILLE - Moulin Guibert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-07-07", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.579452, + 49.639744 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50602003", + "ref": "", + "name": "TOURLAVILLE - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-05", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.605019, + 49.639211 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50602002", + "ref": "", + "name": "TOURLAVILLE - Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-07-07", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.565538, + 49.654175 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50602001", + "ref": "", + "name": "TOURLAVILLE - Algues", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-08-11", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0591078, + 48.9734709 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50420001", + "ref": "", + "name": "TESSY SUR VIRE - Rue des Anciennes Halles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-14", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3130607, + 49.4095477 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50480001", + "ref": "", + "name": "STE MERE EGLISE - Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-10", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.41135, + 49.130605 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50550001", + "ref": "", + "name": "ST SAUVEUR LENDELIN - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-24", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2645353, + 49.3199395 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P504581", + "ref": "", + "name": "ST COME DU MONT - Maison du Parc des Marais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-07", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5296983, + 49.3863739 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50390001", + "ref": "", + "name": "ST SAUVEUR LE VICOMTE - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-25", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4035618, + 49.668173 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50840001", + "ref": "", + "name": "ST PIERRE EGLISE - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-10", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5701226, + 48.8164751 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50532001", + "ref": "", + "name": "ST PAIR SUR MER - Parking de la Liberte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-16", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.064822, + 49.104373 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "215005026", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505022", + "ref": "", + "name": "ST LO - Ronchettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-11", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.069148, + 49.111507 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "215005026", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505021", + "ref": "", + "name": "ST LO - Mersier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-11", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.116682, + 49.100755 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "215005026", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505023", + "ref": "", + "name": "ST LO - Maison du Département", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-07", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.100014, + 49.116437 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "215005026", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505024", + "ref": "", + "name": "ST LO - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-30", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.087859, + 49.11941 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "215005026", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505027", + "ref": "", + "name": "ST LO - Dollee", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-11", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.095834, + 49.115154 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "215005026", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505025", + "ref": "", + "name": "ST LO - Cité administrative", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-05", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.086968, + 49.116522 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "215005026", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505026", + "ref": "", + "name": "ST LO - Champs de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-30", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1364357, + 49.2283939 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50620001", + "ref": "", + "name": "ST JEAN DE DAYE - Place de la 30e Division d'Infanterie US", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-14", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.320199, + 48.523811 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50240001", + "ref": "", + "name": "ST JAMES - Place du Vieux Presbytere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-14", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0907322, + 48.5759106 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50484001", + "ref": "", + "name": "ST HILAIRE DU HARCOUET - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-24", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9757299, + 49.1354216 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P504731", + "ref": "", + "name": "ST GEORGES D'ELLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-25", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.394381, + 48.7941251 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50320002", + "ref": "", + "name": "LA HAYE PESNEL - Parking du Thar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-28", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.601422, + 49.614228 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50203002", + "ref": "", + "name": "LA GLACERIE - Martin Luther King", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-26", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.596063, + 49.166556 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50770001", + "ref": "", + "name": "PIROU - Huguet de Semonville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-15", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.629394, + 49.636395 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501294", + "ref": "", + "name": "CHERBOURG OCTEVILLE - Notre Dame du Vœu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-27", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2448201, + 49.3028024 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50099002", + "ref": "", + "name": "CARENTAN - la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-07-01", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2958843, + 49.3798413 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50103001", + "ref": "", + "name": "CARQUEBUT - Les Forges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-15", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4401486, + 48.9124279 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50290002", + "ref": "", + "name": "CERENCES - ZA Intermarche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-04", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2832819, + 49.0258146 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50210001", + "ref": "", + "name": "CERISY LA SALLE - Rue des Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-03", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.617731, + 49.643581 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501297", + "ref": "", + "name": "CHERBOURG OCTEVILLE - Cité de la Mer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-27", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.624323, + 49.63612 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501299", + "ref": "", + "name": "CHERBOURG OCTEVILLE - François 1er", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-08-07", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.623855, + 49.645317 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P5012910", + "ref": "", + "name": "CHERBOURG OCTEVILLE - Place Chantereyne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-06-20", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.603728, + 49.613656 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50203001", + "ref": "", + "name": "LA GLACERIE - Mairie déléguée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-10-12", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.64284, + 49.628488 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501298", + "ref": "", + "name": "CHERBOURG OCTEVILLE - Place Rossel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-27", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.641399, + 49.626574 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501291", + "ref": "", + "name": "CHERBOURG OCTEVILLE - René Cassin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-27", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.634003, + 49.627575 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501292", + "ref": "", + "name": "CHERBOURG OCTEVILLE - Rue de l'Ile de France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-27", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.621794, + 49.637993 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501296", + "ref": "", + "name": "CHERBOURG OCTEVILLE - Rue des Tribunaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-27", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61295, + 49.638748 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501293", + "ref": "", + "name": "CHERBOURG OCTEVILLE - St Clément", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-06-20", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.611977, + 49.635956 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501295", + "ref": "", + "name": "CHERBOURG OCTEVILLE - Trottebecq", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-27", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2421829, + 49.3034833 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50099001", + "ref": "", + "name": "CARENTAN - bd des Fortifications", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-29", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1732257, + 49.0762621 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50860001", + "ref": "", + "name": "CANISY - Rue Jean Follain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-03", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5903001, + 49.5635953 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P500871", + "ref": "", + "name": "BRIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-08-07", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6391676, + 49.4713781 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50260002", + "ref": "", + "name": "BRICQUEBEC - Gare Routiere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-10-12", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6315858, + 49.471884 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50260001", + "ref": "", + "name": "BRICQUEBEC - Cinema", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-19", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5160379, + 48.898219 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50290001", + "ref": "", + "name": "BREHAL - rue de la Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-14", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1700677, + 48.7248101 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50370001", + "ref": "", + "name": "BRECEY - La Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-03", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7752953, + 49.5357881 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50340001", + "ref": "", + "name": "BENOITVILLE - Croix Georges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-28", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8364845, + 49.6621683 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50440001", + "ref": "", + "name": "BEAUMONT HAGUE - Cyberbase", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-20", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7690024, + 49.3682998 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50270002", + "ref": "", + "name": "BARNEVILLE CARTERET - Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-04", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7554556, + 49.3821883 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50031001", + "ref": "", + "name": "BARNEVILLE CARTERET - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-16", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7906159, + 49.372388 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50270001", + "ref": "", + "name": "BARNEVILLE CARTERET - Gare Maritime", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-04", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8327776, + 48.5992163 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50720001", + "ref": "", + "name": "BARENTON - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-28", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3632336, + 48.6867883 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200083640", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50025003", + "ref": "", + "name": "AVRANCHES - Place Valhubert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-27", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3638731, + 48.6838561 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200083640", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50025002", + "ref": "", + "name": "AVRANCHES - Place Carnot", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-27", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3691367, + 48.6908636 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200083640", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50025001", + "ref": "", + "name": "AVRANCHES - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-11", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5985858, + 49.0490526 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50003001", + "ref": "", + "name": "AGON-COUTAINVILLE - Avenue du Golf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-17", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0375894, + 49.0517922 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50890001", + "ref": "", + "name": "CONDE SUR VIRE - Le Bourg - Place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-14", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0025626, + 49.0483967 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50890002", + "ref": "", + "name": "CONDE SUR VIRE - Le Sault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-17", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4400962, + 49.0438633 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50200001", + "ref": "", + "name": "COUTANCES - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-24", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6079197, + 49.0993255 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50560001", + "ref": "", + "name": "GOUVILLE SUR MER - Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-20", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.207212, + 48.860445 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50800001", + "ref": "", + "name": "LA COLOMBE - Hotel Massu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-08-22", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0225093, + 48.6764849 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P502601", + "ref": "", + "name": "JUVIGNY LE TERTRE - rue de St Hilaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-14", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5673533, + 48.7743602 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50610001", + "ref": "", + "name": "JULLOUVILLE - Syndicat d'Initiative", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-28", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1743921, + 48.6204334 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50540001", + "ref": "", + "name": "ISIGNY LE BUAT - Salle Omnisports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-23", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1796253, + 48.5960906 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50540002", + "ref": "", + "name": "ISIGNY LE BUAT - Carrefour des Biards", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-23", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.175209, + 49.133094 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P502391", + "ref": "", + "name": "HEBECREVON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-20", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5568028, + 48.9774889 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50590001", + "ref": "", + "name": "HAUTEVILLE SUR MER - Place des Robans", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-18", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2642285, + 48.9483719 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50450002", + "ref": "", + "name": "HAMBYE - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-04", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.954338, + 48.983317 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P502242", + "ref": "", + "name": "GUILBERVILLE - Aire de covoiturage Le Saussey", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-26", + "note": "Prise T2
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr, soit d'un TPE sans contact
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.949023, + 48.988129 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P502241", + "ref": "", + "name": "GUILBERVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-23", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5683501, + 48.8327924 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50400002", + "ref": "", + "name": "GRANVILLE - St Nicolas Agora", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-03", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5955279, + 48.8359208 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50400001", + "ref": "", + "name": "GRANVILLE - Place Bedeau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-03", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5965401, + 48.8375254 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P502182", + "ref": "", + "name": "GRANVILLE - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-16", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5877092, + 48.8381083 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P502181", + "ref": "", + "name": "GRANVILLE - la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-26", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5794053, + 49.0965681 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50560002", + "ref": "", + "name": "GOUVILLE SUR MER - Crédit Mutuel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-20", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4666847, + 49.054234 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50147001", + "ref": "", + "name": "COUTANCES - la Paletière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-08-22", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3505134, + 48.9096407 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50450001", + "ref": "", + "name": "GAVRAY - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-19", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4147694, + 48.8358569 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50320001", + "ref": "", + "name": "FOLLIGNY - Le Repas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-25", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2504703, + 48.841466 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50185001", + "ref": "", + "name": "FLEURY - la Maison Neuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-22", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8579488, + 49.5512758 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50340003", + "ref": "", + "name": "FLAMANVILLE - Dielette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-14", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.654263, + 49.647892 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50173004", + "ref": "", + "name": "EQUEURDREVILLE HAINNEVILLE - Résistants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-05", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.66402, + 49.642007 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50173003", + "ref": "", + "name": "EQUEURDREVILLE HAINNEVILLE - Louise Michel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-27", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.675774, + 49.654087 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50173002", + "ref": "", + "name": "EQUEURDREVILLE HAINNEVILLE - Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-05", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.651226, + 49.654982 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50173001", + "ref": "", + "name": "EQUEURDREVILLE HAINNEVILLE - Jean Bart", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-05", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2911409, + 48.6198576 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50220001", + "ref": "", + "name": "DUCEY - Place des Plats d'Etain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-11-02", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5804867, + 48.8468776 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50350001", + "ref": "", + "name": "DONVILLE LES BAINS - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-03", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5640155, + 49.200886 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50710001", + "ref": "", + "name": "CREANCES - Rue des Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-07-07", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6723914, + 49.5574624 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50690001", + "ref": "", + "name": "COUVILLE - la Vallée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-28", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4536927, + 49.0515211 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50200003", + "ref": "", + "name": "COUTANCES - Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-02", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4412921, + 49.0486743 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50200002", + "ref": "", + "name": "COUTANCES - Place de la Croute", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-31", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3632336, + 48.6867883 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200083640", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50025003", + "ref": "", + "name": "AVRANCHES - Place Valhubert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-27", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8327776, + 48.5992163 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50720001", + "ref": "", + "name": "BARENTON - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-28", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7906159, + 49.372388 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50270001", + "ref": "", + "name": "BARNEVILLE CARTERET - Gare Maritime", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-04", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.347532, + 48.649714 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505431", + "ref": "", + "name": "SAINT QUENTIN SUR LE HOMME", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-26", + "note": "Prise COMBO-CCS
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr, soit d'un TPE sans contact
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6962131, + 49.3355948 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50580001", + "ref": "", + "name": "PORTBAIL - Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-20", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.699955, + 49.660872 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50416001", + "ref": "", + "name": "QUERQUEVILLE - Couville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-08-07", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.692228, + 49.665796 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50416002", + "ref": "", + "name": "QUERQUEVILLE - Rocambole", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-08-11", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3036013, + 49.5938654 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50630001", + "ref": "", + "name": "QUETTEHOU - Parking Halle au Grain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-17", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4689422, + 48.968137 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50660001", + "ref": "", + "name": "QUETTREVILLE SUR SIENNE - Salle des Fetes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-24", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2592659, + 49.6187571 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50760001", + "ref": "", + "name": "REVILLE - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-22", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4671269, + 48.760259 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505651", + "ref": "", + "name": "SARTILLY - aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-07", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7554556, + 49.3821883 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50031001", + "ref": "", + "name": "BARNEVILLE CARTERET - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-16", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4549578, + 48.752177 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50530001", + "ref": "", + "name": "SARTILLY - Superette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-09-11", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9214924, + 48.7244128 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50150001", + "ref": "", + "name": "SOURDEVAL - Cote Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-30", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0292342, + 49.1916925 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50680001", + "ref": "", + "name": "ST CLAIR SUR L'ELLE - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-21", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2645353, + 49.3199395 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P504581", + "ref": "", + "name": "ST COME DU MONT - Maison du Parc des Marais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-07", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9757299, + 49.1354216 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P504731", + "ref": "", + "name": "ST GEORGES D'ELLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-25", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0907322, + 48.5759106 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50484001", + "ref": "", + "name": "ST HILAIRE DU HARCOUET - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-24", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5122859, + 48.5537084 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50170001", + "ref": "", + "name": "PONTORSON - Place Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-24", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5052815, + 48.5527294 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50410002", + "ref": "", + "name": "PONTORSON - la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-27", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4999864, + 48.5542101 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P504101", + "ref": "", + "name": "PONTORSON - aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-26", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1278249, + 49.1642203 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50880001", + "ref": "", + "name": "PONT-HEBERT - Rue des Juifs", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-03", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3367836, + 48.6249671 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50407001", + "ref": "", + "name": "POILLEY - aire de l'Estuaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-14", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7876279, + 49.4712494 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P54429001", + "ref": "", + "name": "PIERREVILLE - les Beauvais", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-09-25", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4209417, + 49.3787366 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50360001", + "ref": "", + "name": "PICAUVILLE - Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-22", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4060821, + 49.1868957 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50190001", + "ref": "", + "name": "PERIERS - Place de la Halle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-23", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19098, + 48.91603 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50410001", + "ref": "", + "name": "PERCY - Place du Champs de Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-04", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0898374, + 48.5866543 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50600001", + "ref": "", + "name": "PARIGNY - St Berthevin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-17", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0548212, + 48.60268 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50600002", + "ref": "", + "name": "PARIGNY - le Pointon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-17", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.944979, + 48.6487864 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50359001", + "ref": "", + "name": "MORTAIN BOCAGE - place du Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-21", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.523626, + 48.988262 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50590002", + "ref": "", + "name": "MONTMARTIN SUR MER - Place de l’eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-18", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-07-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3820192, + 49.4878826 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50341001", + "ref": "", + "name": "MONTEBOURG - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-20", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.662814, + 49.6038954 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50294001", + "ref": "", + "name": "MARTINVAST - Le Pont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-08-25", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2436855, + 49.1000191 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50292001", + "ref": "", + "name": "MARIGNY - Rue du 8 Mai 45", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-22", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2491715, + 49.0897834 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P502921", + "ref": "", + "name": "MARIGNY - aire de covoiturage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-20", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.320199, + 48.523811 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50240001", + "ref": "", + "name": "ST JAMES - Place du Vieux Presbytere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-14", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1364357, + 49.2283939 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50620001", + "ref": "", + "name": "ST JEAN DE DAYE - Place de la 30e Division d'Infanterie US", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-14", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.086968, + 49.116522 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "215005026", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505026", + "ref": "", + "name": "ST LO - Champs de Mars", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-30", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.571767, + 49.639352 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50602004", + "ref": "", + "name": "TOURLAVILLE - Moulin Guibert", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-07-07", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.97429, + 49.094013 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50810001", + "ref": "", + "name": "SAINT JEAN D'ELLE - Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-24", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.97429, + 49.094013 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50810001", + "ref": "", + "name": "SAINT JEAN D'ELLE - Salle des Fêtes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-24", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.844165, + 49.56517 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50340005", + "ref": "", + "name": "SIOUVILLE HAGUE - Bd André Michel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-11", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.844165, + 49.56517 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50340005", + "ref": "", + "name": "SIOUVILLE HAGUE - Bd André Michel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-11", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.765945, + 48.603128 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50720002", + "ref": "", + "name": "SAINT GEORGES DE ROUELLEY - Soleil Levant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-02", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.765945, + 48.603128 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50720002", + "ref": "", + "name": "SAINT GEORGES DE ROUELLEY - Soleil Levant", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-02", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.600058, + 48.837858 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50400005", + "ref": "", + "name": "GRANVILLE - Place Corsaires", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-20", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.600058, + 48.837858 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50400005", + "ref": "", + "name": "GRANVILLE - Place Corsaires", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-20", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.97762, + 49.034503 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50160001", + "ref": "", + "name": "TORIGNY LES VILLES - ORANGERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-07-29", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.97762, + 49.034503 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50160001", + "ref": "", + "name": "TORIGNY LES VILLES - ORANGERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-07-29", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.347532, + 48.649714 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505431", + "ref": "", + "name": "SAINT QUENTIN SUR LE HOMME", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-26", + "note": "Prise CHADEMO
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr, soit d'un TPE sans contact
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.954338, + 48.983317 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P502242", + "ref": "", + "name": "GUILBERVILLE - Aire de covoiturage Le Saussey", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-26", + "note": "Prise CHADEMO
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr, soit d'un TPE sans contact
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2192249, + 48.8367225 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50800003", + "ref": "", + "name": "VILLEDIEU LES POELES - Place de La Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-17", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.226381, + 48.834159 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50800002", + "ref": "", + "name": "VILLEDIEU LES POELES - La Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-30", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.579452, + 49.639744 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50602003", + "ref": "", + "name": "TOURLAVILLE - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-05", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.095834, + 49.115154 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "215005026", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505025", + "ref": "", + "name": "ST LO - Cité administrative", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-05", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.605019, + 49.639211 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50602002", + "ref": "", + "name": "TOURLAVILLE - Général Leclerc", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-07-07", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.565538, + 49.654175 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50602001", + "ref": "", + "name": "TOURLAVILLE - Algues", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-08-11", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0591078, + 48.9734709 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50420001", + "ref": "", + "name": "TESSY SUR VIRE - Rue des Anciennes Halles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-14", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3130607, + 49.4095477 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50480001", + "ref": "", + "name": "STE MERE EGLISE - Le Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-10", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2716169, + 49.5886421 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505621", + "ref": "", + "name": "ST VAAST LA HOUGUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-15", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.41135, + 49.130605 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50550001", + "ref": "", + "name": "ST SAUVEUR LENDELIN - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-24", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5296983, + 49.3863739 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50390001", + "ref": "", + "name": "ST SAUVEUR LE VICOMTE - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-25", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4035618, + 49.668173 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50840001", + "ref": "", + "name": "ST PIERRE EGLISE - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-10", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5701226, + 48.8164751 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50532001", + "ref": "", + "name": "ST PAIR SUR MER - Parking de la Liberte", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-16", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.064822, + 49.104373 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "215005026", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505022", + "ref": "", + "name": "ST LO - Ronchettes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-11", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.069148, + 49.111507 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "215005026", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505021", + "ref": "", + "name": "ST LO - Mersier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-11", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.116682, + 49.100755 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "215005026", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505023", + "ref": "", + "name": "ST LO - Maison du Département", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-07", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.100014, + 49.116437 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "215005026", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505024", + "ref": "", + "name": "ST LO - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-30", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.087859, + 49.11941 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "215005026", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P505027", + "ref": "", + "name": "ST LO - Dollee", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-11", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5355451, + 49.2189767 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50267001", + "ref": "", + "name": "LESSAY - Place St Cloud", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-07-07", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5276278, + 49.2121913 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50430001", + "ref": "", + "name": "LESSAY - Le rond Point", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-18", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8093807, + 49.5128051 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50340002", + "ref": "", + "name": "LES PIEUX - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-22", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.624323, + 49.63612 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501299", + "ref": "", + "name": "CHERBOURG OCTEVILLE - François 1er", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-08-07", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4536927, + 49.0515211 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50200003", + "ref": "", + "name": "COUTANCES - Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-06-02", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4412921, + 49.0486743 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50200002", + "ref": "", + "name": "COUTANCES - Place de la Croute", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-31", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4666847, + 49.054234 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50147001", + "ref": "", + "name": "COUTANCES - la Paletière", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-08-22", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-07-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4400962, + 49.0438633 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50200001", + "ref": "", + "name": "COUTANCES - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-24", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0025626, + 49.0483967 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50890002", + "ref": "", + "name": "CONDE SUR VIRE - Le Sault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-17", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0375894, + 49.0517922 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50890001", + "ref": "", + "name": "CONDE SUR VIRE - Le Bourg - Place de la mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-14", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.611977, + 49.635956 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501295", + "ref": "", + "name": "CHERBOURG OCTEVILLE - Trottebecq", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-27", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61295, + 49.638748 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501293", + "ref": "", + "name": "CHERBOURG OCTEVILLE - St Clément", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-06-20", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.621794, + 49.637993 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501296", + "ref": "", + "name": "CHERBOURG OCTEVILLE - Rue des Tribunaux", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-27", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.634003, + 49.627575 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501292", + "ref": "", + "name": "CHERBOURG OCTEVILLE - Rue de l'Ile de France", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-27", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.641399, + 49.626574 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501291", + "ref": "", + "name": "CHERBOURG OCTEVILLE - René Cassin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-27", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.64284, + 49.628488 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501298", + "ref": "", + "name": "CHERBOURG OCTEVILLE - Place Rossel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-27", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.623855, + 49.645317 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P5012910", + "ref": "", + "name": "CHERBOURG OCTEVILLE - Place Chantereyne", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-06-20", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.629394, + 49.636395 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501294", + "ref": "", + "name": "CHERBOURG OCTEVILLE - Notre Dame du Vœu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-27", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.617731, + 49.643581 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P501297", + "ref": "", + "name": "CHERBOURG OCTEVILLE - Cité de la Mer", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-27", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5640155, + 49.200886 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50710001", + "ref": "", + "name": "CREANCES - Rue des Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-07-07", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2832819, + 49.0258146 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50210001", + "ref": "", + "name": "CERISY LA SALLE - Rue des Ecoles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-03", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-07-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4401486, + 48.9124279 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50290002", + "ref": "", + "name": "CERENCES - ZA Intermarche", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-04", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-07-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2958843, + 49.3798413 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50103001", + "ref": "", + "name": "CARQUEBUT - Les Forges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-15", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2448201, + 49.3028024 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50099002", + "ref": "", + "name": "CARENTAN - la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-07-01", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2421829, + 49.3034833 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50099001", + "ref": "", + "name": "CARENTAN - bd des Fortifications", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-29", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1732257, + 49.0762621 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50860001", + "ref": "", + "name": "CANISY - Rue Jean Follain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-03-03", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5903001, + 49.5635953 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P500871", + "ref": "", + "name": "BRIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-08-07", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6391676, + 49.4713781 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50260002", + "ref": "", + "name": "BRICQUEBEC - Gare Routiere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-10-12", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6315858, + 49.471884 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50260001", + "ref": "", + "name": "BRICQUEBEC - Cinema", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-19", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5160379, + 48.898219 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50290001", + "ref": "", + "name": "BREHAL - rue de la Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-14", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1700677, + 48.7248101 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50370001", + "ref": "", + "name": "BRECEY - La Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-03", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7752953, + 49.5357881 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50340001", + "ref": "", + "name": "BENOITVILLE - Croix Georges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-28", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8364845, + 49.6621683 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50440001", + "ref": "", + "name": "BEAUMONT HAGUE - Cyberbase", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-01-20", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7690024, + 49.3682998 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50270002", + "ref": "", + "name": "BARNEVILLE CARTERET - Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-04", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6723914, + 49.5574624 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50690001", + "ref": "", + "name": "COUVILLE - la Vallée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-28", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5804867, + 48.8468776 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50350001", + "ref": "", + "name": "DONVILLE LES BAINS - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-03", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8044956, + 49.5064375 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50340004", + "ref": "", + "name": "LES PIEUX - La Fosse", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-28", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.954338, + 48.983317 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P502242", + "ref": "", + "name": "GUILBERVILLE - Aire de covoiturage Le Saussey", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-26", + "note": "Prise COMBO-CCS
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr, soit d'un TPE sans contact
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8746268, + 48.5380251 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50640001", + "ref": "", + "name": "LE TEILLEUL - Place de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-24", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2819547, + 49.1611428 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50570001", + "ref": "", + "name": "LE MESNIL VIGOT - La Rivière de Haut", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-18", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.394381, + 48.7941251 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50320002", + "ref": "", + "name": "LA HAYE PESNEL - Parking du Thar", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-28", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5463226, + 49.2894615 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50250001", + "ref": "", + "name": "LA HAYE DU PUITS - Rue du Vavasseur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-28", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.601422, + 49.614228 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50203002", + "ref": "", + "name": "LA GLACERIE - Martin Luther King", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-26", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.603728, + 49.613656 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50203001", + "ref": "", + "name": "LA GLACERIE - Mairie déléguée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-10-12", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.207212, + 48.860445 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50800001", + "ref": "", + "name": "LA COLOMBE - Hotel Massu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-08-22", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0225093, + 48.6764849 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P502601", + "ref": "", + "name": "JUVIGNY LE TERTRE - rue de St Hilaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-02-14", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5673533, + 48.7743602 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50610001", + "ref": "", + "name": "JULLOUVILLE - Syndicat d'Initiative", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-28", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1743921, + 48.6204334 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50540001", + "ref": "", + "name": "ISIGNY LE BUAT - Salle Omnisports", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-23", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1796253, + 48.5960906 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50540002", + "ref": "", + "name": "ISIGNY LE BUAT - Carrefour des Biards", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-23", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.175209, + 49.133094 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P502391", + "ref": "", + "name": "HEBECREVON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-12-20", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5568028, + 48.9774889 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50590001", + "ref": "", + "name": "HAUTEVILLE SUR MER - Place des Robans", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-08-18", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-07-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2642285, + 48.9483719 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50450002", + "ref": "", + "name": "HAMBYE - Place de la Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-04", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-07-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.949023, + 48.988129 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P502241", + "ref": "", + "name": "GUILBERVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-23", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2911409, + 48.6198576 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50220001", + "ref": "", + "name": "DUCEY - Place des Plats d'Etain", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-11-02", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5683501, + 48.8327924 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50400002", + "ref": "", + "name": "GRANVILLE - St Nicolas Agora", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-03", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5955279, + 48.8359208 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50400001", + "ref": "", + "name": "GRANVILLE - Place Bedeau", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-03", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5965401, + 48.8375254 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P502182", + "ref": "", + "name": "GRANVILLE - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-03-16", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5877092, + 48.8381083 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P502181", + "ref": "", + "name": "GRANVILLE - la Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-01-26", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6079197, + 49.0993255 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50560001", + "ref": "", + "name": "GOUVILLE SUR MER - Plage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-20", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5794053, + 49.0965681 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50560002", + "ref": "", + "name": "GOUVILLE SUR MER - Crédit Mutuel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-20", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3505134, + 48.9096407 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50450001", + "ref": "", + "name": "GAVRAY - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-19", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4147694, + 48.8358569 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50320001", + "ref": "", + "name": "FOLLIGNY - Le Repas", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-04-25", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2504703, + 48.841466 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50185001", + "ref": "", + "name": "FLEURY - la Maison Neuve", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-22", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8579488, + 49.5512758 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50340003", + "ref": "", + "name": "FLAMANVILLE - Dielette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-14", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.654263, + 49.647892 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50173004", + "ref": "", + "name": "EQUEURDREVILLE HAINNEVILLE - Résistants", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-05", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.66402, + 49.642007 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50173003", + "ref": "", + "name": "EQUEURDREVILLE HAINNEVILLE - Louise Michel", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-27", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.675774, + 49.654087 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50173002", + "ref": "", + "name": "EQUEURDREVILLE HAINNEVILLE - Jean Moulin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-05", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.651226, + 49.654982 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50173001", + "ref": "", + "name": "EQUEURDREVILLE HAINNEVILLE - Jean Bart", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-05-05", + "note": "Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1135212, + 49.1168854 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50180001", + "ref": "", + "name": "AGNEAUX - Rue du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-04", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2021-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.596063, + 49.166556 + ] + }, + "properties": { + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "ref:EU:EVSE": "FRS50P50770001", + "ref": "", + "name": "PIROU - Huguet de Semonville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-15", + "note": "Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr'", + "source:date": "2022-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.187398, + 48.273996 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE436000", + "ref": "FRIONE436000", + "name": "IONITY Kergoët", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-24", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.623059, + 45.196766 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE403700", + "ref": "FRIONE403700", + "name": "IONITY Freney", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-17", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.010984, + 47.223166 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE410200", + "ref": "FRIONE410200", + "name": "IONITY Gevrey-Chambertin Est", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-07-15", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.274148, + 49.167886 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE414900", + "ref": "FRIONE414900", + "name": "IONITY Giberville Nord", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.277238, + 49.166932 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE417100", + "ref": "FRIONE417100", + "name": "IONITY Giberville Sud", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-18", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.109707, + 47.032073 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE412400", + "ref": "FRIONE412400", + "name": "IONITY Glanon", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-22", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.923522, + 49.2444 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE402600", + "ref": "FRIONE402600", + "name": "IONITY Gueux", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-24", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.171845, + 49.215116 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE432400", + "ref": "FRIONE432400", + "name": "IONITY Hauconcourt", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-21", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.402639, + 48.23192 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE413800", + "ref": "FRIONE413800", + "name": "IONITY Haut Koenigsbourg", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-08", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.183078, + 43.985279 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE431500", + "ref": "FRIONE431500", + "name": "IONITY Ile Rose", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-21", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684731, + 47.852405 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE415600", + "ref": "FRIONE415600", + "name": "IONITY Jardin des arbres", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-30", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.522627, + 46.775898 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE408300", + "ref": "FRIONE408300", + "name": "IONITY Jura", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-10-08", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60966, + 44.171306 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE432700", + "ref": "FRIONE432700", + "name": "IONITY Agen", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-16", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.623299, + 48.126677 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE404200", + "ref": "FRIONE404200", + "name": "IONITY La Ferté-Bernard", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-08-19", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.253033, + 44.870544 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE432600", + "ref": "FRIONE432600", + "name": "IONITY La Garde", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-01", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.197267, + 47.974493 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE412600", + "ref": "FRIONE412600", + "name": "IONITY La Réserve", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-19", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.103061, + 48.908862 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE402900", + "ref": "FRIONE402900", + "name": "IONITY Labenne Est", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-06-11", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.418951, + 43.585904 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE405200", + "ref": "FRIONE405200", + "name": "IONITY Labenne Ouest", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-06-11", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.420473, + 43.586775 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE402700", + "ref": "FRIONE402700", + "name": "IONITY Lacq Audéjos Nord", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-13", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.584799, + 43.418629 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE402800", + "ref": "FRIONE402800", + "name": "IONITY Lacq Audéjos Sud", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-17", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598593, + 43.42185 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE409100", + "ref": "FRIONE409100", + "name": "IONITY Langres Noidant", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-13", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22454, + 47.813445 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE409200", + "ref": "FRIONE409200", + "name": "IONITY Langres Perrogney", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-12-11", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.222737, + 47.815173 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE432500", + "ref": "FRIONE432500", + "name": "IONITY Larzac", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-06", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623271, + 45.276249 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE412500", + "ref": "FRIONE412500", + "name": "IONITY l'Isle-d'Abeau", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-03", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212795, + 45.611787 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE410300", + "ref": "FRIONE410300", + "name": "IONITY Lochères", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-12-12", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225917, + 45.850722 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE421600", + "ref": "FRIONE421600", + "name": "IONITY Loire", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.501811, + 47.30968 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE402200", + "ref": "FRIONE402200", + "name": "IONITY Longué la Couaille", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-05-03", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.134694, + 47.41925 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE402100", + "ref": "FRIONE402100", + "name": "IONITY Longué-les-Cossonnières", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-05-03", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.131556, + 47.4185 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE437800", + "ref": "FRIONE437800", + "name": "IONITY Longvilliers", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-26", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.245204, + 43.334659 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE401800", + "ref": "FRIONE401800", + "name": "IONITY Garonne", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-03-14", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06949, + 45.875816 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE409000", + "ref": "FRIONE409000", + "name": "IONITY Fontanelles", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-10-25", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.158265, + 45.548788 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE409900", + "ref": "FRIONE409900", + "name": "IONITY Arclusaz", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-29", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.631368, + 47.166119 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE101300", + "ref": "FRIONE101300", + "name": "IONITY Fontaine Colette", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-12-07", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.06931, + 50.225516 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE440000", + "ref": "FRIONE440000", + "name": "IONITY Baralle", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.334795, + 45.169865 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE432300", + "ref": "FRIONE432300", + "name": "IONITY Bedenac Est", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-08", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387813, + 47.664023 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE407800", + "ref": "FRIONE407800", + "name": "IONITY Blois Ménars", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-04", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387757, + 47.665885 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE408000", + "ref": "FRIONE408000", + "name": "IONITY Blois Villerbon", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-11", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.10745, + 47.030768 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE412300", + "ref": "FRIONE412300", + "name": "IONITY Bois Guillerot", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-22", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.420088, + 46.314092 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE402400", + "ref": "FRIONE402400", + "name": "IONITY Boismandé Est", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-03-30", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.416918, + 46.313059 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE402000", + "ref": "FRIONE402000", + "name": "IONITY Boismandé Ouest", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-03-29", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.547145, + 49.614324 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE402300", + "ref": "FRIONE402300", + "name": "IONITY Bolleville Est", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-29", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.545844, + 49.614343 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE431900", + "ref": "FRIONE431900", + "name": "IONITY Bolleville Ouest", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-29", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.411364, + 46.064297 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE412700", + "ref": "FRIONE412700", + "name": "IONITY Bonneville", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-05-28", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.362753, + 46.497639 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE438700", + "ref": "FRIONE438700", + "name": "IONITY Bourbonnais", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-04", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240714, + 47.094675 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE416100", + "ref": "FRIONE416100", + "name": "IONITY Bourges St Thorettes", + "capacity": "3", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-10", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.0365, + 43.592 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE403200", + "ref": "FRIONE403200", + "name": "IONITY Bréguières Nord", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-26", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.990385, + 43.423878 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE404500", + "ref": "FRIONE404500", + "name": "IONITY Cambarette Nord", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-25", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4908417, + 46.116638 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE431200", + "ref": "FRIONE431200", + "name": "IONITY Ceignes Haut Bugey", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-25", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417075, + 46.751937 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE410100", + "ref": "FRIONE410100", + "name": "IONITY Centre de la France", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-29", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417606, + 46.751623 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE431800", + "ref": "FRIONE431800", + "name": "IONITY Centre de la France Sud", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-29", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.012515, + 49.204151 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE438500", + "ref": "FRIONE438500", + "name": "IONITY Champfleury", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-16", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.578674, + 48.467261 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE126500", + "ref": "FRIONE126500", + "name": "IONITY Chartres Bois Paris", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-10-26", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.580008, + 48.468782 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE126400", + "ref": "FRIONE126400", + "name": "IONITY Chartres Gasville", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-10-26", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70479, + 46.850652 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE448900", + "ref": "FRIONE448900", + "name": "IONITY Chateauroux", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-22", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.229353, + 44.286522 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE414000", + "ref": "FRIONE414000", + "name": "IONITY Cœur D'Aquitaine", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7988237, + 50.926644 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE439700", + "ref": "FRIONE439700", + "name": "IONITY Coquelles", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-09", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.543044, + 43.178103 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE414800", + "ref": "FRIONE414800", + "name": "IONITY Corbières Nord", + "capacity": "9", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.542194, + 43.176909 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE414700", + "ref": "FRIONE414700", + "name": "IONITY Corbières Sud", + "capacity": "12", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-10", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.721676, + 48.264407 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE408100", + "ref": "FRIONE408100", + "name": "IONITY Darvault", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-24", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045602, + 47.27199 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE453800", + "ref": "FRIONE453800", + "name": "IONITY Dijon Sud", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-16", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.987548, + 48.566391 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE408400", + "ref": "FRIONE408400", + "name": "IONITY Lyon-Dagneux Sud", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-12-17", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.070508, + 45.843868 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE403800", + "ref": "FRIONE403800", + "name": "IONITY Mâcon Saint-Albain", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-10-25", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865081, + 46.421048 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE438800", + "ref": "FRIONE438800", + "name": "IONITY Maison Dieu", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-03", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.186759, + 44.404918 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE440700", + "ref": "FRIONE440700", + "name": "IONITY Mas d'Agenais", + "capacity": "9", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-28", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.166865, + 47.807101 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE403400", + "ref": "FRIONE437700", + "name": "IONITY Sarthe Sud", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-10-17", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16809, + 47.803507 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE431400", + "ref": "FRIONE409800", + "name": "IONITY Saugon Ouest", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-11", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.053255, + 50.54921 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE440100", + "ref": "FRIONE440100", + "name": "IONITY Seclin", + "capacity": "13", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912861, + 44.236045 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE449000", + "ref": "FRIONE449000", + "name": "IONITY Sisteron", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-15", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.307799, + 49.366191 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE448300", + "ref": "FRIONE448300", + "name": "IONITY Soissons Ouest", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-04", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.492422, + 45.188934 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE423400", + "ref": "FRIONE437700", + "name": "IONITY Sorgues", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-21", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.889573, + 44.024304 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE403900", + "ref": "FRIONE409800", + "name": "IONITY Taponas", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-08", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7669235, + 46.134233 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE402500", + "ref": "FRIONE402500", + "name": "IONITY Tavel Nord", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-03", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.703626, + 44.004071 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE405300", + "ref": "FRIONE405300", + "name": "IONITY Tavel Sud", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-07", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.700191, + 43.999633 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE101200", + "ref": "FRIONE101200", + "name": "IONITY Tours La Longue Vue", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-07-25", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.776985, + 47.475422 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE423400", + "ref": "FRIONE423400", + "name": "IONITY Troyes Sud", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-03", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186773, + 49.247541 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE437700", + "ref": "FRIONE437700", + "name": "IONITY Val De Reuil", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0977824, + 48.225594 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE410000", + "ref": "FRIONE410000", + "name": "IONITY Val Gelon", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-28", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.156463, + 45.547641 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE410400", + "ref": "FRIONE410400", + "name": "IONITY Vallée De La Vire Gouvets", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-20", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.961812, + 46.09619 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE409800", + "ref": "FRIONE409800", + "name": "IONITY Valleiry Sud", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.118014, + 46.573538 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE409700", + "ref": "FRIONE409700", + "name": "IONITY Vendée", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-27", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.508419, + 49.119802 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE413700", + "ref": "FRIONE413700", + "name": "IONITY Verdun Nord", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-30", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.50902, + 49.118201 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE417600", + "ref": "FRIONE417600", + "name": "IONITY Verdun Sud", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-13", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5866803, + 46.378027 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE438600", + "ref": "FRIONE438600", + "name": "IONITY Vérités", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-09", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.153525, + 45.660128 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE416900", + "ref": "FRIONE416900", + "name": "IONITY Veyre", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-18", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.451011, + 43.413836 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE409600", + "ref": "FRIONE409600", + "name": "IONITY Vidauban Sud", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-06-28", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.846994, + 42.578429 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE413100", + "ref": "FRIONE413100", + "name": "IONITY Village Catalan Est", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-21", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.848341, + 42.577784 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE413200", + "ref": "FRIONE413200", + "name": "IONITY Village Catalan Ouest", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-21", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.622302, + 48.125475 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE404100", + "ref": "FRIONE404100", + "name": "IONITY Villaines la Gonais", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-08-19", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.089269, + 43.21589 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE438900", + "ref": "FRIONE438900", + "name": "IONITY Vinassan Nord", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-15", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.245628, + 43.337933 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE401900", + "ref": "FRIONE401900", + "name": "IONITY Volvestre", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-02-15", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.918671, + 49.242974 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE401700", + "ref": "FRIONE401700", + "name": "IONITY Vrigny", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-10", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5485168, + 49.089259 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE403300", + "ref": "FRIONE448300", + "name": "IONITY Sarthe Nord", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-10-17", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825571, + 45.275563 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE439600", + "ref": "FRIONE449000", + "name": "IONITY Saint-Witz", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-13", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598651, + 45.610095 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE413000", + "ref": "FRIONE440100", + "name": "IONITY Saint-Rambert Ouest", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-18", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.720788, + 48.263874 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE433500", + "ref": "FRIONE433500", + "name": "IONITY Orléans Nord", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-07", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.037132, + 47.504384 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE416800", + "ref": "FRIONE416800", + "name": "IONITY Mayenne", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-29", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.693474, + 48.09518 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE404400", + "ref": "FRIONE404400", + "name": "IONITY Mionnay Chatanay", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-12-17", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894038, + 45.8899 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE404000", + "ref": "FRIONE404000", + "name": "IONITY Mionnay Saint-Galmier", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-02-10", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894515, + 45.88437 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE421500", + "ref": "FRIONE421500", + "name": "IONITY Montbartier", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-05-21", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.308488, + 43.914901 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE403500", + "ref": "FRIONE403500", + "name": "IONITY Montélimar Est", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-17", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78134, + 44.513898 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE403600", + "ref": "FRIONE403600", + "name": "IONITY Montélimar Ouest", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-07-17", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.983572, + 43.65096 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE435900", + "ref": "FRIONE435900", + "name": "IONITY Montpellier Saint Aunès", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-19", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78082, + 44.515143 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE408500", + "ref": "FRIONE408500", + "name": "IONITY Morières", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-08-05", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.723115, + 44.21656 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE440400", + "ref": "FRIONE440400", + "name": "IONITY Mornas Les Adrets", + "capacity": "16", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732409, + 44.194832 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE440300", + "ref": "FRIONE440300", + "name": "IONITY Mornas Village", + "capacity": "16", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-23", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.91204, + 43.922931 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE409300", + "ref": "FRIONE409300", + "name": "IONITY Mouxy", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-09-25", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.929976, + 45.673865 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE408600", + "ref": "FRIONE408600", + "name": "IONITY Nemours", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-08", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641624, + 43.074958 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE446600", + "ref": "FRIONE446600", + "name": "IONITY Pamiers", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827989, + 45.276404 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE412900", + "ref": "FRIONE412900", + "name": "IONITY Saint-Rambert Est", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-09", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859723, + 47.948583 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE408700", + "ref": "FRIONE408700", + "name": "IONITY Pech Montat Est", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525098, + 45.030878 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE433400", + "ref": "FRIONE433400", + "name": "IONITY Pech Montat Ouest", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.524313, + 45.030881 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE439100", + "ref": "FRIONE439100", + "name": "IONITY Perigueux Sud ", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.701054, + 45.13792 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE404300", + "ref": "FRIONE404300", + "name": "IONITY Poitiers Chincé", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-09-16", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371119, + 46.701836 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE409400", + "ref": "FRIONE409400", + "name": "IONITY Poitiers Jaunay-Clan", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-08-28", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.366838, + 46.701436 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE124800", + "ref": "FRIONE124800", + "name": "IONITY Poitou Charentes", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-17", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.378714, + 46.296171 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE101400", + "ref": "FRIONE101400", + "name": "IONITY Portes d'Angers Sud", + "capacity": "6", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-07-25", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.491055, + 47.500299 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE408900", + "ref": "FRIONE408900", + "name": "IONITY Rely", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-09-12", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586605, + 44.369754 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE459400", + "ref": "FRIONE459400", + "name": "IONITY Rodez", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-14", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378795, + 50.571808 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE437900", + "ref": "FRIONE437900", + "name": "IONITY Rosny Nord", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-05", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63404, + 48.992862 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE440200", + "ref": "FRIONE440200", + "name": "IONITY Saint Laurent", + "capacity": "7", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-08", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.585323, + 50.826461 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE431700", + "ref": "FRIONE431700", + "name": "IONITY Saint Léger Est", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-25", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.755607, + 50.167331 + ] + }, + "properties": { + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref:EU:EVSE": "FRIONE407900", + "ref": "FRIONE407900", + "name": "IONITY Baie de Somme", + "capacity": "5", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "TRUE", + "socket:chademo": "TRUE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-03-27", + "note": "Recharge jusqu'à 350KW - CCS", + "source:date": "2023-03-21", + "socket:type2_cable": "TRUE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.0100812, + 43.6087505 + ] + }, + "properties": { + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "gerald.seiler@sap.com", + "phone": "0681167047", + "network": "SAP LABS FRANCE", + "ref:EU:EVSE": "FRSLFESAPMOUGINS163", + "ref": "FR*SLF*ESAP*MOUGINS*16*3", + "name": "SAP LABS FRANCE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "pendant les horaires d'ouverture", + "source:date": "2021-05-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.621857810756655, + 46.38979827128929 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2307001", + "ref": "", + "name": "CROZANT", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-09-30", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8728709, + 46.1613543 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2309601", + "ref": "", + "name": "GUERET - SDEC23", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "True", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-21", + "note": "Parking Privé du SDEC", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.427356, + 46.188104 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2304501", + "ref": "", + "name": "CHAMBON SUR VOUEIZE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.483527, + 46.238674 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2317601", + "ref": "", + "name": "LA SOUTERRAINE", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-07-30", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.483527, + 46.238674 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2317601", + "ref": "", + "name": "LA SOUTERRAINE", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-07-30", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.485976, + 46.174744 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2307601", + "ref": "", + "name": "EVAUX LES BAINS", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-11-27", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.485976, + 46.174744 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2307601", + "ref": "", + "name": "EVAUX LES BAINS", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-11-27", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67012069, + 46.3057547 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2307501", + "ref": "", + "name": "DUN LE PALESTEL", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67012069, + 46.3057547 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2307501", + "ref": "", + "name": "DUN LE PALESTEL", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.911452, + 45.839515 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2316501", + "ref": "", + "name": "ROYERE DE VASSIVIERE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.911452, + 45.839515 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2316501", + "ref": "", + "name": "ROYERE DE VASSIVIERE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6307987051364758, + 46.11916513058057 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2302101", + "ref": "", + "name": "BENEVENT L'ABBAYE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6307987051364758, + 46.11916513058057 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2302101", + "ref": "", + "name": "BENEVENT L'ABBAYE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.908169, + 46.325814 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2302501", + "ref": "", + "name": "BONNAT", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-02-18", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.908169, + 46.325814 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2302501", + "ref": "", + "name": "BONNAT", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-02-18", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1752391966838003, + 45.95685385044865 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2300801", + "ref": "", + "name": "AUBUSSON", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-09-30", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1752391966838003, + 45.95685385044865 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2300801", + "ref": "", + "name": "AUBUSSON", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-09-30", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.427356, + 46.188104 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2304501", + "ref": "", + "name": "CHAMBON SUR VOUEIZE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7562378, + 46.204309 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2324701", + "ref": "", + "name": "SAINT VAURY - MAIRIE", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-09-10", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7562378, + 46.204309 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2324701", + "ref": "", + "name": "SAINT VAURY - MAIRIE", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-09-10", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.872105, + 46.168328 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2309603", + "ref": "", + "name": "GUERET - BONNYAUD", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8728709, + 46.1613543 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2309601", + "ref": "", + "name": "GUERET - SDEC23", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "True", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-11-21", + "note": "Parking Privé du SDEC", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.757261, + 45.954984 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2303001", + "ref": "", + "name": "BOURGANEUF", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-07-25", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.757261, + 45.954984 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2303001", + "ref": "", + "name": "BOURGANEUF", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-07-25", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87458, + 46.18066 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2309602", + "ref": "", + "name": "GUERET - ESPACE ANDRE LEJEUNE", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-09-27", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87458, + 46.18066 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2309602", + "ref": "", + "name": "GUERET - ESPACE ANDRE LEJEUNE", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-09-27", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.872105, + 46.168328 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2309603", + "ref": "", + "name": "GUERET - BONNYAUD", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "True", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-01", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.852937, + 46.16619 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2309604", + "ref": "", + "name": "GUERET", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-07-26", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.915143, + 46.13929 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2319302", + "ref": "", + "name": "SAINTE FEYRE - MAIRIE", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-09-07", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.852937, + 46.16619 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2309604", + "ref": "", + "name": "GUERET", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-07-26", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.84716, + 46.182498 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2324501", + "ref": "", + "name": "SAINT SULPICE LE GUERETOIS", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-07-27", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.84716, + 46.182498 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2324501", + "ref": "", + "name": "SAINT SULPICE LE GUERETOIS", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-07-27", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.889585, + 46.127182 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2319301", + "ref": "", + "name": "SAINTE FEYRE - PARC ANIMALIER", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-09-10", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.889585, + 46.127182 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2319301", + "ref": "", + "name": "SAINTE FEYRE - PARC ANIMALIER", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-09-10", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.915143, + 46.13929 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2319302", + "ref": "", + "name": "SAINTE FEYRE - MAIRIE", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-09-07", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.621857810756655, + 46.38979827128929 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2307001", + "ref": "", + "name": "CROZANT", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-09-30", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2148780297956265, + 46.349311090103754 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2303101", + "ref": "", + "name": "BOUSSAC", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-07", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3282017747338646, + 46.18043243312804 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2311401", + "ref": "", + "name": "LUSSAT", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-10-01", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.500372319177679, + 46.02618636026654 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2301301", + "ref": "", + "name": "AUZANCES", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-21", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6472792580972633, + 46.16018464709621 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2309501", + "ref": "", + "name": "LE GRAND BOURG", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-07", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6472792580972633, + 46.16018464709621 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2309501", + "ref": "", + "name": "LE GRAND BOURG", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-07", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.849796138345705, + 45.99788844986339 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2315501", + "ref": "", + "name": "PONTARION", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-09", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.849796138345705, + 45.99788844986339 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2315501", + "ref": "", + "name": "PONTARION", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-09", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0335378347450135, + 45.906877456491365 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2325701", + "ref": "", + "name": "VALLIERE", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-09", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0335378347450135, + 45.906877456491365 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2325701", + "ref": "", + "name": "VALLIERE", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-09", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.500372319177679, + 46.02618636026654 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2301301", + "ref": "", + "name": "AUZANCES", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-21", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4864876938733127, + 46.23622541263118 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2317602", + "ref": "", + "name": "LA SOUTERRAINE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2148780297956265, + 46.349311090103754 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2303101", + "ref": "", + "name": "BOUSSAC", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-07", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0860594190967117, + 46.180882164981234 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2310001", + "ref": "", + "name": "JARNAGES", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-06", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0860594190967117, + 46.180882164981234 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2310001", + "ref": "", + "name": "JARNAGES", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-06", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7558725880278507, + 45.94935937360538 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2303003", + "ref": "", + "name": "BOURGANEUF - WALLBOX", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-06", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.878921, + 46.17376 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2309605", + "ref": "", + "name": "GUERET - GARE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3282017747338646, + 46.18043243312804 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2311401", + "ref": "", + "name": "LUSSAT", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-10-01", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-01-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4864876938733127, + 46.23622541263118 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2317602", + "ref": "", + "name": "LA SOUTERRAINE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.878921, + 46.17376 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2309605", + "ref": "", + "name": "GUERET - GARE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-10", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239653001754647, + 46.19073258470734 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2309301", + "ref": "", + "name": "GOUZON", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-06", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4832416152564285, + 46.17599486200176 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2307602", + "ref": "", + "name": "EVAUX LES BAINS", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-07", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297630254367735, + 45.98220366857867 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2302001", + "ref": "", + "name": "BELLEGARDE EN MARCHE", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-07", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.756224684351945, + 45.954558314194834 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2303002", + "ref": "", + "name": "BOURGANEUF - RUE DE L'ETANG", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-07", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.756224684351945, + 45.954558314194834 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2303002", + "ref": "", + "name": "BOURGANEUF - RUE DE L'ETANG", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-07", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3670760395894566, + 45.86830223684359 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2306901", + "ref": "", + "name": "CROCQ", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-21", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297630254367735, + 45.98220366857867 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2302001", + "ref": "", + "name": "BELLEGARDE EN MARCHE", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-07", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3670760395894566, + 45.86830223684359 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2306901", + "ref": "", + "name": "CROCQ", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-21", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4832416152564285, + 46.17599486200176 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2307602", + "ref": "", + "name": "EVAUX LES BAINS", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-07", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.171941051048165, + 45.884709957957774 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2307901", + "ref": "", + "name": "FELLETIN", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.171941051048165, + 45.884709957957774 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2307901", + "ref": "", + "name": "FELLETIN", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-08", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5128909982581737, + 46.14672358923505 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2319201", + "ref": "", + "name": "FURSAC", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-01", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5128909982581737, + 46.14672358923505 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2319201", + "ref": "", + "name": "FURSAC", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-01", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9928695454171546, + 46.35557415488703 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2308901", + "ref": "", + "name": "GENOUILLAC", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-23", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9928695454171546, + 46.35557415488703 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2308901", + "ref": "", + "name": "GENOUILLAC", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-02-23", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239653001754647, + 46.19073258470734 + ] + }, + "properties": { + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "ref:EU:EVSE": "FRS23D2309301", + "ref": "", + "name": "GOUZON", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "False", + "reservation": "False", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-06", + "note": "Prix MOBIVE à la minute", + "source:date": "2023-03-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.76, + 45.16 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "404675878", + "email": "exploitation@freshmile.com", + "phone": "03 68 78 14 35", + "network": "SATORIZ GRENOBLE ROCADE", + "ref:EU:EVSE": "FRFR1ECMXH", + "ref": "", + "name": "BORNE 1 SATORIZ GRENOBLE ROCADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-27", + "note": "", + "source:date": "2021-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9801575, + 50.3681097 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "LA FERME DE LA MOTTE", + "ref:EU:EVSE": "Non concerné", + "ref": "01F859RCGP1001KQFE2HT52P08", + "name": "LA FERME DE LA MOTTE", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-15", + "note": "", + "source:date": "2021-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1443631, + 50.7530166 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "ETANCHEITE PARTICULIERS ET INDUSTRIES", + "ref:EU:EVSE": "Non concerné", + "ref": "01F8T2FRWRBSCX49CB10H85MSR", + "name": "ETANCHEITE PARTICULIERS ET INDUSTRIES", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-10", + "note": "", + "source:date": "2021-06-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.07568, + 45.89067 + ] + }, + "properties": { + "operator": "Avomarks", + "owner:ref:FR:SIREN": "442556452", + "email": "stephane@avomarks.fr", + "phone": "04 50 69 47 52", + "network": "Avomarks", + "ref:EU:EVSE": "Non concerné", + "ref": "01F8WSV27RK8ZG8QTW59R62GXJ", + "name": "Avomarks", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-01", + "note": "", + "source:date": "2021-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.88342, + 50.1989359 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "GARAGE ZAWIEJA", + "ref:EU:EVSE": "Non concerné", + "ref": "01F8YH73V8G9RJTD3QKSPN7EHH", + "name": "GARAGE ZAWIEJA", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-23", + "note": "", + "source:date": "2021-06-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.62415, + 48.506082 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9512", + "ref": "FR*SOD*S*CUGN*95*1*_*_", + "name": "CCTLB VATHIMENIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.44907, + 48.52959 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9812", + "ref": "FR*SOD*S*CUGN*98*1*_*_", + "name": "CCTLB LAMATH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.741191, + 48.528566 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9611", + "ref": "FR*SOD*S*CUGN*96*1*_*_", + "name": "CCTLB PETTONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.741191, + 48.528566 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9612", + "ref": "FR*SOD*S*CUGN*96*1*_*_", + "name": "CCTLB PETTONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.735212, + 48.444032 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9711", + "ref": "FR*SOD*S*CUGN*97*1*_*_", + "name": "CCTLB DENEUVRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.651412, + 48.611865 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10112", + "ref": "FR*SOD*S*CUGN*101*1*_*_", + "name": "CCTLB LANEUVEVILLE AUX BOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.735212, + 48.444032 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9712", + "ref": "FR*SOD*S*CUGN*97*1*_*_", + "name": "CCTLB DENEUVRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.691154, + 48.473567 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9912", + "ref": "FR*SOD*S*CUGN*99*1*_*_", + "name": "CCTLB GLONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.44907, + 48.52959 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9811", + "ref": "FR*SOD*S*CUGN*98*1*_*_", + "name": "CCTLB LAMATH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.691154, + 48.473567 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9911", + "ref": "FR*SOD*S*CUGN*99*1*_*_", + "name": "CCTLB GLONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.651412, + 48.611865 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10111", + "ref": "FR*SOD*S*CUGN*101*1*_*_", + "name": "CCTLB LANEUVEVILLE AUX BOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.732776, + 48.481303 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10012", + "ref": "FR*SOD*S*CUGN*100*1*_*_", + "name": "CCTLB GELACOURT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.732776, + 48.481303 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10011", + "ref": "FR*SOD*S*CUGN*100*1*_*_", + "name": "CCTLB GELACOURT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.62415, + 48.506082 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9511", + "ref": "FR*SOD*S*CUGN*95*1*_*_", + "name": "CCTLB VATHIMENIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.749424, + 48.497579 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9011", + "ref": "FR*SOD*S*CUGN*90*1*_*_", + "name": "CCTLB BROUVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.529493, + 48.596794 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9411", + "ref": "FR*SOD*S*CUGN*94*1*_*_", + "name": "CCTLB CHANTEHEUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.529493, + 48.596794 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9412", + "ref": "FR*SOD*S*CUGN*94*1*_*_", + "name": "CCTLB CHANTEHEUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.729624, + 48.517423 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9312", + "ref": "FR*SOD*S*CUGN*93*1*_*_", + "name": "CCTLB HABLAINVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.729624, + 48.517423 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9311", + "ref": "FR*SOD*S*CUGN*93*1*_*_", + "name": "CCTLB HABLAINVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.753659, + 48.515558 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9212", + "ref": "FR*SOD*S*CUGN*92*1*_*_", + "name": "CCTLB VAXAINVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.753659, + 48.515558 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9211", + "ref": "FR*SOD*S*CUGN*92*1*_*_", + "name": "CCTLB VAXAINVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.766798, + 48.509037 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9111", + "ref": "FR*SOD*S*CUGN*91*1*_*_", + "name": "CCTLB REHERREY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.766798, + 48.509037 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9112", + "ref": "FR*SOD*S*CUGN*91*1*_*_", + "name": "CCTLB REHERREY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.749424, + 48.497579 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN9012", + "ref": "FR*SOD*S*CUGN*90*1*_*_", + "name": "CCTLB BROUVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.792528, + 48.429512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8912", + "ref": "FR*SOD*S*CUGN*89*1*_*_", + "name": "CCTLB BERTRICHAMPS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.792528, + 48.429512 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8911", + "ref": "FR*SOD*S*CUGN*89*1*_*_", + "name": "CCTLB BERTRICHAMPS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.897909, + 48.528022 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10212", + "ref": "FR*SOD*S*CUGN*102*1*_*_", + "name": "COMCOM DU PCST - VILLE DE COLOMBEY LES BELLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.810074, + 48.412013 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8812", + "ref": "FR*SOD*S*CUGN*88*1*_*_", + "name": "CCTLB THIAVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.897909, + 48.528022 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10211", + "ref": "FR*SOD*S*CUGN*102*1*_*_", + "name": "COMCOM DU PCST - VILLE DE COLOMBEY LES BELLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.500923, + 48.603982 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN11321", + "ref": "FR*SOD*S*CUGN*113*2*_*_", + "name": "CCTLB JOLIVET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.891198, + 49.366949 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10311", + "ref": "FR*SOD*S*CUGN*103*1*_*_", + "name": "CD54 - VILLE DAUDUN LE ROMAN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.322902, + 48.468331 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN11121", + "ref": "FR*SOD*S*CUGN*111*2*_*_", + "name": "PETR - VILLE DE BAYON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.655137, + 48.497517 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8711", + "ref": "FR*SOD*S*CUGN*87*1*_*_", + "name": "CCTLB FLIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.132647, + 48.771853 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN11912", + "ref": "FR*SOD*S*CUGN*119*1*_*_", + "name": "CCBP - RUE DES 4 ELEMENTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.132647, + 48.771853 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN11911", + "ref": "FR*SOD*S*CUGN*119*1*_*_", + "name": "CCBP - RUE DES 4 ELEMENTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.186692, + 48.669613 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN11811", + "ref": "FR*SOD*S*CUGN*118*1*_*_", + "name": "MGN - RUELLE MATHIEU DE DOMBASLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.186692, + 48.669613 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN11812", + "ref": "FR*SOD*S*CUGN*118*1*_*_", + "name": "MGN - RUELLE MATHIEU DE DOMBASLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.235897, + 48.651288 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN11612", + "ref": "FR*SOD*S*CUGN*116*1*_*_", + "name": "MGN - PARKING DU CIMETIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.235897, + 48.651288 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN11611", + "ref": "FR*SOD*S*CUGN*116*1*_*_", + "name": "MGN - PARKING DU CIMETIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-09-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.601472, + 48.589796 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN11421", + "ref": "FR*SOD*S*CUGN*114*2*_*_", + "name": "CCTLB MARAINVILLER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.601472, + 48.589796 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN11422", + "ref": "FR*SOD*S*CUGN*114*2*_*_", + "name": "CCTLB MARAINVILLER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.500923, + 48.603982 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN11322", + "ref": "FR*SOD*S*CUGN*113*2*_*_", + "name": "CCTLB JOLIVET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.167017, + 48.735001 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN11211", + "ref": "FR*SOD*S*CUGN*112*1*_*_", + "name": "COMCOM BASSIN POMPEY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.167017, + 48.735001 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN11212", + "ref": "FR*SOD*S*CUGN*112*1*_*_", + "name": "COMCOM BASSIN POMPEY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.322902, + 48.468331 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN11122", + "ref": "FR*SOD*S*CUGN*111*2*_*_", + "name": "PETR - VILLE DE BAYON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.891198, + 49.366949 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10312", + "ref": "FR*SOD*S*CUGN*103*1*_*_", + "name": "CD54 - VILLE DAUDUN LE ROMAN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.322902, + 48.468331 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN11111", + "ref": "FR*SOD*S*CUGN*111*1*_*_", + "name": "PETR - VILLE DE BAYON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.322902, + 48.468331 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN11112", + "ref": "FR*SOD*S*CUGN*111*1*_*_", + "name": "PETR - VILLE DE BAYON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.145511, + 48.779856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10911", + "ref": "FR*SOD*S*CUGN*109*1*_*_", + "name": "CD54 - VILLE DE CUSTINES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.145511, + 48.779856 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10912", + "ref": "FR*SOD*S*CUGN*109*1*_*_", + "name": "CD54 - VILLE DE CUSTINES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908144, + 48.545392 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10812", + "ref": "FR*SOD*S*CUGN*108*1*_*_", + "name": "CD54 - VILLE DALLAIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.908144, + 48.545392 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10811", + "ref": "FR*SOD*S*CUGN*108*1*_*_", + "name": "CD54 - VILLE DALLAIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.871263, + 48.651079 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10612", + "ref": "FR*SOD*S*CUGN*106*1*_*_", + "name": "CD54 - VILLE DE TOUL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.871263, + 48.651079 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10611", + "ref": "FR*SOD*S*CUGN*106*1*_*_", + "name": "CD54 - VILLE DE TOUL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-07-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.113954, + 48.937585 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10512", + "ref": "FR*SOD*S*CUGN*105*1*_*_", + "name": "CD54 - VILLE DE LESMENILS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.113954, + 48.937585 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10511", + "ref": "FR*SOD*S*CUGN*105*1*_*_", + "name": "CD54 - VILLE DE LESMENILS", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.113954, + 48.937585 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10412", + "ref": "FR*SOD*S*CUGN*104*1*_*_", + "name": "CD54 - VILLE DE LESMENILS 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.113954, + 48.937585 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN10411", + "ref": "FR*SOD*S*CUGN*104*1*_*_", + "name": "CD54 - VILLE DE LESMENILS 2", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.810074, + 48.412013 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8811", + "ref": "FR*SOD*S*CUGN*88*1*_*_", + "name": "CCTLB THIAVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.655137, + 48.497517 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8712", + "ref": "FR*SOD*S*CUGN*87*1*_*_", + "name": "CCTLB FLIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.175165, + 48.690281 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN342", + "ref": "FR*SOD*S*CUGN*3*4*_*_", + "name": "MGN - PARKING THIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.092196, + 48.618467 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4111", + "ref": "FR*SOD*S*CUGN*41*1*_*_", + "name": "COMCOM MOSELLE ET MADON LAFILATURE PARKING NORD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.804458, + 49.321175 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2912", + "ref": "FR*SOD*S*CUGN*29*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE LANDRES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.804458, + 49.321175 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2911", + "ref": "FR*SOD*S*CUGN*29*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE LANDRES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.905749, + 49.366657 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2811", + "ref": "FR*SOD*S*CUGN*28*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE AUDUN LE ROMAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.905749, + 49.366657 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2812", + "ref": "FR*SOD*S*CUGN*28*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE AUDUN LE ROMAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.930792, + 49.429157 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2712", + "ref": "FR*SOD*S*CUGN*27*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE CRUSNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.930792, + 49.429157 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2711", + "ref": "FR*SOD*S*CUGN*27*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE CRUSNES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.902419, + 49.415974 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2611", + "ref": "FR*SOD*S*CUGN*26*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE ERROUVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.902419, + 49.415974 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2612", + "ref": "FR*SOD*S*CUGN*26*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE ERROUVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.741943, + 49.293346 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2511", + "ref": "FR*SOD*S*CUGN*25*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE BOULIGNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.834023, + 49.327763 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2412", + "ref": "FR*SOD*S*CUGN*24*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE MONT BONVILLERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.834023, + 49.327763 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2411", + "ref": "FR*SOD*S*CUGN*24*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE MONT BONVILLERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.930843, + 49.324322 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2311", + "ref": "FR*SOD*S*CUGN*23*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE TRIEUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.930843, + 49.324322 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2312", + "ref": "FR*SOD*S*CUGN*23*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE TRIEUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.052047, + 48.883568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2211", + "ref": "FR*SOD*S*CUGN*22*1*_*_", + "name": "VILLE DE BLENOD LES PONT A MOUSSON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.052047, + 48.883568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2212", + "ref": "FR*SOD*S*CUGN*22*1*_*_", + "name": "VILLE DE BLENOD LES PONT A MOUSSON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.068884, + 48.842911 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2111", + "ref": "FR*SOD*S*CUGN*21*1*_*_", + "name": "VILLE DE DIEULOUARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.068884, + 48.842911 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2112", + "ref": "FR*SOD*S*CUGN*21*1*_*_", + "name": "VILLE DE DIEULOUARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.133857, + 48.699406 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN1912", + "ref": "FR*SOD*S*CUGN*19*1*_*_", + "name": "MGN - CC CASCADES LAXOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.133857, + 48.699406 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN1911", + "ref": "FR*SOD*S*CUGN*19*1*_*_", + "name": "MGN - CC CASCADES LAXOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.75571, + 49.388744 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3011", + "ref": "FR*SOD*S*CUGN*30*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE MERCY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.75571, + 49.388744 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3012", + "ref": "FR*SOD*S*CUGN*30*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE MERCY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.900021, + 49.311222 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3111", + "ref": "FR*SOD*S*CUGN*31*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE TRUCQUENIEUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.145994, + 48.649043 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3621", + "ref": "FR*SOD*S*CUGN*36*2*_*_", + "name": "MGN - PARKING RELAIS CHU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.252347, + 48.70712 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4011", + "ref": "FR*SOD*S*CUGN*40*1*_*_", + "name": "MGN_CT PULNOY 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.252347, + 48.70712 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4012", + "ref": "FR*SOD*S*CUGN*40*1*_*_", + "name": "MGN_CT PULNOY 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.194121, + 48.649816 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3912", + "ref": "FR*SOD*S*CUGN*39*1*_*_", + "name": "MGN - PARKING MAISON DU TEMPS LIBRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.194121, + 48.649816 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3911", + "ref": "FR*SOD*S*CUGN*39*1*_*_", + "name": "MGN - PARKING MAISON DU TEMPS LIBRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17863, + 48.666908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3812", + "ref": "FR*SOD*S*CUGN*38*1*_*_", + "name": "MGN - PISCINE MICHEL BERTRAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17863, + 48.666908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3811", + "ref": "FR*SOD*S*CUGN*38*1*_*_", + "name": "MGN - PISCINE MICHEL BERTRAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16177, + 48.622033 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3712", + "ref": "FR*SOD*S*CUGN*37*1*_*_", + "name": "MGN - PARKING MAIRIE LUDRES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.16177, + 48.622033 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3711", + "ref": "FR*SOD*S*CUGN*37*1*_*_", + "name": "MGN - PARKING MAIRIE LUDRES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.145994, + 48.649043 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3612", + "ref": "FR*SOD*S*CUGN*36*1*_*_", + "name": "MGN - PARKING RELAIS CHU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.900021, + 49.311222 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3112", + "ref": "FR*SOD*S*CUGN*31*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE TRUCQUENIEUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.145994, + 48.649043 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3622", + "ref": "FR*SOD*S*CUGN*36*2*_*_", + "name": "MGN - PARKING RELAIS CHU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.145994, + 48.649043 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3611", + "ref": "FR*SOD*S*CUGN*36*1*_*_", + "name": "MGN - PARKING RELAIS CHU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.175381, + 48.689914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3511", + "ref": "FR*SOD*S*CUGN*35*1*_*_", + "name": "MGN - PARKING THIERS TAXI 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.175381, + 48.689914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3512", + "ref": "FR*SOD*S*CUGN*35*1*_*_", + "name": "MGN - PARKING THIERS TAXI 2", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.175381, + 48.689914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3411", + "ref": "FR*SOD*S*CUGN*34*1*_*_", + "name": "MGN - PARKING THIERS TAXI 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.175381, + 48.689914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3412", + "ref": "FR*SOD*S*CUGN*34*1*_*_", + "name": "MGN - PARKING THIERS TAXI 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.77921, + 49.289143 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3211", + "ref": "FR*SOD*S*CUGN*32*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE JOUDREVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.77921, + 49.289143 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN3212", + "ref": "FR*SOD*S*CUGN*32*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE JOUDREVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.199602, + 48.69315 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN1712", + "ref": "FR*SOD*S*CUGN*17*1*_*_", + "name": "MGN - PARKING MAIL DE LHORLOGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.199602, + 48.69315 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN1711", + "ref": "FR*SOD*S*CUGN*17*1*_*_", + "name": "MGN - PARKING MAIL DE LHORLOGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.142407, + 48.698059 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN1612", + "ref": "FR*SOD*S*CUGN*16*1*_*_", + "name": "MGN - PISCINE GENTILLY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.177347, + 48.687977 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN242", + "ref": "FR*SOD*S*CUGN*2*4*_*_", + "name": "MGN - PARKING REPUBLIQUE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.175165, + 48.690281 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN341", + "ref": "FR*SOD*S*CUGN*3*4*_*_", + "name": "MGN - PARKING THIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.177347, + 48.687977 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN232", + "ref": "FR*SOD*S*CUGN*2*3*_*_", + "name": "MGN - PARKING REPUBLIQUE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.177347, + 48.687977 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN231", + "ref": "FR*SOD*S*CUGN*2*3*_*_", + "name": "MGN - PARKING REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.177347, + 48.687977 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN221", + "ref": "FR*SOD*S*CUGN*2*2*_*_", + "name": "MGN - PARKING REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.177347, + 48.687977 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN211", + "ref": "FR*SOD*S*CUGN*2*1*_*_", + "name": "MGN - PARKING REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.177347, + 48.687977 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN241", + "ref": "FR*SOD*S*CUGN*2*4*_*_", + "name": "MGN - PARKING REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.177347, + 48.687977 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN251", + "ref": "FR*SOD*S*CUGN*2*5*_*_", + "name": "MGN - PARKING REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.177347, + 48.687977 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN252", + "ref": "FR*SOD*S*CUGN*2*5*_*_", + "name": "MGN - PARKING REPUBLIQUE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.177347, + 48.687977 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN222", + "ref": "FR*SOD*S*CUGN*2*2*_*_", + "name": "MGN - PARKING REPUBLIQUE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.175165, + 48.690281 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN312", + "ref": "FR*SOD*S*CUGN*3*1*_*_", + "name": "MGN - PARKING THIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.177347, + 48.687977 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN212", + "ref": "FR*SOD*S*CUGN*2*1*_*_", + "name": "MGN - PARKING REPUBLIQUE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17407, + 48.686047 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN122", + "ref": "FR*SOD*S*CUGN*1*2*_*_", + "name": "MGN - PARKING KENNEDY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17407, + 48.686047 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN121", + "ref": "FR*SOD*S*CUGN*1*2*_*_", + "name": "MGN - PARKING KENNEDY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17407, + 48.686047 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN112", + "ref": "FR*SOD*S*CUGN*1*1*_*_", + "name": "MGN - PARKING KENNEDY", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17407, + 48.686047 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN132", + "ref": "FR*SOD*S*CUGN*1*3*_*_", + "name": "MGN - PARKING KENNEDY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17407, + 48.686047 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN111", + "ref": "FR*SOD*S*CUGN*1*1*_*_", + "name": "MGN - PARKING KENNEDY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.17407, + 48.686047 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN131", + "ref": "FR*SOD*S*CUGN*1*3*_*_", + "name": "MGN - PARKING KENNEDY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.66004, + 48.45428 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8611", + "ref": "FR*SOD*S*CUGN*86*1*_*_", + "name": "CCTLB FONTENOY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.175165, + 48.690281 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN331", + "ref": "FR*SOD*S*CUGN*3*3*_*_", + "name": "MGN - PARKING THIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.175165, + 48.690281 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN322", + "ref": "FR*SOD*S*CUGN*3*2*_*_", + "name": "MGN - PARKING THIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.142407, + 48.698059 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN1611", + "ref": "FR*SOD*S*CUGN*16*1*_*_", + "name": "MGN - PISCINE GENTILLY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.209852, + 48.694763 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN822", + "ref": "FR*SOD*S*CUGN*8*2*_*_", + "name": "MGN - PARKING ASNL MARCEL PICOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22903, + 48.658569 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN1412", + "ref": "FR*SOD*S*CUGN*14*1*_*_", + "name": "MGN - PISCINE LANEUVEVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.22903, + 48.658569 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN1411", + "ref": "FR*SOD*S*CUGN*14*1*_*_", + "name": "MGN - PISCINE LANEUVEVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.250865, + 48.702171 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN1312", + "ref": "FR*SOD*S*CUGN*13*1*_*_", + "name": "MGN - VILLE DE PULNOY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.250865, + 48.702171 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN1311", + "ref": "FR*SOD*S*CUGN*13*1*_*_", + "name": "MGN - VILLE DE PULNOY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.252662, + 48.707504 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN1012", + "ref": "FR*SOD*S*CUGN*10*1*_*_", + "name": "MGN_CT PULNOY 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.252662, + 48.707504 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN1011", + "ref": "FR*SOD*S*CUGN*10*1*_*_", + "name": "MGN_CT PULNOY 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.180104, + 48.645809 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN911", + "ref": "FR*SOD*S*CUGN*9*1*_*_", + "name": "MGN - PARKING GARE DE HOUDEMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.180104, + 48.645809 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN912", + "ref": "FR*SOD*S*CUGN*9*1*_*_", + "name": "MGN - PARKING GARE DE HOUDEMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.209852, + 48.694763 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN821", + "ref": "FR*SOD*S*CUGN*8*2*_*_", + "name": "MGN - PARKING ASNL MARCEL PICOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.175165, + 48.690281 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN332", + "ref": "FR*SOD*S*CUGN*3*3*_*_", + "name": "MGN - PARKING THIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.225206, + 48.702408 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN611", + "ref": "FR*SOD*S*CUGN*6*1*_*_", + "name": "MGN_PARKING RELAIS MOUZIMPRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.225206, + 48.702408 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN612", + "ref": "FR*SOD*S*CUGN*6*1*_*_", + "name": "MGN_PARKING RELAIS MOUZIMPRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.196215, + 48.694878 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN511", + "ref": "FR*SOD*S*CUGN*5*1*_*_", + "name": "MGN - PARKING DEUX RIVES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.196215, + 48.694878 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN512", + "ref": "FR*SOD*S*CUGN*5*1*_*_", + "name": "MGN - PARKING DEUX RIVES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.173022, + 48.689762 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN411", + "ref": "FR*SOD*S*CUGN*4*1*_*_", + "name": "MGN - PARKING ST LEON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.173022, + 48.689762 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN412", + "ref": "FR*SOD*S*CUGN*4*1*_*_", + "name": "MGN - PARKING ST LEON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-08-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.175165, + 48.690281 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN321", + "ref": "FR*SOD*S*CUGN*3*2*_*_", + "name": "MGN - PARKING THIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.175165, + 48.690281 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN311", + "ref": "FR*SOD*S*CUGN*3*1*_*_", + "name": "MGN - PARKING THIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.092196, + 48.618467 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4112", + "ref": "FR*SOD*S*CUGN*41*1*_*_", + "name": "COMCOM MOSELLE ET MADON LAFILATURE PARKING NORD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.741943, + 49.293346 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN2512", + "ref": "FR*SOD*S*CUGN*25*1*_*_", + "name": "COEUR DU PAYS HAUT - VILLE DE BOULIGNY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-08-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.099536, + 48.614155 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4212", + "ref": "FR*SOD*S*CUGN*42*1*_*_", + "name": "COMCOM MOSELLE ET MADON - CENTRE AQUATIQUE NEUVES MAISONS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5098, + 48.4952 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6511", + "ref": "FR*SOD*S*CUGN*65*1*_*_", + "name": "PETR GERBEVILLER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.774703, + 48.480564 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7512", + "ref": "FR*SOD*S*CUGN*75*1*_*_", + "name": "CCTLB MERVILLER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.815633, + 48.480022 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7411", + "ref": "FR*SOD*S*CUGN*74*1*_*_", + "name": "CCTLB VACQUEVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.815633, + 48.480022 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7412", + "ref": "FR*SOD*S*CUGN*74*1*_*_", + "name": "CCTLB VACQUEVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.813043, + 48.466942 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7311", + "ref": "FR*SOD*S*CUGN*73*1*_*_", + "name": "CCTLB VENEY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.813043, + 48.466942 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7312", + "ref": "FR*SOD*S*CUGN*73*1*_*_", + "name": "CCTLB VENEY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.79138, + 48.419586 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7211", + "ref": "FR*SOD*S*CUGN*72*1*_*_", + "name": "CCTLB LACHAPELLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.79138, + 48.419586 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7212", + "ref": "FR*SOD*S*CUGN*72*1*_*_", + "name": "CCTLB LACHAPELLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.550392, + 48.463424 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7112", + "ref": "FR*SOD*S*CUGN*71*1*_*_", + "name": "CCTLB VALLOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.550392, + 48.463424 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7111", + "ref": "FR*SOD*S*CUGN*71*1*_*_", + "name": "CCTLB VALLOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.632634, + 48.519024 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7011", + "ref": "FR*SOD*S*CUGN*70*1*_*_", + "name": "CCTLB CHENEVIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.632634, + 48.519024 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7012", + "ref": "FR*SOD*S*CUGN*70*1*_*_", + "name": "CCTLB CHENEVIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.541528, + 48.529466 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6911", + "ref": "FR*SOD*S*CUGN*69*1*_*_", + "name": "CCTLB FRAIMBOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.541528, + 48.529466 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6912", + "ref": "FR*SOD*S*CUGN*69*1*_*_", + "name": "CCTLB FRAIMBOIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.650546, + 48.58364 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6811", + "ref": "FR*SOD*S*CUGN*68*1*_*_", + "name": "CCTLB MANONVILLER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.650546, + 48.58364 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6812", + "ref": "FR*SOD*S*CUGN*68*1*_*_", + "name": "CCTLB MANONVILLER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.499564, + 48.567491 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6711", + "ref": "FR*SOD*S*CUGN*67*1*_*_", + "name": "CCTLB HERIMENIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.499564, + 48.567491 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6712", + "ref": "FR*SOD*S*CUGN*67*1*_*_", + "name": "CCTLB HERIMENIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.439919, + 48.600135 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6612", + "ref": "FR*SOD*S*CUGN*66*1*_*_", + "name": "CCTLB VITRIMONT", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.439919, + 48.600135 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6611", + "ref": "FR*SOD*S*CUGN*66*1*_*_", + "name": "CCTLB VITRIMONT", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.774703, + 48.480564 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7511", + "ref": "FR*SOD*S*CUGN*75*1*_*_", + "name": "CCTLB MERVILLER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.529611, + 48.574109 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7612", + "ref": "FR*SOD*S*CUGN*76*1*_*_", + "name": "CCTLB MONCEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.529611, + 48.574109 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7611", + "ref": "FR*SOD*S*CUGN*76*1*_*_", + "name": "CCTLB MONCEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.451822, + 48.500395 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8212", + "ref": "FR*SOD*S*CUGN*82*1*_*_", + "name": "CCTLB FRANCONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.66004, + 48.45428 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8612", + "ref": "FR*SOD*S*CUGN*86*1*_*_", + "name": "CCTLB FONTENOY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.566207, + 48.444874 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8511", + "ref": "FR*SOD*S*CUGN*85*1*_*_", + "name": "CCTLB MAGNIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.566207, + 48.444874 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8512", + "ref": "FR*SOD*S*CUGN*85*1*_*_", + "name": "CCTLB MAGNIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.569545, + 48.483286 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8411", + "ref": "FR*SOD*S*CUGN*84*1*_*_", + "name": "CCTLB MOYEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.569545, + 48.483286 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8412", + "ref": "FR*SOD*S*CUGN*84*1*_*_", + "name": "CCTLB MOYEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.50141, + 48.499449 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8312", + "ref": "FR*SOD*S*CUGN*83*1*_*_", + "name": "CCTLB HAUDONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.50141, + 48.499449 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8311", + "ref": "FR*SOD*S*CUGN*83*1*_*_", + "name": "CCTLB HAUDONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.451822, + 48.500395 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8211", + "ref": "FR*SOD*S*CUGN*82*1*_*_", + "name": "CCTLB FRANCONVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.50647, + 48.584835 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8112", + "ref": "FR*SOD*S*CUGN*81*1*_*_", + "name": "CCTLB LUNEVILLE - PARKING BICHAT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.461325, + 48.533034 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7711", + "ref": "FR*SOD*S*CUGN*77*1*_*_", + "name": "CCTLB XERMAMENIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.50647, + 48.584835 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8111", + "ref": "FR*SOD*S*CUGN*81*1*_*_", + "name": "CCTLB LUNEVILLE - PARKING BICHAT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.622318, + 48.578039 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8011", + "ref": "FR*SOD*S*CUGN*80*1*_*_", + "name": "CCTLB THIEBAUMENIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.099536, + 48.614155 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4211", + "ref": "FR*SOD*S*CUGN*42*1*_*_", + "name": "COMCOM MOSELLE ET MADON - CENTRE AQUATIQUE NEUVES MAISONS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-05-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.673311, + 48.569703 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7912", + "ref": "FR*SOD*S*CUGN*79*1*_*_", + "name": "CCTLB BENAMENIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.673311, + 48.569703 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7911", + "ref": "FR*SOD*S*CUGN*79*1*_*_", + "name": "CCTLB BENAMENIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604733, + 48.539439 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7811", + "ref": "FR*SOD*S*CUGN*78*1*_*_", + "name": "CCTLB LARONXE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604733, + 48.539439 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7812", + "ref": "FR*SOD*S*CUGN*78*1*_*_", + "name": "CCTLB LARONXE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.461325, + 48.533034 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN7712", + "ref": "FR*SOD*S*CUGN*77*1*_*_", + "name": "CCTLB XERMAMENIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5098, + 48.4952 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6512", + "ref": "FR*SOD*S*CUGN*65*1*_*_", + "name": "PETR GERBEVILLER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.622318, + 48.578039 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN8012", + "ref": "FR*SOD*S*CUGN*80*1*_*_", + "name": "CCTLB THIEBAUMENIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4859, + 48.6548 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6412", + "ref": "FR*SOD*S*CUGN*64*1*_*_", + "name": "PETR EINVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.503267, + 48.59336 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN5212", + "ref": "FR*SOD*S*CUGN*52*1*_*_", + "name": "CCTLB LUNEVILLE - PISCINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.489549, + 48.591508 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN5111", + "ref": "FR*SOD*S*CUGN*51*1*_*_", + "name": "CCTLB LUNEVILLE - PARKING REMPART", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.489549, + 48.591508 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN5112", + "ref": "FR*SOD*S*CUGN*51*1*_*_", + "name": "CCTLB LUNEVILLE - PARKING REMPART", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.495991, + 48.592458 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN5012", + "ref": "FR*SOD*S*CUGN*50*1*_*_", + "name": "CCTLB LUNEVILLE - PARKING LHUILLIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.495991, + 48.592458 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN5011", + "ref": "FR*SOD*S*CUGN*50*1*_*_", + "name": "CCTLB LUNEVILLE - PARKING LHUILLIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.489047, + 48.598501 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4912", + "ref": "FR*SOD*S*CUGN*49*1*_*_", + "name": "CCTLB LUNEVILLE - PARKING CARMES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.489047, + 48.598501 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4911", + "ref": "FR*SOD*S*CUGN*49*1*_*_", + "name": "CCTLB LUNEVILLE - PARKING CARMES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.497805, + 48.588446 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4812", + "ref": "FR*SOD*S*CUGN*48*1*_*_", + "name": "CCTLB LUNEVILLE - PARKING SEMARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.497805, + 48.588446 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4811", + "ref": "FR*SOD*S*CUGN*48*1*_*_", + "name": "CCTLB LUNEVILLE - PARKING SEMARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.468064, + 48.562346 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4712", + "ref": "FR*SOD*S*CUGN*47*1*_*_", + "name": "CCTLB REHAINVILLIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.468064, + 48.562346 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4711", + "ref": "FR*SOD*S*CUGN*47*1*_*_", + "name": "CCTLB REHAINVILLIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.188514, + 48.684557 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4621", + "ref": "FR*SOD*S*CUGN*46*2*_*_", + "name": "MGN - PARKING PICHON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.188514, + 48.684557 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4622", + "ref": "FR*SOD*S*CUGN*46*2*_*_", + "name": "MGN - PARKING PICHON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.188514, + 48.684557 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4611", + "ref": "FR*SOD*S*CUGN*46*1*_*_", + "name": "MGN - PARKING PICHON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.183827, + 48.695024 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4412", + "ref": "FR*SOD*S*CUGN*44*1*_*_", + "name": "MGN - PARKING VAUDEMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.183827, + 48.695024 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4411", + "ref": "FR*SOD*S*CUGN*44*1*_*_", + "name": "MGN - PARKING VAUDEMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.185137, + 48.692368 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4311", + "ref": "FR*SOD*S*CUGN*43*1*_*_", + "name": "MGN - PARKING STANISLAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.185137, + 48.692368 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4322", + "ref": "FR*SOD*S*CUGN*43*2*_*_", + "name": "MGN - PARKING STANISLAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.185137, + 48.692368 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4312", + "ref": "FR*SOD*S*CUGN*43*1*_*_", + "name": "MGN - PARKING STANISLAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.185137, + 48.692368 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4321", + "ref": "FR*SOD*S*CUGN*43*2*_*_", + "name": "MGN - PARKING STANISLAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.503267, + 48.59336 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN5211", + "ref": "FR*SOD*S*CUGN*52*1*_*_", + "name": "CCTLB LUNEVILLE - PISCINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.188514, + 48.684557 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN4612", + "ref": "FR*SOD*S*CUGN*46*1*_*_", + "name": "MGN - PARKING PICHON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.946, + 48.5813 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6211", + "ref": "FR*SOD*S*CUGN*62*1*_*_", + "name": "PETR CIREY SUR VEZOUZE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8961, + 48.4972 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN5911", + "ref": "FR*SOD*S*CUGN*59*1*_*_", + "name": "PETR BADONVILLER", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.500003, + 48.591825 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN5311", + "ref": "FR*SOD*S*CUGN*53*1*_*_", + "name": "CCTLB LUNEVILLE - MEDIATHEQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3871, + 48.5571 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6311", + "ref": "FR*SOD*S*CUGN*63*1*_*_", + "name": "PETR DAMELEVIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3871, + 48.5571 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6312", + "ref": "FR*SOD*S*CUGN*63*1*_*_", + "name": "PETR DAMELEVIERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.946, + 48.5813 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6212", + "ref": "FR*SOD*S*CUGN*62*1*_*_", + "name": "PETR CIREY SUR VEZOUZE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4086, + 48.5553 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6111", + "ref": "FR*SOD*S*CUGN*61*1*_*_", + "name": "PETR BLAINVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4859, + 48.6548 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6411", + "ref": "FR*SOD*S*CUGN*64*1*_*_", + "name": "PETR EINVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8437, + 48.5895 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6012", + "ref": "FR*SOD*S*CUGN*60*1*_*_", + "name": "PETR BLAMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8437, + 48.5895 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6011", + "ref": "FR*SOD*S*CUGN*60*1*_*_", + "name": "PETR BLAMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.4086, + 48.5553 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN6112", + "ref": "FR*SOD*S*CUGN*61*1*_*_", + "name": "PETR BLAINVILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.694515, + 48.487852 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN5412", + "ref": "FR*SOD*S*CUGN*54*1*_*_", + "name": "CCTLB AZERAILLES - PARKING RICHEZ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.607995, + 48.531142 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN5712", + "ref": "FR*SOD*S*CUGN*57*1*_*_", + "name": "CCTLB ST CLEMENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.500003, + 48.591825 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN5312", + "ref": "FR*SOD*S*CUGN*53*1*_*_", + "name": "CCTLB LUNEVILLE - MEDIATHEQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.607995, + 48.531142 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN5711", + "ref": "FR*SOD*S*CUGN*57*1*_*_", + "name": "CCTLB ST CLEMENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.739727, + 48.443202 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN5612", + "ref": "FR*SOD*S*CUGN*56*1*_*_", + "name": "CCTLB BACCARAT - MEDIATHEQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.739727, + 48.443202 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN5611", + "ref": "FR*SOD*S*CUGN*56*1*_*_", + "name": "CCTLB BACCARAT - MEDIATHEQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.739262, + 48.447748 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN5811", + "ref": "FR*SOD*S*CUGN*58*1*_*_", + "name": "PETR BACCARAT - MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.694515, + 48.487852 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref:EU:EVSE": "FRM54PCUGN5411", + "ref": "FR*SOD*S*CUGN*54*1*_*_", + "name": "CCTLB AZERAILLES - PARKING RICHEZ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9187218809509474, + 49.875167008880716 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "328170113", + "email": "bornes.overchem@laposte.net", + "phone": "", + "network": "OVERCHEM", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P20151643", + "name": "Parking Overchem", + "capacity": "3", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-17", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'entreprise OVERCHEM", + "source:date": "2021-06-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9187218809509474, + 49.875167008880716 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "328170113", + "email": "bornes.overchem@laposte.net", + "phone": "", + "network": "OVERCHEM", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P20151604", + "name": "Parking Overchem", + "capacity": "3", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-17", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'entreprise OVERCHEM", + "source:date": "2021-06-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9187218809509474, + 49.875167008880716 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "328170113", + "email": "bornes.overchem@laposte.net", + "phone": "", + "network": "OVERCHEM", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P20151599", + "name": "Parking Overchem", + "capacity": "3", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-17", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'entreprise OVERCHEM", + "source:date": "2021-06-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.187305, + 49.248609 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE113", + "ref:EU:EVSE": "FRS27PVALREUILSAULES", + "ref": "", + "name": "900045", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-14", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.187305, + 49.248609 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE114", + "ref:EU:EVSE": "FRS27PVALREUILSAULES", + "ref": "", + "name": "900045", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-14", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219454, + 49.324463 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE111", + "ref:EU:EVSE": "FRS27PPITRESFRENIFRENEAUX", + "ref": "", + "name": "900044", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-14", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219454, + 49.324463 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE112", + "ref:EU:EVSE": "FRS27PPITRESFRENIFRENEAUX", + "ref": "", + "name": "900044", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-14", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53010287, + 49.0747562 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE116", + "ref:EU:EVSE": "FRS27PGIVERNYTOURISTIQUE1", + "ref": "", + "name": "900046", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-26", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.530102, + 49.0747562 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE115", + "ref:EU:EVSE": "FRS27PGIVERNYTOURISTIQUE1", + "ref": "", + "name": "900046", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-26", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.513936, + 49.351758 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE95", + "ref:EU:EVSE": "FRS27PPTAUDEMERGARE", + "ref": "", + "name": "900035", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-25", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.530081, + 49.074712 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE117", + "ref:EU:EVSE": "FRS27PGIVERNYTOURISTIQUE2", + "ref": "", + "name": "900047", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-26", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.530081, + 49.074712 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE118", + "ref:EU:EVSE": "FRS27PGIVERNYTOURISTIQUE2", + "ref": "", + "name": "900047", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-26", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.483316, + 49.09347 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE119", + "ref:EU:EVSE": "FRS27PVERNONPHAUGUSTE", + "ref": "", + "name": "900048", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-08", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.483316, + 49.09347 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE120", + "ref:EU:EVSE": "FRS27PVERNONPHAUGUSTE", + "ref": "", + "name": "900048", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-09", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49855, + 49.230692 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE109", + "ref:EU:EVSE": "FRS27PLIEUREYECOLE", + "ref": "", + "name": "900043", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-08", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929488, + 48.74251 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE121", + "ref:EU:EVSE": "FRS27PVERNEUILGARE", + "ref": "", + "name": "900049", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929488, + 48.74251 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE122", + "ref:EU:EVSE": "FRS27PVERNEUILGARE", + "ref": "", + "name": "900049", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49855, + 49.230692 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE110", + "ref:EU:EVSE": "FRS27PLIEUREYECOLE", + "ref": "", + "name": "900043", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-08", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.419905, + 49.062843 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE98", + "ref:EU:EVSE": "FRS27PDOUAINSMAREAJOUY", + "ref": "", + "name": "900036", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-13", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.356333, + 49.35987 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE108", + "ref:EU:EVSE": "FRS27PFLEURYANDREPUBLIQUE", + "ref": "", + "name": "900042", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-08", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.356333, + 49.35987 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE107", + "ref:EU:EVSE": "FRS27PFLEURYANDREPUBLIQUE", + "ref": "", + "name": "900042", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-08", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71108, + 48.824326 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE106", + "ref:EU:EVSE": "FRS27PRUGLESLIBERTE", + "ref": "", + "name": "900040", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-16", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71108, + 48.824326 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE105", + "ref:EU:EVSE": "FRS27PRUGLESLIBERTE", + "ref": "", + "name": "900040", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-16", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.584992, + 49.243902 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE104", + "ref:EU:EVSE": "FRS27PSTGEORGESVIEVREMAIRIE", + "ref": "", + "name": "900039", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-13", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.584992, + 49.243902 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE103", + "ref:EU:EVSE": "FRS27PSTGEORGESVIEVREMAIRIE", + "ref": "", + "name": "900039", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-13", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.913432, + 48.835912 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE102", + "ref:EU:EVSE": "FRS27PBRETEUILLAFITTE", + "ref": "", + "name": "900038", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-15", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.913432, + 48.835912 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE101", + "ref:EU:EVSE": "FRS27PBRETEUILLAFITTE", + "ref": "", + "name": "900038", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-15", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.485049, + 49.092874 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE100", + "ref:EU:EVSE": "FRS27PVERNONBARETTE", + "ref": "", + "name": "900037", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-27", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.485049, + 49.092874 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE99", + "ref:EU:EVSE": "FRS27PVERNONBARETTE", + "ref": "", + "name": "900037", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-27", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.419905, + 49.062843 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE97", + "ref:EU:EVSE": "FRS27PDOUAINSMAREAJOUY", + "ref": "", + "name": "900036", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-13", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.513936, + 49.351758 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE96", + "ref:EU:EVSE": "FRS27PPTAUDEMERGARE", + "ref": "", + "name": "900035", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-25", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659175, + 49.293963 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE124", + "ref:EU:EVSE": "FRS27PPHILBERTRISLEINTER", + "ref": "", + "name": "900050", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15578, + 49.30327 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE94", + "ref:EU:EVSE": "FRS27PPTARCHEABRIAND", + "ref": "", + "name": "900034", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-08", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659175, + 49.293963 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE123", + "ref:EU:EVSE": "FRS27PPHILBERTRISLEINTER", + "ref": "", + "name": "900050", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.273518, + 48.906015 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE146", + "ref:EU:EVSE": "FRS27PSTANDREEUREECOLE", + "ref": "", + "name": "900061", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-14", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.452088, + 49.101689 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE125", + "ref:EU:EVSE": "FRS27PSTMARCELDEGAULLE", + "ref": "", + "name": "900051", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-08", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34918, + 49.157966 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE142", + "ref:EU:EVSE": "FRS27PGAILLONCOVOITURAGE2", + "ref": "", + "name": "900059", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-13", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.197021, + 49.271924 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE92", + "ref:EU:EVSE": "FRS27PVALREUILSTADEOWENS", + "ref": "", + "name": "900033", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-14", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.951704, + 49.293602 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE155", + "ref:EU:EVSE": "FRS27PSTOUENTILLEULMAIRIE", + "ref": "", + "name": "900066", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.709275, + 49.108212 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE154", + "ref:EU:EVSE": "FRS27PSERQUIGNYCENTRE", + "ref": "", + "name": "900065", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-06", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.709275, + 49.108212 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE153", + "ref:EU:EVSE": "FRS27PSERQUIGNYCENTRE", + "ref": "", + "name": "900065", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-06", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.20844, + 49.25644 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE152", + "ref:EU:EVSE": "FRS27PVAUDREUILPAPAVOINE", + "ref": "", + "name": "900064", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.20844, + 49.25644 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE151", + "ref:EU:EVSE": "FRS27PVAUDREUILPAPAVOINE", + "ref": "", + "name": "900064", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.761226, + 49.276345 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE150", + "ref:EU:EVSE": "FRS27PGISORSINTERMARCHE", + "ref": "", + "name": "900063", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-23", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.761226, + 49.276345 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE149", + "ref:EU:EVSE": "FRS27PGISORSINTERMARCHE", + "ref": "", + "name": "900063", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-23", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.597432, + 49.089329 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE148", + "ref:EU:EVSE": "FRS27PBERNAYTRIBUNAL", + "ref": "", + "name": "900062", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-07", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.597432, + 49.089329 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE147", + "ref:EU:EVSE": "FRS27PBERNAYTRIBUNAL", + "ref": "", + "name": "900062", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-07", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.951704, + 49.293602 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE156", + "ref:EU:EVSE": "FRS27PSTOUENTILLEULMAIRIE", + "ref": "", + "name": "900066", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.273518, + 48.906015 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE145", + "ref:EU:EVSE": "FRS27PSTANDREEUREECOLE", + "ref": "", + "name": "900061", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-14", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.317617, + 49.139582 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE144", + "ref:EU:EVSE": "FRS27PSTAUBINGAILLONCOVOI1", + "ref": "", + "name": "900060", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.317617, + 49.139582 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE143", + "ref:EU:EVSE": "FRS27PSTAUBINGAILLONCOVOI1", + "ref": "", + "name": "900060", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34918, + 49.157966 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE141", + "ref:EU:EVSE": "FRS27PGAILLONCOVOITURAGE2", + "ref": "", + "name": "900059", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-13", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.452088, + 49.101689 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE126", + "ref:EU:EVSE": "FRS27PSTMARCELDEGAULLE", + "ref": "", + "name": "900051", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-08", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34918, + 49.157966 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE140", + "ref:EU:EVSE": "FRS27PIVRYBATAILLEBDGARE", + "ref": "", + "name": "900058", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34918, + 49.157966 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE139", + "ref:EU:EVSE": "FRS27PIVRYBATAILLEBDGARE", + "ref": "", + "name": "900058", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.150262, + 49.019161 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE138", + "ref:EU:EVSE": "FRS27PEVREUXGAMBETTA", + "ref": "", + "name": "900057", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-02", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.150262, + 49.019161 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE137", + "ref:EU:EVSE": "FRS27PEVREUXGAMBETTA", + "ref": "", + "name": "900057", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-02", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.153063, + 49.026011 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE136", + "ref:EU:EVSE": "FRS27PEVREUXSTLOUIS", + "ref": "", + "name": "900056", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-02", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.153063, + 49.026011 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE135", + "ref:EU:EVSE": "FRS27PEVREUXSTLOUIS", + "ref": "", + "name": "900056", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-02", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.605735, + 49.158001 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE134", + "ref:EU:EVSE": "FRS27PECOSSALLESPORTS", + "ref": "", + "name": "900055", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-25", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.605735, + 49.158001 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE133", + "ref:EU:EVSE": "FRS27PECOSSALLESPORTS", + "ref": "", + "name": "900055", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-25", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.485499, + 49.09016 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE132", + "ref:EU:EVSE": "FRS27PVERNONREPUBLIQUE", + "ref": "", + "name": "900054", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.485499, + 49.09016 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE131", + "ref:EU:EVSE": "FRS27PVERNONREPUBLIQUE", + "ref": "", + "name": "900054", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.420738, + 49.060499 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE130", + "ref:EU:EVSE": "FRS27PDOUAINSCOVOITURAGE", + "ref": "", + "name": "900053", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-13", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.420738, + 49.060499 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE129", + "ref:EU:EVSE": "FRS27PDOUAINSCOVOITURAGE", + "ref": "", + "name": "900053", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-13", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.605988, + 49.093379 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE128", + "ref:EU:EVSE": "FRS27PGASNYSALLEDESFETES", + "ref": "", + "name": "900052", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.605988, + 49.093379 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE127", + "ref:EU:EVSE": "FRS27PGASNYSALLEDESFETES", + "ref": "", + "name": "900052", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15578, + 49.30327 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE93", + "ref:EU:EVSE": "FRS27PPTARCHEABRIAND", + "ref": "", + "name": "900034", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-08", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.217491, + 49.27201 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE215", + "ref:EU:EVSE": "FRS27PVALREUIL4SAISONS", + "ref": "", + "name": "900095", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.197021, + 49.271924 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE91", + "ref:EU:EVSE": "FRS27PVALREUILSTADEOWENS", + "ref": "", + "name": "900033", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-14", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.712047, + 49.196627 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE41", + "ref:EU:EVSE": "FRS27PBRIONNEGARE", + "ref": "", + "name": "900008", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-23", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.382145, + 49.444076 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE55", + "ref:EU:EVSE": "FRS27PVASCOEUILGARE", + "ref": "", + "name": "900015", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-17", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.514153, + 49.35304 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE54", + "ref:EU:EVSE": "FRS27PPTAUDEMERANNEXEHOP", + "ref": "", + "name": "900014", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-02", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.514153, + 49.35304 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE53", + "ref:EU:EVSE": "FRS27PPTAUDEMERANNEXEHOP", + "ref": "", + "name": "900014", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-02", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.601421, + 49.090911 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE52", + "ref:EU:EVSE": "FRS27PBERNAYMARKET", + "ref": "", + "name": "900013", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-08", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.601421, + 49.090911 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE51", + "ref:EU:EVSE": "FRS27PBERNAYMARKET", + "ref": "", + "name": "900013", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-08", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.221452, + 49.197647 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE50", + "ref:EU:EVSE": "FRS27PHEUDEBOUVILLEECOPARC", + "ref": "", + "name": "900012", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.221452, + 49.197647 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE49", + "ref:EU:EVSE": "FRS27PHEUDEBOUVILLEECOPARC", + "ref": "", + "name": "900012", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.515229, + 49.35841 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE48", + "ref:EU:EVSE": "FRS27PPTAUDEMERMEDIATHE", + "ref": "", + "name": "900011", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-02", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.515229, + 49.35841 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE47", + "ref:EU:EVSE": "FRS27PPTAUDEMERMEDIATHE", + "ref": "", + "name": "900011", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-02", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45836, + 49.141649 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE46", + "ref:EU:EVSE": "FRS27PTHIBERVILLEMARKET", + "ref": "", + "name": "900010", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-23", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45836, + 49.141649 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE45", + "ref:EU:EVSE": "FRS27PTHIBERVILLEMARKET", + "ref": "", + "name": "900010", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-23", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.457547, + 49.135919 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE44", + "ref:EU:EVSE": "FRS27PTHIBERVILLEECOLES", + "ref": "", + "name": "900009", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-23", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.457547, + 49.135919 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE43", + "ref:EU:EVSE": "FRS27PTHIBERVILLEECOLES", + "ref": "", + "name": "900009", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-23", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.712047, + 49.196627 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE42", + "ref:EU:EVSE": "FRS27PBRIONNEGARE", + "ref": "", + "name": "900008", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-23", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.070287, + 48.86549 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE40", + "ref:EU:EVSE": "FRS27PDAMVILLEMARKET", + "ref": "", + "name": "900007", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-04", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.489306, + 49.092359 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE57", + "ref:EU:EVSE": "FRS27PVERNONVELODROME", + "ref": "", + "name": "900016", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.070287, + 48.86549 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE39", + "ref:EU:EVSE": "FRS27PDAMVILLEMARKET", + "ref": "", + "name": "900007", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-04", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.721077, + 49.19387 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE38", + "ref:EU:EVSE": "FRS27PBRIONNESFETES", + "ref": "", + "name": "900006", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-23", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.721077, + 49.19387 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE37", + "ref:EU:EVSE": "FRS27PBRIONNESFETES", + "ref": "", + "name": "900006", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-23", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.341375, + 49.164969 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE36", + "ref:EU:EVSE": "FRS27PGAILLONMAISONMEDIC", + "ref": "", + "name": "900005", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.341375, + 49.164969 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE35", + "ref:EU:EVSE": "FRS27PGAILLONMAISONMEDIC", + "ref": "", + "name": "900005", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.376949, + 49.24707 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE34", + "ref:EU:EVSE": "FRS27PCORMEILLESDEGAULLE", + "ref": "", + "name": "900004", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-26", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.376949, + 49.24707 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE33", + "ref:EU:EVSE": "FRS27PCORMEILLESDEGAULLE", + "ref": "", + "name": "900004", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-26", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.96432, + 48.83254 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE32", + "ref:EU:EVSE": "FRS27PCONDEITONMAIRIE", + "ref": "", + "name": "900003", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-15", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.96432, + 48.83254 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE31", + "ref:EU:EVSE": "FRS27PCONDEITONMAIRIE", + "ref": "", + "name": "900003", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-15", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.518561, + 49.35578 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE30", + "ref:EU:EVSE": "FRS27PPTAUDEMERTHEATRE", + "ref": "", + "name": "900002", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-02", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.518561, + 49.35578 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE29", + "ref:EU:EVSE": "FRS27PPTAUDEMERTHEATRE", + "ref": "", + "name": "900002", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-02", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.918076, + 48.836177 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE28", + "ref:EU:EVSE": "FRS27PBRETEUILHOUDOUARD", + "ref": "", + "name": "900001", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-15", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.673576, + 49.153238 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE158", + "ref:EU:EVSE": "FRS27PCARSIXMALBROUCK", + "ref": "", + "name": "900067", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-06", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.918076, + 48.836177 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE27", + "ref:EU:EVSE": "FRS27PBRETEUILHOUDOUARD", + "ref": "", + "name": "900001", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-02-15", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.382145, + 49.444076 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE56", + "ref:EU:EVSE": "FRS27PVASCOEUILGARE", + "ref": "", + "name": "900015", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-17", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.489306, + 49.092359 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE58", + "ref:EU:EVSE": "FRS27PVERNONVELODROME", + "ref": "", + "name": "900016", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06483, + 49.223315 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE90", + "ref:EU:EVSE": "FRS27PHAYEMALHERBEEGLISE", + "ref": "", + "name": "900032", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-21", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.156333, + 49.319537 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE75", + "ref:EU:EVSE": "FRS27PIGOVILLEPARIS", + "ref": "", + "name": "900025", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06483, + 49.223315 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE89", + "ref:EU:EVSE": "FRS27PHAYEMALHERBEEGLISE", + "ref": "", + "name": "900032", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-21", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.224898, + 49.195263 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE88", + "ref:EU:EVSE": "FRS27PHEUDEBOUVILLEECOPARC", + "ref": "", + "name": "900031", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-14", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.224898, + 49.195263 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE87", + "ref:EU:EVSE": "FRS27PHEUDEBOUVILLEECOPARC", + "ref": "", + "name": "900031", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-14", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.747974, + 48.907764 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE86", + "ref:EU:EVSE": "FRS27PNEUVELYRECENTRE", + "ref": "", + "name": "900030", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-16", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.747974, + 48.907764 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE85", + "ref:EU:EVSE": "FRS27PNEUVELYRECENTRE", + "ref": "", + "name": "900030", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-16", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.344569, + 49.34592 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE84", + "ref:EU:EVSE": "FRS27PBEUZEVILLECOQ", + "ref": "", + "name": "900029", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-25", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.344569, + 49.34592 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE83", + "ref:EU:EVSE": "FRS27PBEUZEVILLECOQ", + "ref": "", + "name": "900029", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-25", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.397276, + 49.417993 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE82", + "ref:EU:EVSE": "FRS27PCONTEVILLEPRESBYTERE", + "ref": "", + "name": "900028", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-26", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.397276, + 49.417993 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE81", + "ref:EU:EVSE": "FRS27PCONTEVILLEPRESBYTERE", + "ref": "", + "name": "900028", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-26", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.592528, + 49.088719 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE80", + "ref:EU:EVSE": "FRS27PBERNAYLAPOSTE", + "ref": "", + "name": "900027", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-08", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.592528, + 49.088719 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE79", + "ref:EU:EVSE": "FRS27PBERNAYLAPOSTE", + "ref": "", + "name": "900027", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-08", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.266925, + 49.335297 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE78", + "ref:EU:EVSE": "FRS27PROMILLYINTERMARCHE", + "ref": "", + "name": "900026", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-08", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.266925, + 49.335297 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE77", + "ref:EU:EVSE": "FRS27PROMILLYINTERMARCHE", + "ref": "", + "name": "900026", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-08", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.156333, + 49.319537 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE76", + "ref:EU:EVSE": "FRS27PIGOVILLEPARIS", + "ref": "", + "name": "900025", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41963, + 48.86551 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE74", + "ref:EU:EVSE": "FRS27PEZYEUREMAIRIE", + "ref": "", + "name": "900024", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-30", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.556744, + 49.419466 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE59", + "ref:EU:EVSE": "FRS27PFLEURYFORETCENTRE", + "ref": "", + "name": "900017", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-06", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41963, + 48.86551 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE73", + "ref:EU:EVSE": "FRS27PEZYEUREMAIRIE", + "ref": "", + "name": "900024", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-30", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.43984, + 49.27973 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE72", + "ref:EU:EVSE": "FRS27PEPAIGNESMAIRIE", + "ref": "", + "name": "900023", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-26", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.43984, + 49.27973 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE71", + "ref:EU:EVSE": "FRS27PEPAIGNESMAIRIE", + "ref": "", + "name": "900023", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-05-26", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.167038, + 49.213922 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE70", + "ref:EU:EVSE": "FRS27PLOUVIERSREPUBLIQUE", + "ref": "", + "name": "900022", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-08", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.167038, + 49.213922 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE69", + "ref:EU:EVSE": "FRS27PLOUVIERSREPUBLIQUE", + "ref": "", + "name": "900022", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-08", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.16539, + 49.21079 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE68", + "ref:EU:EVSE": "FRS27PLOUVIERSCHAMPSVILLE", + "ref": "", + "name": "900021", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.16539, + 49.21079 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE67", + "ref:EU:EVSE": "FRS27PLOUVIERSCHAMPSVILLE", + "ref": "", + "name": "900021", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17084, + 49.211 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE66", + "ref:EU:EVSE": "FRS27PLOUVIERSOFFTOURISME", + "ref": "", + "name": "900020", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17084, + 49.211 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE65", + "ref:EU:EVSE": "FRS27PLOUVIERSOFFTOURISME", + "ref": "", + "name": "900020", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.080285, + 48.871683 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE64", + "ref:EU:EVSE": "FRS27PDAMVILLESERVPUB", + "ref": "", + "name": "900019", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-04", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.080285, + 48.871683 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE63", + "ref:EU:EVSE": "FRS27PDAMVILLESERVPUB", + "ref": "", + "name": "900019", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-04", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.479175, + 49.399683 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE62", + "ref:EU:EVSE": "FRS27PLYONSFOURACHAUX", + "ref": "", + "name": "900018", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-17", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.479175, + 49.399683 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE61", + "ref:EU:EVSE": "FRS27PLYONSFOURACHAUX", + "ref": "", + "name": "900018", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-06-17", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.556744, + 49.419466 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE60", + "ref:EU:EVSE": "FRS27PFLEURYFORETCENTRE", + "ref": "", + "name": "900017", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-07-06", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.673576, + 49.153238 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE157", + "ref:EU:EVSE": "FRS27PCARSIXMALBROUCK", + "ref": "", + "name": "900067", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-06", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.731554, + 49.378795 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE207", + "ref:EU:EVSE": "FRS27PROUTOTMAIRIE", + "ref": "", + "name": "900091", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.596704, + 49.087252 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE159", + "ref:EU:EVSE": "FRS27PBERNAYDUBUS", + "ref": "", + "name": "900068", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-07", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.777517, + 49.278682 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE248", + "ref:EU:EVSE": "FRS27PGISORSMAIRIE", + "ref": "", + "name": "900111", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-23", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.401083, + 49.23773 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE262", + "ref:EU:EVSE": "FRS27PANDELYSPTANDELYS", + "ref": "", + "name": "900118", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.401083, + 49.23773 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE261", + "ref:EU:EVSE": "FRS27PANDELYSPTANDELYS", + "ref": "", + "name": "900118", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41371, + 49.245858 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE260", + "ref:EU:EVSE": "FRS27PANDELYSNPOUSSIN", + "ref": "", + "name": "900117", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41371, + 49.245858 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE259", + "ref:EU:EVSE": "FRS27PANDELYSNPOUSSIN", + "ref": "", + "name": "900117", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.057957, + 48.758803 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE258", + "ref:EU:EVSE": "FRS27PTILLIERESAVREMAIRIE", + "ref": "", + "name": "900116", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.057957, + 48.758803 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE257", + "ref:EU:EVSE": "FRS27PTILLIERESAVREMAIRIE", + "ref": "", + "name": "900116", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929944, + 48.738663 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE256", + "ref:EU:EVSE": "FRS27PVERNEUILAVRETOURISME", + "ref": "", + "name": "900115", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929944, + 48.738663 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE255", + "ref:EU:EVSE": "FRS27PVERNEUILAVRETOURISME", + "ref": "", + "name": "900115", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929616, + 48.74003 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE254", + "ref:EU:EVSE": "FRS27PVERNEUILAVREFOCH3", + "ref": "", + "name": "900114", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929616, + 48.74003 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE253", + "ref:EU:EVSE": "FRS27PVERNEUILAVREFOCH2", + "ref": "", + "name": "900114", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.928988, + 48.740485 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE252", + "ref:EU:EVSE": "FRS27PVERNEUILAVREFOCH1", + "ref": "", + "name": "900113", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.928988, + 48.740485 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE251", + "ref:EU:EVSE": "FRS27PVERNEUILAVREFOCH1", + "ref": "", + "name": "900113", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.807758, + 48.7707 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE250", + "ref:EU:EVSE": "FRS27PBOURTHSALLEFETES", + "ref": "", + "name": "900112", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.807758, + 48.7707 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE249", + "ref:EU:EVSE": "FRS27PBOURTHSALLEFETES", + "ref": "", + "name": "900112", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.777517, + 49.278682 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE247", + "ref:EU:EVSE": "FRS27PGISORSMAIRIE", + "ref": "", + "name": "900111", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-23", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03789, + 48.992145 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE231", + "ref:EU:EVSE": "FRS27PBONNEVILLELORRAINE", + "ref": "", + "name": "900103", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.612974, + 49.303396 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE246", + "ref:EU:EVSE": "FRS27PETREPAGNYCOMCOM", + "ref": "", + "name": "900110", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-24", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.612974, + 49.303396 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE245", + "ref:EU:EVSE": "FRS27PETREPAGNYCOMCOM", + "ref": "", + "name": "900110", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-24", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.546146, + 48.758803 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE244", + "ref:EU:EVSE": "FRS27PTOURNYCENTRE", + "ref": "", + "name": "900109", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.546146, + 49.185342 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE243", + "ref:EU:EVSE": "FRS27PTOURNYCENTRE", + "ref": "", + "name": "900109", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.224221, + 49.275684 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE242", + "ref:EU:EVSE": "FRS27PVALREUILGARE", + "ref": "", + "name": "900108", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.224221, + 49.275684 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE241", + "ref:EU:EVSE": "FRS27PVALREUILGARE", + "ref": "", + "name": "900108", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.941327, + 48.964562 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE240", + "ref:EU:EVSE": "FRS27PCONCHESLECYGNE", + "ref": "", + "name": "900107", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.941327, + 48.964562 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE239", + "ref:EU:EVSE": "FRS27PCONCHESLECYGNE", + "ref": "", + "name": "900107", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.941474, + 48.960693 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE238", + "ref:EU:EVSE": "FRS27PCONCHESDEGAULLE", + "ref": "", + "name": "900106", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.941474, + 48.960693 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE237", + "ref:EU:EVSE": "FRS27PCONCHESDEGAULLE", + "ref": "", + "name": "900106", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.942348, + 48.959934 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE236", + "ref:EU:EVSE": "FRS27PCONCHESPDOUMER", + "ref": "", + "name": "900105", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.942348, + 48.959934 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE235", + "ref:EU:EVSE": "FRS27PCONCHESPDOUMER", + "ref": "", + "name": "900105", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.206554, + 49.285445 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE234", + "ref:EU:EVSE": "FRS27PLERYBOURG", + "ref": "", + "name": "900104", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.206554, + 49.285445 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE233", + "ref:EU:EVSE": "FRS27PLERYBOURG", + "ref": "", + "name": "900104", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.157537, + 49.009109 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE263", + "ref:EU:EVSE": "FRS27PEVREUXCOMCOM", + "ref": "", + "name": "900119", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.157537, + 49.009109 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE264", + "ref:EU:EVSE": "FRS27PEVREUXCOMCOM", + "ref": "", + "name": "900119", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66299, + 48.946159 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE265", + "ref:EU:EVSE": "FRS27PBARREOUCHEMOMORT", + "ref": "", + "name": "900120", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66299, + 48.946159 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE266", + "ref:EU:EVSE": "FRS27PBARREOUCHEMOMORT", + "ref": "", + "name": "900120", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22331, + 49.231282 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE217", + "ref:EU:EVSE": "FRS27PSTPIERREVAUVRAYBOURG", + "ref": "", + "name": "900096", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.420204, + 49.246692 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE294", + "ref:EU:EVSE": "FRS27PANDELYSGENGAULLE", + "ref": "", + "name": "Z19Z1003", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.420204, + 49.246692 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE293", + "ref:EU:EVSE": "FRS27PANDELYSGENGAULLE", + "ref": "", + "name": "Z19Z1003", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.160346, + 49.024055 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE292", + "ref:EU:EVSE": "FRS27PEVREUXCOLLEGE", + "ref": "", + "name": "900131", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.160346, + 49.024055 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE291", + "ref:EU:EVSE": "FRS27PEVREUXCOLLEGE", + "ref": "", + "name": "900131", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.199589, + 48.770538 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE290", + "ref:EU:EVSE": "FRS27PNONANCOURTFRANPRIX", + "ref": "", + "name": "900130", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.199589, + 48.770538 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE289", + "ref:EU:EVSE": "FRS27PNONANCOURTFRANPRIX", + "ref": "", + "name": "900130", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.937233, + 48.962291 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE288", + "ref:EU:EVSE": "FRS27PCONCHESGARE2", + "ref": "", + "name": "801004", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.937233, + 48.962291 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE287", + "ref:EU:EVSE": "FRS27PCONCHESGARE2", + "ref": "", + "name": "801004", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.937161, + 48.962303 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE286", + "ref:EU:EVSE": "FRS27PCONCHESGARE1", + "ref": "", + "name": "801003", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.937161, + 48.962303 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE285", + "ref:EU:EVSE": "FRS27PCONCHESGARE1", + "ref": "", + "name": "801003", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34918, + 49.157966 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE284", + "ref:EU:EVSE": "FRS27PGAILLONCOVOITURAGE1", + "ref": "", + "name": "4000xx", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34918, + 49.157966 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE283", + "ref:EU:EVSE": "FRS27PGAILLONCOVOITURAGE1", + "ref": "", + "name": "4000xx", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91013, + 49.150593 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE282", + "ref:EU:EVSE": "FRS27PNEUBOURGTOURISME", + "ref": "", + "name": "900129", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-11-30", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91013, + 49.150593 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE281", + "ref:EU:EVSE": "FRS27PNEUBOURGTOURISME", + "ref": "", + "name": "900129", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-11-29", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.934779, + 49.103352 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE280", + "ref:EU:EVSE": "FRS27PSTECOLOMBECOMCENTRE", + "ref": "", + "name": "900128", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-06", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.934779, + 49.103352 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE279", + "ref:EU:EVSE": "FRS27PSTECOLOMBECOMCENTRE", + "ref": "", + "name": "900128", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-06", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.531146, + 49.008319 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE278", + "ref:EU:EVSE": "FRS27PBROGLIEPOSTE", + "ref": "", + "name": "900127", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-30", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.531146, + 49.008319 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE277", + "ref:EU:EVSE": "FRS27PBROGLIEPOSTE", + "ref": "", + "name": "900127", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-30", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.480734, + 48.938426 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE276", + "ref:EU:EVSE": "FRS27PMONTREUILMAISONMEDI", + "ref": "", + "name": "900126", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-30", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.480734, + 48.938426 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE275", + "ref:EU:EVSE": "FRS27PMONTREUILMAISONMEDI", + "ref": "", + "name": "900126", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-30", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.596704, + 49.087252 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE160", + "ref:EU:EVSE": "FRS27PBERNAYDUBUS", + "ref": "", + "name": "900068", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-09-07", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4435619, + 48.9256673 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE273", + "ref:EU:EVSE": "FRS27PBUEILGARE", + "ref": "", + "name": "900125", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.123976, + 49.017093 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE272", + "ref:EU:EVSE": "FRS27PEVREUXBPOUGET", + "ref": "", + "name": "900123", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.123976, + 49.017093 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE271", + "ref:EU:EVSE": "FRS27PEVREUXBPOUGET", + "ref": "", + "name": "900123", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34989, + 49.163115 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE270", + "ref:EU:EVSE": "FRS27PGAILLONAQUAVAL", + "ref": "", + "name": "900122", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34989, + 49.163115 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE269", + "ref:EU:EVSE": "FRS27PGAILLONAQUAVAL", + "ref": "", + "name": "900122", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.16539, + 49.21079 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE268", + "ref:EU:EVSE": "FRS27PGAILLONPDOUMER", + "ref": "", + "name": "900121", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.16539, + 49.21079 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE267", + "ref:EU:EVSE": "FRS27PGAILLONPDOUMER", + "ref": "", + "name": "900121", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03789, + 48.992145 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE232", + "ref:EU:EVSE": "FRS27PBONNEVILLELORRAINE", + "ref": "", + "name": "900103", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4435619, + 48.9256673 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE274", + "ref:EU:EVSE": "FRS27PBUEILGARE", + "ref": "", + "name": "900125", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.962192, + 49.248376 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE230", + "ref:EU:EVSE": "FRS27PSTPIERREFLEURSINTER", + "ref": "", + "name": "900102", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.781506, + 48.97842 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE175", + "ref:EU:EVSE": "FRS27PAJOUBARRE", + "ref": "", + "name": "900076", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.123975, + 49.017093 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE189", + "ref:EU:EVSE": "FRS27PEVREUXROCHETTE", + "ref": "", + "name": "900083", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.352788, + 49.174165 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE188", + "ref:EU:EVSE": "FRS27PAUBEVOYEGARE", + "ref": "", + "name": "900082", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.352788, + 49.174165 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE187", + "ref:EU:EVSE": "FRS27PAUBEVOYEGARE", + "ref": "", + "name": "900082", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.162429, + 49.047854 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE186", + "ref:EU:EVSE": "FRS27PGRAVIGNYMAIRIE", + "ref": "", + "name": "900081", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-11-18", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.162429, + 49.047854 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE185", + "ref:EU:EVSE": "FRS27PGRAVIGNYMAIRIE", + "ref": "", + "name": "900081", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-11-18", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.157598, + 49.026481 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE184", + "ref:EU:EVSE": "FRS27PEVREUXREPUBLIQUE", + "ref": "", + "name": "900080", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-02", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.157598, + 49.026481 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE183", + "ref:EU:EVSE": "FRS27PEVREUXREPUBLIQUE", + "ref": "", + "name": "900080", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-02", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.136316, + 49.030257 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE182", + "ref:EU:EVSE": "FRS27PEVREUXPIPOTS", + "ref": "", + "name": "900079", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-02", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.136316, + 49.030257 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE181", + "ref:EU:EVSE": "FRS27PEVREUXPIPOTS", + "ref": "", + "name": "900079", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-02", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17346, + 49.025102 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE180", + "ref:EU:EVSE": "FRS27PEVREUXVIOLETTES", + "ref": "", + "name": "900078", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17346, + 49.025102 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE179", + "ref:EU:EVSE": "FRS27PEVREUXVIOLETTES", + "ref": "", + "name": "900078", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.19461, + 48.778359 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE178", + "ref:EU:EVSE": "FRS27PMADELEINONANCECOLES", + "ref": "", + "name": "900077", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-05", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.19461, + 48.778359 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE177", + "ref:EU:EVSE": "FRS27PMADELEINONANCECOLES", + "ref": "", + "name": "900077", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-12-05", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.781506, + 48.97842 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE176", + "ref:EU:EVSE": "FRS27PAJOUBARRE", + "ref": "", + "name": "900076", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.704694, + 49.011757 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE174", + "ref:EU:EVSE": "FRS27PBEAUMESNILMAIRIE", + "ref": "", + "name": "900075", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.179005, + 49.320468 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE191", + "ref:EU:EVSE": "FRS27PALIZAYSABLONS", + "ref": "", + "name": "900084", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.704694, + 49.011757 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE173", + "ref:EU:EVSE": "FRS27PBEAUMESNILMAIRIE", + "ref": "", + "name": "900075", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40543, + 49.048847 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE172", + "ref:EU:EVSE": "FRS27PSTGERMAINCAMPEGLISE", + "ref": "", + "name": "900074", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40543, + 49.048847 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE171", + "ref:EU:EVSE": "FRS27PSTGERMAINCAMPEGLISE", + "ref": "", + "name": "900074", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.382675, + 49.013925 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE170", + "ref:EU:EVSE": "FRS27PPACYSUREUREGARE", + "ref": "", + "name": "900073", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.382675, + 49.013925 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE169", + "ref:EU:EVSE": "FRS27PPACYSUREUREGARE", + "ref": "", + "name": "900073", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.612249, + 49.23479 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE168", + "ref:EU:EVSE": "FRS27PAUTHEVERNESDERLY", + "ref": "", + "name": "900072", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-17", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.612249, + 49.23479 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE167", + "ref:EU:EVSE": "FRS27PAUTHEVERNESDERLY", + "ref": "", + "name": "900072", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-17", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.208506, + 49.25786 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE166", + "ref:EU:EVSE": "FRS27PVAUDREUILPHARMAPARC", + "ref": "", + "name": "900071", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.208506, + 49.25786 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE165", + "ref:EU:EVSE": "FRS27PVAUDREUILPHARMAPARC", + "ref": "", + "name": "900071", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.975642, + 49.260914 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE164", + "ref:EU:EVSE": "FRS27PTHUITANGERCOVOITURE", + "ref": "", + "name": "900070", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.975642, + 49.260914 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE163", + "ref:EU:EVSE": "FRS27PTHUITANGERCOVOITURE", + "ref": "", + "name": "900070", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.775525, + 49.080689 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE162", + "ref:EU:EVSE": "FRS27PBEAUMONTROGECARNOT", + "ref": "", + "name": "900069", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-17", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.775525, + 49.080689 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE161", + "ref:EU:EVSE": "FRS27PBEAUMONTROGECARNOT", + "ref": "", + "name": "900069", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-10-17", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.962192, + 49.248376 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE229", + "ref:EU:EVSE": "FRS27PSTPIERREFLEURSINTER", + "ref": "", + "name": "900102", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.123975, + 49.017093 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE190", + "ref:EU:EVSE": "FRS27PEVREUXROCHETTE", + "ref": "", + "name": "900083", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.217491, + 49.27201 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE216", + "ref:EU:EVSE": "FRS27PVALREUIL4SAISONS", + "ref": "", + "name": "900095", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.179005, + 49.320468 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE192", + "ref:EU:EVSE": "FRS27PALIZAYSABLONS", + "ref": "", + "name": "900084", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.478814, + 49.29076 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE211", + "ref:EU:EVSE": "FRS27PBOISEMONTROUEN", + "ref": "", + "name": "900093", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1993813, + 48.7702458 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE228", + "ref:EU:EVSE": "FRS27PNONANCOURTALSACELOR", + "ref": "", + "name": "900101", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.931972, + 48.890669 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE193", + "ref:EU:EVSE": "FRS27PCHESNEMARES", + "ref": "", + "name": "900085", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1993813, + 48.7702458 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE227", + "ref:EU:EVSE": "FRS27PNONANCOURTALSACELOR", + "ref": "", + "name": "900101", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.939257, + 49.266036 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE226", + "ref:EU:EVSE": "FRS27PTHUITSIGNOLSUPERETTE", + "ref": "", + "name": "900100", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.939257, + 49.266036 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE225", + "ref:EU:EVSE": "FRS27PTHUITSIGNOLSUPERETTE", + "ref": "", + "name": "900100", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.622742, + 49.390881 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE224", + "ref:EU:EVSE": "FRS27PBOURNEVILLETOURISME", + "ref": "", + "name": "900099", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.622742, + 49.390881 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE223", + "ref:EU:EVSE": "FRS27PBOURNEVILLETOURISME", + "ref": "", + "name": "900099", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.817924, + 49.35421 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE222", + "ref:EU:EVSE": "FRS27PBOURGACHARDMAIRIE", + "ref": "", + "name": "900098", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.817924, + 49.35421 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE221", + "ref:EU:EVSE": "FRS27PBOURGACHARDMAIRIE", + "ref": "", + "name": "900098", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.120187, + 49.140422 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE219", + "ref:EU:EVSE": "FRS27PHONDOUVILLEMOULIN", + "ref": "", + "name": "900097", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22331, + 49.231282 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE218", + "ref:EU:EVSE": "FRS27PSTPIERREVAUVRAYBOURG", + "ref": "", + "name": "900096", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.719094, + 49.233117 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE214", + "ref:EU:EVSE": "FRS27PBECHELLOUINANSELME", + "ref": "", + "name": "900094", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.719094, + 49.233117 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE213", + "ref:EU:EVSE": "FRS27PBECHELLOUINANSELME", + "ref": "", + "name": "900094", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.478814, + 49.29076 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE212", + "ref:EU:EVSE": "FRS27PBOISEMONTROUEN", + "ref": "", + "name": "900093", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.120187, + 49.140422 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE220", + "ref:EU:EVSE": "FRS27PHONDOUVILLEMOULIN", + "ref": "", + "name": "900097", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.922083, + 49.290671 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE210", + "ref:EU:EVSE": "FRS27PBOSCROGERROUMOISCEN", + "ref": "", + "name": "900092", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3175225, + 49.1394202 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE195", + "ref:EU:EVSE": "FRS27PSTAUBINGAILLONCOVOI2", + "ref": "", + "name": "900086", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.731554, + 49.378795 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE208", + "ref:EU:EVSE": "FRS27PROUTOTMAIRIE", + "ref": "", + "name": "900091", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.525036, + 49.467521 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE206", + "ref:EU:EVSE": "FRS27PQUILLEBEUFCOMCOM", + "ref": "", + "name": "900090", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.525036, + 49.467521 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE205", + "ref:EU:EVSE": "FRS27PQUILLEBEUFCOMCOM", + "ref": "", + "name": "900090", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.931972, + 48.890669 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE194", + "ref:EU:EVSE": "FRS27PCHESNEMARES", + "ref": "", + "name": "900085", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.874672, + 49.299502 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE204", + "ref:EU:EVSE": "FRS27PBOURTHEROULDEMAIRIE", + "ref": "", + "name": "900089", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.874672, + 49.299502 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE203", + "ref:EU:EVSE": "FRS27PBOURTHEROULDEMAIRIE", + "ref": "", + "name": "900089", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.087785, + 49.006973 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE202", + "ref:EU:EVSE": "FRS27PSTSEBASTIENMAIRIE", + "ref": "", + "name": "900088", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-11-18", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.087785, + 49.006973 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE201", + "ref:EU:EVSE": "FRS27PSTSEBASTIENMAIRIE", + "ref": "", + "name": "900088", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2016-11-18", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.128076, + 49.021025 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE200", + "ref:EU:EVSE": "FRS27PEVREUXJBOUIN", + "ref": "", + "name": "900087", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.128076, + 49.021025 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE199", + "ref:EU:EVSE": "FRS27PEVREUXJBOUIN", + "ref": "", + "name": "900087", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3175225, + 49.1394202 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE196", + "ref:EU:EVSE": "FRS27PSTAUBINGAILLONCOVOI2", + "ref": "", + "name": "900086", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.922083, + 49.290671 + ] + }, + "properties": { + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE209", + "ref:EU:EVSE": "FRS27PBOSCROGERROUMOISCEN", + "ref": "", + "name": "900092", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-01-01", + "note": "", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.49, + 45.67 + ] + }, + "properties": { + "operator": "AQUA LOISIRS", + "owner:ref:FR:SIREN": "443891056", + "email": "loisirs.acqua@orange.fr", + "phone": "0474808989", + "network": "AQUA LOISIRS", + "ref:EU:EVSE": "Non concerné", + "ref": "01F9VBZH9QQ087R6AHJGRZCS32", + "name": "aqua loisirs", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-02", + "note": "", + "source:date": "2021-07-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.65387764005573, + 45.630872003921496 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211704416", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "5qLx81vZcVOGEK2t", + "name": "La Poste Tesson", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-01", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6519199081168063, + 45.63648835730188 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211704416", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "vJFchjZUzBsZL49F", + "name": "Maison de Santé", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-01", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7065045195933709, + 46.215996601383644 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "902039528", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "XyY44xK0AHa1J7UY", + "name": "La Chabanaise", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-02", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3599526215855915, + 45.695593468232566 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "521763912", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "17ZCKMgZhiYo711M", + "name": "Auberge Dupuytren", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-02", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1783557363561291, + 45.66573707254592 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "352001069", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "I2b54Cy8vKqo9WEj", + "name": "Manuchar 1", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-02", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1783557363561291, + 45.66573707254592 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "352001069", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "I2b54Cy8vKqo9WEj", + "name": "Manuchar 2", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-02", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8102565057215653, + 45.649438783139665 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211702329", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "0DVclECBKGtnYiS6", + "name": "Meursac Salle Multi-activités", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4212213179604373, + 45.77393371624896 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211700729", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "xGfWIPAZlN7u8UJo", + "name": "Burie - Place de la Mairie", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3987681673214218, + 45.81890347412459 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "343865937", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "fi7vdCwDjFxo33hy", + "name": "Domaine Tesseron", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "FALSE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5041785690753205, + 45.82190628951172 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211701479", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "6mZpoAbF5sDDkgX3", + "name": "Mairie Ecoyeux", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3599526215855915, + 45.695593468232566 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "521763912", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "UwSoXsOi5pgnBv6v", + "name": "Auberge Dupuytren - République", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-02", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3599166241627683, + 45.69499463422594 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "521763912", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "4CCKnFCY8U2uylb5", + "name": "Gîtes Dupuytren - 53 Av République", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-02", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2790864928722, + 45.913211767345 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "520236522", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "cy4MFwyC09BkgYyU", + "name": "Camping Les Floralies", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-02", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62630408112066, + 45.747334026242 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "833922693", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "VAgkznsuvjrdxV0O", + "name": "Crédit Agricole Borne 1", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-02", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62625527113986, + 45.747376507523 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "833922693", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "VAgkznsuvjrdxV0O", + "name": "Crédit Agricole Borne Intérieur Vélo", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-02", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2774393191812, + 45.914137353729 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "520236522", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "lsMbBg9W69bdLlqE", + "name": "Camping les Luisettes", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-02", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6153411820000854, + 45.71501882195449 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211701792", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "8c0GQLN1K6qkMWE1", + "name": "Les Gonds - Eglise - Borne 1", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-01", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6153411820000854, + 45.71501882195449 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211701792", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "8c0GQLN1K6qkMWE1", + "name": "Les Gonds - Eglise - Borne 2", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-01", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5041850689776732, + 45.821925401611395 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211701479", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "6mZpoAbF5sDDkgX3", + "name": "Mairie d'Ecoyeux", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.300627496124425, + 45.90195661936574 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "828245407", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "pfm6SBqsE3WmWTx8", + "name": "Camping Les Flots Atlantique", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.300627496124425, + 45.90195661936574 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "828245407", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "pfm6SBqsE3WmWTx8", + "name": "Camping Les Flots Atlantique", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7085456582039972, + 45.766535193830144 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211703368", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "fBNB5cBnAGB5nFxY", + "name": "St Georges des Coteaux Rue Grand Rue", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.275995989093295, + 45.911275008898585 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "381032770", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "SH5hm2ErazrPtOSE", + "name": "Camping le Héron - Dolus d'Oleron (17)", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5025035630102878, + 45.64778425286908 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211702428", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "4N63AAlnrEhcABRu", + "name": "Montils - La poste", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62630694441728, + 45.74751971845 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "833922693", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "VAgkznsuvjrdxV0O", + "name": "Crédit Agricole Borne 2", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-02", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6868473485416821, + 45.63849905619226 + ] + }, + "properties": { + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "353634504", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref:EU:EVSE": "Non concerné", + "ref": "EbH6KCYFHUQJyn6U", + "name": "Gîte Grande Champagne - 17460 Rioux", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "TRUE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "Télécharger l'application e-nergyze", + "source:date": "2022-07-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.61, + 48.85 + ] + }, + "properties": { + "operator": "Ispo france", + "owner:ref:FR:SIREN": "799732292", + "email": "info@ispo-group.com", + "phone": "0390556161", + "network": "Réseau de recharge ISPO FRANCE", + "ref:EU:EVSE": "Non concerné", + "ref": "01FA86M5NKT9P6C71SQE853AXK", + "name": "ISPO France", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-21", + "note": "Recharge uniquement pendant les horaires d'ouverture. Frais d'accès de 5€ + tarif à l'heure. Toute heure commencée est due.", + "source:date": "2021-07-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.61, + 48.85 + ] + }, + "properties": { + "operator": "Ispo france", + "owner:ref:FR:SIREN": "799732292", + "email": "info@ispo-group.com", + "phone": "0390556161", + "network": "Réseau de recharge ISPO FRANCE", + "ref:EU:EVSE": "Non concerné", + "ref": "01FA86M5NKT9P6C71SQE853AXK", + "name": "ISPO France", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-21", + "note": "Recharge uniquement pendant les horaires d'ouverture. Frais d'accès de 5€ + tarif à l'heure. Toute heure commencée est due.", + "source:date": "2021-07-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.61, + 48.85 + ] + }, + "properties": { + "operator": "Ispo france", + "owner:ref:FR:SIREN": "799732292", + "email": "info@ispo-group.com", + "phone": "0390556161", + "network": "Réseau de recharge ISPO FRANCE", + "ref:EU:EVSE": "Non concerné", + "ref": "01FA86M5NKT9P6C71SQE853AXK", + "name": "ISPO France", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-21", + "note": "Recharge uniquement pendant les horaires d'ouverture. Frais d'accès de 5€ + tarif à l'heure. Toute heure commencée est due.", + "source:date": "2021-07-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.84, + 48.68 + ] + }, + "properties": { + "operator": "ENTREPRISE ADAM", + "owner:ref:FR:SIREN": "329021760", + "email": "sas.adam@wanadoo.fr", + "phone": "0388962573", + "network": "ENTREPRISE ADAM", + "ref:EU:EVSE": "Non concerné", + "ref": "01FGHJ43ZN752K332T9ZQ06WE7", + "name": "ADAM CHAUFFAGE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-01", + "note": "", + "source:date": "2021-09-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07595, + 49.09977 + ] + }, + "properties": { + "operator": "EDFRAY", + "owner:ref:FR:SIREN": "390478139", + "email": "aurelien@evasion-moto.fr", + "phone": "0683805728", + "network": "BH CAR", + "ref:EU:EVSE": "Non concerné", + "ref": "01FADS2AAVMMH12VRNGNNYWZP2", + "name": "St. Lo", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-06", + "note": "Recharge disponible uniquement pendant les heures d'ouverture", + "source:date": "2021-07-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5397406236702427, + 48.80759678252247 + ] + }, + "properties": { + "operator": "Daltoner Granville", + "owner:ref:FR:SIREN": "504961152", + "email": "denis.lot@daltoner.fr", + "phone": "0608471175", + "network": "Daltoner Granville", + "ref:EU:EVSE": "Non concerné", + "ref": "01FNH8RBENK0CX64NN9C35KG0C", + "name": "Daltoner Granville", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-09", + "note": "Point de recharge uniquement disponible aux horaires d'ouverture", + "source:date": "2021-12-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56, + 46.74 + ] + }, + "properties": { + "operator": "le Relais", + "owner:ref:FR:SIREN": "810219006", + "email": "contact@lerelaisdelaperle.fr", + "phone": "0384259552", + "network": "le relais", + "ref:EU:EVSE": "Non concerné", + "ref": "87e0fb5a-e591-11eb-ba80-0242ac130004", + "name": "le relais", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Réservé PMR", + "start_date": "2021-05-01", + "note": "", + "source:date": "2021-07-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535747, + 50.937502 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59499001", + "ref": "", + "name": "Rexpoede - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-09-18", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371528, + 50.731996 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59497001", + "ref": "", + "name": "Renescure -Pôle Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-15", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.485827, + 50.821335 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59282001", + "ref": "", + "name": "Hardifort - Parking Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-06", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.838199, + 50.7047 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59431001", + "ref": "", + "name": "Nieppe - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-15", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5112803, + 50.6950541 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59416002", + "ref": "", + "name": "Morbecque - Rue Heerstraete", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-03", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.57223, + 50.683307 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59416001", + "ref": "", + "name": "Morbecque - La motte aux bois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-18", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.439028, + 50.854477 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59338001", + "ref": "", + "name": "Ledringhem - Parking du souvenir ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-08-19", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.579956, + 50.978392 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59309001", + "ref": "", + "name": "Hondschoote - Rue de Cassel ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-19", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58696, + 50.98144 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59309002", + "ref": "", + "name": "Hondschoote - Place du Général de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2037, + 50.85458 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59307001", + "ref": "", + "name": "Holque - Route de l'église", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-02", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3338, + 50.803349 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59119001", + "ref": "", + "name": "Buysscheure -Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-09-18", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.482586, + 50.802375 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59135001", + "ref": "", + "name": "Cassel -Place du Général Vandamme", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-01-31", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218332, + 50.906956 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59130001", + "ref": "", + "name": "Cappelle-Brouck -Médiathèque", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-08-21", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.485248, + 50.673799 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59578001", + "ref": "", + "name": "Steenbecque - Place Jean Ruyssen", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-07", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292657, + 50.953773 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59110001", + "ref": "", + "name": "Brouckerque -Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-10-01", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.327481, + 50.865679 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59089001", + "ref": "", + "name": "Bollezeele -Rue de l'Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-08-06", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.438116, + 50.662418 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59087001", + "ref": "", + "name": "Boeseghem - Rue De La Chapelle ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-15", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.435338, + 50.662605 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59087002", + "ref": "", + "name": "Boeseghem - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-15", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.403771613, + 50.692044196 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59084001", + "ref": "", + "name": "Blaringhem - Rue Pierre Dhedin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-12", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.410667, + 50.964838 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59082001", + "ref": "", + "name": "Bierne - Place du Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-02-18", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.732645211404826, + 50.74009832050729 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14E59043002", + "ref": "", + "name": "Bailleul - Rue du collège", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-23", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.735218, + 50.729624 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14E59043001", + "ref": "", + "name": "Bailleul - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2018-04-19", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.411181453, + 50.8310526 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59018001", + "ref": "", + "name": "Arneke - Rue de la mairie ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-10", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.554092, + 50.776769 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59546001", + "ref": "", + "name": "Saint-Sylvestre-Cappel -Place du Village", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-20", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212967, + 50.833367 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59647001", + "ref": "", + "name": "Watten -Maison Médicale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-03-11", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.588377, + 50.808909 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59580001", + "ref": "", + "name": "Steenvoorde - Parking Stade", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-12-07", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.780455, + 50.700998 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59581001", + "ref": "", + "name": "Steenwerck - Rue de Nieppe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-12-05", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255397, + 50.83198 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14E59664001", + "ref": "", + "name": "Wulverdinghe - Rue principale", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-07", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466566, + 50.651226 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14E59590001", + "ref": "", + "name": "Thiennes - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51196, + 50.838903 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14E59453001", + "ref": "", + "name": "Oudezeele - Rue de la Forge", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.671506, + 50.659622 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14E59423001", + "ref": "", + "name": "Neuf-Berquin - Rue Charles Capelle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-26", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.538045, + 50.723262 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH08P59295011", + "ref": "", + "name": "Hazebrouck - Rue André Biebuyck", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-08", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53162, + 50.724579 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH08E59295010", + "ref": "", + "name": "Hazebrouck - Rue Warein", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-26", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.543917, + 50.717873 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH08E59295009", + "ref": "", + "name": "Hazebrouck - Rue du Milieu", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-26", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.534213, + 50.720173 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH08E592950081", + "ref": "", + "name": "Hazebrouck - Rue François Dominique Depoorter", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-26", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54217, + 50.72863 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH08E59295007", + "ref": "", + "name": "Hazebrouck - Rue Notre Dame", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-26", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.533966, + 50.722557 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH08P59295006", + "ref": "", + "name": "Hazebrouck - Rue du Queux Saint Hilaire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-26", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.532066, + 50.714951 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH08P59295005", + "ref": "", + "name": "Hazebrouck - Rue d’Aire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-26", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.544553, + 50.71188 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH08E59295004", + "ref": "", + "name": "Hazebrouck - Place Jean Jaurès", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-26", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.539142, + 50.720173 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH08E59295009", + "ref": "", + "name": "Hazebrouck - Rue du Pont", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-26", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.530926, + 50.732689 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH08E59295002", + "ref": "", + "name": "Hazebrouck - Rue du Maréchal Foch", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-26", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.596091, + 50.778912 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14E59189001", + "ref": "", + "name": "Eecke - Rue de Godewaersvelde", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.69124819564, + 50.79972162723 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14E59086001", + "ref": "", + "name": "Boeschepe - Grand Place", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-07", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.460441, + 50.78763 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14E59054001", + "ref": "", + "name": "Bavinchove - Gare", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-04", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.460441, + 50.78763 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14E59054001", + "ref": "", + "name": "Bavinchove - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-04", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.46799, + 50.880845 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59663001", + "ref": "", + "name": "Wormhout -Place de Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-30", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.467585, + 50.883458 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59663002", + "ref": "", + "name": "Wormhout - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-04-30", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20967, + 50.831585 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59647002", + "ref": "", + "name": "Watten - Place du Rivage", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-09-01", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552611, + 50.73027 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH08E59295001", + "ref": "", + "name": "Hazebrouck - Rue de la Plaine", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-11-26", + "note": "Accès par Badge", + "source:date": "2023-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.719626, + 50.763358 + ] + }, + "properties": { + "operator": "BOUYGUES ENERGIES ET SERVICES", + "owner:ref:FR:SIREN": "200036895", + "email": "support@passpasselectrique.fr", + "phone": "0 805 02 14 80", + "network": "Pass Pass Electrique", + "ref:EU:EVSE": "FRH14P59535001", + "ref": "", + "name": "Saint-Jans-Cappel - Zone de loisir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2019-10-14", + "note": "Accès par Badge", + "source:date": "2022-08-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8223994, + 45.891181 + ] + }, + "properties": { + "operator": "Electriox Groupe", + "owner:ref:FR:SIREN": "753202431", + "email": "groupe@electriox.fr", + "phone": "0472104595", + "network": "Electriox Groupe Station IRVE", + "ref:EU:EVSE": "Non concerné", + "ref": "01F8FTNQGRJP9Q0HNT5NS7X46E", + "name": "Electriox Groupe Genay", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-15", + "note": "Recharges réservées aux clients, aux fournisseurs, aux partenaires , aux personnels d'Electriox Groupe - Demander un badge à l'accueil.", + "source:date": "2021-06-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.287592, + 48.862725 + ] + }, + "properties": { + "operator": "La jabotte", + "owner:ref:FR:SIREN": "440591782", + "email": "info@jabotte.com", + "phone": "", + "network": "La jabotte", + "ref:EU:EVSE": "Non concerné", + "ref": "01F52RT5T5C8MK3VG25J93RKKE", + "name": "La jabotte", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-03", + "note": "", + "source:date": "2021-05-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.918739, + 44.618314 + ] + }, + "properties": { + "operator": "SAS Miodis", + "owner:ref:FR:SIREN": "810800268", + "email": "lucas.ribelles@scaso.fr", + "phone": "0556827837", + "network": "Leclerc Mios", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "Non concerné", + "name": "Leclerc Mios", + "capacity": "1", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-22", + "note": "", + "source:date": "2021-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.918739, + 44.618314 + ] + }, + "properties": { + "operator": "SAS Miodis", + "owner:ref:FR:SIREN": "810800268", + "email": "lucas.ribelles@scaso.fr", + "phone": "0556827837", + "network": "Leclerc Mios", + "ref:EU:EVSE": "FRLE2PZYW3BNYUDP", + "ref": "Non concerné", + "name": "Leclerc Mios", + "capacity": "1", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-22", + "note": "", + "source:date": "2021-08-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.052629, + 43.829884 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "313029928", + "email": "contact@pha.fr", + "phone": "", + "network": "PHA", + "ref:EU:EVSE": "Non concerné", + "ref": "01F5DSBVJZZC31QQFGBD9V703S", + "name": "Parking PHA", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-03", + "note": "Recharge destinée uniquement au personnel et aux clients aux horaire d'ouverture de l'entreprise", + "source:date": "2021-05-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.041201, + 43.815137 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "305206211", + "email": "direction@gambus.fr", + "phone": "", + "network": "GAMBUS", + "ref:EU:EVSE": "Non concerné", + "ref": "01F53GETJK68P92WZKVHQB410M", + "name": "PARKING GAMBUS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "Recharge destinée uniquement au personnel et aux clients aux horaire d'ouverture de l'entreprise", + "source:date": "2021-05-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0655256, + 43.8355022 + ] + }, + "properties": { + "operator": "ALU GRANON", + "owner:ref:FR:SIREN": "323119099", + "email": "cedric.granon@wanadoo.fr", + "phone": "", + "network": "ALU GRANON", + "ref:EU:EVSE": "Non concerné", + "ref": "01F8CNY449635PQP70P14WCRVE", + "name": "PARKING ALU GRANON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-16", + "note": "Recharge disponible uniquement pour les salariés et clients durant les heures d'ouverture", + "source:date": "2021-06-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.14269, + 43.88528 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "450528526", + "email": "SLANTELME@GMAIL.COM", + "phone": "0608639398", + "network": "LE TEMPS DES SECRETS", + "ref:EU:EVSE": "Non concerné", + "ref": "Non concerné", + "name": "Parking le temps des secrets", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-09", + "note": "OUVERT AUX HORAIRES D'ACCUEIL", + "source:date": "2021-08-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.287592, + 48.862725 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "350404380", + "email": "contact@metallerieperrut.fr", + "phone": "0490765190", + "network": "METALLERIE PERRUT", + "ref:EU:EVSE": "Non concerné", + "ref": "Non concerné", + "name": "Parking SAS PERRUT", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-30", + "note": "ouvert aux horaires d'accueil", + "source:date": "2021-09-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref:EU:EVSE": "FREVBP2005139", + "ref": "Non concerné", + "name": "BBJ Mazères", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-10-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.220807, + 44.205605 + ] + }, + "properties": { + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558090404", + "network": "Leclerc Mimizan", + "ref:EU:EVSE": "FREVBP1928044", + "ref": "Non concerné", + "name": "Leclerc Mimizan", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.220807, + 44.205605 + ] + }, + "properties": { + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558090404", + "network": "Leclerc Mimizan", + "ref:EU:EVSE": "FREVBP1924110", + "ref": "Non concerné", + "name": "Leclerc Mimizan", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.220807, + 44.205605 + ] + }, + "properties": { + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558090404", + "network": "Leclerc Mimizan", + "ref:EU:EVSE": "FREVBP2020551", + "ref": "Non concerné", + "name": "Leclerc Mimizan", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.220807, + 44.205605 + ] + }, + "properties": { + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558090404", + "network": "Leclerc Mimizan", + "ref:EU:EVSE": "FREVBP2012399", + "ref": "Non concerné", + "name": "Leclerc Mimizan", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.926388, + 44.20274 + ] + }, + "properties": { + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558830083", + "network": "Leclerc Express Labouheyre", + "ref:EU:EVSE": "FREVBP1936003", + "ref": "Non concerné", + "name": "Leclerc Express Labouheyre", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-11", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.926388, + 44.20274 + ] + }, + "properties": { + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558830083", + "network": "Leclerc Express Labouheyre", + "ref:EU:EVSE": "FREVBP1936003", + "ref": "Non concerné", + "name": "Leclerc Express Labouheyre", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-11", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.926388, + 44.20274 + ] + }, + "properties": { + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558830083", + "network": "Leclerc Express Labouheyre", + "ref:EU:EVSE": "FREVBP1936003", + "ref": "Non concerné", + "name": "Leclerc Express Labouheyre", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-11", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.926388, + 44.20274 + ] + }, + "properties": { + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558830083", + "network": "Leclerc Express Labouheyre", + "ref:EU:EVSE": "FREVBP1936003", + "ref": "Non concerné", + "name": "Leclerc Express Labouheyre", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-11", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.926388, + 44.20274 + ] + }, + "properties": { + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558830083", + "network": "Leclerc Express Labouheyre", + "ref:EU:EVSE": "FREVBP1936003", + "ref": "Non concerné", + "name": "Leclerc Express Labouheyre", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-11", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.926388, + 44.20274 + ] + }, + "properties": { + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558830083", + "network": "Leclerc Express Labouheyre", + "ref:EU:EVSE": "FREVBP1936003", + "ref": "Non concerné", + "name": "Leclerc Express Labouheyre", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-11", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.926388, + 44.20274 + ] + }, + "properties": { + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558830083", + "network": "Leclerc Express Labouheyre", + "ref:EU:EVSE": "FREVBP1936003", + "ref": "Non concerné", + "name": "Leclerc Express Labouheyre", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-11", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.926388, + 44.20274 + ] + }, + "properties": { + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558830083", + "network": "Leclerc Express Labouheyre", + "ref:EU:EVSE": "FREVBP1936003", + "ref": "Non concerné", + "name": "Leclerc Express Labouheyre", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-02-11", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil", + "source:date": "2021-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.254093, + 44.54156 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "franck.pothin@scaso.fr", + "phone": "0557980830", + "network": "Centre Auto Leclerc Langon", + "ref:EU:EVSE": "FREVBP2022841", + "ref": "Non concerné", + "name": "Centre Auto Leclerc Langon", + "capacity": "1", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-16", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du centre Auto, Carte de recharge à demander à l'accueil", + "source:date": "2021-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.254093, + 44.54156 + ] + }, + "properties": { + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "franck.pothin@scaso.fr", + "phone": "0557980830", + "network": "Centre Auto Leclerc Langon", + "ref:EU:EVSE": "FREVBP2022841", + "ref": "Non concerné", + "name": "Centre Auto Leclerc Langon", + "capacity": "1", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-16", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du centre Auto, Carte de recharge à demander à l'accueil", + "source:date": "2021-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.843358, + 44.924358 + ] + }, + "properties": { + "operator": "BIARS DISTRIBUTION", + "owner:ref:FR:SIREN": "341055705", + "email": "stephane.henry@scaso.fr", + "phone": "0565102200", + "network": "Leclerc Biars", + "ref:EU:EVSE": "FRLE2PEGZ64DHCH9", + "ref": "Non concerné", + "name": "Leclerc Biars", + "capacity": "1", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-05", + "note": "", + "source:date": "2021-08-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.843358, + 44.924358 + ] + }, + "properties": { + "operator": "BIARS DISTRIBUTION", + "owner:ref:FR:SIREN": "341055705", + "email": "stephane.henry@scaso.fr", + "phone": "0565102200", + "network": "Leclerc Biars", + "ref:EU:EVSE": "FRLE2PEGZ64DHCH9", + "ref": "Non concerné", + "name": "Leclerc Biars", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-05", + "note": "", + "source:date": "2021-08-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.843358, + 44.924358 + ] + }, + "properties": { + "operator": "BIARS DISTRIBUTION", + "owner:ref:FR:SIREN": "341055705", + "email": "stephane.henry@scaso.fr", + "phone": "0565102200", + "network": "Leclerc Biars", + "ref:EU:EVSE": "FRLE2PEGZ64DHCH9", + "ref": "Non concerné", + "name": "Leclerc Biars", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-05", + "note": "", + "source:date": "2021-08-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.843358, + 44.924358 + ] + }, + "properties": { + "operator": "BIARS DISTRIBUTION", + "owner:ref:FR:SIREN": "341055705", + "email": "stephane.henry@scaso.fr", + "phone": "0565102200", + "network": "Leclerc Biars", + "ref:EU:EVSE": "FRLE2PEGZ64DHCH9", + "ref": "Non concerné", + "name": "Leclerc Biars", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-05", + "note": "", + "source:date": "2021-08-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5108443014957409, + 44.80124139894823 + ] + }, + "properties": { + "operator": "270 AGENCY", + "owner:ref:FR:SIREN": "538041732", + "email": "contact@270agency.com", + "phone": "0547745020", + "network": "270 AGENCY", + "ref:EU:EVSE": "FREVBP2110201", + "ref": "Non concerné", + "name": "270 AGENCY", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-12", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture, Carte de recharge à demander", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5108443014957409, + 44.80124139894823 + ] + }, + "properties": { + "operator": "270 AGENCY", + "owner:ref:FR:SIREN": "538041732", + "email": "contact@270agency.com", + "phone": "0547745020", + "network": "270 AGENCY", + "ref:EU:EVSE": "FREVBP2110201", + "ref": "Non concerné", + "name": "270 AGENCY", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-12", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture, Carte de recharge à demander", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref:EU:EVSE": "FREVBP2211073", + "ref": "Non concerné", + "name": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "capacity": "12", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "Recharge uniquement disponible sur les heures d'ouverture du site", + "source:date": "2023-03-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref:EU:EVSE": "FREVBP2211073", + "ref": "Non concerné", + "name": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "capacity": "12", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "Recharge uniquement disponible sur les heures d'ouverture du site", + "source:date": "2023-03-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref:EU:EVSE": "FREVBP2211073", + "ref": "Non concerné", + "name": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "capacity": "12", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "Recharge uniquement disponible sur les heures d'ouverture du site", + "source:date": "2023-03-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref:EU:EVSE": "FREVBP2211073", + "ref": "Non concerné", + "name": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "capacity": "12", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "Recharge uniquement disponible sur les heures d'ouverture du site", + "source:date": "2023-03-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref:EU:EVSE": "FREVBP2211073", + "ref": "Non concerné", + "name": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "capacity": "12", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "Recharge uniquement disponible sur les heures d'ouverture du site", + "source:date": "2023-03-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref:EU:EVSE": "FREVBP2211073", + "ref": "Non concerné", + "name": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "capacity": "12", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "Recharge uniquement disponible sur les heures d'ouverture du site", + "source:date": "2023-03-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref:EU:EVSE": "FREVBP2211073", + "ref": "Non concerné", + "name": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "capacity": "12", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "Recharge uniquement disponible sur les heures d'ouverture du site", + "source:date": "2023-03-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref:EU:EVSE": "FREVBP2211073", + "ref": "Non concerné", + "name": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "capacity": "12", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "Recharge uniquement disponible sur les heures d'ouverture du site", + "source:date": "2023-03-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref:EU:EVSE": "FREVBP2211073", + "ref": "Non concerné", + "name": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "capacity": "12", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "Recharge uniquement disponible sur les heures d'ouverture du site", + "source:date": "2023-03-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref:EU:EVSE": "FREVBP2211073", + "ref": "Non concerné", + "name": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "capacity": "12", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "Recharge uniquement disponible sur les heures d'ouverture du site", + "source:date": "2023-03-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref:EU:EVSE": "FREVBP2211073", + "ref": "Non concerné", + "name": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "capacity": "12", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "Recharge uniquement disponible sur les heures d'ouverture du site", + "source:date": "2023-03-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref:EU:EVSE": "FREVBP2211073", + "ref": "Non concerné", + "name": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "capacity": "12", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "FALSE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-10-28", + "note": "Recharge uniquement disponible sur les heures d'ouverture du site", + "source:date": "2023-03-03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.567508599999986, + 48.52013390000001 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "973203284", + "email": "tente.bornes@laposte.net", + "phone": "", + "network": "TENTE", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1929472", + "name": "Parking Tente", + "capacity": "7", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-07", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'entreprise TENTE", + "source:date": "2021-05-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.567508599999986, + 48.52013390000001 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "973203284", + "email": "tente.bornes@laposte.net", + "phone": "", + "network": "TENTE", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1929472", + "name": "Parking Tente", + "capacity": "7", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-07", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'entreprise TENTE", + "source:date": "2021-05-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.567508599999986, + 48.52013390000001 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "973203284", + "email": "tente.bornes@laposte.net", + "phone": "", + "network": "TENTE", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1929472", + "name": "Parking Tente", + "capacity": "7", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-07", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'entreprise TENTE", + "source:date": "2021-05-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.567508599999986, + 48.52013390000001 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "973203284", + "email": "tente.bornes@laposte.net", + "phone": "", + "network": "TENTE", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1929472", + "name": "Parking Tente", + "capacity": "7", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-07", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'entreprise TENTE", + "source:date": "2021-05-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.567508599999986, + 48.52013390000001 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "973203284", + "email": "tente.bornes@laposte.net", + "phone": "", + "network": "TENTE", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1929472", + "name": "Parking Tente", + "capacity": "7", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-07", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'entreprise TENTE", + "source:date": "2021-05-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.567508599999986, + 48.52013390000001 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "973203284", + "email": "tente.bornes@laposte.net", + "phone": "", + "network": "TENTE", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2020524", + "name": "Parking Tente", + "capacity": "7", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-07", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'entreprise TENTE", + "source:date": "2021-05-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.567508599999986, + 48.52013390000001 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "973203284", + "email": "tente.bornes@laposte.net", + "phone": "", + "network": "TENTE", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1950568", + "name": "Parking Tente", + "capacity": "7", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-05-07", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'entreprise TENTE", + "source:date": "2021-05-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.299371, + 48.165438 + ] + }, + "properties": { + "operator": "Ville de Riquewihr", + "owner:ref:FR:SIREN": "216802777", + "email": "mairie@riquewihr.fr", + "phone": "0389490910", + "network": "Borne IRVE Riquewihr", + "ref:EU:EVSE": "Non concerné", + "ref": "01F6P97EN7T7KCMJ44GDQMYTN9", + "name": "Avenue Méquillet", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-10", + "note": "", + "source:date": "2021-05-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.294091, + 48.167334 + ] + }, + "properties": { + "operator": "Ville de Riquewihr", + "owner:ref:FR:SIREN": "216802777", + "email": "mairie@riquewihr.fr", + "phone": "0389490910", + "network": "Borne IRVE Riquewihr", + "ref:EU:EVSE": "Non concerné", + "ref": "01F6P8C71C4B2XV55S4T3C552Z", + "name": "Place des Charpentiers", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-10", + "note": "", + "source:date": "2021-05-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.403327536228296, + 46.08350074095008 + ] + }, + "properties": { + "operator": "SAS Lujasy", + "owner:ref:FR:SIREN": "838439180", + "email": "lujasy74@gmail.com", + "phone": "0450970432", + "network": "Intermarché", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Intermarché Bonneville", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-10", + "note": "Badge RFID à demander à l'accueil du magasin - aux heures d'houverture", + "source:date": "2021-06-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8401120000162585, + 46.26399717713806 + ] + }, + "properties": { + "operator": "Hôtel MACCHI", + "owner:ref:FR:SIREN": "302330246", + "email": "contact@hotelmacchi.com", + "phone": "0450732412", + "network": "Hôtel MACCHI", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Hôtel MACCHI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-02", + "note": "Badge RFID à demander à l'accueil de l'Hôtel", + "source:date": "2021-06-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.04449, + 49.114638 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "418031977", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Hotel saint walfrid", + "ref:EU:EVSE": "Non concerné", + "ref": "01F7QQZ82AF36GR8935SM9H2SQ", + "name": "Hotel Saint Walfrid", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-01", + "note": "", + "source:date": "2021-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1315408, + 50.7396999 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "0361626161", + "network": "DACIA RONCQ", + "ref:EU:EVSE": "Non concerné", + "ref": "01FHWQ8RECFE028717E5Y5123P", + "name": "DACIA RONCQ", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-10", + "note": "", + "source:date": "2021-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02, + 43.85 + ] + }, + "properties": { + "operator": "Prodici", + "owner:ref:FR:SIREN": "848946000", + "email": "lahalledesproducteurs@gmail.com", + "phone": "04 90 74 19 71", + "network": "la halle des producteurs", + "ref:EU:EVSE": "Non concerné", + "ref": "ef41eefd-d7cd-49b0-95e2-e42df95067c2", + "name": "La Halle des Producteurs 84300 Cavaillon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "", + "source:date": "2022-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.04, + 44.24 + ] + }, + "properties": { + "operator": "REVE", + "owner:ref:FR:SIREN": "904902186", + "email": "contact@reve-mobilite.com", + "phone": "0490620673", + "network": "REVE", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1950759", + "name": "Hôtel la Bastide de Vaison", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-16", + "note": "Station ouverte 24/7 sur le parking de l'hôtel - connexion 2,40€ + 0,30€/kW - Paiement carte bancaire via application EVBOX charge", + "source:date": "2022-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2, + 43.86 + ] + }, + "properties": { + "operator": "REVE", + "owner:ref:FR:SIREN": "904712833", + "email": "contact@reve-mobilite.com", + "phone": "0490620673", + "network": "REVE", + "ref:EU:EVSE": "Non concerné", + "ref": "4b05a334-d486-4efa-8d17-53cc7bf6c802", + "name": "Cabinet Dentaire du Calavon - Beaumettes", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "Recharge uniquement disponible durant les horaires d'ouverture du cabinet", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9294755000000183, + 49.939609399999995 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "519644280", + "email": "contact@techoffice.fr", + "phone": "", + "network": "TECHOFFICE", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-DC439800001-B", + "name": "Parking TECHOFFICE", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-09", + "note": "", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9294755000000183, + 49.939609399999995 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "519644280", + "email": "contact@techoffice.fr", + "phone": "", + "network": "TECHOFFICE", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-DC439800001", + "name": "Parking TECHOFFICE", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-09", + "note": "", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0903127000000001, + 44.868051799999996 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "850830043", + "email": "contact@hotel-du-porge.com", + "phone": "", + "network": "HOTEL DU PORGE", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P21011574", + "name": "Parking HOTEL DU PORGE", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0903127000000001, + 44.868051799999996 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "850830043", + "email": "contact@hotel-du-porge.com", + "phone": "", + "network": "HOTEL DU PORGE", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P21011574", + "name": "Parking HOTEL DU PORGE", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7548354193520386, + 48.125067030488154 + ] + }, + "properties": { + "operator": "NW IECharge", + "owner:ref:FR:SIREN": "898270251", + "email": "contact@nw-joules.fr", + "phone": "184605641", + "network": "IECharge France", + "ref:EU:EVSE": "FRIENS35353A", + "ref": "", + "name": "Vezin-le-Coquet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-19", + "note": "", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7548354193520386, + 48.125067030488154 + ] + }, + "properties": { + "operator": "NW IECharge", + "owner:ref:FR:SIREN": "898270251", + "email": "contact@nw-joules.fr", + "phone": "184605641", + "network": "IECharge France", + "ref:EU:EVSE": "FRIENS35353A", + "ref": "", + "name": "Vezin-le-Coquet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-19", + "note": "", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7548354193520386, + 48.125067030488154 + ] + }, + "properties": { + "operator": "NW IECharge", + "owner:ref:FR:SIREN": "898270251", + "email": "contact@nw-joules.fr", + "phone": "184605641", + "network": "IECharge France", + "ref:EU:EVSE": "FRIENS35353A", + "ref": "", + "name": "Vezin-le-Coquet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-19", + "note": "", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7548354193520386, + 48.125067030488154 + ] + }, + "properties": { + "operator": "NW IECharge", + "owner:ref:FR:SIREN": "898270251", + "email": "contact@nw-joules.fr", + "phone": "184605641", + "network": "IECharge France", + "ref:EU:EVSE": "FRIENS35353A", + "ref": "", + "name": "Vezin-le-Coquet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-19", + "note": "", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7548354193520386, + 48.125067030488154 + ] + }, + "properties": { + "operator": "NW IECharge", + "owner:ref:FR:SIREN": "898270251", + "email": "contact@nw-joules.fr", + "phone": "184605641", + "network": "IECharge France", + "ref:EU:EVSE": "FRIENS35353A", + "ref": "", + "name": "Vezin-le-Coquet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-19", + "note": "", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.84, + 43.57 + ] + }, + "properties": { + "operator": "Green Diffusion", + "owner:ref:FR:SIREN": "788660116", + "email": "b.magnier34@gmail.com", + "phone": "0625311024", + "network": "Borne de recharge Green Diffusion", + "ref:EU:EVSE": "Non concerné", + "ref": "269ecab2-053a-4ddc-8014-4fe697de6575", + "name": "Borne de recharge Green diffusion", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-25", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'enseigne", + "source:date": "2023-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.61, + 16.2 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "819761883", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696901897", + "network": "ETS POMMEZ", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E38642, FR*EZD*E38643", + "name": "ETS POMMEZ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-15", + "note": "", + "source:date": "2022-09-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.84, + 43.57 + ] + }, + "properties": { + "operator": "SCI NOKI", + "owner:ref:FR:SIREN": "824263024", + "email": "b.magnier34@gmail.com", + "phone": "0625311024", + "network": "Borne de recharge SCI noki", + "ref:EU:EVSE": "Non concerné", + "ref": "6decf4b8-3df0-462d-a1d6-efd5f0205801", + "name": "Borne de recharge SCI noki", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-25", + "note": "", + "source:date": "2022-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53, + 43.49 + ] + }, + "properties": { + "operator": "CHARRIERE DISTRIBUTION", + "owner:ref:FR:SIREN": "398695585", + "email": "staff@charriere-distribution.com", + "phone": " 04 42 29 84 29", + "network": "CHARRIERE DISTRIBUTION Meyrueil", + "ref:EU:EVSE": "Non concerné", + "ref": "20ea95e8-34da-49b6-8b26-6d3014bcdf77", + "name": "Borne Charriere Meyrueil", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-03", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'enseigne", + "source:date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.71, + 44.26 + ] + }, + "properties": { + "operator": "ATELIERS PROVENCE LOISIRS", + "owner:ref:FR:SIREN": "523942498", + "email": "aploisirs84@orange.fr", + "phone": "0490403816", + "network": "ATELIERS PROVENCE LOISIRS", + "ref:EU:EVSE": "Non concerné", + "ref": "0c8de5ae-6f74-4e5c-be01-a973eec643f3", + "name": "Borne wallbox Atelier provence loisirs,Mondragon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-08", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'enseigne", + "source:date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43, + 43.39 + ] + }, + "properties": { + "operator": "H alu concept", + "owner:ref:FR:SIREN": "907465017", + "email": "h.aluconcept@gmail.com", + "phone": "0762989875", + "network": "H alu concept", + "ref:EU:EVSE": "Non concerné", + "ref": "88d84b13-12ae-459d-be60-d0c8be6977f3", + "name": "H alu Saint Tibéry", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'enseigne", + "source:date": "2022-08-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8, + 43.71 + ] + }, + "properties": { + "operator": "SCI Lounapiou", + "owner:ref:FR:SIREN": "844956771", + "email": "isa.pluta@orange.fr", + "phone": "0661485975", + "network": "SCI Lounapiou", + "ref:EU:EVSE": "Non concerné", + "ref": "8d950c44-4813-44df-bbf8-ecb35ffc2859", + "name": "Lounapiou, Maussane-les-alpilles", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-30", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'enseigne", + "source:date": "2022-06-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.657888301758055, + 41.908579309038004 + ] + }, + "properties": { + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "812328128", + "email": "oscar@electromaps.com", + "phone": "34 931.574.967", + "network": "Résidence les calanques", + "ref:EU:EVSE": "FR000012308585", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "name": "Résidence les calanques", + "capacity": "8", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-15", + "note": "PAIEMENT PAR QR CODE", + "source:date": "2022-04-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.06751, + 14.608331 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "334174190", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Socanparc - Lafcadio", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E28312, FR*EZD*E28313", + "name": "Socanparc - Lafcadio", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-27", + "note": "Abonnement Ezdrive", + "source:date": "2022-04-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.02208, + 14.813607 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "842796641", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Koud'pouss", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E66784, FR*EZD*E66785", + "name": "Koud'pouss", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-05", + "note": "Abonnement Ezdrive", + "source:date": "2022-04-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.00386, + 14.607184 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "788896082", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Colibri", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E20881, FR*EZD*E20882", + "name": "Colibri", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-29", + "note": "Abonnement Ezdrive", + "source:date": "2022-04-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.07342, + 14.60317 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "334174190", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Socanparc - Pointe Simon", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E28314, FR*EZD*E28315", + "name": "Socanparc - Pointe Simon", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-27", + "note": "Abonnement Ezdrive", + "source:date": "2022-04-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.04232, + 14.472874 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "842762346", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Le chill", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E20771, FR*EZD*E20772", + "name": "Le chill", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-10", + "note": "Abonnement Ezdrive", + "source:date": "2022-04-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -60.972756, + 14.601781 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "431416288", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "DIGICEL ANTILLES FRANCAISES GUYANE", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E95818, FR*EZD*E95819", + "name": "Digicel-Publique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-27", + "note": "Abonnement Ezdrive", + "source:date": "2022-04-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.18036, + 14.697624 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "484506555", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Petibonum", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E20883, FR*EZD*E20884", + "name": "Petibonum", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-24", + "note": "Abonnement Ezdrive", + "source:date": "2022-04-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.0255406, + 14.62847996 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "328490685", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Antilles Téléphone", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E38638,FR*EZD*E38639", + "name": "Antilles Téléphone", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-19", + "note": "Abonnement Ezdrive", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.027682, + 14.615813 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "331647602", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "BUT ", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E63049,FR*EZD*E63050,FR*EZD*E63057,FR*EZD*E63058", + "name": "BUT Acajou", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-06", + "note": "Abonnement EZdrive", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.04633536, + 14.59493306 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "841748551", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Hôtel B&B", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E63047,FR*EZD*E63048,FR*EZD*E93917,FR*EZD*E93918,FR*EZD*E63053,FR*EZD*E63054", + "name": "Hôtel B&B", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-19", + "note": "Abonnement EZdrive", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.00997, + 14.604876 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "500634688", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "SEEN ", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E45697,FR*EZD*E45709", + "name": "SEEN La Lézarde", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-12", + "note": "Abonnement EZdrive", + "source:date": "2022-04-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.0238, + 14.616381 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "824352322", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Norauto", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E20869,FR*EZD*E20870", + "name": "Norauto - Le Lamentin - 972 - 22kW", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-29", + "note": "Abonnement EZdrive", + "source:date": "2022-04-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -60.99128, + 14.612948 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "391279924", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "GIE CENTREAUTODIS", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E63031, FR*EZD*E63032, FR*EZD*E112993, FR*EZD*E112994", + "name": "Centre Auto", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-05", + "note": "Abonnement EZdrive", + "source:date": "2022-05-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.04941, + 14.608132 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "539439463", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Diet Vert ", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E45695", + "name": "Diet Vert Dillon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-08", + "note": "Abonnement EZdrive", + "source:date": "2022-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.03312, + 14.614933 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "833393184", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "GHP", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E38632,FR*EZD*E38633", + "name": "Jambette", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-11", + "note": "Abonnement EZdrive", + "source:date": "2022-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.2253515, + 14.8023925 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "219722196", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Mairie du Prêcheur", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E28306,FR*EZD*E28307", + "name": "Mairie du Prêcheur", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-19", + "note": "Abonnement EZdrive", + "source:date": "2022-05-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.13439, + 14.772175 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "813107943", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "New Peleen", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E28298,FR*EZD*E28299", + "name": "Carrefour Market Morne Rouge", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-18", + "note": "Abonnement EZdrive", + "source:date": "2022-05-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.02603, + 14.61776 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "341861367", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Sodiva Citroên", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E26669, FR*EZD*E26670", + "name": "Sodiva - Parking client Citroen - 972 - 22kW", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-24", + "note": "Abonnement EZdrive", + "source:date": "2022-05-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -60.99089, + 14.631557 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "380129866", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Orange OGC", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E20775,FR*EZD*E20776", + "name": "Orange OGC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-14", + "note": "Abonnement EZdrive", + "source:date": "2022-07-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.04474, + 14.603169 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "380129866", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Orange Pointe de Grives", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E20873, FR*EZD*E20874,fr*ezd*e45685", + "name": "Orange Pointe de Grives", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-14", + "note": "Abonnement EZdrive", + "source:date": "2022-07-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -60.99684, + 14.609692 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "485186019", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Mr Bricolage Petit Manoir", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E63135,FR*EZD*E63136", + "name": "Mr Bricolage Petit Manoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-26", + "note": "Abonnement EZdrive", + "source:date": "2022-08-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.08122, + 14.615527 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "303188528", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Simar les Cycas", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E139858", + "name": "Simar Les Cycas", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-08-01", + "note": "Abonnement EZdrive", + "source:date": "2022-08-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.63, + 44.21 + ] + }, + "properties": { + "operator": "CHARRIERE DISTRIBUTION", + "owner:ref:FR:SIREN": "398695585", + "email": "staff@charriere-distribution.com", + "phone": "0466896051", + "network": "CHARRIERE DISTRIBUTION", + "ref:EU:EVSE": "Non concerné", + "ref": "56c3a7fd-0f7d-4345-951a-e5641db4a5f0", + "name": "WALLBOX, CD, SAINT-NAZAIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-03-30", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'enseigne", + "source:date": "2022-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1279332, + 50.6526966 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DLM VILLENEUVE D'ASCQ", + "ref:EU:EVSE": "Non concerné", + "ref": "1323dcbe-58b8-4150-877f-8df9576fc5d8", + "name": "DLM VILLENEUVE D'ASCQ", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-06", + "note": "", + "source:date": "2022-04-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5835336, + 43.307852 + ] + }, + "properties": { + "operator": "Bastide beaudinard & tours (BBT)", + "owner:ref:FR:SIREN": "908822836", + "email": "contact@bastidebeaudinard.fr", + "phone": "0611342795", + "network": "Bastide beaudinard", + "ref:EU:EVSE": "Non concerné", + "ref": "e8f85317-d544-4bff-b9ab-04bb6c6cbc13", + "name": "BEAUDINARD AUBAGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-28", + "note": "Recharge ouverte uniquement aux clients", + "source:date": "2021-03-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70058, + 43.4805 + ] + }, + "properties": { + "operator": "Vegetalis", + "owner:ref:FR:SIREN": "753765957", + "email": "d.genre@groupegenre.com", + "phone": "", + "network": "VEGETALIS", + "ref:EU:EVSE": "Non concerné", + "ref": "11056a14-b43f-4cd2-9122-069014db6366", + "name": "PEPINIERES TRETS", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-20", + "note": "Recharge ouverte uniquement aux clients", + "source:date": "2022-06-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42928004265, + 44.1805000305 + ] + }, + "properties": { + "operator": "Le Capelan", + "owner:ref:FR:SIREN": "340688076", + "email": "camping.le.capelan@orange.fr", + "phone": "04 66 45 60 51", + "network": "Le jardin des Cevennes", + "ref:EU:EVSE": "Non concerné", + "ref": "83577307-cd5a-45aa-8ca4-733c20281019", + "name": "jardin des cevennes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-28", + "note": "Se renseigner à l'accueil", + "source:date": "2022-03-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.14164, + 29.29117 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "803540210", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "HYUNDAI", + "ref:EU:EVSE": "FRFR1ETSEA1", + "ref": "FRFR1ETSEA1", + "name": "BAYEUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-28", + "note": "", + "source:date": "2022-03-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2549, + 49.1296 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "849244645", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "HYUNDAI", + "ref:EU:EVSE": "FRFR1EDDVK1", + "ref": "FRFR1EDDVK1", + "name": "HYUNDAI LISIEUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-28", + "note": "", + "source:date": "2022-03-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4929901, + 44.840481 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "HOTEL B&B", + "ref:EU:EVSE": "Non concerné", + "ref": "a4d3dd36-f16b-4b9c-98ed-f94a4167ee0d", + "name": "HOTEL B&B", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48177649999999295, + 44.84385340000002 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "781880372", + "email": "eses.bire@hapogys.fr", + "phone": "", + "network": "HAPOGYS", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2011356", + "name": "Parking HAPOGYS", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-22", + "note": "", + "source:date": "2022-03-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48177649999999295, + 44.84385340000002 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "781880372", + "email": "eses.bire@hapogys.fr", + "phone": "", + "network": "HAPOGYS", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2011356", + "name": "Parking HAPOGYS", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-22", + "note": "", + "source:date": "2022-03-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6594419, + 50.5160463 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "SCI PARAMEDICA", + "ref:EU:EVSE": "Non concerné", + "ref": "bd7e3b48-e320-4bcf-bc15-fe4445eb4c79", + "name": "SCI PARAMEDICA", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-16", + "note": "", + "source:date": "2021-12-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7644623, + 45.8100136 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DLM DARDILLY", + "ref:EU:EVSE": "Non concerné", + "ref": "8e2b8b94-f7e1-448c-a59d-b4892291f841", + "name": "DLM DARDILLY", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-02", + "note": "", + "source:date": "2022-03-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0276404, + 45.7707093 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DLM LYON EST", + "ref:EU:EVSE": "Non concerné", + "ref": "c7496279-027a-404b-807e-cf5f96df4241", + "name": "DLM LYON EST", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-01", + "note": "", + "source:date": "2022-03-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8523063, + 45.7582275 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DLM LYON ", + "ref:EU:EVSE": "Non concerné", + "ref": "3e298fae-ca66-4a7c-90ea-17ad42757373", + "name": "DLM LYON", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-02", + "note": "", + "source:date": "2022-03-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0458372, + 50.5461921 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DLM SECLIN", + "ref:EU:EVSE": "Non concerné", + "ref": "c5dde61a-ba15-42a5-bd7d-938dcbe2efe8", + "name": "DLM SECLIN", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-06", + "note": "", + "source:date": "2022-04-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988044, + 45.819755 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "950396598", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "LOGIS HOTEL LYON EST", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0147", + "name": "HOTEL LYON EST", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-12", + "note": "SO", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988044, + 45.819755 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "950396598", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "LOGIS HOTEL LYON EST", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0148", + "name": "HOTEL LYON EST", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-12", + "note": "SO", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2414326, + 43.4359393 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DLM VITROLLES", + "ref:EU:EVSE": "Non concerné", + "ref": "30de7846-e85b-419c-b0cf-66ac32882c76", + "name": "DLM VITROLLES", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-27", + "note": "", + "source:date": "2022-03-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8840257, + 43.5818178 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DLM MONTPELLIER", + "ref:EU:EVSE": "Non concerné", + "ref": "b2c99b0d-0ca6-4ff0-a555-1d977e0db35c", + "name": "DLM MONTPELLIER", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-04", + "note": "", + "source:date": "2022-03-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1177565, + 45.9008173 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DLM ANNECY", + "ref:EU:EVSE": "Non concerné", + "ref": "3ac50120-44a2-43b4-9bf8-1827e87ae861", + "name": "DLM ANNECY", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-30", + "note": "", + "source:date": "2022-03-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3784608, + 43.321751 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DLM MARSEILLE", + "ref:EU:EVSE": "Non concerné", + "ref": "49fb63ee-2b4d-4c15-ad8a-fd1bcac19c31", + "name": "DLM MARSEILLE", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-30", + "note": "", + "source:date": "2022-03-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9517688, + 45.5725536 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DLM CHAMBERY", + "ref:EU:EVSE": "Non concerné", + "ref": "5d111086-0f3f-4e2c-97fc-a1d839c1fbda", + "name": "DLM CHAMBERY", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-30", + "note": "", + "source:date": "2022-03-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0502595, + 50.6796641 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DLM WAMBRECHIES", + "ref:EU:EVSE": "Non concerné", + "ref": "aa2be99e-e896-49b0-9948-4dca327dcc72", + "name": "DLM WAMBRECHIES", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-06", + "note": "", + "source:date": "2022-04-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94728, + 50.420087 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "ESCAPE MIND", + "ref:EU:EVSE": "Non concerné", + "ref": "4634c2ea-9655-4f07-81b7-9a0c99b1aef5", + "name": "ESCAPE MIND", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-30", + "note": "", + "source:date": "2022-03-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.061562, + 49.105209 + ] + }, + "properties": { + "operator": "CAP EMPLOI", + "owner:ref:FR:SIREN": "345406565", + "email": "dany.capemploi@gmail.com", + "phone": "0387986009", + "network": "CAP EMPLOI", + "ref:EU:EVSE": "Non concerné", + "ref": "bfccb924-10de-414b-90e9-20208967ee22", + "name": "CAP EMPLOI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-04-01", + "note": "Recharge uniquement pendant les horaires d'ouvertures", + "source:date": "2022-04-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06, + 44.12 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEEVAJADE11", + "ref": "71dbeab0-2dff-4a52-bdc6-fc3a114fa3de", + "name": "MAS DE L'EVAJADE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-25", + "note": "", + "source:date": "2022-02-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8283, + 43.7872 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEROUMANILLE11", + "ref": "e5981b93-4ae8-4595-9b8c-f7582b59c5fe", + "name": "PARKING ROUMANILLE SAINT REMY ", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-05", + "note": "24/7", + "source:date": "2021-11-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.849093334457226, + 43.5616514180901 + ] + }, + "properties": { + "operator": "AUTORECHARGE SAS", + "owner:ref:FR:SIREN": "828619346", + "email": "m.drif@autorecharge.fr", + "phone": "0970755400", + "network": "AUTORECHARGE SAS", + "ref:EU:EVSE": "FRAU1E0022", + "ref": "559912", + "name": "Fasthôtel Montpellier Ouest - 2 Bornes ALFEN 22kW + prise E/F ouvertes au public ( Identification via badge RFID )", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-01", + "note": "", + "source:date": "2022-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77370505338358, + 49.40885526410706 + ] + }, + "properties": { + "operator": "AUTORECHARGE SAS", + "owner:ref:FR:SIREN": "450015250", + "email": "m.drif@autorecharge.fr", + "phone": "0970755400", + "network": "AUTORECHARGE SAS", + "ref:EU:EVSE": "FRAU1E0020", + "ref": "555724", + "name": "Fasthôtel compiègne", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-01", + "note": "", + "source:date": "2022-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5663550980706784, + 48.71728225183364 + ] + }, + "properties": { + "operator": "AUTORECHARGE SAS ", + "owner:ref:FR:SIREN": "317803443", + "email": "contact@autorecharge.fr", + "phone": "0970755400", + "network": "AUTORECHARGE SAS", + "ref:EU:EVSE": "FRAU1E0017", + "ref": "333055", + "name": "EIFFAGE GENIE CIVIL - ROLAND", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-01", + "note": "", + "source:date": "2022-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.617293760965289, + 47.46216679205851 + ] + }, + "properties": { + "operator": "AUTORECHARGE SAS", + "owner:ref:FR:SIREN": "793681313", + "email": "contact@autorecharge.fr", + "phone": "0970755400", + "network": "AUTORECHARGE SAS", + "ref:EU:EVSE": "FRAU1E0023", + "ref": "562957", + "name": "Hôtel Kyriad Angers Beaucouzé", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-01", + "note": "Hôtel Kyriad Angers Beaucouzé - 4 bornes de recharge ALFEN 22kW ouvertes au public + prise E/F (accès via Badge RFID)", + "source:date": "2022-05-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.52, + 16.26 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "819761883", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696901897", + "network": "BEBE 9 Les Abymes", + "ref:EU:EVSE": "Non concerné", + "ref": "VRT_NB_1290", + "name": "Bebe 9 Abymes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-29", + "note": "", + "source:date": "2022-09-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.56, + 16.24 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "819761883", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696901897", + "network": "Fitness park Jarry", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E26743, FR*EZD*E8102", + "name": "Fitness park Jarry", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-08", + "note": "", + "source:date": "2022-09-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.918116, + 45.67761 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "839910783", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "STATION LOUIS PRADEL", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0154", + "name": "STATION LOUIS PRADEL", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-30", + "note": "SO", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.918116, + 45.67761 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "839910783", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "STATION LOUIS PRADEL", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0153", + "name": "STATION LOUIS PRADEL", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-30", + "note": "SO", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.27712, + 4.8580774 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "350072666", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Argos", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E20791,FR*EZD*E20792", + "name": "Argos", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-05", + "note": "Abonnement EZdrive", + "source:date": "2022-05-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.8, + 48.64 + ] + }, + "properties": { + "operator": "Hotel Le Moulin", + "owner:ref:FR:SIREN": "839367117", + "email": "infos@moulin-wantzenau.com", + "phone": "0388592222", + "network": "Hotel Le Moulin", + "ref:EU:EVSE": "Non concerné", + "ref": "58a46859-0222-4f9f-836c-288e576ebe96", + "name": "Parking Hotel Le Moulin", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-18", + "note": "", + "source:date": "2022-05-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85, + 45.07 + ] + }, + "properties": { + "operator": "ELEC eCONNECT", + "owner:ref:FR:SIREN": "853251635", + "email": "contact@elec-econnect.fr", + "phone": "0475079175", + "network": "ELEC eCONNECT", + "ref:EU:EVSE": "Non concerné", + "ref": "530096e5-2e8c-4396-af14-c2ed1b384914", + "name": "ELEC eCONNECT Tain l'hermitage", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-13", + "note": "", + "source:date": "2022-05-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.781441, + 46.285911 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "802207779", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "STATION PETITE GROSNE", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0157", + "name": "STATION PETITE GROSNE", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-30", + "note": "SO", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.781441, + 46.285911 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "802207779", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "STATION PETITE GROSNE", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0158", + "name": "STATION PETITE GROSNE", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-30", + "note": "SO", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.8, + 48.67 + ] + }, + "properties": { + "operator": "Golf de La Wantzenau", + "owner:ref:FR:SIREN": "350349916", + "email": "accueil@golf-wantzenau.fr", + "phone": "0388963773", + "network": "Golf de La Wantzenau", + "ref:EU:EVSE": "Non concerné", + "ref": "022f219d-9d94-466f-bf6c-bdf122d5ac17", + "name": "Parking duGolf", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-17", + "note": "Recharge disponible pendant les horaires d'ouverture du Golf", + "source:date": "2022-05-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74075, + 45.98117 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "350758504", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "STATION THEODORE BRAUN", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0155", + "name": "STATION THEODORE BRAUN", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-30", + "note": "SO", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74075, + 45.98117 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "350758504", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "STATION THEODORE BRAUN", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0156", + "name": "STATION THEODORE BRAUN", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-30", + "note": "SO", + "source:date": "2022-05-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.66, + 43.47 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEOASISBORNE11", + "ref": "ac79fb7e-9741-4cb8-a72c-a7e514190a20", + "name": "CAMPING OASIS VILLAGE ", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-13", + "note": "DISPONIBLE 24/7", + "source:date": "2022-05-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.72, + 16 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "434675906", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696901897", + "network": "McDonald's Basse terre", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E63395, FR*EZD*E63396", + "name": "Mc Donald's Basse Terre", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-06", + "note": "", + "source:date": "2022-09-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3188, + 43.6363 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "533577581", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "HYUNDAI", + "ref:EU:EVSE": "FRFR1EVFWM1", + "ref": "FRFR1EVFWM1", + "name": "HYUNDAI CASTRES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "", + "source:date": "2022-05-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6153612, + 50.3709132 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "405213398", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "JORIS IDE", + "ref:EU:EVSE": "FRFR1EVGKF1", + "ref": "FRFR1EVGKF1", + "name": "Joris Ide Onnaing", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-06", + "note": "", + "source:date": "2022-05-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25850958, + 49.91161768 + ] + }, + "properties": { + "operator": "ZEborne", + "owner:ref:FR:SIREN": "489359067", + "email": "contact@zeborne.com", + "phone": "0252072597", + "network": "ZEbonrne", + "ref:EU:EVSE": "FRZIME22AC32173", + "ref": "1ba7ddde-5acd-49ce-9d80-826777190bcf", + "name": "Intermarché - Amiens - 22KW AC", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-03-04", + "note": "Paiement par CB via application mobile + Lecture token RFID", + "source:date": "2022-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17653676640929428, + 44.42495892041201 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "749823597", + "email": "info@moulindelaboirie.fr", + "phone": "", + "network": "MOULIN DE LABOIRIE", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-DC440500001B", + "name": "Parking MOULIN DE LABOIRIE", + "capacity": "3", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-04", + "note": "", + "source:date": "2022-05-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17653676640929428, + 44.42495892041201 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "749823597", + "email": "info@moulindelaboirie.fr", + "phone": "", + "network": "MOULIN DE LABOIRIE", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-DC440500001", + "name": "Parking MOULIN DE LABOIRIE", + "capacity": "3", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-04", + "note": "", + "source:date": "2022-05-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17653676640929428, + 44.42495892041201 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "749823597", + "email": "info@moulindelaboirie.fr", + "phone": "", + "network": "MOULIN DE LABOIRIE", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P21211892", + "name": "Parking MOULIN DE LABOIRIE", + "capacity": "3", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-04", + "note": "", + "source:date": "2022-05-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.407609123225763, + 43.41959147913006 + ] + }, + "properties": { + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "379629447", + "email": "oscar@electromaps.com", + "phone": "34 931.574.967", + "network": "Hotel saint alban", + "ref:EU:EVSE": "FR000011062174", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "name": "Hotel saint alban", + "capacity": "1", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-02", + "note": "PAIEMENT PAR QR CODE possible ", + "source:date": "2022-04-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.476711409891, + 43.476583984941 + ] + }, + "properties": { + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "803719277", + "email": "oscar@electromaps.com", + "phone": "34 931.574.967", + "network": "1PACTE", + "ref:EU:EVSE": "FR000012616553", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "name": "1PACTE", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "TRUE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-04", + "note": "PAIEMENT PAR QR CODE possible ", + "source:date": "2022-05-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.272843, + 4.909545 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "529558108", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Jo Froid", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E20887,FR*EZD*E20888", + "name": "Jo Froid ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Abonnement EZdrive", + "source:date": "2022-05-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.36621, + 4.8792952 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "503449878", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Hôtel La Chaumière", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E45643", + "name": "La Chaumière", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Abonnement EZdrive", + "source:date": "2022-05-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.33534, + 4.846775 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "337770341", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Hôtel La Marmotte", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E45632", + "name": "Hôtel La Marmotte", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-28", + "note": "Abonnement EZdrive", + "source:date": "2022-05-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.305634, + 4.938339 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "789951456", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Hôpital privé Saint Adrien", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E26679,FR*EZD*E26680", + "name": "Saint Adrien", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-22", + "note": "Abonnement EZdrive", + "source:date": "2022-05-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.32731, + 4.9351181 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "793418542", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Agence 973", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E45629", + "name": "Agence 973", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-21", + "note": "Abonnement EZdrive", + "source:date": "2022-05-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.27651, + 4.9046378 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "219733094", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Maire de Remire-Montjoly", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E65528, FR*EZD*E65529", + "name": "Maire de Remire-Montjoly", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-30", + "note": "Abonnement EZdrive", + "source:date": "2022-05-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.57, + 48.36 + ] + }, + "properties": { + "operator": "Sud Hotel", + "owner:ref:FR:SIREN": "490020765", + "email": "sud-hotel-alsace@orange.fr", + "phone": "0388743065", + "network": "Sud Hotel", + "ref:EU:EVSE": "Non concerné", + "ref": "f8fd8ac0-e00a-49ff-be60-0f8e71aa039a", + "name": "Parking Sud Hotel", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-23", + "note": "", + "source:date": "2022-05-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0980716683751455, + 50.59735822646129 + ] + }, + "properties": { + "operator": "Garage lefebvre", + "owner:ref:FR:SIREN": "817450646", + "email": "garage.lefebvre62560@orange.fr", + "phone": "0321395098", + "network": "Renault Lefebvre", + "ref:EU:EVSE": "Non concerné", + "ref": "662f53b3-4e71-4281-8b5b-979a06521abc", + "name": "Garage Renault Lefebvre", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-30", + "note": "Recharge uniquement pendant l'ouverture du gaage", + "source:date": "2022-04-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6673639438636192, + 50.885564840335476 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "422491902", + "email": "exploitation@freshmile.com", + "phone": "03 68 78 14 35 ", + "network": "La Bouche Rit", + "ref:EU:EVSE": "Non concerné", + "ref": "WABD1", + "name": "La Bouche Rit Wissant", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-01", + "note": "Recharge public payante et gratuite pour les clients du restaurant sous réserve de disponibilité", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.96475, + 50.986317 + ] + }, + "properties": { + "operator": "Pilotage Maritime", + "owner:ref:FR:SIREN": "783595028", + "email": "thierry.marchisio@pilotagedunkerque.com", + "phone": "0683622707", + "network": "Borne Pilotage", + "ref:EU:EVSE": "Non concerné", + "ref": "5897d2b1-12d6-4d32-aaaf-5bcaa294fd40", + "name": "Pilotage Maritime Marck", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-30", + "note": "", + "source:date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2877885, + 43.4227369 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "332009471", + "email": "advenir@zeborne.com", + "phone": "02 52 07 25 97", + "network": "FORD VITROLLES", + "ref:EU:EVSE": "FRZPEE22AC35840", + "ref": "35840", + "name": "Ford - Vitrolles - 22kW AC ", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-07-01", + "note": "", + "source:date": "2020-07-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9288851, + 48.7580017 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "524678711", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "STYLE AND DESIGN", + "ref:EU:EVSE": "FRZPEE22AC45135", + "ref": "45135", + "name": "Style and Design - Maurepas - 7.4kW AC", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-10", + "note": "", + "source:date": "2020-11-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9288851, + 48.7580017 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "524678711", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "STYLE AND DESIGN", + "ref:EU:EVSE": "FRZPEE22AC45134", + "ref": "45134", + "name": "Style and Design - Maurepas - 7.4kW AC", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-10", + "note": "", + "source:date": "2020-11-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9288851, + 48.7580017 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "524678711", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "STYLE AND DESIGN", + "ref:EU:EVSE": "FRZPEE22AC45107", + "ref": "45107", + "name": "Style and Design - Maurepas - 7.4kW AC", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-10", + "note": "", + "source:date": "2020-11-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9288851, + 48.7580017 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "524678711", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "STYLE AND DESIGN", + "ref:EU:EVSE": "FRZPEE22AC45106", + "ref": "45106", + "name": "Style and Design - Maurepas - 7.4kW AC", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-11-10", + "note": "", + "source:date": "2020-11-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3993781, + 45.4626965 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "501208680", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda - Saint-Etienne", + "ref:EU:EVSE": "FRZMAE22AC49430", + "ref": "49430", + "name": "Mazda - Saint-Etienne - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-01", + "note": "", + "source:date": "2020-12-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3993781, + 45.4626965 + ] + }, + "properties": { + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "501208680", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda - Saint-Etienne", + "ref:EU:EVSE": "FRZMAE22AC60973", + "ref": "60973\t", + "name": "Mazda - Saint-Etienne - 22kW AC", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-19", + "note": "", + "source:date": "2021-05-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.160302, + 49.515081 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10074850", + "ref": "", + "name": "Lycee Auguste Perret - Rue Boris Vian", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-14", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.160302, + 49.515081 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10017910", + "ref": "", + "name": "Lycee Auguste Perret - Rue Boris Vian", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-14", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.160302, + 49.515081 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10080379", + "ref": "", + "name": "Lycee Auguste Perret - Rue Boris Vian", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-14", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.160302, + 49.515081 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10077840", + "ref": "", + "name": "Lycee Auguste Perret - Rue Boris Vian", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-14", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.115706, + 49.525553 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10005079", + "ref": "", + "name": "Gymnase du Mont-Gaillard - 41 Avenue du Mont-Gaillard", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-14", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.115706, + 49.525553 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10055327", + "ref": "", + "name": "Gymnase du Mont-Gaillard - 41 Avenue du Mont-Gaillard", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-14", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.123139, + 49.503611 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10043836", + "ref": "", + "name": "77 Rue du 329ème - le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.223944, + 49.564167 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10008605", + "ref": "", + "name": "Rue de Chemin de Fer - Epouville", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-09", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.123139, + 49.503611 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10051877", + "ref": "", + "name": "55 Rue du 329ème -le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-31", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.123139, + 49.503611 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10099083", + "ref": "", + "name": "55 Rue du 329ème - le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-31", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.073833, + 49.510417 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10091710", + "ref": "", + "name": " 30 Rue Georges Boissaye du Bocage - Sainte-Adresse ", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.073833, + 49.510417 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10093725", + "ref": "", + "name": " 30 Rue Georges Boissaye du Bocage - Sainte-Adresse ", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.223944, + 49.564167 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10062883", + "ref": "", + "name": "Rue de Chemin de Fer - Epouville", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-09", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.123139, + 49.503611 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10093672", + "ref": "", + "name": "77 Rue du 329ème - le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.123139, + 49.503611 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10055581", + "ref": "", + "name": "77 Rue du 329ème - le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.085389, + 49.505944 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10002785", + "ref": "", + "name": "Rue Noir Pel - Sainte-Adresse ", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-09", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.085389, + 49.505944 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10022618", + "ref": "", + "name": "Rue Noir Pel - Sainte-Adresse ", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-09", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.123139, + 49.503611 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10005259", + "ref": "", + "name": "77 Rue du 329ème - le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-07-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.189389, + 49.543417 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10076688", + "ref": "", + "name": "Pierre Rousseau - Montivilliers", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.189389, + 49.543417 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10080710", + "ref": "", + "name": "Pierre Rousseau - Montivilliers", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.189389, + 49.543417 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10079601", + "ref": "", + "name": "Pierre Rousseau - Montivilliers", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.189389, + 49.543417 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10079395", + "ref": "", + "name": "Pierre Rousseau - Montivilliers", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.189389, + 49.543417 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10077325", + "ref": "", + "name": "Pierre Rousseau - Montivilliers", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.189389, + 49.543417 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10076984", + "ref": "", + "name": "Pierre Rousseau - Montivilliers", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229806, + 49.511389 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10068896", + "ref": "", + "name": "Piscine Gd'O-Georges Brassens - Gonfreville L'Orcher ", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-11", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229806, + 49.511389 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10072145", + "ref": "", + "name": "Piscine Gd'O-Georges Brassens - Gonfreville L'Orcher ", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-11", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229806, + 49.511389 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10069696", + "ref": "", + "name": "Piscine Gd'O-Georges Brassens - Gonfreville L'Orcher ", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-11", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229806, + 49.511389 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10068375", + "ref": "", + "name": "Piscine Gd'O-Georges Brassens - Gonfreville L'Orcher ", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-11", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229806, + 49.511389 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10066063", + "ref": "", + "name": "Piscine Gd'O-Georges Brassens - Gonfreville L'Orcher ", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-11", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229806, + 49.511389 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10064245", + "ref": "", + "name": "Piscine Gd'O-Georges Brassens - Gonfreville L'Orcher ", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-11", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.110167, + 49.509889 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10087437", + "ref": "", + "name": "Pl. Goerges Vavasseur - Le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.110167, + 49.509889 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10082153", + "ref": "", + "name": "Pl. Goerges Vavasseur - Le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.173417, + 49.551389 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10074197", + "ref": "", + "name": "5 Rue Henri Matisse - Montivilliers", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.110167, + 49.509889 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10088336", + "ref": "", + "name": "Pl. Goerges Vavasseur - Le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.173417, + 49.551389 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10076241", + "ref": "", + "name": "5 Rue Henri Matisse - Montivilliers", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.073833, + 49.510417 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10099360", + "ref": "", + "name": "30 Rue Georges Boissaye du Bocage - Sainte-Adresse ", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.073833, + 49.510417 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10095460", + "ref": "", + "name": "30 Rue Georges Boissaye du Bocage - Sainte-Adresse ", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.223944, + 49.564167 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10062826", + "ref": "", + "name": "Rue du Chemin de Fer - Épouville", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.110167, + 49.509889 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10090451", + "ref": "", + "name": "Pl. Goerges Vavasseur - Le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.223944, + 49.564167 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10062738", + "ref": "", + "name": "Rue du Chemin de Fer - Épouville", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-05", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.173417, + 49.551389 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10075551", + "ref": "", + "name": "5 Rue Henri Matisse - Montivilliers", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.173417, + 49.551389 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10074232", + "ref": "", + "name": "5 Rue Henri Matisse - Montivilliers", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-17", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.173417, + 49.551389 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10074163", + "ref": "", + "name": "5 Rue Henri Matisse - Montivilliers", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-11", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.173417, + 49.551389 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10073129", + "ref": "", + "name": "5 Rue Henri Matisse - Montivilliers", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-11", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.247222, + 47.001784 + ] + }, + "properties": { + "operator": "ProperPhi", + "owner:ref:FR:SIREN": "837717909", + "email": "contacta@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRPHIPTHECORNER", + "ref": "63f5c84e96fb7db5ae3b40d7", + "name": "Parking Corner", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "Recharge ouverte au public de 9h00 à 20h00, paiement par stripe", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.247222, + 47.001784 + ] + }, + "properties": { + "operator": "ProperPhi", + "owner:ref:FR:SIREN": "837717909", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRPHIPTHECORNER", + "ref": "63f5c84e96fb7db5ae3b40d7", + "name": "Parking Corner", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "Recharge ouverte au public de 9h00 à 20h00, paiement par stripe", + "source:date": "2023-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.69, + 16.03 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "428801658", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696901897", + "network": "Bananes Vertes St Claude", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*EZD*E28286, FR*EZD*E28287", + "name": "Bananes vertes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-23", + "note": "", + "source:date": "2022-05-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.69, + 16.03 + ] + }, + "properties": { + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "434675906", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696901897", + "network": "Mc Donald's Basse Terre", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "SEDRFGHJKL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-23", + "note": "", + "source:date": "2022-10-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.09407341836829, + 14.607158013009274 + ] + }, + "properties": { + "operator": "GREEN TECHNOLOGIE", + "owner:ref:FR:SIREN": "393628136", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696295629", + "network": "CASINO BATELIERE PLAZZA", + "ref:EU:EVSE": "Non concerné", + "ref": "VRT_NB_935, VRT_NB_936", + "name": "972 -CASINO BATELIERE PLAZZA", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-04", + "note": "", + "source:date": "2022-09-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -60.93685837866524, + 14.560713873777255 + ] + }, + "properties": { + "operator": "GREEN TECHNOLOGIE", + "owner:ref:FR:SIREN": "219722238", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696295629", + "network": "COMMUNE DE SAINT ESPRIT", + "ref:EU:EVSE": "Non concerné", + "ref": "VRT_NB_1392", + "name": "972 - SAINT ESPRIT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-16", + "note": "", + "source:date": "2022-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -60.902208073487955, + 14.486405978847023 + ] + }, + "properties": { + "operator": "GREEN TECHNOLOGIE", + "owner:ref:FR:SIREN": "219722204", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696295629", + "network": "MARCHE DE RIVIERE PILOTE", + "ref:EU:EVSE": "Non concerné", + "ref": "VRT_NB_243_2", + "name": "972 - RIVIERE PILOTE MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-10", + "note": "", + "source:date": "2022-11-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.0396036414057, + 14.670001347489613 + ] + }, + "properties": { + "operator": "GREEN TECHNOLOGIE", + "owner:ref:FR:SIREN": "219740123", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696295629", + "network": "972 - SAINT JOSEPH", + "ref:EU:EVSE": "Non concerné", + "ref": "VRT_NB_933", + "name": "972 - SAINT JOSEPH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-01", + "note": "", + "source:date": "2022-12-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0810055, + 49.0997673 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "348714403", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "BMW", + "ref:EU:EVSE": "FRFR1EAGUA1", + "ref": "FRFR1EAGUA1", + "name": "BMW SAINT LO", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-15", + "note": "", + "source:date": "2022-04-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.537796, + 43.5282203 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "306300344", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "HYUNDAI", + "ref:EU:EVSE": "FRFR1ETHZL1", + "ref": "FRFR1ETHZL1", + "name": "HYUNDAI LABEGE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-11", + "note": "", + "source:date": "2022-04-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.175945, + 43.9295849 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "514882372", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "FIRSTOP", + "ref:EU:EVSE": "FRFR1EZNAS1", + "ref": "FRFR1EZNAS1", + "name": "FIRSTOP ALBI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-15", + "note": "", + "source:date": "2022-04-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2631235, + 49.851386 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "394452973", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "BMW", + "ref:EU:EVSE": "FRFR1EAMKA1", + "ref": "FRFR1EAMKA1", + "name": "BMW SAINT QUENTIN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-04-15", + "note": "", + "source:date": "2022-04-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25, + 44.4 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMERAMIERES11", + "ref": "627644eb-6bb8-4745-a77f-f7ae247ea5ef", + "name": "CAMPING LES RAMIERES 26", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-13", + "note": "DISPONIBLE 24/7", + "source:date": "2022-04-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1096503, + 49.2859075 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "c30424e7-d903-4ac3-911d-591e97f68a90", + "name": "LIDL DIVES SUR MER", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9605582, + 49.5355585 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "b409deba-3e91-4894-9a79-36f781fafd82", + "name": "LIDL YVETOT", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7638707, + 49.2764924 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "cc4f55cf-8fe3-4362-b680-c3b56f4debba", + "name": "LIDL GISORS", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7638707, + 49.2764924 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "cc4f55cf-8fe3-4362-b680-c3b56f4debba", + "name": "LIDL GISORS", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.370679, + 49.182863 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "f5df4001-c9b8-4e62-908d-ba944e3e0668", + "name": "LIDL CAEN", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.370679, + 49.182863 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "f5df4001-c9b8-4e62-908d-ba944e3e0668", + "name": "LIDL CAEN", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9605582, + 49.5355585 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "b409deba-3e91-4894-9a79-36f781fafd82", + "name": "LIDL YVETOT", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1676349, + 49.2254847 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "3a5df8b8-d48d-4b91-916a-83b756aa1a71", + "name": "LIDL LOUVIERS", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0071297, + 47.6644493 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "2c1af022-bfea-4873-95b1-d5b165dc1e3c", + "name": "LIDL ST MARCEL", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0071297, + 47.6644493 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "2c1af022-bfea-4873-95b1-d5b165dc1e3c", + "name": "LIDL ST MARCEL", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2589209, + 49.2692571 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "adcda78d-e497-4203-b3fb-2523c6c1a318", + "name": "LIDL OUISTREHAM", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1676349, + 49.2254847 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "3a5df8b8-d48d-4b91-916a-83b756aa1a71", + "name": "LIDL LOUVIERS", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1096503, + 49.2859075 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "c30424e7-d903-4ac3-911d-591e97f68a90", + "name": "LIDL DIVES SUR MER", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2589209, + 49.2692571 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "adcda78d-e497-4203-b3fb-2523c6c1a318", + "name": "LIDL OUISTREHAM", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9605582, + 49.5355585 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "3c0a462e-e7db-4207-b678-d0b1a79f41c6", + "name": "LIDL BARENTIN", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0373753, + 49.020012 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "b06856d0-0348-452d-a5d7-69125802d0fe", + "name": "LIDL ST PIERRE SUR DIVES", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0373753, + 49.020012 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "b06856d0-0348-452d-a5d7-69125802d0fe", + "name": "LIDL ST PIERRE SUR DIVES", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1096503, + 49.2859075 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "c30424e7-d903-4ac3-911d-591e97f68a90", + "name": "LIDL DIVES SUR MER", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9605582, + 49.5355585 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "3c0a462e-e7db-4207-b678-d0b1a79f41c6", + "name": "LIDL BARENTIN", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.271643, + 49.145128 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "d490d47e-bb30-4796-bc2a-42adc1a6eb2a", + "name": "LIDL LISIEUX", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.271643, + 49.145128 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "d490d47e-bb30-4796-bc2a-42adc1a6eb2a", + "name": "LIDL LISIEUX", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.026733, + 49.4474373 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "f9fe386d-6bd1-4f19-ad8d-4bbe24ba78c8", + "name": "LIDL CANTELEU", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.026733, + 49.4474373 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "f9fe386d-6bd1-4f19-ad8d-4bbe24ba78c8", + "name": "LIDL CANTELEU", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.491859, + 49.549938 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "db4771df-c298-4707-a5ae-83008a975d01", + "name": "LIDL GRUCHET LE VALASSE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.491859, + 49.549938 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "db4771df-c298-4707-a5ae-83008a975d01", + "name": "LIDL GRUCHET LE VALASSE", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6863119, + 49.2746651 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "b054404e-eafd-4c89-b189-da392f1483ed", + "name": "LIDL ST VIGOR LE GRAND", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6863119, + 49.2746651 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "b054404e-eafd-4c89-b189-da392f1483ed", + "name": "LIDL ST VIGOR LE GRAND", + "capacity": "2", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1096503, + 49.2859075 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "c30424e7-d903-4ac3-911d-591e97f68a90", + "name": "LIDL DIVES SUR MER", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19538, + 49.5149 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "58b09294-5a64-456d-bbda-1839deb8184e", + "name": "LIDL HARFLEUR", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.455859, + 49.3210887 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "14ec007e-3ebd-4ded-8691-b92b88f1e503", + "name": "LIDL COURSEULLES SUR MER", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0646759, + 49.4153984 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "80229f2d-90d8-4262-864f-e9ee72f0a93f", + "name": "LIDL GRAND QUEVILLY", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1550216, + 48.9978196 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", + "name": "LIDL EVREUX", + "capacity": "8", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1550216, + 48.9978196 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", + "name": "LIDL EVREUX", + "capacity": "8", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1550216, + 48.9978196 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", + "name": "LIDL EVREUX", + "capacity": "8", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1550216, + 48.9978196 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", + "name": "LIDL EVREUX", + "capacity": "8", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1550216, + 48.9978196 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", + "name": "LIDL EVREUX", + "capacity": "8", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1550216, + 48.9978196 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", + "name": "LIDL EVREUX", + "capacity": "8", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1550216, + 48.9978196 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", + "name": "LIDL EVREUX", + "capacity": "8", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6610584, + 48.7624117 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "d265d636-6dea-4a89-9dda-fdae0a6e4862", + "name": "LIDL ST SULPICE SUR RISLE", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6610584, + 48.7624117 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "d265d636-6dea-4a89-9dda-fdae0a6e4862", + "name": "LIDL ST SULPICE SUR RISLE", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.455859, + 49.3210887 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "14ec007e-3ebd-4ded-8691-b92b88f1e503", + "name": "LIDL COURSEULLES SUR MER", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19538, + 49.5149 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "58b09294-5a64-456d-bbda-1839deb8184e", + "name": "LIDL HARFLEUR", + "capacity": "4", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0646759, + 49.4153984 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "80229f2d-90d8-4262-864f-e9ee72f0a93f", + "name": "LIDL GRAND QUEVILLY", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9605582, + 49.5355585 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "7ac8a35d-00d7-4f67-a747-77259dfcb4b8", + "name": "LIDL ST AUBIN SUR SCIE", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9605582, + 49.5355585 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "7ac8a35d-00d7-4f67-a747-77259dfcb4b8", + "name": "LIDL ST AUBIN SUR SCIE", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3017575, + 49.1910497 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "47097357-e25b-46c3-92a3-37fb7e88d7e6", + "name": "LIDL COLOMBELLES", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3017575, + 49.1910497 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "47097357-e25b-46c3-92a3-37fb7e88d7e6", + "name": "LIDL COLOMBELLES", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0317198, + 49.2760261 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "a720801f-b0e6-4b2e-a1ea-c596dcc79a1a", + "name": "LIDL ST PIERRE LES ELBEUF", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0317198, + 49.2760261 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "a720801f-b0e6-4b2e-a1ea-c596dcc79a1a", + "name": "LIDL ST PIERRE LES ELBEUF", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.815166, + 49.3586376 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "2ff50929-ecb2-4e08-a1f3-2373421a9f22", + "name": "LIDL BOURG ACHARD", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.815166, + 49.3586376 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "2ff50929-ecb2-4e08-a1f3-2373421a9f22", + "name": "LIDL BOURG ACHARD", + "capacity": "2", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19538, + 49.5149 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "58b09294-5a64-456d-bbda-1839deb8184e", + "name": "LIDL HARFLEUR", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19538, + 49.5149 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "58b09294-5a64-456d-bbda-1839deb8184e", + "name": "LIDL HARFLEUR", + "capacity": "4", + "socket:typee": "FALSE", + "socket:type2": "FALSE", + "socket:type2_combo": "TRUE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1550216, + 48.9978196 + ] + }, + "properties": { + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "phone": "", + "network": "LIDL", + "ref:EU:EVSE": "Non concerné", + "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", + "name": "LIDL EVREUX", + "capacity": "8", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "TRUE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-29", + "note": "Paiement carte abonnement", + "source:date": "2022-04-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.604637, + 48.077638 + ] + }, + "properties": { + "operator": "Ecophi mobility", + "owner:ref:FR:SIREN": "334836608", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEMAUFFREYACADEMY", + "ref": "", + "name": "MAUFFREY ACADEMY", + "capacity": "20", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-08", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3491347, + 47.3517596 + ] + }, + "properties": { + "operator": "EcoPhi mobility", + "owner:ref:FR:SIREN": "852602259", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEF3CBAUME", + "ref": "", + "name": "F3CBaume", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-24", + "note": "Recharge accessible 24/7, multiopérateurs", + "source:date": "2021-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3491347, + 47.3517596 + ] + }, + "properties": { + "operator": "EcoPhi mobility", + "owner:ref:FR:SIREN": "852602259", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEF3CBAUME", + "ref": "", + "name": "F3CBaume", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-24", + "note": "Recharge accessible 24/7, multiopérateurs", + "source:date": "2021-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3491347, + 47.3517596 + ] + }, + "properties": { + "operator": "EcoPhi mobility", + "owner:ref:FR:SIREN": "852602259", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEF3CBAUME", + "ref": "", + "name": "F3CBaume", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-24", + "note": "Recharge accessible 24/7, multiopérateurs", + "source:date": "2021-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3491347, + 47.3517596 + ] + }, + "properties": { + "operator": "EcoPhi mobility", + "owner:ref:FR:SIREN": "852602259", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEF3CBAUME", + "ref": "", + "name": "F3CBaume", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-24", + "note": "Recharge accessible 24/7, multiopérateurs", + "source:date": "2021-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3491347, + 47.3517596 + ] + }, + "properties": { + "operator": "EcoPhi mobility", + "owner:ref:FR:SIREN": "852602259", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "ref:EU:EVSE": "FRECPEF3CBAUME", + "ref": "", + "name": "F3CBaume", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-24", + "note": "Recharge accessible 24/7, multiopérateurs", + "source:date": "2021-07-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.122687, + 49.494916 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10008344", + "ref": "", + "name": "Anatole France Danton-Douanes", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10039441", + "ref": "", + "name": "Vallee Bereult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10084920", + "ref": "", + "name": "Vallee Bereult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10052768", + "ref": "", + "name": "Vallee Bereult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-01", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10033245", + "ref": "", + "name": "Vallee Bereult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-01", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10092892", + "ref": "", + "name": "Vallee Bereult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10064682", + "ref": "", + "name": "Vallee Bereult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.122687, + 49.494916 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10085447", + "ref": "", + "name": "Anatole France Danton-Douanes", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.080807, + 49.504056 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10058267", + "ref": "", + "name": "Nice Havrais", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10088046", + "ref": "", + "name": "Vallee Bereult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-04", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10065917", + "ref": "", + "name": "Vallee Bereult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-04", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10084198", + "ref": "", + "name": "Vallee Bereult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10012220", + "ref": "", + "name": "Vallee Bereult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10020602", + "ref": "", + "name": "Vallee Bereult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10003816", + "ref": "", + "name": "Vallee Bereult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10058363", + "ref": "", + "name": "Vallee Bereult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.080807, + 49.504056 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10028783", + "ref": "", + "name": "Nice Havrais", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10045663", + "ref": "", + "name": "Vallee Bereult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10000730", + "ref": "", + "name": "Vallee Bereult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10090010", + "ref": "", + "name": "Vallee Bereult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.105017, + 49.530122 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10009607", + "ref": "", + "name": "Octeville-sur-Mer ", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-04", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197971, + 49.513438 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10057997", + "ref": "", + "name": "Beaulieu H.L.M. Harfleur", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.210925, + 49.502917 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10094490", + "ref": "", + "name": "Mayville - Gonfreville-l'Orcher", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.210925, + 49.502917 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10087808", + "ref": "", + "name": "Mayville - Gonfreville-l'Orcher", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197275, + 49.504122 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10070842", + "ref": "", + "name": "Centre H.L.M. Harfleur", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197275, + 49.504122 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10047826", + "ref": "", + "name": "Centre H.L.M. Harfleur", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.105017, + 49.530122 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10053447", + "ref": "", + "name": "Octeville-sur-Mer ", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-04", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.106136, + 49.493591 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10043767", + "ref": "", + "name": "Centre Ville-Saint-Roch - Le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-28", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.106136, + 49.493591 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10038190", + "ref": "", + "name": "Centre Ville-Saint-Roch - Le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-28", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163932, + 49.513496 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10095826", + "ref": "", + "name": "Caucriauville Lut - Le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-27", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163932, + 49.513496 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10017845", + "ref": "", + "name": "Caucriauville Lut - Le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-27", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.193942, + 49.544211 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10058428", + "ref": "", + "name": "Centre ville - Montivilliers", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-27", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.191899, + 49.506711 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10072897", + "ref": "", + "name": "Beaulieu", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.193942, + 49.544211 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10056568", + "ref": "", + "name": "Centre ville - Montivilliers", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-27", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.191899, + 49.506711 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10091696", + "ref": "", + "name": "Beaulieu", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197971, + 49.513438 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10064662", + "ref": "", + "name": "Beaulieu H.L.M. Harfleur", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4083504069540536, + 48.63538775462057 + ] + }, + "properties": { + "operator": "société La Clérine", + "owner:ref:FR:SIREN": "830266722", + "email": "contact@hotel-le-bon-cap.com", + "phone": "0296524033", + "network": "Hôtel le bon cap", + "ref:EU:EVSE": "Non concerné", + "ref": "TACW2244221S3384", + "name": "Hôtel le bon cap", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-22", + "note": "Recharge uniquement disponible pendant l'ouverture de l'hôtel", + "source:date": "2022-04-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.325158187997181, + 48.63340097926608 + ] + }, + "properties": { + "operator": "GABMAG17", + "owner:ref:FR:SIREN": "830297222", + "email": "contact@hoteltrecelin.com", + "phone": "0681475113", + "network": "Hôtel Le Trecelin", + "ref:EU:EVSE": "Non concerné", + "ref": "TACW2241521S0178", + "name": "Hôtel", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-01", + "note": "", + "source:date": "2021-07-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9851546747886144, + 48.50192886577205 + ] + }, + "properties": { + "operator": "Les jardins maraichers des bords de rance", + "owner:ref:FR:SIREN": "802549295", + "email": "jerome.desegogne@fulton.fr", + "phone": "0296807121", + "network": "Les jardins de la matz", + "ref:EU:EVSE": "Non concerné", + "ref": "TACW2244221S3391", + "name": "Les jardins de la matz", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-01", + "note": "", + "source:date": "2022-06-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78275924122744, + 43.795898154156454 + ] + }, + "properties": { + "operator": "LA CONCIERGERIE D'ISA.", + "owner:ref:FR:SIREN": "879276491", + "email": "laconciergeriedisa@gmail.com", + "phone": "0698807582", + "network": "LA CONCIERGERIE D'ISA.", + "ref:EU:EVSE": "Non concerné", + "ref": "45fa4771-7ea9-4254-bb98-b5137ab884ff", + "name": "La Conciergerie, Saint Rémy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-12", + "note": "", + "source:date": "2022-04-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.936256705171751, + 43.63943483453543 + ] + }, + "properties": { + "operator": "IXINA Le Cres", + "owner:ref:FR:SIREN": "479159261", + "email": "montpellierlescres@ixina.com", + "phone": "04 99 77 01 24", + "network": "IXINA Le cres", + "ref:EU:EVSE": "Non concerné", + "ref": "598bad4e-2dd4-4b70-be44-6ba9574186d4", + "name": "IXINA, Le Cres", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-14", + "note": "", + "source:date": "2022-04-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2798983323309523, + 43.33412185286013 + ] + }, + "properties": { + "operator": "ixina Villeneuve-lès-Béziers", + "owner:ref:FR:SIREN": "479159261", + "email": "beziers@ixina.com", + "phone": "0467351021", + "network": "ixina Villeneuve-lès-Béziers", + "ref:EU:EVSE": "Non concerné", + "ref": "aa6b4650-2d0b-4828-9b77-802073fa2ae9", + "name": "IXINA, Villeneuve-lès-Béziers", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-21", + "note": "", + "source:date": "2022-04-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8515752990825822, + 43.57430316069223 + ] + }, + "properties": { + "operator": "IXINA Saint Jean de Védas", + "owner:ref:FR:SIREN": "479159261", + "email": "montpellierstjean@ixina.com", + "phone": "0434080706", + "network": "IXINA Saint Jean de Vedas", + "ref:EU:EVSE": "Non concerné", + "ref": "923eba3c-7e81-496b-8a4c-79857a9566f8", + "name": "IXINA, Saint Jean de Védas", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-21", + "note": "", + "source:date": "2022-04-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.7257621, + 45.1810981 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DLM GRENOBLE", + "ref:EU:EVSE": "Non concerné", + "ref": "3cb2f22b-7514-4d79-b8ab-327dad07489e", + "name": "DLM GRENOBLE", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-30", + "note": "", + "source:date": "2022-03-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1176181, + 50.6535398 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DESENFANS", + "ref:EU:EVSE": "Non concerné", + "ref": "8142b174-ad7a-42a1-891b-74ba8427f498", + "name": "DESENFANS", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-05", + "note": "", + "source:date": "2022-04-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3533333, + 50.57 + ] + }, + "properties": { + "operator": "ubitricity", + "owner:ref:FR:SIREN": "389643859", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRS62E10019890", + "ref": "", + "name": "SPASAD Rely", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-10-28", + "note": "", + "source:date": "2022-05-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8547222, + 50.9522222 + ] + }, + "properties": { + "operator": "ubitricity", + "owner:ref:FR:SIREN": "389643859", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRS62E10048506", + "ref": "", + "name": "Hôtel de ville de Calais", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-23", + "note": "", + "source:date": "2022-05-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8369444, + 50.9519444 + ] + }, + "properties": { + "operator": "ubitricity", + "owner:ref:FR:SIREN": "389643859", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRS62E10009735", + "ref": "", + "name": "ZAC Coubertin à Calais", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-23", + "note": "", + "source:date": "2022-05-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10064682", + "ref": "", + "name": "Vallée Béreult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10033245", + "ref": "", + "name": "Vallée Béreult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-01", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10092892", + "ref": "", + "name": "Vallée Béreult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10084920", + "ref": "", + "name": "Vallée Béreult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10052768", + "ref": "", + "name": "Vallée Béreult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-01", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10000730", + "ref": "", + "name": "Vallée Béreult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.122687, + 49.494916 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10008344", + "ref": "", + "name": "Anatole France Danton-Douanes", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.122687, + 49.494916 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10085447", + "ref": "", + "name": "Anatole France Danton-Douanes", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10045663", + "ref": "", + "name": "Vallée Béreult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10088046", + "ref": "", + "name": "Vallée Béreult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-04", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10065917", + "ref": "", + "name": "Vallée Béreult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-04", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10084198", + "ref": "", + "name": "Vallée Béreult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10012220", + "ref": "", + "name": "Vallée Béreult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10020602", + "ref": "", + "name": "Vallée Béreult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10003816", + "ref": "", + "name": "Vallée Béreult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.080807, + 49.504056 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10058267", + "ref": "", + "name": "Nice Havrais", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.080807, + 49.504056 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10028783", + "ref": "", + "name": "Nice Havrais", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-12-02", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10039441", + "ref": "", + "name": "Vallée Béreult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.106136, + 49.493591 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10038190", + "ref": "", + "name": "Centre Ville-Saint-Roch - Le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-28", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10058363", + "ref": "", + "name": "Vallée Béreult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.105017, + 49.530122 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10009607", + "ref": "", + "name": "Octeville-sur-Mer ", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-04", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.172373, + 49.499466 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10090010", + "ref": "", + "name": "Vallée Béreult Sud", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197971, + 49.513438 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10064662", + "ref": "", + "name": "Beaulieu H.L.M. Harfleur", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197971, + 49.513438 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10057997", + "ref": "", + "name": "Beaulieu H.L.M. Harfleur", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.210925, + 49.502917 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10094490", + "ref": "", + "name": "Mayville - Gonfreville-l'Orcher", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.210925, + 49.502917 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10087808", + "ref": "", + "name": "Mayville - Gonfreville-l'Orcher", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197275, + 49.504122 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10070842", + "ref": "", + "name": "Centre H.L.M. Harfleur", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.105017, + 49.530122 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10053447", + "ref": "", + "name": "Octeville-sur-Mer ", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-04", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197275, + 49.504122 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10047826", + "ref": "", + "name": "Centre H.L.M. Harfleur", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-01-06", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.106136, + 49.493591 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10043767", + "ref": "", + "name": "Centre Ville-Saint-Roch - Le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-28", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163932, + 49.513496 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10095826", + "ref": "", + "name": "Caucriauville Lut - Le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-27", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163932, + 49.513496 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10017845", + "ref": "", + "name": "Caucriauville Lut - Le Havre", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-27", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.193942, + 49.544211 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10058428", + "ref": "", + "name": "Centre ville - Montivilliers", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-27", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.193942, + 49.544211 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10056568", + "ref": "", + "name": "Centre ville - Montivilliers", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-27", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.191899, + 49.506711 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10091696", + "ref": "", + "name": "Beaulieu", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.191899, + 49.506711 + ] + }, + "properties": { + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "phone": "", + "network": "Ubitricity France Network", + "ref:EU:EVSE": "FRUBIE10072897", + "ref": "", + "name": "Beaulieu", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "TRUE", + "socket:type2_combo": "FALSE", + "socket:chademo": "FALSE", + "fee": "FALSE", + "authentication:none": "TRUE", + "payment:credit_cards": "FALSE", + "reservation": "FALSE", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-23", + "note": "Paiement par carte d'abonnement opérateur de service de mobilité électrique", + "source:date": "2023-01-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76385, + 48.5139 + ] + }, + "properties": { + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge Mairie Saint-Brieuc", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Parking Mairie de Saint-Brieuc", + "capacity": "32", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-09", + "note": "", + "source:date": "2022-03-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0 + ] + }, + "properties": { + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge Dropbird", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Dropnplug", + "capacity": "256", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-11-03", + "note": "", + "source:date": "2022-03-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.39705, + 48.2576 + ] + }, + "properties": { + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge Mairie Kintzheim", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Parking de la liberté", + "capacity": "32", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-15", + "note": "", + "source:date": "2022-03-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.39882, + 48.253 + ] + }, + "properties": { + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge Mairie Kintzheim", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Parking de la batteuse", + "capacity": "32", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-12-15", + "note": "", + "source:date": "2022-03-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55734, + 47.2201 + ] + }, + "properties": { + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge Enedis Nantes", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Parking Enedis Nantes", + "capacity": "160", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-02", + "note": "", + "source:date": "2022-03-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82319, + 48.2502 + ] + }, + "properties": { + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge Langouet", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Parking Langouet", + "capacity": "32", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-03-09", + "note": "", + "source:date": "2022-03-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67833, + 48.1044 + ] + }, + "properties": { + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge Citedia Rennes", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Citedia Rennes Colombier", + "capacity": "64", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-01-30", + "note": "", + "source:date": "2022-03-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.895146, + 47.0429 + ] + }, + "properties": { + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge Hopital de Cholet", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Parking Hopital de Cholet ", + "capacity": "448", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-08-08", + "note": "", + "source:date": "2022-03-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.63448, + 48.1093 + ] + }, + "properties": { + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge Station Mobile", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Station de recharge mobile 2021", + "capacity": "352", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-08", + "note": "", + "source:date": "2022-03-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44753, + 43.5069 + ] + }, + "properties": { + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge CROUS Pauliane", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "CROUS Pauliane 1", + "capacity": "96", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-16", + "note": "", + "source:date": "2022-03-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44753, + 43.5069 + ] + }, + "properties": { + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge CROUS Pauliane", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "CROUS Pauliane 2", + "capacity": "32", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-06-16", + "note": "", + "source:date": "2022-03-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95241, + 43.2928 + ] + }, + "properties": { + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge ACCOR Castelnaudary", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Parking ACCOR Castelnaudary", + "capacity": "384", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-02", + "note": "", + "source:date": "2022-03-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.149723, + 44.2371439 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUM3RIVIERES1", + "ref": "22504292-faaf-4219-8d24-8f822f74830c", + "name": "CAMPING LES TROIS RIVIERES ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-10", + "note": "DISPONIBLE 24/7", + "source:date": "2022-03-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.00201, + 42.60646 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "329572549", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "INTERMARCHE", + "ref:EU:EVSE": "FRFR1EBMYP", + "ref": "FRFR1EBMYP", + "name": "LA TOUR BAS ELNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-28", + "note": "", + "source:date": "2021-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.67, + 46.69 + ] + }, + "properties": { + "operator": "DIDIER CHARTON-VACHET", + "owner:ref:FR:SIREN": "812676997", + "email": "contact@chartonvachet.fr", + "phone": "0643487753", + "network": "DIDIER CHARTON-VACHET", + "ref:EU:EVSE": "Non concerné", + "ref": "01FPCSPWFH7EW2RD2GQRR3ESW4", + "name": "Borne, Domaine, Charton-Vachet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-18", + "note": "Recharge pendant les heures d'ouverture de la cuverie", + "source:date": "2021-12-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0873262, + 50.5445143 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DOUBLET", + "ref:EU:EVSE": "Non concerné", + "ref": "01FP88MRJPE0EQGPCENVQPGF7P", + "name": "DOUBLET", + "capacity": "8", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2021-09-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3577, + 43.6368 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "310162417", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "LECLERC", + "ref:EU:EVSE": "FROTHESENT113", + "ref": "FROTHESENT113", + "name": "SAINT VINCENT DE TYROSSE", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-01", + "note": "", + "source:date": "2021-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0865, + 43.1076 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "425127685", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "CAPITAINERIE PORT DE GRUISSAN", + "ref:EU:EVSE": "FRFR1EEZUX1", + "ref": "FRFR1EEZUX FRFR1EFKMT FRFR1ELWTM", + "name": "GRUISSAN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-10", + "note": "", + "source:date": "2021-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5801292, + 45.9221544 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "419599980", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "CARREFOUR CONTACT", + "ref:EU:EVSE": "FRFR1ESNPQ", + "ref": "", + "name": "VAL d'OINGT", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-26", + "note": "", + "source:date": "2021-11-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.372946, + 48.919807 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "811290642", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "DRIVEONE", + "ref:EU:EVSE": "FRFR1EBYBZ1", + "ref": "FRFR1EBYBZ FRFR1ECSZW FRFR1EFSVZ FRFR1EPCKC FRFR1EPRKX FRFR1EQCGT FRFR1ESCMD FRFR1ETUQM FRFR1EFYGB FRFR1EEBEA FRFR1EATVB FRFR1EBNMJ", + "name": "AUBERVILLIERS", + "capacity": "14", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-05", + "note": "", + "source:date": "2021-11-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5008902, + 44.7920565 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "510125842", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "LECLERC", + "ref:EU:EVSE": "FROTHEOTHR228", + "ref": "FROTHEOTHR228", + "name": "ARES", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-04-19", + "note": "", + "source:date": "2021-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.61, + 46.34 + ] + }, + "properties": { + "operator": "Ekoplug", + "owner:ref:FR:SIREN": "898168273", + "email": "contact@ekoplug.fr", + "phone": "0980770104", + "network": "aucun", + "ref:EU:EVSE": "FRA68P68021001", + "ref": "a609bf84-17a2-4583-80fe-2f09f0659215", + "name": "gite danse des etoiles", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-15", + "note": "", + "source:date": "2022-03-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7584632000000058, + 46.135216299999996 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "494457062", + "email": "contact@porte90.fr", + "phone": "", + "network": "PORTE 90", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P21251821", + "name": "Parking LA TOURTERELLE", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-29", + "note": "Recharge uniquement disponible pendant l'ouverture de l'entreprise SARL RUITER", + "source:date": "2021-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7584632000000058, + 46.135216299999996 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "494457062", + "email": "contact@porte90.fr", + "phone": "", + "network": "PORTE 90", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P21251821", + "name": "Parking LA TOURTERELLE", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-29", + "note": "Recharge uniquement disponible pendant l'ouverture de l'entreprise SARL RUITER", + "source:date": "2021-11-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.495418, + 46.675892 + ] + }, + "properties": { + "operator": "LE BISTRO D'HUGO", + "owner:ref:FR:SIREN": "828451815", + "email": "contact@lebistrodhugo.com", + "phone": "0384477147", + "network": "LE BISTRO D'HUGO", + "ref:EU:EVSE": "Non concerné", + "ref": "01FNDTK7FW5XH86EAJYX4N0JGH", + "name": "LE BISTRO D'HUGO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-01", + "note": "", + "source:date": "2021-11-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "phone": "", + "network": "GAZ DE BORDEAUX", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2011075", + "name": "Parking GAZ DE BORDEAUX", + "capacity": "10", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "", + "source:date": "2022-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "phone": "", + "network": "GAZ DE BORDEAUX", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2011075", + "name": "Parking GAZ DE BORDEAUX", + "capacity": "10", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2022-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "phone": "", + "network": "GAZ DE BORDEAUX", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2011075", + "name": "Parking GAZ DE BORDEAUX", + "capacity": "10", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "", + "source:date": "2022-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "phone": "", + "network": "GAZ DE BORDEAUX", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2011075", + "name": "Parking GAZ DE BORDEAUX", + "capacity": "10", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2022-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "phone": "", + "network": "GAZ DE BORDEAUX", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2011075", + "name": "Parking GAZ DE BORDEAUX", + "capacity": "10", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "", + "source:date": "2022-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "phone": "", + "network": "GAZ DE BORDEAUX", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2011075", + "name": "Parking GAZ DE BORDEAUX", + "capacity": "10", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "", + "source:date": "2022-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "phone": "", + "network": "GAZ DE BORDEAUX", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2011075", + "name": "Parking GAZ DE BORDEAUX", + "capacity": "10", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "", + "source:date": "2022-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "phone": "", + "network": "GAZ DE BORDEAUX", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2011075", + "name": "Parking GAZ DE BORDEAUX", + "capacity": "10", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "", + "source:date": "2022-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "phone": "", + "network": "GAZ DE BORDEAUX", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2011075", + "name": "Parking GAZ DE BORDEAUX", + "capacity": "10", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "", + "source:date": "2022-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "phone": "", + "network": "GAZ DE BORDEAUX", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P2011075", + "name": "Parking GAZ DE BORDEAUX", + "capacity": "10", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "", + "source:date": "2022-07-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8323045, + 50.6733928 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "TALK FUNDRAISING", + "ref:EU:EVSE": "Non concerné", + "ref": "01FMVR49DJC50TG0T85G94Y3VT", + "name": "TALK FUNDRAISING", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2021-04-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.109555, + 49.108611 + ] + }, + "properties": { + "operator": "CHAPITEAUX SERVICE", + "owner:ref:FR:SIREN": "408663763", + "email": "chapiteaux-service@wanadoo.fr", + "phone": "0387099123", + "network": "CHAPITEAUX SERVICE", + "ref:EU:EVSE": "Non concerné", + "ref": "058f5056-4884-11ec-81d3-0242ac130003", + "name": "CHAPITEAUX SERVICE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-11-17", + "note": "Recharge uniquement pendant les horaires d'ouvertures", + "source:date": "2021-11-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.374363, + 48.663549 + ] + }, + "properties": { + "operator": "Daltoner Avranches", + "owner:ref:FR:SIREN": "448187617", + "email": "denis.lot@daltoner.fr", + "phone": "0608471175", + "network": "Daltoner Avranches", + "ref:EU:EVSE": "Non concerné", + "ref": "01FPGEN0J55GJS4KRGQHZCXJCE", + "name": "Daltoner Avranches", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-09", + "note": "Point de recharge uniquement disponible aux horaires d'ouverture", + "source:date": "2021-12-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.506315, + 48.904942 + ] + }, + "properties": { + "operator": "Mickael Auto", + "owner:ref:FR:SIREN": "488263203", + "email": "mickaelauto@wanadoo.fr", + "phone": "0233616130", + "network": "Mickael Auto", + "ref:EU:EVSE": "Non concerné", + "ref": "01FPHGWNSBY5R2WDMKCZGZ7DKN", + "name": "mickael Auto", + "capacity": "1", + "socket:typee": "TRUE", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-10", + "note": "Point de recharge uniquement disponible aux horaires d'ouverture", + "source:date": "2021-12-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23, + 43.51 + ] + }, + "properties": { + "operator": "Société SIPECC", + "owner:ref:FR:SIREN": "830690715", + "email": "contact@sipecc.fr", + "phone": "0442786952", + "network": "Réseau de recharge SIPECC", + "ref:EU:EVSE": "Non concerné", + "ref": "01FPWFYAQ4YXZHYKY5V5MV053Y", + "name": "SIPECC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2021-12-10", + "note": "Recharge disponible uniquement pendant les heures d'ouvertures du site", + "source:date": "2021-12-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24, + 43.51 + ] + }, + "properties": { + "operator": "JAV INVESTISSEMENT", + "owner:ref:FR:SIREN": "479774051", + "email": "peggy.orssaud@jav.fr", + "phone": "0486687630", + "network": "RESEAU DE RECHARGE JAV", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "JAV investissement Velaux", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Non accessible", + "start_date": "2022-02-28", + "note": "", + "source:date": "2022-03-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4, + 43.44 + ] + }, + "properties": { + "operator": "SIPECC", + "owner:ref:FR:SIREN": "095720314", + "email": "contact@sipecc.fr", + "phone": "0442786952", + "network": "Borne de recharge HEXAOM Bouc bel air", + "ref:EU:EVSE": "Non concerné", + "ref": "d536b72d-7329-4ad7-8702-c600af302627", + "name": "Borne de recharge HEXAOM", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Non accessible", + "start_date": "2022-03-24", + "note": "", + "source:date": "2022-03-25", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24, + 43.4 + ] + }, + "properties": { + "operator": "SARL VAHE", + "owner:ref:FR:SIREN": "509530572", + "email": "eknacat@hotmail.fr", + "phone": "0612666006", + "network": "Réseau de recharge VAHE EKNADISSIAN", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "VAHE EKNADISSIAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-09-30", + "note": "Recharge disponible", + "source:date": "2022-10-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.67, + 49.47 + ] + }, + "properties": { + "operator": "SAS DE L'AILETTE", + "owner:ref:FR:SIREN": "394533632", + "email": "ronan.pieyns@ailette.fr", + "phone": "0323248485", + "network": "HOTEL DU GOLF DE L'AILETTE", + "ref:EU:EVSE": "Non concerné", + "ref": "01FPYKKPMQ0CWRZBX3A707M325", + "name": "HOTEL DU GOLF DE L'AILETTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "Recharge réservée à la clientèle de l'hôtel et du restaurant", + "source:date": "2021-12-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77616501, + 45.67892728 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "833942725", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "BECABLE", + "ref:EU:EVSE": "FRBECP69027A", + "ref": "", + "name": "Be Câblé - Raption 100 - Brignais - Industrie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2022-06-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77616501, + 45.67892728 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "833942725", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "BECABLE", + "ref:EU:EVSE": "FRBECP69027A", + "ref": "", + "name": "Be Câblé - Raption 100 - Brignais - Industrie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2022-06-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77616501, + 45.67892728 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "833942725", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "BECABLE", + "ref:EU:EVSE": "FRBECP69027A", + "ref": "", + "name": "Be Câblé - Raption 100 - Brignais - Industrie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2022-06-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0925522, + 44.3457871 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "833942725", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "BECABLE", + "ref:EU:EVSE": "FRBECP40217A", + "ref": "", + "name": "Be Câblé - INGETEAM - Parentis-en-Born - Camping", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-21", + "note": "", + "source:date": "2022-06-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0925522, + 44.3457871 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "833942725", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "BECABLE", + "ref:EU:EVSE": "FRBECP40217A", + "ref": "", + "name": "Be Câblé - INGETEAM - Parentis-en-Born - Camping", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-21", + "note": "", + "source:date": "2022-06-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0925522, + 44.3457871 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "833942725", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "BECABLE", + "ref:EU:EVSE": "FRBECP40217A", + "ref": "", + "name": "Be Câblé - INGETEAM - Parentis-en-Born - Camping", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-21", + "note": "", + "source:date": "2022-06-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0925522, + 44.3457871 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "833942725", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "BECABLE", + "ref:EU:EVSE": "FRBECP40217A", + "ref": "", + "name": "Be Câblé - INGETEAM - Parentis-en-Born - Camping", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-21", + "note": "", + "source:date": "2022-06-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7573375, + 46.3641578 + ] + }, + "properties": { + "operator": "sa les broyers", + "owner:ref:FR:SIREN": "451685689", + "email": "pcoquard@chateaudesbroyers.fr", + "phone": "0385367034", + "network": "chateau des broyers", + "ref:EU:EVSE": "Non concerné", + "ref": "bd947ca4-5e7c-11ec-bf63-0242ac130002", + "name": "la chapelle de guinchay", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-01", + "note": "recharge uniquement pendant les horaires d'ouverture du site", + "source:date": "2021-12-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.77247, + 50.39143 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "216203711", + "email": "exploitation@freshmile.com", + "phone": "0391830700", + "network": "FRESHMILE", + "ref:EU:EVSE": "FRFR1EQTGP1", + "ref": "FR*FR1*EQTGP*1", + "name": "GIVENCHY EN GOHELLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Réservé PMR", + "start_date": "2021-07-26", + "note": "", + "source:date": "2021-12-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.91136, + 50.3822 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "216207241", + "email": "exploitation@freshmile.com", + "phone": "0391830700", + "network": "FRESMILE", + "ref:EU:EVSE": "FRFR1EGMAM1", + "ref": "FR*FR1*EGMAM*1", + "name": "BOIS BERNARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-08", + "note": "", + "source:date": "2021-12-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.949769135, + 43.6344804 + ] + }, + "properties": { + "operator": "evzen (SMEG Développement)", + "owner:ref:FR:SIREN": "799669155", + "email": "contact@evzen.com", + "phone": "37792050403", + "network": "evzen", + "ref:EU:EVSE": "FRFR1PRATIESIM0E", + "ref": "", + "name": "Grasse, Centre Hippique", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-01", + "note": "", + "source:date": "2021-12-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.943865577251607, + 43.53867520000001 + ] + }, + "properties": { + "operator": "evzen (SMEG Développement)", + "owner:ref:FR:SIREN": "950559567", + "email": "contact@evzen.com", + "phone": "37792050403", + "network": "evzen", + "ref:EU:EVSE": "FRFR1PR8SVAECJXV", + "ref": "", + "name": "Mandelieu-la-Napoule, Hotel Ilot du Golf", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-01", + "note": "", + "source:date": "2021-12-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.943865577251607, + 43.53867520000001 + ] + }, + "properties": { + "operator": "evzen (SMEG Développement)", + "owner:ref:FR:SIREN": "950559567", + "email": "contact@evzen.com", + "phone": "37792050403", + "network": "evzen", + "ref:EU:EVSE": "FRFR1PR8SVAECJXV", + "ref": "", + "name": "Mandelieu-la-Napoule, Hotel Ilot du Golf", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-01", + "note": "", + "source:date": "2021-12-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.943865577251607, + 43.53867520000001 + ] + }, + "properties": { + "operator": "evzen (SMEG Développement)", + "owner:ref:FR:SIREN": "950559567", + "email": "contact@evzen.com", + "phone": "37792050403", + "network": "evzen", + "ref:EU:EVSE": "FRFR1PR8SVAECJXV", + "ref": "", + "name": "Mandelieu-la-Napoule, Hotel Ilot du Golf", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-01", + "note": "", + "source:date": "2021-12-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.943865577251607, + 43.53867520000001 + ] + }, + "properties": { + "operator": "evzen (SMEG Développement)", + "owner:ref:FR:SIREN": "950559567", + "email": "contact@evzen.com", + "phone": "37792050403", + "network": "evzen", + "ref:EU:EVSE": "FRFR1PR8SVAECJXV", + "ref": "", + "name": "Mandelieu-la-Napoule, Hotel Ilot du Golf", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-09-01", + "note": "", + "source:date": "2021-12-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.949769135, + 43.6344804 + ] + }, + "properties": { + "operator": "evzen (SMEG Développement)", + "owner:ref:FR:SIREN": "799669155", + "email": "contact@evzen.com", + "phone": "37792050403", + "network": "evzen", + "ref:EU:EVSE": "FRFR1PRATIESIM0E", + "ref": "", + "name": "Grasse, Centre Hippique", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-01", + "note": "", + "source:date": "2021-12-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1659997, + 50.714811999999 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "SCI 35 RUE DE ROUBAIX", + "ref:EU:EVSE": "Non concerné", + "ref": "01FMQAER19NXCXX01V4RXNQ0GM", + "name": "SCI 35 RUE DE ROUBAIX", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-17", + "note": "", + "source:date": "2021-11-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6550211, + 50.5201558 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "SCI CD", + "ref:EU:EVSE": "Non concerné", + "ref": "01FMKXHPWSE1JVWBB6W02W3YMP", + "name": "SCI CD", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-09", + "note": "", + "source:date": "2021-08-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.381371271658948, + 46.073133287506614 + ] + }, + "properties": { + "operator": "Kotelon", + "owner:ref:FR:SIREN": "431559483", + "email": "marc.kotelon@montblanc-hotel.fr", + "phone": "0450038655", + "network": "Hôtel Mont Blanc", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Hotel Mont Blanc - Saint Pierre en Faucigny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-07", + "note": "Recharge avec badge RFID à demander à l'accueil de l'Hôtel", + "source:date": "2021-10-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.470821, + 48.757046 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE217811", + "ref": "FR*SOD*S*SDE2*178*1*_*_", + "name": "LANNION AEROPORT", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.517615, + 48.784696 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE218011", + "ref": "FR*SOD*S*SDE2*180*1*_*_", + "name": "PLEUMEUR BODOU - POLE PHOENIX", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.63257, + 48.654836 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE217911", + "ref": "FR*SOD*S*SDE2*179*1*_*_", + "name": "PLESTIN LES GREVES - PLACE DU 19 MARS 1962", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.735503, + 48.180209 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE217311", + "ref": "FR*SOD*S*SDE2*173*1*_*_", + "name": "LOUDEAC - RAPIDE ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.453745, + 48.731562 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE217611", + "ref": "FR*SOD*S*SDE2*176*1*_*_", + "name": "LANNION URSULINES", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.441176, + 48.238331 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE217411", + "ref": "FR*SOD*S*SDE2*174*1*_*_", + "name": "SAINT VRAN-LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.467023, + 48.606523 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE218211", + "ref": "FR*SOD*S*SDE2*182*1*_*_", + "name": "PLOUARET - RUE DE LA GARE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.473512, + 48.611415 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE218111", + "ref": "FR*SOD*S*SDE2*181*1*_*_", + "name": "PLOUARET - RUE LOUIS PRIGENT", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.972857, + 48.541696 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE218512", + "ref": "FR*SOD*S*SDE2*185*1*_*_", + "name": "CHATELAUDREN-18 RUE PASTEUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.873183, + 48.663328 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE218311", + "ref": "FR*SOD*S*SDE2*183*1*_*_", + "name": "TREVENEUC-RUE DE TOURNEBRIDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.873183, + 48.663328 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE218312", + "ref": "FR*SOD*S*SDE2*183*1*_*_", + "name": "TREVENEUC-RUE DE TOURNEBRIDE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.986308, + 48.632057 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE218411", + "ref": "FR*SOD*S*SDE2*184*1*_*_", + "name": "LANVOLLON-RUE SAINT YVES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.986308, + 48.632057 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE218412", + "ref": "FR*SOD*S*SDE2*184*1*_*_", + "name": "LANVOLLON-RUE SAINT YVES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.972857, + 48.541696 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE218511", + "ref": "FR*SOD*S*SDE2*185*1*_*_", + "name": "CHATELAUDREN-18 RUE PASTEUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.229598, + 48.521725 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE218912", + "ref": "FR*SOD*S*SDE2*189*1*_*_", + "name": "PLANCOET-LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.229598, + 48.521725 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE218911", + "ref": "FR*SOD*S*SDE2*189*1*_*_", + "name": "PLANCOET-LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2023-02-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.441176, + 48.238331 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE217412", + "ref": "FR*SOD*S*SDE2*174*1*_*_", + "name": "SAINT VRAN-LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.445852, + 48.422768 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE217211", + "ref": "FR*SOD*S*SDE2*172*1*_*_", + "name": "PLESTAN - RAPIDE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.358388, + 48.812908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22511", + "ref": "FR*SOD*S*SDE2*25*1*_*_", + "name": "TREVOU TREGUIGNEC-RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.07167, + 48.745758 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25312", + "ref": "FR*SOD*S*SDE2*53*1*_*_", + "name": "PLOURIVO-LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.583354, + 48.102253 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25412", + "ref": "FR*SOD*S*SDE2*54*1*_*_", + "name": "PLUMIEUX-PARKING PLACE 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.982655, + 48.486935 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25512", + "ref": "FR*SOD*S*SDE2*55*1*_*_", + "name": "LA VICOMTE SUR RANCE-PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.982655, + 48.486935 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25511", + "ref": "FR*SOD*S*SDE2*55*1*_*_", + "name": "LA VICOMTE SUR RANCE-PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.951, + 48.5108 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25611", + "ref": "FR*SOD*S*SDE2*56*1*_*_", + "name": "PLEUDIHEN SUR RANCE-PARKING COUR DU VERGER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.817927, + 48.569214 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25711", + "ref": "FR*SOD*S*SDE2*57*1*_*_", + "name": "PORDIC-PLACE E. GUERET DEVANT LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.817927, + 48.569214 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25712", + "ref": "FR*SOD*S*SDE2*57*1*_*_", + "name": "PORDIC-PLACE E. GUERET DEVANT LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.857123, + 48.554886 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25811", + "ref": "FR*SOD*S*SDE2*58*1*_*_", + "name": "TREMELOIR-RUE ST FIACRE PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.857123, + 48.554886 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25812", + "ref": "FR*SOD*S*SDE2*58*1*_*_", + "name": "TREMELOIR-RUE ST FIACRE PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.295882, + 48.813103 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25912", + "ref": "FR*SOD*S*SDE2*59*1*_*_", + "name": "PENVENAN-RUE DE LA POSTE PARKING FOYER LOGEMENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.295882, + 48.813103 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25911", + "ref": "FR*SOD*S*SDE2*59*1*_*_", + "name": "PENVENAN-RUE DE LA POSTE PARKING FOYER LOGEMENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.305036, + 48.777443 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE26111", + "ref": "FR*SOD*S*SDE2*61*1*_*_", + "name": "CAMLEZ-PARKING DU 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.305036, + 48.777443 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE26112", + "ref": "FR*SOD*S*SDE2*61*1*_*_", + "name": "CAMLEZ-PARKING DU 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.004982, + 48.526901 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE26212", + "ref": "FR*SOD*S*SDE2*62*1*_*_", + "name": "PLOUER SUR RANCE-RUE DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.004982, + 48.526901 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE26211", + "ref": "FR*SOD*S*SDE2*62*1*_*_", + "name": "PLOUER SUR RANCE-RUE DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.768753, + 48.506653 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE26311", + "ref": "FR*SOD*S*SDE2*63*1*_*_", + "name": "SAINT BRIEUC-53 BOULEVARD CARNOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.583354, + 48.102253 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25411", + "ref": "FR*SOD*S*SDE2*54*1*_*_", + "name": "PLUMIEUX-PARKING PLACE 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.07167, + 48.745758 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25311", + "ref": "FR*SOD*S*SDE2*53*1*_*_", + "name": "PLOURIVO-LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.397579, + 48.222214 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE26712", + "ref": "FR*SOD*S*SDE2*67*1*_*_", + "name": "GLOMEL-PLACE DU CENTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.441761, + 48.807404 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25112", + "ref": "FR*SOD*S*SDE2*51*1*_*_", + "name": "PERROS GUIREC-RUE A. LE BRAZ PARKING DU PORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.34587, + 48.274349 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE24411", + "ref": "FR*SOD*S*SDE2*44*1*_*_", + "name": "EREAC-RUE BERTRAND DU GUESGLIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.34587, + 48.274349 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE24412", + "ref": "FR*SOD*S*SDE2*44*1*_*_", + "name": "EREAC-RUE BERTRAND DU GUESGLIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.53545, + 48.198631 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE24511", + "ref": "FR*SOD*S*SDE2*45*1*_*_", + "name": "LAURENAN-D16 - PARKING SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.53545, + 48.198631 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE24512", + "ref": "FR*SOD*S*SDE2*45*1*_*_", + "name": "LAURENAN-D16 - PARKING SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.81773, + 48.408218 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE24611", + "ref": "FR*SOD*S*SDE2*46*1*_*_", + "name": "PLAINTEL-PLACE DU GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.81773, + 48.408218 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE24612", + "ref": "FR*SOD*S*SDE2*46*1*_*_", + "name": "PLAINTEL-PLACE DU GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.744903, + 48.446144 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE24711", + "ref": "FR*SOD*S*SDE2*47*1*_*_", + "name": "PLEDRAN-PLACE J. TANGUY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.744903, + 48.446144 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE24712", + "ref": "FR*SOD*S*SDE2*47*1*_*_", + "name": "PLEDRAN-PLACE J. TANGUY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.829592, + 48.601341 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE24811", + "ref": "FR*SOD*S*SDE2*48*1*_*_", + "name": "BINIC-AVENUE GENERAL DE GAULLE PARKING SALLE ESTRAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.829592, + 48.601341 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE24812", + "ref": "FR*SOD*S*SDE2*48*1*_*_", + "name": "BINIC-AVENUE GENERAL DE GAULLE PARKING SALLE ESTRAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.148005, + 48.56057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE24912", + "ref": "FR*SOD*S*SDE2*49*1*_*_", + "name": "GUINGAMP-PARKING PLACE DE VERDUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.148005, + 48.56057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE24911", + "ref": "FR*SOD*S*SDE2*49*1*_*_", + "name": "GUINGAMP-PARKING PLACE DE VERDUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.66815, + 48.51302 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25012", + "ref": "FR*SOD*S*SDE2*50*1*_*_", + "name": "HILLION-RUE DE BEL ORIENT PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.66815, + 48.51302 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25011", + "ref": "FR*SOD*S*SDE2*50*1*_*_", + "name": "HILLION-RUE DE BEL ORIENT PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.441761, + 48.807404 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25111", + "ref": "FR*SOD*S*SDE2*51*1*_*_", + "name": "PERROS GUIREC-RUE A. LE BRAZ PARKING DU PORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.397579, + 48.222214 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE26711", + "ref": "FR*SOD*S*SDE2*67*1*_*_", + "name": "GLOMEL-PLACE DU CENTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.26137, + 48.7452 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE26812", + "ref": "FR*SOD*S*SDE2*68*1*_*_", + "name": "LA ROCHE DERRIEN-PLACE DU PILORI / PLACE DU MARTRAY PARKING DU BOULODROME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.413295, + 48.794518 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28711", + "ref": "FR*SOD*S*SDE2*87*1*_*_", + "name": "LOUANNEC-ROUTE DE PERROS PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.968046, + 48.541393 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27811", + "ref": "FR*SOD*S*SDE2*78*1*_*_", + "name": "CHATELAUDREN-PLACE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2244, + 48.334202 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27911", + "ref": "FR*SOD*S*SDE2*79*1*_*_", + "name": "HENANBIHEN-ROUTE DHENANSAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.030685, + 48.800983 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28011", + "ref": "FR*SOD*S*SDE2*80*1*_*_", + "name": "PLOUBAZLANEC-CITE PARK NEVEZ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.030685, + 48.800983 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28012", + "ref": "FR*SOD*S*SDE2*80*1*_*_", + "name": "PLOUBAZLANEC-CITE PARK NEVEZ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.447615, + 48.705162 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28111", + "ref": "FR*SOD*S*SDE2*81*1*_*_", + "name": "PLOUBEZRE-PLACE DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.447615, + 48.705162 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28112", + "ref": "FR*SOD*S*SDE2*81*1*_*_", + "name": "PLOUBEZRE-PLACE DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.984804, + 48.747627 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28211", + "ref": "FR*SOD*S*SDE2*82*1*_*_", + "name": "PLOUEZEC-ROUTE DE ST BRIEUC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.984804, + 48.747627 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28212", + "ref": "FR*SOD*S*SDE2*82*1*_*_", + "name": "PLOUEZEC-ROUTE DE ST BRIEUC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.238562, + 48.797573 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28311", + "ref": "FR*SOD*S*SDE2*83*1*_*_", + "name": "PLOUGUIEL-PLACE ANCIENS COMBATTANTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.238562, + 48.797573 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28312", + "ref": "FR*SOD*S*SDE2*83*1*_*_", + "name": "PLOUGUIEL-PLACE ANCIENS COMBATTANTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.408021, + 48.624866 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28411", + "ref": "FR*SOD*S*SDE2*84*1*_*_", + "name": "PLURIEN-RUE DE MONTANGUE DEVANT SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.408021, + 48.624866 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28412", + "ref": "FR*SOD*S*SDE2*84*1*_*_", + "name": "PLURIEN-RUE DE MONTANGUE DEVANT SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.300457, + 48.630089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28511", + "ref": "FR*SOD*S*SDE2*85*1*_*_", + "name": "BEGARD-PLACE DU CENTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.300457, + 48.630089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28512", + "ref": "FR*SOD*S*SDE2*85*1*_*_", + "name": "BEGARD-PLACE DU CENTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.279891, + 48.751244 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28611", + "ref": "FR*SOD*S*SDE2*86*1*_*_", + "name": "LANGOAT-RUE DES ETANGS PARKING TERRAIN FOOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.279891, + 48.751244 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28612", + "ref": "FR*SOD*S*SDE2*86*1*_*_", + "name": "LANGOAT-RUE DES ETANGS PARKING TERRAIN FOOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2244, + 48.334202 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27912", + "ref": "FR*SOD*S*SDE2*79*1*_*_", + "name": "HENANBIHEN-ROUTE DHENANSAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.968046, + 48.541393 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27812", + "ref": "FR*SOD*S*SDE2*78*1*_*_", + "name": "CHATELAUDREN-PLACE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.26137, + 48.7452 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE26811", + "ref": "FR*SOD*S*SDE2*68*1*_*_", + "name": "LA ROCHE DERRIEN-PLACE DU PILORI / PLACE DU MARTRAY PARKING DU BOULODROME", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.396323, + 48.545696 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27712", + "ref": "FR*SOD*S*SDE2*77*1*_*_", + "name": "BELLE ISLE EN TERRE-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.617642, + 48.276394 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE26911", + "ref": "FR*SOD*S*SDE2*69*1*_*_", + "name": "PLESSALA-PLACE DU MARCHE PARKING EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.617642, + 48.276394 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE26912", + "ref": "FR*SOD*S*SDE2*69*1*_*_", + "name": "PLESSALA-PLACE DU MARCHE PARKING EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.042515, + 48.442223 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27011", + "ref": "FR*SOD*S*SDE2*70*1*_*_", + "name": "LEHON-LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.042515, + 48.442223 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27012", + "ref": "FR*SOD*S*SDE2*70*1*_*_", + "name": "LEHON-LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75524, + 48.34719 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27112", + "ref": "FR*SOD*S*SDE2*71*1*_*_", + "name": "PLOEUC L HERMITAGE-RUE DE BEAULIEU PARKING ARRIERE EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.75524, + 48.34719 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27111", + "ref": "FR*SOD*S*SDE2*71*1*_*_", + "name": "PLOEUC L HERMITAGE-RUE DE BEAULIEU PARKING ARRIERE EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.243134, + 48.73119 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27212", + "ref": "FR*SOD*S*SDE2*72*1*_*_", + "name": "POMMERIT JAUDY-RUE DE LA GARE PARKING BOULANGERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.243134, + 48.73119 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27211", + "ref": "FR*SOD*S*SDE2*72*1*_*_", + "name": "POMMERIT JAUDY-RUE DE LA GARE PARKING BOULANGERIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.513678, + 48.275558 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27311", + "ref": "FR*SOD*S*SDE2*73*1*_*_", + "name": "QUEVERT-RUE DU VAL PARKING MAISON DES ASSOCIATIONS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.513678, + 48.275558 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27312", + "ref": "FR*SOD*S*SDE2*73*1*_*_", + "name": "QUEVERT-RUE DU VAL PARKING MAISON DES ASSOCIATIONS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.837421, + 48.653999 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27412", + "ref": "FR*SOD*S*SDE2*74*1*_*_", + "name": "SAINT QUAY PORTRIEUX-PLACE DARMES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.837421, + 48.653999 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27411", + "ref": "FR*SOD*S*SDE2*74*1*_*_", + "name": "SAINT QUAY PORTRIEUX-PLACE DARMES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.175645, + 48.347656 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27611", + "ref": "FR*SOD*S*SDE2*76*1*_*_", + "name": "YVIGNAC LA TOUR-RUE DU 8 MAI 1945 PARKING DERRIERE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.175645, + 48.347656 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27612", + "ref": "FR*SOD*S*SDE2*76*1*_*_", + "name": "YVIGNAC LA TOUR-RUE DU 8 MAI 1945 PARKING DERRIERE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.396323, + 48.545696 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE27711", + "ref": "FR*SOD*S*SDE2*77*1*_*_", + "name": "BELLE ISLE EN TERRE-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.423825, + 48.283971 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE24311", + "ref": "FR*SOD*S*SDE2*43*1*_*_", + "name": "MAEL CARHAIX-RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.423825, + 48.283971 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE24312", + "ref": "FR*SOD*S*SDE2*43*1*_*_", + "name": "MAEL CARHAIX-RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.214817, + 48.347222 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE24111", + "ref": "FR*SOD*S*SDE2*41*1*_*_", + "name": "LANRIVAIN-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.449318, + 48.607483 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21212", + "ref": "FR*SOD*S*SDE2*12*1*_*_", + "name": "LE VIEUX MARCHE-PLACE ANGELA DUVAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.340143, + 48.566673 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21312", + "ref": "FR*SOD*S*SDE2*13*1*_*_", + "name": "LOUARGAT-PASSAGE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.340143, + 48.566673 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21311", + "ref": "FR*SOD*S*SDE2*13*1*_*_", + "name": "LOUARGAT-PASSAGE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.295955, + 48.394058 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21412", + "ref": "FR*SOD*S*SDE2*14*1*_*_", + "name": "MAEL PESTIVIEN-LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.295955, + 48.394058 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21411", + "ref": "FR*SOD*S*SDE2*14*1*_*_", + "name": "MAEL PESTIVIEN-LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.269847, + 48.59726 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21512", + "ref": "FR*SOD*S*SDE2*15*1*_*_", + "name": "PEDERNEC-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.269847, + 48.59726 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21511", + "ref": "FR*SOD*S*SDE2*15*1*_*_", + "name": "PEDERNEC-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.444974, + 48.815392 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21612", + "ref": "FR*SOD*S*SDE2*16*1*_*_", + "name": "PERROS GUIREC-PLACE DE LHOTEL DE VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.444974, + 48.815392 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21611", + "ref": "FR*SOD*S*SDE2*16*1*_*_", + "name": "PERROS GUIREC-PLACE DE LHOTEL DE VILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.000515, + 48.536179 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21712", + "ref": "FR*SOD*S*SDE2*17*1*_*_", + "name": "PLOUAGAT-PARKING DE LA GRANDE RUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.000515, + 48.536179 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21711", + "ref": "FR*SOD*S*SDE2*17*1*_*_", + "name": "PLOUAGAT-PARKING DE LA GRANDE RUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.191425, + 48.674393 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21812", + "ref": "FR*SOD*S*SDE2*18*1*_*_", + "name": "PLOUEC DU TRIEUX-PLACE DE LA PAIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.191425, + 48.674393 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21811", + "ref": "FR*SOD*S*SDE2*18*1*_*_", + "name": "PLOUEC DU TRIEUX-PLACE DE LA PAIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.228862, + 48.842125 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21911", + "ref": "FR*SOD*S*SDE2*19*1*_*_", + "name": "PLOUGRESCANT-RUE ST GONERY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.228862, + 48.842125 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21912", + "ref": "FR*SOD*S*SDE2*19*1*_*_", + "name": "PLOUGRESCANT-RUE ST GONERY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.523392, + 48.679855 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22011", + "ref": "FR*SOD*S*SDE2*20*1*_*_", + "name": "PLOUMILLIAU-RUE ANATOLE LE BRAZ PARKING BARZIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.449318, + 48.607483 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21211", + "ref": "FR*SOD*S*SDE2*12*1*_*_", + "name": "LE VIEUX MARCHE-PLACE ANGELA DUVAL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-02-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.982932, + 48.631336 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21112", + "ref": "FR*SOD*S*SDE2*11*1*_*_", + "name": "LANVOLLON-RUE DES FONTAINES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.214817, + 48.347222 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE24112", + "ref": "FR*SOD*S*SDE2*41*1*_*_", + "name": "LANRIVAIN-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.982932, + 48.631336 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21111", + "ref": "FR*SOD*S*SDE2*11*1*_*_", + "name": "LANVOLLON-RUE DES FONTAINES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.165161, + 48.61179 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE217112", + "ref": "FR*SOD*S*SDE2*171*1*_*_", + "name": "TREGONNEAU-LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.947672, + 48.556736 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE2112", + "ref": "FR*SOD*S*SDE2*1*1*_*_", + "name": "PLELO-RUE DES ECOLES PARKING EN FACE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.947672, + 48.556736 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE2111", + "ref": "FR*SOD*S*SDE2*1*1*_*_", + "name": "PLELO-RUE DES ECOLES PARKING EN FACE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-11-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.347963, + 48.672264 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE2311", + "ref": "FR*SOD*S*SDE2*3*1*_*_", + "name": "CAVAN-RUE MAURICE DENIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.347963, + 48.672264 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE2312", + "ref": "FR*SOD*S*SDE2*3*1*_*_", + "name": "CAVAN-RUE MAURICE DENIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.342592, + 48.76889 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE2411", + "ref": "FR*SOD*S*SDE2*4*1*_*_", + "name": "COATREVEN-RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.342592, + 48.76889 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE2412", + "ref": "FR*SOD*S*SDE2*4*1*_*_", + "name": "COATREVEN-RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.180457, + 48.22707 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE2611", + "ref": "FR*SOD*S*SDE2*6*1*_*_", + "name": "GOUAREC-RUE DU MOULIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.180457, + 48.22707 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE2612", + "ref": "FR*SOD*S*SDE2*6*1*_*_", + "name": "GOUAREC-RUE DU MOULIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.184587, + 48.556637 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE2711", + "ref": "FR*SOD*S*SDE2*7*1*_*_", + "name": "GRACES-PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.184587, + 48.556637 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE2712", + "ref": "FR*SOD*S*SDE2*7*1*_*_", + "name": "GRACES-PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20627, + 48.6227 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE2911", + "ref": "FR*SOD*S*SDE2*9*1*_*_", + "name": "KERMOROCH-PLACE DE L EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20627, + 48.6227 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE2912", + "ref": "FR*SOD*S*SDE2*9*1*_*_", + "name": "KERMOROCH-PLACE DE L EGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.716298, + 48.493778 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21012", + "ref": "FR*SOD*S*SDE2*10*1*_*_", + "name": "LANGUEUX-PLACE MITTERRAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-10-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.716298, + 48.493778 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE21011", + "ref": "FR*SOD*S*SDE2*10*1*_*_", + "name": "LANGUEUX-PLACE MITTERRAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-10-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.523392, + 48.679855 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22012", + "ref": "FR*SOD*S*SDE2*20*1*_*_", + "name": "PLOUMILLIAU-RUE ANATOLE LE BRAZ PARKING BARZIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.914907, + 48.509109 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22111", + "ref": "FR*SOD*S*SDE2*21*1*_*_", + "name": "PLOUVARA-RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.914907, + 48.509109 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22112", + "ref": "FR*SOD*S*SDE2*21*1*_*_", + "name": "PLOUVARA-RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.567519, + 48.683102 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22211", + "ref": "FR*SOD*S*SDE2*22*1*_*_", + "name": "SAINT MICHEL EN GREVE-ROUTE D ARVOR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.084445, + 48.405834 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23212", + "ref": "FR*SOD*S*SDE2*32*1*_*_", + "name": "LE HINGLE-PLACE DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.084445, + 48.405834 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23211", + "ref": "FR*SOD*S*SDE2*32*1*_*_", + "name": "LE HINGLE-PLACE DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00721, + 48.696449 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23312", + "ref": "FR*SOD*S*SDE2*33*1*_*_", + "name": "PLEHEDEL-RUE DU DR MAHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00721, + 48.696449 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23311", + "ref": "FR*SOD*S*SDE2*33*1*_*_", + "name": "PLEHEDEL-RUE DU DR MAHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.218302, + 48.433086 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23412", + "ref": "FR*SOD*S*SDE2*34*1*_*_", + "name": "PLELAN LE PETIT-RUE DES ROUAIRIES PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.218302, + 48.433086 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23411", + "ref": "FR*SOD*S*SDE2*34*1*_*_", + "name": "PLELAN LE PETIT-RUE DES ROUAIRIES PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.056249, + 48.531796 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23512", + "ref": "FR*SOD*S*SDE2*35*1*_*_", + "name": "PLESLIN TRIGAVOU-LE BOURG PARKING DERRIERE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.056249, + 48.531796 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23511", + "ref": "FR*SOD*S*SDE2*35*1*_*_", + "name": "PLESLIN TRIGAVOU-LE BOURG PARKING DERRIERE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.386452, + 48.807682 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23611", + "ref": "FR*SOD*S*SDE2*36*1*_*_", + "name": "TRELEVERN-PLACE DES AIGUILLES PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.386452, + 48.807682 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23612", + "ref": "FR*SOD*S*SDE2*36*1*_*_", + "name": "TRELEVERN-PLACE DES AIGUILLES PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.678333, + 48.484627 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23711", + "ref": "FR*SOD*S*SDE2*37*1*_*_", + "name": "YFFINIAC-PLACE STE ANNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-03-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.144788, + 48.580271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23812", + "ref": "FR*SOD*S*SDE2*38*1*_*_", + "name": "BEAUSSAIS-SUR-MER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.144788, + 48.580271 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23811", + "ref": "FR*SOD*S*SDE2*38*1*_*_", + "name": "BEAUSSAIS-SUR-MER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.186402, + 48.473217 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23911", + "ref": "FR*SOD*S*SDE2*39*1*_*_", + "name": "BOURBRIAC-PARKING RUE DAVAUGOUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.186402, + 48.473217 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23912", + "ref": "FR*SOD*S*SDE2*39*1*_*_", + "name": "BOURBRIAC-PARKING RUE DAVAUGOUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.028889, + 48.455833 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23111", + "ref": "FR*SOD*S*SDE2*31*1*_*_", + "name": "LANVALLAY-PLACE DU 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.028889, + 48.455833 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23112", + "ref": "FR*SOD*S*SDE2*31*1*_*_", + "name": "LANVALLAY-PLACE DU 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.126689, + 48.512863 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23011", + "ref": "FR*SOD*S*SDE2*30*1*_*_", + "name": "LANGUENAN-PARKING DE LATELIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.467628, + 48.630241 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22611", + "ref": "FR*SOD*S*SDE2*26*1*_*_", + "name": "ERQUY-BOULEVARD DE LA MER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.567519, + 48.683102 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22212", + "ref": "FR*SOD*S*SDE2*22*1*_*_", + "name": "SAINT MICHEL EN GREVE-ROUTE D ARVOR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.577855, + 48.771084 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22312", + "ref": "FR*SOD*S*SDE2*23*1*_*_", + "name": "TREBEURDEN-PLACE DU PEILLET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.577855, + 48.771084 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22311", + "ref": "FR*SOD*S*SDE2*23*1*_*_", + "name": "TREBEURDEN-PLACE DU PEILLET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.851859, + 48.522652 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22412", + "ref": "FR*SOD*S*SDE2*24*1*_*_", + "name": "TREMUSON-RUE DU BOUCHON PARKING SALLE MUNICIPALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.851859, + 48.522652 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22411", + "ref": "FR*SOD*S*SDE2*24*1*_*_", + "name": "TREMUSON-RUE DU BOUCHON PARKING SALLE MUNICIPALE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.358388, + 48.812908 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22512", + "ref": "FR*SOD*S*SDE2*25*1*_*_", + "name": "TREVOU TREGUIGNEC-RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.467628, + 48.630241 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22612", + "ref": "FR*SOD*S*SDE2*26*1*_*_", + "name": "ERQUY-BOULEVARD DE LA MER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.126689, + 48.512863 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE23012", + "ref": "FR*SOD*S*SDE2*30*1*_*_", + "name": "LANGUENAN-PARKING DE LATELIER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.552271, + 48.588692 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22712", + "ref": "FR*SOD*S*SDE2*27*1*_*_", + "name": "PLENEUF VAL ANDRE-RUE CLEMENCEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.552271, + 48.588692 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22711", + "ref": "FR*SOD*S*SDE2*27*1*_*_", + "name": "PLENEUF VAL ANDRE-RUE CLEMENCEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.833905, + 48.62648 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22811", + "ref": "FR*SOD*S*SDE2*28*1*_*_", + "name": "ETABLES SUR MER-PLACE JEAN HEURTEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.833905, + 48.62648 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22812", + "ref": "FR*SOD*S*SDE2*28*1*_*_", + "name": "ETABLES SUR MER-PLACE JEAN HEURTEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2016-12-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.324368, + 48.408466 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22911", + "ref": "FR*SOD*S*SDE2*29*1*_*_", + "name": "JUGON LES LACS-PLACE DE LA POSTE DERRIERE SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.324368, + 48.408466 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE22912", + "ref": "FR*SOD*S*SDE2*29*1*_*_", + "name": "JUGON LES LACS-PLACE DE LA POSTE DERRIERE SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-04-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.413295, + 48.794518 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28712", + "ref": "FR*SOD*S*SDE2*87*1*_*_", + "name": "LOUANNEC-ROUTE DE PERROS PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.951, + 48.5108 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE25612", + "ref": "FR*SOD*S*SDE2*56*1*_*_", + "name": "PLEUDIHEN SUR RANCE-PARKING COUR DU VERGER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.29119, + 48.5971 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28812", + "ref": "FR*SOD*S*SDE2*88*1*_*_", + "name": "MATIGNON-PLACE RIOUST DES VILLES AUDRAINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.045, + 48.352299 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213912", + "ref": "FR*SOD*S*SDE2*139*1*_*_", + "name": "SAINT JUVAT-LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.838271, + 48.280586 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE214112", + "ref": "FR*SOD*S*SDE2*141*1*_*_", + "name": "UZEL-CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.51775, + 48.47099 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE214211", + "ref": "FR*SOD*S*SDE2*142*1*_*_", + "name": "LAMBALLE-BOULEVARD DU HARAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.51775, + 48.47099 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE214212", + "ref": "FR*SOD*S*SDE2*142*1*_*_", + "name": "LAMBALLE-BOULEVARD DU HARAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.129, + 48.389 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE214311", + "ref": "FR*SOD*S*SDE2*143*1*_*_", + "name": "BRUSVILLY-PARKING RUE DE BROONS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.129, + 48.389 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE214312", + "ref": "FR*SOD*S*SDE2*143*1*_*_", + "name": "BRUSVILLY-PARKING RUE DE BROONS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0562, + 48.4561 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE214411", + "ref": "FR*SOD*S*SDE2*144*1*_*_", + "name": "DINAN-PARKING RUE DESROYER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0562, + 48.4561 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE214412", + "ref": "FR*SOD*S*SDE2*144*1*_*_", + "name": "DINAN-PARKING RUE DESROYER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.758196, + 48.177609 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE214512", + "ref": "FR*SOD*S*SDE2*145*1*_*_", + "name": "LOUDEAC-PARKING DU CHAMP FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.758196, + 48.177609 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE214511", + "ref": "FR*SOD*S*SDE2*145*1*_*_", + "name": "LOUDEAC-PARKING DU CHAMP FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0288, + 48.409 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE214611", + "ref": "FR*SOD*S*SDE2*146*1*_*_", + "name": "CALORGUEN-PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0288, + 48.409 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE214612", + "ref": "FR*SOD*S*SDE2*146*1*_*_", + "name": "CALORGUEN-PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.765253, + 48.518089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE214712", + "ref": "FR*SOD*S*SDE2*147*1*_*_", + "name": "SAINT BRIEUC-RUE DU LEGUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.765253, + 48.518089 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE214711", + "ref": "FR*SOD*S*SDE2*147*1*_*_", + "name": "SAINT BRIEUC-RUE DU LEGUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.44691, + 48.55727 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE214912", + "ref": "FR*SOD*S*SDE2*149*1*_*_", + "name": "PLOUNEVEZ-MOEDEC - SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.44691, + 48.55727 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE214911", + "ref": "FR*SOD*S*SDE2*149*1*_*_", + "name": "PLOUNEVEZ-MOEDEC - SALLE DES FETES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.838271, + 48.280586 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE214111", + "ref": "FR*SOD*S*SDE2*141*1*_*_", + "name": "UZEL-CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.045, + 48.352299 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213911", + "ref": "FR*SOD*S*SDE2*139*1*_*_", + "name": "SAINT JUVAT-LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.757097, + 48.514561 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215011", + "ref": "FR*SOD*S*SDE2*150*1*_*_", + "name": "SAINT BRIEUC-RUE DES PROMENADES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.523397, + 48.359306 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213812", + "ref": "FR*SOD*S*SDE2*138*1*_*_", + "name": "SAINT GLEN-RUE DE LA FONTAINE PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.591516, + 48.176651 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213111", + "ref": "FR*SOD*S*SDE2*131*1*_*_", + "name": "PLEMET-RUE DE RENNES PARKING PMU ET CMB", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.591516, + 48.176651 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213112", + "ref": "FR*SOD*S*SDE2*131*1*_*_", + "name": "PLEMET-RUE DE RENNES PARKING PMU ET CMB", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.155936, + 48.732681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213212", + "ref": "FR*SOD*S*SDE2*132*1*_*_", + "name": "PLOEZAL-CHATEAU ROCHE JAGU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.155936, + 48.732681 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213211", + "ref": "FR*SOD*S*SDE2*132*1*_*_", + "name": "PLOEZAL-CHATEAU ROCHE JAGU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.869428, + 48.629478 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213312", + "ref": "FR*SOD*S*SDE2*133*1*_*_", + "name": "PLOURHAN-RUE DU PARC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.869428, + 48.629478 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213311", + "ref": "FR*SOD*S*SDE2*133*1*_*_", + "name": "PLOURHAN-RUE DU PARC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.26435, + 48.52913 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213412", + "ref": "FR*SOD*S*SDE2*134*1*_*_", + "name": "PLUDUNO-RUE CHATEAUBRIAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.26435, + 48.52913 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213411", + "ref": "FR*SOD*S*SDE2*134*1*_*_", + "name": "PLUDUNO-RUE CHATEAUBRIAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9103, + 48.401482 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213512", + "ref": "FR*SOD*S*SDE2*135*1*_*_", + "name": "QUINTIN-SQUARE BLANCHET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9103, + 48.401482 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213511", + "ref": "FR*SOD*S*SDE2*135*1*_*_", + "name": "QUINTIN-SQUARE BLANCHET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.316225, + 48.234554 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213612", + "ref": "FR*SOD*S*SDE2*136*1*_*_", + "name": "ROSTRENEN-PLACE BOURG KOHZ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.316225, + 48.234554 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213611", + "ref": "FR*SOD*S*SDE2*136*1*_*_", + "name": "ROSTRENEN-PLACE BOURG KOHZ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.779689, + 48.514324 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213712", + "ref": "FR*SOD*S*SDE2*137*1*_*_", + "name": "SAINT BRIEUC-18 RUE COURTELINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.779689, + 48.514324 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213711", + "ref": "FR*SOD*S*SDE2*137*1*_*_", + "name": "SAINT BRIEUC-18 RUE COURTELINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.523397, + 48.359306 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213811", + "ref": "FR*SOD*S*SDE2*138*1*_*_", + "name": "SAINT GLEN-RUE DE LA FONTAINE PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.757097, + 48.514561 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215012", + "ref": "FR*SOD*S*SDE2*150*1*_*_", + "name": "SAINT BRIEUC-RUE DES PROMENADES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.486411, + 48.32917 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215212", + "ref": "FR*SOD*S*SDE2*152*1*_*_", + "name": "LE GOURAY-LE BOURG LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0058, + 48.350601 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213011", + "ref": "FR*SOD*S*SDE2*130*1*_*_", + "name": "LE QUIOU-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1873, + 48.517834 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216111", + "ref": "FR*SOD*S*SDE2*161*1*_*_", + "name": "COADOUT-PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.51702, + 48.29814 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216211", + "ref": "FR*SOD*S*SDE2*162*1*_*_", + "name": "COLLINEE-RUE ANDRE GILLES PARKING STATION SERVICE DERRIERE CARREFOUR MARKET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0441, + 48.450901 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216312", + "ref": "FR*SOD*S*SDE2*163*1*_*_", + "name": "DINAN-PLACE DUGUESCLIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0441, + 48.450901 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216311", + "ref": "FR*SOD*S*SDE2*163*1*_*_", + "name": "DINAN-PLACE DUGUESCLIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.247365, + 48.377785 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216411", + "ref": "FR*SOD*S*SDE2*164*1*_*_", + "name": "MEGRIT-RUE DES GRANITIERS PARKING STADE DE FOOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.247365, + 48.377785 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216412", + "ref": "FR*SOD*S*SDE2*164*1*_*_", + "name": "MEGRIT-RUE DES GRANITIERS PARKING STADE DE FOOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-04-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73364, + 48.23396 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216512", + "ref": "FR*SOD*S*SDE2*165*1*_*_", + "name": "LA MOTTE-RUE JOSEPH DUPRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73364, + 48.23396 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216511", + "ref": "FR*SOD*S*SDE2*165*1*_*_", + "name": "LA MOTTE-RUE JOSEPH DUPRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.189, + 48.598099 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216612", + "ref": "FR*SOD*S*SDE2*166*1*_*_", + "name": "SAINT JACUT DE LA MER-RUE DU CHATELET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.189, + 48.598099 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216611", + "ref": "FR*SOD*S*SDE2*166*1*_*_", + "name": "SAINT JACUT DE LA MER-RUE DU CHATELET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.987586, + 48.198135 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216712", + "ref": "FR*SOD*S*SDE2*167*1*_*_", + "name": "MUR DE BRETAGNE-RUE DE PONTIVY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.987586, + 48.198135 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216711", + "ref": "FR*SOD*S*SDE2*167*1*_*_", + "name": "MUR DE BRETAGNE-RUE DE PONTIVY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-05-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.223394, + 48.786499 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216812", + "ref": "FR*SOD*S*SDE2*168*1*_*_", + "name": "TREGUIER-LE PORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.223394, + 48.786499 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216811", + "ref": "FR*SOD*S*SDE2*168*1*_*_", + "name": "TREGUIER-LE PORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-06", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.04553, + 48.4747 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216911", + "ref": "FR*SOD*S*SDE2*169*1*_*_", + "name": "TADEN-ZA DES ALLEUX", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-09-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.165161, + 48.61179 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE217111", + "ref": "FR*SOD*S*SDE2*171*1*_*_", + "name": "TREGONNEAU-LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-07-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.51702, + 48.29814 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216212", + "ref": "FR*SOD*S*SDE2*162*1*_*_", + "name": "COLLINEE-RUE ANDRE GILLES PARKING STATION SERVICE DERRIERE CARREFOUR MARKET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1873, + 48.517834 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216112", + "ref": "FR*SOD*S*SDE2*161*1*_*_", + "name": "COADOUT-PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.486411, + 48.32917 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215211", + "ref": "FR*SOD*S*SDE2*152*1*_*_", + "name": "LE GOURAY-LE BOURG LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.151064, + 48.60416 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216012", + "ref": "FR*SOD*S*SDE2*160*1*_*_", + "name": "LANCIEUX-PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.854698, + 48.445023 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215312", + "ref": "FR*SOD*S*SDE2*153*1*_*_", + "name": "PLAINE HAUTE-PLACE DE LA MAIRIE PARKING SALLE POLYVALENTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.854698, + 48.445023 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215311", + "ref": "FR*SOD*S*SDE2*153*1*_*_", + "name": "PLAINE HAUTE-PLACE DE LA MAIRIE PARKING SALLE POLYVALENTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.057214, + 48.315941 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215411", + "ref": "FR*SOD*S*SDE2*154*1*_*_", + "name": "CORLAY-PLACE DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.057214, + 48.315941 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215412", + "ref": "FR*SOD*S*SDE2*154*1*_*_", + "name": "CORLAY-PLACE DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.048475, + 48.776299 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215511", + "ref": "FR*SOD*S*SDE2*155*1*_*_", + "name": "PAIMPOL-PARKING DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.048475, + 48.776299 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215512", + "ref": "FR*SOD*S*SDE2*155*1*_*_", + "name": "PAIMPOL-PARKING DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-20", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9816, + 48.381901 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215612", + "ref": "FR*SOD*S*SDE2*156*1*_*_", + "name": "EVRAN-RUE DE LAPOTHICAIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9816, + 48.381901 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215611", + "ref": "FR*SOD*S*SDE2*156*1*_*_", + "name": "EVRAN-RUE DE LAPOTHICAIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.513626, + 48.832668 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215711", + "ref": "FR*SOD*S*SDE2*157*1*_*_", + "name": "TREGASTEL-BOULEVARD DU COZ PORS PARKING DU PERE ETERNEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.513626, + 48.832668 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215712", + "ref": "FR*SOD*S*SDE2*157*1*_*_", + "name": "TREGASTEL-BOULEVARD DU COZ PORS PARKING DU PERE ETERNEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-19", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.29119, + 48.5971 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28811", + "ref": "FR*SOD*S*SDE2*88*1*_*_", + "name": "MATIGNON-PLACE RIOUST DES VILLES AUDRAINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.252257, + 48.239723 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215811", + "ref": "FR*SOD*S*SDE2*158*1*_*_", + "name": "PLOUGUERNEVEL-LE BOURG - ROUTE DE ROSTRENEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.294399, + 48.252918 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215911", + "ref": "FR*SOD*S*SDE2*159*1*_*_", + "name": "LANRELAS-PLACE ST FIACRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.294399, + 48.252918 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215912", + "ref": "FR*SOD*S*SDE2*159*1*_*_", + "name": "LANRELAS-PLACE ST FIACRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-01-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.151064, + 48.60416 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE216011", + "ref": "FR*SOD*S*SDE2*160*1*_*_", + "name": "LANCIEUX-PARKING DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-03-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0058, + 48.350601 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE213012", + "ref": "FR*SOD*S*SDE2*130*1*_*_", + "name": "LE QUIOU-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-06-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.252257, + 48.239723 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE215812", + "ref": "FR*SOD*S*SDE2*158*1*_*_", + "name": "PLOUGUERNEVEL-LE BOURG - ROUTE DE ROSTRENEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.147928, + 48.551281 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE212911", + "ref": "FR*SOD*S*SDE2*129*1*_*_", + "name": "PLOUMAGOAR-LA CHESNAYE RAPIDE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.104479, + 48.55711 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29711", + "ref": "FR*SOD*S*SDE2*97*1*_*_", + "name": "SAINT AGATHON-RUE HENT MEUR PARKING SALLE DES SPORTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.736905, + 48.490196 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29811", + "ref": "FR*SOD*S*SDE2*98*1*_*_", + "name": "TREGUEUX - PLACE F. MITTERAND PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.751509, + 48.52273 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29912", + "ref": "FR*SOD*S*SDE2*99*1*_*_", + "name": "SAINT BRIEUC-QUAI ARMEZ ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.751509, + 48.52273 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29911", + "ref": "FR*SOD*S*SDE2*99*1*_*_", + "name": "SAINT BRIEUC-QUAI ARMEZ ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-12-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3, + 48.381386 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE210012", + "ref": "FR*SOD*S*SDE2*100*1*_*_", + "name": "SAINT GILLES PLIGEAUX-PARKING RUE DES BRUYERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3, + 48.381386 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE210011", + "ref": "FR*SOD*S*SDE2*100*1*_*_", + "name": "SAINT GILLES PLIGEAUX-PARKING RUE DES BRUYERES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15994, + 48.315102 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE210111", + "ref": "FR*SOD*S*SDE2*101*1*_*_", + "name": "SAINT NICOLAS DU PELEM-PARKING RUE HENRI AVRIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15994, + 48.315102 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE210112", + "ref": "FR*SOD*S*SDE2*101*1*_*_", + "name": "SAINT NICOLAS DU PELEM-PARKING RUE HENRI AVRIL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.914543, + 48.429111 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE210211", + "ref": "FR*SOD*S*SDE2*102*1*_*_", + "name": "LE FOEIL-PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.914543, + 48.429111 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE210212", + "ref": "FR*SOD*S*SDE2*102*1*_*_", + "name": "LE FOEIL-PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.869649, + 48.389687 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE210312", + "ref": "FR*SOD*S*SDE2*103*1*_*_", + "name": "SAINT BRANDAN-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.869649, + 48.389687 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE210311", + "ref": "FR*SOD*S*SDE2*103*1*_*_", + "name": "SAINT BRANDAN-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.133419, + 48.664848 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE210412", + "ref": "FR*SOD*S*SDE2*104*1*_*_", + "name": "SAINT CLET-RUE DU TREGOR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.133419, + 48.664848 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE210411", + "ref": "FR*SOD*S*SDE2*104*1*_*_", + "name": "SAINT CLET-RUE DU TREGOR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.009714, + 48.303225 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE210711", + "ref": "FR*SOD*S*SDE2*107*1*_*_", + "name": "PLOUASNE-BOULEVARD DE LA GARE PARKING DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.009714, + 48.303225 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE210712", + "ref": "FR*SOD*S*SDE2*107*1*_*_", + "name": "PLOUASNE-BOULEVARD DE LA GARE PARKING DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.736905, + 48.490196 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29812", + "ref": "FR*SOD*S*SDE2*98*1*_*_", + "name": "TREGUEUX - PLACE F. MITTERAND PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.104479, + 48.55711 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29712", + "ref": "FR*SOD*S*SDE2*97*1*_*_", + "name": "SAINT AGATHON-RUE HENT MEUR PARKING SALLE DES SPORTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.91299, + 48.403732 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE210812", + "ref": "FR*SOD*S*SDE2*108*1*_*_", + "name": "QUINTIN-PLACE DU MARTRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.248423, + 48.640558 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29612", + "ref": "FR*SOD*S*SDE2*96*1*_*_", + "name": "SAINT CAST LE GUILDO-LE PORT - PLACE DU PILOTE FROMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24004, + 48.52145 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28911", + "ref": "FR*SOD*S*SDE2*89*1*_*_", + "name": "PLANCOET-RUE DE LA MADELEINE PARKING COLLEGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.703044, + 48.482021 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE212811", + "ref": "FR*SOD*S*SDE2*128*1*_*_", + "name": "TREGUEUX - LE PERRAY RAPIDE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24004, + 48.52145 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE28912", + "ref": "FR*SOD*S*SDE2*89*1*_*_", + "name": "PLANCOET-RUE DE LA MADELEINE PARKING COLLEGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-03", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.138881, + 48.842079 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29011", + "ref": "FR*SOD*S*SDE2*90*1*_*_", + "name": "PLEUBIAN-PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.138881, + 48.842079 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29012", + "ref": "FR*SOD*S*SDE2*90*1*_*_", + "name": "PLEUBIAN-PLACE DU CHATEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.517125, + 48.771851 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29111", + "ref": "FR*SOD*S*SDE2*91*1*_*_", + "name": "PLEUMEUR BODOU-LES CHARDONS PARKING CENTRE COMMERCIAL ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.517125, + 48.771851 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29112", + "ref": "FR*SOD*S*SDE2*91*1*_*_", + "name": "PLEUMEUR BODOU-LES CHARDONS PARKING CENTRE COMMERCIAL ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.47037, + 48.613342 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29212", + "ref": "FR*SOD*S*SDE2*92*1*_*_", + "name": "PLOUARET-RUE DU FOYER PARKING EHPAD MELCHONNEC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.47037, + 48.613342 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29211", + "ref": "FR*SOD*S*SDE2*92*1*_*_", + "name": "PLOUARET-RUE DU FOYER PARKING EHPAD MELCHONNEC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.928985, + 48.675999 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29312", + "ref": "FR*SOD*S*SDE2*93*1*_*_", + "name": "PLOUHA-PLACE FOCH PARKING PRES DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.928985, + 48.675999 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29311", + "ref": "FR*SOD*S*SDE2*93*1*_*_", + "name": "PLOUHA-PLACE FOCH PARKING PRES DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.125556, + 48.357742 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29411", + "ref": "FR*SOD*S*SDE2*94*1*_*_", + "name": "PLUMAUDAN-PLACE MARECHAL FOCH PARKING PRES DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.125556, + 48.357742 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29412", + "ref": "FR*SOD*S*SDE2*94*1*_*_", + "name": "PLUMAUDAN-PLACE MARECHAL FOCH PARKING PRES DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-05-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1057, + 48.70467 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29511", + "ref": "FR*SOD*S*SDE2*95*1*_*_", + "name": "QUEMPER GUEZENNEC-RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.248423, + 48.640558 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29611", + "ref": "FR*SOD*S*SDE2*96*1*_*_", + "name": "SAINT CAST LE GUILDO-LE PORT - PLACE DU PILOTE FROMONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-06-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.91299, + 48.403732 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE210811", + "ref": "FR*SOD*S*SDE2*108*1*_*_", + "name": "QUINTIN-PLACE DU MARTRAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1057, + 48.70467 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE29512", + "ref": "FR*SOD*S*SDE2*95*1*_*_", + "name": "QUEMPER GUEZENNEC-RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.727605, + 48.542061 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE210912", + "ref": "FR*SOD*S*SDE2*109*1*_*_", + "name": "PLERIN-SAINT LAURENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.043485, + 48.778999 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211812", + "ref": "FR*SOD*S*SDE2*118*1*_*_", + "name": "PAIMPOL-PARKING PLACE DU GOELO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.633645, + 48.359794 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211912", + "ref": "FR*SOD*S*SDE2*119*1*_*_", + "name": "MONCONTOUR-PLACE DE LA CARRIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.633645, + 48.359794 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211911", + "ref": "FR*SOD*S*SDE2*119*1*_*_", + "name": "MONCONTOUR-PLACE DE LA CARRIERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.792394, + 48.482624 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE212012", + "ref": "FR*SOD*S*SDE2*120*1*_*_", + "name": "PLOUFRAGAN-RUE CAMILLE GUERIN TECHNOPOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.792394, + 48.482624 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE212011", + "ref": "FR*SOD*S*SDE2*120*1*_*_", + "name": "PLOUFRAGAN-RUE CAMILLE GUERIN TECHNOPOLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.792451, + 48.488029 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE212111", + "ref": "FR*SOD*S*SDE2*121*1*_*_", + "name": "PLOUFRAGAN-RUE DU GRISMOLET / RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.792451, + 48.488029 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE212112", + "ref": "FR*SOD*S*SDE2*121*1*_*_", + "name": "PLOUFRAGAN-RUE DU GRISMOLET / RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-11", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.187334, + 48.273865 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE212211", + "ref": "FR*SOD*S*SDE2*122*1*_*_", + "name": "SAINT JOUAN DE L ISLE-ZA KERGOET", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.313114, + 48.242321 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE212411", + "ref": "FR*SOD*S*SDE2*124*1*_*_", + "name": "ROSTRENEN-ZA DE GOASNEL ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.57723, + 48.53167 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE212511", + "ref": "FR*SOD*S*SDE2*125*1*_*_", + "name": "PLANGUENOUAL-RUE DES PONTS NEUFS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.57723, + 48.53167 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE212512", + "ref": "FR*SOD*S*SDE2*125*1*_*_", + "name": "PLANGUENOUAL-RUE DES PONTS NEUFS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.824075, + 48.648033 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE212612", + "ref": "FR*SOD*S*SDE2*126*1*_*_", + "name": "SAINT QUAY PORTRIEUX-PARKING PORT DARMOR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.824075, + 48.648033 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE212611", + "ref": "FR*SOD*S*SDE2*126*1*_*_", + "name": "SAINT QUAY PORTRIEUX-PARKING PORT DARMOR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.727605, + 48.542061 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE210911", + "ref": "FR*SOD*S*SDE2*109*1*_*_", + "name": "PLERIN-SAINT LAURENT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.32811, + 48.655931 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE212712", + "ref": "FR*SOD*S*SDE2*127*1*_*_", + "name": "PLEVENON-PARKING DU BOURG ROUTE DU CAP - RD 34", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.32811, + 48.655931 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE212711", + "ref": "FR*SOD*S*SDE2*127*1*_*_", + "name": "PLEVENON-PARKING DU BOURG ROUTE DU CAP - RD 34", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.043485, + 48.778999 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211811", + "ref": "FR*SOD*S*SDE2*118*1*_*_", + "name": "PAIMPOL-PARKING PLACE DU GOELO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4236, + 48.18869 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE212311", + "ref": "FR*SOD*S*SDE2*123*1*_*_", + "name": "MERDRIGNAC-ZONE DE LA HERONNIERE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-05", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.096286, + 48.224899 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211712", + "ref": "FR*SOD*S*SDE2*117*1*_*_", + "name": "SAINT GELVEN-PARKING DE LA GRANDE RUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.13708, + 48.586258 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211012", + "ref": "FR*SOD*S*SDE2*110*1*_*_", + "name": "PABU-RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.159283, + 48.69836 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211112", + "ref": "FR*SOD*S*SDE2*111*1*_*_", + "name": "PONTRIEUX-PARKING RUE DU QUAI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.159283, + 48.69836 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211111", + "ref": "FR*SOD*S*SDE2*111*1*_*_", + "name": "PONTRIEUX-PARKING RUE DU QUAI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-10-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.388829, + 48.449814 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211212", + "ref": "FR*SOD*S*SDE2*112*1*_*_", + "name": "PLEDELIAC-RUE DARMOR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.388829, + 48.449814 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211211", + "ref": "FR*SOD*S*SDE2*112*1*_*_", + "name": "PLEDELIAC-RUE DARMOR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-26", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.456394, + 48.727578 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211311", + "ref": "FR*SOD*S*SDE2*113*1*_*_", + "name": "LANNION-BOULEVARD LOUIS GUILLOU PARKING KERMARIA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.456394, + 48.727578 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211312", + "ref": "FR*SOD*S*SDE2*113*1*_*_", + "name": "LANNION-BOULEVARD LOUIS GUILLOU PARKING KERMARIA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-09-13", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.657751, + 48.42165 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211511", + "ref": "FR*SOD*S*SDE2*115*1*_*_", + "name": "QUESSOY-PLACE DE LEGLISE PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.657751, + 48.42165 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211512", + "ref": "FR*SOD*S*SDE2*115*1*_*_", + "name": "QUESSOY-PLACE DE LEGLISE PARKING MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-07-27", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.13708, + 48.586258 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211011", + "ref": "FR*SOD*S*SDE2*110*1*_*_", + "name": "PABU-RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.103162, + 48.788181 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211611", + "ref": "FR*SOD*S*SDE2*116*1*_*_", + "name": "LEZARDRIEUX-RUE DU PORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.103162, + 48.788181 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211612", + "ref": "FR*SOD*S*SDE2*116*1*_*_", + "name": "LEZARDRIEUX-RUE DU PORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-08-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.096286, + 48.224899 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref:EU:EVSE": "FRS22PSDE211711", + "ref": "FR*SOD*S*SDE2*117*1*_*_", + "name": "SAINT GELVEN-PARKING DE LA GRANDE RUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2017-11-02", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.052872, + 48.515488 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297121", + "ref": "FR*SOD*S*SD29*71*2*_*_", + "name": "LANDIVISIAU-MOULINS AUX PRETRES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.052872, + 48.515488 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297122", + "ref": "FR*SOD*S*SD29*71*2*_*_", + "name": "LANDIVISIAU-MOULINS AUX PRETRES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.072221, + 48.509758 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297011", + "ref": "FR*SOD*S*SD29*70*1*_*_", + "name": "LANDIVISIAU-RUE LA TOUR DAUVERGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.255886, + 48.453716 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296912", + "ref": "FR*SOD*S*SD29*69*1*_*_", + "name": "LANDERNEAU-RUE DE LA FONTAINE BLANCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.072221, + 48.509758 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297012", + "ref": "FR*SOD*S*SD29*70*1*_*_", + "name": "LANDIVISIAU-RUE LA TOUR DAUVERGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.255886, + 48.453716 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296911", + "ref": "FR*SOD*S*SD29*69*1*_*_", + "name": "LANDERNEAU-RUE DE LA FONTAINE BLANCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.052872, + 48.515488 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297112", + "ref": "FR*SOD*S*SD29*71*1*_*_", + "name": "LANDIVISIAU-MOULINS AUX PRETRES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.261381, + 48.444599 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296811", + "ref": "FR*SOD*S*SD29*68*1*_*_", + "name": "LANDERNEAU-RUE SAINT-ERNEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.261381, + 48.444599 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296812", + "ref": "FR*SOD*S*SD29*68*1*_*_", + "name": "LANDERNEAU-RUE SAINT-ERNEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.251662, + 48.449455 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296712", + "ref": "FR*SOD*S*SD29*67*1*_*_", + "name": "LANDERNEAU-QUAI DE LEON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.052872, + 48.515488 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297111", + "ref": "FR*SOD*S*SD29*71*1*_*_", + "name": "LANDIVISIAU-MOULINS AUX PRETRES", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.338243, + 48.000721 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297411", + "ref": "FR*SOD*S*SD29*74*1*_*_", + "name": "LANDUDEC-RUE DES ECOLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.068542, + 48.511307 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297211", + "ref": "FR*SOD*S*SD29*72*1*_*_", + "name": "LANDIVISIAU-PLACE LYAUTEY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.89678, + 48.301083 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297712", + "ref": "FR*SOD*S*SD29*77*1*_*_", + "name": "LANNEDERN-RESIDENCE PENN AR REUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.068542, + 48.511307 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297212", + "ref": "FR*SOD*S*SD29*72*1*_*_", + "name": "LANDIVISIAU-PLACE LYAUTEY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.057633, + 48.091808 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297311", + "ref": "FR*SOD*S*SD29*73*1*_*_", + "name": "LANDREVARZEC-VENELLE DU FOUR A PAIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.057633, + 48.091808 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297312", + "ref": "FR*SOD*S*SD29*73*1*_*_", + "name": "LANDREVARZEC-VENELLE DU FOUR A PAIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.338243, + 48.000721 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297412", + "ref": "FR*SOD*S*SD29*74*1*_*_", + "name": "LANDUDEC-RUE DES ECOLES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.750491, + 48.474991 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297512", + "ref": "FR*SOD*S*SD29*75*1*_*_", + "name": "LANILDUT-ANSE DE SAINT-GILDAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.750491, + 48.474991 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297511", + "ref": "FR*SOD*S*SD29*75*1*_*_", + "name": "LANILDUT-ANSE DE SAINT-GILDAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.89678, + 48.301083 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297711", + "ref": "FR*SOD*S*SD29*77*1*_*_", + "name": "LANNEDERN-RESIDENCE PENN AR REUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.574715, + 48.587631 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296612", + "ref": "FR*SOD*S*SD29*66*1*_*_", + "name": "LANDEDA-ROUTE DE LARMORIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.717236, + 48.645733 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297612", + "ref": "FR*SOD*S*SD29*76*1*_*_", + "name": "LANMEUR-PARKING PEN HUELLA GUER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.717236, + 48.645733 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297611", + "ref": "FR*SOD*S*SD29*76*1*_*_", + "name": "LANMEUR-PARKING PEN HUELLA GUER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.251662, + 48.449455 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296711", + "ref": "FR*SOD*S*SD29*67*1*_*_", + "name": "LANDERNEAU-QUAI DE LEON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.167864, + 47.845467 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295912", + "ref": "FR*SOD*S*SD29*59*1*_*_", + "name": "ILE TUDY-RUE DES GOEMONIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.574715, + 48.587631 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296611", + "ref": "FR*SOD*S*SD29*66*1*_*_", + "name": "LANDEDA-ROUTE DE LARMORIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.763813, + 48.448708 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296512", + "ref": "FR*SOD*S*SD29*65*1*_*_", + "name": "LAMPAUL PLOUARZEL-RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.709654, + 48.667439 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295511", + "ref": "FR*SOD*S*SD29*55*1*_*_", + "name": "GUIMAEC-HENT SANT FIEK", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.280342, + 47.796131 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295411", + "ref": "FR*SOD*S*SD29*54*1*_*_", + "name": "GUILVINEC-PLACE DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.280342, + 47.796131 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295412", + "ref": "FR*SOD*S*SD29*54*1*_*_", + "name": "GUILVINEC-PLACE DE LA POSTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.523272, + 48.570396 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297812", + "ref": "FR*SOD*S*SD29*78*1*_*_", + "name": "LANNILIS-RUE DE LA FONTAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.709654, + 48.667439 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295512", + "ref": "FR*SOD*S*SD29*55*1*_*_", + "name": "GUIMAEC-HENT SANT FIEK", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.411448, + 48.633446 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295612", + "ref": "FR*SOD*S*SD29*56*1*_*_", + "name": "GUISSENY-RUE DE PLOUGUERNEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.411448, + 48.633446 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295611", + "ref": "FR*SOD*S*SD29*56*1*_*_", + "name": "GUISSENY-RUE DE PLOUGUERNEAU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-07-08", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.160853, + 48.328011 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295712", + "ref": "FR*SOD*S*SD29*57*1*_*_", + "name": "HANVEC-PLACE DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.160853, + 48.328011 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295711", + "ref": "FR*SOD*S*SD29*57*1*_*_", + "name": "HANVEC-PLACE DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.750712, + 48.362984 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295812", + "ref": "FR*SOD*S*SD29*58*1*_*_", + "name": "HUELGOAT-RUE DU GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.750712, + 48.362984 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295811", + "ref": "FR*SOD*S*SD29*58*1*_*_", + "name": "HUELGOAT-RUE DU GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.167864, + 47.845467 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295911", + "ref": "FR*SOD*S*SD29*59*1*_*_", + "name": "ILE TUDY-RUE DES GOEMONIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.214177, + 48.370193 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296012", + "ref": "FR*SOD*S*SD29*60*1*_*_", + "name": "IRVILLAC-ROUTE DE DAOULAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.214177, + 48.370193 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296011", + "ref": "FR*SOD*S*SD29*60*1*_*_", + "name": "IRVILLAC-ROUTE DE DAOULAS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.367066, + 48.644726 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296111", + "ref": "FR*SOD*S*SD29*61*1*_*_", + "name": "KERLOUAN-RUE DE LA COTE DES LEGENDES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.367066, + 48.644726 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296112", + "ref": "FR*SOD*S*SD29*61*1*_*_", + "name": "KERLOUAN-RUE DE LA COTE DES LEGENDES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.374469, + 48.471878 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296211", + "ref": "FR*SOD*S*SD29*62*1*_*_", + "name": "KERSAINT PLABENNEC-ROUTE DE PLABENNEC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.374469, + 48.471878 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296212", + "ref": "FR*SOD*S*SD29*62*1*_*_", + "name": "KERSAINT PLABENNEC-ROUTE DE PLABENNEC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.315567, + 48.427998 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296312", + "ref": "FR*SOD*S*SD29*63*1*_*_", + "name": "LA FOREST LANDERNEAU-RUE DE LA CROIX DE MISSION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.315567, + 48.427998 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296311", + "ref": "FR*SOD*S*SD29*63*1*_*_", + "name": "LA FOREST LANDERNEAU-RUE DE LA CROIX DE MISSION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.977736, + 47.909428 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296412", + "ref": "FR*SOD*S*SD29*64*1*_*_", + "name": "LA FORET FOUESNANT-RUE CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.977736, + 47.909428 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296411", + "ref": "FR*SOD*S*SD29*64*1*_*_", + "name": "LA FORET FOUESNANT-RUE CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.763813, + 48.448708 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD296511", + "ref": "FR*SOD*S*SD29*65*1*_*_", + "name": "LAMPAUL PLOUARZEL-RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.523272, + 48.570396 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297811", + "ref": "FR*SOD*S*SD29*78*1*_*_", + "name": "LANNILIS-RUE DE LA FONTAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.582887, + 47.900269 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299612", + "ref": "FR*SOD*S*SD29*96*1*_*_", + "name": "MELLAC-ROUTE DE QUIMPERLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.640213, + 48.467697 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297911", + "ref": "FR*SOD*S*SD29*79*1*_*_", + "name": "LANRIVOARE-RUE DE BELLEVUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.30713, + 48.383247 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299211", + "ref": "FR*SOD*S*SD29*92*1*_*_", + "name": "LOPERHET-ROUTE DE DIRINON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.836316, + 47.906761 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299312", + "ref": "FR*SOD*S*SD29*93*1*_*_", + "name": "MELGVEN-PLACE DES GRANDS CHENES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.80166, + 47.889305 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299411", + "ref": "FR*SOD*S*SD29*94*1*_*_", + "name": "MELGVEN-AIRE DE COVOITURAGE DE KERAMPAOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.80166, + 47.889305 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299412", + "ref": "FR*SOD*S*SD29*94*1*_*_", + "name": "MELGVEN-AIRE DE COVOITURAGE DE KERAMPAOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.878658, + 48.551712 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299511", + "ref": "FR*SOD*S*SD29*95*1*_*_", + "name": "SAINTE SEVE-AIRE DE COVOITURAGE DE COAT CONVAL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.878658, + 48.551712 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299512", + "ref": "FR*SOD*S*SD29*95*1*_*_", + "name": "SAINTE SEVE-AIRE DE COVOITURAGE DE COAT CONVAL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.582887, + 47.900269 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299611", + "ref": "FR*SOD*S*SD29*96*1*_*_", + "name": "MELLAC-ROUTE DE QUIMPERLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.584976, + 47.868935 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299711", + "ref": "FR*SOD*S*SD29*97*1*_*_", + "name": "MELLAC-POLE DACT KERVIDANOU 3", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.584976, + 47.868935 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299712", + "ref": "FR*SOD*S*SD29*97*1*_*_", + "name": "MELLAC-POLE DACT KERVIDANOU 3", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-06-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.565287, + 48.467354 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299812", + "ref": "FR*SOD*S*SD29*98*1*_*_", + "name": "MILIZAC-PLACE DE YEALMPTON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.565287, + 48.467354 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299811", + "ref": "FR*SOD*S*SD29*98*1*_*_", + "name": "MILIZAC-PLACE DE YEALMPTON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.631332, + 47.812168 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299912", + "ref": "FR*SOD*S*SD29*99*1*_*_", + "name": "MOELAN SUR MER-RUE DES PLAGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.631332, + 47.812168 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299911", + "ref": "FR*SOD*S*SD29*99*1*_*_", + "name": "MOELAN SUR MER-RUE DES PLAGES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.83211, + 48.58287 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910012", + "ref": "FR*SOD*S*SD29*100*1*_*_", + "name": "MORLAIX-RUE JEAN YVES GUILLARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.83211, + 48.58287 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910011", + "ref": "FR*SOD*S*SD29*100*1*_*_", + "name": "MORLAIX-RUE JEAN YVES GUILLARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.817576, + 48.575111 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910112", + "ref": "FR*SOD*S*SD29*101*1*_*_", + "name": "MORLAIX-PLACE DU POULIET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.817576, + 48.575111 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910111", + "ref": "FR*SOD*S*SD29*101*1*_*_", + "name": "MORLAIX-PLACE DU POULIET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.833975, + 48.578419 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910221", + "ref": "FR*SOD*S*SD29*102*2*_*_", + "name": "MORLAIX-RUE ALBERT LE GRAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.833975, + 48.578419 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910212", + "ref": "FR*SOD*S*SD29*102*1*_*_", + "name": "MORLAIX-RUE ALBERT LE GRAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.833975, + 48.578419 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910231", + "ref": "FR*SOD*S*SD29*102*3*_*_", + "name": "MORLAIX-RUE ALBERT LE GRAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.833975, + 48.578419 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910232", + "ref": "FR*SOD*S*SD29*102*3*_*_", + "name": "MORLAIX-RUE ALBERT LE GRAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.833975, + 48.578419 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910222", + "ref": "FR*SOD*S*SD29*102*2*_*_", + "name": "MORLAIX-RUE ALBERT LE GRAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.833975, + 48.578419 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910211", + "ref": "FR*SOD*S*SD29*102*1*_*_", + "name": "MORLAIX-RUE ALBERT LE GRAND", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.415043, + 47.93594 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295311", + "ref": "FR*SOD*S*SD29*53*1*_*_", + "name": "GUILLIGOMARC H-RUE DU SCORFF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.836316, + 47.906761 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299311", + "ref": "FR*SOD*S*SD29*93*1*_*_", + "name": "MELGVEN-PLACE DES GRANDS CHENES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.30713, + 48.383247 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299212", + "ref": "FR*SOD*S*SD29*92*1*_*_", + "name": "LOPERHET-ROUTE DE DIRINON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.640213, + 48.467697 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD297912", + "ref": "FR*SOD*S*SD29*79*1*_*_", + "name": "LANRIVOARE-RUE DE BELLEVUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.478167, + 47.937088 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299111", + "ref": "FR*SOD*S*SD29*91*1*_*_", + "name": "LOCUNOLE-RUE DE BEG AR ROZ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.64612, + 48.469227 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298012", + "ref": "FR*SOD*S*SD29*80*1*_*_", + "name": "LANRIVOARE-ROUTE DARGENTON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.64612, + 48.469227 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298011", + "ref": "FR*SOD*S*SD29*80*1*_*_", + "name": "LANRIVOARE-ROUTE DARGENTON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.461408, + 48.28619 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298112", + "ref": "FR*SOD*S*SD29*81*1*_*_", + "name": "LANVEOC-RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.461408, + 48.28619 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298111", + "ref": "FR*SOD*S*SD29*81*1*_*_", + "name": "LANVEOC-RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.836133, + 48.13726 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298211", + "ref": "FR*SOD*S*SD29*82*1*_*_", + "name": "LAZ-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.836133, + 48.13726 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298212", + "ref": "FR*SOD*S*SD29*82*1*_*_", + "name": "LAZ-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.770224, + 48.360584 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298312", + "ref": "FR*SOD*S*SD29*83*1*_*_", + "name": "LE CONQUET-PLACE DE BREST", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.770224, + 48.360584 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298311", + "ref": "FR*SOD*S*SD29*83*1*_*_", + "name": "LE CONQUET-PLACE DE BREST", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.176747, + 48.293953 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298411", + "ref": "FR*SOD*S*SD29*84*1*_*_", + "name": "LE FAOU-ROUTE DE RUMENGOL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.176747, + 48.293953 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298412", + "ref": "FR*SOD*S*SD29*84*1*_*_", + "name": "LE FAOU-ROUTE DE RUMENGOL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.335426, + 48.561989 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298512", + "ref": "FR*SOD*S*SD29*85*1*_*_", + "name": "LE FOLGOET-RUE DU VERGER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.335426, + 48.561989 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298511", + "ref": "FR*SOD*S*SD29*85*1*_*_", + "name": "LE FOLGOET-RUE DU VERGER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.256995, + 48.065521 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298611", + "ref": "FR*SOD*S*SD29*86*1*_*_", + "name": "LE JUCH-RUE LOUIS TYMEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.256995, + 48.065521 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298612", + "ref": "FR*SOD*S*SD29*86*1*_*_", + "name": "LE JUCH-RUE LOUIS TYMEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.320383, + 48.573498 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298712", + "ref": "FR*SOD*S*SD29*87*1*_*_", + "name": "LESNEVEN-RUE VALY GOZ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.320383, + 48.573498 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298711", + "ref": "FR*SOD*S*SD29*87*1*_*_", + "name": "LESNEVEN-RUE VALY GOZ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.64312, + 48.374123 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298812", + "ref": "FR*SOD*S*SD29*88*1*_*_", + "name": "LOCMARIA PLOUZANE-RUE DE LA FONTAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.64312, + 48.374123 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298811", + "ref": "FR*SOD*S*SD29*88*1*_*_", + "name": "LOCMARIA PLOUZANE-RUE DE LA FONTAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.211916, + 48.098244 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298911", + "ref": "FR*SOD*S*SD29*89*1*_*_", + "name": "LOCRONAN-RUE DU PRIEURE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.211916, + 48.098244 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD298912", + "ref": "FR*SOD*S*SD29*89*1*_*_", + "name": "LOCRONAN-RUE DU PRIEURE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.174933, + 47.832439 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299012", + "ref": "FR*SOD*S*SD29*90*1*_*_", + "name": "LOCTUDY-PLACE DES ANCIENS COMBATTANTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.174933, + 47.832439 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299011", + "ref": "FR*SOD*S*SD29*90*1*_*_", + "name": "LOCTUDY-PLACE DES ANCIENS COMBATTANTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.478167, + 47.937088 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD299112", + "ref": "FR*SOD*S*SD29*91*1*_*_", + "name": "LOCUNOLE-RUE DE BEG AR ROZ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.415043, + 47.93594 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295312", + "ref": "FR*SOD*S*SD29*53*1*_*_", + "name": "GUILLIGOMARC H-RUE DU SCORFF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.430538, + 48.497616 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910512", + "ref": "FR*SOD*S*SD29*105*1*_*_", + "name": "PLABENNEC-AVENUE DE WALTENHOFEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.5986, + 48.428299 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295211", + "ref": "FR*SOD*S*SD29*52*1*_*_", + "name": "MILIZAC-ROUTE DE GOUESNOU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.002561, + 48.101925 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291312", + "ref": "FR*SOD*S*SD29*13*1*_*_", + "name": "BRIEC-RUE MICHEL-ARMAND DE CORNOUAILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.326797, + 48.664791 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291411", + "ref": "FR*SOD*S*SD29*14*1*_*_", + "name": "BRIGNOGAN PLAGE-RUE DE NAOT HIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.595497, + 48.275364 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291511", + "ref": "FR*SOD*S*SD29*15*1*_*_", + "name": "CAMARET SUR MER-RUE DU LOCH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.595497, + 48.275364 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291512", + "ref": "FR*SOD*S*SD29*15*1*_*_", + "name": "CAMARET SUR MER-RUE DU LOCH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.91355, + 48.667358 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291612", + "ref": "FR*SOD*S*SD29*16*1*_*_", + "name": "CARANTEC-RUE DUQUESNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.91355, + 48.667358 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291611", + "ref": "FR*SOD*S*SD29*16*1*_*_", + "name": "CARANTEC-RUE DUQUESNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.539367, + 48.275612 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291712", + "ref": "FR*SOD*S*SD29*17*1*_*_", + "name": "CARHAIX PLOUGUER-RUE GENERAL JACQUES DE LA BOLLARDIERE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.539367, + 48.275612 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291711", + "ref": "FR*SOD*S*SD29*17*1*_*_", + "name": "CARHAIX PLOUGUER-RUE GENERAL JACQUES DE LA BOLLARDIERE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.576228, + 48.277264 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291812", + "ref": "FR*SOD*S*SD29*18*1*_*_", + "name": "CARHAIX PLOUGUER-RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.576228, + 48.277264 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291811", + "ref": "FR*SOD*S*SD29*18*1*_*_", + "name": "CARHAIX PLOUGUER-RUE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.139651, + 48.159222 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291911", + "ref": "FR*SOD*S*SD29*19*1*_*_", + "name": "CAST-RUE DE LA FONTAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.139651, + 48.159222 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291912", + "ref": "FR*SOD*S*SD29*19*1*_*_", + "name": "CAST-RUE DE LA FONTAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.093426, + 48.194569 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292011", + "ref": "FR*SOD*S*SD29*20*1*_*_", + "name": "CHATEAULIN-RUE DE LA PLAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.093426, + 48.194569 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292012", + "ref": "FR*SOD*S*SD29*20*1*_*_", + "name": "CHATEAULIN-RUE DE LA PLAINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05061, + 48.21619 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292121", + "ref": "FR*SOD*S*SD29*21*2*_*_", + "name": "CHATEAULIN-D88", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05061, + 48.21619 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292122", + "ref": "FR*SOD*S*SD29*21*2*_*_", + "name": "CHATEAULIN-D88", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05061, + 48.21619 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292111", + "ref": "FR*SOD*S*SD29*21*1*_*_", + "name": "CHATEAULIN-D88", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05061, + 48.21619 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292112", + "ref": "FR*SOD*S*SD29*21*1*_*_", + "name": "CHATEAULIN-D88", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.818973, + 48.192974 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292211", + "ref": "FR*SOD*S*SD29*22*1*_*_", + "name": "CHATEAUNEUF DU FAOU-IMPASSE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.818973, + 48.192974 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292212", + "ref": "FR*SOD*S*SD29*22*1*_*_", + "name": "CHATEAUNEUF DU FAOU-IMPASSE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.104016, + 48.663445 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292311", + "ref": "FR*SOD*S*SD29*23*1*_*_", + "name": "CLEDER-RUE DE PLOUESCAT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.104016, + 48.663445 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292312", + "ref": "FR*SOD*S*SD29*23*1*_*_", + "name": "CLEDER-RUE DE PLOUESCAT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.586496, + 47.795624 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292411", + "ref": "FR*SOD*S*SD29*24*1*_*_", + "name": "CLOHARS CARNOET-RUE DE DOELAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.586496, + 47.795624 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292412", + "ref": "FR*SOD*S*SD29*24*1*_*_", + "name": "CLOHARS CARNOET-RUE DE DOELAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.326797, + 48.664791 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291412", + "ref": "FR*SOD*S*SD29*14*1*_*_", + "name": "BRIGNOGAN PLAGE-RUE DE NAOT HIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.002561, + 48.101925 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291311", + "ref": "FR*SOD*S*SD29*13*1*_*_", + "name": "BRIEC-RUE MICHEL-ARMAND DE CORNOUAILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.064729, + 47.89743 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292511", + "ref": "FR*SOD*S*SD29*25*1*_*_", + "name": "CLOHARS FOUESNANT-PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.955801, + 48.302963 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291211", + "ref": "FR*SOD*S*SD29*12*1*_*_", + "name": "BRASPARTS-RUE SAINT-MICHEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.317977, + 48.245838 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29111", + "ref": "FR*SOD*S*SD29*1*1*_*_", + "name": "ARGOL-PLACE DES ANCIENS COMBATTANTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.791397, + 47.818333 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910312", + "ref": "FR*SOD*S*SD29*103*1*_*_", + "name": "NEVEZ-RUE DE PORT MANECH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.440174, + 47.901684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29211", + "ref": "FR*SOD*S*SD29*2*1*_*_", + "name": "ARZANO-PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.440174, + 47.901684 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29212", + "ref": "FR*SOD*S*SD29*2*1*_*_", + "name": "ARZANO-PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.537401, + 48.026707 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29311", + "ref": "FR*SOD*S*SD29*3*1*_*_", + "name": "AUDIERNE-RUE LAMARTINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.537401, + 48.026707 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29312", + "ref": "FR*SOD*S*SD29*3*1*_*_", + "name": "AUDIERNE-RUE LAMARTINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.700252, + 47.93338 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29412", + "ref": "FR*SOD*S*SD29*4*1*_*_", + "name": "BANNALEC-PLACE YVES TANGUY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.700252, + 47.93338 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29411", + "ref": "FR*SOD*S*SD29*4*1*_*_", + "name": "BANNALEC-PLACE YVES TANGUY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.706109, + 47.926643 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29511", + "ref": "FR*SOD*S*SD29*5*1*_*_", + "name": "BANNALEC-LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.706109, + 47.926643 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29512", + "ref": "FR*SOD*S*SD29*5*1*_*_", + "name": "BANNALEC-LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.605561, + 47.857525 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29611", + "ref": "FR*SOD*S*SD29*6*1*_*_", + "name": "BAYE-IMPASSE SAINT-ELOI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.605561, + 47.857525 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29612", + "ref": "FR*SOD*S*SD29*6*1*_*_", + "name": "BAYE-IMPASSE SAINT-ELOI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.102162, + 47.871059 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29712", + "ref": "FR*SOD*S*SD29*7*1*_*_", + "name": "BENODET-CORNICHE DE LA PLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.102162, + 47.871059 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29711", + "ref": "FR*SOD*S*SD29*7*1*_*_", + "name": "BENODET-CORNICHE DE LA PLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.106747, + 47.87693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29812", + "ref": "FR*SOD*S*SD29*8*1*_*_", + "name": "BENODET-AVENUE DE LA MER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.106747, + 47.87693 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29811", + "ref": "FR*SOD*S*SD29*8*1*_*_", + "name": "BENODET-AVENUE DE LA MER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.116132, + 47.876938 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29911", + "ref": "FR*SOD*S*SD29*9*1*_*_", + "name": "BENODET-AVENUE DE LODET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.116132, + 47.876938 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29912", + "ref": "FR*SOD*S*SD29*9*1*_*_", + "name": "BENODET-AVENUE DE LODET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.512228, + 48.074905 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291012", + "ref": "FR*SOD*S*SD29*10*1*_*_", + "name": "BEUZEC CAP SIZUN-PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.512228, + 48.074905 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291011", + "ref": "FR*SOD*S*SD29*10*1*_*_", + "name": "BEUZEC CAP SIZUN-PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.507157, + 48.49913 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291111", + "ref": "FR*SOD*S*SD29*11*1*_*_", + "name": "BOURG BLANC-PLACE CHARLES ET MARIE CHAPALAIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.507157, + 48.49913 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291112", + "ref": "FR*SOD*S*SD29*11*1*_*_", + "name": "BOURG BLANC-PLACE CHARLES ET MARIE CHAPALAIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.955801, + 48.302963 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD291212", + "ref": "FR*SOD*S*SD29*12*1*_*_", + "name": "BRASPARTS-RUE SAINT-MICHEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.064729, + 47.89743 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292512", + "ref": "FR*SOD*S*SD29*25*1*_*_", + "name": "CLOHARS FOUESNANT-PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.890398, + 47.996445 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292612", + "ref": "FR*SOD*S*SD29*26*1*_*_", + "name": "ELLIANT-PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.5986, + 48.428299 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295212", + "ref": "FR*SOD*S*SD29*52*1*_*_", + "name": "MILIZAC-ROUTE DE GOUESNOU", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.262154, + 48.361095 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293912", + "ref": "FR*SOD*S*SD29*39*1*_*_", + "name": "DAOULAS-RUE DE LA RIVE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.165494, + 48.219227 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294012", + "ref": "FR*SOD*S*SD29*40*1*_*_", + "name": "DINEAULT-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.270626, + 48.397804 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294112", + "ref": "FR*SOD*S*SD29*41*1*_*_", + "name": "DIRINON-PLACE FRANCOIS-MARIE COATALEM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.270626, + 48.397804 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294111", + "ref": "FR*SOD*S*SD29*41*1*_*_", + "name": "DIRINON-PLACE FRANCOIS-MARIE COATALEM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-14", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.341825, + 48.09568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294211", + "ref": "FR*SOD*S*SD29*42*1*_*_", + "name": "DOUARNENEZ-QUAI FRANCOIS BONIZEC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.341825, + 48.09568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294212", + "ref": "FR*SOD*S*SD29*42*1*_*_", + "name": "DOUARNENEZ-QUAI FRANCOIS BONIZEC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.330149, + 48.092033 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294311", + "ref": "FR*SOD*S*SD29*43*1*_*_", + "name": "DOUARNENEZ-RUE BERTHELOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.330149, + 48.092033 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294312", + "ref": "FR*SOD*S*SD29*43*1*_*_", + "name": "DOUARNENEZ-RUE BERTHELOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.32102, + 48.086506 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294411", + "ref": "FR*SOD*S*SD29*44*1*_*_", + "name": "DOUARNENEZ-PLACE PAUL STEPHAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.32102, + 48.086506 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294412", + "ref": "FR*SOD*S*SD29*44*1*_*_", + "name": "DOUARNENEZ-PLACE PAUL STEPHAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.975574, + 48.104568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294512", + "ref": "FR*SOD*S*SD29*45*1*_*_", + "name": "EDERN-RUE DE LA LIBERATION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.975574, + 48.104568 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294511", + "ref": "FR*SOD*S*SD29*45*1*_*_", + "name": "EDERN-RUE DE LA LIBERATION", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.024456, + 48.008377 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294611", + "ref": "FR*SOD*S*SD29*46*1*_*_", + "name": "ERGUE GABERIC-ROUTE DE CROAS SPERN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.024456, + 48.008377 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294612", + "ref": "FR*SOD*S*SD29*46*1*_*_", + "name": "ERGUE GABERIC-ROUTE DE CROAS SPERN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.012943, + 47.895412 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294711", + "ref": "FR*SOD*S*SD29*47*1*_*_", + "name": "FOUESNANT-RUE DES ILES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.012943, + 47.895412 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294712", + "ref": "FR*SOD*S*SD29*47*1*_*_", + "name": "FOUESNANT-RUE DES ILES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.011984, + 47.891369 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294811", + "ref": "FR*SOD*S*SD29*48*1*_*_", + "name": "FOUESNANT-RUE DES SPORTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.011984, + 47.891369 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294812", + "ref": "FR*SOD*S*SD29*48*1*_*_", + "name": "FOUESNANT-RUE DES SPORTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.115754, + 47.910778 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294911", + "ref": "FR*SOD*S*SD29*49*1*_*_", + "name": "GOUESNACH-ROUTE DE BENODET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.115754, + 47.910778 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294912", + "ref": "FR*SOD*S*SD29*49*1*_*_", + "name": "GOUESNACH-ROUTE DE BENODET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.5913, + 48.055546 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295011", + "ref": "FR*SOD*S*SD29*50*1*_*_", + "name": "GOULIEN-LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.5913, + 48.055546 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295012", + "ref": "FR*SOD*S*SD29*50*1*_*_", + "name": "GOULIEN-LE BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.583797, + 48.515305 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295111", + "ref": "FR*SOD*S*SD29*51*1*_*_", + "name": "GUERLESQUIN-HENT TOULL KERZERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.583797, + 48.515305 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD295112", + "ref": "FR*SOD*S*SD29*51*1*_*_", + "name": "GUERLESQUIN-HENT TOULL KERZERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.165494, + 48.219227 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD294011", + "ref": "FR*SOD*S*SD29*40*1*_*_", + "name": "DINEAULT-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.262154, + 48.361095 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293911", + "ref": "FR*SOD*S*SD29*39*1*_*_", + "name": "DAOULAS-RUE DE LA RIVE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.890398, + 47.996445 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292611", + "ref": "FR*SOD*S*SD29*26*1*_*_", + "name": "ELLIANT-PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.506578, + 48.2258 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293812", + "ref": "FR*SOD*S*SD29*38*1*_*_", + "name": "CROZON-RUE DE LATLANTIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.123075, + 47.874435 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292712", + "ref": "FR*SOD*S*SD29*27*1*_*_", + "name": "COMBRIT-PLACE GRAFENHAUSER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.123075, + 47.874435 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292711", + "ref": "FR*SOD*S*SD29*27*1*_*_", + "name": "COMBRIT-PLACE GRAFENHAUSER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.956018, + 48.413948 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292811", + "ref": "FR*SOD*S*SD29*28*1*_*_", + "name": "COMMANA-PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.956018, + 48.413948 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292812", + "ref": "FR*SOD*S*SD29*28*1*_*_", + "name": "COMMANA-PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9177, + 47.87339 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292911", + "ref": "FR*SOD*S*SD29*29*1*_*_", + "name": "CONCARNEAU-QUAI DAIGUILLON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9177, + 47.87339 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD292912", + "ref": "FR*SOD*S*SD29*29*1*_*_", + "name": "CONCARNEAU-QUAI DAIGUILLON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.909739, + 47.872265 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293011", + "ref": "FR*SOD*S*SD29*30*1*_*_", + "name": "CONCARNEAU-RUE JULES FERRY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.909739, + 47.872265 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293012", + "ref": "FR*SOD*S*SD29*30*1*_*_", + "name": "CONCARNEAU-RUE JULES FERRY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.901737, + 47.921692 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293111", + "ref": "FR*SOD*S*SD29*31*1*_*_", + "name": "CONCARNEAU-RUE DE LA FORGE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.901737, + 47.921692 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293112", + "ref": "FR*SOD*S*SD29*31*1*_*_", + "name": "CONCARNEAU-RUE DE LA FORGE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.917199, + 47.870399 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293211", + "ref": "FR*SOD*S*SD29*32*1*_*_", + "name": "CONCARNEAU-RUE LERAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.917199, + 47.870399 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293212", + "ref": "FR*SOD*S*SD29*32*1*_*_", + "name": "CONCARNEAU-RUE LERAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.924636, + 47.877735 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293311", + "ref": "FR*SOD*S*SD29*33*1*_*_", + "name": "CONCARNEAU-RUE CLAUDE DEBUSSY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.924636, + 47.877735 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293312", + "ref": "FR*SOD*S*SD29*33*1*_*_", + "name": "CONCARNEAU-RUE CLAUDE DEBUSSY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.832747, + 48.060768 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293412", + "ref": "FR*SOD*S*SD29*34*1*_*_", + "name": "CORAY-RUE DE PORS CLOS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.832747, + 48.060768 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293411", + "ref": "FR*SOD*S*SD29*34*1*_*_", + "name": "CORAY-RUE DE PORS CLOS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.418989, + 48.247986 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293511", + "ref": "FR*SOD*S*SD29*35*1*_*_", + "name": "CROZON-ROUTE DE CHATEAULIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.418989, + 48.247986 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293512", + "ref": "FR*SOD*S*SD29*35*1*_*_", + "name": "CROZON-ROUTE DE CHATEAULIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.491614, + 48.248337 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293611", + "ref": "FR*SOD*S*SD29*36*1*_*_", + "name": "CROZON-RUE DE LA MARNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.491614, + 48.248337 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293612", + "ref": "FR*SOD*S*SD29*36*1*_*_", + "name": "CROZON-RUE DE LA MARNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.507885, + 48.285328 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293711", + "ref": "FR*SOD*S*SD29*37*1*_*_", + "name": "CROZON-QUAI DU FRET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.507885, + 48.285328 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293712", + "ref": "FR*SOD*S*SD29*37*1*_*_", + "name": "CROZON-QUAI DU FRET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.506578, + 48.2258 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD293811", + "ref": "FR*SOD*S*SD29*38*1*_*_", + "name": "CROZON-RUE DE LATLANTIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.791397, + 47.818333 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910311", + "ref": "FR*SOD*S*SD29*103*1*_*_", + "name": "NEVEZ-RUE DE PORT MANECH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.829561, + 47.958473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918211", + "ref": "FR*SOD*S*SD29*182*1*_*_", + "name": "ROSPORDEN-RUE LOUIS PASTEUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.375518, + 47.817368 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910411", + "ref": "FR*SOD*S*SD29*104*1*_*_", + "name": "PENMARCH-RUE DES CONSERVERIES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.095822, + 48.006672 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917412", + "ref": "FR*SOD*S*SD29*174*1*_*_", + "name": "QUIMPER-ALEZ AN EOSTIGED", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.552851, + 47.871124 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917512", + "ref": "FR*SOD*S*SD29*175*1*_*_", + "name": "QUIMPERLE-BOULEVARD DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.546339, + 47.874336 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917611", + "ref": "FR*SOD*S*SD29*176*1*_*_", + "name": "QUIMPERLE-PLACE DU BARZAZ BREIZH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.546339, + 47.874336 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917612", + "ref": "FR*SOD*S*SD29*176*1*_*_", + "name": "QUIMPERLE-PLACE DU BARZAZ BREIZH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.552238, + 47.868786 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917711", + "ref": "FR*SOD*S*SD29*177*1*_*_", + "name": "QUIMPERLE-PLACE WINSTON CHURCHILL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.552238, + 47.868786 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917712", + "ref": "FR*SOD*S*SD29*177*1*_*_", + "name": "QUIMPERLE-PLACE WINSTON CHURCHILL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.461947, + 47.860291 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917811", + "ref": "FR*SOD*S*SD29*178*1*_*_", + "name": "REDENE-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.461947, + 47.860291 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917812", + "ref": "FR*SOD*S*SD29*178*1*_*_", + "name": "REDENE-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.691156, + 47.843136 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917911", + "ref": "FR*SOD*S*SD29*179*1*_*_", + "name": "RIEC SUR BELON-RUE DE LA PAIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.691156, + 47.843136 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917912", + "ref": "FR*SOD*S*SD29*179*1*_*_", + "name": "RIEC SUR BELON-RUE DE LA PAIX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.985369, + 48.724209 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918012", + "ref": "FR*SOD*S*SD29*180*1*_*_", + "name": "ROSCOFF-RUE CELESTIN SEITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.985369, + 48.724209 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918011", + "ref": "FR*SOD*S*SD29*180*1*_*_", + "name": "ROSCOFF-RUE CELESTIN SEITE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.980556, + 48.722633 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918112", + "ref": "FR*SOD*S*SD29*181*1*_*_", + "name": "ROSCOFF-QUAI DAUXERRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.980556, + 48.722633 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918111", + "ref": "FR*SOD*S*SD29*181*1*_*_", + "name": "ROSCOFF-QUAI DAUXERRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.829561, + 47.958473 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918212", + "ref": "FR*SOD*S*SD29*182*1*_*_", + "name": "ROSPORDEN-RUE LOUIS PASTEUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02287, + 47.935459 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918311", + "ref": "FR*SOD*S*SD29*183*1*_*_", + "name": "SAINT EVARZEC-RUE DE LA LIBERTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02287, + 47.935459 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918312", + "ref": "FR*SOD*S*SD29*183*1*_*_", + "name": "SAINT EVARZEC-RUE DE LA LIBERTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.799367, + 48.153252 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918411", + "ref": "FR*SOD*S*SD29*184*1*_*_", + "name": "SAINT GOAZEC-MENEZ ROUZ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.799367, + 48.153252 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918412", + "ref": "FR*SOD*S*SD29*184*1*_*_", + "name": "SAINT GOAZEC-MENEZ ROUZ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.843285, + 48.575516 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918511", + "ref": "FR*SOD*S*SD29*185*1*_*_", + "name": "SAINT MARTIN DES CHAMPS-RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.843285, + 48.575516 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918512", + "ref": "FR*SOD*S*SD29*185*1*_*_", + "name": "SAINT MARTIN DES CHAMPS-RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.61037, + 48.567944 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918612", + "ref": "FR*SOD*S*SD29*186*1*_*_", + "name": "SAINT PABU-RUE DU BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.61037, + 48.567944 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918611", + "ref": "FR*SOD*S*SD29*186*1*_*_", + "name": "SAINT PABU-RUE DU BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.98622, + 48.686703 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918712", + "ref": "FR*SOD*S*SD29*187*1*_*_", + "name": "SAINT POL DE LEON-PLACE DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.552851, + 47.871124 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917511", + "ref": "FR*SOD*S*SD29*175*1*_*_", + "name": "QUIMPERLE-BOULEVARD DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.095822, + 48.006672 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917411", + "ref": "FR*SOD*S*SD29*174*1*_*_", + "name": "QUIMPER-ALEZ AN EOSTIGED", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-03-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.988846, + 48.678314 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918811", + "ref": "FR*SOD*S*SD29*188*1*_*_", + "name": "SAINT POL DE LEON-RUE PEN AR PONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.093842, + 48.00309 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917312", + "ref": "FR*SOD*S*SD29*173*1*_*_", + "name": "QUIMPER-MPT DE KERFEUNTEUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.536914, + 47.959827 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916111", + "ref": "FR*SOD*S*SD29*161*1*_*_", + "name": "QUERRIEN-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.536914, + 47.959827 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916112", + "ref": "FR*SOD*S*SD29*161*1*_*_", + "name": "QUERRIEN-PLACE DE LEGLISE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.083755, + 48.031239 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916412", + "ref": "FR*SOD*S*SD29*164*1*_*_", + "name": "QUIMPER-N165", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.083755, + 48.031239 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916421", + "ref": "FR*SOD*S*SD29*164*2*_*_", + "name": "QUIMPER-N165", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.083755, + 48.031239 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916422", + "ref": "FR*SOD*S*SD29*164*2*_*_", + "name": "QUIMPER-N165", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.083755, + 48.031239 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916411", + "ref": "FR*SOD*S*SD29*164*1*_*_", + "name": "QUIMPER-N165", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-12-12", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.1279, + 47.986479 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916511", + "ref": "FR*SOD*S*SD29*165*1*_*_", + "name": "QUIMPER-BOULEVARD DE BRETAGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.1279, + 47.986479 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916512", + "ref": "FR*SOD*S*SD29*165*1*_*_", + "name": "QUIMPER-BOULEVARD DE BRETAGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.093657, + 48.013607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916612", + "ref": "FR*SOD*S*SD29*166*1*_*_", + "name": "QUIMPER-BOULEVARD DU FINISTERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.093657, + 48.013607 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916611", + "ref": "FR*SOD*S*SD29*166*1*_*_", + "name": "QUIMPER-BOULEVARD DU FINISTERE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.095428, + 48.010571 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916712", + "ref": "FR*SOD*S*SD29*167*1*_*_", + "name": "QUIMPER-ROUTE DE TY NAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.095428, + 48.010571 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916711", + "ref": "FR*SOD*S*SD29*167*1*_*_", + "name": "QUIMPER-ROUTE DE TY NAY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.106417, + 47.999485 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916812", + "ref": "FR*SOD*S*SD29*168*1*_*_", + "name": "QUIMPER-RUE ROUGET DE LISLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.106417, + 47.999485 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916811", + "ref": "FR*SOD*S*SD29*168*1*_*_", + "name": "QUIMPER-RUE ROUGET DE LISLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.102052, + 47.999451 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916911", + "ref": "FR*SOD*S*SD29*169*1*_*_", + "name": "QUIMPER-PLACE DE LA TOURBIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.102052, + 47.999451 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916912", + "ref": "FR*SOD*S*SD29*169*1*_*_", + "name": "QUIMPER-PLACE DE LA TOURBIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.104504, + 47.993977 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917011", + "ref": "FR*SOD*S*SD29*170*1*_*_", + "name": "QUIMPER-PLACE DE LA RESISTANCE ET DU GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.104504, + 47.993977 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917012", + "ref": "FR*SOD*S*SD29*170*1*_*_", + "name": "QUIMPER-PLACE DE LA RESISTANCE ET DU GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08335, + 47.984688 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917111", + "ref": "FR*SOD*S*SD29*171*1*_*_", + "name": "QUIMPER-AVENUE DU BRADEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08335, + 47.984688 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917112", + "ref": "FR*SOD*S*SD29*171*1*_*_", + "name": "QUIMPER-AVENUE DU BRADEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.072012, + 47.9832 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917211", + "ref": "FR*SOD*S*SD29*172*1*_*_", + "name": "QUIMPER-MPT D’ERGUE ARMEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.072012, + 47.9832 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917212", + "ref": "FR*SOD*S*SD29*172*1*_*_", + "name": "QUIMPER-MPT D’ERGUE ARMEL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.093842, + 48.00309 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2917311", + "ref": "FR*SOD*S*SD29*173*1*_*_", + "name": "QUIMPER-MPT DE KERFEUNTEUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.98622, + 48.686703 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918711", + "ref": "FR*SOD*S*SD29*187*1*_*_", + "name": "SAINT POL DE LEON-PLACE DU MARCHE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.988846, + 48.678314 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918812", + "ref": "FR*SOD*S*SD29*188*1*_*_", + "name": "SAINT POL DE LEON-RUE PEN AR PONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.375518, + 47.817368 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910412", + "ref": "FR*SOD*S*SD29*104*1*_*_", + "name": "PENMARCH-RUE DES CONSERVERIES", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.078652, + 48.689281 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920211", + "ref": "FR*SOD*S*SD29*202*1*_*_", + "name": "SIBIRIL - RUE DU PORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02585, + 48.702991 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920311", + "ref": "FR*SOD*S*SD29*203*1*_*_", + "name": "SANTEC - PLACE DE MESCREN 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02585, + 48.702991 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920312", + "ref": "FR*SOD*S*SD29*203*1*_*_", + "name": "SANTEC - PLACE DE MESCREN 1", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.538179, + 48.552601 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920412", + "ref": "FR*SOD*S*SD29*204*1*_*_", + "name": "TREGLONOU - RUE DU PONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.538179, + 48.552601 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920411", + "ref": "FR*SOD*S*SD29*204*1*_*_", + "name": "TREGLONOU - RUE DU PONT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.678202, + 48.433521 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920511", + "ref": "FR*SOD*S*SD29*205*1*_*_", + "name": "SCRIGNAC - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.678202, + 48.433521 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920512", + "ref": "FR*SOD*S*SD29*205*1*_*_", + "name": "SCRIGNAC - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2020-06-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52067, + 47.90242 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920611", + "ref": "FR*SOD*S*SD29*206*1*_*_", + "name": "TREMEVEN - RUE DU FAOUET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52067, + 47.90242 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920612", + "ref": "FR*SOD*S*SD29*206*1*_*_", + "name": "TREMEVEN - RUE DU FAOUET", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.051803, + 47.999352 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920811", + "ref": "FR*SOD*S*SD29*208*1*_*_", + "name": "ERGUE-GABERIC - ROUILLEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.051803, + 47.999352 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920812", + "ref": "FR*SOD*S*SD29*208*1*_*_", + "name": "ERGUE-GABERIC - ROUILLEN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-12-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.203651, + 48.472099 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920911", + "ref": "FR*SOD*S*SD29*209*1*_*_", + "name": "LA ROCHE MAURICE - RUE DU MORBIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.203651, + 48.472099 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920912", + "ref": "FR*SOD*S*SD29*209*1*_*_", + "name": "LA ROCHE MAURICE - RUE DU MORBIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-07-15", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.757681, + 48.521224 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2921011", + "ref": "FR*SOD*S*SD29*210*1*_*_", + "name": "LANDUNVEZ - BOULEVARD DE L OCEAN PORT D ARGENTON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.757681, + 48.521224 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2921012", + "ref": "FR*SOD*S*SD29*210*1*_*_", + "name": "LANDUNVEZ - BOULEVARD DE L OCEAN PORT D ARGENTON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.317882, + 48.082424 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2921121", + "ref": "FR*SOD*S*SD29*211*2*_*_", + "name": "DOUARNENEZ - STADE AQUATIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.317882, + 48.082424 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2921111", + "ref": "FR*SOD*S*SD29*211*1*_*_", + "name": "DOUARNENEZ - STADE AQUATIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.317882, + 48.082424 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2921112", + "ref": "FR*SOD*S*SD29*211*1*_*_", + "name": "DOUARNENEZ - STADE AQUATIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.317882, + 48.082424 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2921122", + "ref": "FR*SOD*S*SD29*211*2*_*_", + "name": "DOUARNENEZ - STADE AQUATIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.832769, + 47.960244 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2921211", + "ref": "FR*SOD*S*SD29*212*1*_*_", + "name": "ROSPORDEN - PEM GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.832769, + 47.960244 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2921212", + "ref": "FR*SOD*S*SD29*212*1*_*_", + "name": "ROSPORDEN - PEM GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-05-10", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.650071, + 48.048437 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2921312", + "ref": "FR*SOD*S*SD29*213*1*_*_", + "name": "SDE 29 - CLEDEN CAP SIZUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.650071, + 48.048437 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2921311", + "ref": "FR*SOD*S*SD29*213*1*_*_", + "name": "SDE 29 - CLEDEN CAP SIZUN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-11-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.045589, + 47.906719 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910612", + "ref": "FR*SOD*S*SD29*106*1*_*_", + "name": "PLEUVEN-LE BOURG ROUTE DE QUIMPER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.078652, + 48.689281 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920212", + "ref": "FR*SOD*S*SD29*202*1*_*_", + "name": "SIBIRIL - RUE DU PORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.623005, + 47.958649 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920112", + "ref": "FR*SOD*S*SD29*201*1*_*_", + "name": "SAINT-THURIEN - RUE DE QUERRIEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.620963, + 48.433746 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918912", + "ref": "FR*SOD*S*SD29*189*1*_*_", + "name": "SAINT RENAN-RUE LEON CHEMINANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.623005, + 47.958649 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920111", + "ref": "FR*SOD*S*SD29*201*1*_*_", + "name": "SAINT-THURIEN - RUE DE QUERRIEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.620963, + 48.433746 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2918911", + "ref": "FR*SOD*S*SD29*189*1*_*_", + "name": "SAINT RENAN-RUE LEON CHEMINANT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-02-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.067573, + 48.241135 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919012", + "ref": "FR*SOD*S*SD29*190*1*_*_", + "name": "SAINT SEGAL-RUE DE PONT DE BUIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.067573, + 48.241135 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919011", + "ref": "FR*SOD*S*SD29*190*1*_*_", + "name": "SAINT SEGAL-RUE DE PONT DE BUIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.946151, + 48.521469 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919111", + "ref": "FR*SOD*S*SD29*191*1*_*_", + "name": "SAINT THEGONNEC-AVENUE DE PARK AN ILIZ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.946151, + 48.521469 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919112", + "ref": "FR*SOD*S*SD29*191*1*_*_", + "name": "SAINT THEGONNEC-AVENUE DE PARK AN ILIZ", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.885427, + 48.164818 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919212", + "ref": "FR*SOD*S*SD29*192*1*_*_", + "name": "SAINT THOIS-RUE DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.885427, + 48.164818 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919211", + "ref": "FR*SOD*S*SD29*192*1*_*_", + "name": "SAINT THOIS-RUE DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.850635, + 47.855431 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919311", + "ref": "FR*SOD*S*SD29*193*1*_*_", + "name": "TREGUNC - PLACE GEORGES BEAUJEAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.850635, + 47.855431 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919312", + "ref": "FR*SOD*S*SD29*193*1*_*_", + "name": "TREGUNC - PLACE GEORGES BEAUJEAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.937679, + 47.966953 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919411", + "ref": "FR*SOD*S*SD29*194*1*_*_", + "name": "SAINT-YVI - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.937679, + 47.966953 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919412", + "ref": "FR*SOD*S*SD29*194*1*_*_", + "name": "SAINT-YVI - PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.354569, + 48.231087 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919511", + "ref": "FR*SOD*S*SD29*195*1*_*_", + "name": "TELGRUC-SUR-MER - RUE DES PINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.354569, + 48.231087 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919512", + "ref": "FR*SOD*S*SD29*195*1*_*_", + "name": "TELGRUC-SUR-MER - RUE DES PINS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.702015, + 48.025848 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919611", + "ref": "FR*SOD*S*SD29*196*1*_*_", + "name": "SCAER - PLACE VICTOR HUGO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.702015, + 48.025848 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919612", + "ref": "FR*SOD*S*SD29*196*1*_*_", + "name": "SCAER - PLACE VICTOR HUGO", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.276989, + 47.79454 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919712", + "ref": "FR*SOD*S*SD29*197*1*_*_", + "name": "TREFFIAGAT - AVENUE DU PORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.276989, + 47.79454 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919711", + "ref": "FR*SOD*S*SD29*197*1*_*_", + "name": "TREFFIAGAT - AVENUE DU PORT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.079161, + 48.405582 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919812", + "ref": "FR*SOD*S*SD29*198*1*_*_", + "name": "SIZUN - D764", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.079161, + 48.405582 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919811", + "ref": "FR*SOD*S*SD29*198*1*_*_", + "name": "SIZUN - D764", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.862684, + 48.106586 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919911", + "ref": "FR*SOD*S*SD29*199*1*_*_", + "name": "TREGOUREZ - RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.862684, + 48.106586 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2919912", + "ref": "FR*SOD*S*SD29*199*1*_*_", + "name": "TREGOUREZ - RUE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.851396, + 47.854599 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920011", + "ref": "FR*SOD*S*SD29*200*1*_*_", + "name": "TREGUNC - RUE YOUENN GWERNIG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.851396, + 47.854599 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2920012", + "ref": "FR*SOD*S*SD29*200*1*_*_", + "name": "TREGUNC - RUE YOUENN GWERNIG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.119875, + 48.11594 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916011", + "ref": "FR*SOD*S*SD29*160*1*_*_", + "name": "QUEMENEVEN-ROUTE DE KERAMPAPE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.119875, + 48.11594 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2916012", + "ref": "FR*SOD*S*SD29*160*1*_*_", + "name": "QUEMENEVEN-ROUTE DE KERAMPAPE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-11-07", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.414799, + 48.080925 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915911", + "ref": "FR*SOD*S*SD29*159*1*_*_", + "name": "POULLAN SUR MER-PLACE KREIZ KER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.733003, + 48.432934 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911911", + "ref": "FR*SOD*S*SD29*119*1*_*_", + "name": "PLOUARZEL-RUE STREAT LANNOC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.658987, + 48.542091 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912012", + "ref": "FR*SOD*S*SD29*120*1*_*_", + "name": "PLOUDALMEZEAU-RUE AUGUSTE CAROFF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.658987, + 48.542091 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912011", + "ref": "FR*SOD*S*SD29*120*1*_*_", + "name": "PLOUDALMEZEAU-RUE AUGUSTE CAROFF", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-04-09", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.699928, + 48.557819 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912112", + "ref": "FR*SOD*S*SD29*121*1*_*_", + "name": "PLOUDALMEZEAU-RUE DE MON REPOS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.699928, + 48.557819 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912111", + "ref": "FR*SOD*S*SD29*121*1*_*_", + "name": "PLOUDALMEZEAU-RUE DE MON REPOS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-16", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.289413, + 48.48246 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912212", + "ref": "FR*SOD*S*SD29*122*1*_*_", + "name": "PLOUDANIEL-AIRE DE COVOITURAGE CD 29", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.289413, + 48.48246 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912211", + "ref": "FR*SOD*S*SD29*122*1*_*_", + "name": "PLOUDANIEL-AIRE DE COVOITURAGE CD 29", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.311651, + 48.538128 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912311", + "ref": "FR*SOD*S*SD29*123*1*_*_", + "name": "PLOUDANIEL-ALLEE DES TILLEULS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.311651, + 48.538128 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912312", + "ref": "FR*SOD*S*SD29*123*1*_*_", + "name": "PLOUDANIEL-ALLEE DES TILLEULS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.675449, + 48.621498 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912412", + "ref": "FR*SOD*S*SD29*124*1*_*_", + "name": "PLOUEGAT GUERAND-PLACE DU BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.675449, + 48.621498 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912411", + "ref": "FR*SOD*S*SD29*124*1*_*_", + "name": "PLOUEGAT GUERAND-PLACE DU BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.605536, + 48.566917 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912511", + "ref": "FR*SOD*S*SD29*125*1*_*_", + "name": "PLOUEGAT MOYSAN-RUN AR ROUE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.605536, + 48.566917 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912512", + "ref": "FR*SOD*S*SD29*125*1*_*_", + "name": "PLOUEGAT MOYSAN-RUN AR ROUE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.989944, + 48.631069 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912612", + "ref": "FR*SOD*S*SD29*126*1*_*_", + "name": "PLOUENAN-BALIZAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.989944, + 48.631069 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912611", + "ref": "FR*SOD*S*SD29*126*1*_*_", + "name": "PLOUENAN-BALIZAN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.176036, + 48.658459 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912711", + "ref": "FR*SOD*S*SD29*127*1*_*_", + "name": "PLOUESCAT-RUE CHARLES LE GOFFIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.176036, + 48.658459 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912712", + "ref": "FR*SOD*S*SD29*127*1*_*_", + "name": "PLOUESCAT-RUE CHARLES LE GOFFIC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.822053, + 48.640057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912812", + "ref": "FR*SOD*S*SD29*128*1*_*_", + "name": "PLOUEZOC H-PLACE DU BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.822053, + 48.640057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912811", + "ref": "FR*SOD*S*SD29*128*1*_*_", + "name": "PLOUEZOC H-PLACE DU BOURG", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.792689, + 48.696903 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912911", + "ref": "FR*SOD*S*SD29*129*1*_*_", + "name": "PLOUGASNOU-RUE DES MARTYRS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.792689, + 48.696903 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2912912", + "ref": "FR*SOD*S*SD29*129*1*_*_", + "name": "PLOUGASNOU-RUE DES MARTYRS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.719758, + 48.341545 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913011", + "ref": "FR*SOD*S*SD29*130*1*_*_", + "name": "PLOUGONVELIN-PLACE GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.719758, + 48.341545 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913012", + "ref": "FR*SOD*S*SD29*130*1*_*_", + "name": "PLOUGONVELIN-PLACE GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.712219, + 48.520206 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913111", + "ref": "FR*SOD*S*SD29*131*1*_*_", + "name": "PLOUGONVEN-RUE DE LA MONTAGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.733003, + 48.432934 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911912", + "ref": "FR*SOD*S*SD29*119*1*_*_", + "name": "PLOUARZEL-RUE STREAT LANNOC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.221155, + 48.125313 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911812", + "ref": "FR*SOD*S*SD29*118*1*_*_", + "name": "PLONEVEZ PORZAY-ALLEE DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.414799, + 48.080925 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915912", + "ref": "FR*SOD*S*SD29*159*1*_*_", + "name": "POULLAN SUR MER-PLACE KREIZ KER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.221155, + 48.125313 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911811", + "ref": "FR*SOD*S*SD29*118*1*_*_", + "name": "PLONEVEZ PORZAY-ALLEE DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.430538, + 48.497616 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910511", + "ref": "FR*SOD*S*SD29*105*1*_*_", + "name": "PLABENNEC-AVENUE DE WALTENHOFEN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.969462, + 48.225613 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910712", + "ref": "FR*SOD*S*SD29*107*1*_*_", + "name": "PLEYBEN-PLACE CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.969462, + 48.225613 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910711", + "ref": "FR*SOD*S*SD29*107*1*_*_", + "name": "PLEYBEN-PLACE CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.874457, + 48.5084 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910811", + "ref": "FR*SOD*S*SD29*108*1*_*_", + "name": "PLEYBER CHRIST-RUE JOLIOT CURIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.874457, + 48.5084 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910812", + "ref": "FR*SOD*S*SD29*108*1*_*_", + "name": "PLEYBER CHRIST-RUE JOLIOT CURIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.228642, + 47.824329 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910911", + "ref": "FR*SOD*S*SD29*109*1*_*_", + "name": "PLOBANNALEC LESCONIL-RUE DE PONT L ABBE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.228642, + 47.824329 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910912", + "ref": "FR*SOD*S*SD29*109*1*_*_", + "name": "PLOBANNALEC LESCONIL-RUE DE PONT L ABBE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27096, + 47.981709 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911011", + "ref": "FR*SOD*S*SD29*110*1*_*_", + "name": "PLOGASTEL SAINT GERMAIN-RUE DE BRISCOUL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27096, + 47.981709 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911012", + "ref": "FR*SOD*S*SD29*110*1*_*_", + "name": "PLOGASTEL SAINT GERMAIN-RUE DE BRISCOUL", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.190454, + 48.07729 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911111", + "ref": "FR*SOD*S*SD29*111*1*_*_", + "name": "PLOGONNEC-RUE DES PEUPLIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.190454, + 48.07729 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911112", + "ref": "FR*SOD*S*SD29*111*1*_*_", + "name": "PLOGONNEC-RUE DES PEUPLIERS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-25", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.153028, + 47.935135 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911212", + "ref": "FR*SOD*S*SD29*112*1*_*_", + "name": "PLOMELIN-ALLEE DU 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.153028, + 47.935135 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911211", + "ref": "FR*SOD*S*SD29*112*1*_*_", + "name": "PLOMELIN-ALLEE DU 19 MARS 1962", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.284916, + 47.841686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911312", + "ref": "FR*SOD*S*SD29*113*1*_*_", + "name": "PLOMEUR-PLACE DES ANCIENS COMBATTANTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.284916, + 47.841686 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911311", + "ref": "FR*SOD*S*SD29*113*1*_*_", + "name": "PLOMEUR-PLACE DES ANCIENS COMBATTANTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-30", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.235011, + 48.180679 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911411", + "ref": "FR*SOD*S*SD29*114*1*_*_", + "name": "PLOMODIERN-RUE DE LA PLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.235011, + 48.180679 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911412", + "ref": "FR*SOD*S*SD29*114*1*_*_", + "name": "PLOMODIERN-RUE DE LA PLAGE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.207378, + 48.016224 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911512", + "ref": "FR*SOD*S*SD29*115*1*_*_", + "name": "PLONEIS-CHEMIN DE KERVEUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.207378, + 48.016224 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911511", + "ref": "FR*SOD*S*SD29*115*1*_*_", + "name": "PLONEIS-CHEMIN DE KERVEUR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.280146, + 47.901947 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911612", + "ref": "FR*SOD*S*SD29*116*1*_*_", + "name": "PLONEOUR LANVERN-RUE RENE LE BERRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.280146, + 47.901947 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911611", + "ref": "FR*SOD*S*SD29*116*1*_*_", + "name": "PLONEOUR LANVERN-RUE RENE LE BERRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.82614, + 48.253262 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911711", + "ref": "FR*SOD*S*SD29*117*1*_*_", + "name": "PLONEVEZ DU FAOU-PLACE DE LA RESISTANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.82614, + 48.253262 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2911712", + "ref": "FR*SOD*S*SD29*117*1*_*_", + "name": "PLONEVEZ DU FAOU-PLACE DE LA RESISTANCE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.712219, + 48.520206 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913112", + "ref": "FR*SOD*S*SD29*131*1*_*_", + "name": "PLOUGONVEN-RUE DE LA MONTAGNE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.085618, + 48.553905 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913212", + "ref": "FR*SOD*S*SD29*132*1*_*_", + "name": "PLOUGOURVEST-D35", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.085618, + 48.553905 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913211", + "ref": "FR*SOD*S*SD29*132*1*_*_", + "name": "PLOUGOURVEST-D35", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.503862, + 48.606556 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913311", + "ref": "FR*SOD*S*SD29*133*1*_*_", + "name": "PLOUGUERNEAU-RUE BEL AIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.112415, + 48.605137 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914612", + "ref": "FR*SOD*S*SD29*146*1*_*_", + "name": "PLOUZEVEDE-PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.424026, + 47.985855 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914711", + "ref": "FR*SOD*S*SD29*147*1*_*_", + "name": "PLOZEVET-PLACE DU 8 MAI 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.424026, + 47.985855 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914712", + "ref": "FR*SOD*S*SD29*147*1*_*_", + "name": "PLOZEVET-PLACE DU 8 MAI 1945", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.18113, + 47.979057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914812", + "ref": "FR*SOD*S*SD29*148*1*_*_", + "name": "PLUGUFFAN-RUE DE CORNOUAILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.18113, + 47.979057 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914811", + "ref": "FR*SOD*S*SD29*148*1*_*_", + "name": "PLUGUFFAN-RUE DE CORNOUAILLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.752462, + 47.856537 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914911", + "ref": "FR*SOD*S*SD29*149*1*_*_", + "name": "PONT AVEN-RUE DES ABBES TANGUY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.752462, + 47.856537 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914912", + "ref": "FR*SOD*S*SD29*149*1*_*_", + "name": "PONT AVEN-RUE DES ABBES TANGUY", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-31", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.486429, + 48.041206 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915012", + "ref": "FR*SOD*S*SD29*150*1*_*_", + "name": "PONT CROIX-RUE DU DOCTEUR NEIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.486429, + 48.041206 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915011", + "ref": "FR*SOD*S*SD29*150*1*_*_", + "name": "PONT CROIX-RUE DU DOCTEUR NEIS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.488049, + 48.042675 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915112", + "ref": "FR*SOD*S*SD29*151*1*_*_", + "name": "PONT CROIX-RUE CONSTANTINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.488049, + 48.042675 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915111", + "ref": "FR*SOD*S*SD29*151*1*_*_", + "name": "PONT CROIX-RUE CONSTANTINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.224181, + 47.866322 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915212", + "ref": "FR*SOD*S*SD29*152*1*_*_", + "name": "PONT L ABBE-PLACE DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.224181, + 47.866322 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915211", + "ref": "FR*SOD*S*SD29*152*1*_*_", + "name": "PONT L ABBE-PLACE DE LA REPUBLIQUE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.224541, + 47.862942 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915312", + "ref": "FR*SOD*S*SD29*153*1*_*_", + "name": "PONT L ABBE-IMPASSE GEORGES MONOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.224541, + 47.862942 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915311", + "ref": "FR*SOD*S*SD29*153*1*_*_", + "name": "PONT L ABBE-IMPASSE GEORGES MONOT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.224656, + 47.870659 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915411", + "ref": "FR*SOD*S*SD29*154*1*_*_", + "name": "PONT L ABBE-RUE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.224656, + 47.870659 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915412", + "ref": "FR*SOD*S*SD29*154*1*_*_", + "name": "PONT L ABBE-RUE DE LA GARE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.217891, + 47.88036 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915512", + "ref": "FR*SOD*S*SD29*155*1*_*_", + "name": "PONT L ABBE-D785", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.217891, + 47.88036 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915511", + "ref": "FR*SOD*S*SD29*155*1*_*_", + "name": "PONT L ABBE-D785", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-02-04", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.764534, + 48.51339 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915612", + "ref": "FR*SOD*S*SD29*156*1*_*_", + "name": "PORSPODER-RUE DE LEUROPE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.764534, + 48.51339 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915611", + "ref": "FR*SOD*S*SD29*156*1*_*_", + "name": "PORSPODER-RUE DE LEUROPE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.326583, + 48.043823 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915712", + "ref": "FR*SOD*S*SD29*157*1*_*_", + "name": "POULDERGAT-VENELLE DE DINAOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.326583, + 48.043823 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2915711", + "ref": "FR*SOD*S*SD29*157*1*_*_", + "name": "POULDERGAT-VENELLE DE DINAOU", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.112415, + 48.605137 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914611", + "ref": "FR*SOD*S*SD29*146*1*_*_", + "name": "PLOUZEVEDE-PLACE DU CHAMP DE FOIRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.038069, + 48.578644 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914512", + "ref": "FR*SOD*S*SD29*145*1*_*_", + "name": "PLOUVORN-RUE CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.038069, + 48.578644 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914511", + "ref": "FR*SOD*S*SD29*145*1*_*_", + "name": "PLOUVORN-RUE CHARLES DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.70173, + 48.567532 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913812", + "ref": "FR*SOD*S*SD29*138*1*_*_", + "name": "PLOUIGNEAU-RUE DU 9 AOUT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.503862, + 48.606556 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913312", + "ref": "FR*SOD*S*SD29*133*1*_*_", + "name": "PLOUGUERNEAU-RUE BEL AIR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.555913, + 48.619442 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913412", + "ref": "FR*SOD*S*SD29*134*1*_*_", + "name": "PLOUGUERNEAU-ROUTE DE KERVENNI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.555913, + 48.619442 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913411", + "ref": "FR*SOD*S*SD29*134*1*_*_", + "name": "PLOUGUERNEAU-ROUTE DE KERVENNI", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.602025, + 48.525082 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913512", + "ref": "FR*SOD*S*SD29*135*1*_*_", + "name": "PLOUGUIN-RUE PAOTR TREOURE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.602025, + 48.525082 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913511", + "ref": "FR*SOD*S*SD29*135*1*_*_", + "name": "PLOUGUIN-RUE PAOTR TREOURE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.486453, + 48.014278 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913611", + "ref": "FR*SOD*S*SD29*136*1*_*_", + "name": "PLOUHINEC-PLACE JEAN MOULIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.486453, + 48.014278 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913612", + "ref": "FR*SOD*S*SD29*136*1*_*_", + "name": "PLOUHINEC-PLACE JEAN MOULIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-28", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.299168, + 48.608871 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913711", + "ref": "FR*SOD*S*SD29*137*1*_*_", + "name": "PLOUIDER-PLACE GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.299168, + 48.608871 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913712", + "ref": "FR*SOD*S*SD29*137*1*_*_", + "name": "PLOUIDER-PLACE GENERAL DE GAULLE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.70173, + 48.567532 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913811", + "ref": "FR*SOD*S*SD29*138*1*_*_", + "name": "PLOUIGNEAU-RUE DU 9 AOUT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.722911, + 48.403175 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913911", + "ref": "FR*SOD*S*SD29*139*1*_*_", + "name": "PLOUMOGUER-RUE DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.451106, + 48.531193 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914412", + "ref": "FR*SOD*S*SD29*144*1*_*_", + "name": "PLOUVIEN-RUE LAENNEC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.722911, + 48.403175 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2913912", + "ref": "FR*SOD*S*SD29*139*1*_*_", + "name": "PLOUMOGUER-RUE DU STADE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-17", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.211415, + 48.513668 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914012", + "ref": "FR*SOD*S*SD29*140*1*_*_", + "name": "PLOUNEVENTER-PLACE DE LA LIBERTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.211415, + 48.513668 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914011", + "ref": "FR*SOD*S*SD29*140*1*_*_", + "name": "PLOUNEVENTER-PLACE DE LA LIBERTE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-21", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.211429, + 48.617405 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914112", + "ref": "FR*SOD*S*SD29*141*1*_*_", + "name": "PLOUNEVEZ LOCHRIST-PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.211429, + 48.617405 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914111", + "ref": "FR*SOD*S*SD29*141*1*_*_", + "name": "PLOUNEVEZ LOCHRIST-PLACE DE LA MAIRIE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-22", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.68705, + 48.50914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914211", + "ref": "FR*SOD*S*SD29*142*1*_*_", + "name": "PLOURIN-PLACE AN TI KEAR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.68705, + 48.50914 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914212", + "ref": "FR*SOD*S*SD29*142*1*_*_", + "name": "PLOURIN-PLACE AN TI KEAR", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.790468, + 48.534348 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914312", + "ref": "FR*SOD*S*SD29*143*1*_*_", + "name": "PLOURIN LES MORLAIX-RUE GUILLAUME LEZACH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.790468, + 48.534348 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914311", + "ref": "FR*SOD*S*SD29*143*1*_*_", + "name": "PLOURIN LES MORLAIX-RUE GUILLAUME LEZACH", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-23", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.451106, + 48.531193 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2914411", + "ref": "FR*SOD*S*SD29*144*1*_*_", + "name": "PLOUVIEN-RUE LAENNEC", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-18", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.317977, + 48.245838 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD29112", + "ref": "FR*SOD*S*SD29*1*1*_*_", + "name": "ARGOL-PLACE DES ANCIENS COMBATTANTS", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-24", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.045589, + 47.906719 + ] + }, + "properties": { + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref:EU:EVSE": "FRS29PSD2910611", + "ref": "FR*SOD*S*SD29*106*1*_*_", + "name": "PLEUVEN-LE BOURG ROUTE DE QUIMPER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2019-01-29", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2023-04-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498428, + 47.29969 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "304602956", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SUPER U CARQUEFOU", + "ref:EU:EVSE": "FROTHPOTHR2522", + "ref": "FR*SOD*S*OTHR*25*2*_*_", + "name": "CARQUEFOU", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2022-03-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498428, + 47.29969 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "304602956", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SUPER U CARQUEFOU", + "ref:EU:EVSE": "FROTHPOTHR2521", + "ref": "FR*SOD*S*OTHR*25*2*_*_", + "name": "CARQUEFOU", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2022-03-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498428, + 47.29969 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "304602956", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SUPER U CARQUEFOU", + "ref:EU:EVSE": "FROTHPOTHR2512", + "ref": "FR*SOD*S*OTHR*25*1*_*_", + "name": "CARQUEFOU", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2022-03-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498428, + 47.29969 + ] + }, + "properties": { + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "304602956", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SUPER U CARQUEFOU", + "ref:EU:EVSE": "FROTHPOTHR2511", + "ref": "FR*SOD*S*OTHR*25*1*_*_", + "name": "CARQUEFOU", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2018-10-01", + "note": "Conditions accès aux bornes dépendantes des accords et formules de votre EMSP", + "source:date": "2022-03-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8255189491394663, + 50.13950991485836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "824255509", + "email": "hotelrestaurant@laerodrome.com", + "phone": "", + "network": "AERODROME BAIE SOMME", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P21151738", + "name": "Parking L'Aérodrome de la Baie de Somme", + "capacity": "3", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "", + "source:date": "2021-10-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8255189491394663, + 50.13950991485836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "824255509", + "email": "hotelrestaurant@laerodrome.com", + "phone": "", + "network": "AERODROME BAIE SOMME", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P21151738", + "name": "Parking L'Aérodrome de la Baie de Somme", + "capacity": "3", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "", + "source:date": "2021-10-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8255189491394663, + 50.13950991485836 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "824255509", + "email": "hotelrestaurant@laerodrome.com", + "phone": "", + "network": "AERODROME BAIE SOMME", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P21151738", + "name": "Parking L'Aérodrome de la Baie de Somme", + "capacity": "3", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-08", + "note": "", + "source:date": "2021-10-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.381371271658948, + 46.073133287506614 + ] + }, + "properties": { + "operator": "Kotelon", + "owner:ref:FR:SIREN": "431559483", + "email": "marc.kotelon@montblanc-hotel.fr", + "phone": "0450038655", + "network": "Hôtel Mont Blanc", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Hotel Mont Blanc - Saint Pierre en Faucigny", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-24", + "note": "Recharge avec badge RFID à demander à l'accueil de l'Hôtel", + "source:date": "2022-03-30", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7997062, + 50.2659007 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DACIA BEAURAINS", + "ref:EU:EVSE": "Non concerné", + "ref": "01FMA7H8R6CNN0BVN1QN3KKJ8Y", + "name": "DACIA BEAURAINS", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-04", + "note": "", + "source:date": "2021-06-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3719483, + 43.483111 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "479244576", + "email": "frsupport@ev-box.com", + "phone": "", + "network": "STUDIO30", + "ref:EU:EVSE": "Non concerné", + "ref": "NLEVBE3WLPUMM4CDNBGWMIRQ3PKPE6JU", + "name": "STUDIO30", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-01", + "note": "recharge uniquement pendant les horaires d'ouverture", + "source:date": "2021-10-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.3406297, + 4.858677 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "385279609", + "email": "frsupport@ev-box.com", + "phone": "", + "network": "VOLKSWAGEN", + "ref:EU:EVSE": "Non concerné", + "ref": "NL*EVB*EA2AXUYIOTQ4GFABUPEAMAMGIEA ", + "name": "VOLKWAGEN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-20", + "note": "Recharge uniquement pendant les horaires d'ouverture", + "source:date": "2021-10-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.069912308187833, + 44.146517682124674 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "809313760", + "email": "frsupport@ev-box.com", + "phone": "", + "network": "HOTEL B&B", + "ref:EU:EVSE": "Non concerné", + "ref": "NL*EVB*EP6XVKPHR4IIYT5W23IGVVCGOBQ ", + "name": "HOTEL B&B", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-29", + "note": "", + "source:date": "2021-12-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3328996, + 43.8136602 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "338773492", + "email": "frsupport@ev-box.com", + "phone": "", + "network": "SKODA", + "ref:EU:EVSE": "Non concerné", + "ref": "NL*EVB*EBP7OCKH3I4TGNGRKJ5VPBEHTKA ", + "name": "SKODA", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2020-12-14", + "note": "", + "source:date": "2021-12-08", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0814445, + 44.1386705 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "502997935", + "email": "frsupport@ev-box.com", + "phone": "0141447047", + "network": "SANYA MARKET", + "ref:EU:EVSE": "Non concerné", + "ref": "NL*EVB*EDZYHHJBOU2V5KSR5P4S3LGEN24", + "name": "SANYA MARKET", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-18", + "note": "Recharge uniquement pendant les horaires d'ouverture", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.536132, + 45.117992 + ] + }, + "properties": { + "operator": "web services advenir", + "owner:ref:FR:SIREN": "889299442", + "email": "advenir@avere-France.org", + "phone": "0153250068", + "network": "Le Relais du Monarque", + "ref:EU:EVSE": "Non concerné", + "ref": "2f0a5d72-0b1b-46dd-9e06-023b889cc1c6", + "name": "Le relais du monarque", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-19", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture", + "source:date": "2021-10-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37, + 46.67 + ] + }, + "properties": { + "operator": "Rencontre-handi", + "owner:ref:FR:SIREN": "813050820", + "email": "aspad71@orange.fr", + "phone": "0385783358", + "network": "Rencontre-handi", + "ref:EU:EVSE": "Non concerné", + "ref": "01FKFZCF7XA9CY23G6VN23R8DD", + "name": "Rencontre-handi, Bureau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-05", + "note": "Uniquement disponible au heure ouverture bureau", + "source:date": "2021-10-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87, + 43.96 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMECASSAGNE11", + "ref": "15ff2740-4afd-44de-9724-6731c01c34a2", + "name": "Chateau de Cassagne ", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-17", + "note": "DISPONIBLE 24/7", + "source:date": "2022-03-17", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8366466, + 50.840108099999 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "LA FERME DU GRAND AIR", + "ref:EU:EVSE": "Non concerné", + "ref": "01FM50FFQNTVYYGG2XQ204QY9P", + "name": "LA FERME DU GRAND AIR", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-13", + "note": "", + "source:date": "2021-10-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.662474, + 50.885777 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "BIG MAT", + "ref:EU:EVSE": "Non concerné", + "ref": "01FM5610WAG9Q6AJNYMFE4M8MT", + "name": "BIG MAT", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-21", + "note": "", + "source:date": "2021-10-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52, + 48.7 + ] + }, + "properties": { + "operator": "Le Manoir de l'Isle", + "owner:ref:FR:SIREN": "842369456", + "email": "contact@manoirdelisle.com", + "phone": "0661150201", + "network": "Manoir de l isle", + "ref:EU:EVSE": "Non concerné", + "ref": "01FM50GFVBTBH0BZN9YWKN8QEM", + "name": "MANOIR DE L ISLE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-05", + "note": "", + "source:date": "2021-11-10", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.132099, + 50.6463447 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "SC FRANETTI", + "ref:EU:EVSE": "Non concerné", + "ref": "01FM9M4GTK9ASH1XE898YWDPHX", + "name": "SC FRANETTI", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-13", + "note": "", + "source:date": "2021-07-13", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "phone": "", + "network": "NOVABIO", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1942027", + "name": "Parking NOVABIO Sanilhac", + "capacity": "10", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-21", + "note": "", + "source:date": "2021-12-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "phone": "", + "network": "NOVABIO", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1942027", + "name": "Parking NOVABIO Sanilhac", + "capacity": "10", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-21", + "note": "", + "source:date": "2021-12-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "phone": "", + "network": "NOVABIO", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1942027", + "name": "Parking NOVABIO Sanilhac", + "capacity": "10", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-21", + "note": "", + "source:date": "2021-12-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "phone": "", + "network": "NOVABIO", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1942027", + "name": "Parking NOVABIO Sanilhac", + "capacity": "10", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-21", + "note": "", + "source:date": "2021-12-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "phone": "", + "network": "NOVABIO", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1942027", + "name": "Parking NOVABIO Sanilhac", + "capacity": "10", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-21", + "note": "", + "source:date": "2021-12-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "phone": "", + "network": "NOVABIO", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1942027", + "name": "Parking NOVABIO Sanilhac", + "capacity": "10", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-21", + "note": "", + "source:date": "2021-12-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "phone": "", + "network": "NOVABIO", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1942027", + "name": "Parking NOVABIO Sanilhac", + "capacity": "10", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-21", + "note": "", + "source:date": "2021-12-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "phone": "", + "network": "NOVABIO", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1942027", + "name": "Parking NOVABIO Sanilhac", + "capacity": "10", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-21", + "note": "", + "source:date": "2021-12-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "phone": "", + "network": "NOVABIO", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1942027", + "name": "Parking NOVABIO Sanilhac", + "capacity": "10", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-21", + "note": "", + "source:date": "2021-12-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "phone": "", + "network": "NOVABIO", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P1942027", + "name": "Parking NOVABIO Sanilhac", + "capacity": "10", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-21", + "note": "", + "source:date": "2021-12-23", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.46, + 42.72 + ] + }, + "properties": { + "operator": "Technic Elec", + "owner:ref:FR:SIREN": "350493102", + "email": "secretariat.technic@orange.fr", + "phone": "0495337506", + "network": "Hôtel l'Alivi", + "ref:EU:EVSE": "FRFR1EKHV1", + "ref": "01FR391256KFGBJ9W05VEPKKGD", + "name": "Hôtel l'Alivi", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-01", + "note": "", + "source:date": "2021-10-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9, + 45.68 + ] + }, + "properties": { + "operator": "Societe moderne d'isolation", + "owner:ref:FR:SIREN": "332455427", + "email": "mmartignoni@smiso.com", + "phone": "0472901949", + "network": "SMI", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Parking SMI", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-20", + "note": "Recharge uniquement pendant les heures d'ouvertures", + "source:date": "2022-02-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.63, + 48.89 + ] + }, + "properties": { + "operator": "EDF", + "owner:ref:FR:SIREN": "746951292", + "email": "edfentreprises-ile-de-france-31@edf.fr", + "phone": "0812041592", + "network": "EDF", + "ref:EU:EVSE": "FRA68P68021001", + "ref": "a572785d-70d9-4841-87bb-551cd644d1fc", + "name": "BROU SUR CHANTEREINE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-06", + "note": "", + "source:date": "2022-02-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.79, + 48.68 + ] + }, + "properties": { + "operator": "ENNESSER ET FILS", + "owner:ref:FR:SIREN": "301466967", + "email": "info@peinture-ennesser.com", + "phone": "0388513049", + "network": "Peinture Ennesser", + "ref:EU:EVSE": "Non concerné", + "ref": "69ad8ecf-ae87-4e0b-98f1-680d006ae013", + "name": "Parking Ennesser", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-19", + "note": "", + "source:date": "2022-02-19", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68, + 48.23 + ] + }, + "properties": { + "operator": "La jardinerie d'aveze sarl", + "owner:ref:FR:SIREN": "479271074", + "email": "contact@jardinerieaveze.fr", + "phone": "0243600020", + "network": "Jardinerie d'Aveze", + "ref:EU:EVSE": "Non concerné", + "ref": "2e0e3191-363c-47b3-b3b4-975a51ad1fa9", + "name": "Jardinerie d'Aveze", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-17", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du magasin et à la clientèle (demander badge à l'accueil)", + "source:date": "2022-02-17", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -6189,6 +1435175,210 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.95, + 44.96 + ] + }, + "properties": { + "operator": "Electromaps", + "owner:ref:FR:SIREN": "905250809", + "email": "oscar@electromaps.com", + "phone": "+34 931 574 967", + "network": "Réseau de recharge Soulier", + "ref:EU:EVSE": "Non concerné", + "ref": "48752c4b-2ca2-40af-b488-b5aa3fd4355d", + "name": "TRYBA", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-01-27", + "note": "", + "source:date": "2022-02-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1, + 45.63 + ] + }, + "properties": { + "operator": "SARL LES BAINS DE ROYAN", + "owner:ref:FR:SIREN": "534148804", + "email": "svp.maroquinerie@hotmail.fr", + "phone": "06 60 44 30 37", + "network": "Réseau de recharge Monsieur Boissier", + "ref:EU:EVSE": "Non concerné", + "ref": "d67cd02c-2a23-4dc1-9b4d-7d90d795df3b", + "name": "SARL LES BAINS DE ROYAN", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-23", + "note": "", + "source:date": "2022-03-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.93, + 45.95 + ] + }, + "properties": { + "operator": "SAS CHATEAU DE MEMANAT", + "owner:ref:FR:SIREN": "824075683", + "email": "info@chateaudememenat.com", + "phone": "0786661820", + "network": "CHATEAU DE MEMANAT", + "ref:EU:EVSE": "Non concerné", + "ref": "367e7452-927d-4bf1-9afb-5084ebd8f56e", + "name": "CHATEAU DE MEMANAT", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-17", + "note": "", + "source:date": "2022-06-06", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58, + 44.16 + ] + }, + "properties": { + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "409966223", + "email": "oscar@electromaps.com", + "phone": "+34 931.574.967 ", + "network": "Le Temps Des Cerises", + "ref:EU:EVSE": "Non concerné", + "ref": "48e9e0f4-b6bb-4d35-bb14-e17c5a8bc1cc", + "name": "Le Temps Des Cerises", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-17", + "note": "", + "source:date": "2022-06-09", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99, + 45.63 + ] + }, + "properties": { + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "409596244", + "email": "emilio@electromaps.com", + "phone": "+34 931.574.967", + "network": "Royan Ravalement Services", + "ref:EU:EVSE": "Non concerné", + "ref": "ebb78fda-b81d-441a-a97f-c0931664110e", + "name": "2RS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-04", + "note": "", + "source:date": "2022-06-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.96, + 45.955 + ] + }, + "properties": { + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "823893938", + "email": "emilio@electromaps.com", + "phone": "+34 931 190 242 ", + "network": "SAP", + "ref:EU:EVSE": "Non concerné", + "ref": "FR*MAP*E000016296852", + "name": "SAP", + "capacity": "5", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-07-22", + "note": "", + "source:date": "2022-08-02", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -6223,6 +1435413,38392 @@ "socket:type2_cable": "" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.61, + 48.66 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "343172227", + "email": "exploitation@freshmile.com", + "phone": "03 68 78 14 35 ", + "network": "FRESHMILE", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "SUPER U TRUCHTERSHEIM", + "capacity": "8", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2022-02-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.13, + 48.86 + ] + }, + "properties": { + "operator": "ABSOLUT CONCEPT", + "owner:ref:FR:SIREN": "490792348", + "email": "duquesne@absolutconcept.com", + "phone": "0139157451", + "network": "Recharge Absolut", + "ref:EU:EVSE": "Non concerné", + "ref": "a913eed7-13a3-448e-b1d3-59a63f4791fc", + "name": "Absolut Bougival", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-20", + "note": "Recharge disponible uniquement durant les heures d'ouverture des bureaux", + "source:date": "2022-02-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.51344, + 43.28654 + ] + }, + "properties": { + "operator": "VIRTA", + "owner:ref:FR:SIREN": "072802689", + "email": "philippe.voisin@virta.global", + "phone": "0612912997", + "network": "FULGURA", + "ref:EU:EVSE": "FRE10E921", + "ref": "", + "name": "BERANGER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2022-03-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.51344, + 43.28654 + ] + }, + "properties": { + "operator": "VIRTA", + "owner:ref:FR:SIREN": "072802689", + "email": "philippe.voisin@virta.global", + "phone": "0612912997", + "network": "FULGURA", + "ref:EU:EVSE": "FRE10E921", + "ref": "", + "name": "BERANGER", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-11-25", + "note": "", + "source:date": "2022-03-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.350366, + 45.982475 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "451766877", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "PARC DE PRAGNAT", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0138", + "name": "PRAGNAT NORD", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-25", + "note": "SO", + "source:date": "2022-02-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.350366, + 45.982475 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "451766877", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "PARC DE PRAGNAT", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0137", + "name": "PRAGNAT NORD", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-25", + "note": "SO", + "source:date": "2022-02-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6353802, + 49.644069 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "484429550", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "AUTO SERVICES PIXIEN", + "ref:EU:EVSE": "FRFR1ELKDM1", + "ref": "FRFR1ELKDM1", + "name": "Poix-Terron", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-01", + "note": "", + "source:date": "2022-03-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4451526, + 44.8254186 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U FARGUES ST HILAIRE", + "ref:EU:EVSE": "FRSUAP33165A", + "ref": "FRSUAP33165A", + "name": "SUPER U FARGUES ST HILAIRE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4017290030274534, + 49.18274284714659 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U CAEN", + "ref:EU:EVSE": "FRSUAP14201A", + "ref": "FRSUAP14201A", + "name": "SUPER U CAEN", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4017290030274534, + 49.18274284714659 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U CAEN", + "ref:EU:EVSE": "FRSUAP14201A", + "ref": "FRSUAP14201A", + "name": "SUPER U CAEN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4017290030274534, + 49.18274284714659 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U CAEN", + "ref:EU:EVSE": "FRSUAP14201A", + "ref": "FRSUAP14201A", + "name": "SUPER U CAEN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4451526, + 44.8254186 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U FARGUES ST HILAIRE", + "ref:EU:EVSE": "FRSUAP33165A", + "ref": "FRSUAP33165A", + "name": "SUPER U FARGUES ST HILAIRE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4451526, + 44.8254186 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U FARGUES ST HILAIRE", + "ref:EU:EVSE": "FRSUAP33165A", + "ref": "FRSUAP33165A", + "name": "SUPER U FARGUES ST HILAIRE", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4451526, + 44.8254186 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U FARGUES ST HILAIRE", + "ref:EU:EVSE": "FRSUAP33165A", + "ref": "FRSUAP33165A", + "name": "SUPER U FARGUES ST HILAIRE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4451526, + 44.8254186 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U FARGUES ST HILAIRE", + "ref:EU:EVSE": "FRSUAP33165A", + "ref": "FRSUAP33165A", + "name": "SUPER U FARGUES ST HILAIRE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.707232, + 43.929095 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U GANGES", + "ref:EU:EVSE": "FRSUAP34111A", + "ref": "FRSUAP34111A", + "name": "SUPER U GANGES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-10", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4451526, + 44.8254186 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U FARGUES ST HILAIRE", + "ref:EU:EVSE": "FRSUAP33165A", + "ref": "FRSUAP33165A", + "name": "SUPER U FARGUES ST HILAIRE", + "capacity": "6", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-06", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.707232, + 43.929095 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U GANGES", + "ref:EU:EVSE": "FRSUAP34111A", + "ref": "FRSUAP34111A", + "name": "SUPER U GANGES", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-10", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.707232, + 43.929095 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U GANGES", + "ref:EU:EVSE": "FRSUAP34111A", + "ref": "FRSUAP34111A", + "name": "SUPER U GANGES", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-10", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07183, + 45.43232 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U LA TOURETTE", + "ref:EU:EVSE": "FRSUAP42312A", + "ref": "FRSUAP42312A", + "name": "SUPER U LA TOURETTE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07183, + 45.43232 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U LA TOURETTE", + "ref:EU:EVSE": "FRSUAP42312A", + "ref": "FRSUAP42312A", + "name": "SUPER U LA TOURETTE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690897555220402, + 45.52876535004003 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U PONT DE BEAUVOISIN", + "ref:EU:EVSE": "FRSUAP38315A", + "ref": "FRSUAP38315A", + "name": "HYPER U PONT DE BEAUVOISIN", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07183, + 45.43232 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U LA TOURETTE", + "ref:EU:EVSE": "FRSUAP42312A", + "ref": "FRSUAP42312A", + "name": "SUPER U LA TOURETTE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4017290030274534, + 49.18274284714659 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U CAEN", + "ref:EU:EVSE": "FRSUAP14201A", + "ref": "FRSUAP14201A", + "name": "SUPER U CAEN", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.593537, + 46.734241 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U AIZENAY", + "ref:EU:EVSE": "FRSUAP85003A", + "ref": "FRSUAP85003A", + "name": "HYPER U AIZENAY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-28", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690897555220402, + 45.52876535004003 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U PONT DE BEAUVOISIN", + "ref:EU:EVSE": "FRSUAP38315A", + "ref": "FRSUAP38315A", + "name": "HYPER U PONT DE BEAUVOISIN", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690897555220402, + 45.52876535004003 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U PONT DE BEAUVOISIN", + "ref:EU:EVSE": "FRSUAP38315A", + "ref": "FRSUAP38315A", + "name": "HYPER U PONT DE BEAUVOISIN", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.559326, + 44.975229 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U LAMASTRE", + "ref:EU:EVSE": "FRSUAP07129A", + "ref": "FRSUAP07129A", + "name": "SUPER U LAMASTRE", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-19", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.593537, + 46.734241 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U AIZENAY", + "ref:EU:EVSE": "FRSUAP85003A", + "ref": "FRSUAP85003A", + "name": "HYPER U AIZENAY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-28", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.593537, + 46.734241 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U AIZENAY", + "ref:EU:EVSE": "FRSUAP85003A", + "ref": "FRSUAP85003A", + "name": "HYPER U AIZENAY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-28", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.593537, + 46.734241 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U AIZENAY", + "ref:EU:EVSE": "FRSUAP85003A", + "ref": "FRSUAP85003A", + "name": "HYPER U AIZENAY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-28", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.593537, + 46.734241 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U AIZENAY", + "ref:EU:EVSE": "FRSUAP85003A", + "ref": "FRSUAP85003A", + "name": "HYPER U AIZENAY", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.593537, + 46.734241 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U AIZENAY", + "ref:EU:EVSE": "FRSUAP85003A", + "ref": "FRSUAP85003A", + "name": "HYPER U AIZENAY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.593537, + 46.734241 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U AIZENAY", + "ref:EU:EVSE": "FRSUAP85003A", + "ref": "FRSUAP85003A", + "name": "HYPER U AIZENAY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7480292628930094, + 47.4716214490022 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U BLAIN", + "ref:EU:EVSE": "FRSUAP44015A", + "ref": "FRSUAP44015A", + "name": "HYPER U BLAIN", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7480292628930094, + 47.4716214490022 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U BLAIN", + "ref:EU:EVSE": "FRSUAP44015A", + "ref": "FRSUAP44015A", + "name": "HYPER U BLAIN", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7480292628930094, + 47.4716214490022 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U BLAIN", + "ref:EU:EVSE": "FRSUAP44015A", + "ref": "FRSUAP44015A", + "name": "HYPER U BLAIN", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7480292628930094, + 47.4716214490022 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U BLAIN", + "ref:EU:EVSE": "FRSUAP44015A", + "ref": "FRSUAP44015A", + "name": "HYPER U BLAIN", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7480292628930094, + 47.4716214490022 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U BLAIN", + "ref:EU:EVSE": "FRSUAP44015A", + "ref": "FRSUAP44015A", + "name": "HYPER U BLAIN", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7480292628930094, + 47.4716214490022 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U BLAIN", + "ref:EU:EVSE": "FRSUAP44015A", + "ref": "FRSUAP44015A", + "name": "HYPER U BLAIN", + "capacity": "3", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-03-17", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690897555220402, + 45.52876535004003 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U PONT DE BEAUVOISIN", + "ref:EU:EVSE": "FRSUAP38315A", + "ref": "FRSUAP38315A", + "name": "HYPER U PONT DE BEAUVOISIN", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690897555220402, + 45.52876535004003 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U PONT DE BEAUVOISIN", + "ref:EU:EVSE": "FRSUAP38315A", + "ref": "FRSUAP38315A", + "name": "HYPER U PONT DE BEAUVOISIN", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-21", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07183, + 45.43232 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U LA TOURETTE", + "ref:EU:EVSE": "FRSUAP42312A", + "ref": "FRSUAP42312A", + "name": "SUPER U LA TOURETTE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.593537, + 46.734241 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "HYPER U AIZENAY", + "ref:EU:EVSE": "FRSUAP85003A", + "ref": "FRSUAP85003A", + "name": "HYPER U AIZENAY", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.559326, + 44.975229 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U LAMASTRE", + "ref:EU:EVSE": "FRSUAP07129A", + "ref": "FRSUAP07129A", + "name": "SUPER U LAMASTRE", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-19", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12869, + 46.22774 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U ST LEGER DE LA MARTINIERE", + "ref:EU:EVSE": "FRSUAP79264A", + "ref": "FRSUAP79264A", + "name": "SUPER U ST LEGER DE LA MARTINIERE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-08", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59980393711, + 42.84540556623 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U TARASCON SUR ARIEGE", + "ref:EU:EVSE": "FRSUAP09306A", + "ref": "FRSUAP09306A", + "name": "SUPER U TARASCON SUR ARIEGE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-14", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59980393711, + 42.84540556623 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U TARASCON SUR ARIEGE", + "ref:EU:EVSE": "FRSUAP09306A", + "ref": "FRSUAP09306A", + "name": "SUPER U TARASCON SUR ARIEGE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-14", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59980393711, + 42.84540556623 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U TARASCON SUR ARIEGE", + "ref:EU:EVSE": "FRSUAP09306A", + "ref": "FRSUAP09306A", + "name": "SUPER U TARASCON SUR ARIEGE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-14", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59980393711, + 42.84540556623 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U TARASCON SUR ARIEGE", + "ref:EU:EVSE": "FRSUAP09306A", + "ref": "FRSUAP09306A", + "name": "SUPER U TARASCON SUR ARIEGE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-14", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59980393711, + 42.84540556623 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U TARASCON SUR ARIEGE", + "ref:EU:EVSE": "FRSUAP09306A", + "ref": "FRSUAP09306A", + "name": "SUPER U TARASCON SUR ARIEGE", + "capacity": "5", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-14", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59980393711, + 42.84540556623 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U TARASCON SUR ARIEGE", + "ref:EU:EVSE": "FRSUAP09306A", + "ref": "FRSUAP09306A", + "name": "SUPER U TARASCON SUR ARIEGE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-14", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.315905, + 48.338735 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "MJS DISTRIBUTION", + "ref:EU:EVSE": "FRSUAP67320A", + "ref": "FRSUAP67320A", + "name": "SUPER U VILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-13", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.315905, + 48.338735 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "MJS DISTRIBUTION", + "ref:EU:EVSE": "FRSUAP67320A", + "ref": "FRSUAP67320A", + "name": "SUPER U VILLE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-13", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.315905, + 48.338735 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "MJS DISTRIBUTION", + "ref:EU:EVSE": "FRSUAP67320A", + "ref": "FRSUAP67320A", + "name": "SUPER U VILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-13", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.315905, + 48.338735 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "MJS DISTRIBUTION", + "ref:EU:EVSE": "FRSUAP67320A", + "ref": "FRSUAP67320A", + "name": "SUPER U VILLE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-13", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.812625, + 45.649787 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SAS VERNAIDIS", + "ref:EU:EVSE": "FRSUAP69260A", + "ref": "FRSUAP69260A", + "name": "U EXPRESS VERNAISON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2623206, + 46.4304455 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U VIVONNE", + "ref:EU:EVSE": "FRSUAP86293A", + "ref": "FRSUAP86293A", + "name": "SUPER U VIVONNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-07", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2623206, + 46.4304455 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U VIVONNE", + "ref:EU:EVSE": "FRSUAP86293A", + "ref": "FRSUAP86293A", + "name": "SUPER U VIVONNE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-07", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.812625, + 45.649787 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SAS VERNAIDIS", + "ref:EU:EVSE": "FRSUAP69260A", + "ref": "FRSUAP69260A", + "name": "U EXPRESS VERNAISON", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-03", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2623206, + 46.4304455 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U VIVONNE", + "ref:EU:EVSE": "FRSUAP86293A", + "ref": "FRSUAP86293A", + "name": "SUPER U VIVONNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-07", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12869, + 46.22774 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U ST LEGER DE LA MARTINIERE", + "ref:EU:EVSE": "FRSUAP79264A", + "ref": "FRSUAP79264A", + "name": "SUPER U ST LEGER DE LA MARTINIERE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-08", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2623206, + 46.4304455 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U VIVONNE", + "ref:EU:EVSE": "FRSUAP86293A", + "ref": "FRSUAP86293A", + "name": "SUPER U VIVONNE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-07", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12869, + 46.22774 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U ST LEGER DE LA MARTINIERE", + "ref:EU:EVSE": "FRSUAP79264A", + "ref": "FRSUAP79264A", + "name": "SUPER U ST LEGER DE LA MARTINIERE", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-08", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09085, + 45.60781 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U SAVIGNEUX", + "ref:EU:EVSE": "FRSUAP42299A", + "ref": "FRSUAP42299A", + "name": "SUPER U SAVIGNEUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12869, + 46.22774 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U ST LEGER DE LA MARTINIERE", + "ref:EU:EVSE": "FRSUAP79264A", + "ref": "FRSUAP79264A", + "name": "SUPER U ST LEGER DE LA MARTINIERE", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-08", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.442376, + 44.911404 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U LE CHEYLARD", + "ref:EU:EVSE": "FRSUAP07064A", + "ref": "FRSUAP07064A", + "name": "SUPER U LE CHEYLARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.442376, + 44.911404 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U LE CHEYLARD", + "ref:EU:EVSE": "FRSUAP07064A", + "ref": "FRSUAP07064A", + "name": "SUPER U LE CHEYLARD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.442376, + 44.911404 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U LE CHEYLARD", + "ref:EU:EVSE": "FRSUAP07064A", + "ref": "FRSUAP07064A", + "name": "SUPER U LE CHEYLARD", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09085, + 45.60781 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U SAVIGNEUX", + "ref:EU:EVSE": "FRSUAP42299A", + "ref": "FRSUAP42299A", + "name": "SUPER U SAVIGNEUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09085, + 45.60781 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U SAVIGNEUX", + "ref:EU:EVSE": "FRSUAP42299A", + "ref": "FRSUAP42299A", + "name": "SUPER U SAVIGNEUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09085, + 45.60781 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U SAVIGNEUX", + "ref:EU:EVSE": "FRSUAP42299A", + "ref": "FRSUAP42299A", + "name": "SUPER U SAVIGNEUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.442376, + 44.911404 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U LE CHEYLARD", + "ref:EU:EVSE": "FRSUAP07064A", + "ref": "FRSUAP07064A", + "name": "SUPER U LE CHEYLARD", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-01-01", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09085, + 45.60781 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U SAVIGNEUX", + "ref:EU:EVSE": "FRSUAP42299A", + "ref": "FRSUAP42299A", + "name": "SUPER U SAVIGNEUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09085, + 45.60781 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U SAVIGNEUX", + "ref:EU:EVSE": "FRSUAP42299A", + "ref": "FRSUAP42299A", + "name": "SUPER U SAVIGNEUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09085, + 45.60781 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U SAVIGNEUX", + "ref:EU:EVSE": "FRSUAP42299A", + "ref": "FRSUAP42299A", + "name": "SUPER U SAVIGNEUX", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09085, + 45.60781 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U SAVIGNEUX", + "ref:EU:EVSE": "FRSUAP42299A", + "ref": "FRSUAP42299A", + "name": "SUPER U SAVIGNEUX", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-10-22", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.430385, + 46.480609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U ST BONNET DE JOUX", + "ref:EU:EVSE": "FRSUAP71394A", + "ref": "FRSUAP71394A", + "name": "SUPER U ST BONNET DE JOUX", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.430385, + 46.480609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U ST BONNET DE JOUX", + "ref:EU:EVSE": "FRSUAP71394A", + "ref": "FRSUAP71394A", + "name": "SUPER U ST BONNET DE JOUX", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.430385, + 46.480609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U ST BONNET DE JOUX", + "ref:EU:EVSE": "FRSUAP71394A", + "ref": "FRSUAP71394A", + "name": "SUPER U ST BONNET DE JOUX", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.430385, + 46.480609 + ] + }, + "properties": { + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "", + "email": "contact@e-totem.fr", + "phone": "", + "network": "SUPER U ST BONNET DE JOUX", + "ref:EU:EVSE": "FRSUAP71394A", + "ref": "FRSUAP71394A", + "name": "SUPER U ST BONNET DE JOUX", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-09", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1165963, + 50.6565678 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DLM MARCQ EN BAROEUL", + "ref:EU:EVSE": "Non concerné", + "ref": "4ab443d0-7c04-4397-b176-e7a78803f42a", + "name": "DLM MARCQ EN BAROEUL", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-21", + "note": "", + "source:date": "2022-01-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6595715141555814, + 45.749626602859486 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "879220374", + "email": "contact@mambhome.com", + "phone": "", + "network": "4M RETAIL", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-DC422600001B", + "name": "Parking MAMBHOME", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-02", + "note": "", + "source:date": "2022-03-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6595715141555814, + 45.749626602859486 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "879220374", + "email": "contact@mambhome.com", + "phone": "", + "network": "4M RETAIL", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-DC422600001", + "name": "Parking MAMBHOME", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-02", + "note": "", + "source:date": "2022-03-07", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.05901, + 49.099573 + ] + }, + "properties": { + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "655781276", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "FOURNIER SAS", + "ref:EU:EVSE": "Non concerné", + "ref": "71d69ca2-9eb4-11ec-b909-0242ac120002", + "name": "FOURNIER", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "Non concerné", + "source:date": "2021-12-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3617357269911046, + 43.20905731878834 + ] + }, + "properties": { + "operator": "Securecharge", + "owner:ref:FR:SIREN": "802704445", + "email": "contact@securecharge.com", + "phone": "", + "network": "Hôtel du Pont Vieux - Securecharge", + "ref:EU:EVSE": "Non concerné", + "ref": "Securecharge-PONCAR-HBS-1", + "name": "Securecharge Hôtel Pont Vieux", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-03-09", + "note": "Recharge uniquement disponible pour la clientèle de l'hôtel", + "source:date": "2022-03-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45, + 43.61 + ] + }, + "properties": { + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "831530365", + "email": "oscar@electromaps.com", + "phone": "06 17 67 06 24", + "network": "PULLMAN", + "ref:EU:EVSE": "FRMAPE000000006659", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "name": "PULLMAN", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-11", + "note": "4 T2/ 2 PRISE RENFORCEE", + "source:date": "2022-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.2, + 42.45 + ] + }, + "properties": { + "operator": "F.B. AUTOMOBILES", + "owner:ref:FR:SIREN": "844623611", + "email": "filippi.gl@gmail.com", + "phone": "0675357392", + "network": "F.B. AUTOMOBILES", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "F.B Automobiles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-22", + "note": "Charge uniquement accessible pendant les horaires d'ouverture du garage", + "source:date": "2022-03-15", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0973151, + 50.5443626 + ] + }, + "properties": { + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "FRANCE ENVIRONNEMENT", + "ref:EU:EVSE": "Non concerné", + "ref": "b902fcd2-647f-4e69-9afa-87704712effe", + "name": "FRANCE ENVIRONNEMENT", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "TRUE", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "1", + "authentication:none": "0", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-02", + "note": "", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.494, + 48.9381 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "434036653", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "INTERMARCHE", + "ref:EU:EVSE": "FRFR1ENDBC1", + "ref": "FRFR1ENDBC1", + "name": "Aulnay sous Bois", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-03-14", + "note": "", + "source:date": "2022-03-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.86, + 43.96 + ] + }, + "properties": { + "operator": "Thibal Distribution", + "owner:ref:FR:SIREN": "509605184", + "email": "sdavid@thibal-distribution.fr", + "phone": "0565490240", + "network": "Borne de recharge gratuite", + "ref:EU:EVSE": "Non concerné", + "ref": "868b9791-607e-4ba5-be0a-612b37168a56", + "name": "Saint-Affrique - Thibal Distribution - recharge gratuite", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-01", + "note": "Recharge uniquement pendant les périodes d'ouverture de Thibal Ditribution", + "source:date": "2022-03-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.63, + 48.98 + ] + }, + "properties": { + "operator": "ENERGEM", + "owner:ref:FR:SIREN": "849442132", + "email": "contact@energem.fr", + "phone": "0969390239", + "network": "ENERGEM", + "ref:EU:EVSE": "FRA68P68021001", + "ref": "c817492c-df96-4302-ae12-7d05f0177858", + "name": "Mitry Mory", + "capacity": "4", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-12-08", + "note": "", + "source:date": "2022-02-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0352479, + 49.0555095 + ] + }, + "properties": { + "operator": "EVBOX", + "owner:ref:FR:SIREN": "330816877", + "email": "contact@secal-electricite.fr", + "phone": "0134201124", + "network": "AGP", + "ref:EU:EVSE": "Non concerné", + "ref": "EVBP1942030", + "name": "AGP", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Non accessible", + "start_date": "2022-10-30", + "note": "", + "source:date": "2022-08-29", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85759376, + 46.82488 + ] + }, + "properties": { + "operator": "PROVIRIDIS", + "owner:ref:FR:SIREN": "750938722", + "email": "hello@v-gas.fr", + "phone": "06 71 32 75 81", + "network": "Z-E-N", + "ref:EU:EVSE": "FRPVDEVGFRA71", + "ref": "", + "name": "FRAGNES-CHALON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-23", + "note": "", + "source:date": "2022-01-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85759376, + 46.82488 + ] + }, + "properties": { + "operator": "PROVIRIDIS", + "owner:ref:FR:SIREN": "750938722", + "email": "hello@v-gas.fr", + "phone": "06 71 32 75 81", + "network": "Z-E-N", + "ref:EU:EVSE": "FRPVDEVGFRA71", + "ref": "", + "name": "FRAGNES-CHALON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-23", + "note": "Cette borne en îlot est accessible aux PL", + "source:date": "2022-01-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85759376, + 46.82488 + ] + }, + "properties": { + "operator": "PROVIRIDIS", + "owner:ref:FR:SIREN": "750938722", + "email": "hello@v-gas.fr", + "phone": "06 71 32 75 81", + "network": "Z-E-N", + "ref:EU:EVSE": "FRPVDEVGFRA71", + "ref": "", + "name": "FRAGNES-CHALON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-23", + "note": "Cette borne en îlot est accessible aux PL", + "source:date": "2022-01-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85759376, + 46.82488 + ] + }, + "properties": { + "operator": "PROVIRIDIS", + "owner:ref:FR:SIREN": "750938722", + "email": "hello@v-gas.fr", + "phone": "06 71 32 75 81", + "network": "Z-E-N", + "ref:EU:EVSE": "FRPVDEVGFRA71", + "ref": "", + "name": "FRAGNES-CHALON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-23", + "note": "Cette borne en îlot est accessible aux PL", + "source:date": "2022-01-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85759376, + 46.82488 + ] + }, + "properties": { + "operator": "PROVIRIDIS", + "owner:ref:FR:SIREN": "750938722", + "email": "hello@v-gas.fr", + "phone": "06 71 32 75 81", + "network": "Z-E-N", + "ref:EU:EVSE": "FRPVDEVGFRA71", + "ref": "", + "name": "FRAGNES-CHALON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-23", + "note": "", + "source:date": "2022-01-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85759376, + 46.82488 + ] + }, + "properties": { + "operator": "PROVIRIDIS", + "owner:ref:FR:SIREN": "750938722", + "email": "hello@v-gas.fr", + "phone": "06 71 32 75 81", + "network": "Z-E-N", + "ref:EU:EVSE": "FRPVDEVGFRA71", + "ref": "", + "name": "FRAGNES-CHALON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-23", + "note": "", + "source:date": "2022-01-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85759376, + 46.82488 + ] + }, + "properties": { + "operator": "PROVIRIDIS", + "owner:ref:FR:SIREN": "750938722", + "email": "hello@v-gas.fr", + "phone": "06 71 32 75 81", + "network": "Z-E-N", + "ref:EU:EVSE": "FRPVDEVGFRA71", + "ref": "", + "name": "FRAGNES-CHALON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-23", + "note": "", + "source:date": "2022-01-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85759376, + 46.82488 + ] + }, + "properties": { + "operator": "PROVIRIDIS", + "owner:ref:FR:SIREN": "750938722", + "email": "hello@v-gas.fr", + "phone": "06 71 32 75 81", + "network": "Z-E-N", + "ref:EU:EVSE": "FRPVDEVGFRA71", + "ref": "", + "name": "FRAGNES-CHALON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-23", + "note": "", + "source:date": "2022-01-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85759376, + 46.82488 + ] + }, + "properties": { + "operator": "PROVIRIDIS", + "owner:ref:FR:SIREN": "750938722", + "email": "hello@v-gas.fr", + "phone": "06 71 32 75 81", + "network": "Z-E-N", + "ref:EU:EVSE": "FRPVDEVGFRA71", + "ref": "", + "name": "FRAGNES-CHALON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-23", + "note": "", + "source:date": "2022-01-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85759376, + 46.82488 + ] + }, + "properties": { + "operator": "PROVIRIDIS", + "owner:ref:FR:SIREN": "750938722", + "email": "hello@v-gas.fr", + "phone": "06 71 32 75 81", + "network": "Z-E-N", + "ref:EU:EVSE": "FRPVDEVGFRA71", + "ref": "", + "name": "FRAGNES-CHALON", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-23", + "note": "", + "source:date": "2022-01-04", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6822308312133751, + 44.83887410485574 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "511679896", + "email": "contact@flyops.net", + "phone": "", + "network": "FLYOPS", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P21211914", + "name": "Parking FLYOPS", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-21", + "note": "", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6822308312133751, + 44.83887410485574 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "511679896", + "email": "contact@flyops.net", + "phone": "", + "network": "FLYOPS", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P21211914", + "name": "Parking FLYOPS", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-21", + "note": "", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6822308312133751, + 44.83887410485574 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "511679896", + "email": "contact@flyops.net", + "phone": "", + "network": "FLYOPS", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P21211914", + "name": "Parking FLYOPS", + "capacity": "4", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-21", + "note": "", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6822308312133751, + 44.83887410485574 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "511679896", + "email": "contact@flyops.net", + "phone": "", + "network": "FLYOPS", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P21211914", + "name": "Parking FLYOPS", + "capacity": "4", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-21", + "note": "", + "source:date": "2022-02-01", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47, + 49.06 + ] + }, + "properties": { + "operator": "Bénédictines du Sacré-Coeur de Montmartre", + "owner:ref:FR:SIREN": "785032780", + "email": "economatbscm@orange.fr", + "phone": "0146069000", + "network": "BSCM", + "ref:EU:EVSE": "Non concerné", + "ref": "01FRNHTR2SJJCS1AB2ZGKB7D30", + "name": "Parking BSCM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du Prieuré", + "source:date": "2022-01-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47, + 49.06 + ] + }, + "properties": { + "operator": "Bénédictines du Sacré-Coeur de Montmartre", + "owner:ref:FR:SIREN": "785032780", + "email": "economatbscm@orange.fr", + "phone": "0146069000", + "network": "BSCM", + "ref:EU:EVSE": "Non concerné", + "ref": "01FRNHTR2SJJCS1AB2ZGKB7D30", + "name": "Parking BSCM", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture du Prieuré", + "source:date": "2022-01-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.397318, + 48.155596 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53097B", + "ref": "", + "name": "OuestCharge - Diva Sp - Evron - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.717961, + 47.834389 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53062B", + "ref": "", + "name": "OuestCharge - Diva Sp - Chateau-Gontier - Perreault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.912477, + 47.94467 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53077A", + "ref": "", + "name": "OuestCharge - Diva Sp - Cosse-Le-Vivien - Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.912477, + 47.94467 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53077A", + "ref": "", + "name": "OuestCharge - Diva Sp - Cosse-Le-Vivien - Foire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.947992, + 47.848493 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53084A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Craon - Murier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.947992, + 47.848493 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53084A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Craon - Murier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.947992, + 47.848493 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53084A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Craon - Murier", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.929144, + 48.29733 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53096A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ernee - Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.929144, + 48.29733 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53096A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ernee - Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93954, + 48.296963 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53096B", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Ernee - Hôtel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93954, + 48.296963 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53096B", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Ernee - Hôtel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.93954, + 48.296963 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53096B", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Ernee - Hôtel", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.402955, + 48.155813 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53097A", + "ref": "", + "name": "OuestCharge - Diva Sp - Evron - Basilique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.402955, + 48.155813 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53097A", + "ref": "", + "name": "OuestCharge - Diva Sp - Evron - Basilique", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.397318, + 48.155596 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53097B", + "ref": "", + "name": "OuestCharge - Diva Sp - Evron - Gare", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.972928, + 48.474519 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53100A", + "ref": "", + "name": "OuestCharge - Diva Sp - Fougerolles-Du-Plessis - Rassemblement", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707706, + 47.826223 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53062A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chateau-Gontier - Mahier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.972928, + 48.474519 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53100A", + "ref": "", + "name": "OuestCharge - Diva Sp - Fougerolles-Du-Plessis - Rassemblement", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.886473, + 48.097822 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53103A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Genest-Saint-Isle - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.886473, + 48.097822 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53103A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Genest-Saint-Isle - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.813204, + 48.411734 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53107A", + "ref": "", + "name": "OuestCharge - Diva Sp - Gorron - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.813204, + 48.411734 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53107A", + "ref": "", + "name": "OuestCharge - Diva Sp - Gorron - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.522439, + 47.873144 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53110A", + "ref": "", + "name": "OuestCharge - Diva Sp - Grez-En-Bouere - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.522439, + 47.873144 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53110A", + "ref": "", + "name": "OuestCharge - Diva Sp - Grez-En-Bouere - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.336777, + 48.417355 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53121A", + "ref": "", + "name": "OuestCharge - Diva Sp - Javron-Les-Chapelles - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.336777, + 48.417355 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53121A", + "ref": "", + "name": "OuestCharge - Diva Sp - Javron-Les-Chapelles - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.498669, + 48.254747 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53122A", + "ref": "", + "name": "OuestCharge - Diva Sp - Jublains - Musée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.498669, + 48.254747 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53122A", + "ref": "", + "name": "OuestCharge - Diva Sp - Jublains - Musée", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.03395, + 48.230821 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53123A", + "ref": "", + "name": "OuestCharge - Diva Sp - Juvigne - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.03395, + 48.230821 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53123A", + "ref": "", + "name": "OuestCharge - Diva Sp - Juvigne - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497452, + 48.437096 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53127A", + "ref": "", + "name": "OuestCharge - Diva Sp - Lassay-Les-Chateaux - Perrin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.717961, + 47.834389 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53062B", + "ref": "", + "name": "OuestCharge - Diva Sp - Chateau-Gontier - Perreault", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707706, + 47.826223 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53062A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chateau-Gontier - Mahier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.740993, + 48.054082 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Laval - Palindrome", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3661645, + 48.2511046 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53016A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bais - Janvier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.868946, + 48.020721 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53001A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ahuille - Concise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.868946, + 48.020721 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53001A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ahuille - Concise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6299366, + 48.4030159 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53003A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ambrieres-Les-Vallees - Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6299366, + 48.4030159 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53003A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ambrieres-Les-Vallees - Château", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.643338, + 48.085018 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53007A", + "ref": "", + "name": "OuestCharge - Diva Sp - Argentre - Marzelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.643338, + 48.085018 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53007A", + "ref": "", + "name": "OuestCharge - Diva Sp - Argentre - Marzelles", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.684591, + 47.829669 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53014A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Aze - Rouge", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.684591, + 47.829669 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53014A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Aze - Rouge", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.684591, + 47.829669 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53014A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Aze - Rouge", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.689528, + 47.823095 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53014B", + "ref": "", + "name": "OuestCharge - Diva Sp - Aze - Aventin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.689528, + 47.823095 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53014B", + "ref": "", + "name": "OuestCharge - Diva Sp - Aze - Aventin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.899746, + 48.182806 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53015A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Baconniere - Gareliere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.899746, + 48.182806 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53015A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Baconniere - Gareliere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3661645, + 48.2511046 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53016A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bais - Janvier", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.416529, + 47.934222 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53017A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ballee - Liniere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.78852, + 48.09876 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53054B", + "ref": "", + "name": "OuestCharge - Diva Sp - Change - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.416529, + 47.934222 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53017A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ballee - Liniere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048258, + 47.895574 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53018A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ballots - Closeraie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048258, + 47.895574 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53018A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ballots - Closeraie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.581051, + 48.020476 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53025A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bazougers - Tannerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.581051, + 48.020476 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53025A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bazougers - Tannerie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69995, + 48.074663 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53034A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bonchamp-Les-Laval - Angenoises", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69995, + 48.074663 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53034A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bonchamp-Les-Laval - Angenoises", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.393857, + 47.87564 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53037A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bouessay - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.755338, + 48.090244 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53054A", + "ref": "", + "name": "OuestCharge - ePremium / Diva Sp - Change - Broglie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.755338, + 48.090244 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53054A", + "ref": "", + "name": "OuestCharge - ePremium / Diva Sp - Change - Broglie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.755338, + 48.090244 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53054A", + "ref": "", + "name": "OuestCharge - ePremium / Diva Sp - Change - Broglie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.755338, + 48.090244 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53054A", + "ref": "", + "name": "OuestCharge - ePremium / Diva Sp - Change - Broglie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.755338, + 48.090244 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53054A", + "ref": "", + "name": "OuestCharge - ePremium / Diva Sp - Change - Broglie", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-08-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.78852, + 48.09876 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53054B", + "ref": "", + "name": "OuestCharge - Diva Sp - Change - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497452, + 48.437096 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53127A", + "ref": "", + "name": "OuestCharge - Diva Sp - Lassay-Les-Chateaux - Perrin", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.393857, + 47.87564 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53037A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bouessay - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.740993, + 48.054082 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Laval - Palindrome", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.058704, + 48.437891 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53181A", + "ref": "", + "name": "OuestCharge - Diva Sp - Pontmain - Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.439627, + 47.791279 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53210A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Denis-D'Anjou - Henri", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.055715, + 47.793557 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53188A", + "ref": "", + "name": "OuestCharge - Diva Sp - Renaze - Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.055715, + 47.793557 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53188A", + "ref": "", + "name": "OuestCharge - Diva Sp - Renaze - Europe", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.198609, + 48.460889 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53185A", + "ref": "", + "name": "OuestCharge - Diva Sp - Pre-En-Pail - Troenes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.198609, + 48.460889 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53185A", + "ref": "", + "name": "OuestCharge - Diva Sp - Pre-En-Pail - Troenes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.058704, + 48.437891 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53181A", + "ref": "", + "name": "OuestCharge - Diva Sp - Pontmain - Bourg", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.556975, + 48.1350588 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53161A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montsurs - Cenere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.611277, + 48.297358 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53147B", + "ref": "", + "name": "OuestCharge - Diva Sp - Mayenne - Volney", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.556975, + 48.1350588 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53161A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montsurs - Cenere", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.989022, + 48.385509 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53154A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montaudin - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.989022, + 48.385509 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53154A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montaudin - Mairie", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.551923, + 47.95096 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53152A", + "ref": "", + "name": "OuestCharge - Diva Sp - Meslay-Du-Maine - Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.551923, + 47.95096 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53152A", + "ref": "", + "name": "OuestCharge - Diva Sp - Meslay-Du-Maine - Poste", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.622363, + 48.300891 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53147C", + "ref": "", + "name": "OuestCharge - Diva Sp - Mayenne - Vinci", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.439627, + 47.791279 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53210A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Denis-D'Anjou - Henri", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8610071, + 48.34244771 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53211A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Denis-De-Gastines - Tilleuls", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8610071, + 48.34244771 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53211A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Denis-De-Gastines - Tilleuls", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.908136, + 48.137358 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53243A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Ouen-Des-Toits - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.908136, + 48.137358 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53243A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Ouen-Des-Toits - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0988, + 48.399713 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53246A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Pierre-Des-Nids - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0988, + 48.399713 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53246A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Pierre-Des-Nids - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.351483, + 48.098848 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53255A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sainte-Suzanne - Charrieres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.351483, + 48.098848 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53255A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sainte-Suzanne - Charrieres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40551, + 47.982498 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53257A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saulges - Grottes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.475751, + 48.039426 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53267A", + "ref": "", + "name": "OuestCharge - Diva Sp - Vaiges - Charmes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.475751, + 48.039426 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53267A", + "ref": "", + "name": "OuestCharge - Diva Sp - Vaiges - Charmes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.280608, + 48.339712 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53271A", + "ref": "", + "name": "OuestCharge - Diva Sp - Villaines-La-Juhel - Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.280608, + 48.339712 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53271A", + "ref": "", + "name": "OuestCharge - Diva Sp - Villaines-La-Juhel - Gaulle", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.677286, + 47.922081 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53273A", + "ref": "", + "name": "OuestCharge - Diva Sp - Villiers-Charlemagne - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.677286, + 47.922081 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53273A", + "ref": "", + "name": "OuestCharge - Diva Sp - Villiers-Charlemagne - Eglise", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.740993, + 48.054082 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Laval - Palindrome", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.622363, + 48.300891 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53147C", + "ref": "", + "name": "OuestCharge - Diva Sp - Mayenne - Vinci", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.40551, + 47.982498 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53257A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saulges - Grottes", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.611277, + 48.297358 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53147B", + "ref": "", + "name": "OuestCharge - Diva Sp - Mayenne - Volney", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7710749, + 48.077605 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130E", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Louis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7898318, + 48.0820463 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130G", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Espace Mayenne 1", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7898318, + 48.0820463 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130G", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Espace Mayenne 1", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7898318, + 48.0820463 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130G", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Espace Mayenne 1", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7830825, + 48.0800885 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130F", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Bres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7830825, + 48.0800885 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130F", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Bres", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7710749, + 48.077605 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130E", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Louis", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7716565, + 48.0655286 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130D", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Hercé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7857756, + 48.0774643 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130H", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Quartier ferrie", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7716565, + 48.0655286 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130D", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Hercé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.790317, + 48.05511 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130C", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Laval - Jaunaie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-31", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.790317, + 48.05511 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130C", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Laval - Jaunaie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-31", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.612687, + 48.300496 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53147A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Mayenne - Guyard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7614552, + 48.0744727 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130B", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Buron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7614552, + 48.0744727 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130B", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Buron", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7898318, + 48.0820463 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130G", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Espace Mayenne 1", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.790317, + 48.05511 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130C", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Laval - Jaunaie", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-31", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7857756, + 48.0774643 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130H", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Quartier ferrie", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9359299, + 48.060102 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53137A", + "ref": "", + "name": "OuestCharge - Diva Sp - Loiron - Ramé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.612687, + 48.300496 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53147A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Mayenne - Guyard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.612687, + 48.300496 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53147A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Mayenne - Guyard", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.663407, + 48.194942 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53146A", + "ref": "", + "name": "OuestCharge - Diva Sp - Martigne-Sur-Mayenne - Georges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7857756, + 48.0774643 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130H", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Quartier ferrie", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.718523, + 48.121773 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53140A", + "ref": "", + "name": "OuestCharge - Diva Sp - Louverne - Renoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-31", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.718523, + 48.121773 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53140A", + "ref": "", + "name": "OuestCharge - Diva Sp - Louverne - Renoir", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-31", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.663407, + 48.194942 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53146A", + "ref": "", + "name": "OuestCharge - Diva Sp - Martigne-Sur-Mayenne - Georges", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7857756, + 48.0774643 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130H", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Quartier ferrie", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.747181, + 47.871029 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53136A", + "ref": "", + "name": "OuestCharge - Diva Sp - Loigne-Sur-Mayenne - Anjou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9359299, + 48.060102 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53137A", + "ref": "", + "name": "OuestCharge - Diva Sp - Loiron - Ramé", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.747181, + 47.871029 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53136A", + "ref": "", + "name": "OuestCharge - Diva Sp - Loigne-Sur-Mayenne - Anjou", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7857756, + 48.0774643 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130H", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Quartier ferrie", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7857756, + 48.0774643 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "ref:EU:EVSE": "FRS53P53130H", + "ref": "", + "name": "OuestCharge - Diva Sp - Laval - Quartier ferrie", + "capacity": "6", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-09-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.804942, + 43.837642 + ] + }, + "properties": { + "operator": "electromaps", + "owner:ref:FR:SIREN": "809172166", + "email": "support@electromaps.com", + "phone": "+33 1 76 34 09 41", + "network": "FGS", + "ref:EU:EVSE": "FRE000009336824", + "ref": "", + "name": "FGS1", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-23", + "note": "", + "source:date": "2022-01-03", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.51225, + 48.89915 + ] + }, + "properties": { + "operator": "Grunzke Beate", + "owner:ref:FR:SIREN": "821842481", + "email": "bg@lavicomterie.com", + "phone": "0681114330", + "network": "Gite La Vicomterie", + "ref:EU:EVSE": "Non concerné", + "ref": "01FS525YRDQ5SRXF0GHHFJ4YXE", + "name": "Gite La Vicomterie", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-11", + "note": "Point de recharge uniquement disponible aux horaires d'ouverture", + "source:date": "2022-01-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.876677, + 47.063467 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099B", + "ref": "", + "name": "OuestCharge - Diva Sp - Cholet - Coignard", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.879119, + 47.060109 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099C", + "ref": "", + "name": "OuestCharge - Diva Sp - Cholet - Baudry", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83442, + 47.0787 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099F", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Cholet - Aubance", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-24", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.897106, + 47.048993 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099D", + "ref": "", + "name": "OuestCharge - Diva Sp - Cholet - Sabotiers", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.897106, + 47.048993 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099D", + "ref": "", + "name": "OuestCharge - Diva Sp - Cholet - Sabotiers", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.870702, + 47.065228 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099E", + "ref": "", + "name": "OuestCharge - Diva Sp - Cholet - Infanterie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.870702, + 47.065228 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099E", + "ref": "", + "name": "OuestCharge - Diva Sp - Cholet - Infanterie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83442, + 47.0787 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099F", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Cholet - Aubance", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-24", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83442, + 47.0787 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099F", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Cholet - Aubance", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-24", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.876677, + 47.063467 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099B", + "ref": "", + "name": "OuestCharge - Diva Sp - Cholet - Coignard", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.879119, + 47.060109 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099C", + "ref": "", + "name": "OuestCharge - Diva Sp - Cholet - Baudry", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.636861, + 47.128778 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49109A", + "ref": "", + "name": "OuestCharge - ePremium - Coron - Eole", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8777, + 47.05618 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099G", + "ref": "", + "name": "OuestCharge - Diva Sp - Cholet - Plessis", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8777, + 47.05618 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099G", + "ref": "", + "name": "OuestCharge - Diva Sp - Cholet - Plessis", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.897598, + 47.0604 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099H", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Cholet - Nantes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.897598, + 47.0604 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099H", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Cholet - Nantes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.897598, + 47.0604 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099H", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Cholet - Nantes", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.885521, + 47.051325 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099I", + "ref": "", + "name": "OuestCharge - Diva Sp - Cholet - Marne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.885521, + 47.051325 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099I", + "ref": "", + "name": "OuestCharge - Diva Sp - Cholet - Marne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98902199, + 47.711017 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49103A", + "ref": "", + "name": "OuestCharge - Diva Sp - Combree - Commerce", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98902199, + 47.711017 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49103A", + "ref": "", + "name": "OuestCharge - Diva Sp - Combree - Commerce", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.350736, + 47.471672 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49106A", + "ref": "", + "name": "OuestCharge - Diva Sp - Corne - Moines", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.350736, + 47.471672 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49106A", + "ref": "", + "name": "OuestCharge - Diva Sp - Corne - Moines", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87928, + 47.058334 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099A", + "ref": "", + "name": "OuestCharge - Diva Sp - Cholet - Hotel", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.636861, + 47.128778 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49109A", + "ref": "", + "name": "OuestCharge - ePremium - Coron - Eole", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87928, + 47.058334 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49099A", + "ref": "", + "name": "OuestCharge - Diva Sp - Cholet - Hotel", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.267346, + 47.337381 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49069A", + "ref": "", + "name": "OuestCharge - Diva Sp - Champtoceaux - Piliers", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.152529, + 47.308056 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49094A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chenehutte-Treves-Cunault - Pont Pouillet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.267346, + 47.337381 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49069A", + "ref": "", + "name": "OuestCharge - Diva Sp - Champtoceaux - Piliers", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.031529, + 47.569042 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49054B", + "ref": "", + "name": "OuestCharge - ePremium - Cande - Super U", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359873, + 47.57017 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49110A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Corze - Nationale", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.031529, + 47.569042 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49054B", + "ref": "", + "name": "OuestCharge - ePremium - Cande - Super U", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.031529, + 47.569042 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49054B", + "ref": "", + "name": "OuestCharge - ePremium - Cande - Super U", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568992, + 47.534362 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49055A", + "ref": "", + "name": "OuestCharge - Diva Sp - Cantenay-Epinard - Angers", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568992, + 47.534362 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49055A", + "ref": "", + "name": "OuestCharge - Diva Sp - Cantenay-Epinard - Angers", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.760868, + 47.348772 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49063A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chalonnes-sur-Loire - Tonneliers", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.570046, + 47.664759 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49065A", + "ref": "", + "name": "OuestCharge - Diva Sp - Champigne - Muguet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.570046, + 47.664759 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49065A", + "ref": "", + "name": "OuestCharge - Diva Sp - Champigne - Muguet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.864912, + 47.412434 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49068A", + "ref": "", + "name": "OuestCharge - Diva Sp - Champtoce-sur-Loire - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.864912, + 47.412434 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49068A", + "ref": "", + "name": "OuestCharge - Diva Sp - Champtoce-sur-Loire - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.189167, + 47.286139 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49069B", + "ref": "", + "name": "OuestCharge - ePremium - Oree-d Anjou - Mauges", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.152529, + 47.308056 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49094A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chenehutte-Treves-Cunault - Pont Pouillet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.189167, + 47.286139 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49069B", + "ref": "", + "name": "OuestCharge - ePremium - Oree-d Anjou - Mauges", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.018614, + 47.182679 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49072A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chapelle-du-Genet - Nationale", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.018614, + 47.182679 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49072A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chapelle-du-Genet - Nationale", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.488031, + 47.68098 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49080A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chateauneuf-sur-Sarthe - Lefort", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.488031, + 47.68098 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49080A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chateauneuf-sur-Sarthe - Lefort", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.983533, + 47.288395 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49083A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chaudron-en-Mauges - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.983533, + 47.288395 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49083A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chaudron-en-Mauges - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72744, + 47.218516 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49092A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chemille - Saint-Pierre", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72744, + 47.218516 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49092A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chemille - Saint-Pierre", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.728161, + 47.209754 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49092B", + "ref": "", + "name": "OuestCharge - Diva Sp - Chemille - Perrocheres", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.728161, + 47.209754 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49092B", + "ref": "", + "name": "OuestCharge - Diva Sp - Chemille - Perrocheres", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.636861, + 47.128778 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49109A", + "ref": "", + "name": "OuestCharge - ePremium - Coron - Eole", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.594438, + 47.572185 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49135A", + "ref": "", + "name": "OuestCharge - Diva Sp - Feneu - Cure", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359873, + 47.57017 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49110A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Corze - Nationale", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.443889, + 47.649611 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49132A", + "ref": "", + "name": "OuestCharge - ePremium - Etriche - Humeau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.443889, + 47.649611 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49132A", + "ref": "", + "name": "OuestCharge - ePremium - Etriche - Humeau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.038546, + 47.561347 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49054A", + "ref": "", + "name": "OuestCharge - Diva Sp - Cande - Saint-Nicolas", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.594438, + 47.572185 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49135A", + "ref": "", + "name": "OuestCharge - Diva Sp - Feneu - Cure", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.040129, + 47.221793 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49137A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Fief-Sauvin - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.040129, + 47.221793 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49137A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Fief-Sauvin - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.047154, + 47.18119 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49140A", + "ref": "", + "name": "OuestCharge - Diva Sp - Fontevraud-l'Abbaye - 8 Mai 45", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.047154, + 47.18119 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49140A", + "ref": "", + "name": "OuestCharge - Diva Sp - Fontevraud-l'Abbaye - 8 Mai 45", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.116001, + 47.280513 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49145A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Fuilet - Huit a Huit", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.116001, + 47.280513 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49145A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Fuilet - Huit a Huit", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.231524, + 47.341862 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49149A", + "ref": "", + "name": "OuestCharge - Diva Sp - Gennes - 19 Mars", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.231524, + 47.341862 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49149A", + "ref": "", + "name": "OuestCharge - Diva Sp - Gennes - 19 Mars", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.110091, + 47.182113 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49151A", + "ref": "", + "name": "OuestCharge - Diva Sp - Geste - Peupliers", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.110091, + 47.182113 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49151A", + "ref": "", + "name": "OuestCharge - Diva Sp - Geste - Peupliers", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.600949, + 47.215222 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49153A", + "ref": "", + "name": "OuestCharge - Diva Sp - Valanjou - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.600949, + 47.215222 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49153A", + "ref": "", + "name": "OuestCharge - Diva Sp - Valanjou - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706472, + 47.614389 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49155A", + "ref": "", + "name": "OuestCharge - ePremium - Grez Neuville - Lionnais", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706472, + 47.614389 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49155A", + "ref": "", + "name": "OuestCharge - ePremium - Grez Neuville - Lionnais", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706472, + 47.614389 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49155A", + "ref": "", + "name": "OuestCharge - ePremium - Grez Neuville - Lionnais", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.921126, + 47.405856 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49160A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ingrandes - Gare", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.921126, + 47.405856 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49160A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ingrandes - Gare", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.868405, + 47.198261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49162A", + "ref": "", + "name": "OuestCharge - Diva Sp - Jallais - Combattants", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.868405, + 47.198261 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49162A", + "ref": "", + "name": "OuestCharge - Diva Sp - Jallais - Combattants", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.232564, + 47.553524 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49163A", + "ref": "", + "name": "OuestCharge - Diva Sp - Jarze - Norbert d'Avignon", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.232564, + 47.553524 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49163A", + "ref": "", + "name": "OuestCharge - Diva Sp - Jarze - Norbert d'Avignon", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.484532, + 47.404556 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49167A", + "ref": "", + "name": "OuestCharge - Diva Sp - Juigne-sur-Loire - Rocher", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.443889, + 47.649611 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49132A", + "ref": "", + "name": "OuestCharge - ePremium - Etriche - Humeau", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-06-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.562288, + 47.61527 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49130A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ecuille - Ecoles", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359873, + 47.57017 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49110A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Corze - Nationale", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.562288, + 47.61527 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49130A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ecuille - Ecoles", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.393216, + 47.559367 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49110B", + "ref": "", + "name": "OuestCharge - Diva Sp - Corze - Motte", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.393216, + 47.559367 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49110B", + "ref": "", + "name": "OuestCharge - Diva Sp - Corze - Motte", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.435457, + 47.418908 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49117A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Dagueniere - Acacias", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.435457, + 47.418908 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49117A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Dagueniere - Acacias", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.119188, + 47.231738 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49123A", + "ref": "", + "name": "OuestCharge - Diva Sp - Distre - Blanchard", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.119188, + 47.231738 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49123A", + "ref": "", + "name": "OuestCharge - Diva Sp - Distre - Blanchard", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.301931, + 47.189978 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49125A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Doue-la-Fontaine - Cholet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.301931, + 47.189978 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49125A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Doue-la-Fontaine - Cholet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.301931, + 47.189978 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49125A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Doue-la-Fontaine - Cholet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27582, + 47.191899 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49125B", + "ref": "", + "name": "OuestCharge - Diva Sp - Doue-la-Fontaine - Foire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27582, + 47.191899 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49125B", + "ref": "", + "name": "OuestCharge - Diva Sp - Doue-la-Fontaine - Foire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273548, + 47.193495 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49125C", + "ref": "", + "name": "OuestCharge - Diva Sp - Doue-la-Fontaine - Verdun", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273548, + 47.193495 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49125C", + "ref": "", + "name": "OuestCharge - Diva Sp - Doue-la-Fontaine - Verdun", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.204504, + 47.339675 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49126A", + "ref": "", + "name": "OuestCharge - Diva Sp - Drain - Sports", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.204504, + 47.339675 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49126A", + "ref": "", + "name": "OuestCharge - Diva Sp - Drain - Sports", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.240833, + 47.671838 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49127A", + "ref": "", + "name": "OuestCharge - Diva Sp - Durtal - Camping", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.240833, + 47.671838 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49127A", + "ref": "", + "name": "OuestCharge - Diva Sp - Durtal - Camping", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244611, + 47.672 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49127B", + "ref": "", + "name": "OuestCharge - ePremium - Durtal - Trivoli", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244611, + 47.672 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49127B", + "ref": "", + "name": "OuestCharge - ePremium - Durtal - Trivoli", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244611, + 47.672 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49127B", + "ref": "", + "name": "OuestCharge - ePremium - Durtal - Trivoli", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.508696, + 47.506721 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49129A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Ecouflant - Eperviere", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.508696, + 47.506721 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49129A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Ecouflant - Eperviere", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.508696, + 47.506721 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49129A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Ecouflant - Eperviere", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.528013, + 47.52875 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49129B", + "ref": "", + "name": "OuestCharge - Diva Sp - Ecouflant - Vieille Maine", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.528013, + 47.52875 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49129B", + "ref": "", + "name": "OuestCharge - Diva Sp - Ecouflant - Vieille Maine", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.038546, + 47.561347 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49054A", + "ref": "", + "name": "OuestCharge - Diva Sp - Cande - Saint-Nicolas", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.640257, + 47.4761 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49020A", + "ref": "", + "name": "OuestCharge - Diva Sp - Beaucouze - Domino", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.408917, + 47.318639 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49050B", + "ref": "", + "name": "OuestCharge - ePremium - Brissac-Loire-Aubance - Layon", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.555071, + 47.474853 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007H", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Gambetta", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.551959, + 47.474517 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007I", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Boisnet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.551959, + 47.474517 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007I", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Boisnet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55714, + 47.479224 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007J", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Mirault", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55714, + 47.479224 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007J", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Mirault", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.552912, + 47.491494 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007K", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Moulin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.552912, + 47.491494 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007K", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Moulin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.524759, + 47.487154 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007L", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Ecriture", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.524759, + 47.487154 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007L", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Ecriture", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.562786, + 47.474284 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007M", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Cerf", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.562786, + 47.474284 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007M", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Cerf", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.546506, + 47.470084 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007N", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Mai 45", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.546506, + 47.470084 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007N", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Mai 45", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.560626, + 47.479479 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007O", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Hotel Dieu", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.560626, + 47.479479 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007O", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Hotel Dieu", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.543489, + 47.480374 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007P", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Ney", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.543489, + 47.480374 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007P", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Ney", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.564293, + 47.478727 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007Q", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Bichon", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.564293, + 47.478727 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007Q", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Bichon", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.553069, + 47.462925 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007R", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Lafayette", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.553069, + 47.462925 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007R", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Lafayette", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55655, + 47.469423 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007S", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Toussaint", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55655, + 47.469423 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007S", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Toussaint", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.539925, + 47.469068 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007T", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Louis Gain", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.539925, + 47.469068 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007T", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Louis Gain", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53269521, + 47.46096235 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007U", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Coubertin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.555071, + 47.474853 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007H", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Gambetta", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.565617, + 47.493526 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007G", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Aquavita", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566538, + 47.473302 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007V", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Dumesnil", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.565617, + 47.493526 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007G", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Aquavita", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24442, + 47.265602 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49172A", + "ref": "", + "name": "OuestCharge - Diva Sp - Landemont - Saint Sauveur", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-11", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.021022, + 47.291658 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49002A", + "ref": "", + "name": "OuestCharge - Diva Sp - Allonnes - Gallart", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.021022, + 47.291658 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49002A", + "ref": "", + "name": "OuestCharge - Diva Sp - Allonnes - Gallart", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.395715, + 47.457271 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49004A", + "ref": "", + "name": "OuestCharge - Diva Sp - Andard - Poulain", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.395715, + 47.457271 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49004A", + "ref": "", + "name": "OuestCharge - Diva Sp - Andard - Poulain", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.954205, + 47.171404 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49006A", + "ref": "", + "name": "OuestCharge - Diva Sp - Andreze - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.954205, + 47.171404 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49006A", + "ref": "", + "name": "OuestCharge - Diva Sp - Andreze - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.549208, + 47.477254 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007A", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Rennes", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.549208, + 47.477254 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007A", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Rennes", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.560842, + 47.49153 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007AA", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Fraternite", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.560842, + 47.49153 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007AA", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Fraternite", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.525074, + 47.45235 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007AB", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Marianne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.525074, + 47.45235 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007AB", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Marianne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.557721, + 47.466106 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007AC", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Richard", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.557721, + 47.466106 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007AC", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Richard", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.525074, + 47.45235 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007AB", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Marianne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.525074, + 47.45235 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007AB", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Marianne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.557721, + 47.466106 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007AC", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Richard", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.557721, + 47.466106 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007AC", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Richard", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.555268, + 47.450911 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007D", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Gendarme", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.555268, + 47.450911 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007D", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Gendarme", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.538226, + 47.46024 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007E", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Volney", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.538226, + 47.46024 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007E", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Volney", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.558719, + 47.475807 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007F", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Arago", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.558719, + 47.475807 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007F", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Arago", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53269521, + 47.46096235 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007U", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Coubertin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566538, + 47.473302 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007V", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Dumesnil", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.408917, + 47.318639 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49050B", + "ref": "", + "name": "OuestCharge - ePremium - Brissac-Loire-Aubance - Layon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.214121, + 47.438176 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49021B", + "ref": "", + "name": "OuestCharge - Diva Sp - Beaufort-en-Vallee - Republique", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602694, + 47.316361 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49022A", + "ref": "", + "name": "OuestCharge - ePremium - Beaulieu Sur Layon - Promenade", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602694, + 47.316361 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49022A", + "ref": "", + "name": "OuestCharge - ePremium - Beaulieu Sur Layon - Promenade", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602694, + 47.316361 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49022A", + "ref": "", + "name": "OuestCharge - ePremium - Beaulieu Sur Layon - Promenade", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.982642, + 47.209947 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49023A", + "ref": "", + "name": "OuestCharge - Diva Sp - Beaupreau - Parking Bus", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.982642, + 47.209947 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49023A", + "ref": "", + "name": "OuestCharge - Diva Sp - Beaupreau - Parking Bus", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.992462, + 47.202836 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49023B", + "ref": "", + "name": "OuestCharge - Diva Sp - Beaupreau - Garenne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.992462, + 47.202836 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49023B", + "ref": "", + "name": "OuestCharge - Diva Sp - Beaupreau - Garenne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.899778, + 47.251778 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49023C", + "ref": "", + "name": "OuestCharge - ePremium - Beaupreau - Bocage", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.899778, + 47.251778 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49023C", + "ref": "", + "name": "OuestCharge - ePremium - Beaupreau - Bocage", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.899778, + 47.251778 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49023C", + "ref": "", + "name": "OuestCharge - ePremium - Beaupreau - Bocage", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.799876, + 47.50232 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49026A", + "ref": "", + "name": "OuestCharge - Diva Sp - Becon-les-Granits - Tilleuls", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-25", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.799876, + 47.50232 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49026A", + "ref": "", + "name": "OuestCharge - Diva Sp - Becon-les-Granits - Tilleuls", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-25", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.936225, + 47.140204 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49027A", + "ref": "", + "name": "OuestCharge - Diva Sp - Begrolles-en-Mauges - Abbaye", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.936225, + 47.140204 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49027A", + "ref": "", + "name": "OuestCharge - Diva Sp - Begrolles-en-Mauges - Abbaye", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.609137, + 47.424319 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49035A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bouchemaine - Chevriere", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.609137, + 47.424319 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49035A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bouchemaine - Chevriere", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.620562, + 47.409902 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49035B", + "ref": "", + "name": "OuestCharge - Diva Sp - Bouchemaine - Plessis", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.620562, + 47.409902 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49035B", + "ref": "", + "name": "OuestCharge - Diva Sp - Bouchemaine - Plessis", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.065252, + 47.303128 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49041A", + "ref": "", + "name": "OuestCharge - Diva Sp - Brain-sur-Allonnes - Foire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.065252, + 47.303128 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49041A", + "ref": "", + "name": "OuestCharge - Diva Sp - Brain-sur-Allonnes - Foire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.504181, + 47.564662 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49048A", + "ref": "", + "name": "OuestCharge - Diva Sp - Briollay - Paul Cezanne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.504181, + 47.564662 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49048A", + "ref": "", + "name": "OuestCharge - Diva Sp - Briollay - Paul Cezanne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.447423, + 47.357032 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49050A", + "ref": "", + "name": "OuestCharge - Diva Sp - Brissac-Quince - Gaulle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.447423, + 47.357032 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49050A", + "ref": "", + "name": "OuestCharge - Diva Sp - Brissac-Quince - Gaulle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.408917, + 47.318639 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49050B", + "ref": "", + "name": "OuestCharge - ePremium - Brissac-Loire-Aubance - Layon", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.214121, + 47.438176 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49021B", + "ref": "", + "name": "OuestCharge - Diva Sp - Beaufort-en-Vallee - Republique", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.237386, + 47.440085 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49021A", + "ref": "", + "name": "OuestCharge - Diva Sp - Beaufort-en-Vallee - Equisseaux", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548205, + 47.474028 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007W", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Imbach", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.237386, + 47.440085 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49021A", + "ref": "", + "name": "OuestCharge - Diva Sp - Beaufort-en-Vallee - Equisseaux", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548205, + 47.474028 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007W", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Imbach", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5919, + 47.4801 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007X", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Notre Dame Du Lac", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5919, + 47.4801 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007X", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Notre Dame Du Lac", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56552, + 47.449193 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007Y", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Jean XXIII", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56552, + 47.449193 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007Y", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Jean XXIII", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.559266, + 47.468648 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007Z", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Academie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.559266, + 47.468648 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49007Z", + "ref": "", + "name": "OuestCharge - Diva Sp - Angers - Academie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.464037, + 47.211582 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49012A", + "ref": "", + "name": "OuestCharge - Diva Sp - Aubigne-sur-Layon - 19 Mars 1962", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.464037, + 47.211582 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49012A", + "ref": "", + "name": "OuestCharge - Diva Sp - Aubigne-sur-Layon - 19 Mars 1962", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61754, + 47.51396 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49015A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Avrille - D768", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61754, + 47.51396 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49015A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Avrille - D768", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61754, + 47.51396 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49015A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Avrille - D768", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.588673, + 47.505249 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49015B", + "ref": "", + "name": "OuestCharge - Diva Sp - Avrille - Alphonse Loubat", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.588673, + 47.505249 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49015B", + "ref": "", + "name": "OuestCharge - Diva Sp - Avrille - Alphonse Loubat", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.590732, + 47.506252 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49015C", + "ref": "", + "name": "OuestCharge - Diva Sp - Avrille - Victor Hugo", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.590732, + 47.506252 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49015C", + "ref": "", + "name": "OuestCharge - Diva Sp - Avrille - Victor Hugo", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.589951, + 47.499568 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49015D", + "ref": "", + "name": "OuestCharge - Diva Sp - Avrille - Maison Medicale", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.589951, + 47.499568 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49015D", + "ref": "", + "name": "OuestCharge - Diva Sp - Avrille - Maison Medicale", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.101972, + 47.540358 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49018A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bauge - Europe", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.101972, + 47.540358 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49018A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bauge - Europe", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.106122, + 47.542556 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49018B", + "ref": "", + "name": "OuestCharge - Diva Sp - Bauge - Marche", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.106122, + 47.542556 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49018B", + "ref": "", + "name": "OuestCharge - Diva Sp - Bauge - Marche", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.640257, + 47.4761 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49020A", + "ref": "", + "name": "OuestCharge - Diva Sp - Beaucouze - Domino", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624794, + 47.474972 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49020B", + "ref": "", + "name": "OuestCharge - Diva Sp - Beaucouze - Grange Aux Belles", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624794, + 47.474972 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49020B", + "ref": "", + "name": "OuestCharge - Diva Sp - Beaucouze - Grange Aux Belles", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.484532, + 47.404556 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49167A", + "ref": "", + "name": "OuestCharge - Diva Sp - Juigne-sur-Loire - Rocher", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.760868, + 47.348772 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49063A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chalonnes-sur-Loire - Tonneliers", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24442, + 47.265602 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49172A", + "ref": "", + "name": "OuestCharge - Diva Sp - Landemont - Saint Sauveur", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-11", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.02531, + 47.270356 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49313A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Pierre-Montlimart - Parc", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.470786, + 47.520083 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49323A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Sylvain-d'Anjou - Veillere", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.383166, + 47.501832 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49326A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sarrigne - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.383166, + 47.501832 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49326A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sarrigne - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.081374, + 47.257962 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49328A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saumur - Europe", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.081374, + 47.257962 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49328A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saumur - Europe", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.074092, + 47.263713 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49328B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saumur - Gaulle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.074092, + 47.263713 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49328B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saumur - Gaulle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09440862, + 47.26641082 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49328C", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Saumur - Carrousel", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09440862, + 47.26641082 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49328C", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Saumur - Carrousel", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09440862, + 47.26641082 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49328C", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Saumur - Carrousel", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.090757, + 47.249435 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49328D", + "ref": "", + "name": "OuestCharge - Diva Sp - Saumur - Chumeau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.090757, + 47.249435 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49328D", + "ref": "", + "name": "OuestCharge - Diva Sp - Saumur - Chumeau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.071973, + 47.255545 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49328E", + "ref": "", + "name": "OuestCharge - Diva Sp - Saumur - Moulins", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.071973, + 47.255545 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49328E", + "ref": "", + "name": "OuestCharge - Diva Sp - Saumur - Moulins", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.655311, + 47.383595 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49329A", + "ref": "", + "name": "OuestCharge - Diva Sp - Savennieres - Mail", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.655311, + 47.383595 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49329A", + "ref": "", + "name": "OuestCharge - Diva Sp - Savennieres - Mail", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.866408, + 47.686106 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49331A", + "ref": "", + "name": "OuestCharge - Diva Sp - Segre - Port", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.866408, + 47.686106 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49331A", + "ref": "", + "name": "OuestCharge - Diva Sp - Segre - Port", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.869483, + 47.69788 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49331B", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Segre - Promenade", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-25", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.869483, + 47.69788 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49331B", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Segre - Promenade", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-25", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.869483, + 47.69788 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49331B", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Segre - Promenade", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-08-25", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.872631, + 47.686143 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49331C", + "ref": "", + "name": "OuestCharge - Diva Sp - Segre - Lauingen", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.872631, + 47.686143 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49331C", + "ref": "", + "name": "OuestCharge - Diva Sp - Segre - Lauingen", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.938152, + 47.05595 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49332A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Seguiniere - Industrie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.938152, + 47.05595 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49332A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Seguiniere - Industrie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.470786, + 47.520083 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49323A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Sylvain-d'Anjou - Veillere", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.02531, + 47.270356 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49313A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Pierre-Montlimart - Parc", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35941666, + 47.5761667 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49333A", + "ref": "", + "name": "OuestCharge - Diva Sp - Seiches-sur-le-Loir - Coudray", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.514327, + 47.400515 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49308B", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Saint-Melaine-sur-Aubance - Treillebois", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.678323, + 47.483684 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49294A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Lambert-la-Potherie - Aubriaie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.678323, + 47.483684 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49294A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Lambert-la-Potherie - Aubriaie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.805811, + 47.31498 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49295A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Laurent-de-la-Plaine - Mauges", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.805811, + 47.31498 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49295A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Laurent-de-la-Plaine - Mauges", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.188577, + 47.287826 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49296A", + "ref": "", + "name": "OuestCharge - Diva Sp - Oree-d Anjou - Maroni", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.188577, + 47.287826 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49296A", + "ref": "", + "name": "OuestCharge - Diva Sp - Oree-d Anjou - Maroni", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.710591, + 47.460763 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49298A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Leger-des-Bois - Ferrieres", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.710591, + 47.460763 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49298A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Leger-des-Bois - Ferrieres", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.911004, + 47.092248 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49299A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Leger-sous-Cholet - 14 Décembre 1863", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.911004, + 47.092248 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49299A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Leger-sous-Cholet - 14 Décembre 1863", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.994913, + 47.124825 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49301A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sevremoine - Prieure", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.994913, + 47.124825 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49301A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sevremoine - Prieure", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.994046, + 47.123098 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49301B", + "ref": "", + "name": "OuestCharge - Diva Sp - Sevremoine - Commerce", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.994046, + 47.123098 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49301B", + "ref": "", + "name": "OuestCharge - Diva Sp - Sevremoine - Commerce", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.095972, + 47.122111 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49301C", + "ref": "", + "name": "OuestCharge - ePremium - Sevremoine - Petit Lapin", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.095972, + 47.122111 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49301C", + "ref": "", + "name": "OuestCharge - ePremium - Sevremoine - Petit Lapin", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.095972, + 47.122111 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49301C", + "ref": "", + "name": "OuestCharge - ePremium - Sevremoine - Petit Lapin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.703429, + 47.431488 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49306A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Martin-du-Fouilloux - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.703429, + 47.431488 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49306A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Martin-du-Fouilloux - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32078, + 47.410707 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49307A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Mathurin-sur-Loire - 1962", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32078, + 47.410707 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49307A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Mathurin-sur-Loire - 1962", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497006, + 47.370575 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49308A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Melaine-sur-Aubance - Brousse", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497006, + 47.370575 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49308A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Melaine-sur-Aubance - Brousse", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.514327, + 47.400515 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49308B", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Saint-Melaine-sur-Aubance - Treillebois", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.514327, + 47.400515 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49308B", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Saint-Melaine-sur-Aubance - Treillebois", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35941666, + 47.5761667 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49333A", + "ref": "", + "name": "OuestCharge - Diva Sp - Seiches-sur-le-Loir - Coudray", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41920244, + 47.56992087 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49337A", + "ref": "", + "name": "OuestCharge - Diva Sp - Soucelles - Vignes", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.627508, + 47.303931 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49292A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Lambert-du-Lattay - Marie Lise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.054743, + 47.239712 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49361A", + "ref": "", + "name": "OuestCharge - Diva Sp - Varennes-sur-Loire - Gare", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.066444, + 47.222944 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49362A", + "ref": "", + "name": "OuestCharge - ePremium - Varrains - Mairie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.066444, + 47.222944 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49362A", + "ref": "", + "name": "OuestCharge - ePremium - Varrains - Mairie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.066444, + 47.222944 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49362A", + "ref": "", + "name": "OuestCharge - ePremium - Varrains - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.476858, + 47.331369 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49363A", + "ref": "", + "name": "OuestCharge - Diva Sp - Vauchretien - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.476858, + 47.331369 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49363A", + "ref": "", + "name": "OuestCharge - Diva Sp - Vauchretien - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.208389, + 47.13925 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49364A", + "ref": "", + "name": "OuestCharge - ePremium - Vaudelany - Mairie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.208389, + 47.13925 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49364A", + "ref": "", + "name": "OuestCharge - ePremium - Vaudelany - Mairie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.208389, + 47.13925 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49364A", + "ref": "", + "name": "OuestCharge - ePremium - Vaudelany - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83459, + 47.60009 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49367A", + "ref": "", + "name": "OuestCharge - Diva Sp - Erdre-en-Anjou - Halles", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83459, + 47.60009 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49367A", + "ref": "", + "name": "OuestCharge - Diva Sp - Erdre-en-Anjou - Halles", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.053695, + 47.393536 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49368A", + "ref": "", + "name": "OuestCharge - Diva Sp - Vernantes - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.053695, + 47.393536 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49368A", + "ref": "", + "name": "OuestCharge - Diva Sp - Vernantes - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.535805, + 47.144991 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49373A", + "ref": "", + "name": "OuestCharge - Diva Sp - Vihiers - Minage", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.535805, + 47.144991 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49373A", + "ref": "", + "name": "OuestCharge - Diva Sp - Vihiers - Minage", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.057201, + 47.15339 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49375A", + "ref": "", + "name": "OuestCharge - Diva Sp - Villedieu-la-Blouere - Malte", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.057201, + 47.15339 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49375A", + "ref": "", + "name": "OuestCharge - Diva Sp - Villedieu-la-Blouere - Malte", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.891717, + 47.462874 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49376A", + "ref": "", + "name": "OuestCharge - Diva Sp - Villemoisan - Dunkerque", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.891717, + 47.462874 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49376A", + "ref": "", + "name": "OuestCharge - Diva Sp - Villemoisan - Dunkerque", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.423855, + 47.559531 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49377A", + "ref": "", + "name": "OuestCharge - Diva Sp - Villeveque - Pierre", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.423855, + 47.559531 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49377A", + "ref": "", + "name": "OuestCharge - Diva Sp - Villeveque - Pierre", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.055683, + 47.325855 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49378A", + "ref": "", + "name": "OuestCharge - Diva Sp - Vivy - Soeurs", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.055683, + 47.325855 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49378A", + "ref": "", + "name": "OuestCharge - Diva Sp - Vivy - Soeurs", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.703431, + 47.021955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49381A", + "ref": "", + "name": "OuestCharge - Diva Sp - Yzernay - Corbert", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-04", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.703431, + 47.021955 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49381A", + "ref": "", + "name": "OuestCharge - Diva Sp - Yzernay - Corbert", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-04", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.711688, + 47.626205 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49176A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Lion-d'Angers - Foire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.054743, + 47.239712 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49361A", + "ref": "", + "name": "OuestCharge - Diva Sp - Varennes-sur-Loire - Gare", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.322585, + 47.313 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49360A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Varenne - Bretagne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41920244, + 47.56992087 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49337A", + "ref": "", + "name": "OuestCharge - Diva Sp - Soucelles - Vignes", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.322585, + 47.313 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49360A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Varenne - Bretagne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.524881, + 47.364289 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49338A", + "ref": "", + "name": "OuestCharge - Diva Sp - Soulaines-sur-Aubance - Cortequisse", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.524881, + 47.364289 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49338A", + "ref": "", + "name": "OuestCharge - Diva Sp - Soulaines-sur-Aubance - Cortequisse", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55436, + 47.577466 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49339A", + "ref": "", + "name": "OuestCharge - Diva Sp - Soulaire-et-Bourg - Ecole", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55436, + 47.577466 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49339A", + "ref": "", + "name": "OuestCharge - Diva Sp - Soulaire-et-Bourg - Ecole", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.850349, + 47.005484 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49343A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Tessoualle - Poste", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.850349, + 47.005484 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49343A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Tessoualle - Poste", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.505148, + 47.265862 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49345A", + "ref": "", + "name": "OuestCharge - Diva Sp - Thouarce - Ponts", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.505148, + 47.265862 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49345A", + "ref": "", + "name": "OuestCharge - Diva Sp - Thouarce - Ponts", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.468069, + 47.615758 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49347A", + "ref": "", + "name": "OuestCharge - Diva Sp - Tierce - Touraine", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.468069, + 47.615758 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49347A", + "ref": "", + "name": "OuestCharge - Diva Sp - Tierce - Touraine", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1648, + 47.140958 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49349A", + "ref": "", + "name": "OuestCharge - Diva Sp - Tillieres - Sports", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1648, + 47.140958 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49349A", + "ref": "", + "name": "OuestCharge - Diva Sp - Tillieres - Sports", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.114795, + 47.037548 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49350A", + "ref": "", + "name": "OuestCharge - Diva Sp - Torfou - Clemenceau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.114795, + 47.037548 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49350A", + "ref": "", + "name": "OuestCharge - Diva Sp - Torfou - Clemenceau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.509598, + 47.456582 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49353A", + "ref": "", + "name": "OuestCharge - Diva Sp - Trelaze - Perreyeux", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.509598, + 47.456582 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49353A", + "ref": "", + "name": "OuestCharge - Diva Sp - Trelaze - Perreyeux", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.482769, + 47.441977 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49353B", + "ref": "", + "name": "OuestCharge - Diva Sp - Trelaze - Buisson", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.482769, + 47.441977 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49353B", + "ref": "", + "name": "OuestCharge - Diva Sp - Trelaze - Buisson", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4999, + 47.4474 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49353C", + "ref": "", + "name": "OuestCharge - Diva Sp - Trelaze - Goduciere", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4999, + 47.4474 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49353C", + "ref": "", + "name": "OuestCharge - Diva Sp - Trelaze - Goduciere", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.468639, + 47.452278 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49353D", + "ref": "", + "name": "OuestCharge - ePremium - Traleze - Gare", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.468639, + 47.452278 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49353D", + "ref": "", + "name": "OuestCharge - ePremium - Traleze - Gare", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.468639, + 47.452278 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49353D", + "ref": "", + "name": "OuestCharge - ePremium - Traleze - Gare", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7893902, + 47.12269847 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49355A", + "ref": "", + "name": "OuestCharge - Diva Sp - Trementines - Ravel", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7893902, + 47.12269847 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49355A", + "ref": "", + "name": "OuestCharge - Diva Sp - Trementines - Ravel", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.627508, + 47.303931 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49292A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Lambert-du-Lattay - Marie Lise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.189167, + 47.286139 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49069B", + "ref": "", + "name": "OuestCharge - ePremium - Oree-d Anjou - Mauges", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.458562, + 47.401183 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49290A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Jean-des-Mauvrets - Almand", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-04", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.270014, + 47.401709 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49201A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Menitre - Leon Faye", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.125468, + 47.096814 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49206A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montfaucon-Montigne - Saint-Maurice", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.862944, + 47.390083 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49212A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montjean-sur-Loire - Cap Loire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.862944, + 47.390083 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49212A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montjean-sur-Loire - Cap Loire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.610083, + 47.529708 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49214A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montreuil-Juigne - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.610083, + 47.529708 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49214A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montreuil-Juigne - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.615875, + 47.541477 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49214B", + "ref": "", + "name": "OuestCharge - Diva Sp - Montreuil-Juigne - Jean Baptiste", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.615875, + 47.541477 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49214B", + "ref": "", + "name": "OuestCharge - Diva Sp - Montreuil-Juigne - Jean Baptiste", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.155132, + 47.130526 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49215A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montreuil-Bellay - Concorde", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-11", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.155132, + 47.130526 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49215A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montreuil-Bellay - Concorde", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-11", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.417993, + 47.745053 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49220A", + "ref": "", + "name": "OuestCharge - Diva Sp - Morannes - Croix Verte", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.417993, + 47.745053 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49220A", + "ref": "", + "name": "OuestCharge - Diva Sp - Morannes - Croix Verte", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.364194, + 47.699917 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49220B", + "ref": "", + "name": "OuestCharge - ePremium - Morannes - Beaumont", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.364194, + 47.699917 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49220B", + "ref": "", + "name": "OuestCharge - ePremium - Morannes - Beaumont", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.364194, + 47.699917 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49220B", + "ref": "", + "name": "OuestCharge - ePremium - Morannes - Beaumont", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.014452, + 47.465705 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49221A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mouliherne - Anjou", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.014452, + 47.465705 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49221A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mouliherne - Anjou", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.552589, + 47.356914 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49222A", + "ref": "", + "name": "OuestCharge - Diva Sp - Moze-sur-Louet - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.552589, + 47.356914 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49222A", + "ref": "", + "name": "OuestCharge - Diva Sp - Moze-sur-Louet - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.528586, + 47.396864 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49223A", + "ref": "", + "name": "OuestCharge - Diva Sp - Murs-Erigne - De Grand Clos", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.528586, + 47.396864 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49223A", + "ref": "", + "name": "OuestCharge - Diva Sp - Murs-Erigne - De Grand Clos", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.528586, + 47.396864 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49223A", + "ref": "", + "name": "OuestCharge - Diva Sp - Murs-Erigne - De Grand Clos", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.528586, + 47.396864 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49223A", + "ref": "", + "name": "OuestCharge - Diva Sp - Murs-Erigne - De Grand Clos", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.115145, + 47.512698 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49228A", + "ref": "", + "name": "OuestCharge - Diva Sp - Noyant - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.115145, + 47.512698 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49228A", + "ref": "", + "name": "OuestCharge - Diva Sp - Noyant - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.117367, + 47.510163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49228B", + "ref": "", + "name": "OuestCharge - ePremium - Noyant - Ecoles", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.125468, + 47.096814 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49206A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montfaucon-Montigne - Saint-Maurice", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.270014, + 47.401709 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49201A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Menitre - Leon Faye", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.117367, + 47.510163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49228B", + "ref": "", + "name": "OuestCharge - ePremium - Noyant - Ecoles", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.671603, + 47.560909 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49200A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Membrolle-sur-Longuenee - Cimetiere", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.711688, + 47.626205 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49176A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Lion-d'Angers - Foire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.458562, + 47.401183 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49290A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Jean-des-Mauvrets - Almand", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-04", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.167665, + 47.341154 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49177A", + "ref": "", + "name": "OuestCharge - Diva Sp - Lire - Haut Fief", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.978444, + 47.615778 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49178A", + "ref": "", + "name": "OuestCharge - ePremium - Loire - Ire", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.978444, + 47.615778 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49178A", + "ref": "", + "name": "OuestCharge - ePremium - Loire - Ire", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.978444, + 47.615778 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49178A", + "ref": "", + "name": "OuestCharge - ePremium - Loire - Ire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-05-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.061148, + 47.017144 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49179A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Longeron - Bonnet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.061148, + 47.017144 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49179A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Longeron - Bonnet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.107774, + 47.380672 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49180A", + "ref": "", + "name": "OuestCharge - Diva Sp - Longue-Jumelles - Republique", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.107774, + 47.380672 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49180A", + "ref": "", + "name": "OuestCharge - Diva Sp - Longue-Jumelles - Republique", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.111191, + 47.375752 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49180B", + "ref": "", + "name": "OuestCharge - Diva Sp - Longue-Jumelles - Foire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.111191, + 47.375752 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49180B", + "ref": "", + "name": "OuestCharge - Diva Sp - Longue-Jumelles - Foire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.88562, + 47.522113 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49183A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Louroux-Beconnais - Noel Pinot", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.88562, + 47.522113 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49183A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Louroux-Beconnais - Noel Pinot", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.429762, + 47.235004 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49191A", + "ref": "", + "name": "OuestCharge - Diva Sp - Martigne-Briand - Cousin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.429762, + 47.235004 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49191A", + "ref": "", + "name": "OuestCharge - Diva Sp - Martigne-Briand - Cousin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7447, + 47.007271 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49192A", + "ref": "", + "name": "OuestCharge - Diva Sp - Maulevrier - Stofflet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7447, + 47.007271 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49192A", + "ref": "", + "name": "OuestCharge - Diva Sp - Maulevrier - Stofflet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.891438, + 47.137219 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49193A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le May-sur-Evre - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.891438, + 47.137219 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49193A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le May-sur-Evre - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27214, + 47.45545 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49194A", + "ref": "", + "name": "OuestCharge - Diva Sp - Maze - Richou", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27214, + 47.45545 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49194A", + "ref": "", + "name": "OuestCharge - Diva Sp - Maze - Richou", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.666759, + 47.518528 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49196A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Meignanne - Angers", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.666759, + 47.518528 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49196A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Meignanne - Angers", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.671603, + 47.560909 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49200A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Membrolle-sur-Longuenee - Cimetiere", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.117367, + 47.510163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49228B", + "ref": "", + "name": "OuestCharge - ePremium - Noyant - Ecoles", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.167665, + 47.341154 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49177A", + "ref": "", + "name": "OuestCharge - Diva Sp - Lire - Haut Fief", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.956686, + 47.704641 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49229A", + "ref": "", + "name": "OuestCharge - Diva Sp - Noyant-la-Gravoyere - Velodrome", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.026729, + 47.059998 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49260A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Romagne - Nationale", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.010639, + 47.059889 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49260B", + "ref": "", + "name": "OuestCharge - ePremium - La Romagne - Touraine", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.010639, + 47.059889 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49260B", + "ref": "", + "name": "OuestCharge - ePremium - La Romagne - Touraine", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.010639, + 47.059889 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49260B", + "ref": "", + "name": "OuestCharge - ePremium - La Romagne - Touraine", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.224408, + 47.350746 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49261A", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Rosiers-sur-Loire - Mail", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.224408, + 47.350746 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49261A", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Rosiers-sur-Loire - Mail", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.994333, + 47.101603 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49264A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Andre-de-la-Marche - Auguste Vincent", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.994333, + 47.101603 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49264A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Andre-de-la-Marche - Auguste Vincent", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.494282, + 47.468264 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49267A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Barthelemy-d'Anjou - Marche", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.494282, + 47.468264 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49267A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Barthelemy-d'Anjou - Marche", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.942527, + 47.029359 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49269A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Christophe-du-Bois - Chapelle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.743992, + 47.525189 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49271A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Clement-de-la-Place - Tabuteau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.743992, + 47.525189 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49271A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Clement-de-la-Place - Tabuteau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.014638, + 47.355065 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49276A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Florent-le-Vieil - La Chevalerie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.014638, + 47.355065 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49276A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Florent-le-Vieil - La Chevalerie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55671, + 47.422724 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49278A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sainte-Gemmes-sur-Loire - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55671, + 47.422724 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49278A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sainte-Gemmes-sur-Loire - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7583043, + 47.4097886 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49283A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Georges-sur-Loire - Monprofit", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7583043, + 47.4097886 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49283A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Georges-sur-Loire - Monprofit", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8330849, + 47.4096558 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49284A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Saint-Germain-des-Pres - Loire", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8330849, + 47.4096558 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49284A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Saint-Germain-des-Pres - Loire", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8330849, + 47.4096558 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49284A", + "ref": "", + "name": "OuestCharge - Quick Charger Evtronic - Saint-Germain-des-Pres - Loire", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.100163, + 47.264232 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49287A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Hilaire-Saint-Florent - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.100163, + 47.264232 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49287A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Hilaire-Saint-Florent - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.661137, + 47.457042 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49289A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Jean-de-Linieres - Nationale", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.661137, + 47.457042 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49289A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Jean-de-Linieres - Nationale", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.026729, + 47.059998 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49260A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Romagne - Nationale", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.942527, + 47.029359 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49269A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Christophe-du-Bois - Chapelle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.655694, + 47.358167 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49259A", + "ref": "", + "name": "OuestCharge - ePremium - Rochefort-Sur-Loire - Pilori", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.525422, + 47.424441 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49246B", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Ponts-de-Ce - Marechal Leclerc", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436901, + 47.521476 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49238A", + "ref": "", + "name": "OuestCharge - Diva Sp - Pellouailles-les-Vignes - Chapelle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436901, + 47.521476 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49238A", + "ref": "", + "name": "OuestCharge - Diva Sp - Pellouailles-les-Vignes - Chapelle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.655694, + 47.358167 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49259A", + "ref": "", + "name": "OuestCharge - ePremium - Rochefort-Sur-Loire - Pilori", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.430275, + 47.49691 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49241A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Plessis-Grammoire - Gilles", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.430275, + 47.49691 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49241A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Plessis-Grammoire - Gilles", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.676106, + 47.542668 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49242A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Plessis-Mace - Bellay", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.676106, + 47.542668 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49242A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Plessis-Mace - Bellay", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.858696, + 47.356033 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49244A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Pommeraye - Chais", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.858696, + 47.356033 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49244A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Pommeraye - Chais", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.527251, + 47.437306 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49246A", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Ponts-de-Ce - Président Vilette", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.527251, + 47.437306 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49246A", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Ponts-de-Ce - Président Vilette", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.525422, + 47.424441 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49246B", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Ponts-de-Ce - Marechal Leclerc", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.956686, + 47.704641 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49229A", + "ref": "", + "name": "OuestCharge - Diva Sp - Noyant-la-Gravoyere - Velodrome", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.525211, + 47.442282 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49246C", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Ponts-de-Ce - Pierre de Coubertin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.174833, + 47.739167 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49248B", + "ref": "", + "name": "OuestCharge - ePremium - Ombree D Anjou - Foire", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.525211, + 47.442282 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49246C", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Ponts-de-Ce - Pierre de Coubertin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.808266, + 47.55254 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49249A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Poueze - Union", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.655694, + 47.358167 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49259A", + "ref": "", + "name": "OuestCharge - ePremium - Rochefort-Sur-Loire - Pilori", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "true", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.174833, + 47.739167 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49248B", + "ref": "", + "name": "OuestCharge - ePremium - Ombree D Anjou - Foire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.174833, + 47.739167 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49248B", + "ref": "", + "name": "OuestCharge - ePremium - Ombree D Anjou - Foire", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.808266, + 47.55254 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49249A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Poueze - Union", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.174242, + 47.739155 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49248A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ombree D Anjou - Foire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.174242, + 47.739155 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49248A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ombree D Anjou - Foire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.688459, + 47.373979 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49247A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Possonniere - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.688459, + 47.373979 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "ref:EU:EVSE": "FRS49P49247A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Possonniere - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432675, + 47.19593 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44071B", + "ref": "", + "name": "OuestCharge - Diva Sp - Haute-Goulaine - Châtaigneraie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.653893, + 47.414195 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44073B", + "ref": "", + "name": "OuestCharge - Diva Sp - Heric - Océan", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432675, + 47.19593 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44071B", + "ref": "", + "name": "OuestCharge - Diva Sp - Haute-Goulaine - Châtaigneraie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.316809, + 47.448766 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44072A", + "ref": "", + "name": "OuestCharge - Diva Sp - Herbignac - Bourg", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.316809, + 47.448766 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44072A", + "ref": "", + "name": "OuestCharge - Diva Sp - Herbignac - Bourg", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.430135, + 47.200016 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44071A", + "ref": "", + "name": "OuestCharge - Diva Sp - Haute-Goulaine - Soleil", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.319294, + 47.447462 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44072B", + "ref": "", + "name": "OuestCharge - Diva Sp - Herbignac - Pasteur", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.319294, + 47.447462 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44072B", + "ref": "", + "name": "OuestCharge - Diva Sp - Herbignac - Pasteur", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.644031, + 47.380213 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44073A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Heric - Erette", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.452347, + 47.623454 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44075A", + "ref": "", + "name": "OuestCharge - Diva Sp - Isse - Gare", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.653893, + 47.414195 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44073B", + "ref": "", + "name": "OuestCharge - Diva Sp - Heric - Océan", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6517673, + 47.4118735 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44073C", + "ref": "", + "name": "OuestCharge - Diva Sp - Heric - Saint-Jean", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6517673, + 47.4118735 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44073C", + "ref": "", + "name": "OuestCharge - Diva Sp - Heric - Saint-Jean", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.452347, + 47.623454 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44075A", + "ref": "", + "name": "OuestCharge - Diva Sp - Isse - Gare", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.419992, + 47.495595 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44077A", + "ref": "", + "name": "OuestCharge - Diva Sp - Joue-Sur-Erdre - Mazureau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.419992, + 47.495595 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44077A", + "ref": "", + "name": "OuestCharge - Diva Sp - Joue-Sur-Erdre - Mazureau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.307135, + 47.205485 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44079A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Landreau - Moulins", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.307135, + 47.205485 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44079A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Landreau - Moulins", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.601608, + 46.891832 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44081A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Lege - Sainte-Marie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.593407, + 46.887125 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44081B", + "ref": "", + "name": "OuestCharge - Diva Sp - Lege - Chaussée", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.430135, + 47.200016 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44071A", + "ref": "", + "name": "OuestCharge - Diva Sp - Haute-Goulaine - Soleil", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.045511, + 47.585254 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44057A", + "ref": "", + "name": "OuestCharge - Diva Sp - Fegreac - Orain", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.399953, + 47.155328 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44070A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Haie-Fouassiere - Etang", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.399953, + 47.155328 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44070A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Haie-Fouassiere - Etang", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.045511, + 47.585254 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44057A", + "ref": "", + "name": "OuestCharge - Diva Sp - Fegreac - Orain", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.374239, + 47.411751 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44082A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ligne - Lilas", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.933519, + 47.244624 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44061A", + "ref": "", + "name": "OuestCharge - Diva Sp - Frossay - Robert Martin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.933519, + 47.244624 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44061A", + "ref": "", + "name": "OuestCharge - Diva Sp - Frossay - Robert Martin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75007, + 47.519053 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44062A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Gavre - Etang", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75007, + 47.519053 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44062A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Gavre - Etang", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.248399, + 47.076892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44063A", + "ref": "", + "name": "OuestCharge - Diva Sp - Getigne - Jean Vay", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.248399, + 47.076892 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44063A", + "ref": "", + "name": "OuestCharge - Diva Sp - Getigne - Jean Vay", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.300524, + 47.101168 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44064A", + "ref": "", + "name": "OuestCharge - Diva Sp - Gorges - Roche", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.300524, + 47.101168 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44064A", + "ref": "", + "name": "OuestCharge - Diva Sp - Gorges - Roche", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.605544, + 47.362484 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44066A", + "ref": "", + "name": "OuestCharge - Diva Sp - Grandchamps-Des-Fontaines - Vertière", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.605544, + 47.362484 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44066A", + "ref": "", + "name": "OuestCharge - Diva Sp - Grandchamps-Des-Fontaines - Vertière", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.833976, + 47.627398 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44067A", + "ref": "", + "name": "OuestCharge - Diva Sp - Guemene-Penfao - Saint-Jean", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.833976, + 47.627398 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44067A", + "ref": "", + "name": "OuestCharge - Diva Sp - Guemene-Penfao - Saint-Jean", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.866043, + 47.697553 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44067B", + "ref": "", + "name": "OuestCharge - Diva Sp - Guemene-Penfao - Besle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.866043, + 47.697553 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44067B", + "ref": "", + "name": "OuestCharge - Diva Sp - Guemene-Penfao - Besle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.953551, + 47.518842 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44068A", + "ref": "", + "name": "OuestCharge - Diva Sp - Guenrouet - Verger", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.953551, + 47.518842 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44068A", + "ref": "", + "name": "OuestCharge - Diva Sp - Guenrouet - Verger", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.416506, + 47.324312 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44069A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Guerande - Flaubert (8)", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.431082, + 47.325404 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44069B", + "ref": "", + "name": "OuestCharge - Diva Sp - Guerande - Legeay", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.431082, + 47.325404 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44069B", + "ref": "", + "name": "OuestCharge - Diva Sp - Guerande - Legeay", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.416486, + 47.324248 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44069C", + "ref": "", + "name": "OuestCharge - Diva Sp - Guerande - Flaubert (8)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.416486, + 47.324248 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44069C", + "ref": "", + "name": "OuestCharge - Diva Sp - Guerande - Flaubert (8)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.593407, + 46.887125 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44081B", + "ref": "", + "name": "OuestCharge - Diva Sp - Lege - Chaussée", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.372122, + 47.621263 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44099A", + "ref": "", + "name": "OuestCharge - Diva Sp - Moisdon-La-Riviere - Prieure", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.374239, + 47.411751 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44082A", + "ref": "", + "name": "OuestCharge - Diva Sp - Ligne - Lilas", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5012, + 47.437694 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44110B", + "ref": "", + "name": "OuestCharge - Diva Sp - Nort-Sur-Erdre - Foire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.152043, + 47.330177 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44103B", + "ref": "", + "name": "OuestCharge - Diva Sp - Montoir-De-Bretagne - Ile-De-France", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.999195, + 47.064589 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44106A", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Moutiers-En-Retz - Source", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.999195, + 47.064589 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44106A", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Moutiers-En-Retz - Source", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.346143, + 47.448143 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44107A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mouzeil - Drapé", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.346143, + 47.448143 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44107A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mouzeil - Drapé", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.281681, + 47.140034 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44108A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mouzillon - Vendée", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.281681, + 47.140034 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44108A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mouzillon - Vendée", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4801865, + 47.4399 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44110A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Nort-Sur-Erdre - Ancenis", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5012, + 47.437694 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44110B", + "ref": "", + "name": "OuestCharge - Diva Sp - Nort-Sur-Erdre - Foire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.710672, + 47.381489 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44111A", + "ref": "", + "name": "OuestCharge - Diva Sp - Notre-Dame-Des-Landes - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-18", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15049, + 47.326231 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44103A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montoir-De-Bretagne - Bernuais", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.710672, + 47.381489 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44111A", + "ref": "", + "name": "OuestCharge - Diva Sp - Notre-Dame-Des-Landes - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-18", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.621944, + 47.574983 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44113A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Nozay - Tsn 44 2", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.623028, + 47.566145 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44113B", + "ref": "", + "name": "OuestCharge - Diva Sp - Nozay - Lavoir", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.623028, + 47.566145 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44113B", + "ref": "", + "name": "OuestCharge - Diva Sp - Nozay - Lavoir", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.284393, + 47.346324 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44115A", + "ref": "", + "name": "OuestCharge - Diva Sp - Oudon - Loire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.284393, + 47.346324 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44115A", + "ref": "", + "name": "OuestCharge - Diva Sp - Oudon - Loire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.027984, + 47.289456 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44116A", + "ref": "", + "name": "OuestCharge - Diva Sp - Paimboeuf - Sadi-Carnot", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.027984, + 47.289456 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44116A", + "ref": "", + "name": "OuestCharge - Diva Sp - Paimboeuf - Sadi-Carnot", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.793377, + 47.415736 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44056A", + "ref": "", + "name": "OuestCharge - Diva Sp - Fay-De-Bretagne - Sicard", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.152043, + 47.330177 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44103B", + "ref": "", + "name": "OuestCharge - Diva Sp - Montoir-De-Bretagne - Ile-De-France", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15049, + 47.326231 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44103A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montoir-De-Bretagne - Bernuais", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.596198, + 46.995125 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44083A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Limouziniere - Desnaurois", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.861284, + 47.359424 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44089A", + "ref": "", + "name": "OuestCharge - Diva Sp - Malville - Musiciens", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.596198, + 46.995125 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44083A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Limouziniere - Desnaurois", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.349169, + 47.236772 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44084A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Loroux-Bottereau - Rosmadec", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.349169, + 47.236772 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44084A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Loroux-Bottereau - Rosmadec", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.816219, + 46.997306 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44087A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Machecoul - Reliquet", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.793926, + 47.0201569 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44087B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint Meme Le Tenu - Bois", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.793926, + 47.0201569 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44087B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint Meme Le Tenu - Bois", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.385048, + 47.098967 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44088A", + "ref": "", + "name": "OuestCharge - Diva Sp - Maisdon-Sur-Sevre - Keelby", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.385048, + 47.098967 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44088A", + "ref": "", + "name": "OuestCharge - Diva Sp - Maisdon-Sur-Sevre - Keelby", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.861284, + 47.359424 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44089A", + "ref": "", + "name": "OuestCharge - Diva Sp - Malville - Musiciens", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.676954, + 47.596801 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44091A", + "ref": "", + "name": "OuestCharge - Diva Sp - Marsac-Sur-Don - Martrais", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-11", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.486906, + 47.057456 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44102A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montbert - Lavoir", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.676954, + 47.596801 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44091A", + "ref": "", + "name": "OuestCharge - Diva Sp - Marsac-Sur-Don - Martrais", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-11", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.228706, + 47.430853 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44096A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mesanger - Bellangeraie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.228706, + 47.430853 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44096A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mesanger - Bellangeraie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.451702, + 47.396174 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44097A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mesquer - Camping Cars", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.451702, + 47.396174 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44097A", + "ref": "", + "name": "OuestCharge - Diva Sp - Mesquer - Camping Cars", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.159951, + 47.482992 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44098A", + "ref": "", + "name": "OuestCharge - Diva Sp - Missillac - Ville", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.159951, + 47.482992 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44098A", + "ref": "", + "name": "OuestCharge - Diva Sp - Missillac - Ville", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.158828, + 47.480876 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44098B", + "ref": "", + "name": "OuestCharge - Diva Sp - Missillac - Saint-Jean", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.158828, + 47.480876 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44098B", + "ref": "", + "name": "OuestCharge - Diva Sp - Missillac - Saint-Jean", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.372122, + 47.621263 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44099A", + "ref": "", + "name": "OuestCharge - Diva Sp - Moisdon-La-Riviere - Prieure", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.486906, + 47.057456 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44102A", + "ref": "", + "name": "OuestCharge - Diva Sp - Montbert - Lavoir", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.793377, + 47.415736 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44056A", + "ref": "", + "name": "OuestCharge - Diva Sp - Fay-De-Bretagne - Sicard", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.197509, + 47.621767 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44031A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chapelle-Glain - Chateau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.40979918, + 47.28394529 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44055D", + "ref": "", + "name": "OuestCharge - E-Twin - La Baule - Atlantia", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.239721, + 47.446531 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44030A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chapelle-Des-Marais - Penlys", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.761038, + 47.475429 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44015A", + "ref": "", + "name": "OuestCharge - Diva Sp - Blain - Schuman", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.761038, + 47.475429 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44015A", + "ref": "", + "name": "OuestCharge - Diva Sp - Blain - Schuman", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.767038, + 47.477271 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44015B", + "ref": "", + "name": "OuestCharge - Diva Sp - Blain - Rousseau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.767038, + 47.477271 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44015B", + "ref": "", + "name": "OuestCharge - Diva Sp - Blain - Rousseau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.761649, + 47.472946 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44015C", + "ref": "", + "name": "OuestCharge - Pulse 50 - Blain - Resistance", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.95605, + 47.041524 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44021A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bourgneuf-En-Retz - Vigne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.95605, + 47.041524 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44021A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bourgneuf-En-Retz - Vigne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.18643, + 47.042495 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44022A", + "ref": "", + "name": "OuestCharge - Diva Sp - Boussay - Cathelineau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.18643, + 47.042495 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44022A", + "ref": "", + "name": "OuestCharge - Diva Sp - Boussay - Cathelineau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.848403, + 47.418352 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44023A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bouvron - Guihot", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.848403, + 47.418352 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44023A", + "ref": "", + "name": "OuestCharge - Diva Sp - Bouvron - Guihot", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.970647, + 47.41373 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44025A", + "ref": "", + "name": "OuestCharge - Diva Sp - Campbon - Bretagne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.970647, + 47.41373 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44025A", + "ref": "", + "name": "OuestCharge - Diva Sp - Campbon - Bretagne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48938447, + 47.29850005 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44026A", + "ref": "", + "name": "OuestCharge - E-Twin - Carquefou - Sevigne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48938447, + 47.29850005 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44026A", + "ref": "", + "name": "OuestCharge - E-Twin - Carquefou - Sevigne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-09-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.558977, + 47.384186 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44027A", + "ref": "", + "name": "OuestCharge - Diva Sp - Casson - Montreal", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.558977, + 47.384186 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44027A", + "ref": "", + "name": "OuestCharge - Diva Sp - Casson - Montreal", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.348234, + 47.319132 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44028A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Cellier - Saint-Meen", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-17", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.348234, + 47.319132 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44028A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Cellier - Saint-Meen", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-17", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.290308, + 47.276517 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44029A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chapelle-Basse-Mer - Noues", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.290308, + 47.276517 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44029A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chapelle-Basse-Mer - Noues", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.334967, + 47.269653 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44029B", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chapelle-Basse-Mer - Mesanges", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.334967, + 47.269653 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44029B", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chapelle-Basse-Mer - Mesanges", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.490912, + 47.097019 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44014A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Bignon - Touche", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.490912, + 47.097019 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44014A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Bignon - Touche", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09213, + 47.395745 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44013A", + "ref": "", + "name": "OuestCharge - Diva Sp - Besne - Pont Neuf", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.177845, + 47.370906 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44003B", + "ref": "", + "name": "OuestCharge - Diva Sp - Ancenis - Docteur Moutel", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.531968, + 47.553973 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44001A", + "ref": "", + "name": "OuestCharge - Diva Sp - Abbaretz - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.531968, + 47.553973 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44001A", + "ref": "", + "name": "OuestCharge - Diva Sp - Abbaretz - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.410933, + 47.081675 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44002A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Aigrefeuille-Sur-Maine - Filee", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.397512, + 47.074964 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44002B", + "ref": "", + "name": "OuestCharge - Diva Sp - Aigrefeuille-Sur-Maine - Vendee", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.397512, + 47.074964 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44002B", + "ref": "", + "name": "OuestCharge - Diva Sp - Aigrefeuille-Sur-Maine - Vendee", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.174149, + 47.367033 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44003A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Ancenis - Leon Seche", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-10", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.177845, + 47.370906 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44003B", + "ref": "", + "name": "OuestCharge - Diva Sp - Ancenis - Docteur Moutel", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.910281, + 47.125105 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44005A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chaumes-En-Retz - Clos Gris", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09213, + 47.395745 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44013A", + "ref": "", + "name": "OuestCharge - Diva Sp - Besne - Pont Neuf", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.910281, + 47.125105 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44005A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chaumes-En-Retz - Clos Gris", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.937478, + 47.114005 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44005B", + "ref": "", + "name": "OuestCharge - Diva Sp - Chaumes-En-Retz - Marchas", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.937478, + 47.114005 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44005B", + "ref": "", + "name": "OuestCharge - Diva Sp - Chaumes-En-Retz - Marchas", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.391569, + 47.429477 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44006A", + "ref": "", + "name": "OuestCharge - Diva Sp - Asserac - Fontaine", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.391569, + 47.429477 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44006A", + "ref": "", + "name": "OuestCharge - Diva Sp - Asserac - Fontaine", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.990829, + 47.653232 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44007A", + "ref": "", + "name": "OuestCharge - Diva Sp - Avessac - Gare", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.990829, + 47.653232 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44007A", + "ref": "", + "name": "OuestCharge - Diva Sp - Avessac - Gare", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.479942, + 47.279449 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44010A", + "ref": "", + "name": "OuestCharge - Diva Sp - Batz-Sur-Mer - Gare", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.479942, + 47.279449 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44010A", + "ref": "", + "name": "OuestCharge - Diva Sp - Batz-Sur-Mer - Gare", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.039746, + 47.080729 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44012A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Bernerie-En-Retz - Noirmoutier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.039746, + 47.080729 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44012A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Bernerie-En-Retz - Noirmoutier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.239721, + 47.446531 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44030A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chapelle-Des-Marais - Penlys", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.197509, + 47.621767 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44031A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chapelle-Glain - Chateau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.40979918, + 47.28394529 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44055D", + "ref": "", + "name": "OuestCharge - E-Twin - La Baule - Atlantia", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-06-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.337746, + 47.139538 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44117A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Pallet - Sautejeau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88, + 47.288138 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44045B", + "ref": "", + "name": "OuestCharge - eSmart - Cordemais - Espace Culturel", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.056627, + 47.27916 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44046A", + "ref": "", + "name": "OuestCharge - Diva Sp - Corsept - D 77", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.056627, + 47.27916 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44046A", + "ref": "", + "name": "OuestCharge - Diva Sp - Corsept - D 77", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.294157, + 47.39103 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44048A", + "ref": "", + "name": "OuestCharge - Diva Sp - Couffe - Havre", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.294157, + 47.39103 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44048A", + "ref": "", + "name": "OuestCharge - Diva Sp - Couffe - Havre", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.512496, + 47.296143 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44049A", + "ref": "", + "name": "OuestCharge - E-Twin - Le Croisic - Place du 8 Mai", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.512496, + 47.296143 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44049A", + "ref": "", + "name": "OuestCharge - E-Twin - Le Croisic - Place du 8 Mai", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-11-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.167744, + 47.411584 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44050A", + "ref": "", + "name": "OuestCharge - Diva Sp - Crossac - Plaisance", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.167744, + 47.411584 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44050A", + "ref": "", + "name": "OuestCharge - Diva Sp - Crossac - Plaisance", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.674989, + 47.667198 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44051A", + "ref": "", + "name": "OuestCharge - Diva Sp - Derval - Grée", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.674989, + 47.667198 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44051A", + "ref": "", + "name": "OuestCharge - Diva Sp - Derval - Grée", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.074784, + 47.317146 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44052A", + "ref": "", + "name": "OuestCharge - Diva Sp - Donges - Gare", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.074784, + 47.317146 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44052A", + "ref": "", + "name": "OuestCharge - Diva Sp - Donges - Gare", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.092474, + 47.340349 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44052B", + "ref": "", + "name": "OuestCharge - Diva Sp - Donges - Croix", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.092474, + 47.340349 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44052B", + "ref": "", + "name": "OuestCharge - Diva Sp - Donges - Croix", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.057012, + 47.474882 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44053A", + "ref": "", + "name": "OuestCharge - Diva Sp - Dreffeac - Rue", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.057012, + 47.474882 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44053A", + "ref": "", + "name": "OuestCharge - Diva Sp - Dreffeac - Rue", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.317223, + 47.657008 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44054A", + "ref": "", + "name": "OuestCharge - Diva Sp - Erbray - Mouette", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.317223, + 47.657008 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44054A", + "ref": "", + "name": "OuestCharge - Diva Sp - Erbray - Mouette", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.388551, + 47.285563 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44055A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Baule-Escoublac - Joffre (46)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.388551, + 47.285563 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44055A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Baule-Escoublac - Joffre (46)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.388497, + 47.285516 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44055B", + "ref": "", + "name": "OuestCharge - Diva Sp - La Baule-Escoublac - Joffre (46 - 2)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.388497, + 47.285516 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44055B", + "ref": "", + "name": "OuestCharge - Diva Sp - La Baule-Escoublac - Joffre (46 - 2)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.388422, + 47.28544 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44055C", + "ref": "", + "name": "OuestCharge - Diva Sp - La Baule-Escoublac - Joffre (42)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.388422, + 47.28544 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44055C", + "ref": "", + "name": "OuestCharge - Diva Sp - La Baule-Escoublac - Joffre (42)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88, + 47.288138 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44045B", + "ref": "", + "name": "OuestCharge - eSmart - Cordemais - Espace Culturel", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.877391, + 47.290846 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44045A", + "ref": "", + "name": "OuestCharge - Diva Sp - Cordemais - Quatre Vents", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.877391, + 47.290846 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44045A", + "ref": "", + "name": "OuestCharge - Diva Sp - Cordemais - Quatre Vents", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.379295, + 47.712905 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44036D", + "ref": "", + "name": "OuestCharge - Diva Sp - Chateaubriant - Liberation", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.340886, + 47.178242 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44032A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chapelle-Heulin - Ripoche", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.340886, + 47.178242 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44032A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chapelle-Heulin - Ripoche", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.972218, + 47.372136 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44033A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chapelle-Launay - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.972218, + 47.372136 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44033A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chapelle-Launay - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.403169, + 47.701217 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44036A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Chateaubriant - Patton", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37759, + 47.718186 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44036B", + "ref": "", + "name": "OuestCharge - Diva Sp - Chateaubriant - Motte", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37759, + 47.718186 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44036B", + "ref": "", + "name": "OuestCharge - Diva Sp - Chateaubriant - Motte", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.380766, + 47.720652 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44036C", + "ref": "", + "name": "OuestCharge - Diva Sp - Chateaubriant - Duguesclin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.380766, + 47.720652 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44036C", + "ref": "", + "name": "OuestCharge - Diva Sp - Chateaubriant - Duguesclin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.379295, + 47.712905 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44036D", + "ref": "", + "name": "OuestCharge - Diva Sp - Chateaubriant - Liberation", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.282014, + 47.085153 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44043B", + "ref": "", + "name": "OuestCharge - Diva Sp - Clisson - Lemot", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.422498, + 47.124176 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44037A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chateau-Thebaud - Prieure", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.422498, + 47.124176 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44037A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chateau-Thebaud - Prieure", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.987865, + 47.150435 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44038A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chauve - Routiere", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.987865, + 47.150435 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44038A", + "ref": "", + "name": "OuestCharge - Diva Sp - Chauve - Routiere", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61073, + 47.091867 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44041A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chevroliere - Lemaitre", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61073, + 47.091867 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44041A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chevroliere - Lemaitre", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.615587, + 47.090245 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44041B", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chevroliere - Stade", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.615587, + 47.090245 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44041B", + "ref": "", + "name": "OuestCharge - Diva Sp - La Chevroliere - Stade", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-01", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.279461, + 47.089987 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44043A", + "ref": "", + "name": "OuestCharge - Diva Sp - Clisson - Boutin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.279461, + 47.089987 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44043A", + "ref": "", + "name": "OuestCharge - Diva Sp - Clisson - Boutin", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.282014, + 47.085153 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44043B", + "ref": "", + "name": "OuestCharge - Diva Sp - Clisson - Lemot", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.337746, + 47.139538 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44117A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Pallet - Sautejeau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.340087, + 47.259812 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44132A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Pornichet - Juin 1940", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-09", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.754012, + 46.963716 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44119A", + "ref": "", + "name": "OuestCharge - Diva Sp - Paulx - Ebergement", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.385744, + 47.253189 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44169A", + "ref": "", + "name": "OuestCharge - ePremium - Saint Julien de Concelles - Heurthauds", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.808674, + 47.103256 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44186A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sainte-Pazanne - Auditoire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.812257, + 47.103159 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44186B", + "ref": "", + "name": "OuestCharge - Diva Sp - Sainte-Pazanne - Verdelet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.812257, + 47.103159 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44186B", + "ref": "", + "name": "OuestCharge - Diva Sp - Sainte-Pazanne - Verdelet", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.044815, + 47.208127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44187A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Pere-En-Retz - Marche", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.044815, + 47.208127 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44187A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Pere-En-Retz - Marche", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.643245, + 47.037744 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44188A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Philbert-De-Grand-Lieu - Jardins", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.643245, + 47.037744 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44188A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Philbert-De-Grand-Lieu - Jardins", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.640351, + 47.03601 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44188B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Philbert-De-Grand-Lieu - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-04", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.640351, + 47.03601 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44188B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Philbert-De-Grand-Lieu - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-04", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.192189, + 47.441001 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44189A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sainte-Reine-De-Bretagne - Cadou", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.192189, + 47.441001 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44189A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sainte-Reine-De-Bretagne - Cadou", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.014579, + 47.257994 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44192A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Viaud - Parc Des Sports", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.014579, + 47.257994 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44192A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Viaud - Parc Des Sports", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49881, + 47.655756 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44193A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Vincent-Des-Landes - Libération", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49881, + 47.655756 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44193A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Vincent-Des-Landes - Libération", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.672813, + 47.262506 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44194A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sautron - Bretagne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.672813, + 47.262506 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44194A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sautron - Bretagne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.938037, + 47.373695 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44195A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Savenay - Justice", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.939955, + 47.358691 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44195B", + "ref": "", + "name": "OuestCharge - Diva Sp - Savenay - Verdun", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.939955, + 47.358691 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44195B", + "ref": "", + "name": "OuestCharge - Diva Sp - Savenay - Verdun", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07738, + 47.550071 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44196A", + "ref": "", + "name": "OuestCharge - Diva Sp - Severac - Therese", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07738, + 47.550071 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44196A", + "ref": "", + "name": "OuestCharge - Diva Sp - Severac - Therese", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.590963, + 47.735648 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44197A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sion-Les-Mines - Sulpice", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.808674, + 47.103256 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44186A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sainte-Pazanne - Auditoire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.069307, + 47.642319 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44185A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Nicolas-De-Redon - Ahaut", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.069307, + 47.642319 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44185A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Nicolas-De-Redon - Ahaut", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.734586, + 47.113739 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44178A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Mars-De-Coutais - Chaponneries", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.371945, + 47.251305 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44169B", + "ref": "", + "name": "OuestCharge - ePremium - Saint Julien de Concelles - Rte du Lac", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.484521, + 47.24945 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44172A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sainte-Luce-Sur-Loire - Gaulle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.484521, + 47.24945 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44172A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sainte-Luce-Sur-Loire - Gaulle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.339434, + 47.083183 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44173A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Lumine-De-Clisson - Vignoble", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.339434, + 47.083183 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44173A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Lumine-De-Clisson - Vignoble", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.727092, + 47.055821 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44174A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Lumine-De-Coutais - Chatellier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.727092, + 47.055821 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44174A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Lumine-De-Coutais - Chatellier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.306585, + 47.399539 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44175A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Lyphard - Sainte-Anne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.306585, + 47.399539 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44175A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Lyphard - Sainte-Anne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.179806, + 47.352483 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44176A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Malo-De-Guersac - Sainte-Anne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.179806, + 47.352483 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44176A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Malo-De-Guersac - Sainte-Anne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.734586, + 47.113739 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44178A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Mars-De-Coutais - Chaponneries", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.210351, + 47.287351 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44184B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Nazaire - Gare Nord - 2", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.404951, + 47.365936 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44179A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Mars-Du-Desert - Aout 1944", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.404951, + 47.365936 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44179A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Mars-Du-Desert - Aout 1944", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-06", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.18292, + 47.523337 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44180A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Mars-La-Jaille - Neuve", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.18292, + 47.523337 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44180A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Mars-La-Jaille - Neuve", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.147443, + 47.181975 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44182A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Michel-Chef-Chef - Chevecier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.147443, + 47.181975 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44182A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Michel-Chef-Chef - Chevecier", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.425414, + 47.394709 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44183A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Molf - Sports", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.425414, + 47.394709 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44183A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Molf - Sports", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.754012, + 46.963716 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44119A", + "ref": "", + "name": "OuestCharge - Diva Sp - Paulx - Ebergement", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.210336, + 47.287378 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44184A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Nazaire - Gare Nord", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.210351, + 47.287351 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44184B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Nazaire - Gare Nord - 2", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.590963, + 47.735648 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44197A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sion-Les-Mines - Sulpice", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.305198, + 47.73678 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44199A", + "ref": "", + "name": "OuestCharge - Diva Sp - Soudan - Presbytère", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.305198, + 47.73678 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44199A", + "ref": "", + "name": "OuestCharge - Diva Sp - Soudan - Presbytère", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.430494, + 46.971725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44216A", + "ref": "", + "name": "OuestCharge - Diva Sp - Vieillevigne - Val De Loire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.268571, + 47.162907 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44212A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Vallet - Gabory", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.266139, + 47.16296 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44212B", + "ref": "", + "name": "OuestCharge - Diva Sp - Vallet - Pusterle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.266139, + 47.16296 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44212B", + "ref": "", + "name": "OuestCharge - Diva Sp - Vallet - Pusterle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.032016, + 47.386962 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44213A", + "ref": "", + "name": "OuestCharge - Diva Sp - Loireauxence - Parc", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.032016, + 47.386962 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44213A", + "ref": "", + "name": "OuestCharge - Diva Sp - Loireauxence - Parc", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.028215, + 47.468655 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44213B", + "ref": "", + "name": "OuestCharge - Diva Sp - Loireauxence - Deux Provinces", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.028215, + 47.468655 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44213B", + "ref": "", + "name": "OuestCharge - Diva Sp - Loireauxence - Deux Provinces", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.704934, + 47.554354 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44214A", + "ref": "", + "name": "OuestCharge - Diva Sp - Vay - Plesse", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.704934, + 47.554354 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44214A", + "ref": "", + "name": "OuestCharge - Diva Sp - Vay - Plesse", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.430494, + 46.971725 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44216A", + "ref": "", + "name": "OuestCharge - Diva Sp - Vieillevigne - Val De Loire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.483028, + 47.344527 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44211B", + "ref": "", + "name": "OuestCharge - eSmart - La Turballe - Trevaly", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7441279, + 47.29341 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44217A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Vigneux-De-Bretagne - Pont De Pierre", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.737473, + 47.325442 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44217B", + "ref": "", + "name": "OuestCharge - Diva Sp - Vigneux-De-Bretagne - Le Bourg", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.737473, + 47.325442 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44217B", + "ref": "", + "name": "OuestCharge - Diva Sp - Vigneux-De-Bretagne - Le Bourg", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.695545, + 47.331241 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44217C", + "ref": "", + "name": "OuestCharge - Diva Sp - Vigneux-De-Bretagne - Complexe Sportif", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.695545, + 47.331241 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44217C", + "ref": "", + "name": "OuestCharge - Diva Sp - Vigneux-De-Bretagne - Complexe Sportif", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.513712, + 47.055246 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44223A", + "ref": "", + "name": "OuestCharge - Diva Sp - Geneston - Madeleine", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.513712, + 47.055246 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44223A", + "ref": "", + "name": "OuestCharge - Diva Sp - Geneston - Madeleine", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.666373, + 47.527509 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44224A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Grigonnais - Ocean", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.666373, + 47.527509 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44224A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Grigonnais - Ocean", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.483028, + 47.344527 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44211B", + "ref": "", + "name": "OuestCharge - eSmart - La Turballe - Trevaly", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.507161, + 47.348051 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44211A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Turballe - Blanc", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.530352, + 47.342459 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44201A", + "ref": "", + "name": "OuestCharge - Diva Sp - Suce-Sur-Erdre - Europe", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.682692, + 46.901893 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44206A", + "ref": "", + "name": "OuestCharge - Diva Sp - Touvois - Charrette", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.530352, + 47.342459 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44201A", + "ref": "", + "name": "OuestCharge - Diva Sp - Suce-Sur-Erdre - Europe", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.527051, + 47.342284 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44201B", + "ref": "", + "name": "OuestCharge - Diva Sp - Suce-Sur-Erdre - Briand", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.527051, + 47.342284 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44201B", + "ref": "", + "name": "OuestCharge - Diva Sp - Suce-Sur-Erdre - Briand", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.277813, + 47.461336 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44202A", + "ref": "", + "name": "OuestCharge - Diva Sp - Teille - Romains", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.277813, + 47.461336 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44202A", + "ref": "", + "name": "OuestCharge - Diva Sp - Teille - Romains", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-07", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.792024, + 47.3281 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44203A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Temple-De-Bretagne - Girard", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.792024, + 47.3281 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44203A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Temple-De-Bretagne - Girard", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.440785, + 47.267334 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44204A", + "ref": "", + "name": "OuestCharge - Diva Sp - Thouare-Sur-Loire - Republique", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.440785, + 47.267334 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44204A", + "ref": "", + "name": "OuestCharge - Diva Sp - Thouare-Sur-Loire - Republique", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.431817, + 47.441948 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44205A", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Touches - Melaine", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.431817, + 47.441948 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44205A", + "ref": "", + "name": "OuestCharge - Diva Sp - Les Touches - Melaine", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.682692, + 46.901893 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44206A", + "ref": "", + "name": "OuestCharge - Diva Sp - Touvois - Charrette", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.507161, + 47.348051 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44211A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Turballe - Blanc", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5939858, + 47.28067 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44209A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Treillieres - Gouerie", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.621305, + 47.329273 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44209B", + "ref": "", + "name": "OuestCharge - Diva Sp - Treillieres - Mairie (68)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.621305, + 47.329273 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44209B", + "ref": "", + "name": "OuestCharge - Diva Sp - Treillieres - Mairie (68)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.626831, + 47.331215 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44209C", + "ref": "", + "name": "OuestCharge - Diva Sp - Treillieres - Mairie (5)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.626831, + 47.331215 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44209C", + "ref": "", + "name": "OuestCharge - Diva Sp - Treillieres - Mairie (5)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.200174, + 47.299795 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44210A", + "ref": "", + "name": "OuestCharge - Diva Sp - Trignac - Lagrange", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.200174, + 47.299795 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44210A", + "ref": "", + "name": "OuestCharge - Diva Sp - Trignac - Lagrange", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-21", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.187091, + 47.317501 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44210B", + "ref": "", + "name": "OuestCharge - Diva Sp - Trignac - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.187091, + 47.317501 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44210B", + "ref": "", + "name": "OuestCharge - Diva Sp - Trignac - Mairie", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.371945, + 47.251305 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44169B", + "ref": "", + "name": "OuestCharge - ePremium - Saint Julien de Concelles - Rte du Lac", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.210336, + 47.287378 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44184A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Nazaire - Gare Nord", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.385744, + 47.253189 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44169A", + "ref": "", + "name": "OuestCharge - ePremium - Saint Julien de Concelles - Heurthauds", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.335882, + 47.261013 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44132D", + "ref": "", + "name": "OuestCharge - ePremium - Pornichet - Léon Gambetta", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.097518, + 47.114189 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44131B", + "ref": "", + "name": "OuestCharge - Diva Sp - Pornic - Gaulle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10196, + 47.115941 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44131C", + "ref": "", + "name": "OuestCharge - Diva Sp - Pornic - Foch", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10196, + 47.115941 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44131C", + "ref": "", + "name": "OuestCharge - Diva Sp - Pornic - Foch", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.201325, + 47.384129 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44168A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Joachim - Potriais", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.345177, + 47.270324 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44132B", + "ref": "", + "name": "OuestCharge - Diva Sp - Pornichet - Briand", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.345177, + 47.270324 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44132B", + "ref": "", + "name": "OuestCharge - Diva Sp - Pornichet - Briand", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.317604, + 47.245187 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44132C", + "ref": "", + "name": "OuestCharge - Diva Sp - Pornichet - Violettes", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.317604, + 47.245187 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44132C", + "ref": "", + "name": "OuestCharge - Diva Sp - Pornichet - Violettes", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-06-02", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.335882, + 47.261013 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44132D", + "ref": "", + "name": "OuestCharge - ePremium - Pornichet - Léon Gambetta", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.335882, + 47.261013 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44132D", + "ref": "", + "name": "OuestCharge - ePremium - Pornichet - Léon Gambetta", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.335882, + 47.261013 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44132D", + "ref": "", + "name": "OuestCharge - ePremium - Pornichet - Léon Gambetta", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2023-04-12", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.122795, + 47.127457 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44131A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Pornic - Lisbonne", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.741972, + 47.131272 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44133A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Port-Saint-Pere - Riviere", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.750358, + 47.132868 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44133B", + "ref": "", + "name": "OuestCharge - Diva Sp - Port-Saint-Pere - Pornic", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.750358, + 47.132868 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44133B", + "ref": "", + "name": "OuestCharge - Diva Sp - Port-Saint-Pere - Pornic", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.432168, + 47.282658 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44135A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Pouliguen - Libération", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.432168, + 47.282658 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44135A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Pouliguen - Libération", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.433513, + 47.275217 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44135B", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Pouliguen - Civanam", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.433513, + 47.275217 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44135B", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Pouliguen - Civanam", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.218858, + 47.129005 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44136A", + "ref": "", + "name": "OuestCharge - Diva Sp - Prefailles - Marche", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.218858, + 47.129005 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44136A", + "ref": "", + "name": "OuestCharge - Diva Sp - Prefailles - Marche", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.097518, + 47.114189 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44131B", + "ref": "", + "name": "OuestCharge - Diva Sp - Pornic - Gaulle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-19", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.014487, + 47.362983 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44137A", + "ref": "", + "name": "OuestCharge - Diva Sp - Prinquiau - Besne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.887244, + 47.540558 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44128A", + "ref": "", + "name": "OuestCharge - Diva Sp - Plesse - Lion d'Or", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-18", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.754958, + 47.198616 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44120A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Pellerin - Sand", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.754958, + 47.198616 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44120A", + "ref": "", + "name": "OuestCharge - Diva Sp - Le Pellerin - Sand", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45349, + 47.398087 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44122A", + "ref": "", + "name": "OuestCharge - Diva Sp - Petit-Mars - Ajoncs", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45349, + 47.398087 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44122A", + "ref": "", + "name": "OuestCharge - Diva Sp - Petit-Mars - Ajoncs", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.547222, + 47.378032 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44125A", + "ref": "", + "name": "OuestCharge - Diva Sp - Piriac-Sur-Mer - Gringoire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.547222, + 47.378032 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44125A", + "ref": "", + "name": "OuestCharge - Diva Sp - Piriac-Sur-Mer - Gringoire", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.191869, + 47.136163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44126A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Plaine-Sur-Mer - Rousse", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.191869, + 47.136163 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44126A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Plaine-Sur-Mer - Rousse", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.436018, + 47.01779 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44127A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Planche - Nantes", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.436018, + 47.01779 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44127A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Planche - Nantes", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.887244, + 47.540558 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44128A", + "ref": "", + "name": "OuestCharge - Diva Sp - Plesse - Lion d'Or", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-18", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.084647, + 47.433331 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44129A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Pontchateau - Villeneuve", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09346, + 47.436521 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44129B", + "ref": "", + "name": "OuestCharge - Diva Sp - Pontchateau - Criboeuf", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09346, + 47.436521 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44129B", + "ref": "", + "name": "OuestCharge - Diva Sp - Pontchateau - Criboeuf", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.540393, + 47.112585 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44130A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Pont-Saint-Martin - Olympique", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.580587, + 47.127249 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44130B", + "ref": "", + "name": "OuestCharge - Diva Sp - Pont-Saint-Martin - Loisirs", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.580587, + 47.127249 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44130B", + "ref": "", + "name": "OuestCharge - Diva Sp - Pont-Saint-Martin - Loisirs", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.582848, + 47.123621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44130C", + "ref": "", + "name": "OuestCharge - Diva Sp - Pont-Saint-Martin - Combes", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.582848, + 47.123621 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44130C", + "ref": "", + "name": "OuestCharge - Diva Sp - Pont-Saint-Martin - Combes", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.014487, + 47.362983 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44137A", + "ref": "", + "name": "OuestCharge - Diva Sp - Prinquiau - Besne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.182186, + 47.183363 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44140A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Regrippiere - Chapelle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.196869, + 47.369918 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44160A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Gereon - Maitres", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.180168, + 47.232194 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44154D", + "ref": "", + "name": "OuestCharge - ePremium - Saint-Brevin-Les-Pins - Ocean (21)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.180168, + 47.232194 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44154D", + "ref": "", + "name": "OuestCharge - ePremium - Saint-Brevin-Les-Pins - Ocean (21)", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58056, + 47.011961 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44155A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Colomban - Gaulle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58056, + 47.011961 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44155A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Colomban - Gaulle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-27", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5765, + 46.967023 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44156A", + "ref": "", + "name": "OuestCharge - Diva Sp - Corcoue-Sur-Logne - 8 Mai", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.74289, + 46.92994 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44157A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Etienne-De-Mer-Morte - Nantes", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.74289, + 46.92994 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44157A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Etienne-De-Mer-Morte - Nantes", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.781826, + 47.277731 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44158A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Etienne-De-Montluc - Foch", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.781826, + 47.277731 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44158A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Etienne-De-Montluc - Foch", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-16", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.779158, + 47.274213 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44158B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Etienne-De-Montluc - Acigne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.779158, + 47.274213 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44158B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Etienne-De-Montluc - Acigne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-03-30", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.196869, + 47.369918 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44160A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Gereon - Maitres", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.175058, + 47.228305 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44154C", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Brevin-Les-Pins - Ocean", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.038474, + 47.517877 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44161A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Gildas-Des-Bois - Four", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.038474, + 47.517877 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44161A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Gildas-Des-Bois - Four", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.103525, + 47.384481 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44163A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Herblon - Europe", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.103525, + 47.384481 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44163A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Herblon - Europe", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.095683, + 47.406206 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44163B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Herblon - Versailles", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.095683, + 47.406206 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44163B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Herblon - Versailles", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-29", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.867052, + 47.104023 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44164A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Hilaire-De-Chaleons - Guitteny", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.182186, + 47.183363 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44140A", + "ref": "", + "name": "OuestCharge - Diva Sp - La Regrippiere - Chapelle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-20", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.308939, + 47.061157 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44165A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Hilaire-De-Clisson - Klettgau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.308939, + 47.061157 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44165A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Hilaire-De-Clisson - Klettgau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-05-03", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.201325, + 47.384129 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44168A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Joachim - Potriais", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.175058, + 47.228305 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44154C", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Brevin-Les-Pins - Ocean", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.867052, + 47.104023 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44164A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Hilaire-De-Chaleons - Guitteny", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.161966, + 47.247989 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44154B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Brevin-Les-Pins - Chassagne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.632266, + 47.123441 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44150A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Aignan-Grand-Lieu - Milenia", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-04", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.161966, + 47.247989 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44154B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Brevin-Les-Pins - Chassagne", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-15", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.376317, + 47.057271 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44142A", + "ref": "", + "name": "OuestCharge - Diva Sp - Remouille - Bosselle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.376317, + 47.057271 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44142A", + "ref": "", + "name": "OuestCharge - Diva Sp - Remouille - Bosselle", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.293884, + 47.517368 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44144A", + "ref": "", + "name": "OuestCharge - Diva Sp - Riaille - Echeveau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.293884, + 47.517368 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44144A", + "ref": "", + "name": "OuestCharge - Diva Sp - Riaille - Echeveau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-08", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.858725, + 47.186286 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44145A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Rouans - Pazanne", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.449028, + 47.783883 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44146A", + "ref": "", + "name": "OuestCharge - Diva Sp - Rouge - Vieux Rouge", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.449028, + 47.783883 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44146A", + "ref": "", + "name": "OuestCharge - Diva Sp - Rouge - Vieux Rouge", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57997, + 47.500873 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44149A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saffre - Echeveau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57997, + 47.500873 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44149A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saffre - Echeveau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-14", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5765, + 46.967023 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44156A", + "ref": "", + "name": "OuestCharge - Diva Sp - Corcoue-Sur-Logne - 8 Mai", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-26", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.632266, + 47.123441 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44150A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Aignan-Grand-Lieu - Milenia", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-04", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.486141, + 47.720665 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44153A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Aubin-Des-Chateaux - Fau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.30994, + 47.313832 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44151A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Andre-Des-Eaux - Parvis", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.163872, + 47.264783 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44154A", + "ref": "", + "name": "OuestCharge - Pulse 50 - Saint-Brevin-Les-Pins - Poincare", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "false", + "socket:type2_combo": "false", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-28", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.486141, + 47.720665 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44153A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Aubin-Des-Chateaux - Fau", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-13", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.006097, + 47.459991 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44152A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sainte-Anne-Sur-Brivet - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.006097, + 47.459991 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44152A", + "ref": "", + "name": "OuestCharge - Diva Sp - Sainte-Anne-Sur-Brivet - Eglise", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.300755, + 47.319113 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44151B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Andre-Des-Eaux - Marais", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.300755, + 47.319113 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44151B", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Andre-Des-Eaux - Marais", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-23", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.30994, + 47.313832 + ] + }, + "properties": { + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "ref:EU:EVSE": "FRS44P44151A", + "ref": "", + "name": "OuestCharge - Diva Sp - Saint-Andre-Des-Eaux - Parvis", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-04-22", + "note": "", + "source:date": "2023-06-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8531, + 48.8413 + ] + }, + "properties": { + "operator": "Daltoner Vire", + "owner:ref:FR:SIREN": "452522204", + "email": "denis.lot@daltoner.fr", + "phone": "0608471175", + "network": "Daltoner", + "ref:EU:EVSE": "Non concerné", + "ref": "78219588-3e13-4afd-9f82-4941dc515e80", + "name": "Daltoner Vire", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-26", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture", + "source:date": "2022-01-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4245618642693594, + 46.123436402688206 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "480339068", + "email": "benoit.denjean0121@orange.fr", + "phone": "", + "network": "Réseau de charge 17 BOULEVARD CARNOT 03200 VICHY", + "ref:EU:EVSE": "Non concerné", + "ref": "", + "name": "Parking Hotel KYRIAD Vichy", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-27", + "note": "Rechargement uniquement disponible aux clients de l'Hôtel KYRIAD VICHY", + "source:date": "2022-01-27", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.72, + 48.6122 + ] + }, + "properties": { + "operator": "ICS Scgilthigheim", + "owner:ref:FR:SIREN": "310336367", + "email": "info@ics-sa.com", + "phone": "0390202636", + "network": "ICS Schiltigheim", + "ref:EU:EVSE": "Non concerné", + "ref": "1b10ea6e-c5c9-46ca-81c0-4b6e16aa4098", + "name": "Parking ICS Schiltigheim", + "capacity": "4", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-20", + "note": "", + "source:date": "2021-12-20", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0769923, + 47.3512055 + ] + }, + "properties": { + "operator": "FReshmile", + "owner:ref:FR:SIREN": "015450596", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "KEOLIS", + "ref:EU:EVSE": "FRFR1EUVMW", + "ref": "FR*FR1*EUVMW", + "name": "KEOLIS DIJON", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-01-27", + "note": "", + "source:date": "2021-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3900578, + 49.0368902 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "716980297", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "E.LECLERC", + "ref:EU:EVSE": "FRLE2EDGSS1", + "ref": "FRLE2EDGSS1", + "name": "CHATEAU THIERRY", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-01", + "note": "", + "source:date": "2022-02-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0936, + 49.1281 + ] + }, + "properties": { + "operator": "Ambroise Avocat", + "owner:ref:FR:SIREN": "810880088", + "email": "karine.ambroise@ambroise-avocat.fr", + "phone": "0688405729", + "network": "Ambroise avocat", + "ref:EU:EVSE": "Non concerné", + "ref": "c47a96e0-8457-4f87-b3a5-69b8647c1ed1", + "name": "Ambroise Avocat", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-28", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture", + "source:date": "2022-01-28", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3003961423287695, + 45.76011619906451 + ] + }, + "properties": { + "operator": "Non concerné", + "owner:ref:FR:SIREN": "812067841", + "email": "lodgesdureynou@gmail.com", + "phone": "Non concerné", + "network": "Non concerné", + "ref:EU:EVSE": "Non concerné", + "ref": "LESLODGESDUREYNOU", + "name": "PARKING", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "True", + "authentication:none": "False", + "payment:credit_cards": "False", + "reservation": "True", + "wheelchair": "Réservé PMR", + "start_date": "2021-08-01", + "note": "Non concerné", + "source:date": "2022-01-31", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3751, + 49.1485 + ] + }, + "properties": { + "operator": "Daltoner Caen", + "owner:ref:FR:SIREN": "751925579", + "email": "denis.lot@daltoner.fr", + "phone": "0608471175", + "network": "Daltoner Caen", + "ref:EU:EVSE": "Non concerné", + "ref": "28f4cde6-de43-434f-806c-4d09b2b930e3", + "name": "Daltoner Caen", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-26", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture", + "source:date": "2022-01-26", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7421819, + 45.979448 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "877596866", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "PARC LAGUNE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0128", + "name": "LAGUNE SUD DRC", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "SO", + "source:date": "2022-02-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7421819, + 45.979448 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "877596866", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "PARC LAGUNE SUD", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0127", + "name": "LAGUNE SUD DRC", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "SO", + "source:date": "2022-02-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.102562200000012, + 50.778986100000004 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "401833322", + "email": "contact@manubob-industrie.fr", + "phone": "", + "network": "MANUBOB", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P21211626", + "name": "Parking MANUBOB", + "capacity": "2", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-31", + "note": "", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.102562200000012, + 50.778986100000004 + ] + }, + "properties": { + "operator": "", + "owner:ref:FR:SIREN": "401833322", + "email": "contact@manubob-industrie.fr", + "phone": "", + "network": "MANUBOB", + "ref:EU:EVSE": "Non concerné", + "ref": "EVB-P21211626", + "name": "Parking MANUBOB", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-31", + "note": "", + "source:date": "2022-02-02", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24, + 48.94 + ] + }, + "properties": { + "operator": "themis", + "owner:ref:FR:SIREN": "339625477", + "email": "ssznek@themis-experts.com", + "phone": "0662093978", + "network": "edf", + "ref:EU:EVSE": "FRA68P68021001", + "ref": "c8ee7876-9261-497e-9f6b-856d3bf94e3f", + "name": "ARGENTEUIL", + "capacity": "3", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-11-25", + "note": "", + "source:date": "2022-02-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.501248, + 43.300038 + ] + }, + "properties": { + "operator": "LEGA", + "owner:ref:FR:SIREN": "881418917", + "email": "contact@greenhomeimmobilier.fr", + "phone": "", + "network": "Securecharge", + "ref:EU:EVSE": "Non concerné", + "ref": "Securecharge-GrHoMar-CC-1", + "name": "Securecharge Green Home Immobilier Camoins", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "true", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-13", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'agence et réservée à la clientèle, badge à demander à l'accueil", + "source:date": "2022-02-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.501248, + 43.300038 + ] + }, + "properties": { + "operator": "LEGA", + "owner:ref:FR:SIREN": "881418917", + "email": "contact@greenhomeimmobilier.fr", + "phone": "", + "network": "Securecharge", + "ref:EU:EVSE": "Non concerné", + "ref": "Securecharge-GrHoMar-CC-1", + "name": "Securecharge Green Home Immobilier Camoins", + "capacity": "2", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "false", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-01-13", + "note": "Recharge uniquement disponible pendant les horaires d'ouverture de l'agence et réservée à la clientèle, badge à demander à l'accueil", + "source:date": "2022-02-05", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.1, + 43.72 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEFLOREAL11", + "ref": "651b5aa1-1762-4c01-82e4-6572c740945c", + "name": "PARKING FLOREAL ", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-16", + "note": "", + "source:date": "2022-02-18", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.13, + 43.68 + ] + }, + "properties": { + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref:EU:EVSE": "FRLUMEBASTIDEVENCE1", + "ref": "f77e415b-bcf9-4b98-923e-c2d6202963f4", + "name": "BASTIDE SAINT PAUL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-12-09", + "note": "", + "source:date": "2022-02-22", + "socket:type2_cable": "" + } + }, { "type": "Feature", "geometry": { @@ -6256,6 +1473832,51108 @@ "source:date": "2022-02-09", "socket:type2_cable": "" } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.207246, + 50.68494 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Camaïeu France", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "ref": "", + "name": "CAMAÏEU FRANCE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.798854, + 48.841032 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Acelec", + "ref:EU:EVSE": "FR073P777022", + "ref": "", + "name": "Parking Acelec", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-30", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.798854, + 48.841032 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Acelec", + "ref:EU:EVSE": "FR073P777022", + "ref": "", + "name": "Parking Acelec", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-04-30", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.207433, + 50.684876 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Camaïeu France", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "ref": "", + "name": "CAMAÏEU FRANCE", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.207433, + 50.684876 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Camaïeu France", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "ref": "", + "name": "CAMAÏEU FRANCE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.20737, + 50.684898 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Camaïeu France", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "ref": "", + "name": "CAMAÏEU FRANCE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.20737, + 50.684898 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Camaïeu France", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "ref": "", + "name": "CAMAÏEU FRANCE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.207306, + 50.684918 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Camaïeu France", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "ref": "", + "name": "CAMAÏEU FRANCE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.207306, + 50.684918 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Camaïeu France", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "ref": "", + "name": "CAMAÏEU FRANCE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.207246, + 50.68494 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Camaïeu France", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "ref": "", + "name": "CAMAÏEU FRANCE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.207187, + 50.684964 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Camaïeu France", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "ref": "", + "name": "CAMAÏEU FRANCE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.206962, + 50.685049 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Camaïeu France", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "ref": "", + "name": "CAMAÏEU FRANCE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.207187, + 50.684964 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Camaïeu France", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "ref": "", + "name": "CAMAÏEU FRANCE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212336, + 48.931356 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "HOTEL KYRIAD PARIS BEZONS", + "ref:EU:EVSE": "FR073PKYRIADBEZONS", + "ref": "", + "name": "HOTEL KYRIAD PARIS BEZONS", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.206962, + 50.685049 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Camaïeu France", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "ref": "", + "name": "CAMAÏEU FRANCE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212311, + 48.931373 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "HOTEL KYRIAD PARIS BEZONS", + "ref:EU:EVSE": "FR073PKYRIADBEZONS", + "ref": "", + "name": "HOTEL KYRIAD PARIS BEZONS", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-05-31", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.207047, + 50.685013 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Camaïeu France", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "ref": "", + "name": "CAMAÏEU FRANCE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.207047, + 50.685013 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Camaïeu France", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "ref": "", + "name": "CAMAÏEU FRANCE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.207124, + 50.684984 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Camaïeu France", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "ref": "", + "name": "CAMAÏEU FRANCE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.207124, + 50.684984 + ] + }, + "properties": { + "operator": "Acelec Charge", + "owner:ref:FR:SIREN": "301192464", + "email": "acelec@acelec-france.com", + "phone": "01 81 73 03 50", + "network": "Camaïeu France", + "ref:EU:EVSE": "FR073PCAMAIEUFR", + "ref": "", + "name": "CAMAÏEU FRANCE", + "capacity": "1", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "false", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-07-12", + "note": "Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....", + "source:date": "2022-07-21", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2199154, + 44.1203594 + ] + }, + "properties": { + "operator": "MAS DES OLIVES", + "owner:ref:FR:SIREN": "834246738", + "email": "info@masdesolives.com", + "phone": "0490673411", + "network": "MAS DES OLIVES", + "ref:EU:EVSE": "FRA68P6821001", + "ref": "3b6d5b9c-4bc8-4daa-aeb8-ba09fdddb6d1", + "name": "Mas des OLIVES 1", + "capacity": "1", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2021-07-16", + "note": "Recharge uniquement destinée aux clients du Mas.", + "source:date": "2022-02-11", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1928184, + 48.7571171 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "513254920", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "E.LECLERC", + "ref:EU:EVSE": "FRLE2EDWKL1", + "ref": "FRLE2EDWKL1", + "name": "BAR LE DUC", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2021-10-28", + "note": "", + "source:date": "2022-02-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2566243, + 48.9565006 + ] + }, + "properties": { + "operator": "Freshmile", + "owner:ref:FR:SIREN": "338980675", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "HYUNDAI", + "ref:EU:EVSE": "FRFR1EVSFB1", + "ref": "FRFR1EVSFB1", + "name": "ARGENTEUIL", + "capacity": "2", + "socket:typee": "false", + "socket:type2": "true", + "socket:type2_combo": "true", + "socket:chademo": "true", + "fee": "false", + "authentication:none": "false", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessibilité inconnue", + "start_date": "2022-02-01", + "note": "", + "source:date": "2022-02-16", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7352, + 45.8414 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "451766877", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "PARC BOIS DIEU", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0134", + "name": "BOIS DIEU LES LYS 8", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "SO", + "source:date": "2022-02-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7352, + 45.8414 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "451766877", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "PARC BOIS DIEU", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0133", + "name": "BOIS DIEU LES LYS 8", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-23", + "note": "SO", + "source:date": "2022-02-24", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.715638, + 45.976484 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "451766877", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "PARC DEPAGNEUX", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0136", + "name": "PARC DEPAGNEUX", + "capacity": "1", + "socket:typee": "0", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "SO", + "source:date": "2022-02-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.715638, + 45.976484 + ] + }, + "properties": { + "operator": "MEA ENERGIES", + "owner:ref:FR:SIREN": "451766877", + "email": "contact@meaenergies.com", + "phone": "0428704850", + "network": "PARC DEPAGNEUX", + "ref:EU:EVSE": "Non concerné", + "ref": "FRECN0135", + "name": "PARC DEPAGNEUX", + "capacity": "2", + "socket:typee": "1", + "socket:type2": "1", + "socket:type2_combo": "0", + "socket:chademo": "0", + "fee": "0", + "authentication:none": "1", + "payment:credit_cards": "0", + "reservation": "0", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2022-02-21", + "note": "SO", + "source:date": "2022-02-22", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.074257, + 45.720859 + ] + }, + "properties": { + "operator": "Aeroports de lyon", + "owner:ref:FR:SIREN": "493425136", + "email": "christophe.langlet@lyonaeroports.com", + "phone": "", + "network": "ADL", + "ref:EU:EVSE": "Non concerné", + "ref": "01FHZ1QMY4JSFE6G7VES2794BC", + "name": "Parking P4 électrique ", + "capacity": "8", + "socket:typee": "true", + "socket:type2": "true", + "socket:type2_combo": "false", + "socket:chademo": "false", + "fee": "false", + "authentication:none": "true", + "payment:credit_cards": "true", + "reservation": "true", + "wheelchair": "Accessible mais non réservé PMR", + "start_date": "2017-02-01", + "note": "Le P4 électrique est accessible par réservation sur le site https://store.lyonaeroports.com/ et se situe dans le parking P4 face à la Gare et à proximité des Terminaux. Câble adaptateur à apporter par l'utilisateur.", + "source:date": "2021-10-14", + "socket:type2_cable": "" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.263228, + 49.851053 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814563", + "name": "BornEco/646759c62f5a364fea25cae4", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.263228, + 49.851053 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814563", + "name": "BornEco/646759c62f5a364fea25cae4", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.877256, + 45.734166 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787236", + "name": "WAAT/FRWATLCEGW9FHJ", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.119464, + 44.612295 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "767193", + "name": "WAAT/FRWATL365YTXZ2", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.119464, + 44.612295 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "767193", + "name": "WAAT/FRWATL365YTXZ2", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114309, + 49.053385 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "694028", + "name": "WAAT/FRWATL4TDE07E3", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-06", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114309, + 49.053385 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "694028", + "name": "WAAT/FRWATL4TDE07E3", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-06", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114309, + 49.053385 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "694028", + "name": "WAAT/FRWATL4TDE07E3", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-06", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114309, + 49.053385 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "694028", + "name": "WAAT/FRWATL4TDE07E3", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-06", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114309, + 49.053385 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "694028", + "name": "WAAT/FRWATL4TDE07E3", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-06", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.442532, + 44.46386 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805269", + "name": "WAAT/FRWATL9WB3NTKX", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.877256, + 45.734166 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787236", + "name": "WAAT/FRWATLCEGW9FHJ", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.877256, + 45.734166 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787236", + "name": "WAAT/FRWATLCEGW9FHJ", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.442932, + 43.78694 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "593321", + "name": "CARF - Bornes Publiques/31B87691-9930-4034-AF37-E159F2AB1A15", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-25", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.877256, + 45.734166 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787236", + "name": "WAAT/FRWATLCEGW9FHJ", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.877256, + 45.734166 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787236", + "name": "WAAT/FRWATLCEGW9FHJ", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.877256, + 45.734166 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787236", + "name": "WAAT/FRWATLCEGW9FHJ", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.741735, + 43.866454 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805275", + "name": "WAAT/FRWATLDGCQPXGA", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.741735, + 43.866454 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805275", + "name": "WAAT/FRWATLDGCQPXGA", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.741735, + 43.866454 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805275", + "name": "WAAT/FRWATLDGCQPXGA", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.741735, + 43.866454 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805275", + "name": "WAAT/FRWATLDGCQPXGA", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.260587, + 50.739646 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "754344", + "name": "WAAT/FRWATLHA4GJSH7", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.260587, + 50.739646 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "754344", + "name": "WAAT/FRWATLHA4GJSH7", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.982722, + 43.908974 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805230", + "name": "WAAT/FRWA3LXQI8OSF8", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.269004, + 43.235422 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781569", + "name": "WAAT/FRWA3LVVBXXA2A", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.269004, + 43.235422 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781569", + "name": "WAAT/FRWA3LVVBXXA2A", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.269004, + 43.235422 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781569", + "name": "WAAT/FRWA3LVVBXXA2A", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.199395, + 46.208436 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805320", + "name": "WAAT/FRWATLU8IG97QI", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.199395, + 46.208436 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805320", + "name": "WAAT/FRWATLU8IG97QI", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70452, + 45.821636 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789204", + "name": "WAAT/FRWATLWMOLK9ZO", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70452, + 45.821636 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789204", + "name": "WAAT/FRWATLWMOLK9ZO", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.7358, + 43.424749 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781632", + "name": "WAAT/FRWATLZ1BXASBN", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361202, + 50.992742 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735843", + "name": "WAAT/FRWATLZUFGRAWI", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361202, + 50.992742 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735843", + "name": "WAAT/FRWATLZUFGRAWI", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.662712, + 44.952304 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815388", + "name": "WAAT/FRWA3L0DARYOWZ", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706151", + "name": "WAAT/FRWA3L4LT05MMW", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706151", + "name": "WAAT/FRWA3L4LT05MMW", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706151", + "name": "WAAT/FRWA3L4LT05MMW", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706151", + "name": "WAAT/FRWA3L4LT05MMW", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706151", + "name": "WAAT/FRWA3L4LT05MMW", + "capacity": "10", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706151", + "name": "WAAT/FRWA3L4LT05MMW", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706151", + "name": "WAAT/FRWA3L4LT05MMW", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706151", + "name": "WAAT/FRWA3L4LT05MMW", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706151", + "name": "WAAT/FRWA3L4LT05MMW", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706151", + "name": "WAAT/FRWA3L4LT05MMW", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.269004, + 43.235422 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781569", + "name": "WAAT/FRWA3LVVBXXA2A", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.421482, + 48.664224 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "694034", + "name": "WAAT/FRWATLHW9HHL6J", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-06", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.421482, + 48.664224 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "694034", + "name": "WAAT/FRWATLHW9HHL6J", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-06", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.982861, + 43.909011 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805278", + "name": "WAAT/FRWATLIJ81VEGA", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.252902, + 43.349417 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805302", + "name": "WAAT/FRWATLP3I0JRDJ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.065185, + 44.318093 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805308", + "name": "WAAT/FRWATLQ45BBS3W", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805311", + "name": "WAAT/FRWATLQMISHJOQ", + "capacity": "9", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805311", + "name": "WAAT/FRWATLQMISHJOQ", + "capacity": "9", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805311", + "name": "WAAT/FRWATLQMISHJOQ", + "capacity": "9", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805311", + "name": "WAAT/FRWATLQMISHJOQ", + "capacity": "9", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805311", + "name": "WAAT/FRWATLQMISHJOQ", + "capacity": "9", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805311", + "name": "WAAT/FRWATLQMISHJOQ", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805311", + "name": "WAAT/FRWATLQMISHJOQ", + "capacity": "9", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805311", + "name": "WAAT/FRWATLQMISHJOQ", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805311", + "name": "WAAT/FRWATLQMISHJOQ", + "capacity": "9", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.108344, + 47.997848 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789174", + "name": "WAAT/FRWATLTSIBFXH3", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.738868, + 43.435307 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805338", + "name": "WAAT/FRWATLWAQMIISB", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.741422, + 43.866041 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805341", + "name": "WAAT/FRWATLWNY7CEGC", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.741422, + 43.866041 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805341", + "name": "WAAT/FRWATLWNY7CEGC", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.125582, + 47.277542 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735840", + "name": "WAAT/FRWATLZTZBPSJ2", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.125582, + 47.277542 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735840", + "name": "WAAT/FRWATLZTZBPSJ2", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.777916, + 44.826052 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789192", + "name": "WAAT/FRWATLJBYV94DZ", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.777916, + 44.826052 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789192", + "name": "WAAT/FRWATLJBYV94DZ", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.058135, + 48.783543 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "699635", + "name": "WAAT/FRWATLLGFUACQZ", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.065185, + 44.318093 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805308", + "name": "WAAT/FRWATLQ45BBS3W", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.252902, + 43.349417 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805302", + "name": "WAAT/FRWATLP3I0JRDJ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.485094, + 48.401232 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735822", + "name": "WAAT/FRWATLIKFFCFDA", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.252902, + 43.349417 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805302", + "name": "WAAT/FRWATLP3I0JRDJ", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.485094, + 48.401232 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735822", + "name": "WAAT/FRWATLIKFFCFDA", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.115492, + 45.800386 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735828", + "name": "WAAT/FRWATLJ6DJ2DQQ", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.115492, + 45.800386 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735828", + "name": "WAAT/FRWATLJ6DJ2DQQ", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.115492, + 45.800386 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735828", + "name": "WAAT/FRWATLJ6DJ2DQQ", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.115492, + 45.800386 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735828", + "name": "WAAT/FRWATLJ6DJ2DQQ", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.115492, + 45.800386 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735828", + "name": "WAAT/FRWATLJ6DJ2DQQ", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.115492, + 45.800386 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735828", + "name": "WAAT/FRWATLJ6DJ2DQQ", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.115492, + 45.800386 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735828", + "name": "WAAT/FRWATLJ6DJ2DQQ", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.115492, + 45.800386 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735828", + "name": "WAAT/FRWATLJ6DJ2DQQ", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.115492, + 45.800386 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735828", + "name": "WAAT/FRWATLJ6DJ2DQQ", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.115492, + 45.800386 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735828", + "name": "WAAT/FRWATLJ6DJ2DQQ", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.34728, + 47.690076 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735831", + "name": "WAAT/FRWATLJ8V5JVAV", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.76877, + 43.650773 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "694037", + "name": "WAAT/FRWATLJJ6GOXB0", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-06", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.76877, + 43.650773 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "694037", + "name": "WAAT/FRWATLJJ6GOXB0", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-06", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.490479, + 43.388125 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735834", + "name": "WAAT/FRWATLLCRZAMHN", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.490479, + 43.388125 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735834", + "name": "WAAT/FRWATLLCRZAMHN", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.614433, + 44.20859 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789198", + "name": "WAAT/FRWATLMQIZAYF7", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.44395, + 44.464 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805299", + "name": "WAAT/FRWATLNTFIXJVC", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.252902, + 43.349417 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA3", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805302", + "name": "WAAT/FRWATLP3I0JRDJ", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.828952, + 43.641184 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789201", + "name": "WAAT/FRWATLU6EPPEKV", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.828952, + 43.641184 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789201", + "name": "WAAT/FRWATLU6EPPEKV", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.199395, + 46.208436 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805305", + "name": "WAAT/FRWATLPQZUYHB9", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09328, + 50.58254 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "EVzen", + "ref:EU:EVSE": "Non concerné", + "ref": "810081", + "name": "EVzen/8b973959-fcf0-48e0-b422-6db07418134c", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09328, + 50.58254 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "EVzen", + "ref:EU:EVSE": "Non concerné", + "ref": "810081", + "name": "EVzen/8b973959-fcf0-48e0-b422-6db07418134c", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.683944, + 44.405045 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "EVzen", + "ref:EU:EVSE": "Non concerné", + "ref": "837012", + "name": "EVzen/6ba8d5e0-b89a-4577-8b26-28720e329b80", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.683944, + 44.405045 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "EVzen", + "ref:EU:EVSE": "Non concerné", + "ref": "837012", + "name": "EVzen/6ba8d5e0-b89a-4577-8b26-28720e329b80", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.683944, + 44.405045 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "EVzen", + "ref:EU:EVSE": "Non concerné", + "ref": "837012", + "name": "EVzen/6ba8d5e0-b89a-4577-8b26-28720e329b80", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.616902, + 44.674677 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "EVzen", + "ref:EU:EVSE": "Non concerné", + "ref": "789690", + "name": "EVzen/6ad8a99c-3b52-4731-85ca-2287e79d38d9", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.616902, + 44.674677 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "EVzen", + "ref:EU:EVSE": "Non concerné", + "ref": "789690", + "name": "EVzen/6ad8a99c-3b52-4731-85ca-2287e79d38d9", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.616902, + 44.674677 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "EVzen", + "ref:EU:EVSE": "Non concerné", + "ref": "789690", + "name": "EVzen/6ad8a99c-3b52-4731-85ca-2287e79d38d9", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.949694, + 43.634486 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "EVzen", + "ref:EU:EVSE": "Non concerné", + "ref": "544793", + "name": "EVzen/312557b1-5a81-4247-9d9b-1eefca4ad7d0", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-14", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.949694, + 43.634486 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "EVzen", + "ref:EU:EVSE": "Non concerné", + "ref": "544793", + "name": "EVzen/312557b1-5a81-4247-9d9b-1eefca4ad7d0", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-14", + "socket:type2_cable": "True" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0959, + 43.000297 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "EVzen", + "ref:EU:EVSE": "Non concerné", + "ref": "789687", + "name": "EVzen/10508f61-0c35-4b1b-bc5e-e72c54de927d", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0959, + 43.000297 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "EVzen", + "ref:EU:EVSE": "Non concerné", + "ref": "789687", + "name": "EVzen/10508f61-0c35-4b1b-bc5e-e72c54de927d", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0959, + 43.000297 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "EVzen", + "ref:EU:EVSE": "Non concerné", + "ref": "789687", + "name": "EVzen/10508f61-0c35-4b1b-bc5e-e72c54de927d", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.147713, + 43.328661 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "EVzen", + "ref:EU:EVSE": "Non concerné", + "ref": "771717", + "name": "EVzen/0da11575-ea62-47e1-be6f-247316d0fcbf", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.147713, + 43.328661 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "EVzen", + "ref:EU:EVSE": "Non concerné", + "ref": "771717", + "name": "EVzen/0da11575-ea62-47e1-be6f-247316d0fcbf", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-09", + "socket:type2_cable": "True" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.263228, + 49.851053 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814563", + "name": "BornEco/646759c62f5a364fea25cae4", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.263228, + 49.851053 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814563", + "name": "BornEco/646759c62f5a364fea25cae4", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.263228, + 49.851053 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814563", + "name": "BornEco/646759c62f5a364fea25cae4", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.263228, + 49.851053 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814563", + "name": "BornEco/646759c62f5a364fea25cae4", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.263228, + 49.851053 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814563", + "name": "BornEco/646759c62f5a364fea25cae4", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09328, + 50.58254 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "EVzen", + "ref:EU:EVSE": "Non concerné", + "ref": "810081", + "name": "EVzen/8b973959-fcf0-48e0-b422-6db07418134c", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.507033, + 43.775118 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "377772", + "name": "CARF - Bornes Publiques/0246A32B-4DA5-45F3-83CD-58BBBA40C570", + "capacity": "8", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "True", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.64867, + 47.64051 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "804474", + "name": "BornEco/646b92c12f5a364fea4ba42c", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.507033, + 43.775118 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "377772", + "name": "CARF - Bornes Publiques/0246A32B-4DA5-45F3-83CD-58BBBA40C570", + "capacity": "8", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "True", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.414438, + 43.941508 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590672", + "name": "CARF - Bornes Publiques/30863A27-91A6-40AA-9C8C-2A08ADC581E5", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-25", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.414438, + 43.941508 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590672", + "name": "CARF - Bornes Publiques/30863A27-91A6-40AA-9C8C-2A08ADC581E5", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-25", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.414438, + 43.941508 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590672", + "name": "CARF - Bornes Publiques/30863A27-91A6-40AA-9C8C-2A08ADC581E5", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-25", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.47374, + 43.758054 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674639", + "name": "CARF - Bornes Publiques/25F18F8B-FED0-497F-9D7D-71FEF99B4A70", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.47374, + 43.758054 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674639", + "name": "CARF - Bornes Publiques/25F18F8B-FED0-497F-9D7D-71FEF99B4A70", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.42744, + 43.745292 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674339", + "name": "CARF - Bornes Publiques/1e51511b-9531-42b9-a289-d22cf5984e15", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.42744, + 43.745292 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674339", + "name": "CARF - Bornes Publiques/1e51511b-9531-42b9-a289-d22cf5984e15", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.472565, + 43.833315 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "683231", + "name": "CARF - Bornes Publiques/1FE96331-2018-4918-AA44-11F7900143C8", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.472565, + 43.833315 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "683231", + "name": "CARF - Bornes Publiques/1FE96331-2018-4918-AA44-11F7900143C8", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.438363, + 43.751828 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "683228", + "name": "CARF - Bornes Publiques/170A9812-9FD4-4F8A-85EA-C6C26D275BAA", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.438363, + 43.751828 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "683228", + "name": "CARF - Bornes Publiques/170A9812-9FD4-4F8A-85EA-C6C26D275BAA", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.44416, + 43.88006 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "626567", + "name": "CARF - Bornes Publiques/0B1B7295-2206-42B1-8951-22521F6E8E76", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-18", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.44416, + 43.88006 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "626567", + "name": "CARF - Bornes Publiques/0B1B7295-2206-42B1-8951-22521F6E8E76", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-18", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.499757, + 43.773746 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "683225", + "name": "CARF - Bornes Publiques/07A6ED91-C96F-4871-AC56-6982896A4AA0", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.499757, + 43.773746 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "683225", + "name": "CARF - Bornes Publiques/07A6ED91-C96F-4871-AC56-6982896A4AA0", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.51395, + 43.936804 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "593318", + "name": "CARF - Bornes Publiques/02D28A55-8180-4EE2-967B-C4DE85CE8DE6", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-25", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.51395, + 43.936804 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "593318", + "name": "CARF - Bornes Publiques/02D28A55-8180-4EE2-967B-C4DE85CE8DE6", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-25", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.507033, + 43.775118 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "377772", + "name": "CARF - Bornes Publiques/0246A32B-4DA5-45F3-83CD-58BBBA40C570", + "capacity": "8", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "True", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.507033, + 43.775118 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "377772", + "name": "CARF - Bornes Publiques/0246A32B-4DA5-45F3-83CD-58BBBA40C570", + "capacity": "8", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "True", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.263228, + 49.851053 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814563", + "name": "BornEco/646759c62f5a364fea25cae4", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.589693, + 47.258202 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814566", + "name": "BornEco/6474832b8d6bd3eb6ee52754", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.085901, + 43.219426 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781608", + "name": "WAAT/FRWATLOUB3BEXJ", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.488524, + 43.304792 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787233", + "name": "WAAT/FRWATL9LISADHP", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.488524, + 43.304792 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787233", + "name": "WAAT/FRWATL9LISADHP", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.488524, + 43.304792 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787233", + "name": "WAAT/FRWATL9LISADHP", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.704835, + 45.821472 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "501567", + "name": "WAAT/FRWATLCJ2HIM97", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.704835, + 45.821472 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "501567", + "name": "WAAT/FRWATLCJ2HIM97", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.899922, + 43.602172 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789186", + "name": "WAAT/FRWATLEQGCOCFA", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.899922, + 43.602172 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789186", + "name": "WAAT/FRWATLEQGCOCFA", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265873, + 50.728719 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706625", + "name": "WAAT/FRWATLGDWONW24", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265873, + 50.728719 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706625", + "name": "WAAT/FRWATLGDWONW24", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265873, + 50.728719 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706625", + "name": "WAAT/FRWATLGDWONW24", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265873, + 50.728719 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706625", + "name": "WAAT/FRWATLGDWONW24", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265873, + 50.728719 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706625", + "name": "WAAT/FRWATLGDWONW24", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265873, + 50.728719 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706625", + "name": "WAAT/FRWATLGDWONW24", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.693295, + 45.147098 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706628", + "name": "WAAT/FRWATLGJV62IQI", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.693295, + 45.147098 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706628", + "name": "WAAT/FRWATLGJV62IQI", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.828941, + 43.641247 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789189", + "name": "WAAT/FRWATLH1F9FFEY", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.722984, + 48.650454 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781599", + "name": "WAAT/FRWATLILRHEXW5", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.349162, + 51.032636 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735825", + "name": "WAAT/FRWATLIS4PZGPB", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.349162, + 51.032636 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735825", + "name": "WAAT/FRWATLIS4PZGPB", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.349162, + 51.032636 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735825", + "name": "WAAT/FRWATLIS4PZGPB", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.488524, + 43.304792 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787233", + "name": "WAAT/FRWATL9LISADHP", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.262325, + 50.738815 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "735816", + "name": "WAAT/FRWATL8PFXXQHG", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.589693, + 47.258202 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814566", + "name": "BornEco/6474832b8d6bd3eb6ee52754", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.852161, + 50.93186 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789165", + "name": "WAAT/FRWA1L4SW8KJ4T", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.589693, + 47.258202 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814566", + "name": "BornEco/6474832b8d6bd3eb6ee52754", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.589693, + 47.258202 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814566", + "name": "BornEco/6474832b8d6bd3eb6ee52754", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.575791, + 48.605656 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814569", + "name": "BornEco/6475e8a78d6bd3eb6ef39f0e", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.430718, + 44.968101 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814572", + "name": "BornEco/647774ed14343644885a1bcc", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.430718, + 44.968101 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814572", + "name": "BornEco/647774ed14343644885a1bcc", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.305931, + 48.801119 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*W10", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "800076", + "name": "WAAT/FRWATL1FIWWJ0F", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.699498, + 45.189336 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*W11", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789183", + "name": "WAAT/FRWA3L9HKFTGHQ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.699498, + 45.189336 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*W11", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789183", + "name": "WAAT/FRWA3L9HKFTGHQ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.699498, + 45.189336 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*W11", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789183", + "name": "WAAT/FRWA3L9HKFTGHQ", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.699498, + 45.189336 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*W11", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789183", + "name": "WAAT/FRWA3L9HKFTGHQ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.148137, + 48.782566 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*W11", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805224", + "name": "WAAT/FRWA3LACEI3U1T", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.148137, + 48.782566 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*W11", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805224", + "name": "WAAT/FRWA3LACEI3U1T", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.148137, + 48.782566 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*W11", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805224", + "name": "WAAT/FRWA3LACEI3U1T", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.148137, + 48.782566 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*W11", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805224", + "name": "WAAT/FRWA3LACEI3U1T", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.402481, + 43.7514 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*W11", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "756624", + "name": "WAAT/FRWATL2L69NXHS", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.402481, + 43.7514 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*W11", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "756624", + "name": "WAAT/FRWATL2L69NXHS", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842909, + 43.925778 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*W11", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "767202", + "name": "WAAT/FRWATLLJARIKGX", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842909, + 43.925778 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*W11", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "767202", + "name": "WAAT/FRWATLLJARIKGX", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.852161, + 50.93186 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA1", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789165", + "name": "WAAT/FRWA1L4SW8KJ4T", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.058135, + 48.783543 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "699635", + "name": "WAAT/FRWATLLGFUACQZ", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.058135, + 48.783543 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "699635", + "name": "WAAT/FRWATLLGFUACQZ", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.058135, + 48.783543 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "699635", + "name": "WAAT/FRWATLLGFUACQZ", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.718671, + 44.910302 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805242", + "name": "WAAT/FRWA6LH1WMDEXK", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.718671, + 44.910302 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805242", + "name": "WAAT/FRWA6LH1WMDEXK", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.969107, + 43.558484 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815412", + "name": "WAAT/FRWA6LIKKXYLUI", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.969107, + 43.558484 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815412", + "name": "WAAT/FRWA6LIKKXYLUI", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.969107, + 43.558484 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815412", + "name": "WAAT/FRWA6LIKKXYLUI", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.969107, + 43.558484 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815412", + "name": "WAAT/FRWA6LIKKXYLUI", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045402, + 43.430777 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "754329", + "name": "WAAT/FRWA6LJFHGOAAP", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045402, + 43.430777 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "754329", + "name": "WAAT/FRWA6LJFHGOAAP", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.032891, + 50.981771 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787227", + "name": "WAAT/FRWA6LJFZIEVZE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.032891, + 50.981771 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787227", + "name": "WAAT/FRWA6LJFZIEVZE", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.032891, + 50.981771 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787227", + "name": "WAAT/FRWA6LJFZIEVZE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.032891, + 50.981771 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787227", + "name": "WAAT/FRWA6LJFZIEVZE", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912361, + 49.169977 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805245", + "name": "WAAT/FRWA6LKWXGSRJD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912361, + 49.169977 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805245", + "name": "WAAT/FRWA6LKWXGSRJD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912361, + 49.169977 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805245", + "name": "WAAT/FRWA6LKWXGSRJD", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912361, + 49.169977 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805245", + "name": "WAAT/FRWA6LKWXGSRJD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.694416, + 44.995186 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828285", + "name": "WAAT/FRWA6LMTQY569J", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.694416, + 44.995186 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828285", + "name": "WAAT/FRWA6LMTQY569J", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.694416, + 44.995186 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828285", + "name": "WAAT/FRWA6LMTQY569J", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.694416, + 44.995186 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828285", + "name": "WAAT/FRWA6LMTQY569J", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.718671, + 44.910302 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805242", + "name": "WAAT/FRWA6LH1WMDEXK", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.361856, + 46.16789 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828282", + "name": "WAAT/FRWA6LGMY0DFRR", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.412932, + 50.487002 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805251", + "name": "WAAT/FRWA6LPNGZXPJR", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.361856, + 46.16789 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828282", + "name": "WAAT/FRWA6LGMY0DFRR", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545529, + 48.472713 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747285", + "name": "WAAT/FRWA6LEDNOTX07", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545529, + 48.472713 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747285", + "name": "WAAT/FRWA6LEDNOTX07", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.630492, + 43.314747 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815406", + "name": "WAAT/FRWA6LEFES5XDF", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.630492, + 43.314747 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815406", + "name": "WAAT/FRWA6LEFES5XDF", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.630492, + 43.314747 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815406", + "name": "WAAT/FRWA6LEFES5XDF", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.630492, + 43.314747 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815406", + "name": "WAAT/FRWA6LEFES5XDF", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.235914, + 43.414287 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815409", + "name": "WAAT/FRWA6LEGBDXM3G", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.235914, + 43.414287 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815409", + "name": "WAAT/FRWA6LEGBDXM3G", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.235914, + 43.414287 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815409", + "name": "WAAT/FRWA6LEGBDXM3G", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.235914, + 43.414287 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815409", + "name": "WAAT/FRWA6LEGBDXM3G", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.667107, + 48.9551 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787224", + "name": "WAAT/FRWA6LEONHSYS2", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.667107, + 48.9551 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787224", + "name": "WAAT/FRWA6LEONHSYS2", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.667107, + 48.9551 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787224", + "name": "WAAT/FRWA6LEONHSYS2", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.667107, + 48.9551 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787224", + "name": "WAAT/FRWA6LEONHSYS2", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843743, + 47.040481 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "761370", + "name": "WAAT/FRWA6LEXY5ACXU", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843743, + 47.040481 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "761370", + "name": "WAAT/FRWA6LEXY5ACXU", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843743, + 47.040481 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "761370", + "name": "WAAT/FRWA6LEXY5ACXU", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843743, + 47.040481 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "761370", + "name": "WAAT/FRWA6LEXY5ACXU", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.361856, + 46.16789 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828282", + "name": "WAAT/FRWA6LGMY0DFRR", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.292555, + 49.834635 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805248", + "name": "WAAT/FRWA6LOE96MWRI", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.412932, + 50.487002 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805251", + "name": "WAAT/FRWA6LPNGZXPJR", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545529, + 48.472713 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747285", + "name": "WAAT/FRWA6LEDNOTX07", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.883274, + 46.671909 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741660", + "name": "WAAT/FRWA6LWUGMCAUK", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.588766, + 43.18835 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815421", + "name": "WAAT/FRWA6LYEU61K8K", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.588766, + 43.18835 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815421", + "name": "WAAT/FRWA6LYEU61K8K", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.539401, + 48.84893 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828294", + "name": "WAAT/FRWA6LYQ55DYR1", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.539401, + 48.84893 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828294", + "name": "WAAT/FRWA6LYQ55DYR1", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.332443, + 43.828607 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815424", + "name": "WAAT/FRWA6LZKZCTUL5", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.332443, + 43.828607 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815424", + "name": "WAAT/FRWA6LZKZCTUL5", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.519009, + 48.985254 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741663", + "name": "WAAT/FRWATL06GSOQ1T", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.519009, + 48.985254 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741663", + "name": "WAAT/FRWATL06GSOQ1T", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.519009, + 48.985254 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741663", + "name": "WAAT/FRWATL06GSOQ1T", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.717779, + 45.551683 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741666", + "name": "WAAT/FRWATL7HLUTQQ9", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.717779, + 45.551683 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741666", + "name": "WAAT/FRWATL7HLUTQQ9", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.717779, + 45.551683 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741666", + "name": "WAAT/FRWATL7HLUTQQ9", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.717779, + 45.551683 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741666", + "name": "WAAT/FRWATL7HLUTQQ9", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.575711, + 45.897844 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741669", + "name": "WAAT/FRWATL7LUYO9YL", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.575711, + 45.897844 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741669", + "name": "WAAT/FRWATL7LUYO9YL", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.433229, + 43.64506 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741672", + "name": "WAAT/FRWATL9OGLRSMO", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.433229, + 43.64506 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741672", + "name": "WAAT/FRWATL9OGLRSMO", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.433229, + 43.64506 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741672", + "name": "WAAT/FRWATL9OGLRSMO", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.433229, + 43.64506 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741672", + "name": "WAAT/FRWATL9OGLRSMO", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.883274, + 46.671909 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741660", + "name": "WAAT/FRWA6LWUGMCAUK", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.883274, + 46.671909 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741660", + "name": "WAAT/FRWA6LWUGMCAUK", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845881, + 44.947093 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741657", + "name": "WAAT/FRWA6LQHTXK4BM", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.883274, + 46.671909 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741660", + "name": "WAAT/FRWA6LWUGMCAUK", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845881, + 44.947093 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741657", + "name": "WAAT/FRWA6LQHTXK4BM", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845881, + 44.947093 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741657", + "name": "WAAT/FRWA6LQHTXK4BM", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845881, + 44.947093 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741657", + "name": "WAAT/FRWA6LQHTXK4BM", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.698316, + 43.449905 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828288", + "name": "WAAT/FRWA6LQLBXZ11E", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.698316, + 43.449905 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828288", + "name": "WAAT/FRWA6LQLBXZ11E", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.698316, + 43.449905 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828288", + "name": "WAAT/FRWA6LQLBXZ11E", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.698316, + 43.449905 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828288", + "name": "WAAT/FRWA6LQLBXZ11E", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.292898, + 49.835137 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805254", + "name": "WAAT/FRWA6LR1GSYWGI", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.292898, + 49.835137 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805254", + "name": "WAAT/FRWA6LR1GSYWGI", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.504963, + 45.475736 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815415", + "name": "WAAT/FRWA6LR5NOHF1K", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.504963, + 45.475736 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815415", + "name": "WAAT/FRWA6LR5NOHF1K", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.539385, + 48.848921 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828291", + "name": "WAAT/FRWA6LSRWDT05Y", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.537643, + 50.345614 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789168", + "name": "WAAT/FRWA6LTJEAN9QQ", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.537643, + 50.345614 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789168", + "name": "WAAT/FRWA6LTJEAN9QQ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.537643, + 50.345614 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789168", + "name": "WAAT/FRWA6LTJEAN9QQ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.537643, + 50.345614 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789168", + "name": "WAAT/FRWA6LTJEAN9QQ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.715921, + 49.114411 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815418", + "name": "WAAT/FRWA6LWBE6WZGK", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.715921, + 49.114411 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815418", + "name": "WAAT/FRWA6LWBE6WZGK", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.715921, + 49.114411 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815418", + "name": "WAAT/FRWA6LWBE6WZGK", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545529, + 48.472713 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747285", + "name": "WAAT/FRWA6LEDNOTX07", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.588763, + 43.188354 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815403", + "name": "WAAT/FRWA6LD0UVVQY5", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.058135, + 48.783543 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "699635", + "name": "WAAT/FRWATLLGFUACQZ", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.524187, + 43.508911 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851874", + "name": "WAAT/FRWA5LZKMRRUCN", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.46174, + 45.653935 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805257", + "name": "WAAT/FRWATL0YJ2UC6M", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.46174, + 45.653935 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805257", + "name": "WAAT/FRWATL0YJ2UC6M", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.46174, + 45.653935 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805257", + "name": "WAAT/FRWATL0YJ2UC6M", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.371428, + 43.848528 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805260", + "name": "WAAT/FRWATL2O03PP4Y", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.371428, + 43.848528 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805260", + "name": "WAAT/FRWATL2O03PP4Y", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.371428, + 43.848528 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805260", + "name": "WAAT/FRWATL2O03PP4Y", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.371428, + 43.848528 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805260", + "name": "WAAT/FRWATL2O03PP4Y", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.330752, + 46.151508 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805263", + "name": "WAAT/FRWATL2XGT9WUL", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.330752, + 46.151508 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805263", + "name": "WAAT/FRWATL2XGT9WUL", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.661495, + 45.054285 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805272", + "name": "WAAT/FRWATLAE66P19I", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.716421, + 45.166618 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805281", + "name": "WAAT/FRWATLJ8Y3Q8UO", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.716421, + 45.166618 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805281", + "name": "WAAT/FRWATLJ8Y3Q8UO", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.661547, + 45.054029 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805284", + "name": "WAAT/FRWATLL6VDGLO2", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.661547, + 45.054029 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805284", + "name": "WAAT/FRWATLL6VDGLO2", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.661547, + 45.054029 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805284", + "name": "WAAT/FRWATLL6VDGLO2", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.509592, + 46.209011 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805296", + "name": "WAAT/FRWATLMX1KFY7D", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.509592, + 46.209011 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805296", + "name": "WAAT/FRWATLMX1KFY7D", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.833115, + 45.71833 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805317", + "name": "WAAT/FRWATLTTM35X29", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.833115, + 45.71833 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805317", + "name": "WAAT/FRWATLTTM35X29", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.46174, + 45.653935 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805257", + "name": "WAAT/FRWATL0YJ2UC6M", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.524187, + 43.508911 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851874", + "name": "WAAT/FRWA5LZKMRRUCN", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41169, + 48.6808 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741645", + "name": "WAAT/FRWA3L94CRR7KA", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.837505, + 46.646292 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815397", + "name": "WAAT/FRWA5LYYWQGKZR", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.058135, + 48.783543 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "699635", + "name": "WAAT/FRWATLLGFUACQZ", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.058135, + 48.783543 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "699635", + "name": "WAAT/FRWATLLGFUACQZ", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.058135, + 48.783543 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "699635", + "name": "WAAT/FRWATLLGFUACQZ", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.058135, + 48.783543 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "699635", + "name": "WAAT/FRWATLLGFUACQZ", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.058135, + 48.783543 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "699635", + "name": "WAAT/FRWATLLGFUACQZ", + "capacity": "12", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.058135, + 48.783543 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "699635", + "name": "WAAT/FRWATLLGFUACQZ", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.147694, + 48.378312 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789195", + "name": "WAAT/FRWATLMOTDFQ9E", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.147694, + 48.378312 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789195", + "name": "WAAT/FRWATLMOTDFQ9E", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.147694, + 48.378312 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789195", + "name": "WAAT/FRWATLMOTDFQ9E", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390745, + 50.629965 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "696500", + "name": "WAAT/FRWATLQL3JB7DU", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390745, + 50.629965 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA4", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "696500", + "name": "WAAT/FRWATLQL3JB7DU", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.082393, + 43.595316 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781572", + "name": "WAAT/FRWA4LKTNYA50W", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.082401, + 43.595318 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781575", + "name": "WAAT/FRWA4LPYR1NTBQ", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.583028, + 43.313028 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815391", + "name": "WAAT/FRWA5L4AUJMAK7", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.583028, + 43.313028 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815391", + "name": "WAAT/FRWA5L4AUJMAK7", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.688774, + 43.386234 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815394", + "name": "WAAT/FRWA5LGMEJRVMS", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.688774, + 43.386234 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815394", + "name": "WAAT/FRWA5LGMEJRVMS", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.837505, + 46.646292 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815397", + "name": "WAAT/FRWA5LYYWQGKZR", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.837505, + 46.646292 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815397", + "name": "WAAT/FRWA5LYYWQGKZR", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.833115, + 45.71833 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805317", + "name": "WAAT/FRWATLTTM35X29", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41169, + 48.6808 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741645", + "name": "WAAT/FRWA3L94CRR7KA", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.588763, + 43.188354 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815403", + "name": "WAAT/FRWA6LD0UVVQY5", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.971963, + 43.615253 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747279", + "name": "WAAT/FRWA6L6B6O8VFG", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.612904, + 44.854444 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781578", + "name": "WAAT/FRWA6L7LOGXBL6", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.612904, + 44.854444 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781578", + "name": "WAAT/FRWA6L7LOGXBL6", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.612904, + 44.854444 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781578", + "name": "WAAT/FRWA6L7LOGXBL6", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.921623, + 45.902621 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "767184", + "name": "WAAT/FRWA6L8FOM2HPI", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.921623, + 45.902621 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "767184", + "name": "WAAT/FRWA6L8FOM2HPI", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.921623, + 45.902621 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "767184", + "name": "WAAT/FRWA6L8FOM2HPI", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.921623, + 45.902621 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "767184", + "name": "WAAT/FRWA6L8FOM2HPI", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.367107, + 48.828405 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "756795", + "name": "WAAT/FRWA6L9RTONUAA", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.367107, + 48.828405 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "756795", + "name": "WAAT/FRWA6L9RTONUAA", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67837, + 44.8184 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805236", + "name": "WAAT/FRWA6LAKME4K40", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67837, + 44.8184 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805236", + "name": "WAAT/FRWA6LAKME4K40", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67837, + 44.8184 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805236", + "name": "WAAT/FRWA6LAKME4K40", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67837, + 44.8184 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805236", + "name": "WAAT/FRWA6LAKME4K40", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3571, + 47.3395 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805239", + "name": "WAAT/FRWA6LARSAF1X8", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3571, + 47.3395 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805239", + "name": "WAAT/FRWA6LARSAF1X8", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.291873, + 49.043902 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747282", + "name": "WAAT/FRWA6LBRUKLCLZ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.291873, + 49.043902 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747282", + "name": "WAAT/FRWA6LBRUKLCLZ", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.291873, + 49.043902 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747282", + "name": "WAAT/FRWA6LBRUKLCLZ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.291873, + 49.043902 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747282", + "name": "WAAT/FRWA6LBRUKLCLZ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.971963, + 43.615253 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747279", + "name": "WAAT/FRWA6L6B6O8VFG", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.971963, + 43.615253 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747279", + "name": "WAAT/FRWA6L6B6O8VFG", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65352, + 49.138592 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741648", + "name": "WAAT/FRWA3LH4CQ5E0H", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.971963, + 43.615253 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747279", + "name": "WAAT/FRWA6L6B6O8VFG", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65352, + 49.138592 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741648", + "name": "WAAT/FRWA3LH4CQ5E0H", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65352, + 49.138592 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741648", + "name": "WAAT/FRWA3LH4CQ5E0H", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65352, + 49.138592 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741648", + "name": "WAAT/FRWA3LH4CQ5E0H", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.164156, + 49.280802 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741651", + "name": "WAAT/FRWA3LR012DNKK", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.164156, + 49.280802 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741651", + "name": "WAAT/FRWA3LR012DNKK", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.164156, + 49.280802 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741651", + "name": "WAAT/FRWA3LR012DNKK", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.398027, + 47.497011 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741654", + "name": "WAAT/FRWA3LWYNTPGTR", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.398027, + 47.497011 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741654", + "name": "WAAT/FRWA3LWYNTPGTR", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.398027, + 47.497011 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741654", + "name": "WAAT/FRWA3LWYNTPGTR", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.398027, + 47.497011 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741654", + "name": "WAAT/FRWA3LWYNTPGTR", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.466205, + 48.233331 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828279", + "name": "WAAT/FRWA6L1XSYKHIJ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.466205, + 48.233331 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828279", + "name": "WAAT/FRWA6L1XSYKHIJ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.466205, + 48.233331 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828279", + "name": "WAAT/FRWA6L1XSYKHIJ", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.466205, + 48.233331 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828279", + "name": "WAAT/FRWA6L1XSYKHIJ", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81362, + 49.4212 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805233", + "name": "WAAT/FRWA6L2PTAKW2H", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81362, + 49.4212 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805233", + "name": "WAAT/FRWA6L2PTAKW2H", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81362, + 49.4212 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805233", + "name": "WAAT/FRWA6L2PTAKW2H", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81362, + 49.4212 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805233", + "name": "WAAT/FRWA6L2PTAKW2H", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.715785, + 49.1145 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815400", + "name": "WAAT/FRWA6L4MGAVBJW", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.414438, + 43.941508 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590672", + "name": "CARF - Bornes Publiques/30863A27-91A6-40AA-9C8C-2A08ADC581E5", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-25", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.442932, + 43.78694 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "593321", + "name": "CARF - Bornes Publiques/31B87691-9930-4034-AF37-E159F2AB1A15", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-25", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.595174, + 44.388486 + ] + }, + "properties": { + "operator": "Autel Netherlands B.V. | FR*AUT", + "owner:ref:FR:SIREN": "", + "email": "evsupport.eu@autel.com", + "phone": "", + "network": "AUTEL EUROPE GmbH", + "ref:EU:EVSE": "Non concerné", + "ref": "863355", + "name": "AUTEL EUROPE GmbH/20247", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.362979, + 43.288972 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "678950", + "name": "ENGIE MAMP - Bornes publiques/D2447B64-5CEF-4A60-8CE9-8BAA3D3145E8", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.540796, + 43.214406 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836988", + "name": "ENGIE MAMP - Bornes publiques/E898F875-1831-48CA-86CC-1486729326A3", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.540796, + 43.214406 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836988", + "name": "ENGIE MAMP - Bornes publiques/E898F875-1831-48CA-86CC-1486729326A3", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.195572, + 43.409384 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613330", + "name": "ENGIE MAMP - Bornes publiques/DF25D5A3-44AA-4380-AE6F-A9875D793B78", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.195572, + 43.409384 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613330", + "name": "ENGIE MAMP - Bornes publiques/DF25D5A3-44AA-4380-AE6F-A9875D793B78", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.380148, + 43.304954 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836985", + "name": "ENGIE MAMP - Bornes publiques/DBFAB447-487E-4DE5-8E93-5EBFF9F18550", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.380148, + 43.304954 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836985", + "name": "ENGIE MAMP - Bornes publiques/DBFAB447-487E-4DE5-8E93-5EBFF9F18550", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409094, + 43.264841 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613327", + "name": "ENGIE MAMP - Bornes publiques/D4DFEB50-10D6-4E3F-806D-D36CB1A244D4", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409094, + 43.264841 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613327", + "name": "ENGIE MAMP - Bornes publiques/D4DFEB50-10D6-4E3F-806D-D36CB1A244D4", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.362979, + 43.288972 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "678950", + "name": "ENGIE MAMP - Bornes publiques/D2447B64-5CEF-4A60-8CE9-8BAA3D3145E8", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.363203, + 43.270909 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836982", + "name": "ENGIE MAMP - Bornes publiques/CD4DC943-F2E3-4908-857C-DA138A9BE948", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.551562, + 43.989458 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "593324", + "name": "CARF - Bornes Publiques/366DA9E5-C295-45AD-B9EC-911517B8A0A6", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-25", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.363203, + 43.270909 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836982", + "name": "ENGIE MAMP - Bornes publiques/CD4DC943-F2E3-4908-857C-DA138A9BE948", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.363203, + 43.270909 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836982", + "name": "ENGIE MAMP - Bornes publiques/CD4DC943-F2E3-4908-857C-DA138A9BE948", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.468984, + 43.354728 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613324", + "name": "ENGIE MAMP - Bornes publiques/B9BE4900-8288-48A1-B1BF-31418A18AC91", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.468984, + 43.354728 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613324", + "name": "ENGIE MAMP - Bornes publiques/B9BE4900-8288-48A1-B1BF-31418A18AC91", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.398803, + 43.299757 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613321", + "name": "ENGIE MAMP - Bornes publiques/B606C19F-6882-41AF-A504-A237DF388AFC", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.398803, + 43.299757 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613321", + "name": "ENGIE MAMP - Bornes publiques/B606C19F-6882-41AF-A504-A237DF388AFC", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.377119, + 43.302686 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836979", + "name": "ENGIE MAMP - Bornes publiques/B335D4D6-39B3-445D-8F63-939261D84479", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.377119, + 43.302686 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836979", + "name": "ENGIE MAMP - Bornes publiques/B335D4D6-39B3-445D-8F63-939261D84479", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.393886, + 43.255794 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613318", + "name": "ENGIE MAMP - Bornes publiques/ACA96EA3-15A1-4A74-B9CC-B0B82AA7962C", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.540796, + 43.214406 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836988", + "name": "ENGIE MAMP - Bornes publiques/E898F875-1831-48CA-86CC-1486729326A3", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.371681, + 43.289916 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836991", + "name": "ENGIE MAMP - Bornes publiques/F0CBB0CD-BF29-4D72-91BF-B81996AC0E27", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.371681, + 43.289916 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836991", + "name": "ENGIE MAMP - Bornes publiques/F0CBB0CD-BF29-4D72-91BF-B81996AC0E27", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.371681, + 43.289916 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836991", + "name": "ENGIE MAMP - Bornes publiques/F0CBB0CD-BF29-4D72-91BF-B81996AC0E27", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16648, + 48.05205 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "782655", + "name": "Atlante/FRATL*PORT6501", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16648, + 48.05205 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "782655", + "name": "Atlante/FRATL*PORT6501", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16648, + 48.05205 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "782655", + "name": "Atlante/FRATL*PORT6501", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16648, + 48.05205 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "782655", + "name": "Atlante/FRATL*PORT6501", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16648, + 48.05205 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "782655", + "name": "Atlante/FRATL*PORT6501", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16648, + 48.05205 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "782655", + "name": "Atlante/FRATL*PORT6501", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16648, + 48.05205 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "782655", + "name": "Atlante/FRATL*PORT6501", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16648, + 48.05205 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "782655", + "name": "Atlante/FRATL*PORT6501", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08947, + 48.80341 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "782652", + "name": "Atlante/FRATL*COUL1201", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08947, + 48.80341 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "782652", + "name": "Atlante/FRATL*COUL1201", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08947, + 48.80341 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "782652", + "name": "Atlante/FRATL*COUL1201", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08947, + 48.80341 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "782652", + "name": "Atlante/FRATL*COUL1201", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08947, + 48.80341 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "782652", + "name": "Atlante/FRATL*COUL1201", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.45921, + 43.345324 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613333", + "name": "ENGIE MAMP - Bornes publiques/F6976EFF-F485-47D2-BE83-EE3474EA26B0", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.45921, + 43.345324 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613333", + "name": "ENGIE MAMP - Bornes publiques/F6976EFF-F485-47D2-BE83-EE3474EA26B0", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409014, + 43.307994 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "678953", + "name": "ENGIE MAMP - Bornes publiques/F624558B-6A95-4B20-963A-5E3BD485F7E0", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409014, + 43.307994 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "678953", + "name": "ENGIE MAMP - Bornes publiques/F624558B-6A95-4B20-963A-5E3BD485F7E0", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.376228, + 43.253932 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836994", + "name": "ENGIE MAMP - Bornes publiques/F1880B7B-1259-468A-BD9B-697C44CDCBA5", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.376228, + 43.253932 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836994", + "name": "ENGIE MAMP - Bornes publiques/F1880B7B-1259-468A-BD9B-697C44CDCBA5", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.393886, + 43.255794 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613318", + "name": "ENGIE MAMP - Bornes publiques/ACA96EA3-15A1-4A74-B9CC-B0B82AA7962C", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37587, + 43.284198 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613315", + "name": "ENGIE MAMP - Bornes publiques/A3F0F8CA-B96A-4723-99B2-CFB3EFC15224", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37587, + 43.284198 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613315", + "name": "ENGIE MAMP - Bornes publiques/A3F0F8CA-B96A-4723-99B2-CFB3EFC15224", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.628622, + 43.297149 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613294", + "name": "ENGIE MAMP - Bornes publiques/3CFC049E-09A2-4A21-9C9B-D0D09824E5E6", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.433546, + 43.294651 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613291", + "name": "ENGIE MAMP - Bornes publiques/3C65BED9-60D0-4C6D-8C83-42C7C651F7C2", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.433546, + 43.294651 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613291", + "name": "ENGIE MAMP - Bornes publiques/3C65BED9-60D0-4C6D-8C83-42C7C651F7C2", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43888, + 43.309691 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613288", + "name": "ENGIE MAMP - Bornes publiques/360F740B-C687-4479-975A-D1E7ACD1B5A7", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43888, + 43.309691 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613288", + "name": "ENGIE MAMP - Bornes publiques/360F740B-C687-4479-975A-D1E7ACD1B5A7", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.31756, + 43.359392 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "816522", + "name": "ENGIE MAMP - Bornes publiques/347FCF7A-7EA1-421E-AB21-096D8370E8D8", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "True" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.31756, + 43.359392 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "816522", + "name": "ENGIE MAMP - Bornes publiques/347FCF7A-7EA1-421E-AB21-096D8370E8D8", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.367613, + 43.315171 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613285", + "name": "ENGIE MAMP - Bornes publiques/2EBBB4AD-905E-4898-95B8-DDDE26691452", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.367613, + 43.315171 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613285", + "name": "ENGIE MAMP - Bornes publiques/2EBBB4AD-905E-4898-95B8-DDDE26691452", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387781, + 43.299928 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613282", + "name": "ENGIE MAMP - Bornes publiques/2BF3213A-A7EC-40A8-B813-0BF5E51C0015", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387781, + 43.299928 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613282", + "name": "ENGIE MAMP - Bornes publiques/2BF3213A-A7EC-40A8-B813-0BF5E51C0015", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22183, + 43.41657 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613279", + "name": "ENGIE MAMP - Bornes publiques/12DAC224-B09F-438F-AA40-525243F3D43D", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22183, + 43.41657 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613279", + "name": "ENGIE MAMP - Bornes publiques/12DAC224-B09F-438F-AA40-525243F3D43D", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.480306, + 43.335877 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613276", + "name": "ENGIE MAMP - Bornes publiques/11F18D7E-C43A-40C4-A8FC-85238C74315B", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.480306, + 43.335877 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613276", + "name": "ENGIE MAMP - Bornes publiques/11F18D7E-C43A-40C4-A8FC-85238C74315B", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.389461, + 43.280847 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613273", + "name": "ENGIE MAMP - Bornes publiques/07732A52-7E9B-4CE7-B528-7194497E2FA4", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.389461, + 43.280847 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613273", + "name": "ENGIE MAMP - Bornes publiques/07732A52-7E9B-4CE7-B528-7194497E2FA4", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "SOMIMAR - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590825", + "name": "SOMIMAR - Bornes publiques/87880494-8784-41fd-97e2-2d0f15b984ef", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "SOMIMAR - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590825", + "name": "SOMIMAR - Bornes publiques/87880494-8784-41fd-97e2-2d0f15b984ef", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "SOMIMAR - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590825", + "name": "SOMIMAR - Bornes publiques/87880494-8784-41fd-97e2-2d0f15b984ef", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.628622, + 43.297149 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613294", + "name": "ENGIE MAMP - Bornes publiques/3CFC049E-09A2-4A21-9C9B-D0D09824E5E6", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.501411, + 43.295673 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836970", + "name": "ENGIE MAMP - Bornes publiques/40118159-F2DE-4947-954B-FB1A0B7734C9", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387068, + 43.260804 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836976", + "name": "ENGIE MAMP - Bornes publiques/90DF0344-168A-4F83-9926-979A2BCA7F50", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.501411, + 43.295673 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836970", + "name": "ENGIE MAMP - Bornes publiques/40118159-F2DE-4947-954B-FB1A0B7734C9", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387068, + 43.260804 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836976", + "name": "ENGIE MAMP - Bornes publiques/90DF0344-168A-4F83-9926-979A2BCA7F50", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387068, + 43.260804 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836976", + "name": "ENGIE MAMP - Bornes publiques/90DF0344-168A-4F83-9926-979A2BCA7F50", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.389277, + 43.290449 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613312", + "name": "ENGIE MAMP - Bornes publiques/8EF05F63-6AFE-4F04-A9E3-CA50849D61AC", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.389277, + 43.290449 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613312", + "name": "ENGIE MAMP - Bornes publiques/8EF05F63-6AFE-4F04-A9E3-CA50849D61AC", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25172, + 43.411612 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613309", + "name": "ENGIE MAMP - Bornes publiques/7152CFA2-3DA3-44CF-8F5F-919ADADA4FBE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25172, + 43.411612 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613309", + "name": "ENGIE MAMP - Bornes publiques/7152CFA2-3DA3-44CF-8F5F-919ADADA4FBE", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62989, + 43.211412 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613306", + "name": "ENGIE MAMP - Bornes publiques/6F5C35EF-A452-4F66-971A-C35675141790", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62989, + 43.211412 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613306", + "name": "ENGIE MAMP - Bornes publiques/6F5C35EF-A452-4F66-971A-C35675141790", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.364434, + 43.298149 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836973", + "name": "ENGIE MAMP - Bornes publiques/60D8947D-3C25-4C57-B4A3-85922501D1FC", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.364434, + 43.298149 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836973", + "name": "ENGIE MAMP - Bornes publiques/60D8947D-3C25-4C57-B4A3-85922501D1FC", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.390399, + 43.339001 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613303", + "name": "ENGIE MAMP - Bornes publiques/57CCFF30-596E-4834-9CC2-9A6B446C9419", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.390399, + 43.339001 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613303", + "name": "ENGIE MAMP - Bornes publiques/57CCFF30-596E-4834-9CC2-9A6B446C9419", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4014, + 43.319046 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613300", + "name": "ENGIE MAMP - Bornes publiques/5492DD66-0694-4F31-9E42-717F02FF06CA", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4014, + 43.319046 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613300", + "name": "ENGIE MAMP - Bornes publiques/5492DD66-0694-4F31-9E42-717F02FF06CA", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.397543, + 43.260987 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613297", + "name": "ENGIE MAMP - Bornes publiques/5063FA0A-F384-454C-9E37-485255C33243", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.397543, + 43.260987 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613297", + "name": "ENGIE MAMP - Bornes publiques/5063FA0A-F384-454C-9E37-485255C33243", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387834, + 43.288587 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "678947", + "name": "ENGIE MAMP - Bornes publiques/42113B28-27BD-4D95-9734-AFCB50E0863D", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387834, + 43.288587 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "678947", + "name": "ENGIE MAMP - Bornes publiques/42113B28-27BD-4D95-9734-AFCB50E0863D", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.501411, + 43.295673 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "ENGIE MAMP - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "836970", + "name": "ENGIE MAMP - Bornes publiques/40118159-F2DE-4947-954B-FB1A0B7734C9", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28694, + 48.5546 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809715", + "name": "Atlante/FRATL*PROV1601", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28694, + 48.5546 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809715", + "name": "Atlante/FRATL*PROV1601", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28694, + 48.5546 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809715", + "name": "Atlante/FRATL*PROV1601", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.332955, + 47.407277 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "788757", + "name": "BornEco/643fd95e2f5a364feac970df", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294479, + 48.862923 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "782313", + "name": "BornEco/64255ebeceade60b493082cc", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294479, + 48.862923 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "782313", + "name": "BornEco/64255ebeceade60b493082cc", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.949199, + 47.704058 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "767316", + "name": "BornEco/64242f91ceade60b491cd913", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.949199, + 47.704058 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "767316", + "name": "BornEco/64242f91ceade60b491cd913", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.949199, + 47.704058 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "767316", + "name": "BornEco/64242f91ceade60b491cd913", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.949199, + 47.704058 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "767316", + "name": "BornEco/64242f91ceade60b491cd913", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528778, + 48.535592 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "767304", + "name": "BornEco/640729936e73c7acf2766af1", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.716365, + 49.20135 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "744225", + "name": "BornEco/63fc668c6e73c7acf2178cb6", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.011686, + 48.557306 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "767313", + "name": "BornEco/63dcf0bade530c3ec2928d14", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.011686, + 48.557306 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "767313", + "name": "BornEco/63dcf0bade530c3ec2928d14", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.011686, + 48.557306 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "767313", + "name": "BornEco/63dcf0bade530c3ec2928d14", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.011686, + 48.557306 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "767313", + "name": "BornEco/63dcf0bade530c3ec2928d14", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.013792, + 48.555402 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "767310", + "name": "BornEco/63dcf040de530c3ec2928d03", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.013792, + 48.555402 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "767310", + "name": "BornEco/63dcf040de530c3ec2928d03", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.013792, + 48.555402 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "767310", + "name": "BornEco/63dcf040de530c3ec2928d03", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.013792, + 48.555402 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "767310", + "name": "BornEco/63dcf040de530c3ec2928d03", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.134437, + 48.477517 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "767307", + "name": "BornEco/63dcefa3de530c3ec2928c39", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.134437, + 48.477517 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "767307", + "name": "BornEco/63dcefa3de530c3ec2928c39", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376104, + 47.765942 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "756453", + "name": "BornEco/63dcef1cde530c3ec2928c1e", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294479, + 48.862923 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "782313", + "name": "BornEco/64255ebeceade60b493082cc", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.332955, + 47.407277 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "788757", + "name": "BornEco/643fd95e2f5a364feac970df", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304465, + 50.909617 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "701342", + "name": "BornEco/63ac339611a81405a7c9652f", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.332955, + 47.407277 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "788757", + "name": "BornEco/643fd95e2f5a364feac970df", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.263228, + 49.851053 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814563", + "name": "BornEco/646759c62f5a364fea25cae4", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.263228, + 49.851053 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814563", + "name": "BornEco/646759c62f5a364fea25cae4", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.263228, + 49.851053 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814563", + "name": "BornEco/646759c62f5a364fea25cae4", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.263228, + 49.851053 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814563", + "name": "BornEco/646759c62f5a364fea25cae4", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.263228, + 49.851053 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814563", + "name": "BornEco/646759c62f5a364fea25cae4", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.263228, + 49.851053 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "814563", + "name": "BornEco/646759c62f5a364fea25cae4", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.69131, + 43.488535 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "801516", + "name": "BornEco/645392b72f5a364fea62b459", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780711, + 43.959933 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "842559", + "name": "BornEco/6450e4ed2f5a364fea47cfee", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.780711, + 43.959933 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "842559", + "name": "BornEco/6450e4ed2f5a364fea47cfee", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99651, + 45.209725 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "788925", + "name": "BornEco/644e2d8e2f5a364fea312d3d", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99651, + 45.209725 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "788925", + "name": "BornEco/644e2d8e2f5a364fea312d3d", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99651, + 45.209725 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "788925", + "name": "BornEco/644e2d8e2f5a364fea312d3d", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99651, + 45.209725 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "788925", + "name": "BornEco/644e2d8e2f5a364fea312d3d", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99651, + 45.209725 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "788925", + "name": "BornEco/644e2d8e2f5a364fea312d3d", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99651, + 45.209725 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "788925", + "name": "BornEco/644e2d8e2f5a364fea312d3d", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.001987, + 45.575544 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "788763", + "name": "BornEco/6446a9682f5a364fea0121b4", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.001987, + 45.575544 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "788763", + "name": "BornEco/6446a9682f5a364fea0121b4", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.866728, + 47.513851 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "788760", + "name": "BornEco/64422df42f5a364feade87bd", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.866728, + 47.513851 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "788760", + "name": "BornEco/64422df42f5a364feade87bd", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376104, + 47.765942 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "756453", + "name": "BornEco/63dcef1cde530c3ec2928c1e", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304465, + 50.909617 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "701342", + "name": "BornEco/63ac339611a81405a7c9652f", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28694, + 48.5546 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809715", + "name": "Atlante/FRATL*PROV1601", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84073, + 47.48726 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "766611", + "name": "Atlante/FRATLAudincourt1", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.097651, + 49.457892 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "811455", + "name": "Atlante/FRATL*Till0001", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.097651, + 49.457892 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "811455", + "name": "Atlante/FRATL*Till0001", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.097651, + 49.457892 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "811455", + "name": "Atlante/FRATL*Till0001", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.097651, + 49.457892 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "811455", + "name": "Atlante/FRATL*Till0001", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27767, + 50.7313 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809721", + "name": "Atlante/FRATL*SOME5101", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27767, + 50.7313 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809721", + "name": "Atlante/FRATL*SOME5101", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27767, + 50.7313 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809721", + "name": "Atlante/FRATL*SOME5101", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27767, + 50.7313 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809721", + "name": "Atlante/FRATL*SOME5101", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27767, + 50.7313 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809721", + "name": "Atlante/FRATL*SOME5101", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38243, + 48.94513 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809718", + "name": "Atlante/FRATL*SAIN4701", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38243, + 48.94513 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809718", + "name": "Atlante/FRATL*SAIN4701", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38243, + 48.94513 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809718", + "name": "Atlante/FRATL*SAIN4701", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38243, + 48.94513 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809718", + "name": "Atlante/FRATL*SAIN4701", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38243, + 48.94513 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809718", + "name": "Atlante/FRATL*SAIN4701", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38243, + 48.94513 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809718", + "name": "Atlante/FRATL*SAIN4701", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38243, + 48.94513 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809718", + "name": "Atlante/FRATL*SAIN4701", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38243, + 48.94513 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809718", + "name": "Atlante/FRATL*SAIN4701", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38243, + 48.94513 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809718", + "name": "Atlante/FRATL*SAIN4701", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.28694, + 48.5546 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "809715", + "name": "Atlante/FRATL*PROV1601", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.097651, + 49.457892 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "811455", + "name": "Atlante/FRATL*Till0001", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84073, + 47.48726 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "766611", + "name": "Atlante/FRATLAudincourt1", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.653702, + 47.234349 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "707684", + "name": "BornEco/63ac32f411a81405a7c96369", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "799176", + "name": "Atlante/FRATLFRATL*Gree7101", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.653702, + 47.234349 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "707684", + "name": "BornEco/63ac32f411a81405a7c96369", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.954775, + 47.160968 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "674792", + "name": "BornEco/637b6948beb8687dae1588d7", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.954775, + 47.160968 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "674792", + "name": "BornEco/637b6948beb8687dae1588d7", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.013502, + 49.391457 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "674789", + "name": "BornEco/634695f735e82090cd09ffba", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.013502, + 49.391457 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "674789", + "name": "BornEco/634695f735e82090cd09ffba", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.375174, + 48.905095 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "588491", + "name": "BornEco/6326b6ba5b86b978c9c6540b", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.375174, + 48.905095 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "588491", + "name": "BornEco/6326b6ba5b86b978c9c6540b", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-09-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.375174, + 48.905095 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "588491", + "name": "BornEco/6326b6ba5b86b978c9c6540b", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.375174, + 48.905095 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "588491", + "name": "BornEco/6326b6ba5b86b978c9c6540b", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-09-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.375174, + 48.905095 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "588491", + "name": "BornEco/6326b6ba5b86b978c9c6540b", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.303378, + 43.149175 + ] + }, + "properties": { + "operator": "Borneco | FR*BHM", + "owner:ref:FR:SIREN": "", + "email": "technique.borneco@gmail.com", + "phone": "", + "network": "BornEco", + "ref:EU:EVSE": "Non concerné", + "ref": "585578", + "name": "BornEco/63208b4f5b86b978c9c55057", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "799176", + "name": "Atlante/FRATLFRATL*Gree7101", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "799176", + "name": "Atlante/FRATLFRATL*Gree7101", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "799176", + "name": "Atlante/FRATLFRATL*Gree7101", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "799176", + "name": "Atlante/FRATLFRATL*Gree7101", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "799176", + "name": "Atlante/FRATLFRATL*Gree7101", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "799176", + "name": "Atlante/FRATLFRATL*Gree7101", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "799176", + "name": "Atlante/FRATLFRATL*Gree7101", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "operator": "Atlante | FR*ATL", + "owner:ref:FR:SIREN": "", + "email": "operations.france@atlante.energy", + "phone": "", + "network": "Atlante", + "ref:EU:EVSE": "Non concerné", + "ref": "799176", + "name": "Atlante/FRATLFRATL*Gree7101", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-11", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "SOMIMAR - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590825", + "name": "SOMIMAR - Bornes publiques/87880494-8784-41fd-97e2-2d0f15b984ef", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "SOMIMAR - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590825", + "name": "SOMIMAR - Bornes publiques/87880494-8784-41fd-97e2-2d0f15b984ef", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "SOMIMAR - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590825", + "name": "SOMIMAR - Bornes publiques/87880494-8784-41fd-97e2-2d0f15b984ef", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.846733, + 43.570576 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "697538", + "name": "Norauto - Bornes publiques/1F131AB9-5931-456F-9CAD-7987BBAF3A32", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.879898, + 43.12474 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "851190", + "name": "Norauto - Bornes publiques/1E4102AC-8CC0-4C55-A1D3-7828F8FD5D27", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.879898, + 43.12474 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "851190", + "name": "Norauto - Bornes publiques/1E4102AC-8CC0-4C55-A1D3-7828F8FD5D27", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.879898, + 43.12474 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "851190", + "name": "Norauto - Bornes publiques/1E4102AC-8CC0-4C55-A1D3-7828F8FD5D27", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.879898, + 43.12474 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "851190", + "name": "Norauto - Bornes publiques/1E4102AC-8CC0-4C55-A1D3-7828F8FD5D27", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.073562, + 45.938909 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "709406", + "name": "Norauto - Bornes publiques/1B8D3F80-A6E2-497D-B8B5-73CFD4CCC20C", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.073562, + 45.938909 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "709406", + "name": "Norauto - Bornes publiques/1B8D3F80-A6E2-497D-B8B5-73CFD4CCC20C", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.073562, + 45.938909 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "709406", + "name": "Norauto - Bornes publiques/1B8D3F80-A6E2-497D-B8B5-73CFD4CCC20C", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.779702, + 45.807739 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746973", + "name": "Norauto - Bornes publiques/1389CA75-EEAA-4C7F-B250-256D79907116", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.779702, + 45.807739 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746973", + "name": "Norauto - Bornes publiques/1389CA75-EEAA-4C7F-B250-256D79907116", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.779702, + 45.807739 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746973", + "name": "Norauto - Bornes publiques/1389CA75-EEAA-4C7F-B250-256D79907116", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856536, + 45.716581 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "753657", + "name": "Norauto - Bornes publiques/11146714-0B6A-4EB7-9B99-AB5DF44A6E02", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856536, + 45.716581 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "753657", + "name": "Norauto - Bornes publiques/11146714-0B6A-4EB7-9B99-AB5DF44A6E02", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856536, + 45.716581 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "753657", + "name": "Norauto - Bornes publiques/11146714-0B6A-4EB7-9B99-AB5DF44A6E02", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.036317, + 43.829995 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "697535", + "name": "Norauto - Bornes publiques/0E8DE6A2-82B9-4261-B1BB-6ED01D981CA6", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-16", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.036317, + 43.829995 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "697535", + "name": "Norauto - Bornes publiques/0E8DE6A2-82B9-4261-B1BB-6ED01D981CA6", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-16", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.036317, + 43.829995 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "697535", + "name": "Norauto - Bornes publiques/0E8DE6A2-82B9-4261-B1BB-6ED01D981CA6", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-16", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.657747, + 45.191302 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "811086", + "name": "Norauto - Bornes publiques/0AB0E24F-45F3-4746-ACE2-8C3A465EA095", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.657747, + 45.191302 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "811086", + "name": "Norauto - Bornes publiques/0AB0E24F-45F3-4746-ACE2-8C3A465EA095", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.657747, + 45.191302 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "811086", + "name": "Norauto - Bornes publiques/0AB0E24F-45F3-4746-ACE2-8C3A465EA095", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.879898, + 43.12474 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "851190", + "name": "Norauto - Bornes publiques/1E4102AC-8CC0-4C55-A1D3-7828F8FD5D27", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.846733, + 43.570576 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "697538", + "name": "Norauto - Bornes publiques/1F131AB9-5931-456F-9CAD-7987BBAF3A32", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.321626, + 43.303566 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "811083", + "name": "Norauto - Bornes publiques/05939333-DC66-4BFE-A6F7-77D723254062", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.846733, + 43.570576 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "697538", + "name": "Norauto - Bornes publiques/1F131AB9-5931-456F-9CAD-7987BBAF3A32", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.668929, + 45.238983 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746976", + "name": "Norauto - Bornes publiques/5A5A9137-B2E4-4A78-B94A-A8D8DB30F534", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05556, + 43.423029 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613465", + "name": "Norauto - Bornes publiques/45e816a3-ed6c-4883-812d-79703086b18c", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05556, + 43.423029 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613465", + "name": "Norauto - Bornes publiques/45e816a3-ed6c-4883-812d-79703086b18c", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05556, + 43.423029 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613465", + "name": "Norauto - Bornes publiques/45e816a3-ed6c-4883-812d-79703086b18c", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.868515, + 46.772643 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674567", + "name": "Norauto - Bornes publiques/380BDE59-5E6C-434B-893B-A38970D49D49", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.868515, + 46.772643 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674567", + "name": "Norauto - Bornes publiques/380BDE59-5E6C-434B-893B-A38970D49D49", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.868515, + 46.772643 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674567", + "name": "Norauto - Bornes publiques/380BDE59-5E6C-434B-893B-A38970D49D49", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057903, + 46.067479 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "709409", + "name": "Norauto - Bornes publiques/3112428D-C629-40AF-A5E4-D1797CE898E7", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057903, + 46.067479 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "709409", + "name": "Norauto - Bornes publiques/3112428D-C629-40AF-A5E4-D1797CE898E7", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057903, + 46.067479 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "709409", + "name": "Norauto - Bornes publiques/3112428D-C629-40AF-A5E4-D1797CE898E7", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057903, + 46.067479 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "709409", + "name": "Norauto - Bornes publiques/3112428D-C629-40AF-A5E4-D1797CE898E7", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057903, + 46.067479 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "709409", + "name": "Norauto - Bornes publiques/3112428D-C629-40AF-A5E4-D1797CE898E7", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057903, + 46.067479 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "709409", + "name": "Norauto - Bornes publiques/3112428D-C629-40AF-A5E4-D1797CE898E7", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92037, + 44.943271 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "626654", + "name": "Norauto - Bornes publiques/281C04F0-E96C-4835-AE1F-F11D8FDEF4F5", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-22", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92037, + 44.943271 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "626654", + "name": "Norauto - Bornes publiques/281C04F0-E96C-4835-AE1F-F11D8FDEF4F5", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-22", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92037, + 44.943271 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "626654", + "name": "Norauto - Bornes publiques/281C04F0-E96C-4835-AE1F-F11D8FDEF4F5", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-22", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255585, + 43.347511 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "697541", + "name": "Norauto - Bornes publiques/219E136A-89D2-44AD-8B09-3B5AFBBF6B28", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255585, + 43.347511 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "697541", + "name": "Norauto - Bornes publiques/219E136A-89D2-44AD-8B09-3B5AFBBF6B28", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255585, + 43.347511 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "697541", + "name": "Norauto - Bornes publiques/219E136A-89D2-44AD-8B09-3B5AFBBF6B28", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.321626, + 43.303566 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "811083", + "name": "Norauto - Bornes publiques/05939333-DC66-4BFE-A6F7-77D723254062", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.321626, + 43.303566 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "811083", + "name": "Norauto - Bornes publiques/05939333-DC66-4BFE-A6F7-77D723254062", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.668929, + 45.238983 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746976", + "name": "Norauto - Bornes publiques/5A5A9137-B2E4-4A78-B94A-A8D8DB30F534", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.513379, + 43.781903 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "377778", + "name": "CARF - Bornes Publiques/8C44E3B4-E0FC-406A-A255-BBA4F44A6DBC", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "True", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.49197, + 43.79061 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674618", + "name": "CARF - Bornes Publiques/8A492B9B-057C-4B3A-8020-E5835B62CF39", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.49197, + 43.79061 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674618", + "name": "CARF - Bornes Publiques/8A492B9B-057C-4B3A-8020-E5835B62CF39", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.554498, + 44.002431 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "683240", + "name": "CARF - Bornes Publiques/87BFBA33-19FC-42C0-AAA8-223154A083C8", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.554498, + 44.002431 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "683240", + "name": "CARF - Bornes Publiques/87BFBA33-19FC-42C0-AAA8-223154A083C8", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45799, + 43.765323 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "683237", + "name": "CARF - Bornes Publiques/86AFAEBF-A07F-4F93-981B-80D9BC7F856F", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.45799, + 43.765323 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "683237", + "name": "CARF - Bornes Publiques/86AFAEBF-A07F-4F93-981B-80D9BC7F856F", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.449385, + 43.876103 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674621", + "name": "CARF - Bornes Publiques/81878BD6-4B78-4DBE-94AD-872F818E1194", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.449385, + 43.876103 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674621", + "name": "CARF - Bornes Publiques/81878BD6-4B78-4DBE-94AD-872F818E1194", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.497872, + 43.806605 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "593330", + "name": "CARF - Bornes Publiques/816CEDC2-FF5E-4942-B617-CD0569448D2F", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-25", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.497872, + 43.806605 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "593330", + "name": "CARF - Bornes Publiques/816CEDC2-FF5E-4942-B617-CD0569448D2F", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-25", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5946, + 44.082484 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "597192", + "name": "CARF - Bornes Publiques/52948FDE-1CE5-4462-BD34-8B5A6EF684DA", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-22", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5946, + 44.082484 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "597192", + "name": "CARF - Bornes Publiques/52948FDE-1CE5-4462-BD34-8B5A6EF684DA", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-22", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48751, + 43.77632 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "377766", + "name": "CARF - Bornes Publiques/50298C72-AF6A-4A0E-B49C-304F82EECC24", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "True", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48751, + 43.77632 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "377766", + "name": "CARF - Bornes Publiques/50298C72-AF6A-4A0E-B49C-304F82EECC24", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "True", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.59311, + 44.089897 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674633", + "name": "CARF - Bornes Publiques/4E5A40E1-AB25-4ADD-A460-22AA8193CB6F", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.59311, + 44.089897 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674633", + "name": "CARF - Bornes Publiques/4E5A40E1-AB25-4ADD-A460-22AA8193CB6F", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.399986, + 43.744711 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "683234", + "name": "CARF - Bornes Publiques/44287F2F-18FC-4312-BE87-87739EAF3357", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.399986, + 43.744711 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "683234", + "name": "CARF - Bornes Publiques/44287F2F-18FC-4312-BE87-87739EAF3357", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.551562, + 43.989458 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "593324", + "name": "CARF - Bornes Publiques/366DA9E5-C295-45AD-B9EC-911517B8A0A6", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-25", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.513379, + 43.781903 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "377778", + "name": "CARF - Bornes Publiques/8C44E3B4-E0FC-406A-A255-BBA4F44A6DBC", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "True", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.479481, + 43.76015 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "377796", + "name": "CARF - Bornes Publiques/8CF2C967-C80C-4463-B4BE-A2D9C79A1A2A", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "True", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.436248, + 43.751169 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "850842", + "name": "CARF - Bornes Publiques/FCB5BEC9-0356-4EE8-B8F9-5C923C01C394", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.479481, + 43.76015 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "377796", + "name": "CARF - Bornes Publiques/8CF2C967-C80C-4463-B4BE-A2D9C79A1A2A", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "True", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.436248, + 43.751169 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "850842", + "name": "CARF - Bornes Publiques/FCB5BEC9-0356-4EE8-B8F9-5C923C01C394", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.516805, + 43.943967 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "612874", + "name": "CARF - Bornes Publiques/F622865D-1C4A-4DDC-B791-7172191D0857", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.516805, + 43.943967 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "612874", + "name": "CARF - Bornes Publiques/F622865D-1C4A-4DDC-B791-7172191D0857", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.616321, + 44.063348 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674606", + "name": "CARF - Bornes Publiques/E1BA5D9F-F149-4592-A062-C3C49C04FDE6", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.616321, + 44.063348 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674606", + "name": "CARF - Bornes Publiques/E1BA5D9F-F149-4592-A062-C3C49C04FDE6", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.400442, + 43.739492 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "377811", + "name": "CARF - Bornes Publiques/C361F4BD-F52E-42FB-B2FF-0CF97C15E3C0", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "True", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.400442, + 43.739492 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "377811", + "name": "CARF - Bornes Publiques/C361F4BD-F52E-42FB-B2FF-0CF97C15E3C0", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "True", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.613763, + 44.063215 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674615", + "name": "CARF - Bornes Publiques/B2B81770-2D82-4B37-ADDC-1932D36E3B86", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.613763, + 44.063215 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674615", + "name": "CARF - Bornes Publiques/B2B81770-2D82-4B37-ADDC-1932D36E3B86", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.462256, + 43.799141 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "593345", + "name": "CARF - Bornes Publiques/A9959385-D59F-405F-A090-FB4F879C498D", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-25", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.462256, + 43.799141 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "593345", + "name": "CARF - Bornes Publiques/A9959385-D59F-405F-A090-FB4F879C498D", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-10-25", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.41676, + 43.73867 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "377745", + "name": "CARF - Bornes Publiques/A94F6CB6-F1DE-4311-87F5-E1C21C182281", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "True", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.41676, + 43.73867 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "377745", + "name": "CARF - Bornes Publiques/A94F6CB6-F1DE-4311-87F5-E1C21C182281", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "True", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.477096, + 43.795037 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "593339", + "name": "CARF - Bornes Publiques/A1952231-8C6B-4306-B109-106BE66B07FC", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.477096, + 43.795037 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "593339", + "name": "CARF - Bornes Publiques/A1952231-8C6B-4306-B109-106BE66B07FC", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.494254, + 43.781006 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "612871", + "name": "CARF - Bornes Publiques/97BBD38A-F72F-4418-9160-266374714746", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-16", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.494254, + 43.781006 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "612871", + "name": "CARF - Bornes Publiques/97BBD38A-F72F-4418-9160-266374714746", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-16", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.469054, + 43.78898 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "593336", + "name": "CARF - Bornes Publiques/91981169-1681-42D0-836C-51CDB0788AEC", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.469054, + 43.78898 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "CARF - Bornes Publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "593336", + "name": "CARF - Bornes Publiques/91981169-1681-42D0-836C-51CDB0788AEC", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.668929, + 45.238983 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746976", + "name": "Norauto - Bornes publiques/5A5A9137-B2E4-4A78-B94A-A8D8DB30F534", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.107782, + 45.62177 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590822", + "name": "Norauto - Bornes publiques/60645100-d364-426f-aea1-b541e9a22721", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "SOMIMAR - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590825", + "name": "SOMIMAR - Bornes publiques/87880494-8784-41fd-97e2-2d0f15b984ef", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.666341, + 44.831528 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613468", + "name": "Norauto - Bornes publiques/D75BE6AB-582C-4862-B6F3-E847503DDBEB", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883278, + 45.026175 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "811089", + "name": "Norauto - Bornes publiques/D6B4800B-0E72-4DAD-9F7F-38417FDCEF2A", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883278, + 45.026175 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "811089", + "name": "Norauto - Bornes publiques/D6B4800B-0E72-4DAD-9F7F-38417FDCEF2A", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.309178, + 45.780319 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746985", + "name": "Norauto - Bornes publiques/C38C4315-24EF-42DE-AED0-3443603968CF", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.309178, + 45.780319 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746985", + "name": "Norauto - Bornes publiques/C38C4315-24EF-42DE-AED0-3443603968CF", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.309178, + 45.780319 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746985", + "name": "Norauto - Bornes publiques/C38C4315-24EF-42DE-AED0-3443603968CF", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.309178, + 45.780319 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746985", + "name": "Norauto - Bornes publiques/C38C4315-24EF-42DE-AED0-3443603968CF", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.309178, + 45.780319 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746985", + "name": "Norauto - Bornes publiques/C38C4315-24EF-42DE-AED0-3443603968CF", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.725449, + 45.157305 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "740955", + "name": "Norauto - Bornes publiques/B5AD1533-2887-456C-B285-907A103E1E65", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.725449, + 45.157305 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "740955", + "name": "Norauto - Bornes publiques/B5AD1533-2887-456C-B285-907A103E1E65", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.725449, + 45.157305 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "740955", + "name": "Norauto - Bornes publiques/B5AD1533-2887-456C-B285-907A103E1E65", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343414, + 45.469726 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "790128", + "name": "Norauto - Bornes publiques/AF938A9A-86B1-48B3-A6DC-914FC694E834", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343414, + 45.469726 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "790128", + "name": "Norauto - Bornes publiques/AF938A9A-86B1-48B3-A6DC-914FC694E834", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343414, + 45.469726 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "790128", + "name": "Norauto - Bornes publiques/AF938A9A-86B1-48B3-A6DC-914FC694E834", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343414, + 45.469726 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "790128", + "name": "Norauto - Bornes publiques/AF938A9A-86B1-48B3-A6DC-914FC694E834", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343414, + 45.469726 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "790128", + "name": "Norauto - Bornes publiques/AF938A9A-86B1-48B3-A6DC-914FC694E834", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.43459, + 43.320479 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746982", + "name": "Norauto - Bornes publiques/ABB3B1A8-4A98-4EF7-8CB1-3223B19A3D6F", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.43459, + 43.320479 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746982", + "name": "Norauto - Bornes publiques/ABB3B1A8-4A98-4EF7-8CB1-3223B19A3D6F", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.43459, + 43.320479 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746982", + "name": "Norauto - Bornes publiques/ABB3B1A8-4A98-4EF7-8CB1-3223B19A3D6F", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-09", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.926582, + 45.719814 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "790125", + "name": "Norauto - Bornes publiques/A7C0D339-573F-4A95-8FCA-7EB0E319C8B8", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883278, + 45.026175 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "811089", + "name": "Norauto - Bornes publiques/D6B4800B-0E72-4DAD-9F7F-38417FDCEF2A", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-01", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.666341, + 44.831528 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613468", + "name": "Norauto - Bornes publiques/D75BE6AB-582C-4862-B6F3-E847503DDBEB", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.926582, + 45.719814 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "790125", + "name": "Norauto - Bornes publiques/A7C0D339-573F-4A95-8FCA-7EB0E319C8B8", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.666341, + 44.831528 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613468", + "name": "Norauto - Bornes publiques/D75BE6AB-582C-4862-B6F3-E847503DDBEB", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "SOMIMAR - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590825", + "name": "SOMIMAR - Bornes publiques/87880494-8784-41fd-97e2-2d0f15b984ef", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "SOMIMAR - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590825", + "name": "SOMIMAR - Bornes publiques/87880494-8784-41fd-97e2-2d0f15b984ef", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "SOMIMAR - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590825", + "name": "SOMIMAR - Bornes publiques/87880494-8784-41fd-97e2-2d0f15b984ef", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "SOMIMAR - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590825", + "name": "SOMIMAR - Bornes publiques/87880494-8784-41fd-97e2-2d0f15b984ef", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "SOMIMAR - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590825", + "name": "SOMIMAR - Bornes publiques/87880494-8784-41fd-97e2-2d0f15b984ef", + "capacity": "12", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69824, + 43.448584 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "753660", + "name": "Norauto - Bornes publiques/EE0C051A-A8B9-4B28-9968-2309B09CBCF8", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69824, + 43.448584 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "753660", + "name": "Norauto - Bornes publiques/EE0C051A-A8B9-4B28-9968-2309B09CBCF8", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.69824, + 43.448584 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "753660", + "name": "Norauto - Bornes publiques/EE0C051A-A8B9-4B28-9968-2309B09CBCF8", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.782529, + 44.930736 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "735702", + "name": "Norauto - Bornes publiques/EC142BEF-6032-4F1B-82F1-409695E655F7", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.782529, + 44.930736 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "735702", + "name": "Norauto - Bornes publiques/EC142BEF-6032-4F1B-82F1-409695E655F7", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.782529, + 44.930736 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "735702", + "name": "Norauto - Bornes publiques/EC142BEF-6032-4F1B-82F1-409695E655F7", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.383969, + 44.038574 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746988", + "name": "Norauto - Bornes publiques/E870D4C6-060F-43B6-B69F-E09612E36295", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.383969, + 44.038574 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746988", + "name": "Norauto - Bornes publiques/E870D4C6-060F-43B6-B69F-E09612E36295", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.383969, + 44.038574 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746988", + "name": "Norauto - Bornes publiques/E870D4C6-060F-43B6-B69F-E09612E36295", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.383969, + 44.038574 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746988", + "name": "Norauto - Bornes publiques/E870D4C6-060F-43B6-B69F-E09612E36295", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.383969, + 44.038574 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746988", + "name": "Norauto - Bornes publiques/E870D4C6-060F-43B6-B69F-E09612E36295", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.383969, + 44.038574 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746988", + "name": "Norauto - Bornes publiques/E870D4C6-060F-43B6-B69F-E09612E36295", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.666341, + 44.831528 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613468", + "name": "Norauto - Bornes publiques/D75BE6AB-582C-4862-B6F3-E847503DDBEB", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.666341, + 44.831528 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "613468", + "name": "Norauto - Bornes publiques/D75BE6AB-582C-4862-B6F3-E847503DDBEB", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.926582, + 45.719814 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "790125", + "name": "Norauto - Bornes publiques/A7C0D339-573F-4A95-8FCA-7EB0E319C8B8", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.926582, + 45.719814 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "790125", + "name": "Norauto - Bornes publiques/A7C0D339-573F-4A95-8FCA-7EB0E319C8B8", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.107782, + 45.62177 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590822", + "name": "Norauto - Bornes publiques/60645100-d364-426f-aea1-b541e9a22721", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842734, + 44.120237 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674573", + "name": "Norauto - Bornes publiques/84C490A8-F786-4E35-BA27-38626410EC92", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.789674, + 46.251364 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674570", + "name": "Norauto - Bornes publiques/7FCB08D0-06B2-4027-8F92-A7B082320D46", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.789674, + 46.251364 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674570", + "name": "Norauto - Bornes publiques/7FCB08D0-06B2-4027-8F92-A7B082320D46", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.789674, + 46.251364 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674570", + "name": "Norauto - Bornes publiques/7FCB08D0-06B2-4027-8F92-A7B082320D46", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37817, + 47.110352 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "779304", + "name": "Norauto - Bornes publiques/78E616B4-7BA0-4413-B78D-CFB584AB2799", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37817, + 47.110352 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "779304", + "name": "Norauto - Bornes publiques/78E616B4-7BA0-4413-B78D-CFB584AB2799", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37817, + 47.110352 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "779304", + "name": "Norauto - Bornes publiques/78E616B4-7BA0-4413-B78D-CFB584AB2799", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-18", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.947235, + 45.572891 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "740952", + "name": "Norauto - Bornes publiques/77333B59-67B3-48A4-BA9F-E997387A7A0B", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.947235, + 45.572891 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "740952", + "name": "Norauto - Bornes publiques/77333B59-67B3-48A4-BA9F-E997387A7A0B", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.947235, + 45.572891 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "740952", + "name": "Norauto - Bornes publiques/77333B59-67B3-48A4-BA9F-E997387A7A0B", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.348872, + 43.816962 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "679184", + "name": "Norauto - Bornes publiques/6D5B69A3-90E6-47C2-A6EF-89AEEDCF873D", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.348872, + 43.816962 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "679184", + "name": "Norauto - Bornes publiques/6D5B69A3-90E6-47C2-A6EF-89AEEDCF873D", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.348872, + 43.816962 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "679184", + "name": "Norauto - Bornes publiques/6D5B69A3-90E6-47C2-A6EF-89AEEDCF873D", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.348872, + 43.816962 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "679184", + "name": "Norauto - Bornes publiques/6D5B69A3-90E6-47C2-A6EF-89AEEDCF873D", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.348872, + 43.816962 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "679184", + "name": "Norauto - Bornes publiques/6D5B69A3-90E6-47C2-A6EF-89AEEDCF873D", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.348872, + 43.816962 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "679184", + "name": "Norauto - Bornes publiques/6D5B69A3-90E6-47C2-A6EF-89AEEDCF873D", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.127367, + 45.756949 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746979", + "name": "Norauto - Bornes publiques/65A1A5C0-CB92-45B3-9816-1508E736A3B3", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.127367, + 45.756949 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746979", + "name": "Norauto - Bornes publiques/65A1A5C0-CB92-45B3-9816-1508E736A3B3", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.127367, + 45.756949 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "746979", + "name": "Norauto - Bornes publiques/65A1A5C0-CB92-45B3-9816-1508E736A3B3", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.107782, + 45.62177 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "590822", + "name": "Norauto - Bornes publiques/60645100-d364-426f-aea1-b541e9a22721", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-04", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842734, + 44.120237 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674573", + "name": "Norauto - Bornes publiques/84C490A8-F786-4E35-BA27-38626410EC92", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842734, + 44.120237 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "674573", + "name": "Norauto - Bornes publiques/84C490A8-F786-4E35-BA27-38626410EC92", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "operator": "evZen | FR*EVZ", + "owner:ref:FR:SIREN": "", + "email": "support@evzen.com", + "phone": "", + "network": "Norauto - Bornes publiques", + "ref:EU:EVSE": "Non concerné", + "ref": "701234", + "name": "Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96", + "capacity": "21", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.207738, + 49.131942 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741675", + "name": "WAAT/FRWATLABFIY96V", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.207738, + 49.131942 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741675", + "name": "WAAT/FRWATLABFIY96V", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.207738, + 49.131942 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741675", + "name": "WAAT/FRWATLABFIY96V", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.203076, + 47.992822 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706304", + "name": "WAAT/FRWATLX9W8WE8N", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46288, + 47.186053 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805335", + "name": "WAAT/FRWATLW8HW9BG1", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46288, + 47.186053 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805335", + "name": "WAAT/FRWATLW8HW9BG1", + "capacity": "7", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46288, + 47.186053 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805335", + "name": "WAAT/FRWATLW8HW9BG1", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46288, + 47.186053 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805335", + "name": "WAAT/FRWATLW8HW9BG1", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46288, + 47.186053 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805335", + "name": "WAAT/FRWATLW8HW9BG1", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46288, + 47.186053 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805335", + "name": "WAAT/FRWATLW8HW9BG1", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46288, + 47.186053 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805335", + "name": "WAAT/FRWATLW8HW9BG1", + "capacity": "7", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.965738, + 50.268206 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706301", + "name": "WAAT/FRWATLWDUVRSJX", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.965738, + 50.268206 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706301", + "name": "WAAT/FRWATLWDUVRSJX", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.203076, + 47.992822 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706304", + "name": "WAAT/FRWATLX9W8WE8N", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.207738, + 49.131942 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741675", + "name": "WAAT/FRWATLABFIY96V", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867375, + 45.740255 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781623", + "name": "WAAT/FRWATLXBHNNYKQ", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.326251, + 47.569098 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851898", + "name": "WAAT/FRWATLXKYNFAKD", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.326251, + 47.569098 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851898", + "name": "WAAT/FRWATLXKYNFAKD", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.443023, + 48.919093 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "577511", + "name": "WAAT/FRWATLXTTABXWA", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-09-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.888169, + 47.96278 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "671597", + "name": "WAAT/FRWATLYFDWZNVL", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.888169, + 47.96278 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "671597", + "name": "WAAT/FRWATLYFDWZNVL", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361568, + 48.915856 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "511331", + "name": "WAAT/FRWATLYGYSXF1F", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361568, + 48.915856 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "511331", + "name": "WAAT/FRWATLYGYSXF1F", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361568, + 48.915856 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "511331", + "name": "WAAT/FRWATLYGYSXF1F", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.958167, + 43.125814 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706298", + "name": "WAAT/FRWATLW3KV3PYQ", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.958167, + 43.125814 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706298", + "name": "WAAT/FRWATLW3KV3PYQ", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.099712, + 43.635144 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "544751", + "name": "WAAT/FRWATLW3GROR0Q", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.099712, + 43.635144 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "544751", + "name": "WAAT/FRWATLW3GROR0Q", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.724538, + 48.10671 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706295", + "name": "WAAT/FRWATLVPPO27AU", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.724538, + 48.10671 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706295", + "name": "WAAT/FRWATLVPPO27AU", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213791, + 48.864353 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "690497", + "name": "WAAT/FRWATLVYQUQOOL", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70859, + 45.193048 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747312", + "name": "WAAT/FRWATLW1UETWWT", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.099712, + 43.635144 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "544751", + "name": "WAAT/FRWATLW3GROR0Q", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.099712, + 43.635144 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "544751", + "name": "WAAT/FRWATLW3GROR0Q", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361568, + 48.915856 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "511331", + "name": "WAAT/FRWATLYGYSXF1F", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805344", + "name": "WAAT/FRWATLYHS1JLJC", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805344", + "name": "WAAT/FRWATLYHS1JLJC", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.745177, + 44.558061 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706307", + "name": "WAAT/FRWATLZ9MC0PFX", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258726, + 48.821132 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706310", + "name": "WAAT/FRWATLZAILTY2K", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18768, + 45.017224 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789177", + "name": "WAAT/FRWATLZJEK0SWY", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18768, + 45.017224 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789177", + "name": "WAAT/FRWATLZJEK0SWY", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.502768, + 50.357976 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747315", + "name": "WAAT/FRWATLZP67GGQL", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.502768, + 50.357976 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747315", + "name": "WAAT/FRWATLZP67GGQL", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.106539, + 48.680822 + ] + }, + "properties": { + "operator": "WattzHub | FR*SMI", + "owner:ref:FR:SIREN": "", + "email": "contact@wattzhub.com", + "phone": "", + "network": "WattzHub", + "ref:EU:EVSE": "Non concerné", + "ref": "510419", + "name": "WattzHub/625fc63fb907c5cc90734800", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.106539, + 48.680822 + ] + }, + "properties": { + "operator": "WattzHub | FR*SMI", + "owner:ref:FR:SIREN": "", + "email": "contact@wattzhub.com", + "phone": "", + "network": "WattzHub", + "ref:EU:EVSE": "Non concerné", + "ref": "510419", + "name": "WattzHub/625fc63fb907c5cc90734800", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316633, + 48.763962 + ] + }, + "properties": { + "operator": "WattzHub | FR*SMI", + "owner:ref:FR:SIREN": "", + "email": "contact@wattzhub.com", + "phone": "", + "network": "WattzHub", + "ref:EU:EVSE": "Non concerné", + "ref": "756459", + "name": "WattzHub/63ca9147de530c3ec23826c5", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316633, + 48.763962 + ] + }, + "properties": { + "operator": "WattzHub | FR*SMI", + "owner:ref:FR:SIREN": "", + "email": "contact@wattzhub.com", + "phone": "", + "network": "WattzHub", + "ref:EU:EVSE": "Non concerné", + "ref": "756459", + "name": "WattzHub/63ca9147de530c3ec23826c5", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316633, + 48.763962 + ] + }, + "properties": { + "operator": "WattzHub | FR*SMI", + "owner:ref:FR:SIREN": "", + "email": "contact@wattzhub.com", + "phone": "", + "network": "WattzHub", + "ref:EU:EVSE": "Non concerné", + "ref": "756459", + "name": "WattzHub/63ca9147de530c3ec23826c5", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316633, + 48.763962 + ] + }, + "properties": { + "operator": "WattzHub | FR*SMI", + "owner:ref:FR:SIREN": "", + "email": "contact@wattzhub.com", + "phone": "", + "network": "WattzHub", + "ref:EU:EVSE": "Non concerné", + "ref": "756459", + "name": "WattzHub/63ca9147de530c3ec23826c5", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316633, + 48.763962 + ] + }, + "properties": { + "operator": "WattzHub | FR*SMI", + "owner:ref:FR:SIREN": "", + "email": "contact@wattzhub.com", + "phone": "", + "network": "WattzHub", + "ref:EU:EVSE": "Non concerné", + "ref": "756459", + "name": "WattzHub/63ca9147de530c3ec23826c5", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316633, + 48.763962 + ] + }, + "properties": { + "operator": "WattzHub | FR*SMI", + "owner:ref:FR:SIREN": "", + "email": "contact@wattzhub.com", + "phone": "", + "network": "WattzHub", + "ref:EU:EVSE": "Non concerné", + "ref": "756459", + "name": "WattzHub/63ca9147de530c3ec23826c5", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316633, + 48.763962 + ] + }, + "properties": { + "operator": "WattzHub | FR*SMI", + "owner:ref:FR:SIREN": "", + "email": "contact@wattzhub.com", + "phone": "", + "network": "WattzHub", + "ref:EU:EVSE": "Non concerné", + "ref": "756459", + "name": "WattzHub/63ca9147de530c3ec23826c5", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316633, + 48.763962 + ] + }, + "properties": { + "operator": "WattzHub | FR*SMI", + "owner:ref:FR:SIREN": "", + "email": "contact@wattzhub.com", + "phone": "", + "network": "WattzHub", + "ref:EU:EVSE": "Non concerné", + "ref": "756459", + "name": "WattzHub/63ca9147de530c3ec23826c5", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.698781, + 43.448498 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "292766", + "name": "Proviridis/5e6761cec45ed2000c3e0279", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.698781, + 43.448498 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "292766", + "name": "Proviridis/5e6761cec45ed2000c3e0279", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.698781, + 43.448498 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "292766", + "name": "Proviridis/5e6761cec45ed2000c3e0279", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.802572, + 43.627679 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "704399", + "name": "Proviridis/5ecd3c70a176410007f744c4", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.745177, + 44.558061 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706307", + "name": "WAAT/FRWATLZ9MC0PFX", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.08972, + 43.597586 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "413753", + "name": "WAAT/FRWATLZ5QJMPXR", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805344", + "name": "WAAT/FRWATLYHS1JLJC", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.370444, + 48.689668 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "690500", + "name": "WAAT/FRWATLYYZQRJIS", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805344", + "name": "WAAT/FRWATLYHS1JLJC", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805344", + "name": "WAAT/FRWATLYHS1JLJC", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805344", + "name": "WAAT/FRWATLYHS1JLJC", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805344", + "name": "WAAT/FRWATLYHS1JLJC", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805344", + "name": "WAAT/FRWATLYHS1JLJC", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805344", + "name": "WAAT/FRWATLYHS1JLJC", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805344", + "name": "WAAT/FRWATLYHS1JLJC", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805344", + "name": "WAAT/FRWATLYHS1JLJC", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805344", + "name": "WAAT/FRWATLYHS1JLJC", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805344", + "name": "WAAT/FRWATLYHS1JLJC", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805344", + "name": "WAAT/FRWATLYHS1JLJC", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805344", + "name": "WAAT/FRWATLYHS1JLJC", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805344", + "name": "WAAT/FRWATLYHS1JLJC", + "capacity": "16", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.160763, + 49.341954 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "538382", + "name": "WAAT/FRWATLYKBWVXWW", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.160763, + 49.341954 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "538382", + "name": "WAAT/FRWATLYKBWVXWW", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.084763, + 47.992697 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781629", + "name": "WAAT/FRWATLYTBZBMKT", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.084763, + 47.992697 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781629", + "name": "WAAT/FRWATLYTBZBMKT", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.815115, + 50.428374 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "756801", + "name": "WAAT/FRWATLYXODUTQW", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.815115, + 50.428374 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "756801", + "name": "WAAT/FRWATLYXODUTQW", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.002737, + 43.186433 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "590840", + "name": "WAAT/FRWATLSGZEYO9K", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-09-29", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.057488, + 47.338265 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "801984", + "name": "WAAT/FRWATLSTZOWBN0", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.566679, + 50.418546 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805314", + "name": "WAAT/FRWATLSWGLIS6T", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.566679, + 50.418546 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805314", + "name": "WAAT/FRWATLSWGLIS6T", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.041879, + 43.400714 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706280", + "name": "WAAT/FRWATLTGDFSVCU", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.041879, + 43.400714 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706280", + "name": "WAAT/FRWATLTGDFSVCU", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2338, + 48.820606 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "756807", + "name": "WAAT/FRWATLTHE0HWKF", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2338, + 48.820606 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "756807", + "name": "WAAT/FRWATLTHE0HWKF", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2338, + 48.820606 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "756807", + "name": "WAAT/FRWATLTHE0HWKF", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2338, + 48.820606 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "756807", + "name": "WAAT/FRWATLTHE0HWKF", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2338, + 48.820606 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "756807", + "name": "WAAT/FRWATLTHE0HWKF", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2338, + 48.820606 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "756807", + "name": "WAAT/FRWATLTHE0HWKF", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.148137, + 48.782566 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "516266", + "name": "WAAT/FRWATLTPHCKJIW", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.148137, + 48.782566 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "516266", + "name": "WAAT/FRWATLTPHCKJIW", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.148137, + 48.782566 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "516266", + "name": "WAAT/FRWATLTPHCKJIW", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.148137, + 48.782566 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "516266", + "name": "WAAT/FRWATLTPHCKJIW", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.299509, + 48.98314 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "703292", + "name": "WAAT/FRWATLTS4POMNX", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.299509, + 48.98314 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "703292", + "name": "WAAT/FRWATLTS4POMNX", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.043626, + 43.151848 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "767208", + "name": "WAAT/FRWATLTSR7NT6W", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.043626, + 43.151848 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "767208", + "name": "WAAT/FRWATLTSR7NT6W", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.002737, + 43.186433 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "590840", + "name": "WAAT/FRWATLSGZEYO9K", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-09-29", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.998446, + 50.611664 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "588713", + "name": "WAAT/FRWATLSERLSO2C", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.468012, + 48.414563 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706283", + "name": "WAAT/FRWATLUHJ9HRDL", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.998446, + 50.611664 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "588713", + "name": "WAAT/FRWATLSERLSO2C", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-09-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.982864, + 43.909005 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "528131", + "name": "WAAT/FRWATLQGUVWD5X", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.544192, + 44.849567 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851889", + "name": "WAAT/FRWATLQJUWFJZU", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.544192, + 44.849567 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851889", + "name": "WAAT/FRWATLQJUWFJZU", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.001006, + 43.65229 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "544748", + "name": "WAAT/FRWATLQKV15JA2", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.001006, + 43.65229 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "544748", + "name": "WAAT/FRWATLQKV15JA2", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.373755, + 43.335637 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706268", + "name": "WAAT/FRWATLQSDPM78G", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.373755, + 43.335637 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706268", + "name": "WAAT/FRWATLQSDPM78G", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258726, + 48.821132 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706271", + "name": "WAAT/FRWATLQSFBRLVT", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.156842, + 50.717828 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747303", + "name": "WAAT/FRWATLQTERNMCN", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.892216, + 50.421265 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781620", + "name": "WAAT/FRWATLQXZAAQRS", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.892216, + 50.421265 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781620", + "name": "WAAT/FRWATLQXZAAQRS", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258726, + 48.821132 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706274", + "name": "WAAT/FRWATLRBAQ64T0", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.655923, + 47.424479 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "613612", + "name": "WAAT/FRWATLRGFLBJJO", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.655923, + 47.424479 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "613612", + "name": "WAAT/FRWATLRGFLBJJO", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.383996, + 43.844813 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "577502", + "name": "WAAT/FRWATLRLHFEVEF", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.642176, + 50.522053 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "538379", + "name": "WAAT/FRWATLRNDNWYX4", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.642176, + 50.522053 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "538379", + "name": "WAAT/FRWATLRNDNWYX4", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.369939, + 47.757525 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706277", + "name": "WAAT/FRWATLRNPFDI29", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.369939, + 47.757525 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706277", + "name": "WAAT/FRWATLRNPFDI29", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.468012, + 48.414563 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706283", + "name": "WAAT/FRWATLUHJ9HRDL", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34242, + 48.941721 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "577508", + "name": "WAAT/FRWATLUHMXIYZM", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-09-29", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34242, + 48.941721 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "577508", + "name": "WAAT/FRWATLUHMXIYZM", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-09-29", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.165995, + 45.652956 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851895", + "name": "WAAT/FRWATLUHV7OMEW", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.899717, + 42.725495 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815427", + "name": "WAAT/FRWATLUL6LWON2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.899717, + 42.725495 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815427", + "name": "WAAT/FRWATLUL6LWON2", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.899717, + 42.725495 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815427", + "name": "WAAT/FRWATLUL6LWON2", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.227624, + 50.176641 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "743940", + "name": "WAAT/FRWATLUPKN0W4E", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.890093, + 43.591561 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706286", + "name": "WAAT/FRWATLUUAGUSWV", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.890093, + 43.591561 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706286", + "name": "WAAT/FRWATLUUAGUSWV", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.744211, + 47.656289 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706289", + "name": "WAAT/FRWATLUUAJF9DL", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.744211, + 47.656289 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706289", + "name": "WAAT/FRWATLUUAJF9DL", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.112697, + 49.041779 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706292", + "name": "WAAT/FRWATLUUDS1NJZ", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.112697, + 49.041779 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706292", + "name": "WAAT/FRWATLUUDS1NJZ", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.704475, + 47.341021 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805326", + "name": "WAAT/FRWATLV3VEHA2V", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.704475, + 47.341021 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805326", + "name": "WAAT/FRWATLV3VEHA2V", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.852179, + 43.115819 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828303", + "name": "WAAT/FRWATLVBL6QJMI", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.852179, + 43.115819 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828303", + "name": "WAAT/FRWATLVBL6QJMI", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.901545, + 42.690812 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805329", + "name": "WAAT/FRWATLVDWTY2CK", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.901545, + 42.690812 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805329", + "name": "WAAT/FRWATLVDWTY2CK", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56281, + 50.4117 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805332", + "name": "WAAT/FRWATLVFECV787", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277622, + 48.832969 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747309", + "name": "WAAT/FRWATLVIINCX5O", + "capacity": "41", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.802572, + 43.627679 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "704399", + "name": "Proviridis/5ecd3c70a176410007f744c4", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.802572, + 43.627679 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "704399", + "name": "Proviridis/5ecd3c70a176410007f744c4", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.016488, + 43.823233 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "370046", + "name": "Proviridis/5ecd3f9aa176410007f744d8", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383561, + 48.801029 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815796", + "name": "GreenYellow Shift Mobility/16", + "capacity": "15", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383561, + 48.801029 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815796", + "name": "GreenYellow Shift Mobility/16", + "capacity": "15", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431899, + 48.903847 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840458", + "name": "GreenYellow Shift Mobility/17", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-29", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.846141, + 47.898355 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815799", + "name": "GreenYellow Shift Mobility/18", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.846141, + 47.898355 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815799", + "name": "GreenYellow Shift Mobility/18", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.846141, + 47.898355 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815799", + "name": "GreenYellow Shift Mobility/18", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.846141, + 47.898355 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815799", + "name": "GreenYellow Shift Mobility/18", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.846141, + 47.898355 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815799", + "name": "GreenYellow Shift Mobility/18", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.846141, + 47.898355 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815799", + "name": "GreenYellow Shift Mobility/18", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.846141, + 47.898355 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815799", + "name": "GreenYellow Shift Mobility/18", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.846141, + 47.898355 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815799", + "name": "GreenYellow Shift Mobility/18", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540527, + 48.798316 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840460", + "name": "GreenYellow Shift Mobility/19", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540527, + 48.798316 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840460", + "name": "GreenYellow Shift Mobility/19", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540527, + 48.798316 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840460", + "name": "GreenYellow Shift Mobility/19", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540527, + 48.798316 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840460", + "name": "GreenYellow Shift Mobility/19", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540527, + 48.798316 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840460", + "name": "GreenYellow Shift Mobility/19", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540527, + 48.798316 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840460", + "name": "GreenYellow Shift Mobility/19", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540527, + 48.798316 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840460", + "name": "GreenYellow Shift Mobility/19", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540527, + 48.798316 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840460", + "name": "GreenYellow Shift Mobility/19", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540527, + 48.798316 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840460", + "name": "GreenYellow Shift Mobility/19", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383561, + 48.801029 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815796", + "name": "GreenYellow Shift Mobility/16", + "capacity": "15", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383561, + 48.801029 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815796", + "name": "GreenYellow Shift Mobility/16", + "capacity": "15", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540527, + 48.798316 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840460", + "name": "GreenYellow Shift Mobility/19", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383561, + 48.801029 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815796", + "name": "GreenYellow Shift Mobility/16", + "capacity": "15", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.109533, + 49.413475 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840456", + "name": "GreenYellow Shift Mobility/15", + "capacity": "13", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.109533, + 49.413475 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840456", + "name": "GreenYellow Shift Mobility/15", + "capacity": "13", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.109533, + 49.413475 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840456", + "name": "GreenYellow Shift Mobility/15", + "capacity": "13", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.109533, + 49.413475 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840456", + "name": "GreenYellow Shift Mobility/15", + "capacity": "13", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.109533, + 49.413475 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840456", + "name": "GreenYellow Shift Mobility/15", + "capacity": "13", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.109533, + 49.413475 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840456", + "name": "GreenYellow Shift Mobility/15", + "capacity": "13", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.109533, + 49.413475 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840456", + "name": "GreenYellow Shift Mobility/15", + "capacity": "13", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.109533, + 49.413475 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840456", + "name": "GreenYellow Shift Mobility/15", + "capacity": "13", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.109533, + 49.413475 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840456", + "name": "GreenYellow Shift Mobility/15", + "capacity": "13", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383561, + 48.801029 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815796", + "name": "GreenYellow Shift Mobility/16", + "capacity": "15", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383561, + 48.801029 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815796", + "name": "GreenYellow Shift Mobility/16", + "capacity": "15", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383561, + 48.801029 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815796", + "name": "GreenYellow Shift Mobility/16", + "capacity": "15", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383561, + 48.801029 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815796", + "name": "GreenYellow Shift Mobility/16", + "capacity": "15", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383561, + 48.801029 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815796", + "name": "GreenYellow Shift Mobility/16", + "capacity": "15", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383561, + 48.801029 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815796", + "name": "GreenYellow Shift Mobility/16", + "capacity": "15", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383561, + 48.801029 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815796", + "name": "GreenYellow Shift Mobility/16", + "capacity": "15", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383561, + 48.801029 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815796", + "name": "GreenYellow Shift Mobility/16", + "capacity": "15", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383561, + 48.801029 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815796", + "name": "GreenYellow Shift Mobility/16", + "capacity": "15", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383561, + 48.801029 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "815796", + "name": "GreenYellow Shift Mobility/16", + "capacity": "15", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540527, + 48.798316 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840460", + "name": "GreenYellow Shift Mobility/19", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540527, + 48.798316 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840460", + "name": "GreenYellow Shift Mobility/19", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.109533, + 49.413475 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840456", + "name": "GreenYellow Shift Mobility/15", + "capacity": "13", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840464", + "name": "GreenYellow Shift Mobility/21", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840464", + "name": "GreenYellow Shift Mobility/21", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840464", + "name": "GreenYellow Shift Mobility/21", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840464", + "name": "GreenYellow Shift Mobility/21", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840464", + "name": "GreenYellow Shift Mobility/21", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840464", + "name": "GreenYellow Shift Mobility/21", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840464", + "name": "GreenYellow Shift Mobility/21", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.143343, + 45.797254 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840466", + "name": "GreenYellow Shift Mobility/22", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.143343, + 45.797254 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840466", + "name": "GreenYellow Shift Mobility/22", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.143343, + 45.797254 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840466", + "name": "GreenYellow Shift Mobility/22", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.143343, + 45.797254 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840466", + "name": "GreenYellow Shift Mobility/22", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.143343, + 45.797254 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840466", + "name": "GreenYellow Shift Mobility/22", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.143343, + 45.797254 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840466", + "name": "GreenYellow Shift Mobility/22", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.143343, + 45.797254 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840466", + "name": "GreenYellow Shift Mobility/22", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.143343, + 45.797254 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840466", + "name": "GreenYellow Shift Mobility/22", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.223229, + 48.895731 + ] + }, + "properties": { + "operator": "Autel Netherlands B.V. | FR*AUT", + "owner:ref:FR:SIREN": "", + "email": "evsupport.eu@autel.com", + "phone": "", + "network": "AUTEL EUROPE GmbH", + "ref:EU:EVSE": "Non concerné", + "ref": "708929", + "name": "AUTEL EUROPE GmbH/250", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75022, + 45.250192 + ] + }, + "properties": { + "operator": "Autel Netherlands B.V. | FR*AUT", + "owner:ref:FR:SIREN": "", + "email": "evsupport.eu@autel.com", + "phone": "", + "network": "AUTEL EUROPE GmbH", + "ref:EU:EVSE": "Non concerné", + "ref": "815082", + "name": "AUTEL EUROPE GmbH/20172", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75022, + 45.250192 + ] + }, + "properties": { + "operator": "Autel Netherlands B.V. | FR*AUT", + "owner:ref:FR:SIREN": "", + "email": "evsupport.eu@autel.com", + "phone": "", + "network": "AUTEL EUROPE GmbH", + "ref:EU:EVSE": "Non concerné", + "ref": "815082", + "name": "AUTEL EUROPE GmbH/20172", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.595174, + 44.388486 + ] + }, + "properties": { + "operator": "Autel Netherlands B.V. | FR*AUT", + "owner:ref:FR:SIREN": "", + "email": "evsupport.eu@autel.com", + "phone": "", + "network": "AUTEL EUROPE GmbH", + "ref:EU:EVSE": "Non concerné", + "ref": "863355", + "name": "AUTEL EUROPE GmbH/20247", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.595174, + 44.388486 + ] + }, + "properties": { + "operator": "Autel Netherlands B.V. | FR*AUT", + "owner:ref:FR:SIREN": "", + "email": "evsupport.eu@autel.com", + "phone": "", + "network": "AUTEL EUROPE GmbH", + "ref:EU:EVSE": "Non concerné", + "ref": "863355", + "name": "AUTEL EUROPE GmbH/20247", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840464", + "name": "GreenYellow Shift Mobility/21", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.595174, + 44.388486 + ] + }, + "properties": { + "operator": "Autel Netherlands B.V. | FR*AUT", + "owner:ref:FR:SIREN": "", + "email": "evsupport.eu@autel.com", + "phone": "", + "network": "AUTEL EUROPE GmbH", + "ref:EU:EVSE": "Non concerné", + "ref": "863355", + "name": "AUTEL EUROPE GmbH/20247", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540527, + 48.798316 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840460", + "name": "GreenYellow Shift Mobility/19", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840464", + "name": "GreenYellow Shift Mobility/21", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540527, + 48.798316 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840460", + "name": "GreenYellow Shift Mobility/19", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540527, + 48.798316 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840460", + "name": "GreenYellow Shift Mobility/19", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.540527, + 48.798316 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840460", + "name": "GreenYellow Shift Mobility/19", + "capacity": "16", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840462", + "name": "GreenYellow Shift Mobility/20", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840462", + "name": "GreenYellow Shift Mobility/20", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840462", + "name": "GreenYellow Shift Mobility/20", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840462", + "name": "GreenYellow Shift Mobility/20", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840462", + "name": "GreenYellow Shift Mobility/20", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840462", + "name": "GreenYellow Shift Mobility/20", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840462", + "name": "GreenYellow Shift Mobility/20", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840462", + "name": "GreenYellow Shift Mobility/20", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840462", + "name": "GreenYellow Shift Mobility/20", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840462", + "name": "GreenYellow Shift Mobility/20", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840462", + "name": "GreenYellow Shift Mobility/20", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840462", + "name": "GreenYellow Shift Mobility/20", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840462", + "name": "GreenYellow Shift Mobility/20", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840462", + "name": "GreenYellow Shift Mobility/20", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840464", + "name": "GreenYellow Shift Mobility/21", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840464", + "name": "GreenYellow Shift Mobility/21", + "capacity": "11", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.109533, + 49.413475 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840456", + "name": "GreenYellow Shift Mobility/15", + "capacity": "13", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.109533, + 49.413475 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840456", + "name": "GreenYellow Shift Mobility/15", + "capacity": "13", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.016488, + 43.823233 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "370046", + "name": "Proviridis/5ecd3f9aa176410007f744d8", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.857081, + 46.823734 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "444132", + "name": "Proviridis/6154153126b5d1a1ca0d1a42", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.857081, + 46.823734 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "444132", + "name": "Proviridis/6154153126b5d1a1ca0d1a42", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.857081, + 46.823734 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "444132", + "name": "Proviridis/6154153126b5d1a1ca0d1a42", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.115141, + 45.88781 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "511193", + "name": "Proviridis/627a5db9627ec747f90abea6", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.115141, + 45.88781 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "511193", + "name": "Proviridis/627a5db9627ec747f90abea6", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.115141, + 45.88781 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "511193", + "name": "Proviridis/627a5db9627ec747f90abea6", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.115141, + 45.88781 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "511193", + "name": "Proviridis/627a5db9627ec747f90abea6", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.115141, + 45.88781 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "511193", + "name": "Proviridis/627a5db9627ec747f90abea6", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.115141, + 45.88781 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "511193", + "name": "Proviridis/627a5db9627ec747f90abea6", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.135413, + 43.39569 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "759999", + "name": "Proviridis/64103225e68d736255229995", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.135413, + 43.39569 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "759999", + "name": "Proviridis/64103225e68d736255229995", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.135413, + 43.39569 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "759999", + "name": "Proviridis/64103225e68d736255229995", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-31", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.259945, + 46.228058 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "767091", + "name": "Proviridis/6426d2f8e68d7362559e5b6f", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.259945, + 46.228058 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "767091", + "name": "Proviridis/6426d2f8e68d7362559e5b6f", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.259945, + 46.228058 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "767091", + "name": "Proviridis/6426d2f8e68d7362559e5b6f", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.259945, + 46.228058 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "767091", + "name": "Proviridis/6426d2f8e68d7362559e5b6f", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.259945, + 46.228058 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "767091", + "name": "Proviridis/6426d2f8e68d7362559e5b6f", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.259945, + 46.228058 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "767091", + "name": "Proviridis/6426d2f8e68d7362559e5b6f", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.259945, + 46.228058 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "767091", + "name": "Proviridis/6426d2f8e68d7362559e5b6f", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.259945, + 46.228058 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "767091", + "name": "Proviridis/6426d2f8e68d7362559e5b6f", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.857081, + 46.823734 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "444132", + "name": "Proviridis/6154153126b5d1a1ca0d1a42", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.857081, + 46.823734 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "444132", + "name": "Proviridis/6154153126b5d1a1ca0d1a42", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.982252, + 43.152727 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "767730", + "name": "Proviridis/64350b4bef5e26b006d5302a", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.857081, + 46.823734 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "444132", + "name": "Proviridis/6154153126b5d1a1ca0d1a42", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.016488, + 43.823233 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "370046", + "name": "Proviridis/5ecd3f9aa176410007f744d8", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.016488, + 43.823233 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "370046", + "name": "Proviridis/5ecd3f9aa176410007f744d8", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.016488, + 43.823233 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "370046", + "name": "Proviridis/5ecd3f9aa176410007f744d8", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.016488, + 43.823233 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "370046", + "name": "Proviridis/5ecd3f9aa176410007f744d8", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.016488, + 43.823233 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "370046", + "name": "Proviridis/5ecd3f9aa176410007f744d8", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.016488, + 43.823233 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "370046", + "name": "Proviridis/5ecd3f9aa176410007f744d8", + "capacity": "14", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.977228, + 50.453083 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "704402", + "name": "Proviridis/606d5b4012c27d000816185b", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-16", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.977228, + 50.453083 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "704402", + "name": "Proviridis/606d5b4012c27d000816185b", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-16", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.977228, + 50.453083 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "704402", + "name": "Proviridis/606d5b4012c27d000816185b", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-16", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.977228, + 50.453083 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "704402", + "name": "Proviridis/606d5b4012c27d000816185b", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-16", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.977228, + 50.453083 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "704402", + "name": "Proviridis/606d5b4012c27d000816185b", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-16", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.817536, + 43.801133 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "402194", + "name": "Proviridis/60ba0d0f2cf3d9000cac817a", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.817536, + 43.801133 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "402194", + "name": "Proviridis/60ba0d0f2cf3d9000cac817a", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.817536, + 43.801133 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "402194", + "name": "Proviridis/60ba0d0f2cf3d9000cac817a", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.817536, + 43.801133 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "402194", + "name": "Proviridis/60ba0d0f2cf3d9000cac817a", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.857081, + 46.823734 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "444132", + "name": "Proviridis/6154153126b5d1a1ca0d1a42", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.857081, + 46.823734 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "444132", + "name": "Proviridis/6154153126b5d1a1ca0d1a42", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.857081, + 46.823734 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "444132", + "name": "Proviridis/6154153126b5d1a1ca0d1a42", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.857081, + 46.823734 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "444132", + "name": "Proviridis/6154153126b5d1a1ca0d1a42", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.259945, + 46.228058 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "767091", + "name": "Proviridis/6426d2f8e68d7362559e5b6f", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.982252, + 43.152727 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "767730", + "name": "Proviridis/64350b4bef5e26b006d5302a", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.109533, + 49.413475 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840456", + "name": "GreenYellow Shift Mobility/15", + "capacity": "13", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.979827, + 50.402145 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840450", + "name": "GreenYellow Shift Mobility/12", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.979827, + 50.402145 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840450", + "name": "GreenYellow Shift Mobility/12", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.772177, + 45.809544 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840452", + "name": "GreenYellow Shift Mobility/13", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.772177, + 45.809544 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840452", + "name": "GreenYellow Shift Mobility/13", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.772177, + 45.809544 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840452", + "name": "GreenYellow Shift Mobility/13", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.772177, + 45.809544 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840452", + "name": "GreenYellow Shift Mobility/13", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.772177, + 45.809544 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840452", + "name": "GreenYellow Shift Mobility/13", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.772177, + 45.809544 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840452", + "name": "GreenYellow Shift Mobility/13", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.772177, + 45.809544 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840452", + "name": "GreenYellow Shift Mobility/13", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.772177, + 45.809544 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840452", + "name": "GreenYellow Shift Mobility/13", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.011858, + 49.261551 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840454", + "name": "GreenYellow Shift Mobility/14", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.011858, + 49.261551 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840454", + "name": "GreenYellow Shift Mobility/14", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.011858, + 49.261551 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840454", + "name": "GreenYellow Shift Mobility/14", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.011858, + 49.261551 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840454", + "name": "GreenYellow Shift Mobility/14", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.011858, + 49.261551 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840454", + "name": "GreenYellow Shift Mobility/14", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.011858, + 49.261551 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840454", + "name": "GreenYellow Shift Mobility/14", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.011858, + 49.261551 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840454", + "name": "GreenYellow Shift Mobility/14", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.011858, + 49.261551 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840454", + "name": "GreenYellow Shift Mobility/14", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.011858, + 49.261551 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840454", + "name": "GreenYellow Shift Mobility/14", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.011858, + 49.261551 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840454", + "name": "GreenYellow Shift Mobility/14", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.979827, + 50.402145 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840450", + "name": "GreenYellow Shift Mobility/12", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.979827, + 50.402145 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840450", + "name": "GreenYellow Shift Mobility/12", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.982252, + 43.152727 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "767730", + "name": "Proviridis/64350b4bef5e26b006d5302a", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.979827, + 50.402145 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840450", + "name": "GreenYellow Shift Mobility/12", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.982252, + 43.152727 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "767730", + "name": "Proviridis/64350b4bef5e26b006d5302a", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.982252, + 43.152727 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "767730", + "name": "Proviridis/64350b4bef5e26b006d5302a", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.982252, + 43.152727 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "767730", + "name": "Proviridis/64350b4bef5e26b006d5302a", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.052693, + 43.627499 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "817149", + "name": "Proviridis/64887183b4e64d28ce32e1c4", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-16", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.052693, + 43.627499 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "817149", + "name": "Proviridis/64887183b4e64d28ce32e1c4", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-16", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.052693, + 43.627499 + ] + }, + "properties": { + "operator": "Proviridis | FR*PVD", + "owner:ref:FR:SIREN": "", + "email": "data.gouv@proviridis.fr", + "phone": "", + "network": "Proviridis", + "ref:EU:EVSE": "Non concerné", + "ref": "817149", + "name": "Proviridis/64887183b4e64d28ce32e1c4", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-16", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.251435, + 48.886998 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "817419", + "name": "GreenYellow Shift Mobility/1", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.251435, + 48.886998 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "817419", + "name": "GreenYellow Shift Mobility/1", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.516744, + 43.462911 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840448", + "name": "GreenYellow Shift Mobility/11", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.516744, + 43.462911 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840448", + "name": "GreenYellow Shift Mobility/11", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.516744, + 43.462911 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840448", + "name": "GreenYellow Shift Mobility/11", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.516744, + 43.462911 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840448", + "name": "GreenYellow Shift Mobility/11", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.516744, + 43.462911 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840448", + "name": "GreenYellow Shift Mobility/11", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.516744, + 43.462911 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840448", + "name": "GreenYellow Shift Mobility/11", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.979827, + 50.402145 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840450", + "name": "GreenYellow Shift Mobility/12", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.979827, + 50.402145 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840450", + "name": "GreenYellow Shift Mobility/12", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.979827, + 50.402145 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840450", + "name": "GreenYellow Shift Mobility/12", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.979827, + 50.402145 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840450", + "name": "GreenYellow Shift Mobility/12", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.979827, + 50.402145 + ] + }, + "properties": { + "operator": "GreenYellow | FR*GYM", + "owner:ref:FR:SIREN": "", + "email": "emobility.exploit@greenyellow.fr", + "phone": "", + "network": "GreenYellow Shift Mobility", + "ref:EU:EVSE": "Non concerné", + "ref": "840450", + "name": "GreenYellow Shift Mobility/12", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "False", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.435014, + 46.6709 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706265", + "name": "WAAT/FRWATLQCD2E6Q7", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.435014, + 46.6709 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706265", + "name": "WAAT/FRWATLQCD2E6Q7", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.285347, + 48.90836 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "690494", + "name": "WAAT/FRWATLQA7Y4AG5", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85769, + 45.716101 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708689", + "name": "WAAT/FRWATLGQD1LPWL", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.269258, + 45.59568 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708692", + "name": "WAAT/FRWATLH3W7FDYX", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.269258, + 45.59568 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708692", + "name": "WAAT/FRWATLH3W7FDYX", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77883, + 45.80878 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708698", + "name": "WAAT/FRWATLMCEBBWOT", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77883, + 45.80878 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708698", + "name": "WAAT/FRWATLMCEBBWOT", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.818807, + 45.903665 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706634", + "name": "WAAT/FRWATLSAEWKSQU", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.818807, + 45.903665 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706634", + "name": "WAAT/FRWATLSAEWKSQU", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.818807, + 45.903665 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706634", + "name": "WAAT/FRWATLSAEWKSQU", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.844539, + 45.711876 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747291", + "name": "WAAT/FRWATLFM7KUKJC", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258726, + 48.821132 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706166", + "name": "WAAT/FRWATL1GPMG5OS", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258726, + 48.821132 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706169", + "name": "WAAT/FRWATL1OMJ8N5Q", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.201649, + 43.688165 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "368743", + "name": "WAAT/FRWATL1RSQIEXF", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-05-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.201649, + 43.688165 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "368743", + "name": "WAAT/FRWATL1RSQIEXF", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-05-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258726, + 48.821132 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706172", + "name": "WAAT/FRWATL2J32KDYZ", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.111948, + 45.896714 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "690476", + "name": "WAAT/FRWATL2RRHY5F2", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.560478, + 48.837149 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "690479", + "name": "WAAT/FRWATL2XAXKERV", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.261835, + 43.342364 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "690482", + "name": "WAAT/FRWATL3THTYNG3", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.261835, + 43.342364 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "690482", + "name": "WAAT/FRWATL3THTYNG3", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851892", + "name": "WAAT/FRWATLTGYYL2GH", + "capacity": "52", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789180", + "name": "WAAT/FRWA1LSPQ1HA6Z", + "capacity": "19", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85769, + 45.716101 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708689", + "name": "WAAT/FRWATLGQD1LPWL", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.844539, + 45.711876 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747291", + "name": "WAAT/FRWATLFM7KUKJC", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.261835, + 43.342364 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "690482", + "name": "WAAT/FRWATL3THTYNG3", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.787218, + 46.794239 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741699", + "name": "WAAT/FRWATLP4QJIJA8", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317971, + 48.674145 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741702", + "name": "WAAT/FRWATLRCFIE15G", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317971, + 48.674145 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741702", + "name": "WAAT/FRWATLRCFIE15G", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317971, + 48.674145 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741702", + "name": "WAAT/FRWATLRCFIE15G", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.303434, + 48.690335 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741705", + "name": "WAAT/FRWATLRRQFZAKL", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.303434, + 48.690335 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741705", + "name": "WAAT/FRWATLRRQFZAKL", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.303434, + 48.690335 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741705", + "name": "WAAT/FRWATLRRQFZAKL", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.303434, + 48.690335 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741705", + "name": "WAAT/FRWATLRRQFZAKL", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.372832, + 43.600631 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741708", + "name": "WAAT/FRWATLSABVB5MK", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.368138, + 43.602861 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741711", + "name": "WAAT/FRWATLSMMU5BWU", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.368138, + 43.602861 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741711", + "name": "WAAT/FRWATLSMMU5BWU", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.368138, + 43.602861 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741711", + "name": "WAAT/FRWATLSMMU5BWU", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.803755, + 43.710421 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741714", + "name": "WAAT/FRWATLUZYTD7R3", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.803755, + 43.710421 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741714", + "name": "WAAT/FRWATLUZYTD7R3", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.803755, + 43.710421 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741714", + "name": "WAAT/FRWATLUZYTD7R3", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.803755, + 43.710421 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741714", + "name": "WAAT/FRWATLUZYTD7R3", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86124, + 44.314247 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741717", + "name": "WAAT/FRWATLW3HMAQYD", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86124, + 44.314247 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741717", + "name": "WAAT/FRWATLW3HMAQYD", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.575756, + 45.897811 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741720", + "name": "WAAT/FRWATLYSZHWF8J", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.023903, + 44.928469 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741723", + "name": "WAAT/FRWATLYUBNAU26", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317971, + 48.674145 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741702", + "name": "WAAT/FRWATLRCFIE15G", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.787218, + 46.794239 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741699", + "name": "WAAT/FRWATLP4QJIJA8", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.023903, + 44.928469 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741723", + "name": "WAAT/FRWATLYUBNAU26", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.190834, + 48.766404 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741696", + "name": "WAAT/FRWATLNMWOBCAB", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.036066, + 42.907836 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741678", + "name": "WAAT/FRWATLDP3NV8JO", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.036066, + 42.907836 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741678", + "name": "WAAT/FRWATLDP3NV8JO", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.036066, + 42.907836 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741678", + "name": "WAAT/FRWATLDP3NV8JO", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.036066, + 42.907836 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741678", + "name": "WAAT/FRWATLDP3NV8JO", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.107127, + 47.121343 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741681", + "name": "WAAT/FRWATLEMXMAEOR", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.107127, + 47.121343 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741681", + "name": "WAAT/FRWATLEMXMAEOR", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.107127, + 47.121343 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741681", + "name": "WAAT/FRWATLEMXMAEOR", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.725223, + 45.096274 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741687", + "name": "WAAT/FRWATLHFSA4JE9", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.725223, + 45.096274 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741687", + "name": "WAAT/FRWATLHFSA4JE9", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.524365, + 48.863001 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741690", + "name": "WAAT/FRWATLHZFRHZRF", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.524365, + 48.863001 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741690", + "name": "WAAT/FRWATLHZFRHZRF", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.070324, + 48.894506 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741693", + "name": "WAAT/FRWATLKDX0BWGD", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.070324, + 48.894506 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741693", + "name": "WAAT/FRWATLKDX0BWGD", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.29256, + 43.691865 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787242", + "name": "WAAT/FRWATLLMZBF2VO", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.29256, + 43.691865 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787242", + "name": "WAAT/FRWATLLMZBF2VO", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.29256, + 43.691865 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787242", + "name": "WAAT/FRWATLLMZBF2VO", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.29256, + 43.691865 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787242", + "name": "WAAT/FRWATLLMZBF2VO", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.190834, + 48.766404 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741696", + "name": "WAAT/FRWATLNMWOBCAB", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.190834, + 48.766404 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741696", + "name": "WAAT/FRWATLNMWOBCAB", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.023903, + 44.928469 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741723", + "name": "WAAT/FRWATLYUBNAU26", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.023903, + 44.928469 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741723", + "name": "WAAT/FRWATLYUBNAU26", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902871, + 44.420364 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708686", + "name": "WAAT/FRWATLBZJBORNV", + "capacity": "8", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.012437, + 43.578109 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708674", + "name": "WAAT/FRWA5LQ0CHCRRH", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.201649, + 43.688165 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708677", + "name": "WAAT/FRWA5LUKRLHF6A", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.201649, + 43.688165 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708677", + "name": "WAAT/FRWA5LUKRLHF6A", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578569, + 45.382478 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708680", + "name": "WAAT/FRWA5LYO2JCJWD", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578569, + 45.382478 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708680", + "name": "WAAT/FRWA5LYO2JCJWD", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.416422, + 45.449333 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708683", + "name": "WAAT/FRWATL2AA7QJB8", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.416422, + 45.449333 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708683", + "name": "WAAT/FRWATL2AA7QJB8", + "capacity": "8", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.416422, + 45.449333 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708683", + "name": "WAAT/FRWATL2AA7QJB8", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.416422, + 45.449333 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708683", + "name": "WAAT/FRWATL2AA7QJB8", + "capacity": "8", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.416422, + 45.449333 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708683", + "name": "WAAT/FRWATL2AA7QJB8", + "capacity": "8", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.416422, + 45.449333 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708683", + "name": "WAAT/FRWATL2AA7QJB8", + "capacity": "8", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.416422, + 45.449333 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708683", + "name": "WAAT/FRWATL2AA7QJB8", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.416422, + 45.449333 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708683", + "name": "WAAT/FRWATL2AA7QJB8", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902871, + 44.420364 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708686", + "name": "WAAT/FRWATLBZJBORNV", + "capacity": "8", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902871, + 44.420364 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708686", + "name": "WAAT/FRWATLBZJBORNV", + "capacity": "8", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902871, + 44.420364 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708686", + "name": "WAAT/FRWATLBZJBORNV", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902871, + 44.420364 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708686", + "name": "WAAT/FRWATLBZJBORNV", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902871, + 44.420364 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708686", + "name": "WAAT/FRWATLBZJBORNV", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902871, + 44.420364 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708686", + "name": "WAAT/FRWATLBZJBORNV", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902871, + 44.420364 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708686", + "name": "WAAT/FRWATLBZJBORNV", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.012437, + 43.578109 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708674", + "name": "WAAT/FRWA5LQ0CHCRRH", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.677952, + 45.192056 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708671", + "name": "WAAT/FRWA5LBW5OXT72", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.724571, + 43.782834 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741726", + "name": "WAAT/FRWATLZRQ6VAXD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.677952, + 45.192056 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "708671", + "name": "WAAT/FRWA5LBW5OXT72", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.724571, + 43.782834 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741726", + "name": "WAAT/FRWATLZRQ6VAXD", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.724571, + 43.782834 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741726", + "name": "WAAT/FRWATLZRQ6VAXD", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.724571, + 43.782834 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA6", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "741726", + "name": "WAAT/FRWATLZRQ6VAXD", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA8", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "771702", + "name": "WAAT/FRWA7LZPUFV4BH", + "capacity": "10", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA8", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "771702", + "name": "WAAT/FRWA7LZPUFV4BH", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA8", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "771702", + "name": "WAAT/FRWA7LZPUFV4BH", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA8", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "771702", + "name": "WAAT/FRWA7LZPUFV4BH", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA8", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "771702", + "name": "WAAT/FRWA7LZPUFV4BH", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA8", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "771702", + "name": "WAAT/FRWA7LZPUFV4BH", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA8", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "771702", + "name": "WAAT/FRWA7LZPUFV4BH", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA8", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "771702", + "name": "WAAT/FRWA7LZPUFV4BH", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA8", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "771702", + "name": "WAAT/FRWA7LZPUFV4BH", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA8", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "771702", + "name": "WAAT/FRWA7LZPUFV4BH", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.092405, + 48.784673 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA8", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828297", + "name": "WAAT/FRWA8LF5RZBZY6", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.092405, + 48.784673 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA8", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828297", + "name": "WAAT/FRWA8LF5RZBZY6", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.092405, + 48.784673 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA8", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828297", + "name": "WAAT/FRWA8LF5RZBZY6", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.415964, + 43.29045 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805227", + "name": "WAAT/FRWA3LSIOBOB8G", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.415964, + 43.29045 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805227", + "name": "WAAT/FRWA3LSIOBOB8G", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.415964, + 43.29045 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA9", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805227", + "name": "WAAT/FRWA3LSIOBOB8G", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.261835, + 43.342364 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "690482", + "name": "WAAT/FRWATL3THTYNG3", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.261835, + 43.342364 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "690482", + "name": "WAAT/FRWATL3THTYNG3", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.526772, + 49.061943 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "577496", + "name": "WAAT/FRWATLQ9YOJVXX", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-09-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "675536", + "name": "WAAT/FRWATLJM4BM03O", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "675536", + "name": "WAAT/FRWATLJM4BM03O", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "675536", + "name": "WAAT/FRWATLJM4BM03O", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "675536", + "name": "WAAT/FRWATLJM4BM03O", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.648388, + 48.526901 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706226", + "name": "WAAT/FRWATLJNY1MSZ2", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.648388, + 48.526901 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706226", + "name": "WAAT/FRWATLJNY1MSZ2", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.082393, + 43.595316 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "518108", + "name": "WAAT/FRWATLJOSZ1QV8", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-06-03", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "675539", + "name": "WAAT/FRWATLJPHEGM6Q", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "675539", + "name": "WAAT/FRWATLJPHEGM6Q", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "675539", + "name": "WAAT/FRWATLJPHEGM6Q", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "675539", + "name": "WAAT/FRWATLJPHEGM6Q", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "675539", + "name": "WAAT/FRWATLJPHEGM6Q", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "675539", + "name": "WAAT/FRWATLJPHEGM6Q", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.114644, + 50.625463 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706229", + "name": "WAAT/FRWATLJPSKGCTQ", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.114644, + 50.625463 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706229", + "name": "WAAT/FRWATLJPSKGCTQ", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.082401, + 43.595318 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "523592", + "name": "WAAT/FRWATLJUCHHWNF", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-06-29", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31026, + 47.742979 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781602", + "name": "WAAT/FRWATLK0BHUBWK", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.31026, + 47.742979 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781602", + "name": "WAAT/FRWATLK0BHUBWK", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.088928, + 50.369704 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "538364", + "name": "WAAT/FRWATLK6CAPHAK", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.735438, + 48.509679 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706232", + "name": "WAAT/FRWATLK9I1ZJEF", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "675536", + "name": "WAAT/FRWATLJM4BM03O", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "675536", + "name": "WAAT/FRWATLJM4BM03O", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.788389, + 43.500559 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "538367", + "name": "WAAT/FRWATLKPELUYAK", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-07-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "675536", + "name": "WAAT/FRWATLJM4BM03O", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.538786, + 43.52748 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "544733", + "name": "WAAT/FRWATLGPWLEBT2", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.538786, + 43.52748 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "544733", + "name": "WAAT/FRWATLGPWLEBT2", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.253828, + 48.954733 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789171", + "name": "WAAT/FRWATLGZ8CLQLV", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.253828, + 48.954733 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "789171", + "name": "WAAT/FRWATLGZ8CLQLV", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.95602, + 43.550743 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706214", + "name": "WAAT/FRWATLH7A3RPHN", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.95602, + 43.550743 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706214", + "name": "WAAT/FRWATLH7A3RPHN", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.329456, + 43.227057 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "697028", + "name": "WAAT/FRWATLHFYY1F34", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.329456, + 43.227057 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "697028", + "name": "WAAT/FRWATLHFYY1F34", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258726, + 48.821132 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706220", + "name": "WAAT/FRWATLHQAD6OVN", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.165448, + 45.652871 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851883", + "name": "WAAT/FRWATLHYVRJTQR", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258726, + 48.821132 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706223", + "name": "WAAT/FRWATLHZZVFSI2", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.012437, + 43.578109 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "368755", + "name": "WAAT/FRWATLIQ0MVM0D", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-05-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.012437, + 43.578109 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "368755", + "name": "WAAT/FRWATLIQ0MVM0D", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-05-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578569, + 45.382478 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "368758", + "name": "WAAT/FRWATLIVGBARL1", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-05-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578569, + 45.382478 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "368758", + "name": "WAAT/FRWATLIVGBARL1", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-05-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230815, + 48.777414 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "577481", + "name": "WAAT/FRWATLIZZWXN0C", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.677952, + 45.192056 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "368761", + "name": "WAAT/FRWATLJGBR372D", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-05-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.677952, + 45.192056 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "368761", + "name": "WAAT/FRWATLJGBR372D", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-05-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "675536", + "name": "WAAT/FRWATLJM4BM03O", + "capacity": "9", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.735438, + 48.509679 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706232", + "name": "WAAT/FRWATLK9I1ZJEF", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.788389, + 43.500559 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "538367", + "name": "WAAT/FRWATLKPELUYAK", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-07-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.681316, + 44.858162 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "588707", + "name": "WAAT/FRWATLGMUYMQBH", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.238002, + 48.978759 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706244", + "name": "WAAT/FRWATLOKR5QDIL", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2564, + 43.341518 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706250", + "name": "WAAT/FRWATLOR5TOUYM", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2564, + 43.341518 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706250", + "name": "WAAT/FRWATLOR5TOUYM", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216901, + 48.912298 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "413747", + "name": "WAAT/FRWATLOUR0PMSQ", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-05-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258726, + 48.821132 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706256", + "name": "WAAT/FRWATLP5YJXT4H", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.999126, + 43.139423 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706259", + "name": "WAAT/FRWATLPCDQS8WN", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.999126, + 43.139423 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706259", + "name": "WAAT/FRWATLPCDQS8WN", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.999126, + 43.139423 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706259", + "name": "WAAT/FRWATLPCDQS8WN", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.58243, + 47.86667 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706262", + "name": "WAAT/FRWATLPMTIPLDG", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.58243, + 47.86667 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706262", + "name": "WAAT/FRWATLPMTIPLDG", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.80693, + 45.216413 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "520115", + "name": "WAAT/FRWATLPOHCFZ2V", + "capacity": "6", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.80693, + 45.216413 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "520115", + "name": "WAAT/FRWATLPOHCFZ2V", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.80693, + 45.216413 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "520115", + "name": "WAAT/FRWATLPOHCFZ2V", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.80693, + 45.216413 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "520115", + "name": "WAAT/FRWATLPOHCFZ2V", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.80693, + 45.216413 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "520115", + "name": "WAAT/FRWATLPOHCFZ2V", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.80693, + 45.216413 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "520115", + "name": "WAAT/FRWATLPOHCFZ2V", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-06-23", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.526772, + 49.061943 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "577493", + "name": "WAAT/FRWATLPUADHR6L", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-09-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.526772, + 49.061943 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "577493", + "name": "WAAT/FRWATLPUADHR6L", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-09-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53466, + 47.49048 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "413750", + "name": "WAAT/FRWATLQ44EPHVZ", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-05-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.526772, + 49.061943 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "577496", + "name": "WAAT/FRWATLQ9YOJVXX", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-09-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.238002, + 48.978759 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706244", + "name": "WAAT/FRWATLOKR5QDIL", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745591, + 50.743319 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781605", + "name": "WAAT/FRWATLN9EZCXXU", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36665, + 43.830335 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706235", + "name": "WAAT/FRWATLLNPBND5L", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.745591, + 50.743319 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781605", + "name": "WAAT/FRWATLN9EZCXXU", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36665, + 43.830335 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706235", + "name": "WAAT/FRWATLLNPBND5L", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.303639, + 46.799906 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805287", + "name": "WAAT/FRWATLM0EL21RA", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.303639, + 46.799906 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805287", + "name": "WAAT/FRWATLM0EL21RA", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.69576, + 48.832096 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "538370", + "name": "WAAT/FRWATLM9VSRAOS", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-07-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.69576, + 48.832096 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "538370", + "name": "WAAT/FRWATLM9VSRAOS", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-07-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.69576, + 48.832096 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "538370", + "name": "WAAT/FRWATLM9VSRAOS", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-07-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.69576, + 48.832096 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "538370", + "name": "WAAT/FRWATLM9VSRAOS", + "capacity": "5", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.69576, + 48.832096 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "538370", + "name": "WAAT/FRWATLM9VSRAOS", + "capacity": "5", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-07-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.272755, + 48.865589 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "767205", + "name": "WAAT/FRWATLMKPGVL3K", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.604714, + 48.795358 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706238", + "name": "WAAT/FRWATLMMCKGEZR", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.604714, + 48.795358 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706238", + "name": "WAAT/FRWATLMMCKGEZR", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732208, + 45.979391 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "484970", + "name": "WAAT/FRWATLMR3PB4ZB", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-05-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.732208, + 45.979391 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "484970", + "name": "WAAT/FRWATLMR3PB4ZB", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-05-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.563105, + 50.411865 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805293", + "name": "WAAT/FRWATLMUCOULYP", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.563105, + 50.411865 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805293", + "name": "WAAT/FRWATLMUCOULYP", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.637348, + 48.094194 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851886", + "name": "WAAT/FRWATLMXO8PNQ2", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.637348, + 48.094194 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851886", + "name": "WAAT/FRWATLMXO8PNQ2", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.100637, + 44.145189 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706241", + "name": "WAAT/FRWATLN3XLUDLR", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.100637, + 44.145189 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706241", + "name": "WAAT/FRWATLN3XLUDLR", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.929122, + 43.638122 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "709151", + "name": "WAAT/FRWATLGOTGCXDM", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.681316, + 44.858162 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "588707", + "name": "WAAT/FRWATLGMUYMQBH", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.261835, + 43.342364 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "690482", + "name": "WAAT/FRWATL3THTYNG3", + "capacity": "6", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.826488, + 50.54838 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "754332", + "name": "WAAT/FRWATL9PJJCC9Y", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.826488, + 50.54838 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "754332", + "name": "WAAT/FRWATL9PJJCC9Y", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.826488, + 50.54838 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "754332", + "name": "WAAT/FRWATL9PJJCC9Y", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.826488, + 50.54838 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "754332", + "name": "WAAT/FRWATL9PJJCC9Y", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.826488, + 50.54838 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "754332", + "name": "WAAT/FRWATL9PJJCC9Y", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.826488, + 50.54838 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "754332", + "name": "WAAT/FRWATL9PJJCC9Y", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.826488, + 50.54838 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "754332", + "name": "WAAT/FRWATL9PJJCC9Y", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.826488, + 50.54838 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "754332", + "name": "WAAT/FRWATL9PJJCC9Y", + "capacity": "10", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.398487, + 48.910105 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "538361", + "name": "WAAT/FRWATLADKDGTVM", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.398487, + 48.910105 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "538361", + "name": "WAAT/FRWATLADKDGTVM", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-07-20", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.058367, + 43.408157 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "756804", + "name": "WAAT/FRWATLALG5SSDF", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.191045, + 43.697144 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851877", + "name": "WAAT/FRWATLANP2K1AU", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.191045, + 43.697144 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851877", + "name": "WAAT/FRWATLANP2K1AU", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.191045, + 43.697144 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851877", + "name": "WAAT/FRWATLANP2K1AU", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.191045, + 43.697144 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851877", + "name": "WAAT/FRWATLANP2K1AU", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.329445, + 43.227068 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "697025", + "name": "WAAT/FRWATLANR2KAFA", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.329445, + 43.227068 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "697025", + "name": "WAAT/FRWATLANR2KAFA", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.899634, + 49.187454 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706184", + "name": "WAAT/FRWATLARTXBPGS", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361568, + 48.915856 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "511325", + "name": "WAAT/FRWATLARWB4JUQ", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361568, + 48.915856 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "511325", + "name": "WAAT/FRWATLARWB4JUQ", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.826488, + 50.54838 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "754332", + "name": "WAAT/FRWATL9PJJCC9Y", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.826488, + 50.54838 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "754332", + "name": "WAAT/FRWATL9PJJCC9Y", + "capacity": "10", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361568, + 48.915856 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "511325", + "name": "WAAT/FRWATLARWB4JUQ", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.679922, + 46.80673 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "671585", + "name": "WAAT/FRWATL9MA6Q6DK", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41904, + 43.389626 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805266", + "name": "WAAT/FRWATL4MYXNRZ0", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41904, + 43.389626 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805266", + "name": "WAAT/FRWATL4MYXNRZ0", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41904, + 43.389626 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805266", + "name": "WAAT/FRWATL4MYXNRZ0", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41904, + 43.389626 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "805266", + "name": "WAAT/FRWATL4MYXNRZ0", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-24", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.167658, + 49.138558 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "626510", + "name": "WAAT/FRWATL5TC9UFYW", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.167658, + 49.138558 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "626510", + "name": "WAAT/FRWATL5TC9UFYW", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-18", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.676798, + 48.869667 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787230", + "name": "WAAT/FRWATL6ALIGFIC", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.088715, + 50.370623 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "538355", + "name": "WAAT/FRWATL6FK5ULVW", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.457406, + 48.779841 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "413735", + "name": "WAAT/FRWATL6N3YCTXT", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825474, + 43.936907 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "613606", + "name": "WAAT/FRWATL7CS7QWKP", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825474, + 43.936907 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "613606", + "name": "WAAT/FRWATL7CS7QWKP", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-11-07", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825474, + 43.936907 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "613606", + "name": "WAAT/FRWATL7CS7QWKP", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258726, + 48.821132 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706178", + "name": "WAAT/FRWATL7WJRCZZ9", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.327724, + 43.228472 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747288", + "name": "WAAT/FRWATL8SNAWGA8", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.327724, + 43.228472 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747288", + "name": "WAAT/FRWATL8SNAWGA8", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.311707, + 47.792137 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "682547", + "name": "WAAT/FRWATL95IR5F1Y", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.311707, + 47.792137 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "682547", + "name": "WAAT/FRWATL95IR5F1Y", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.311707, + 47.792137 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "682547", + "name": "WAAT/FRWATL95IR5F1Y", + "capacity": "3", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-05-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.679922, + 46.80673 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "671585", + "name": "WAAT/FRWATL9MA6Q6DK", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361568, + 48.915856 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "511325", + "name": "WAAT/FRWATLARWB4JUQ", + "capacity": "8", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361568, + 48.915856 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "511325", + "name": "WAAT/FRWATLARWB4JUQ", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258726, + 48.821132 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706211", + "name": "WAAT/FRWATLGMGPDUH8", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381492, + 43.301458 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828300", + "name": "WAAT/FRWATLESQXYB2F", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.303627, + 48.706046 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "577478", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-09-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.303627, + 48.706046 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "577478", + "name": "WAAT/FRWATLFD4WWPK5", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-09-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.566679, + 50.418546 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781596", + "name": "WAAT/FRWATLFFLLPJ47", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.566679, + 50.418546 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "781596", + "name": "WAAT/FRWATLFFLLPJ47", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.057537, + 47.338212 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706199", + "name": "WAAT/FRWATLFJKUQO42", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432522, + 47.096065 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706202", + "name": "WAAT/FRWATLFNE5SR08", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432522, + 47.096065 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706202", + "name": "WAAT/FRWATLFNE5SR08", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.882355, + 43.580375 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706205", + "name": "WAAT/FRWATLFQCOVHR8", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.882355, + 43.580375 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706205", + "name": "WAAT/FRWATLFQCOVHR8", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.299774, + 48.81154 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "699632", + "name": "WAAT/FRWATLFROJHYJ8", + "capacity": "1", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-19", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.40506, + 43.293342 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "528125", + "name": "WAAT/FRWATLFVBGMVG5", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.40506, + 43.293342 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "528125", + "name": "WAAT/FRWATLFVBGMVG5", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.995669, + 45.826184 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "413741", + "name": "WAAT/FRWATLG4GQNTOD", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.708992, + 45.19392 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "747294", + "name": "WAAT/FRWATLG4H1BNUH", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-10", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7817, + 43.931774 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851880", + "name": "WAAT/FRWATLGBKWTZAP", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7817, + 43.931774 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "851880", + "name": "WAAT/FRWATLGBKWTZAP", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-07-05", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.106898, + 43.724532 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706208", + "name": "WAAT/FRWATLGJDYNKEP", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.106898, + 43.724532 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706208", + "name": "WAAT/FRWATLGJDYNKEP", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.775482, + 45.757234 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "787239", + "name": "WAAT/FRWATLGJUPD1EA", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-04-27", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381492, + 43.301458 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828300", + "name": "WAAT/FRWATLESQXYB2F", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381492, + 43.301458 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828300", + "name": "WAAT/FRWATLESQXYB2F", + "capacity": "4", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361568, + 48.915856 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "511325", + "name": "WAAT/FRWATLARWB4JUQ", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381492, + 43.301458 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "828300", + "name": "WAAT/FRWATLESQXYB2F", + "capacity": "4", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-21", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361568, + 48.915856 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "511325", + "name": "WAAT/FRWATLARWB4JUQ", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361568, + 48.915856 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "511325", + "name": "WAAT/FRWATLARWB4JUQ", + "capacity": "8", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.990231, + 43.324307 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "494481", + "name": "WAAT/FRWATLATAPMI7F", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.990231, + 43.324307 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "494481", + "name": "WAAT/FRWATLATAPMI7F", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.441336, + 48.254578 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706187", + "name": "WAAT/FRWATLBGVVSU0H", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-03-17", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.441336, + 48.254578 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706187", + "name": "WAAT/FRWATLBGVVSU0H", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61389, + 47.476594 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "413738", + "name": "WAAT/FRWATLBK0HKEUU", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-05-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.965237, + 43.579598 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "514394", + "name": "WAAT/FRWATLCM9P5RY9", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.965237, + 43.579598 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "514394", + "name": "WAAT/FRWATLCM9P5RY9", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-05-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.398092, + 43.546712 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706190", + "name": "WAAT/FRWATLCWOBP56A", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.398092, + 43.546712 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706190", + "name": "WAAT/FRWATLCWOBP56A", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.020694, + 43.854906 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "481980", + "name": "WAAT/FRWATLDJM0WFEN", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-05-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.020694, + 43.854906 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "481980", + "name": "WAAT/FRWATLDJM0WFEN", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.091362, + 49.059396 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "577475", + "name": "WAAT/FRWATLDTNR2TON", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-09-29", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.064439, + 50.661294 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "514397", + "name": "WAAT/FRWATLDYJQLAVK", + "capacity": "2", + "socket:typee": "True", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-01-12", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.064439, + 50.661294 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "514397", + "name": "WAAT/FRWATLDYJQLAVK", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-05-28", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.911855, + 43.614964 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706193", + "name": "WAAT/FRWATLDYKHGVCG", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "False", + "socket:type2_combo": "True", + "socket:chademo": "True", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.911855, + 43.614964 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "706193", + "name": "WAAT/FRWATLDYKHGVCG", + "capacity": "2", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-02-02", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221751, + 49.015624 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "481797", + "name": "WAAT/FRWATLEJL45BOK", + "capacity": "1", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2022-12-30", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.583028, + 43.313028 + ] + }, + "properties": { + "operator": "WAAT SAS | FR*WA5", + "owner:ref:FR:SIREN": "", + "email": "exploitation@waat.fr", + "phone": "", + "network": "WAAT", + "ref:EU:EVSE": "Non concerné", + "ref": "815391", + "name": "WAAT/FRWA5L4AUJMAK7", + "capacity": "3", + "socket:typee": "False", + "socket:type2": "True", + "socket:type2_combo": "False", + "socket:chademo": "False", + "fee": "False", + "authentication:none": "True", + "payment:credit_cards": "", + "reservation": "False", + "wheelchair": "Accessibilité inconnue", + "start_date": "", + "note": "", + "source:date": "2023-06-08", + "socket:type2_cable": "False" + } } ] } \ No newline at end of file